Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception..

Decoded Output download

<?php
  namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\View\Engine\Volt\Compiler; use Phalcon\Tests\Fixtures\Traits\DiTrait; use function substr; class FunctionCallCest { use DiTrait; public function mvcViewEngineVoltCompilerFunctionCall(IntegrationTester $I, Example $example) { $I->wantToTest("Mvc\View\Engine\Volt\Compiler - functionCall() " . $example["label"]); $this->setNewFactoryDefault(); $volt = new Compiler(); $volt->setDI($this->container); $expected = $example["expected"]; $actual = $volt->compileString($example["source"]); $I->assertSame($expected, $actual); } private function getExamples() : array { return array(array("label" => "get_content", "source" => "{{ content() }}", "expected" => "<?= $this->getContent() ?>"), array("label" => "content", "source" => "{{ content() }}", "expected" => "<?= $this->getContent() ?>"), array("label" => "partial", "source" => "{{ partial("abc.volt") }}", "expected" => "<?= $this->partial('abc.volt') ?>"), array("label" => "link_to", "source" => "{{ link_to('abc') }}", "expected" => "<?= \Phalcon\Tag::linkTo(['abc']) ?>"), array("label" => "image", "source" => "{{ image('abc') }}", "expected" => "<?= \Phalcon\Tag::image(['abc']) ?>"), array("label" => "formLegacy", "source" => "{{ form_legacy('abc') }}", "expected" => "<?= \Phalcon\Tag::formLegacy(['abc']) ?>"), array("label" => "submit_button", "source" => "{{ submit_button('abc') }}", "expected" => "<?= \Phalcon\Tag::submitButton(['abc']) ?>"), array("label" => "radio_field", "source" => "{{ radio_field('abc') }}", "expected" => "<?= \Phalcon\Tag::radioField(['abc']) ?>"), array("label" => "check_field", "source" => "{{ check_field('abc') }}", "expected" => "<?= \Phalcon\Tag::checkField(['abc']) ?>"), array("label" => "file_field", "source" => "{{ file_field('abc') }}", "expected" => "<?= \Phalcon\Tag::fileField(['abc']) ?>"), array("label" => "hidden_field", "source" => "{{ hidden_field('abc') }}", "expected" => "<?= \Phalcon\Tag::hiddenField(['abc']) ?>"), array("label" => "password_field", "source" => "{{ password_field('abc') }}", "expected" => "<?= \Phalcon\Tag::passwordField(['abc']) ?>"), array("label" => "text_area", "source" => "{{ text_area('abc') }}", "expected" => "<?= \Phalcon\Tag::textArea(['abc']) ?>"), array("label" => "text_field", "source" => "{{ text_field('abc') }}", "expected" => "<?= \Phalcon\Tag::textField(['abc']) ?>"), array("label" => "email_field", "source" => "{{ email_field('abc') }}", "expected" => "<?= \Phalcon\Tag::emailField(['abc']) ?>"), array("label" => "date_field", "source" => "{{ date_field('abc') }}", "expected" => "<?= \Phalcon\Tag::dateField(['abc']) ?>"), array("label" => "tel_field", "source" => "{{ tel_field('abc') }}", "expected" => "<?= \Phalcon\Tag::telField(['abc']) ?>"), array("label" => "numeric_field", "source" => "{{ numeric_field('abc') }}", "expected" => "<?= \Phalcon\Tag::numericField(['abc']) ?>"), array("label" => "image_input", "source" => "{{ image_input('abc') }}", "expected" => "<?= \Phalcon\Tag::imageInput(['abc']) ?>"), array("label" => "url", "source" => "{{ url('abc') }}", "expected" => "<?= $this->url->get('abc') ?>"), array("label" => "static_url", "source" => "{{ static_url('abc') }}", "expected" => "<?= $this->url->getStatic('abc') ?>"), array("label" => "date", "source" => "{{ date('abc') }}", "expected" => "<?= date('abc') ?>"), array("label" => "time", "source" => "{{ time() }}", "expected" => "<?= time() ?>"), array("label" => "dump", "source" => "{{ dump('abc') }}", "expected" => "<?= var_dump('abc') ?>"), array("label" => "version", "source" => "{{ version() }}", "expected" => "<?= (new Phalcon\Support\Version)->get() ?>"), array("label" => "version_id", "source" => "{{ version_id() }}", "expected" => "<?= (new Phalcon\Support\Version)->getId() ?>"), array("label" => "constant", "source" => "{{ constant('abc') }}", "expected" => "<?= constant('abc') ?>"), array("label" => "preload", "source" => "{{ preload('abc.css') }}", "expected" => "<?= $this->preload('abc.css') ?>"), array("label" => "preload array", "source" => "{{ preload('abc.jpg', ['as' : 'image']) }}", "expected" => "<?= $this->preload('abc.jpg', ['as' => 'image']) ?>"), array("label" => "somefunction", "source" => "{{ somefunction('abc') }}", "expected" => "<?= $this->callMacro('somefunction', ['abc']) ?>"), array("label" => "length", "source" => "{{ "abc" | length }}", "expected" => "<?= $this->length('abc') ?>"), array("label" => "e", "source" => "{{ "abc" | e }}", "expected" => "<?= $this->escaper->html('abc') ?>"), array("label" => "escape", "source" => "{{ "abc" | escape }}", "expected" => "<?= $this->escaper->html('abc') ?>"), array("label" => "escape_css", "source" => "{{ "abc" | escape_css }}", "expected" => "<?= $this->escaper->css('abc') ?>"), array("label" => "escape_js", "source" => "{{ "abc" | escape_js }}", "expected" => "<?= $this->escaper->js('abc') ?>"), array("label" => "escape_attr", "source" => "{{ "abc" | escape_attr }}", "expected" => "<?= $this->escaper->attributes('abc') ?>"), array("label" => "trim", "source" => "{{ "abc" | trim }}", "expected" => "<?= trim('abc') ?>"), array("label" => "left_trim", "source" => "{{ "abc" | left_trim }}", "expected" => "<?= ltrim('abc') ?>"), array("label" => "right_trim", "source" => "{{ "abc" | right_trim }}", "expected" => "<?= rtrim('abc') ?>"), array("label" => "striptags", "source" => "{{ "abc" | striptags }}", "expected" => "<?= strip_tags('abc') ?>"), array("label" => "url_encode", "source" => "{{ "abc" | url_encode }}", "expected" => "<?= urlencode('abc') ?>"), array("label" => "striptags", "source" => "{{ "abc" | striptags }}", "expected" => "<?= strip_tags('abc') ?>"), array("label" => "slashes", "source" => "{{ "abc" | slashes }}", "expected" => "<?= addslashes('abc') ?>"), array("label" => "stripslashes", "source" => "{{ "abc" | stripslashes }}", "expected" => "<?= stripslashes('abc') ?>"), array("label" => "nl2br", "source" => "{{ "abc" | nl2br }}", "expected" => "<?= nl2br('abc') ?>"), array("label" => "keys", "source" => "{{ "abc" | keys }}", "expected" => "<?= array_keys('abc') ?>"), array("label" => "join", "source" => "{{ ["abc", "def"] | join(",") }}", "expected" => "<?= join(',', ['abc', 'def']) ?>"), array("label" => "lower", "source" => "{{ "abc" | lower }}", "expected" => "<?= $this->helper->lower('abc') ?>"), array("label" => "lowercase", "source" => "{{ "abc" | lowercase }}", "expected" => "<?= $this->helper->lower('abc') ?>"), array("label" => "upper", "source" => "{{ "abc" | upper }}", "expected" => "<?= $this->helper->upper('abc') ?>"), array("label" => "uppercase", "source" => "{{ "abc" | uppercase }}", "expected" => "<?= $this->helper->upper('abc') ?>"), array("label" => "capitalize", "source" => "{{ "abc" | capitalize }}", "expected" => "<?= ucwords('abc') ?>"), array("label" => "sort", "source" => "{{ "abc" | sort }}", "expected" => "<?= $this->sort('abc') ?>"), array("label" => "json_encode", "source" => "{{ "abc" | json_encode }}", "expected" => "<?= json_encode('abc') ?>"), array("label" => "json_decode", "source" => "{{ "abc" | json_decode }}", "expected" => "<?= json_decode('abc') ?>"), array("label" => "format", "source" => "{{ "abc" | format }}", "expected" => "<?= sprintf('abc') ?>"), array("label" => "abs", "source" => "{{ "abc" | abs }}", "expected" => "<?= abs('abc') ?>"), array("label" => "slice", "source" => "{{ "abc" | slice }}", "expected" => "<?= $this->slice('abc') ?>"), array("label" => "default", "source" => "{{ "abc" | default("def") }}", "expected" => "<?= (empty('abc') ? ('def') : ('abc')) ?>"), array("label" => "convert_encoding", "source" => "{{ "abc" | convert_encoding }}", "expected" => "<?= $this->convertEncoding('abc') ?>"), array("label" => "a", "source" => "{{ a("https://phalcon.io/", "home") }}", "expected" => "<?= $this->tag->a("https://phalcon.io/", "home") ?>"), array("label" => "base", "source" => "{{ base("https://phalcon.io/") }}", "expected" => "<?= $this->tag->base("https://phalcon.io/") ?>"), array("label" => "body", "source" => "{{ body() }}", "expected" => "<?= $this->tag->body() ?>"), array("label" => "button", "source" => "{{ button("close", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->button("close", ['class' => "label label-info"]) ?>"), array("label" => "close", "source" => "{{ close("form") }}", "expected" => "<?= $this->tag->close("form") ?>"), array("label" => "doctype", "source" => "{{ doctype(5, "

") }}", "expected" => "<?= $this->tag->doctype(5, "

") ?>"), array("label" => "element", "source" => "{{ element("button", "close", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->element("button", "close", ['class' => "label label-info"]) ?>"), array("label" => "form", "source" => "{{ form(["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->form(['class' => "label label-info"]) ?>"), array("label" => "img", "source" => "{{ img("/img/abc.jpg") }}", "expected" => "<?= $this->tag->img("/img/abc.jpg") ?>"), array("label" => "inputCheckbox", "source" => "{{ inputCheckbox("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputCheckbox("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputColor", "source" => "{{ inputColor("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputColor("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputDate", "source" => "{{ inputDate("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputDate("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputDateTime", "source" => "{{ inputDateTime("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputDateTime("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputDateTimeLocal", "source" => "{{ inputDateTimeLocal("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputDateTimeLocal("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputEmail", "source" => "{{ inputEmail("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputEmail("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputFile", "source" => "{{ inputFile("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputFile("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputHidden", "source" => "{{ inputHidden("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputHidden("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputImage", "source" => "{{ inputImage("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputImage("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputInput", "source" => "{{ inputInput("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputInput("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputMonth", "source" => "{{ inputMonth("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputMonth("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputNumeric", "source" => "{{ inputNumeric("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputNumeric("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputPassword", "source" => "{{ inputPassword("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputPassword("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputRadio", "source" => "{{ inputRadio("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputRadio("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputRange", "source" => "{{ inputRange("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputRange("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputSearch", "source" => "{{ inputSearch("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputSearch("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputSelect", "source" => "{{ inputSelect("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputSelect("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputSubmit", "source" => "{{ inputSubmit("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputSubmit("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputTel", "source" => "{{ inputTel("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputTel("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputText", "source" => "{{ inputText("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputText("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputTextarea", "source" => "{{ inputTextarea("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputTextarea("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputTime", "source" => "{{ inputTime("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputTime("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputUrl", "source" => "{{ inputUrl("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputUrl("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "inputWeek", "source" => "{{ inputWeek("test", "1", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->inputWeek("test", "1", ['class' => "label label-info"]) ?>"), array("label" => "label", "source" => "{{ label("test", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->label("test", ['class' => "label label-info"]) ?>"), array("label" => "link", "source" => "{{ link("	", "

") }}", "expected" => "<?= $this->tag->link("	", "

") ?>"), array("label" => "meta", "source" => "{{ meta("	", "

") }}", "expected" => "<?= $this->tag->meta("	", "

") ?>"), array("label" => "ol", "source" => "{{ ol("test", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->ol("test", ['class' => "label label-info"]) ?>"), array("label" => "script", "source" => "{{ script("	", "

") }}", "expected" => "<?= $this->tag->script("	", "

") ?>"), array("label" => "style", "source" => "{{ style("	", "

") }}", "expected" => "<?= $this->tag->style("	", "

") ?>"), array("label" => "style", "source" => "{{ style("	", "

") }}", "expected" => "<?= $this->tag->style("	", "

") ?>"), array("label" => "title", "source" => "{{ title("	", "

") }}", "expected" => "<?= $this->tag->title("	", "

") ?>"), array("label" => "ul", "source" => "{{ ul("test", ["class" : "label label-info"]) }}", "expected" => "<?= $this->tag->ul("test", ['class' => "label label-info"]) ?>")); } } ?>

Did this file decode correctly?

Original Code

<?php
  namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\View\Engine\Volt\Compiler; use Phalcon\Tests\Fixtures\Traits\DiTrait; use function substr; class FunctionCallCest { use DiTrait; public function mvcViewEngineVoltCompilerFunctionCall(IntegrationTester $I, Example $example) { $I->wantToTest("\x4d\166\x63\x5c\126\151\145\167\x5c\105\156\x67\151\x6e\x65\134\x56\x6f\x6c\164\x5c\103\x6f\x6d\160\x69\x6c\x65\162\x20\55\40\x66\165\x6e\x63\x74\x69\157\156\x43\x61\154\154\50\51\x20" . $example["\154\141\142\145\x6c"]); $this->setNewFactoryDefault(); $volt = new Compiler(); $volt->setDI($this->container); $expected = $example["\x65\x78\x70\x65\143\164\x65\144"]; $actual = $volt->compileString($example["\163\x6f\x75\162\143\145"]); $I->assertSame($expected, $actual); } private function getExamples() : array { return array(array("\x6c\141\142\x65\x6c" => "\147\145\x74\x5f\143\157\156\164\x65\156\x74", "\163\157\x75\162\x63\145" => "\173\173\40\143\x6f\156\x74\x65\x6e\164\50\x29\40\x7d\x7d", "\x65\170\x70\x65\143\164\x65\x64" => "\x3c\77\x3d\40\x24\164\x68\x69\x73\x2d\76\147\x65\x74\103\x6f\156\164\145\x6e\x74\50\51\x20\77\x3e"), array("\x6c\x61\142\x65\154" => "\143\x6f\x6e\x74\x65\x6e\164", "\x73\157\x75\x72\143\x65" => "\173\x7b\40\143\157\x6e\164\145\x6e\x74\50\51\x20\x7d\175", "\x65\x78\160\x65\x63\x74\145\144" => "\74\x3f\75\40\44\164\x68\151\x73\x2d\76\147\x65\x74\103\157\156\x74\145\x6e\164\x28\x29\x20\x3f\76"), array("\x6c\x61\x62\x65\154" => "\x70\x61\x72\164\151\141\x6c", "\163\x6f\x75\162\143\145" => "\x7b\173\40\160\141\162\x74\151\x61\154\50\x22\x61\142\143\56\166\157\154\164\x22\x29\x20\175\x7d", "\x65\170\x70\x65\x63\164\145\x64" => "\x3c\x3f\x3d\x20\x24\164\150\151\163\x2d\76\160\x61\162\x74\151\141\x6c\50\x27\141\142\x63\x2e\x76\x6f\x6c\164\x27\x29\40\x3f\x3e"), array("\x6c\x61\x62\145\154" => "\x6c\151\156\x6b\137\x74\157", "\163\157\165\162\143\145" => "\x7b\x7b\x20\154\x69\156\x6b\x5f\x74\157\x28\47\x61\142\143\47\x29\40\175\175", "\x65\170\160\145\143\164\145\x64" => "\74\x3f\x3d\40\134\120\150\141\x6c\143\x6f\x6e\134\x54\x61\x67\x3a\x3a\154\151\x6e\x6b\124\x6f\50\x5b\47\x61\142\143\x27\135\51\x20\77\76"), array("\x6c\x61\x62\145\154" => "\x69\x6d\x61\147\x65", "\x73\x6f\165\x72\143\x65" => "\173\173\x20\x69\x6d\x61\147\145\x28\x27\141\142\x63\47\51\40\x7d\x7d", "\x65\170\160\x65\x63\x74\145\144" => "\x3c\77\75\x20\134\120\150\x61\154\x63\x6f\x6e\134\124\x61\x67\x3a\72\151\155\x61\x67\x65\x28\x5b\47\x61\142\143\47\135\51\x20\x3f\x3e"), array("\x6c\x61\x62\145\x6c" => "\x66\x6f\162\x6d\x4c\145\147\x61\x63\x79", "\x73\x6f\165\x72\x63\145" => "\x7b\173\40\146\x6f\162\155\x5f\154\x65\147\141\x63\171\x28\x27\141\142\143\x27\51\40\x7d\175", "\145\170\x70\145\x63\164\145\x64" => "\74\77\x3d\x20\134\120\x68\141\x6c\x63\x6f\x6e\134\x54\x61\147\x3a\72\146\x6f\x72\155\x4c\x65\147\x61\143\171\50\133\47\141\142\x63\x27\135\x29\x20\77\x3e"), array("\x6c\x61\x62\x65\x6c" => "\x73\x75\x62\x6d\151\164\x5f\142\x75\x74\x74\x6f\x6e", "\163\157\x75\162\x63\x65" => "\x7b\x7b\40\163\165\142\155\151\x74\x5f\x62\165\x74\x74\157\156\x28\x27\141\x62\143\x27\51\x20\175\x7d", "\x65\170\x70\x65\143\x74\x65\144" => "\74\x3f\x3d\40\x5c\x50\x68\141\154\x63\157\x6e\134\x54\x61\x67\x3a\72\163\x75\142\x6d\x69\x74\x42\x75\x74\x74\157\156\x28\133\x27\x61\142\143\x27\135\x29\x20\77\76"), array("\154\x61\142\x65\x6c" => "\x72\x61\144\x69\157\137\x66\x69\145\154\144", "\163\157\165\162\x63\x65" => "\173\173\40\x72\x61\144\151\157\x5f\146\x69\x65\x6c\144\50\x27\141\x62\x63\x27\x29\40\x7d\x7d", "\x65\170\160\x65\143\164\x65\x64" => "\x3c\x3f\75\40\x5c\x50\150\x61\x6c\143\157\x6e\134\124\141\147\72\72\x72\141\x64\151\157\106\x69\145\154\x64\50\133\47\141\x62\143\x27\x5d\x29\x20\x3f\x3e"), array("\x6c\x61\x62\x65\154" => "\x63\150\145\143\153\x5f\x66\x69\145\154\144", "\163\157\x75\162\x63\x65" => "\173\173\40\143\150\x65\x63\x6b\x5f\x66\151\145\x6c\144\50\47\x61\142\x63\47\x29\x20\175\x7d", "\x65\170\160\x65\143\164\x65\x64" => "\74\x3f\x3d\x20\134\120\150\x61\x6c\143\x6f\156\134\x54\141\147\72\72\143\x68\x65\143\x6b\106\151\145\154\x64\50\133\x27\x61\142\143\47\x5d\x29\x20\x3f\x3e"), array("\x6c\x61\x62\145\x6c" => "\x66\151\x6c\x65\x5f\146\151\x65\x6c\144", "\x73\157\165\x72\x63\x65" => "\x7b\173\40\x66\151\x6c\x65\137\146\151\x65\154\x64\x28\47\141\x62\x63\x27\x29\x20\x7d\175", "\x65\170\x70\x65\143\x74\145\x64" => "\74\77\75\40\134\x50\150\141\x6c\143\157\x6e\134\124\141\147\72\72\x66\151\154\x65\x46\x69\145\154\x64\x28\x5b\x27\141\142\143\x27\135\x29\x20\x3f\76"), array("\154\141\x62\x65\x6c" => "\x68\x69\x64\144\x65\156\137\x66\x69\145\x6c\144", "\x73\157\x75\x72\x63\145" => "\173\173\x20\x68\x69\x64\x64\x65\x6e\137\146\151\x65\x6c\144\x28\x27\141\x62\143\47\x29\x20\175\175", "\x65\170\160\145\x63\164\145\x64" => "\x3c\x3f\x3d\40\x5c\120\x68\x61\154\x63\x6f\x6e\x5c\124\141\147\x3a\x3a\x68\151\144\144\x65\156\106\x69\x65\x6c\144\x28\133\x27\x61\142\x63\47\x5d\51\x20\77\76"), array("\x6c\141\142\145\x6c" => "\x70\141\x73\x73\167\157\x72\144\137\x66\151\145\154\x64", "\x73\x6f\165\x72\x63\145" => "\173\173\40\160\x61\163\x73\x77\x6f\x72\144\137\x66\151\145\154\144\50\x27\x61\142\x63\47\x29\x20\175\175", "\x65\x78\160\145\143\x74\x65\x64" => "\x3c\x3f\x3d\x20\x5c\x50\150\141\x6c\x63\x6f\x6e\x5c\124\141\x67\x3a\x3a\160\141\x73\163\167\157\162\x64\x46\151\x65\154\x64\x28\x5b\x27\141\142\143\x27\x5d\x29\x20\x3f\x3e"), array("\154\141\142\x65\x6c" => "\164\x65\170\x74\137\141\x72\x65\141", "\x73\x6f\165\162\143\x65" => "\x7b\173\x20\x74\145\x78\x74\137\141\162\145\x61\50\47\x61\142\143\47\x29\40\x7d\175", "\x65\170\160\145\143\x74\145\144" => "\x3c\77\75\40\x5c\120\150\x61\154\x63\x6f\x6e\x5c\124\141\147\x3a\x3a\164\x65\170\164\x41\x72\x65\x61\50\133\x27\141\x62\143\x27\135\51\40\x3f\x3e"), array("\154\141\x62\x65\x6c" => "\164\x65\170\164\x5f\146\x69\145\154\144", "\163\157\x75\x72\143\x65" => "\x7b\173\x20\x74\145\x78\x74\137\146\151\145\154\x64\50\47\x61\x62\143\x27\x29\x20\x7d\x7d", "\x65\x78\x70\x65\143\x74\x65\x64" => "\x3c\x3f\x3d\x20\x5c\120\150\x61\x6c\x63\157\156\x5c\x54\141\x67\x3a\x3a\164\145\x78\x74\106\x69\x65\154\144\50\133\47\x61\142\143\47\x5d\x29\40\x3f\x3e"), array("\154\x61\142\145\154" => "\x65\155\141\x69\154\x5f\146\x69\x65\154\x64", "\163\157\x75\x72\x63\x65" => "\x7b\173\x20\x65\155\x61\151\x6c\x5f\x66\x69\145\154\144\50\47\x61\x62\x63\47\x29\40\x7d\175", "\x65\170\x70\x65\143\x74\145\x64" => "\x3c\x3f\75\x20\x5c\120\x68\141\154\x63\157\156\x5c\124\x61\x67\72\72\145\x6d\141\151\x6c\x46\151\145\x6c\x64\50\133\47\141\142\x63\47\x5d\51\x20\x3f\76"), array("\x6c\x61\142\x65\x6c" => "\144\141\164\145\x5f\146\151\145\154\x64", "\163\157\165\162\143\x65" => "\173\x7b\x20\x64\141\164\x65\x5f\146\x69\x65\x6c\x64\50\47\x61\142\143\47\51\x20\175\x7d", "\x65\170\x70\x65\143\164\145\x64" => "\74\77\x3d\x20\134\x50\x68\x61\x6c\x63\x6f\156\x5c\124\141\147\x3a\x3a\x64\x61\x74\145\x46\151\x65\154\x64\50\x5b\47\141\x62\x63\47\135\51\40\77\x3e"), array("\x6c\x61\x62\145\154" => "\164\145\154\x5f\x66\151\145\x6c\144", "\163\x6f\x75\162\143\x65" => "\173\173\40\164\x65\x6c\137\146\151\x65\x6c\144\x28\47\141\142\x63\x27\x29\40\x7d\175", "\x65\170\160\145\143\164\145\x64" => "\x3c\x3f\x3d\x20\134\120\x68\141\154\143\157\x6e\134\124\x61\147\72\x3a\x74\x65\x6c\106\151\145\x6c\144\50\x5b\47\x61\142\x63\47\135\51\x20\x3f\76"), array("\154\141\x62\145\154" => "\x6e\x75\155\145\x72\151\x63\x5f\146\x69\x65\x6c\144", "\x73\x6f\165\162\143\145" => "\x7b\x7b\x20\x6e\165\x6d\145\162\x69\x63\137\146\151\x65\x6c\x64\50\x27\x61\142\x63\x27\x29\40\x7d\175", "\145\170\x70\x65\143\164\x65\144" => "\74\77\x3d\40\134\120\150\x61\x6c\143\x6f\x6e\134\124\141\x67\72\72\x6e\165\x6d\x65\x72\151\x63\x46\151\145\x6c\144\x28\x5b\47\141\x62\x63\x27\135\51\x20\77\x3e"), array("\154\x61\142\x65\154" => "\x69\155\141\x67\145\x5f\x69\156\160\165\x74", "\x73\x6f\x75\x72\143\x65" => "\173\173\x20\x69\155\x61\x67\145\137\151\x6e\160\x75\164\50\47\x61\142\x63\x27\51\x20\175\175", "\145\170\x70\x65\143\x74\x65\144" => "\74\77\x3d\40\x5c\x50\x68\x61\154\x63\157\156\x5c\x54\141\147\72\72\x69\155\x61\x67\145\111\x6e\160\165\164\50\x5b\x27\141\142\143\x27\x5d\x29\x20\x3f\76"), array("\x6c\x61\142\x65\154" => "\165\162\154", "\163\157\x75\162\x63\145" => "\x7b\x7b\40\x75\162\x6c\x28\47\141\x62\x63\x27\51\x20\175\x7d", "\145\170\160\x65\x63\164\x65\x64" => "\x3c\77\75\x20\x24\164\x68\151\163\x2d\x3e\165\162\x6c\55\x3e\147\145\x74\x28\x27\x61\x62\x63\47\51\x20\x3f\76"), array("\154\141\142\145\154" => "\163\x74\141\164\151\x63\137\165\162\154", "\163\x6f\x75\162\x63\145" => "\x7b\x7b\x20\163\164\141\164\151\143\137\x75\x72\x6c\50\47\x61\142\143\x27\51\x20\175\x7d", "\x65\x78\160\x65\143\x74\x65\144" => "\74\x3f\x3d\40\44\164\x68\151\x73\55\76\x75\162\154\x2d\x3e\147\145\164\x53\164\x61\164\x69\x63\50\x27\141\x62\143\47\51\40\x3f\76"), array("\154\x61\x62\x65\154" => "\x64\x61\x74\x65", "\163\x6f\165\x72\143\145" => "\173\x7b\x20\x64\x61\x74\x65\50\47\x61\x62\143\x27\x29\40\x7d\175", "\x65\170\x70\x65\143\164\x65\x64" => "\x3c\77\75\40\144\141\x74\145\50\47\x61\142\x63\47\51\40\x3f\x3e"), array("\154\x61\142\145\x6c" => "\x74\x69\155\145", "\x73\x6f\165\162\x63\145" => "\x7b\x7b\40\164\151\x6d\x65\50\51\40\175\175", "\x65\170\x70\x65\x63\164\145\144" => "\x3c\x3f\75\x20\x74\x69\155\x65\x28\x29\x20\x3f\x3e"), array("\154\141\142\x65\x6c" => "\144\x75\x6d\x70", "\163\x6f\x75\162\x63\x65" => "\x7b\x7b\x20\x64\165\155\160\50\47\x61\x62\143\47\51\40\x7d\x7d", "\145\x78\160\x65\x63\x74\145\x64" => "\x3c\x3f\x3d\x20\166\x61\162\137\144\165\x6d\160\50\47\141\x62\x63\x27\x29\40\x3f\76"), array("\154\141\142\x65\154" => "\x76\145\x72\x73\x69\x6f\156", "\163\157\x75\162\143\145" => "\x7b\173\40\x76\145\x72\163\x69\x6f\156\x28\x29\x20\175\x7d", "\145\170\x70\x65\x63\x74\145\144" => "\74\77\x3d\40\x28\x6e\145\x77\x20\x50\x68\x61\154\x63\157\156\134\123\x75\160\x70\157\x72\x74\134\126\145\x72\163\x69\x6f\x6e\x29\55\76\x67\x65\x74\x28\x29\x20\x3f\76"), array("\x6c\141\142\145\x6c" => "\x76\145\x72\x73\151\157\x6e\x5f\x69\x64", "\x73\157\x75\x72\143\x65" => "\x7b\x7b\40\166\x65\x72\163\x69\x6f\x6e\137\x69\144\x28\51\x20\x7d\175", "\145\x78\160\x65\x63\164\x65\144" => "\x3c\x3f\75\40\x28\156\x65\167\40\120\x68\x61\154\143\157\x6e\134\123\x75\x70\x70\157\162\164\134\x56\x65\162\x73\151\x6f\156\51\x2d\76\147\x65\164\x49\144\x28\51\40\x3f\x3e"), array("\x6c\141\x62\145\154" => "\143\x6f\x6e\163\x74\141\x6e\x74", "\163\157\x75\x72\143\x65" => "\x7b\173\40\143\157\156\163\x74\x61\156\164\x28\47\x61\x62\143\47\x29\40\x7d\x7d", "\x65\170\x70\x65\x63\x74\145\x64" => "\x3c\77\x3d\40\x63\x6f\x6e\163\164\x61\x6e\164\50\47\x61\142\143\x27\51\x20\77\x3e"), array("\154\141\142\x65\154" => "\160\x72\145\154\157\x61\x64", "\163\x6f\165\x72\143\145" => "\x7b\x7b\x20\160\x72\x65\154\x6f\x61\144\x28\47\x61\x62\143\56\x63\x73\x73\x27\51\40\x7d\175", "\x65\170\160\145\x63\x74\x65\144" => "\74\x3f\75\x20\x24\164\150\151\163\55\76\x70\x72\145\154\x6f\141\x64\x28\47\141\142\143\56\143\x73\163\x27\51\40\77\x3e"), array("\154\x61\x62\x65\154" => "\160\162\x65\154\x6f\141\144\40\x61\162\162\x61\x79", "\x73\157\x75\x72\143\145" => "\173\173\x20\x70\x72\x65\x6c\157\x61\144\50\47\x61\x62\143\56\x6a\160\x67\47\54\40\133\x27\141\x73\x27\40\x3a\40\x27\x69\155\x61\147\145\47\x5d\x29\x20\175\x7d", "\145\170\x70\145\x63\x74\x65\144" => "\74\x3f\x3d\40\x24\x74\x68\151\x73\55\76\160\162\145\x6c\x6f\141\144\50\x27\x61\x62\143\56\x6a\160\x67\x27\x2c\40\133\x27\141\163\47\40\75\x3e\40\47\x69\x6d\x61\147\145\47\135\51\40\x3f\76"), array("\154\141\142\x65\x6c" => "\163\157\x6d\x65\146\165\156\x63\x74\151\157\x6e", "\x73\157\165\x72\143\x65" => "\173\x7b\x20\163\157\155\x65\146\x75\156\143\164\x69\157\x6e\x28\x27\141\142\x63\47\51\x20\175\175", "\x65\170\160\145\x63\164\145\144" => "\x3c\77\x3d\x20\x24\x74\150\x69\x73\55\76\x63\x61\154\154\115\x61\x63\162\157\x28\x27\x73\x6f\x6d\145\x66\x75\156\x63\164\x69\x6f\x6e\x27\54\40\133\47\141\142\143\x27\135\51\40\x3f\x3e"), array("\x6c\141\x62\145\154" => "\154\x65\156\147\x74\150", "\163\157\165\x72\x63\145" => "\173\173\x20\x22\141\x62\143\x22\40\x7c\x20\154\x65\156\x67\x74\x68\x20\175\175", "\145\170\x70\x65\x63\164\x65\x64" => "\74\77\75\40\44\x74\150\151\163\55\x3e\x6c\x65\156\x67\164\x68\50\x27\x61\142\x63\47\51\40\77\76"), array("\x6c\x61\142\x65\154" => "\x65", "\x73\157\165\x72\143\x65" => "\173\x7b\40\x22\x61\x62\x63\x22\40\174\x20\145\40\x7d\175", "\x65\170\x70\145\143\x74\x65\144" => "\74\77\x3d\x20\x24\x74\150\151\163\x2d\76\145\163\143\141\x70\145\x72\x2d\x3e\x68\x74\x6d\154\50\x27\141\x62\143\47\51\x20\x3f\76"), array("\x6c\141\142\x65\x6c" => "\x65\163\x63\141\160\145", "\163\157\165\x72\x63\145" => "\173\173\x20\42\x61\x62\143\x22\x20\174\40\145\163\x63\141\160\x65\x20\x7d\175", "\x65\170\x70\x65\x63\164\145\x64" => "\x3c\77\75\x20\44\x74\x68\151\163\55\76\145\163\x63\141\160\x65\162\x2d\x3e\150\164\155\x6c\50\x27\x61\142\x63\x27\x29\40\77\76"), array("\x6c\141\142\145\154" => "\145\x73\x63\141\160\x65\x5f\143\x73\x73", "\163\x6f\x75\162\x63\145" => "\x7b\x7b\40\x22\x61\x62\143\x22\40\x7c\40\145\x73\143\141\160\145\137\143\x73\163\x20\175\175", "\x65\170\160\145\x63\x74\145\144" => "\74\77\x3d\40\x24\164\x68\151\x73\x2d\76\145\163\143\141\x70\145\162\55\76\143\163\163\50\47\x61\x62\x63\47\x29\40\x3f\x3e"), array("\x6c\x61\142\x65\x6c" => "\x65\163\143\141\x70\145\x5f\152\163", "\163\157\x75\162\143\145" => "\x7b\173\x20\x22\x61\142\143\x22\x20\x7c\40\x65\x73\x63\141\160\x65\137\152\163\x20\x7d\x7d", "\145\170\160\x65\x63\164\x65\x64" => "\x3c\x3f\x3d\40\x24\x74\x68\151\x73\55\76\x65\x73\143\141\160\x65\162\x2d\x3e\x6a\x73\50\47\141\142\x63\47\x29\40\77\x3e"), array("\x6c\141\x62\145\x6c" => "\x65\x73\x63\141\160\x65\137\x61\164\164\x72", "\163\157\x75\162\x63\145" => "\173\x7b\x20\42\x61\142\143\42\40\x7c\x20\145\163\x63\x61\160\145\137\x61\x74\164\x72\40\x7d\x7d", "\145\170\160\x65\143\x74\145\x64" => "\x3c\77\75\x20\44\164\150\151\x73\55\76\145\163\143\141\160\145\x72\x2d\x3e\x61\164\x74\162\x69\142\x75\164\145\163\50\47\x61\142\143\x27\51\40\77\x3e"), array("\x6c\x61\x62\x65\154" => "\x74\162\151\x6d", "\163\157\x75\x72\143\x65" => "\173\173\x20\x22\x61\x62\x63\x22\x20\x7c\x20\x74\162\151\155\x20\x7d\175", "\x65\170\160\145\x63\164\x65\144" => "\x3c\77\75\x20\x74\x72\x69\x6d\x28\x27\x61\142\143\x27\51\40\x3f\x3e"), array("\154\x61\x62\x65\x6c" => "\x6c\x65\146\x74\137\164\x72\x69\x6d", "\x73\157\165\162\x63\x65" => "\x7b\173\x20\x22\x61\142\x63\42\x20\x7c\40\x6c\x65\146\164\137\x74\x72\x69\155\x20\x7d\x7d", "\145\x78\160\145\143\x74\145\x64" => "\74\x3f\x3d\40\x6c\164\162\151\155\50\47\x61\142\x63\47\x29\40\x3f\x3e"), array("\154\x61\142\x65\154" => "\162\x69\x67\150\x74\x5f\x74\162\x69\155", "\x73\x6f\x75\162\143\x65" => "\173\x7b\x20\x22\x61\x62\143\42\x20\174\40\x72\151\x67\150\164\x5f\x74\x72\x69\155\40\x7d\x7d", "\145\170\x70\x65\x63\164\x65\144" => "\74\x3f\x3d\x20\162\x74\x72\151\x6d\50\47\x61\x62\143\x27\51\x20\77\76"), array("\154\141\x62\145\x6c" => "\163\x74\162\x69\160\x74\141\147\163", "\163\x6f\x75\x72\143\145" => "\x7b\x7b\x20\42\x61\x62\143\x22\x20\x7c\x20\x73\x74\162\x69\160\x74\x61\x67\x73\x20\x7d\175", "\x65\170\x70\145\143\x74\145\144" => "\x3c\77\x3d\40\x73\x74\162\x69\x70\137\164\141\147\x73\x28\x27\x61\x62\x63\x27\51\40\x3f\x3e"), array("\x6c\x61\142\145\154" => "\165\162\x6c\x5f\x65\x6e\x63\157\144\x65", "\x73\x6f\x75\x72\x63\145" => "\173\x7b\40\42\x61\x62\143\42\40\174\x20\x75\x72\x6c\x5f\145\x6e\x63\x6f\144\x65\x20\175\x7d", "\x65\170\160\145\x63\164\x65\144" => "\x3c\x3f\75\x20\165\162\154\145\x6e\x63\157\x64\145\x28\47\141\142\x63\x27\51\40\77\76"), array("\154\141\x62\x65\x6c" => "\163\x74\162\151\x70\164\x61\147\163", "\x73\x6f\x75\162\143\145" => "\x7b\173\40\42\x61\142\143\x22\40\174\x20\163\x74\x72\151\160\x74\141\147\x73\x20\175\175", "\x65\x78\x70\145\143\x74\145\x64" => "\x3c\x3f\75\x20\163\x74\x72\x69\x70\137\x74\141\147\163\50\x27\x61\x62\x63\x27\x29\x20\77\x3e"), array("\154\x61\x62\145\154" => "\163\154\x61\x73\150\145\163", "\x73\x6f\x75\x72\x63\145" => "\x7b\x7b\40\x22\x61\x62\143\42\40\174\40\x73\154\141\163\x68\x65\163\x20\x7d\175", "\x65\x78\160\x65\x63\x74\145\x64" => "\x3c\x3f\x3d\x20\x61\144\144\163\154\141\x73\x68\x65\163\x28\47\141\x62\143\x27\x29\x20\77\x3e"), array("\154\x61\x62\145\x6c" => "\x73\164\x72\x69\x70\x73\x6c\x61\x73\x68\145\163", "\163\157\165\162\143\x65" => "\x7b\173\40\42\141\142\x63\42\40\x7c\x20\x73\x74\x72\x69\x70\x73\x6c\x61\x73\x68\145\x73\40\175\x7d", "\x65\170\x70\x65\x63\x74\x65\144" => "\x3c\77\75\x20\x73\x74\x72\151\x70\x73\154\x61\x73\150\145\x73\50\x27\x61\142\x63\47\51\40\77\76"), array("\x6c\141\142\x65\154" => "\x6e\x6c\62\x62\162", "\x73\157\165\x72\x63\x65" => "\173\173\40\42\141\142\143\42\40\174\40\156\x6c\62\x62\x72\40\175\x7d", "\145\x78\x70\x65\143\x74\x65\144" => "\x3c\x3f\x3d\40\x6e\x6c\62\142\162\50\47\x61\142\143\47\51\x20\x3f\76"), array("\154\141\142\x65\154" => "\153\145\x79\x73", "\x73\x6f\165\162\143\x65" => "\173\173\x20\x22\x61\142\x63\42\x20\x7c\x20\x6b\x65\171\x73\x20\175\175", "\145\170\x70\x65\x63\164\145\x64" => "\x3c\77\75\x20\141\162\162\x61\x79\137\x6b\145\171\x73\x28\47\x61\x62\x63\x27\x29\40\77\x3e"), array("\x6c\141\x62\145\154" => "\152\157\x69\156", "\x73\x6f\165\162\143\145" => "\173\x7b\x20\x5b\42\x61\x62\x63\x22\54\x20\42\144\x65\x66\x22\x5d\40\174\40\152\157\151\x6e\x28\x22\x2c\42\x29\40\175\x7d", "\x65\170\160\145\143\x74\x65\144" => "\x3c\x3f\x3d\x20\152\157\151\156\x28\x27\54\x27\54\40\133\47\x61\x62\x63\x27\x2c\40\47\144\x65\146\x27\x5d\51\x20\77\76"), array("\x6c\141\142\x65\x6c" => "\154\157\x77\145\x72", "\x73\x6f\x75\162\x63\145" => "\173\173\x20\x22\141\142\143\x22\40\174\x20\x6c\x6f\x77\x65\x72\40\x7d\x7d", "\145\170\160\x65\143\164\x65\144" => "\x3c\77\x3d\40\x24\x74\x68\x69\x73\55\76\x68\145\x6c\x70\x65\x72\55\76\x6c\157\x77\145\162\50\x27\141\x62\143\x27\51\x20\x3f\76"), array("\154\x61\x62\145\x6c" => "\154\x6f\167\145\162\143\141\163\145", "\163\157\x75\x72\143\145" => "\x7b\173\40\42\x61\x62\x63\x22\x20\x7c\x20\154\157\167\145\x72\143\x61\x73\145\40\x7d\x7d", "\145\x78\x70\145\143\164\x65\x64" => "\74\77\75\x20\x24\164\150\151\163\x2d\x3e\x68\145\x6c\160\x65\x72\x2d\76\x6c\157\x77\x65\x72\x28\x27\141\x62\143\47\51\x20\x3f\x3e"), array("\x6c\x61\x62\145\x6c" => "\x75\160\160\145\x72", "\x73\x6f\165\x72\x63\x65" => "\173\x7b\x20\x22\141\x62\x63\x22\40\x7c\x20\165\x70\x70\145\162\40\x7d\175", "\145\170\x70\145\x63\x74\145\144" => "\x3c\77\x3d\x20\44\164\150\151\163\55\x3e\150\145\154\x70\145\x72\x2d\x3e\x75\x70\x70\145\x72\50\47\x61\142\143\x27\x29\x20\77\x3e"), array("\x6c\141\142\145\154" => "\165\160\x70\x65\162\143\141\163\145", "\x73\x6f\x75\x72\x63\145" => "\173\x7b\x20\x22\141\x62\143\42\40\x7c\x20\165\160\x70\x65\x72\x63\x61\x73\145\40\x7d\x7d", "\145\x78\x70\x65\x63\x74\x65\x64" => "\74\77\75\x20\x24\164\150\151\163\55\76\x68\x65\x6c\160\x65\162\x2d\x3e\x75\160\x70\x65\162\50\x27\x61\x62\x63\x27\51\40\77\76"), array("\x6c\141\x62\x65\154" => "\143\x61\x70\x69\x74\x61\x6c\x69\172\x65", "\163\157\x75\162\x63\x65" => "\x7b\x7b\40\42\x61\x62\143\42\40\x7c\x20\x63\141\160\x69\164\141\x6c\151\x7a\145\40\175\175", "\145\170\160\x65\143\164\145\144" => "\x3c\x3f\75\x20\165\x63\167\157\x72\x64\163\x28\47\141\142\143\47\x29\x20\x3f\x3e"), array("\x6c\x61\142\145\154" => "\x73\157\162\x74", "\x73\x6f\x75\162\143\145" => "\173\x7b\40\x22\141\142\x63\42\40\174\x20\x73\x6f\x72\164\x20\x7d\x7d", "\x65\x78\160\145\x63\164\x65\x64" => "\x3c\77\x3d\x20\x24\x74\x68\x69\x73\x2d\76\x73\157\x72\x74\50\x27\141\142\143\x27\x29\40\x3f\x3e"), array("\154\x61\142\145\x6c" => "\x6a\163\x6f\156\x5f\145\x6e\x63\157\x64\145", "\163\x6f\x75\162\143\145" => "\173\x7b\x20\42\x61\142\x63\x22\40\x7c\40\x6a\163\157\x6e\x5f\145\156\x63\x6f\x64\x65\x20\175\x7d", "\145\170\160\x65\143\164\145\144" => "\74\77\75\x20\152\x73\x6f\x6e\x5f\x65\x6e\x63\x6f\x64\145\x28\47\x61\x62\x63\47\51\x20\x3f\76"), array("\154\141\142\145\154" => "\152\x73\x6f\156\137\144\x65\143\157\x64\x65", "\163\157\x75\162\143\x65" => "\x7b\x7b\x20\x22\141\x62\143\42\40\x7c\x20\152\163\157\156\137\144\145\x63\x6f\144\145\x20\x7d\x7d", "\145\170\160\145\143\164\145\144" => "\x3c\x3f\75\40\152\x73\157\x6e\137\x64\145\143\157\144\145\50\47\x61\x62\143\47\51\x20\77\76"), array("\154\x61\x62\x65\154" => "\146\157\162\x6d\141\x74", "\163\x6f\165\162\x63\x65" => "\x7b\x7b\x20\x22\x61\x62\x63\42\40\174\x20\x66\x6f\x72\155\x61\x74\x20\x7d\175", "\x65\170\x70\x65\x63\164\x65\144" => "\74\77\x3d\40\x73\160\162\x69\156\164\x66\x28\47\141\142\x63\x27\51\x20\77\x3e"), array("\154\141\x62\145\154" => "\x61\x62\163", "\163\157\x75\x72\x63\x65" => "\173\x7b\x20\x22\141\x62\143\x22\x20\x7c\x20\141\142\163\x20\x7d\175", "\145\x78\x70\145\x63\x74\x65\144" => "\74\77\x3d\40\x61\x62\x73\50\x27\x61\142\x63\47\51\40\77\76"), array("\x6c\141\x62\145\x6c" => "\163\x6c\151\143\x65", "\163\x6f\x75\162\143\145" => "\173\173\x20\x22\141\x62\143\x22\x20\x7c\40\163\154\x69\143\145\x20\175\x7d", "\145\x78\160\x65\x63\x74\x65\x64" => "\74\77\75\40\x24\x74\x68\x69\163\55\76\163\x6c\151\143\145\50\x27\x61\142\143\47\51\40\77\x3e"), array("\x6c\141\142\145\x6c" => "\x64\x65\x66\x61\165\x6c\164", "\x73\x6f\165\162\143\145" => "\x7b\173\x20\42\x61\x62\x63\x22\x20\174\40\x64\x65\146\141\x75\x6c\164\x28\x22\x64\x65\146\42\x29\x20\x7d\175", "\x65\170\160\x65\143\164\x65\144" => "\74\77\x3d\40\x28\x65\x6d\x70\x74\171\50\47\x61\x62\x63\47\x29\40\x3f\x20\x28\47\144\145\x66\x27\x29\40\72\x20\x28\x27\x61\142\x63\x27\x29\51\40\x3f\x3e"), array("\x6c\x61\142\x65\x6c" => "\143\157\x6e\166\145\162\x74\137\x65\x6e\143\x6f\x64\x69\156\147", "\x73\157\165\162\x63\145" => "\x7b\173\x20\x22\x61\142\143\42\40\x7c\40\143\x6f\156\166\x65\x72\164\137\x65\156\143\x6f\x64\x69\x6e\147\40\175\x7d", "\x65\x78\160\x65\x63\164\145\x64" => "\x3c\77\x3d\40\44\164\x68\151\x73\55\x3e\x63\x6f\x6e\x76\x65\162\164\105\156\143\157\144\151\x6e\x67\x28\47\141\142\143\x27\51\40\x3f\76"), array("\154\x61\142\x65\x6c" => "\141", "\163\157\165\162\143\x65" => "\x7b\x7b\40\141\50\42\150\164\164\x70\x73\x3a\x2f\x2f\160\150\x61\x6c\x63\157\x6e\x2e\151\x6f\x2f\42\54\40\x22\x68\157\155\x65\x22\x29\x20\175\x7d", "\x65\x78\x70\145\143\164\x65\x64" => "\x3c\x3f\x3d\40\44\x74\x68\151\x73\55\x3e\164\x61\147\55\x3e\141\x28\x22\150\164\x74\160\163\72\57\57\x70\x68\x61\154\x63\x6f\156\x2e\x69\x6f\x2f\x22\54\x20\42\150\157\x6d\145\42\x29\40\77\76"), array("\154\x61\x62\x65\x6c" => "\142\x61\163\x65", "\x73\157\x75\x72\143\x65" => "\173\x7b\x20\x62\141\163\x65\50\42\150\164\164\160\x73\x3a\x2f\x2f\x70\x68\141\154\x63\157\156\x2e\151\157\57\x22\51\x20\175\175", "\x65\170\160\145\x63\164\x65\x64" => "\74\77\75\x20\44\164\150\151\x73\55\76\x74\x61\x67\55\x3e\142\x61\x73\x65\x28\x22\150\164\164\x70\163\72\57\57\160\x68\x61\154\x63\x6f\156\x2e\151\x6f\57\x22\x29\40\x3f\76"), array("\x6c\141\142\x65\x6c" => "\142\157\x64\171", "\163\157\165\x72\x63\145" => "\x7b\x7b\40\x62\x6f\144\171\x28\x29\x20\175\175", "\145\x78\x70\145\143\164\145\x64" => "\x3c\x3f\x3d\40\44\x74\x68\151\x73\55\76\x74\141\x67\55\76\x62\157\x64\171\x28\x29\x20\x3f\76"), array("\x6c\x61\142\x65\154" => "\x62\x75\x74\164\157\156", "\x73\x6f\x75\x72\x63\145" => "\173\x7b\40\142\165\x74\164\157\156\x28\x22\143\154\157\163\145\x22\x2c\40\x5b\42\143\x6c\x61\163\163\x22\40\x3a\x20\42\154\141\142\145\154\x20\x6c\141\142\x65\x6c\55\151\x6e\146\x6f\42\x5d\51\x20\175\175", "\145\170\x70\x65\x63\x74\145\144" => "\x3c\x3f\x3d\x20\44\164\150\x69\163\55\76\x74\x61\147\x2d\76\142\165\164\x74\157\x6e\x28\x22\x63\154\157\163\x65\42\x2c\40\133\x27\x63\x6c\141\x73\x73\47\40\75\x3e\x20\42\154\x61\142\x65\x6c\40\154\x61\142\145\x6c\55\151\156\146\x6f\x22\x5d\51\x20\x3f\x3e"), array("\x6c\141\142\x65\154" => "\x63\x6c\157\x73\145", "\x73\157\x75\162\143\145" => "\x7b\x7b\x20\143\x6c\x6f\x73\x65\x28\x22\146\x6f\x72\155\42\x29\x20\175\x7d", "\x65\170\160\x65\x63\x74\x65\x64" => "\74\77\x3d\40\x24\x74\150\x69\163\55\x3e\x74\141\x67\55\76\x63\154\x6f\163\x65\50\42\x66\x6f\x72\x6d\42\51\40\77\x3e"), array("\154\x61\x62\145\154" => "\144\x6f\143\164\x79\160\x65", "\x73\157\x75\162\x63\145" => "\x7b\x7b\40\144\157\143\x74\171\x70\145\x28\65\54\x20\42\x5c\x6e\134\156\x22\51\40\175\x7d", "\x65\x78\160\x65\143\164\x65\x64" => "\74\77\75\x20\x24\x74\150\151\x73\x2d\76\x74\x61\x67\55\x3e\x64\x6f\x63\164\x79\160\145\50\x35\x2c\x20\42\134\156\134\156\x22\x29\40\77\76"), array("\x6c\x61\x62\x65\x6c" => "\x65\x6c\x65\155\x65\156\x74", "\x73\x6f\x75\162\x63\145" => "\x7b\x7b\x20\145\x6c\x65\x6d\x65\156\164\50\x22\x62\x75\x74\164\157\x6e\42\54\40\42\x63\154\157\163\x65\x22\54\40\x5b\x22\143\154\141\163\163\x22\40\x3a\x20\x22\x6c\x61\x62\x65\x6c\x20\154\141\x62\145\154\55\x69\156\146\157\42\x5d\51\x20\175\x7d", "\145\170\x70\145\x63\164\145\x64" => "\x3c\77\75\40\44\x74\x68\151\x73\x2d\76\164\x61\147\x2d\76\145\154\145\155\x65\156\x74\50\42\x62\165\164\x74\x6f\x6e\42\x2c\x20\x22\143\x6c\157\163\145\x22\54\x20\x5b\47\x63\x6c\141\x73\163\47\x20\75\76\x20\42\x6c\x61\142\x65\x6c\40\154\141\142\x65\x6c\55\151\x6e\146\x6f\x22\135\x29\x20\77\76"), array("\154\141\x62\x65\154" => "\x66\x6f\x72\x6d", "\163\157\x75\x72\x63\x65" => "\173\x7b\40\146\x6f\162\x6d\x28\133\42\x63\154\141\163\x73\x22\40\x3a\40\x22\154\141\142\145\x6c\x20\x6c\141\x62\145\154\x2d\x69\156\146\157\42\135\51\x20\x7d\175", "\145\170\160\x65\x63\x74\145\144" => "\x3c\77\75\40\44\164\150\151\x73\x2d\x3e\164\x61\147\55\x3e\x66\x6f\162\x6d\50\133\47\x63\154\141\163\163\x27\40\75\x3e\40\42\x6c\x61\x62\x65\x6c\40\x6c\141\142\145\154\55\151\156\x66\x6f\x22\135\51\x20\x3f\76"), array("\154\x61\142\x65\154" => "\x69\155\x67", "\163\157\x75\162\143\145" => "\x7b\173\x20\151\155\147\50\42\57\x69\x6d\x67\57\141\142\143\x2e\x6a\160\147\42\51\x20\175\175", "\145\x78\160\145\143\164\145\x64" => "\x3c\77\x3d\40\44\x74\x68\x69\x73\55\x3e\x74\141\147\x2d\76\151\155\147\x28\42\57\x69\x6d\x67\x2f\x61\142\143\x2e\x6a\x70\x67\x22\x29\x20\x3f\76"), array("\154\141\142\x65\154" => "\x69\156\160\165\x74\x43\x68\x65\x63\x6b\142\x6f\170", "\163\x6f\x75\x72\x63\x65" => "\x7b\x7b\x20\151\156\x70\x75\164\x43\x68\x65\x63\153\142\x6f\170\x28\42\x74\145\163\x74\x22\x2c\x20\42\x31\42\x2c\40\x5b\42\143\x6c\141\x73\163\x22\x20\72\40\42\x6c\x61\x62\145\x6c\x20\x6c\x61\x62\145\154\55\x69\x6e\x66\157\x22\135\51\40\175\175", "\x65\170\160\x65\143\164\145\144" => "\x3c\x3f\75\40\x24\164\x68\x69\163\55\76\x74\x61\147\55\76\151\x6e\x70\165\164\103\150\x65\x63\x6b\x62\157\170\x28\42\164\x65\x73\x74\x22\x2c\40\42\x31\42\54\x20\x5b\47\x63\154\x61\163\163\47\x20\x3d\x3e\x20\x22\x6c\141\x62\145\x6c\40\x6c\x61\142\145\154\x2d\x69\x6e\x66\157\42\135\x29\x20\77\76"), array("\x6c\x61\x62\145\x6c" => "\151\x6e\x70\165\x74\x43\157\x6c\x6f\x72", "\163\157\165\162\x63\x65" => "\x7b\173\x20\151\156\x70\x75\x74\103\157\154\157\162\50\x22\x74\x65\163\164\x22\54\40\42\x31\42\x2c\x20\133\x22\143\154\x61\163\x73\42\40\72\40\x22\x6c\141\142\145\x6c\40\x6c\x61\x62\x65\x6c\x2d\151\156\x66\157\x22\x5d\x29\x20\175\175", "\x65\x78\160\x65\x63\164\145\144" => "\74\x3f\75\40\x24\164\150\x69\163\55\76\164\x61\147\55\76\151\156\x70\x75\164\103\157\x6c\x6f\162\x28\x22\x74\x65\x73\164\42\54\40\x22\61\x22\54\x20\x5b\x27\x63\154\141\163\x73\x27\x20\75\x3e\x20\42\154\141\x62\145\154\40\154\141\142\145\x6c\x2d\151\x6e\x66\157\42\x5d\x29\40\77\76"), array("\x6c\141\x62\145\154" => "\151\x6e\x70\x75\164\104\141\164\145", "\163\157\x75\x72\143\x65" => "\x7b\173\40\151\156\x70\x75\164\104\141\164\145\50\42\x74\145\163\164\x22\x2c\x20\42\x31\42\54\40\133\x22\143\154\141\x73\163\x22\x20\x3a\x20\x22\154\x61\x62\145\154\40\154\141\x62\145\154\x2d\x69\x6e\x66\157\x22\135\51\x20\175\x7d", "\x65\x78\160\145\143\164\145\x64" => "\74\77\x3d\40\44\164\x68\151\x73\55\x3e\164\141\x67\x2d\x3e\151\x6e\160\165\164\x44\141\164\145\50\x22\x74\x65\x73\x74\x22\54\x20\42\x31\42\54\40\133\x27\143\154\141\x73\163\47\x20\x3d\x3e\40\42\154\141\142\145\x6c\x20\x6c\x61\142\145\154\x2d\151\156\146\157\42\x5d\51\40\77\76"), array("\154\x61\x62\x65\154" => "\x69\156\160\x75\164\104\x61\x74\145\124\x69\155\145", "\x73\157\x75\x72\x63\145" => "\173\x7b\40\x69\156\x70\x75\x74\104\x61\x74\145\124\151\155\145\x28\42\x74\x65\163\164\42\54\40\x22\61\42\54\40\x5b\42\143\x6c\x61\163\x73\x22\40\72\40\x22\x6c\x61\x62\x65\x6c\x20\154\x61\x62\145\x6c\x2d\151\156\146\157\x22\x5d\51\40\175\x7d", "\x65\x78\x70\145\143\x74\145\x64" => "\x3c\x3f\75\40\44\164\x68\151\x73\x2d\x3e\x74\141\147\55\76\151\156\x70\x75\x74\104\141\x74\x65\x54\151\x6d\x65\50\42\x74\x65\x73\164\x22\x2c\40\42\61\42\x2c\x20\x5b\47\x63\x6c\x61\x73\x73\x27\x20\75\x3e\40\42\x6c\x61\142\x65\154\40\154\141\x62\x65\x6c\55\151\x6e\146\x6f\42\x5d\x29\40\77\76"), array("\154\x61\142\145\x6c" => "\151\x6e\x70\x75\164\104\x61\x74\x65\x54\x69\155\145\114\157\x63\141\x6c", "\163\157\x75\162\x63\x65" => "\173\173\x20\x69\x6e\160\x75\164\104\x61\x74\x65\x54\x69\x6d\145\x4c\x6f\x63\141\x6c\x28\x22\x74\145\x73\x74\42\54\40\x22\61\x22\x2c\40\133\x22\x63\x6c\x61\x73\x73\42\x20\x3a\40\42\x6c\141\142\145\154\40\x6c\141\x62\145\x6c\55\x69\x6e\146\157\42\135\51\40\175\x7d", "\x65\170\160\x65\x63\x74\x65\144" => "\x3c\x3f\75\40\x24\x74\150\x69\163\55\x3e\164\141\147\55\x3e\151\156\x70\x75\x74\104\141\164\x65\124\151\155\145\114\157\x63\141\154\x28\42\164\145\x73\x74\x22\54\40\x22\x31\x22\54\40\133\47\x63\154\141\163\x73\x27\x20\x3d\76\40\x22\x6c\x61\x62\x65\x6c\x20\154\141\142\x65\x6c\55\151\x6e\146\x6f\42\x5d\51\x20\77\x3e"), array("\154\x61\x62\x65\154" => "\x69\156\160\165\164\x45\x6d\x61\151\154", "\163\x6f\x75\162\143\145" => "\x7b\173\x20\151\156\160\x75\164\105\155\x61\151\154\50\42\164\x65\x73\164\x22\54\40\42\x31\42\54\x20\133\x22\143\154\141\163\x73\x22\40\72\40\x22\x6c\x61\142\x65\154\x20\154\141\x62\145\154\55\x69\156\146\157\x22\x5d\x29\x20\x7d\175", "\x65\x78\160\x65\x63\x74\x65\x64" => "\74\x3f\75\40\x24\164\x68\x69\x73\55\76\164\141\x67\x2d\76\x69\156\160\165\164\105\155\141\151\x6c\50\x22\164\x65\163\164\x22\54\x20\x22\61\42\54\40\133\47\x63\x6c\x61\x73\x73\x27\x20\75\76\40\42\154\141\142\x65\x6c\40\x6c\x61\x62\145\x6c\x2d\x69\x6e\146\157\42\x5d\51\40\x3f\x3e"), array("\x6c\141\x62\x65\x6c" => "\x69\156\x70\x75\164\106\151\154\145", "\x73\157\x75\x72\143\145" => "\173\x7b\40\151\x6e\160\165\x74\x46\x69\x6c\145\50\x22\x74\x65\163\164\42\x2c\x20\42\61\42\54\40\x5b\x22\x63\154\x61\163\163\x22\x20\72\40\x22\x6c\141\142\x65\154\40\x6c\x61\142\145\154\55\x69\x6e\x66\x6f\x22\135\x29\40\x7d\175", "\x65\x78\160\x65\x63\164\145\x64" => "\74\77\x3d\40\x24\164\150\151\x73\x2d\76\x74\141\147\55\x3e\151\x6e\160\x75\164\106\x69\154\x65\50\x22\x74\x65\163\164\42\x2c\x20\x22\x31\42\54\x20\133\x27\143\154\x61\163\x73\47\40\x3d\76\x20\42\154\x61\x62\145\x6c\x20\x6c\x61\x62\145\x6c\55\151\156\146\157\x22\x5d\x29\40\x3f\76"), array("\x6c\x61\x62\x65\154" => "\151\x6e\160\165\164\x48\x69\x64\144\x65\x6e", "\163\157\x75\162\x63\x65" => "\x7b\x7b\40\x69\x6e\x70\x75\164\110\151\144\144\x65\x6e\50\42\x74\x65\x73\x74\42\x2c\x20\x22\x31\x22\54\x20\133\42\143\x6c\x61\163\x73\42\x20\72\40\42\x6c\x61\142\x65\x6c\40\x6c\141\x62\145\154\x2d\151\156\x66\157\42\135\x29\40\175\x7d", "\145\170\160\145\143\x74\145\x64" => "\74\77\x3d\x20\x24\x74\x68\151\163\55\76\164\x61\147\x2d\x3e\x69\156\x70\165\x74\110\151\x64\x64\145\x6e\50\42\164\x65\163\164\x22\54\x20\42\61\x22\x2c\x20\133\47\x63\x6c\x61\x73\163\47\40\x3d\76\x20\x22\x6c\x61\142\145\154\x20\x6c\141\x62\145\154\55\x69\x6e\x66\x6f\42\x5d\51\40\77\x3e"), array("\154\141\142\x65\154" => "\151\156\x70\x75\164\x49\155\x61\x67\x65", "\163\157\x75\x72\x63\x65" => "\173\x7b\x20\151\156\160\x75\164\x49\155\141\x67\145\x28\42\x74\x65\x73\x74\x22\x2c\40\x22\61\42\x2c\x20\x5b\42\x63\154\141\x73\x73\42\x20\x3a\40\42\x6c\x61\x62\145\154\x20\154\141\x62\145\154\55\151\x6e\x66\157\42\135\x29\x20\175\175", "\145\170\x70\x65\x63\x74\x65\144" => "\x3c\x3f\75\x20\44\x74\x68\x69\x73\55\76\164\x61\x67\x2d\76\x69\x6e\160\165\x74\111\x6d\x61\147\145\x28\42\x74\x65\163\x74\x22\54\x20\42\x31\x22\54\40\x5b\47\x63\x6c\141\x73\163\x27\40\x3d\76\40\42\154\141\x62\145\x6c\40\x6c\141\142\145\154\55\151\x6e\x66\x6f\42\135\51\x20\x3f\x3e"), array("\x6c\x61\x62\145\x6c" => "\x69\156\160\x75\164\x49\156\160\165\164", "\x73\157\165\x72\x63\145" => "\x7b\x7b\40\x69\156\160\x75\x74\111\156\160\165\x74\50\42\x74\145\163\x74\x22\54\40\42\61\42\x2c\x20\x5b\42\143\x6c\141\163\163\42\40\72\40\x22\x6c\x61\x62\145\154\x20\x6c\141\x62\x65\154\x2d\x69\156\x66\x6f\x22\x5d\x29\x20\x7d\x7d", "\x65\x78\x70\x65\x63\164\145\x64" => "\74\77\75\40\x24\164\150\x69\163\x2d\x3e\164\141\x67\x2d\76\x69\x6e\x70\x75\x74\111\x6e\160\165\x74\50\x22\x74\145\163\164\42\x2c\x20\42\61\42\x2c\x20\133\x27\143\154\141\x73\x73\47\40\x3d\76\40\42\x6c\x61\142\x65\154\x20\x6c\x61\142\145\154\55\x69\156\146\157\x22\x5d\x29\40\x3f\76"), array("\154\141\142\x65\154" => "\151\156\x70\165\164\x4d\157\x6e\164\x68", "\x73\x6f\x75\162\143\x65" => "\173\x7b\x20\151\156\x70\165\x74\x4d\x6f\156\x74\150\x28\42\164\145\163\164\x22\x2c\40\42\x31\42\54\x20\x5b\42\143\x6c\x61\163\163\x22\x20\x3a\40\x22\x6c\x61\x62\145\154\40\154\141\142\145\x6c\55\x69\x6e\x66\157\42\x5d\x29\40\x7d\175", "\x65\170\x70\x65\143\x74\x65\x64" => "\x3c\77\75\x20\44\164\150\x69\x73\x2d\x3e\164\x61\x67\x2d\76\151\156\x70\x75\164\x4d\157\x6e\164\x68\x28\x22\164\145\163\164\42\x2c\x20\x22\x31\x22\x2c\x20\x5b\47\143\154\141\163\163\47\x20\x3d\x3e\x20\x22\154\x61\x62\x65\x6c\40\x6c\x61\142\x65\154\x2d\151\x6e\146\x6f\42\135\x29\x20\x3f\x3e"), array("\154\x61\142\145\154" => "\151\156\160\x75\x74\x4e\165\x6d\145\x72\x69\x63", "\163\157\x75\x72\143\x65" => "\x7b\173\x20\151\156\x70\165\x74\116\x75\x6d\x65\162\151\143\x28\42\x74\145\163\164\42\x2c\40\x22\61\x22\54\x20\133\x22\x63\x6c\x61\163\163\x22\x20\x3a\40\42\154\141\142\145\154\40\154\141\x62\x65\x6c\55\x69\x6e\146\x6f\x22\135\x29\x20\175\x7d", "\145\170\160\145\x63\x74\x65\144" => "\74\x3f\75\40\44\164\x68\151\163\55\x3e\x74\x61\x67\x2d\x3e\x69\156\x70\x75\164\x4e\x75\155\145\x72\x69\143\x28\42\x74\x65\163\164\42\54\x20\x22\61\42\54\x20\x5b\x27\x63\154\141\163\x73\x27\40\x3d\x3e\x20\42\154\x61\x62\x65\154\x20\154\141\x62\x65\154\x2d\151\156\x66\157\42\135\x29\x20\x3f\x3e"), array("\154\141\142\x65\x6c" => "\x69\x6e\x70\165\164\120\x61\x73\163\x77\157\162\144", "\x73\157\x75\162\143\x65" => "\x7b\x7b\40\151\x6e\160\165\164\120\x61\x73\x73\167\157\x72\x64\x28\42\164\x65\163\164\42\54\40\42\x31\42\x2c\x20\133\42\x63\x6c\x61\x73\163\42\40\72\40\x22\x6c\141\x62\145\x6c\x20\x6c\141\x62\x65\x6c\x2d\x69\156\146\157\x22\135\51\40\x7d\x7d", "\145\x78\x70\x65\x63\164\145\144" => "\x3c\77\x3d\x20\x24\164\150\x69\x73\x2d\76\x74\x61\147\55\76\151\x6e\160\165\x74\120\x61\x73\163\x77\x6f\x72\x64\50\42\164\x65\163\164\x22\54\40\x22\61\x22\x2c\40\x5b\47\x63\x6c\x61\163\163\x27\x20\x3d\76\40\x22\154\x61\x62\145\x6c\40\154\x61\x62\145\x6c\55\151\156\146\157\x22\135\x29\40\77\76"), array("\x6c\x61\x62\145\154" => "\151\156\160\165\164\x52\x61\144\x69\157", "\x73\x6f\165\x72\x63\x65" => "\173\173\x20\151\x6e\160\x75\164\x52\x61\x64\x69\x6f\x28\42\164\145\x73\x74\42\x2c\40\x22\61\42\54\40\x5b\42\x63\154\x61\x73\x73\42\x20\x3a\x20\x22\x6c\141\x62\145\x6c\40\x6c\141\142\145\154\x2d\x69\x6e\x66\157\42\135\x29\40\175\x7d", "\145\x78\x70\x65\143\x74\145\x64" => "\74\77\75\40\44\x74\x68\x69\163\55\76\x74\141\x67\55\76\151\x6e\x70\165\164\x52\141\144\151\157\x28\42\x74\145\163\164\x22\54\x20\x22\61\42\x2c\x20\133\47\x63\154\141\163\163\47\x20\x3d\76\40\x22\x6c\141\x62\x65\154\40\154\x61\142\x65\x6c\x2d\151\x6e\x66\x6f\42\135\x29\x20\77\x3e"), array("\154\x61\x62\145\x6c" => "\151\x6e\x70\x75\x74\122\x61\x6e\147\145", "\x73\157\165\162\143\145" => "\173\x7b\x20\x69\x6e\x70\x75\164\122\141\156\x67\x65\x28\42\x74\x65\163\x74\42\54\40\x22\61\42\54\x20\133\42\143\x6c\x61\163\x73\x22\x20\72\x20\42\154\x61\142\x65\x6c\40\154\141\x62\x65\x6c\x2d\151\156\146\157\42\135\x29\40\175\175", "\145\170\160\x65\143\164\145\144" => "\74\77\75\x20\x24\164\x68\x69\163\x2d\76\x74\x61\147\x2d\x3e\151\156\160\x75\x74\x52\x61\156\x67\145\50\x22\x74\x65\x73\164\x22\54\40\42\x31\42\54\40\133\47\x63\154\x61\x73\163\47\x20\x3d\76\x20\42\x6c\141\x62\x65\154\x20\x6c\141\x62\145\x6c\55\151\x6e\146\x6f\42\135\51\40\77\76"), array("\x6c\141\x62\x65\154" => "\151\x6e\x70\165\x74\123\145\x61\162\143\150", "\163\157\165\162\x63\145" => "\173\173\40\x69\156\160\165\164\x53\145\141\x72\143\x68\x28\x22\x74\145\x73\x74\x22\54\x20\x22\61\x22\x2c\40\x5b\42\143\x6c\x61\163\163\42\x20\72\x20\42\154\141\142\145\154\x20\x6c\x61\x62\x65\154\x2d\x69\156\x66\x6f\x22\x5d\51\x20\x7d\175", "\145\x78\x70\x65\x63\x74\x65\144" => "\x3c\77\x3d\40\x24\x74\x68\151\x73\55\x3e\x74\141\x67\55\76\x69\156\160\165\x74\123\x65\141\x72\143\150\x28\x22\164\145\x73\164\x22\x2c\x20\42\61\42\54\40\x5b\47\143\x6c\141\x73\x73\47\x20\x3d\76\x20\x22\x6c\x61\142\145\x6c\x20\x6c\141\x62\145\154\55\151\x6e\146\157\x22\135\51\40\77\x3e"), array("\x6c\x61\142\145\x6c" => "\x69\156\160\165\164\x53\x65\x6c\145\x63\164", "\x73\x6f\x75\x72\x63\145" => "\x7b\x7b\40\x69\x6e\160\x75\164\123\x65\154\145\x63\164\x28\42\164\145\x73\164\42\x2c\x20\x22\61\x22\54\40\133\x22\x63\154\141\163\163\42\40\72\40\42\x6c\141\x62\x65\154\40\x6c\x61\142\145\154\55\x69\156\x66\x6f\42\135\51\40\175\x7d", "\145\x78\160\145\143\164\145\144" => "\x3c\x3f\75\x20\x24\164\x68\x69\x73\55\x3e\x74\141\x67\55\76\x69\156\160\x75\164\123\145\154\145\143\164\50\x22\x74\145\163\x74\x22\54\x20\x22\61\42\54\40\133\x27\143\154\141\163\163\x27\x20\75\x3e\x20\42\154\141\142\x65\x6c\40\154\141\142\x65\x6c\x2d\151\x6e\146\x6f\x22\x5d\51\x20\x3f\x3e"), array("\154\141\x62\x65\154" => "\x69\x6e\160\165\x74\x53\x75\x62\x6d\151\164", "\x73\157\x75\162\x63\x65" => "\173\173\40\151\x6e\160\x75\164\x53\165\142\155\x69\164\x28\42\x74\x65\x73\164\x22\54\x20\x22\61\x22\54\40\133\x22\143\x6c\x61\163\x73\x22\40\x3a\x20\x22\154\141\x62\145\154\40\x6c\x61\x62\x65\x6c\55\151\x6e\146\157\42\135\51\40\x7d\175", "\x65\170\160\x65\x63\x74\x65\144" => "\74\77\x3d\40\44\x74\150\x69\x73\55\x3e\x74\141\x67\55\76\x69\x6e\x70\x75\x74\123\165\x62\x6d\151\x74\50\x22\164\x65\163\164\42\x2c\40\42\x31\x22\x2c\x20\133\x27\143\154\141\x73\x73\47\40\75\76\x20\x22\x6c\x61\142\x65\x6c\x20\x6c\141\142\145\154\55\151\x6e\x66\x6f\x22\135\x29\x20\x3f\76"), array("\x6c\x61\x62\145\154" => "\151\x6e\x70\165\x74\124\x65\x6c", "\163\157\x75\162\143\145" => "\173\173\40\151\x6e\x70\x75\x74\x54\x65\154\50\x22\x74\x65\163\164\x22\x2c\40\x22\x31\x22\54\x20\x5b\x22\x63\x6c\141\x73\x73\42\40\x3a\x20\x22\x6c\x61\x62\x65\154\x20\x6c\x61\x62\145\154\55\x69\x6e\146\x6f\x22\135\51\40\175\x7d", "\145\x78\x70\145\x63\x74\145\x64" => "\x3c\x3f\75\40\44\x74\150\151\163\55\x3e\x74\141\x67\x2d\76\x69\x6e\x70\x75\x74\124\145\x6c\50\42\164\145\x73\164\42\54\40\x22\x31\x22\x2c\40\x5b\47\x63\x6c\x61\163\163\47\x20\75\x3e\x20\42\x6c\x61\142\x65\x6c\40\154\141\x62\x65\154\x2d\151\x6e\x66\x6f\42\135\x29\40\77\x3e"), array("\x6c\x61\x62\x65\x6c" => "\x69\x6e\160\x75\x74\x54\x65\x78\x74", "\163\x6f\x75\162\143\x65" => "\x7b\x7b\40\151\x6e\160\x75\x74\124\145\x78\x74\x28\x22\164\x65\x73\164\42\x2c\x20\42\61\x22\x2c\x20\x5b\x22\143\x6c\x61\x73\x73\x22\x20\72\40\42\154\141\x62\x65\x6c\x20\154\141\142\x65\154\x2d\x69\156\146\157\x22\135\51\x20\x7d\x7d", "\145\170\160\x65\143\164\145\x64" => "\74\77\x3d\x20\x24\x74\150\151\163\55\76\x74\141\x67\x2d\76\x69\156\160\x75\x74\124\x65\170\x74\50\42\x74\145\163\164\x22\x2c\40\x22\61\42\54\x20\133\47\143\154\x61\x73\x73\47\x20\75\76\40\42\x6c\x61\x62\x65\x6c\x20\x6c\x61\142\x65\154\55\x69\156\x66\157\x22\135\51\40\x3f\76"), array("\154\x61\142\145\154" => "\x69\156\x70\165\164\124\x65\x78\x74\141\162\x65\x61", "\163\157\165\x72\x63\x65" => "\173\173\x20\151\156\x70\165\x74\x54\x65\x78\x74\x61\x72\145\x61\50\42\164\145\163\164\42\54\40\x22\x31\42\x2c\40\x5b\42\143\154\141\x73\163\x22\40\x3a\40\x22\154\x61\x62\145\x6c\x20\x6c\x61\x62\x65\154\55\151\156\x66\x6f\42\135\51\40\175\x7d", "\145\170\x70\145\143\164\x65\x64" => "\74\x3f\75\x20\44\164\150\x69\x73\x2d\x3e\x74\141\147\55\76\x69\156\160\165\164\124\x65\x78\x74\x61\162\x65\x61\50\42\x74\x65\x73\164\x22\x2c\x20\42\61\x22\54\40\x5b\47\143\154\141\x73\163\47\40\x3d\76\40\x22\x6c\141\x62\145\x6c\x20\154\141\x62\x65\x6c\x2d\x69\156\x66\157\42\x5d\x29\40\x3f\76"), array("\154\141\x62\145\154" => "\151\156\x70\x75\x74\x54\151\155\145", "\163\x6f\165\162\143\145" => "\x7b\173\40\151\x6e\x70\x75\164\x54\151\155\145\50\42\164\145\x73\x74\x22\x2c\40\x22\x31\42\x2c\40\x5b\x22\143\154\141\x73\163\42\40\x3a\40\42\x6c\x61\142\145\154\40\x6c\141\142\x65\154\55\151\156\146\157\x22\x5d\51\40\175\x7d", "\x65\x78\x70\145\143\x74\145\144" => "\74\x3f\75\x20\x24\164\150\151\163\55\x3e\164\141\147\55\x3e\151\156\160\165\164\x54\x69\155\145\50\42\164\145\163\x74\42\x2c\x20\42\61\42\54\40\133\47\x63\154\141\163\x73\47\x20\x3d\76\40\x22\x6c\x61\142\145\x6c\x20\x6c\141\x62\145\x6c\x2d\151\156\x66\x6f\x22\x5d\x29\40\77\76"), array("\154\x61\142\145\x6c" => "\151\156\160\x75\164\x55\x72\x6c", "\163\x6f\165\x72\x63\x65" => "\x7b\x7b\40\x69\x6e\160\x75\x74\x55\162\154\x28\x22\164\145\163\x74\x22\54\40\x22\61\42\54\x20\x5b\42\143\154\x61\163\x73\42\x20\x3a\x20\x22\154\x61\142\145\x6c\x20\x6c\x61\x62\145\154\x2d\151\156\x66\x6f\42\135\x29\x20\x7d\175", "\x65\170\x70\x65\143\164\145\144" => "\x3c\77\x3d\x20\44\164\x68\151\x73\55\x3e\x74\x61\x67\x2d\76\x69\x6e\160\x75\x74\125\162\x6c\x28\x22\164\145\x73\x74\x22\54\40\42\61\42\x2c\x20\133\47\x63\154\x61\163\163\x27\40\x3d\x3e\x20\x22\154\141\x62\x65\x6c\40\x6c\x61\142\145\154\55\151\156\x66\157\42\135\x29\40\x3f\x3e"), array("\154\141\x62\x65\154" => "\151\x6e\160\x75\164\x57\x65\x65\x6b", "\163\x6f\x75\162\143\x65" => "\173\173\40\151\x6e\x70\165\164\x57\x65\145\x6b\50\42\164\145\x73\x74\42\x2c\x20\x22\61\x22\x2c\40\133\42\143\x6c\x61\163\163\x22\x20\x3a\x20\x22\x6c\x61\142\145\154\40\x6c\x61\x62\145\x6c\x2d\x69\156\146\157\42\135\x29\x20\175\175", "\x65\170\160\145\x63\x74\145\144" => "\x3c\77\75\40\44\164\150\x69\163\x2d\x3e\x74\141\x67\x2d\x3e\151\156\160\165\x74\x57\145\x65\x6b\50\42\x74\x65\163\164\42\54\x20\x22\x31\42\54\x20\x5b\x27\x63\154\x61\x73\x73\x27\40\75\76\40\42\154\141\x62\145\x6c\x20\154\141\142\145\154\55\x69\x6e\146\x6f\42\135\51\x20\x3f\76"), array("\x6c\141\x62\x65\154" => "\x6c\x61\142\x65\x6c", "\x73\157\165\x72\x63\145" => "\173\x7b\40\154\141\142\145\x6c\50\x22\164\x65\x73\x74\42\54\x20\x5b\x22\x63\154\x61\163\163\42\40\x3a\40\42\x6c\x61\142\145\154\40\x6c\141\x62\x65\x6c\55\x69\x6e\146\157\x22\x5d\51\40\175\175", "\x65\x78\160\x65\x63\164\145\x64" => "\x3c\x3f\x3d\x20\x24\x74\x68\151\x73\55\76\x74\x61\147\x2d\x3e\154\x61\x62\x65\154\50\x22\164\x65\x73\164\42\x2c\x20\x5b\x27\x63\x6c\141\163\x73\47\40\x3d\76\40\42\154\141\x62\145\x6c\40\154\x61\142\x65\x6c\x2d\151\156\x66\157\42\x5d\51\40\77\x3e"), array("\154\141\x62\x65\x6c" => "\x6c\x69\156\153", "\163\157\x75\x72\143\x65" => "\173\x7b\40\154\151\x6e\x6b\x28\42\x5c\164\x22\x2c\40\42\134\156\x5c\x6e\42\51\x20\175\x7d", "\x65\170\160\145\x63\164\145\144" => "\74\x3f\x3d\40\x24\164\150\x69\163\55\x3e\x74\141\x67\x2d\x3e\154\x69\156\x6b\x28\x22\134\164\x22\54\x20\42\x5c\156\x5c\x6e\x22\x29\40\77\x3e"), array("\154\141\x62\145\x6c" => "\x6d\x65\164\141", "\x73\157\165\162\x63\x65" => "\173\x7b\40\x6d\145\x74\x61\50\42\134\x74\42\x2c\40\42\x5c\x6e\134\x6e\x22\x29\x20\x7d\x7d", "\145\170\x70\x65\x63\x74\x65\x64" => "\74\77\75\x20\44\164\150\151\x73\x2d\76\164\x61\x67\55\x3e\155\x65\164\141\x28\x22\x5c\x74\x22\54\40\x22\x5c\156\134\156\x22\51\x20\77\76"), array("\x6c\141\x62\145\154" => "\157\x6c", "\163\x6f\x75\162\x63\x65" => "\x7b\x7b\x20\157\x6c\x28\42\x74\x65\x73\x74\x22\x2c\x20\133\x22\x63\x6c\141\x73\x73\42\x20\72\x20\x22\154\x61\x62\145\x6c\x20\154\x61\x62\145\154\x2d\x69\x6e\x66\x6f\x22\135\x29\40\x7d\175", "\145\x78\x70\x65\x63\164\x65\x64" => "\74\x3f\75\x20\x24\164\150\151\163\55\x3e\x74\x61\147\55\76\x6f\x6c\50\x22\x74\145\163\x74\x22\x2c\40\133\47\x63\x6c\x61\163\163\x27\x20\x3d\x3e\x20\42\154\141\142\x65\154\x20\x6c\x61\142\x65\154\55\x69\x6e\146\157\42\x5d\x29\40\x3f\x3e"), array("\x6c\141\x62\x65\x6c" => "\163\143\x72\151\160\164", "\163\157\165\x72\x63\x65" => "\173\173\40\x73\143\x72\151\160\x74\x28\42\x5c\164\x22\54\40\42\134\156\134\156\42\x29\x20\x7d\x7d", "\x65\x78\160\x65\143\164\145\x64" => "\74\x3f\x3d\x20\x24\x74\150\x69\163\x2d\76\x74\x61\x67\55\x3e\x73\143\162\x69\x70\164\x28\42\134\164\42\x2c\40\x22\134\156\x5c\156\42\x29\40\77\76"), array("\x6c\x61\142\x65\154" => "\163\x74\171\154\145", "\x73\x6f\x75\x72\143\x65" => "\173\173\40\163\164\171\x6c\145\50\x22\x5c\x74\x22\54\x20\42\x5c\x6e\x5c\156\x22\51\x20\x7d\175", "\x65\170\160\x65\x63\164\x65\144" => "\74\x3f\75\x20\44\164\x68\x69\163\55\x3e\164\x61\147\55\76\x73\x74\171\154\145\x28\x22\134\x74\42\x2c\40\x22\x5c\156\x5c\156\42\x29\x20\77\x3e"), array("\x6c\141\142\145\154" => "\x73\164\171\154\145", "\163\x6f\x75\162\143\x65" => "\x7b\173\40\x73\x74\x79\154\x65\x28\42\134\x74\42\x2c\40\x22\134\x6e\x5c\156\x22\x29\x20\175\x7d", "\145\170\160\x65\x63\x74\145\x64" => "\x3c\77\75\x20\44\164\x68\151\163\x2d\x3e\x74\141\147\55\76\163\164\171\x6c\145\50\42\134\x74\42\54\x20\42\x5c\156\134\156\x22\51\40\x3f\x3e"), array("\x6c\141\142\x65\x6c" => "\164\151\164\154\145", "\x73\157\165\x72\143\x65" => "\x7b\x7b\x20\164\151\x74\x6c\x65\50\x22\x5c\x74\42\54\40\42\134\156\134\156\42\51\x20\175\175", "\x65\x78\160\x65\143\x74\x65\144" => "\74\x3f\75\x20\44\x74\x68\151\163\55\x3e\x74\x61\147\x2d\76\164\151\164\x6c\x65\50\x22\x5c\x74\x22\x2c\40\42\x5c\x6e\x5c\156\42\x29\x20\x3f\x3e"), array("\154\x61\142\145\154" => "\165\x6c", "\163\157\165\x72\143\x65" => "\173\x7b\x20\x75\154\x28\x22\x74\145\163\164\42\54\40\133\x22\143\154\141\163\163\42\40\72\40\x22\x6c\141\x62\x65\154\x20\x6c\141\142\x65\154\x2d\x69\x6e\x66\157\x22\x5d\51\40\x7d\x7d", "\145\170\x70\x65\143\164\145\x64" => "\x3c\77\75\x20\x24\164\150\151\x73\x2d\76\164\x61\x67\x2d\76\x75\154\50\x22\164\145\x73\164\42\x2c\x20\x5b\x27\143\x6c\141\x73\163\x27\40\75\76\x20\42\154\141\x62\x65\x6c\x20\x6c\x61\142\x65\154\x2d\x69\x6e\x66\x6f\x22\x5d\51\40\x3f\76")); } }

Function Calls

None

Variables

None

Stats

MD5 f4bbe1fdb5f67b81d5d01da4e74f7b6a
Eval Count 0
Decode Time 117 ms