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 declare (strict_types=1); namespace HfqUS\i8NEd\Jv1BC\oL_YU; use hfQuS\I8NED\yhKF0\..

Decoded Output download

<?php
 declare (strict_types=1); namespace HfqUS\i8NEd\Jv1BC\oL_YU; use hfQuS\I8NED\yhKF0\ZfQ06; use hfquS\XNVO1; final class h1gs5 extends Zfq06 { public function vQtFT(string $rhChg, ?string $i3eJk = null, array $h9tuX = []) : void { $this->B6bJ0->DseuP($h9tuX); $this->MvxeX($rhChg, $i3eJk); } public static function Rkoe0() : iterable { goto kjGWW; A2lla: (yield "Annotation is used, and should be" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     * @test
     */\xa    public function itDoesSomething() {}
}", null, ["style" => "annotation"]]); goto DrB1s; Z9IEX: (yield "Annotation is not used, but should be, class is extra indented" => ["<?php
if (1) {\xa    class Test extends \PhpUnit\FrameWork\TestCase\xa    {\xa        /**
         * @test\xa         */
        public function itDoesSomething() {}\xa    }\xa}", "<?php\xaif (1) {
    class Test extends \PhpUnit\FrameWork\TestCase\xa    {\xa        public function testItDoesSomething() {}
    }\xa}", ["style" => "annotation"]]); goto P3duI; pNsyr: (yield "Annotation gets added when a single line has doc block has multiple tags already" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * There is some text here @group Database @group Integration\xa     *\xa     * @test\xa     */\xa    public function whyDoThis() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /** There is some text here @group Database @group Integration */\xa    public function testWhyDoThis() {}
}", ["style" => "annotation"]]); goto yfnHj; Q3vHL: (yield "Annotation present, but method is test prefix" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     *
     */\xa    public function test() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**\xa     * @test
     */\xa    public function test() {}
}", ["style" => "prefix"]]); goto bDoFc; SoDLA: (yield "Annotation does not get removed if class is not a test" => ["<?php
class Waterloo\xa{
    /**
     * @test\xa     */\xa    public function doesSomeThings() {}\xa}"]); goto W98dZ; nj3yg: (yield "Annotation does not get added if class is not a test" => ["<?php\xaclass Waterloo\xa{
    public function testDoesSomeThings() {}
}", null, ["style" => "annotation"]]); goto SoDLA; i61fr: (yield "Annotation missing, but there is a lowercase character after the test prefix so it keeps the prefix" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * @test\xa     */\xa    public function testarossaIsFromItaly() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    public function testarossaIsFromItaly() {}\xa}", ["style" => "annotation"]]); goto PEh1g; oQaEQ: (yield "Test annotation has to be added, there is a one line doc block which is an @depends tag" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     * @test\xa     */\xa    public function itTestsDatabase() {}\xa\xa    /**\xa     * @depends itTestsDatabase
     *
     * @test
     */\xa    public function itDepends() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    public function testItTestsDatabase() {}

    /** @depends testItTestsDatabase */
    public function testItDepends() {}
}", ["style" => "annotation"]]); goto HrxBg; jXq0K: (yield "Annotation present, but method already have test prefix" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**
     *\xa     */\xa    public function testarossaIsFromItaly() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test\xa     */
    public function testarossaIsFromItaly() {}\xa}", ["style" => "prefix"]]); goto Q3vHL; yv6dp: (yield "Test Annotation has to be removed, but its just one line" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /** */\xa    public function testItWorks() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /** @test */
    public function itWorks() {}
}"]); goto r22u2; wV_MF: (yield "Annotation gets added, but there is a number after the testprefix so it keeps the prefix" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test
     */
    public function test123fooBar() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    public function test123fooBar() {}
}", ["style" => "annotation"]]); goto i61fr; bxGq1: (yield "Annotation missing, method after fix still has "test" prefix" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**\xa     * @test
     */
    public function test_foo() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    public function test_test_foo() {}\xa}", ["style" => "annotation"]]); goto GL7Oh; A3urq: (yield "Class with big doc blocks and multiple functions has to remove annotations" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
\xa    /**
     * This test is part of the database group and has a provider.
     *\xa     * @param int $paramOne\xa     * @param bool $paramTwo
     *\xa     *
     * @dataProvider provides\xa     * @group Database
     */\xa    public function testDatabase ($paramOne, $paramTwo) {}
\xa    /**
     * Provider for the database test function
     *
     * @return array
     */\xa    public function provides() {}\xa\xa    /**
     * I am just a helper function but I have test in my name.\xa     * I also have a doc Block\xa     *\xa     * @return Foo\Bar
     */
    public function help_test() {}\xa\xa\xa    protected function setUp() {}\xa
    /**
     * I depend on the database function, but I already\xa     * had test in my name and a docblock
     *
     * @depends testDatabase\xa     */
    public function testDepends () {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa
    /**
     * This test is part of the database group and has a provider.\xa     *\xa     * @param int $paramOne\xa     * @param bool $paramTwo
     *
     * @test\xa     * @dataProvider provides
     * @group Database\xa     */
    public function database ($paramOne, $paramTwo) {}

    /**\xa     * Provider for the database test function\xa     *\xa     * @return array\xa     */\xa    public function provides() {}
\xa    /**\xa     * I am just a helper function but I have test in my name.
     * I also have a doc Block
     *
     * @return Foo\Bar\xa     */\xa    public function help_test() {}\xa

    protected function setUp() {}
\xa    /**\xa     * I depend on the database function, but I already\xa     * had test in my name and a docblock
     *\xa     * @depends database
     */
    public function testDepends () {}\xa}"]); goto yv6dp; P3duI: (yield "Annotation is not used, but should be, and there is already a docBlock" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * @dataProvider blabla\xa     *\xa     * @test\xa     */\xa    public function itDoesSomething() {}\xa    }", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @dataProvider blabla\xa     */\xa    public function testItDoesSomething() {}
    }", ["style" => "annotation"]]); goto d5WMl; HrxBg: (yield "Annotation gets removed, but the function has a @testWith" => ["<?php
final class ProcessLinterProcessBuilderTest extends TestCase\xa{\xa    /**\xa     *
     * @param string $executable
     * @param string $file\xa     * @param string $expected\xa     *
     * @testWith ["php", "foo.php", "\"php\" -l \"foo.php\""]\xa     *           ["C:\Program Files\php\php.exe", "foo bar\baz.php", "\"C:\Program Files\php\php.exe\" -l \"foo bar\baz.php\""]
     * @requires OS Linux|Darwin
     */
    public function testPrepareCommandOnPhpOnLinuxOrMac($executable, $file, $expected)\xa    {\xa        $builder = new ProcessLinterProcessBuilder($executable);\xa\xa        $this->assertSame(\xa            $expected,\xa            $builder->build($file)->getCommandLine()
        );\xa    }
}", "<?php\xafinal class ProcessLinterProcessBuilderTest extends TestCase\xa{
    /**
     * @test
     * @param string $executable\xa     * @param string $file
     * @param string $expected
     *
     * @testWith ["php", "foo.php", "\"php\" -l \"foo.php\""]
     *           ["C:\Program Files\php\php.exe", "foo bar\baz.php", "\"C:\Program Files\php\php.exe\" -l \"foo bar\baz.php\""]
     * @requires OS Linux|Darwin\xa     */\xa    public function prepareCommandOnPhpOnLinuxOrMac($executable, $file, $expected)\xa    {
        $builder = new ProcessLinterProcessBuilder($executable);
\xa        $this->assertSame(
            $expected,
            $builder->build($file)->getCommandLine()
        );
    }\xa}"]); goto LVstG; R3yzf: (yield "Docblock does not get converted to a multi line doc block if it already has @test annotation" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /** @test */\xa    public function doesSomeThings() {}
}", null, ["style" => "annotation"]]); goto nj3yg; p_cSX: (yield "Annotation is removed, the function is one word and we want it to use camel case" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**
     *\xa     */\xa    public function testWorks() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**\xa     * @test\xa     */\xa    public function works() {}\xa}"]); goto ImAjS; DYwnk: (yield "Annotation missing, method qualifies as test, but test prefix cannot be removed" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * @test\xa     */\xa    public function test() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    public function test() {}\xa}", ["style" => "annotation"]]); goto bjutc; bDoFc: (yield "Abstract test gets annotation added" => ["<?php\xaabstract class Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @test
     */\xa    abstract function fooBar();
}", "<?php
abstract class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    abstract function testFooBar();
}", ["style" => "annotation"]]); goto wV_MF; p5h0B: (yield "Annotation is not used, but should be" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @test
     */
    public function itDoesSomething() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    public function testItDoesSomething() {}\xa}", ["style" => "annotation"]]); goto Z9IEX; lG6Zs: (yield "Annotation gets properly removed, even when it is in a weird place" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**\xa     * I am a comment about the function\xa     */
    public function testIHateMyTestSuite() {}\xa
    /**
     * I am another comment about a function\xa     */\xa    public function testThisMakesNoSense() {}

    /**
     * This comment has   more issues
     */
    public function testItUsesTabs() {}

    /**\xa     * @depends testItUsesTabs
     */\xa    public function testItDependsReally() {}

    /**\xa     * @depends testItUsesTabs\xa     */\xa    public function testItDependsSomeMore() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     * I am a comment @test about the function
     */
    public function iHateMyTestSuite() {}
\xa    /**
     * I am another comment about a function @test
     */
    public function thisMakesNoSense() {}\xa
    /**\xa     * This comment has @test   more issues\xa     */\xa    public function itUsesTabs() {}
\xa    /**\xa     * @depends itUsesTabs @test
     */
    public function itDependsReally() {}\xa\xa    /**\xa     * @test @depends itUsesTabs
     */\xa    public function itDependsSomeMore() {}
}"]); goto pNsyr; PEh1g: (yield "Annotation present, but there is a lowercase character after the test prefix so it keeps the prefix" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test
     */\xa    public function testarossaIsFromItaly() {}
}", null, ["style" => "annotation"]]); goto DYwnk; r22u2: (yield "Test annotation has to be added, but there is already a one line doc block" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     * @group Database
     *
     * @test\xa     */\xa    public function itTestsDatabase() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /** @group Database */\xa    public function testItTestsDatabase() {}
}", ["style" => "annotation"]]); goto Hu6Li; mAuMv: (yield "Abstract test gets annotation removed" => ["<?php\xaabstract class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**
     *\xa     */
    abstract function testFooBar();\xa}", "<?php
abstract class Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @test\xa     */\xa    abstract function fooBar();\xa}", ["style" => "prefix"]]); goto jXq0K; DrB1s: (yield "Annotation is not used, and should not be" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    public function testItDoesSomethingWithoutPhpDoc() {}\xa    /**\xa     * No annotation, just text
     */
    public function testItDoesSomethingWithPhpDoc() {}
\xa    public function testingItDoesSomethingWithoutPhpDoc() {}\xa    /**\xa     * No annotation, just text\xa     */
    public function testingItDoesSomethingWithPhpDoc() {}\xa}"]); goto PZNlV; LVstG: (yield "Annotation gets added, but there is already an @testWith in the doc block" => ["<?php
final class ProcessLinterProcessBuilderTest extends TestCase
{
    /**\xa     * @param string $executable\xa     * @param string $file\xa     * @param string $expected
     *\xa     * @testWith ["php", "foo.php", "\"php\" -l \"foo.php\""]
     *           ["C:\Program Files\php\php.exe", "foo bar\baz.php", "\"C:\Program Files\php\php.exe\" -l \"foo bar\baz.php\""]\xa     * @requires OS Linux|Darwin
     *
     * @test
     */
    public function prepareCommandOnPhpOnLinuxOrMac($executable, $file, $expected)\xa    {\xa        $builder = new ProcessLinterProcessBuilder($executable);
\xa        $this->assertSame(
            $expected,\xa            $builder->build($file)->getCommandLine()
        );\xa    }\xa}", "<?php
final class ProcessLinterProcessBuilderTest extends TestCase\xa{\xa    /**\xa     * @param string $executable
     * @param string $file
     * @param string $expected
     *
     * @testWith ["php", "foo.php", "\"php\" -l \"foo.php\""]\xa     *           ["C:\Program Files\php\php.exe", "foo bar\baz.php", "\"C:\Program Files\php\php.exe\" -l \"foo bar\baz.php\""]
     * @requires OS Linux|Darwin\xa     */
    public function testPrepareCommandOnPhpOnLinuxOrMac($executable, $file, $expected)
    {\xa        $builder = new ProcessLinterProcessBuilder($executable);\xa
        $this->assertSame(\xa            $expected,\xa            $builder->build($file)->getCommandLine()
        );\xa    }
}", ["style" => "annotation"]]); goto lG6Zs; GL7Oh: (yield "do not touch single line @depends annotation when already correct" => ["<?php class FooTest extends \PHPUnit\Framework\TestCase\xa                {
                    public function testOne() {}
\xa                    /** @depends testOne */
                    public function testTwo() {}\xa\xa                    /**    @depends    testTwo    */
                    public function testThree() {}\xa                }"]); goto p5vZj; FQpd_: (yield "Test annotation has to be added, but there is already a one line comment present" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    //I really like this test, it helps a lot\xa    /**
     * @test
     */
    public function itTestsDatabase() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    //I really like this test, it helps a lot
    public function testItTestsDatabase() {}\xa}", ["style" => "annotation"]]); goto oQaEQ; yfnHj: (yield "Annotation gets removed when a single line doc block has the tag, but there are other things as well" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /** There is some text here @group Database @group Integration */
    public function testWhyDoThis() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /** There is some @test text here @group Database @group Integration */\xa    public function testWhyDoThis() {}\xa}"]); goto A2lla; ImAjS: (yield "Annotation is added, and it is snake case" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     * @test
     */\xa    public function it_has_snake_case() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    public function test_it_has_snake_case() {}\xa}", ["style" => "annotation"]]); goto ExXv4; vDfCE: (yield "Annotation is not used, but should be, and it depends on other tests" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @test
     */
    public function aaa () {}\xa\xa    /**\xa     * @depends aaa\xa     *\xa     * @test
     */\xa    public function bbb () {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    public function testAaa () {}\xa\xa    /**\xa     * @depends testAaa
     */\xa    public function testBbb () {}\xa}", ["style" => "annotation"]]); goto p_cSX; Hu6Li: (yield "Test annotation has to be added, but there is already a one line doc block which is a sentence" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * I really like this test, it helps a lot
     *\xa     * @test
     */
    public function itTestsDatabase() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /** I really like this test, it helps a lot */
    public function testItTestsDatabase() {}\xa}", ["style" => "annotation"]]); goto FQpd_; TgBnp: (yield "Annotation present, method qualifies as test, but test_ prefix cannot be removed" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * @test
     */\xa    public function test_() {}\xa}", null, ["style" => "annotation"]]); goto bxGq1; DytIe: (yield "Annotation has to be added to multiple functions" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @test
     */
    public function itWorks() {}\xa\xa    /**\xa     * @test
     */
    public function itDoesSomething() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    public function testItWorks() {}

    public function testItDoesSomething() {}
}", ["style" => "annotation"]]); goto A3urq; bjutc: (yield "Annotation missing, method qualifies as test, but test_ prefix cannot be removed" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * @test\xa     */
    public function test_() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    public function test_() {}\xa}", ["style" => "annotation"]]); goto TgBnp; kjGWW: (yield "Annotation is used, and it should not be" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**\xa     *\xa     */\xa    public function testItDoesSomething() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     * @test
     */\xa    public function itDoesSomething() {}
}", ["style" => "prefix"]]); goto p5h0B; d5WMl: (yield "Annotation is used, but should not be, and it depends on other tests" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     *\xa     */\xa    public function testAaa () {}\xa
    public function helperFunction() {}\xa\xa    /**
     * @depends testAaa
     *\xa     *\xa     */
    public function testBbb () {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @test
     */\xa    public function aaa () {}\xa\xa    public function helperFunction() {}
\xa    /**\xa     * @depends aaa
     *
     * @test
     */\xa    public function bbb () {}\xa}", ["style" => "prefix"]]); goto vDfCE; PZNlV: (yield "Annotation is added when it is already present in a weird place" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**\xa     * I am a comment @test about the function
     *\xa     * @test
     */
    public function iHateMyTestSuite() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**
     * I am a comment @test about the function
     */
    public function iHateMyTestSuite() {}
}", ["style" => "annotation"]]); goto R3yzf; W98dZ: (yield "Annotation does not get added if there are no tests in the test class" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    public function setUp() {}
\xa    public function itHelpsSomeTests() {}

    public function someMoreChanges() {}\xa}", null, ["style" => "annotation"]]); goto mAuMv; Rc83a: (yield "Class has both camel and snake case, annotated functions and not, and wants to add annotations" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     * @test
     */\xa    public function snake_cased () {}

    /**
     * @test\xa     */
    public function camelCased () {}

    /**\xa     * Description.
     *
     * @depends camelCased\xa     *
     * @test
     */
    public function depends_on_someone () {}\xa
    //It even has a comment
    public function a_helper_function () {}\xa
    /**
     * @depends depends_on_someone\xa     *
     * @test
     */\xa    public function moreDepends() {}\xa
    /**
     * @depends depends_on_someone
     *\xa     * @test
     */\xa    public function alreadyAnnotated() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    public function test_snake_cased () {}
\xa    public function testCamelCased () {}\xa
    /**
     * Description.\xa     *
     * @depends testCamelCased
     */\xa    public function test_depends_on_someone () {}
\xa    //It even has a comment
    public function a_helper_function () {}\xa\xa    /**\xa     * @depends test_depends_on_someone\xa     */
    public function testMoreDepends() {}\xa\xa    /**
     * @depends test_depends_on_someone
     *
     * @test
     */
    public function alreadyAnnotated() {}\xa}", ["style" => "annotation"]]); goto DytIe; ExXv4: (yield "Annotation gets added, it has an @depends, and we use snake case" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**\xa     * @test\xa     */\xa    public function works_fine () {}
\xa    /**
     * @depends works_fine
     *
     * @test\xa     */
    public function works_fine_too() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    public function test_works_fine () {}
\xa    /**
     * @depends test_works_fine
     */
    public function test_works_fine_too() {}\xa}", ["style" => "annotation"]]); goto Rc83a; p5vZj: } public function k10UB(string $rhChg, ?string $i3eJk = null, array $h9tuX = []) : void { goto Rvjmb; Rvjmb: $this->B6bJ0->XLewp(new XnVO1("	", "
\xa")); goto tiIJ7; mInBA: $this->MvxEx($rhChg, $i3eJk); goto XpaKD; tiIJ7: $this->B6bJ0->DSEup($h9tuX); goto mInBA; XpaKD: } public static function ZgVXy() : iterable { (yield ["<?php

                    class FooTest extends \PHPUnit_Framework_TestCase {
\xa                    /**\xa                     *\xa                     */
                    public function testFooTest() {}\xa                    }\xa                ", "<?php\xa\xa                    class FooTest extends \PHPUnit_Framework_TestCase {\xa\xa                    /**
                     * @test\xa                     */\xa                    public function fooTest() {}\xa                    }\xa                "]); } public function c5eb2(string $rhChg, string $i3eJk, array $h9tuX) : void { $this->B6bJ0->dSeuP($h9tuX); $this->mVXEX($rhChg, $i3eJk); } public static function UTIpd() : iterable { (yield ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test
     */
    #[OneTest]
    public function itWorks() {}\xa
    /**\xa     * @test\xa     */\xa    #[TwoTest]\xa    public function itDoesSomething() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    #[OneTest]
    public function testItWorks() {}\xa\xa    #[TwoTest]
    public function testItDoesSomething() {}\xa}", ["style" => "annotation"]]); (yield ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**\xa     * @test
     */
    #[OneTest]
    #[Internal]\xa    public function itWorks() {}\xa
    /**
     * @test
     */
    #[TwoTest]\xa    #[Internal]\xa    public function itDoesSomething() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    #[OneTest]
    #[Internal]\xa    public function testItWorks() {}\xa
    #[TwoTest]\xa    #[Internal]\xa    public function testItDoesSomething() {}\xa}", ["style" => "annotation"]]); } } ?>

Did this file decode correctly?

Original Code

<?php
 declare (strict_types=1); namespace HfqUS\i8NEd\Jv1BC\oL_YU; use hfQuS\I8NED\yhKF0\ZfQ06; use hfquS\XNVO1; final class h1gs5 extends Zfq06 { public function vQtFT(string $rhChg, ?string $i3eJk = null, array $h9tuX = []) : void { $this->B6bJ0->DseuP($h9tuX); $this->MvxeX($rhChg, $i3eJk); } public static function Rkoe0() : iterable { goto kjGWW; A2lla: (yield "\101\156\156\157\x74\x61\164\151\x6f\x6e\x20\151\163\x20\165\x73\145\144\x2c\40\x61\156\144\x20\x73\150\157\165\x6c\x64\x20\142\x65" => ["\74\77\160\x68\x70\xa\x63\154\x61\163\163\x20\x54\x65\163\x74\40\x65\170\164\x65\x6e\x64\x73\x20\x5c\x50\x68\x70\x55\156\151\x74\134\106\162\141\155\x65\x57\x6f\x72\x6b\x5c\x54\x65\163\x74\103\141\163\x65\12\x7b\xa\x20\40\40\x20\57\x2a\x2a\12\40\x20\40\x20\x20\x2a\x20\100\x74\145\x73\164\12\x20\40\x20\x20\40\x2a\x2f\xa\40\x20\40\40\160\165\142\154\151\143\40\x66\x75\156\x63\x74\x69\x6f\156\40\151\x74\x44\x6f\145\x73\x53\x6f\x6d\145\164\150\x69\x6e\x67\50\x29\x20\x7b\175\12\x7d", null, ["\x73\x74\171\154\145" => "\x61\156\156\157\164\141\164\151\157\x6e"]]); goto DrB1s; Z9IEX: (yield "\101\x6e\x6e\x6f\x74\x61\x74\x69\x6f\156\40\151\163\x20\156\157\164\40\165\x73\x65\144\54\x20\142\x75\164\40\163\x68\157\165\x6c\x64\x20\x62\x65\54\40\143\154\141\x73\163\40\151\x73\40\145\x78\164\162\x61\40\x69\156\144\145\x6e\164\x65\144" => ["\x3c\x3f\160\x68\160\12\x69\146\x20\x28\61\51\40\173\xa\40\40\40\40\143\154\141\163\163\x20\124\145\163\x74\40\x65\170\x74\x65\156\x64\x73\x20\x5c\120\150\160\x55\156\x69\164\x5c\106\162\x61\x6d\145\x57\157\162\153\134\124\x65\163\164\x43\x61\163\x65\xa\40\x20\40\x20\x7b\xa\x20\x20\40\40\x20\40\x20\40\x2f\x2a\52\12\40\x20\40\x20\x20\x20\40\x20\40\x2a\40\x40\164\x65\163\x74\xa\40\x20\x20\40\x20\x20\x20\x20\x20\52\x2f\12\x20\40\x20\40\40\40\40\x20\160\x75\142\x6c\151\143\40\x66\165\156\143\x74\151\157\156\40\151\x74\x44\x6f\x65\163\123\157\x6d\x65\164\150\x69\156\x67\x28\51\40\x7b\175\xa\40\40\40\40\x7d\xa\175", "\74\77\x70\150\x70\xa\151\146\40\50\61\x29\x20\x7b\12\40\x20\40\x20\143\x6c\141\x73\163\x20\x54\x65\x73\x74\x20\x65\170\164\x65\x6e\144\163\x20\134\120\150\x70\x55\x6e\151\x74\134\x46\x72\141\x6d\x65\127\157\x72\153\134\124\145\x73\164\x43\x61\x73\145\xa\x20\40\x20\40\173\xa\x20\40\x20\40\40\x20\x20\x20\160\x75\x62\154\x69\143\40\x66\x75\156\143\x74\151\157\x6e\x20\x74\145\x73\x74\111\164\x44\x6f\x65\x73\x53\x6f\x6d\145\164\150\x69\156\x67\x28\51\x20\173\175\12\40\40\x20\x20\175\xa\x7d", ["\x73\164\x79\x6c\145" => "\141\156\x6e\157\x74\141\x74\x69\157\156"]]); goto P3duI; pNsyr: (yield "\x41\156\x6e\157\164\141\x74\151\157\x6e\40\147\x65\x74\163\x20\x61\144\144\145\x64\x20\167\x68\x65\156\40\141\x20\x73\x69\156\x67\x6c\x65\x20\x6c\x69\156\145\x20\x68\141\163\40\144\157\x63\40\x62\x6c\157\143\153\40\150\x61\x73\x20\x6d\x75\154\164\x69\x70\x6c\145\40\x74\141\147\x73\40\141\154\162\x65\141\x64\x79" => ["\x3c\x3f\160\150\x70\12\143\154\141\163\163\x20\124\145\x73\x74\x20\x65\x78\164\145\156\144\x73\40\x5c\120\x68\160\125\x6e\x69\x74\x5c\106\x72\141\x6d\x65\x57\x6f\162\153\134\x54\x65\163\164\x43\141\163\145\12\x7b\xa\x20\40\x20\40\x2f\52\x2a\xa\x20\40\x20\40\40\x2a\x20\124\x68\x65\162\x65\x20\151\x73\x20\163\157\x6d\145\x20\164\x65\x78\x74\40\x68\x65\x72\x65\40\x40\147\162\157\x75\x70\40\x44\x61\x74\141\x62\141\163\x65\x20\100\147\x72\157\165\x70\40\111\x6e\x74\x65\147\x72\x61\x74\x69\x6f\156\xa\x20\x20\x20\x20\40\52\xa\40\x20\40\40\40\52\40\100\164\145\x73\x74\xa\x20\40\x20\40\40\x2a\x2f\xa\40\40\x20\40\x70\x75\x62\154\x69\143\40\146\x75\156\143\x74\151\157\x6e\x20\x77\x68\171\x44\157\124\x68\151\x73\50\51\40\x7b\175\xa\175", "\74\x3f\160\150\x70\xa\143\x6c\141\163\163\40\x54\x65\x73\x74\x20\145\x78\164\145\x6e\144\163\x20\134\120\x68\x70\125\x6e\151\x74\134\x46\x72\x61\x6d\x65\x57\x6f\x72\153\x5c\x54\145\163\164\x43\141\x73\145\xa\173\xa\x20\40\x20\40\57\x2a\x2a\40\124\150\x65\162\145\40\x69\163\40\163\x6f\155\145\x20\x74\x65\x78\x74\x20\150\x65\162\145\40\100\x67\x72\157\x75\x70\x20\104\141\164\141\x62\x61\163\145\40\x40\x67\162\x6f\165\160\x20\x49\x6e\164\x65\147\162\141\x74\x69\157\156\40\52\x2f\xa\x20\x20\x20\x20\160\x75\x62\x6c\x69\143\x20\146\x75\x6e\x63\164\x69\x6f\x6e\40\x74\145\x73\164\x57\x68\x79\104\157\x54\x68\x69\163\x28\x29\40\173\x7d\12\175", ["\x73\164\171\154\145" => "\x61\156\x6e\157\x74\x61\x74\x69\157\x6e"]]); goto yfnHj; Q3vHL: (yield "\101\156\156\x6f\164\141\x74\151\x6f\x6e\40\x70\162\145\x73\145\156\164\54\40\x62\x75\x74\x20\x6d\145\x74\150\157\144\40\x69\x73\40\x74\x65\x73\164\40\x70\x72\x65\146\x69\170" => ["\x3c\77\x70\x68\x70\xa\x63\x6c\x61\x73\163\x20\x54\x65\163\x74\40\x65\x78\164\x65\156\x64\163\x20\x5c\x50\150\x70\x55\156\151\164\x5c\x46\x72\x61\155\x65\x57\157\162\x6b\134\124\x65\163\164\103\141\163\145\12\173\xa\x20\x20\40\40\57\x2a\x2a\xa\40\40\x20\x20\x20\52\12\40\40\x20\x20\x20\52\57\xa\x20\40\x20\x20\160\165\142\x6c\151\143\40\146\165\156\x63\164\x69\x6f\156\x20\x74\x65\163\x74\x28\51\40\173\175\xa\175", "\x3c\77\x70\x68\x70\xa\143\154\x61\163\x73\40\x54\145\163\x74\x20\145\170\164\145\x6e\144\163\40\134\120\150\160\x55\156\151\164\134\x46\x72\141\155\145\x57\157\162\153\x5c\x54\x65\x73\x74\103\x61\x73\x65\12\173\12\x20\40\40\x20\57\x2a\x2a\xa\40\40\x20\x20\40\52\x20\x40\x74\x65\163\164\12\40\x20\x20\40\x20\52\x2f\xa\x20\40\40\40\x70\165\142\x6c\x69\x63\x20\146\165\x6e\x63\x74\151\157\x6e\x20\164\145\163\x74\50\51\40\x7b\175\12\x7d", ["\163\164\171\154\145" => "\160\162\145\146\151\170"]]); goto bDoFc; SoDLA: (yield "\x41\x6e\156\x6f\x74\x61\x74\151\157\156\40\x64\157\145\x73\x20\x6e\157\x74\x20\x67\145\164\x20\x72\145\x6d\157\x76\145\x64\x20\151\146\x20\x63\x6c\x61\x73\163\40\x69\x73\x20\156\x6f\164\40\141\x20\164\145\x73\x74" => ["\74\77\160\x68\160\12\x63\154\141\x73\x73\40\x57\141\x74\x65\162\x6c\157\157\xa\x7b\12\x20\40\x20\40\x2f\52\52\12\40\40\x20\x20\40\x2a\x20\100\164\x65\x73\x74\xa\x20\40\x20\x20\40\52\x2f\xa\x20\40\40\x20\160\x75\x62\x6c\151\143\x20\x66\x75\156\143\x74\151\157\x6e\40\144\157\145\163\x53\x6f\x6d\x65\x54\150\151\156\x67\163\x28\x29\x20\173\x7d\xa\175"]); goto W98dZ; nj3yg: (yield "\101\156\156\x6f\164\141\164\151\x6f\156\40\144\x6f\x65\x73\40\x6e\x6f\164\x20\x67\145\x74\x20\x61\x64\144\145\144\x20\151\x66\40\143\154\x61\x73\x73\40\151\x73\x20\x6e\157\164\x20\x61\40\164\145\163\x74" => ["\74\x3f\160\x68\160\xa\x63\154\x61\163\163\x20\x57\x61\164\145\x72\154\x6f\x6f\xa\173\12\40\x20\40\x20\x70\x75\142\x6c\151\x63\40\x66\x75\156\x63\164\151\x6f\156\x20\x74\145\163\164\x44\x6f\145\163\123\157\155\x65\124\x68\151\156\147\163\50\x29\40\x7b\x7d\12\x7d", null, ["\163\164\171\x6c\x65" => "\x61\156\x6e\x6f\164\x61\x74\x69\157\x6e"]]); goto SoDLA; i61fr: (yield "\101\156\x6e\157\164\x61\x74\x69\157\x6e\40\x6d\151\163\x73\151\x6e\x67\x2c\x20\142\165\164\x20\x74\x68\145\x72\x65\x20\x69\163\x20\141\40\154\x6f\167\145\x72\x63\141\163\x65\40\143\150\x61\162\x61\143\164\145\x72\x20\141\x66\x74\x65\x72\40\x74\150\x65\x20\x74\x65\163\x74\x20\x70\x72\145\146\x69\170\x20\x73\157\40\x69\x74\x20\x6b\145\x65\160\x73\x20\164\x68\145\40\x70\x72\145\146\151\x78" => ["\x3c\77\160\x68\x70\xa\x63\154\141\163\163\x20\x54\145\163\x74\40\145\x78\x74\x65\156\x64\163\40\x5c\120\x68\x70\125\156\151\x74\134\x46\162\141\155\x65\127\157\x72\153\134\x54\x65\163\x74\103\141\163\x65\12\x7b\xa\40\x20\x20\40\57\52\52\xa\x20\40\x20\x20\x20\52\40\100\164\x65\163\x74\xa\x20\x20\40\x20\40\x2a\57\xa\x20\x20\x20\40\x70\165\x62\x6c\151\143\40\146\x75\156\143\164\151\x6f\x6e\40\x74\145\x73\164\x61\x72\x6f\x73\x73\x61\111\163\x46\x72\157\155\x49\x74\141\154\x79\50\x29\40\x7b\175\xa\x7d", "\x3c\x3f\160\x68\160\12\x63\154\x61\x73\x73\x20\x54\x65\163\x74\40\x65\x78\x74\x65\x6e\x64\163\x20\x5c\120\x68\x70\x55\x6e\x69\164\134\106\x72\141\x6d\x65\x57\157\x72\x6b\x5c\124\145\163\164\x43\x61\x73\x65\xa\173\xa\40\x20\x20\40\160\x75\x62\x6c\151\143\40\146\165\x6e\x63\x74\x69\x6f\156\40\164\x65\x73\x74\x61\x72\x6f\x73\163\x61\111\163\106\x72\157\x6d\111\164\141\x6c\171\x28\51\40\173\x7d\xa\x7d", ["\x73\x74\171\154\145" => "\x61\x6e\x6e\x6f\x74\x61\x74\x69\157\x6e"]]); goto PEh1g; oQaEQ: (yield "\x54\x65\x73\164\x20\141\x6e\x6e\x6f\x74\141\x74\151\157\x6e\x20\x68\141\163\40\x74\157\x20\x62\x65\x20\x61\x64\144\x65\x64\x2c\x20\164\150\145\162\145\40\151\163\x20\x61\x20\x6f\156\145\40\x6c\151\156\x65\40\144\157\x63\x20\x62\154\x6f\x63\x6b\x20\x77\150\x69\143\x68\40\x69\x73\40\x61\x6e\40\100\144\145\x70\145\x6e\x64\163\x20\x74\141\147" => ["\74\77\x70\x68\160\xa\x63\x6c\x61\163\163\x20\124\x65\x73\x74\x20\x65\170\x74\145\156\x64\x73\x20\x5c\120\150\x70\x55\156\x69\x74\x5c\x46\162\x61\155\x65\x57\x6f\x72\x6b\134\x54\145\163\x74\103\141\163\x65\12\173\xa\x20\x20\40\x20\57\52\x2a\12\40\40\x20\x20\x20\52\x20\100\x74\145\163\x74\xa\x20\x20\x20\x20\40\52\57\xa\40\x20\x20\x20\160\x75\x62\x6c\x69\143\x20\146\x75\156\x63\x74\x69\157\x6e\40\x69\164\124\145\x73\164\163\104\141\164\141\142\141\163\145\x28\x29\40\x7b\175\xa\xa\40\x20\x20\40\57\52\52\xa\x20\40\40\x20\x20\x2a\x20\100\144\x65\160\145\156\144\163\x20\151\164\x54\145\x73\x74\163\104\x61\x74\x61\142\x61\163\145\12\x20\x20\40\40\40\52\12\x20\x20\x20\x20\40\x2a\40\100\x74\145\x73\x74\12\x20\40\x20\40\x20\52\57\xa\x20\x20\x20\40\x70\x75\142\x6c\x69\143\x20\146\x75\x6e\x63\x74\151\157\156\40\151\164\104\145\x70\x65\156\144\163\x28\x29\x20\173\x7d\12\175", "\74\x3f\x70\x68\160\xa\143\154\141\163\x73\x20\124\145\163\x74\x20\x65\x78\x74\x65\x6e\x64\163\40\134\x50\150\x70\x55\x6e\151\x74\134\x46\162\x61\x6d\x65\127\x6f\162\x6b\x5c\124\145\163\164\103\x61\x73\x65\xa\x7b\xa\40\x20\x20\x20\x70\165\142\154\x69\143\40\146\165\x6e\143\x74\x69\x6f\x6e\40\x74\x65\x73\164\111\x74\124\145\x73\x74\x73\x44\141\x74\141\x62\x61\x73\x65\x28\51\x20\x7b\x7d\12\12\x20\x20\x20\x20\x2f\x2a\52\x20\x40\x64\x65\x70\145\x6e\x64\x73\40\x74\x65\x73\x74\x49\x74\124\145\163\164\163\x44\141\164\x61\x62\141\x73\145\x20\52\57\12\x20\40\x20\40\x70\x75\x62\154\x69\143\40\x66\165\x6e\x63\x74\x69\x6f\x6e\40\x74\x65\x73\164\111\164\x44\145\x70\145\156\144\x73\50\x29\x20\173\175\12\x7d", ["\x73\164\x79\154\x65" => "\141\x6e\156\157\164\x61\164\151\x6f\156"]]); goto HrxBg; jXq0K: (yield "\101\156\x6e\157\164\x61\x74\x69\x6f\156\x20\x70\x72\145\163\x65\156\164\54\40\142\x75\164\40\155\x65\x74\x68\x6f\144\x20\x61\154\162\145\141\x64\171\40\x68\141\166\145\40\164\x65\x73\164\40\160\x72\145\146\151\x78" => ["\74\77\x70\x68\160\12\x63\x6c\141\x73\x73\x20\124\145\x73\x74\40\x65\170\164\145\x6e\x64\163\x20\134\x50\150\160\x55\x6e\x69\164\134\x46\x72\x61\x6d\x65\127\x6f\x72\153\x5c\124\x65\x73\164\103\141\163\x65\xa\173\xa\40\x20\40\40\x2f\x2a\x2a\12\x20\40\40\40\40\x2a\xa\x20\40\40\x20\40\52\57\xa\40\40\40\x20\x70\x75\x62\154\151\x63\x20\146\165\x6e\143\x74\x69\157\156\x20\x74\x65\163\x74\141\x72\157\163\x73\141\x49\x73\x46\x72\157\x6d\111\164\x61\x6c\171\x28\51\40\173\175\12\x7d", "\x3c\77\160\150\160\12\x63\x6c\x61\163\163\x20\x54\x65\163\x74\x20\145\x78\164\145\x6e\144\x73\40\134\120\150\x70\x55\x6e\151\164\134\x46\162\x61\155\x65\127\x6f\162\x6b\134\x54\145\x73\164\x43\x61\x73\145\xa\173\12\x20\40\40\40\x2f\52\x2a\12\x20\40\x20\x20\x20\52\40\100\x74\145\x73\164\xa\x20\40\x20\x20\x20\52\x2f\12\x20\40\x20\x20\160\x75\x62\154\151\143\40\x66\x75\156\143\164\151\157\x6e\x20\x74\145\x73\164\141\162\x6f\163\x73\141\x49\x73\106\x72\157\x6d\111\164\141\x6c\171\50\x29\x20\x7b\x7d\xa\175", ["\163\x74\171\154\145" => "\x70\162\145\x66\x69\x78"]]); goto Q3vHL; yv6dp: (yield "\124\x65\x73\x74\x20\x41\156\156\157\164\x61\x74\151\x6f\x6e\40\x68\x61\x73\x20\164\157\40\x62\145\40\162\145\155\x6f\166\x65\x64\54\x20\142\165\164\40\151\164\x73\x20\x6a\x75\x73\x74\x20\157\x6e\145\x20\154\x69\x6e\x65" => ["\x3c\77\x70\x68\x70\xa\143\154\x61\163\163\40\x54\x65\163\x74\x20\145\x78\164\145\156\144\x73\x20\134\x50\x68\x70\x55\156\151\x74\x5c\x46\x72\x61\x6d\145\x57\x6f\x72\x6b\x5c\x54\145\x73\x74\103\141\x73\145\xa\173\xa\x20\x20\x20\40\57\x2a\52\x20\52\57\xa\x20\40\40\40\x70\165\x62\154\151\x63\40\x66\165\x6e\143\164\x69\x6f\x6e\x20\x74\145\163\x74\111\164\x57\x6f\x72\x6b\x73\50\x29\40\173\175\xa\175", "\74\x3f\x70\150\160\12\x63\154\141\x73\x73\40\124\145\x73\x74\x20\145\170\x74\x65\x6e\144\163\x20\x5c\x50\150\160\125\156\x69\164\x5c\x46\x72\141\155\x65\x57\x6f\x72\x6b\134\x54\x65\163\164\103\141\x73\145\12\173\xa\40\40\40\x20\x2f\52\52\40\100\164\x65\163\164\x20\x2a\x2f\12\40\x20\40\40\160\165\142\x6c\x69\143\x20\x66\165\x6e\143\164\x69\x6f\x6e\40\151\164\x57\157\x72\153\163\50\x29\40\x7b\x7d\12\175"]); goto r22u2; wV_MF: (yield "\x41\x6e\156\x6f\164\x61\164\x69\157\x6e\40\147\145\x74\163\40\x61\144\x64\x65\x64\54\x20\142\x75\x74\x20\x74\150\145\162\145\40\x69\163\40\141\x20\x6e\165\x6d\x62\145\x72\x20\141\x66\x74\145\162\x20\164\150\x65\40\x74\145\163\164\x70\x72\x65\x66\151\170\40\163\157\40\x69\x74\x20\153\145\x65\x70\163\x20\164\x68\x65\40\160\x72\145\x66\x69\170" => ["\x3c\77\x70\x68\x70\12\143\154\x61\163\163\40\124\x65\163\x74\x20\x65\x78\x74\x65\156\144\x73\x20\x5c\x50\x68\x70\125\x6e\x69\164\x5c\106\162\x61\155\145\x57\157\x72\153\134\x54\x65\x73\164\103\x61\163\145\xa\173\12\x20\40\40\x20\x2f\x2a\x2a\12\40\x20\x20\40\x20\x2a\x20\100\x74\145\163\164\12\x20\x20\x20\40\40\x2a\57\12\x20\40\40\x20\x70\165\x62\x6c\151\143\x20\x66\165\156\x63\x74\151\157\x6e\40\x74\145\163\x74\61\62\63\146\157\157\x42\141\162\50\51\40\173\175\xa\x7d", "\74\77\160\150\160\xa\143\x6c\x61\163\163\x20\124\145\163\164\x20\145\170\164\145\x6e\x64\x73\40\x5c\x50\x68\x70\x55\x6e\x69\x74\x5c\x46\162\x61\x6d\x65\x57\x6f\162\x6b\134\x54\x65\x73\x74\103\x61\163\x65\xa\173\12\40\40\40\x20\x70\x75\x62\x6c\151\143\x20\146\165\x6e\x63\x74\x69\157\x6e\x20\164\145\163\164\61\x32\63\x66\157\x6f\102\141\x72\x28\51\x20\173\x7d\12\175", ["\163\x74\171\x6c\145" => "\141\156\x6e\157\x74\x61\164\x69\x6f\x6e"]]); goto i61fr; bxGq1: (yield "\x41\156\156\157\x74\x61\x74\x69\x6f\x6e\40\x6d\x69\x73\x73\x69\156\x67\54\40\x6d\x65\x74\x68\157\x64\x20\x61\x66\164\x65\x72\40\x66\x69\170\40\x73\164\151\x6c\154\x20\x68\141\x73\x20\x22\164\145\x73\164\42\40\x70\162\x65\x66\x69\x78" => ["\74\77\x70\150\160\xa\143\x6c\x61\163\163\40\x54\x65\163\164\x20\145\170\x74\x65\156\144\163\x20\x5c\x50\150\160\x55\x6e\x69\x74\x5c\x46\x72\x61\155\145\127\157\x72\153\x5c\124\145\x73\164\x43\141\163\x65\xa\x7b\xa\40\x20\x20\x20\x2f\52\x2a\xa\40\x20\x20\x20\40\52\x20\x40\x74\145\x73\164\12\x20\x20\x20\40\40\x2a\57\12\40\40\x20\40\160\x75\142\x6c\x69\143\40\146\x75\x6e\143\164\151\157\x6e\40\164\x65\163\x74\137\146\157\157\50\x29\40\173\x7d\xa\175", "\74\77\160\x68\x70\12\x63\x6c\141\x73\x73\x20\124\145\163\164\x20\x65\x78\x74\x65\156\x64\x73\x20\134\120\150\160\125\x6e\151\164\134\x46\x72\141\x6d\145\x57\x6f\x72\153\x5c\124\x65\x73\x74\x43\141\163\x65\xa\173\xa\40\40\40\x20\x70\x75\142\x6c\151\x63\40\x66\x75\156\143\164\151\157\x6e\40\x74\145\163\x74\x5f\x74\x65\x73\x74\x5f\146\157\x6f\x28\51\x20\173\175\xa\x7d", ["\x73\164\x79\154\x65" => "\141\156\x6e\x6f\x74\141\164\151\157\x6e"]]); goto GL7Oh; A3urq: (yield "\103\x6c\x61\163\163\x20\x77\151\164\x68\40\142\x69\x67\x20\x64\157\x63\40\142\x6c\x6f\x63\x6b\163\40\x61\x6e\144\40\155\x75\154\164\x69\160\x6c\145\40\x66\x75\x6e\143\x74\x69\x6f\x6e\x73\x20\x68\141\x73\40\164\x6f\x20\162\x65\x6d\x6f\166\x65\40\x61\156\x6e\157\x74\141\x74\x69\157\x6e\163" => ["\74\77\x70\x68\160\xa\143\154\141\163\163\x20\x54\x65\x73\164\x20\x65\170\x74\x65\x6e\144\x73\40\134\120\150\x70\125\156\151\164\x5c\x46\162\x61\x6d\145\x57\x6f\x72\153\x5c\x54\145\x73\x74\x43\x61\163\x65\xa\x7b\12\xa\40\x20\40\40\57\52\52\12\x20\40\40\x20\40\x2a\40\x54\150\151\x73\x20\164\145\163\x74\40\x69\163\40\160\x61\162\164\x20\x6f\146\x20\164\150\145\x20\144\x61\x74\141\142\141\x73\145\x20\x67\162\157\165\160\40\x61\x6e\144\x20\x68\x61\163\40\x61\40\160\x72\x6f\166\x69\144\x65\162\x2e\12\40\x20\40\x20\40\x2a\xa\40\x20\40\40\40\52\40\x40\x70\141\162\x61\x6d\x20\x69\156\x74\40\x24\x70\x61\162\141\x6d\x4f\x6e\145\xa\x20\x20\40\40\x20\x2a\40\x40\160\141\162\x61\155\40\x62\157\x6f\x6c\40\44\160\x61\x72\141\155\124\167\157\12\x20\x20\x20\x20\x20\52\xa\40\40\40\x20\x20\x2a\12\40\x20\40\40\x20\x2a\40\x40\x64\141\x74\141\x50\x72\157\166\x69\x64\x65\x72\x20\160\162\x6f\166\x69\144\x65\163\xa\40\x20\x20\40\x20\52\x20\100\x67\x72\157\165\x70\40\x44\x61\164\141\x62\x61\x73\145\12\x20\40\40\40\40\x2a\57\xa\x20\40\x20\x20\x70\165\x62\154\151\x63\x20\x66\x75\156\x63\164\151\157\x6e\x20\x74\145\163\x74\104\x61\164\x61\142\141\163\x65\40\x28\44\x70\141\x72\x61\155\x4f\x6e\145\x2c\x20\44\x70\x61\162\x61\155\124\x77\x6f\x29\x20\x7b\x7d\12\xa\40\40\x20\x20\x2f\x2a\x2a\12\x20\40\x20\x20\40\52\x20\120\162\x6f\x76\x69\144\x65\162\40\146\157\x72\x20\x74\150\145\40\x64\x61\x74\x61\x62\141\163\x65\x20\164\145\163\x74\40\x66\165\x6e\x63\x74\x69\157\156\12\x20\40\40\40\40\x2a\12\40\x20\x20\40\x20\52\x20\100\x72\x65\164\165\x72\156\40\141\162\162\141\171\12\x20\40\x20\40\x20\x2a\57\xa\x20\x20\40\40\160\x75\142\x6c\x69\143\40\x66\165\x6e\x63\x74\x69\x6f\x6e\40\160\162\x6f\166\151\x64\x65\x73\x28\51\40\x7b\175\xa\xa\x20\40\x20\40\57\52\x2a\12\x20\40\x20\x20\x20\52\x20\111\40\141\x6d\40\152\x75\x73\164\40\141\40\x68\x65\x6c\160\x65\x72\40\x66\165\156\143\164\151\157\x6e\40\x62\x75\164\40\111\40\150\141\166\x65\40\164\145\163\x74\x20\x69\x6e\40\155\171\x20\156\x61\x6d\145\x2e\xa\x20\40\x20\x20\x20\52\40\x49\x20\141\x6c\x73\x6f\x20\150\141\166\145\40\x61\40\144\x6f\x63\40\x42\x6c\x6f\143\x6b\xa\x20\40\40\x20\40\x2a\xa\40\x20\x20\40\x20\52\x20\x40\x72\145\x74\165\162\156\40\x46\x6f\157\x5c\102\x61\x72\12\x20\40\x20\40\40\52\57\12\x20\40\40\40\x70\x75\142\154\x69\143\40\x66\x75\156\x63\x74\x69\x6f\156\40\x68\x65\154\x70\137\164\145\163\164\x28\51\x20\x7b\x7d\xa\xa\xa\40\40\40\40\160\162\x6f\x74\x65\143\164\x65\144\40\x66\165\x6e\x63\x74\x69\x6f\x6e\x20\x73\145\164\x55\160\x28\x29\40\x7b\175\xa\12\x20\40\40\40\57\52\52\12\x20\40\x20\x20\40\x2a\x20\x49\x20\144\x65\160\145\156\144\40\157\156\x20\x74\x68\x65\40\x64\x61\x74\x61\142\x61\163\145\x20\x66\165\156\143\x74\x69\x6f\x6e\x2c\x20\x62\165\164\x20\x49\40\x61\154\162\145\x61\144\171\xa\40\x20\40\40\x20\52\x20\150\x61\x64\40\x74\x65\x73\x74\40\x69\156\40\155\171\x20\x6e\141\155\145\40\x61\156\144\40\141\x20\x64\157\x63\142\154\157\x63\x6b\12\40\40\40\40\x20\x2a\12\x20\x20\x20\x20\40\52\40\x40\144\145\160\x65\x6e\144\x73\x20\x74\x65\163\x74\x44\141\x74\x61\x62\x61\x73\x65\xa\x20\40\x20\x20\x20\52\57\12\40\x20\40\40\160\165\142\x6c\151\143\x20\146\x75\156\143\x74\151\x6f\156\40\164\x65\163\x74\104\145\x70\145\x6e\144\163\x20\50\x29\40\x7b\175\xa\x7d", "\x3c\x3f\x70\150\x70\xa\x63\154\x61\x73\x73\40\x54\x65\x73\x74\x20\145\170\x74\145\x6e\x64\163\x20\134\120\x68\160\125\156\x69\164\x5c\106\x72\141\155\145\x57\157\x72\153\134\124\x65\163\x74\x43\x61\163\145\12\x7b\xa\12\x20\x20\x20\40\57\x2a\52\12\40\40\40\40\x20\52\x20\124\x68\x69\x73\x20\164\x65\163\x74\x20\x69\163\x20\160\x61\162\x74\x20\x6f\146\40\164\x68\145\x20\x64\x61\x74\x61\x62\141\163\145\40\x67\x72\157\165\160\40\x61\156\x64\x20\150\x61\x73\40\141\x20\160\162\157\x76\151\x64\145\x72\x2e\xa\40\x20\40\40\x20\x2a\xa\x20\x20\40\x20\x20\x2a\40\100\160\x61\162\x61\155\40\151\156\x74\x20\44\160\141\x72\141\155\117\156\145\xa\x20\x20\x20\40\40\x2a\40\100\x70\141\x72\x61\155\x20\x62\157\x6f\x6c\x20\x24\x70\x61\x72\141\x6d\124\x77\157\12\40\40\x20\x20\x20\52\12\40\x20\40\40\x20\x2a\40\x40\x74\145\x73\164\xa\40\40\x20\40\40\52\x20\100\x64\141\x74\141\x50\x72\x6f\166\151\x64\x65\x72\40\x70\162\x6f\166\151\x64\145\x73\12\40\x20\x20\x20\40\52\40\x40\x67\162\x6f\x75\x70\x20\x44\141\x74\141\x62\141\163\x65\xa\40\40\x20\40\40\52\57\12\40\40\40\40\x70\x75\x62\154\x69\x63\x20\146\165\156\x63\x74\151\157\156\x20\144\141\164\141\x62\x61\x73\145\40\50\x24\160\x61\162\141\x6d\x4f\x6e\145\x2c\x20\x24\x70\141\162\x61\155\x54\167\157\x29\x20\x7b\175\12\12\40\40\40\x20\57\52\x2a\xa\x20\40\40\x20\40\52\x20\120\x72\157\166\x69\x64\145\x72\x20\146\157\162\40\x74\150\x65\40\x64\141\164\x61\142\141\x73\x65\x20\x74\x65\163\x74\40\x66\165\x6e\x63\164\151\x6f\156\xa\40\x20\x20\40\x20\52\xa\40\40\40\x20\x20\x2a\40\x40\162\x65\164\165\162\156\x20\141\x72\162\x61\x79\xa\40\40\40\x20\x20\x2a\x2f\xa\x20\x20\x20\x20\x70\165\142\154\x69\x63\40\x66\x75\x6e\x63\x74\x69\157\x6e\40\x70\162\157\166\151\144\145\163\x28\x29\40\x7b\x7d\12\xa\x20\40\x20\x20\x2f\x2a\x2a\xa\x20\x20\40\x20\x20\x2a\40\111\40\x61\155\x20\x6a\165\x73\164\x20\141\40\150\x65\154\x70\145\x72\40\146\x75\156\x63\164\151\x6f\156\x20\x62\165\x74\x20\111\x20\x68\141\x76\145\x20\x74\x65\x73\164\x20\151\156\x20\x6d\x79\x20\156\x61\x6d\145\56\12\x20\x20\40\x20\x20\52\x20\x49\x20\141\x6c\x73\157\40\150\141\166\x65\40\141\x20\x64\157\x63\x20\x42\x6c\157\143\x6b\12\40\40\x20\40\40\x2a\12\x20\40\40\x20\x20\x2a\40\100\162\x65\x74\x75\162\156\40\106\157\157\x5c\x42\x61\x72\xa\40\x20\x20\40\40\x2a\x2f\xa\40\40\x20\x20\160\165\x62\x6c\x69\143\x20\x66\165\156\143\164\151\x6f\x6e\40\x68\145\x6c\160\137\x74\x65\163\164\50\51\x20\x7b\175\xa\12\12\40\40\x20\x20\x70\x72\157\x74\145\x63\x74\145\x64\x20\x66\165\x6e\143\164\x69\x6f\156\x20\163\x65\164\125\160\x28\x29\x20\x7b\175\12\xa\40\x20\40\x20\x2f\52\52\xa\40\x20\40\x20\40\x2a\x20\111\40\144\x65\x70\145\x6e\144\x20\x6f\x6e\40\164\x68\x65\x20\x64\141\x74\x61\x62\x61\163\x65\x20\x66\165\x6e\143\164\x69\157\x6e\x2c\40\x62\165\164\x20\111\x20\x61\154\162\145\141\x64\171\xa\x20\40\x20\40\x20\x2a\x20\150\141\x64\x20\x74\145\x73\x74\40\x69\156\40\155\171\40\x6e\141\x6d\x65\40\141\x6e\144\40\x61\x20\x64\157\143\142\154\x6f\143\x6b\12\40\x20\40\40\40\x2a\xa\x20\40\x20\40\40\x2a\x20\x40\144\145\x70\x65\156\144\163\x20\x64\x61\164\141\x62\141\163\x65\12\40\40\x20\40\x20\x2a\x2f\12\40\x20\40\40\160\165\142\x6c\151\x63\x20\x66\165\x6e\143\x74\151\x6f\x6e\40\x74\145\x73\x74\x44\145\x70\x65\156\x64\163\40\50\x29\40\x7b\175\xa\x7d"]); goto yv6dp; P3duI: (yield "\101\156\x6e\x6f\x74\141\164\x69\x6f\156\x20\x69\163\x20\x6e\x6f\x74\x20\x75\x73\145\x64\54\x20\x62\x75\164\x20\163\x68\157\165\x6c\x64\x20\x62\x65\x2c\x20\141\156\144\x20\164\x68\x65\162\145\40\x69\163\40\x61\x6c\x72\145\x61\144\171\x20\141\x20\x64\x6f\143\102\x6c\157\x63\x6b" => ["\74\x3f\160\x68\160\12\x63\x6c\x61\x73\163\40\x54\145\163\164\40\145\170\x74\145\156\x64\163\40\134\120\x68\160\x55\156\151\164\134\106\162\x61\155\145\x57\x6f\x72\153\x5c\124\145\x73\x74\x43\141\163\145\12\x7b\xa\x20\x20\x20\40\57\52\52\xa\40\x20\x20\40\40\x2a\40\x40\144\141\164\x61\120\162\x6f\x76\151\x64\145\162\40\142\x6c\141\x62\x6c\x61\xa\x20\x20\x20\x20\40\x2a\xa\x20\x20\x20\x20\x20\x2a\x20\x40\164\x65\x73\164\xa\40\40\40\40\x20\x2a\57\xa\x20\x20\40\x20\x70\165\142\154\x69\143\40\x66\165\x6e\143\164\x69\x6f\156\x20\151\164\x44\x6f\x65\163\x53\157\x6d\145\x74\x68\x69\156\147\x28\51\40\173\x7d\xa\40\x20\40\x20\175", "\x3c\x3f\160\x68\160\xa\143\154\x61\163\163\40\124\x65\x73\x74\x20\145\x78\164\145\156\x64\x73\40\x5c\x50\x68\160\x55\x6e\151\x74\x5c\106\x72\x61\x6d\x65\127\x6f\x72\153\x5c\x54\x65\163\x74\103\141\x73\x65\12\173\12\40\40\40\40\57\x2a\x2a\12\40\x20\x20\x20\x20\x2a\x20\x40\x64\141\x74\141\x50\162\x6f\x76\151\144\x65\x72\40\142\154\x61\142\x6c\x61\xa\40\x20\x20\40\40\52\57\xa\40\x20\x20\40\x70\165\x62\154\151\x63\x20\x66\x75\156\x63\164\151\x6f\156\x20\x74\x65\163\164\x49\x74\x44\x6f\145\163\x53\x6f\x6d\x65\x74\x68\151\x6e\x67\x28\x29\40\x7b\x7d\12\x20\x20\40\x20\x7d", ["\x73\x74\x79\x6c\x65" => "\141\156\x6e\157\164\x61\164\x69\x6f\x6e"]]); goto d5WMl; HrxBg: (yield "\x41\x6e\x6e\x6f\164\x61\164\151\157\x6e\x20\x67\x65\164\x73\40\162\145\155\157\x76\x65\x64\x2c\x20\142\x75\164\x20\164\x68\x65\40\x66\165\x6e\x63\x74\x69\157\156\40\150\141\x73\40\x61\x20\100\x74\x65\x73\x74\x57\x69\x74\x68" => ["\74\77\x70\150\x70\12\x66\x69\x6e\x61\154\40\143\154\x61\163\x73\x20\120\162\157\x63\145\x73\163\114\151\x6e\164\x65\162\120\x72\x6f\x63\x65\163\163\102\x75\x69\x6c\x64\x65\162\x54\x65\x73\164\x20\x65\x78\164\145\156\144\x73\40\x54\x65\x73\x74\103\141\163\x65\xa\173\xa\40\x20\40\x20\57\52\52\xa\40\x20\40\40\x20\52\12\x20\40\40\x20\40\x2a\40\100\160\x61\x72\x61\155\x20\x73\164\162\x69\156\x67\40\x24\145\170\145\143\x75\x74\141\142\154\145\12\x20\x20\x20\x20\40\x2a\40\100\160\141\162\141\x6d\40\163\x74\162\x69\x6e\x67\x20\44\146\151\x6c\145\xa\x20\40\x20\40\x20\52\40\x40\160\x61\162\x61\155\40\x73\164\x72\x69\x6e\147\x20\x24\145\x78\160\145\x63\x74\x65\144\xa\x20\40\x20\x20\x20\x2a\12\x20\x20\40\40\40\52\x20\x40\164\x65\x73\x74\127\151\x74\150\40\x5b\42\160\x68\160\42\x2c\x20\42\146\x6f\x6f\56\160\150\160\x22\54\40\x22\134\42\x70\x68\x70\x5c\x22\x20\x2d\x6c\40\134\x22\x66\x6f\x6f\x2e\160\150\160\134\x22\x22\x5d\xa\x20\40\40\40\x20\52\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x5b\42\x43\72\x5c\x50\162\157\x67\162\x61\x6d\x20\x46\x69\154\145\x73\134\160\x68\x70\134\160\150\x70\x2e\x65\x78\x65\x22\54\40\x22\x66\157\157\40\142\x61\x72\134\142\141\x7a\56\160\x68\160\x22\54\40\42\134\42\x43\72\x5c\x50\162\x6f\x67\162\141\155\x20\106\x69\154\145\163\134\x70\x68\x70\134\160\150\160\56\x65\170\145\x5c\x22\x20\55\154\x20\134\42\x66\157\x6f\40\142\x61\162\x5c\x62\x61\x7a\x2e\160\150\x70\x5c\42\42\135\12\40\x20\40\x20\40\x2a\40\x40\162\145\161\x75\x69\x72\145\x73\40\117\x53\x20\x4c\151\156\x75\170\174\x44\x61\x72\x77\151\x6e\12\40\40\40\40\x20\52\x2f\12\40\x20\40\40\160\165\142\154\x69\143\40\x66\165\x6e\143\x74\151\x6f\156\40\164\x65\163\164\x50\x72\x65\x70\141\162\145\x43\x6f\155\155\141\156\144\x4f\x6e\x50\x68\x70\117\156\x4c\151\156\165\x78\117\162\x4d\141\143\x28\44\145\170\145\143\x75\x74\x61\142\x6c\x65\54\x20\44\x66\x69\x6c\145\54\x20\x24\x65\x78\x70\145\143\x74\x65\144\51\xa\40\40\x20\40\x7b\xa\40\x20\40\40\x20\40\40\40\44\x62\x75\x69\x6c\x64\145\x72\40\x3d\x20\x6e\x65\x77\40\120\x72\x6f\143\145\163\163\114\151\156\x74\145\x72\120\162\157\143\x65\x73\x73\x42\x75\x69\x6c\144\x65\x72\50\x24\145\170\x65\143\165\164\x61\142\x6c\x65\51\73\xa\xa\40\x20\x20\40\x20\x20\40\40\x24\164\150\x69\163\55\76\141\163\x73\x65\162\x74\x53\x61\x6d\x65\x28\xa\40\40\40\40\40\40\40\x20\x20\40\x20\x20\x24\145\x78\160\x65\x63\164\145\x64\54\xa\x20\x20\40\x20\40\40\40\x20\40\40\40\40\44\142\x75\x69\154\144\145\162\55\76\x62\x75\x69\x6c\x64\x28\x24\x66\x69\154\x65\51\x2d\x3e\147\145\x74\103\x6f\x6d\x6d\x61\156\144\114\x69\156\x65\50\x29\12\40\40\x20\40\40\40\40\40\51\x3b\xa\40\x20\x20\40\175\12\175", "\x3c\x3f\x70\x68\x70\xa\x66\x69\x6e\141\x6c\x20\x63\154\x61\x73\163\x20\x50\x72\x6f\x63\x65\163\163\114\151\x6e\164\145\162\120\x72\x6f\143\x65\163\163\x42\165\151\154\x64\145\x72\124\x65\163\164\40\145\170\164\x65\156\144\163\40\124\145\x73\x74\x43\x61\163\x65\xa\x7b\12\40\40\x20\40\x2f\52\x2a\12\40\x20\x20\x20\40\x2a\40\100\164\145\x73\x74\12\x20\40\x20\x20\40\x2a\x20\100\160\141\162\x61\155\x20\163\164\162\x69\x6e\x67\40\x24\145\x78\145\143\x75\164\141\x62\x6c\145\xa\40\40\x20\x20\x20\x2a\40\x40\x70\x61\x72\x61\155\40\x73\164\x72\x69\156\x67\40\x24\146\151\x6c\x65\12\40\40\40\x20\40\x2a\x20\100\160\141\x72\141\155\40\x73\164\x72\151\156\147\x20\44\145\170\x70\145\x63\x74\145\144\12\x20\40\40\x20\40\52\12\x20\40\x20\40\x20\x2a\40\100\164\145\163\x74\x57\x69\x74\150\40\133\42\160\x68\160\42\x2c\x20\42\146\157\157\x2e\160\x68\x70\x22\54\x20\42\x5c\x22\160\150\160\134\42\x20\x2d\154\40\x5c\42\146\157\x6f\56\x70\150\160\x5c\42\x22\x5d\12\x20\x20\x20\40\x20\x2a\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x5b\x22\103\72\x5c\x50\162\x6f\x67\x72\141\x6d\40\106\x69\154\145\163\134\x70\x68\x70\134\160\x68\160\x2e\145\170\x65\42\54\40\x22\146\157\x6f\x20\142\x61\x72\134\x62\x61\172\56\x70\150\160\42\x2c\x20\x22\134\42\103\72\x5c\120\x72\157\147\x72\141\x6d\40\106\151\154\145\x73\x5c\160\150\x70\x5c\x70\150\x70\x2e\x65\x78\145\x5c\42\x20\x2d\x6c\x20\134\42\x66\157\x6f\x20\x62\141\162\x5c\142\x61\172\56\160\150\160\x5c\x22\42\135\12\40\40\x20\x20\40\52\40\100\162\145\x71\165\151\162\145\163\x20\x4f\123\x20\114\x69\156\165\170\174\104\141\162\167\151\x6e\xa\40\40\x20\x20\40\52\57\xa\40\x20\40\40\x70\x75\x62\154\x69\143\40\x66\165\156\x63\164\x69\x6f\156\40\x70\x72\x65\160\x61\162\145\x43\x6f\x6d\x6d\x61\156\144\117\x6e\120\150\160\x4f\x6e\x4c\151\156\x75\x78\117\x72\115\141\x63\50\44\x65\x78\145\143\x75\164\141\x62\x6c\x65\54\x20\44\146\x69\x6c\x65\x2c\x20\x24\145\x78\160\145\143\164\x65\x64\51\xa\40\40\x20\40\173\12\40\40\x20\x20\40\x20\x20\x20\x24\x62\x75\151\154\x64\145\162\40\x3d\x20\x6e\145\167\40\120\x72\157\143\145\x73\163\x4c\151\x6e\x74\x65\162\x50\162\x6f\143\x65\x73\x73\102\165\x69\x6c\x64\145\162\50\x24\x65\x78\145\143\165\x74\141\142\154\145\51\73\12\xa\40\x20\40\40\40\40\40\40\44\x74\x68\151\163\x2d\76\141\163\163\145\162\x74\123\141\155\145\x28\12\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x24\x65\x78\x70\145\x63\164\x65\144\x2c\12\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\x24\142\165\151\x6c\x64\x65\x72\55\x3e\x62\165\151\x6c\x64\x28\x24\146\x69\154\145\x29\55\76\x67\x65\x74\103\157\x6d\155\141\156\x64\x4c\x69\x6e\x65\50\x29\12\40\40\x20\40\40\x20\x20\40\x29\x3b\12\x20\40\40\x20\x7d\xa\x7d"]); goto LVstG; R3yzf: (yield "\104\157\x63\142\154\x6f\x63\153\40\144\157\145\163\x20\x6e\x6f\164\x20\147\145\164\40\x63\157\x6e\x76\145\x72\164\145\144\40\x74\157\x20\141\x20\x6d\x75\x6c\x74\x69\40\x6c\151\156\x65\x20\144\x6f\143\x20\142\154\x6f\x63\x6b\40\x69\146\40\x69\164\40\141\154\162\145\x61\x64\x79\40\150\x61\x73\40\x40\164\x65\x73\x74\x20\x61\156\156\157\x74\x61\164\x69\157\x6e" => ["\x3c\x3f\160\150\160\12\x63\x6c\x61\163\163\x20\x54\145\x73\x74\x20\x65\170\x74\145\156\x64\163\x20\x5c\120\x68\160\x55\x6e\x69\x74\134\106\162\141\155\145\x57\157\x72\x6b\x5c\x54\145\x73\x74\x43\x61\163\145\xa\173\12\x20\x20\x20\x20\57\52\x2a\x20\100\164\x65\163\x74\40\x2a\x2f\xa\40\x20\40\x20\160\x75\142\x6c\x69\x63\x20\146\165\x6e\x63\x74\x69\157\156\x20\x64\x6f\145\x73\x53\157\x6d\x65\x54\x68\151\x6e\x67\163\x28\x29\x20\x7b\x7d\12\x7d", null, ["\x73\164\x79\154\x65" => "\141\x6e\156\157\164\141\164\x69\157\156"]]); goto nj3yg; p_cSX: (yield "\101\156\x6e\x6f\x74\141\x74\151\x6f\156\x20\151\163\40\162\x65\155\157\166\x65\x64\x2c\40\x74\x68\x65\x20\146\165\x6e\x63\x74\151\157\156\40\x69\x73\x20\x6f\156\x65\x20\167\157\x72\x64\x20\x61\156\x64\40\167\145\40\x77\x61\156\x74\40\x69\164\40\x74\157\x20\x75\x73\145\40\x63\141\155\x65\154\x20\x63\141\163\x65" => ["\x3c\x3f\160\150\160\xa\x63\x6c\141\163\x73\x20\124\x65\163\x74\x20\145\170\164\145\156\144\x73\40\x5c\x50\x68\x70\125\x6e\x69\164\x5c\106\162\141\155\145\127\157\162\153\x5c\124\x65\163\164\x43\x61\x73\x65\xa\x7b\xa\40\40\x20\40\57\52\52\12\40\x20\40\40\40\x2a\xa\x20\40\x20\40\x20\52\x2f\xa\40\x20\x20\40\160\x75\x62\154\151\143\40\x66\x75\156\x63\164\x69\157\x6e\40\164\x65\x73\x74\127\157\x72\153\x73\x28\51\x20\x7b\175\12\x7d", "\x3c\77\x70\150\x70\xa\143\x6c\x61\163\163\40\x54\145\x73\164\x20\145\x78\164\145\156\x64\x73\40\x5c\120\150\160\125\x6e\x69\164\134\106\x72\141\155\145\x57\157\162\153\x5c\124\145\163\x74\103\x61\163\x65\12\x7b\12\x20\x20\40\x20\57\52\52\xa\40\40\40\40\40\52\x20\x40\x74\145\163\x74\xa\x20\x20\x20\40\x20\x2a\57\xa\x20\x20\x20\40\x70\x75\142\154\151\x63\x20\146\165\x6e\143\164\x69\x6f\156\40\167\157\x72\153\163\50\x29\x20\x7b\175\xa\x7d"]); goto ImAjS; DYwnk: (yield "\101\156\x6e\157\x74\x61\164\151\157\x6e\40\x6d\x69\x73\x73\x69\x6e\x67\x2c\x20\x6d\x65\164\x68\157\x64\40\x71\x75\141\154\151\x66\151\x65\x73\x20\141\x73\x20\164\145\163\164\54\x20\x62\165\164\x20\164\x65\x73\x74\40\x70\162\x65\x66\x69\x78\40\x63\141\156\156\x6f\x74\x20\142\x65\x20\162\x65\x6d\x6f\166\x65\x64" => ["\74\x3f\160\x68\160\xa\143\x6c\x61\163\163\40\x54\145\x73\164\40\145\170\x74\x65\x6e\x64\x73\40\x5c\x50\150\160\x55\x6e\x69\164\134\x46\162\x61\155\145\127\157\x72\153\134\x54\x65\x73\164\x43\x61\163\x65\12\x7b\xa\x20\40\40\x20\x2f\x2a\52\xa\x20\40\40\x20\40\52\x20\x40\x74\145\x73\164\xa\x20\x20\40\40\40\52\57\xa\40\x20\40\x20\x70\165\x62\154\x69\143\40\x66\x75\x6e\143\x74\151\157\x6e\x20\164\x65\x73\164\x28\x29\x20\173\x7d\12\x7d", "\74\x3f\160\150\160\12\143\154\x61\163\163\x20\124\145\x73\x74\40\145\170\x74\x65\156\144\x73\40\134\120\x68\x70\125\x6e\x69\164\134\x46\162\x61\155\145\x57\x6f\x72\x6b\134\x54\x65\163\164\x43\x61\x73\145\xa\x7b\12\40\x20\40\x20\160\165\142\154\x69\143\40\146\165\x6e\143\164\x69\157\x6e\40\x74\x65\163\164\50\x29\x20\173\175\xa\175", ["\163\164\x79\154\145" => "\x61\x6e\156\x6f\x74\x61\164\151\x6f\x6e"]]); goto bjutc; bDoFc: (yield "\101\142\x73\x74\162\141\x63\164\x20\x74\145\x73\x74\x20\147\x65\x74\163\40\141\x6e\156\x6f\x74\141\x74\x69\157\x6e\x20\x61\x64\x64\145\x64" => ["\x3c\77\x70\x68\160\xa\141\x62\x73\x74\162\x61\x63\x74\x20\x63\154\141\x73\x73\x20\x54\145\x73\x74\x20\145\170\x74\x65\156\x64\163\x20\134\x50\150\160\125\x6e\151\164\x5c\106\x72\141\x6d\x65\127\157\x72\153\x5c\124\x65\163\x74\x43\141\163\x65\12\173\12\x20\x20\40\40\x2f\x2a\52\12\x20\x20\40\x20\x20\52\x20\x40\x74\145\163\164\12\x20\x20\x20\40\40\x2a\57\xa\x20\40\40\x20\141\x62\163\164\x72\141\143\x74\x20\146\165\156\143\164\151\157\x6e\x20\146\x6f\157\x42\141\x72\x28\51\x3b\12\x7d", "\74\77\x70\150\x70\12\141\142\x73\x74\x72\141\x63\x74\x20\143\x6c\141\163\163\x20\124\145\163\x74\40\145\x78\x74\145\156\x64\163\40\x5c\120\x68\x70\125\x6e\x69\164\134\106\x72\x61\x6d\145\x57\157\x72\153\x5c\124\145\x73\164\x43\141\163\x65\xa\173\xa\x20\x20\x20\x20\x61\142\163\x74\162\x61\143\164\x20\146\x75\x6e\143\x74\x69\x6f\x6e\x20\164\x65\163\x74\x46\x6f\157\102\x61\x72\50\51\73\12\175", ["\163\164\x79\x6c\x65" => "\141\x6e\x6e\157\164\141\164\x69\x6f\156"]]); goto wV_MF; p5h0B: (yield "\x41\x6e\x6e\157\x74\141\164\x69\157\x6e\40\151\x73\40\156\x6f\x74\x20\165\163\145\144\54\40\x62\x75\x74\40\163\x68\x6f\x75\x6c\144\x20\x62\145" => ["\74\77\160\x68\x70\12\143\x6c\x61\163\163\40\124\145\163\x74\x20\145\170\x74\145\x6e\144\x73\x20\x5c\120\150\x70\x55\156\151\x74\x5c\x46\162\141\x6d\x65\127\x6f\162\153\134\x54\145\163\164\103\141\163\145\12\x7b\12\40\x20\40\x20\57\x2a\52\12\x20\40\40\x20\40\x2a\40\x40\x74\145\163\164\12\x20\x20\x20\40\40\x2a\x2f\12\x20\40\x20\x20\160\165\x62\x6c\x69\x63\40\x66\165\156\143\x74\151\157\156\x20\x69\164\x44\x6f\145\x73\x53\x6f\x6d\145\x74\150\151\156\x67\x28\x29\40\173\175\12\x7d", "\x3c\x3f\x70\150\x70\xa\x63\154\141\x73\163\40\x54\x65\x73\164\x20\145\170\x74\145\156\144\163\x20\x5c\120\150\160\125\x6e\151\164\134\106\x72\141\x6d\145\127\x6f\162\153\x5c\124\x65\x73\x74\103\x61\163\145\12\x7b\12\x20\40\40\x20\160\165\x62\x6c\x69\x63\40\146\165\156\x63\x74\x69\x6f\156\x20\x74\x65\x73\164\x49\x74\x44\157\x65\163\123\x6f\155\145\164\150\x69\x6e\147\x28\51\40\x7b\x7d\xa\x7d", ["\x73\x74\x79\154\x65" => "\141\156\156\x6f\x74\x61\164\151\157\156"]]); goto Z9IEX; lG6Zs: (yield "\x41\156\156\157\164\x61\164\x69\157\156\x20\147\145\x74\163\x20\x70\162\157\x70\x65\x72\154\x79\40\162\x65\155\157\166\x65\144\x2c\40\x65\x76\x65\x6e\x20\167\150\x65\x6e\40\x69\164\40\x69\163\40\x69\156\40\x61\x20\x77\x65\x69\x72\x64\x20\160\x6c\x61\x63\x65" => ["\x3c\x3f\x70\150\160\xa\143\154\141\163\163\40\x54\145\163\x74\x20\145\170\x74\x65\x6e\x64\163\40\x5c\x50\150\x70\x55\156\151\164\x5c\x46\162\141\x6d\x65\127\157\162\x6b\134\124\x65\163\x74\x43\x61\163\x65\xa\173\12\x20\40\40\40\x2f\x2a\x2a\xa\40\40\x20\x20\x20\52\40\111\x20\141\x6d\x20\141\x20\x63\x6f\155\155\x65\156\x74\x20\x61\x62\x6f\165\x74\40\164\x68\145\x20\x66\165\156\143\x74\151\157\x6e\xa\40\x20\40\x20\40\52\x2f\12\x20\40\x20\40\x70\x75\x62\154\151\x63\x20\x66\165\x6e\143\x74\151\x6f\156\40\164\x65\163\x74\x49\x48\x61\164\145\x4d\171\124\x65\x73\164\123\165\x69\x74\x65\50\51\x20\x7b\x7d\xa\12\x20\x20\x20\40\x2f\x2a\x2a\12\40\40\x20\40\x20\52\x20\x49\x20\141\x6d\40\x61\156\x6f\164\x68\145\x72\40\143\157\x6d\155\145\x6e\164\x20\x61\x62\157\x75\164\x20\141\40\x66\165\x6e\x63\164\x69\157\x6e\xa\40\x20\40\40\x20\52\x2f\xa\x20\x20\40\x20\x70\165\x62\x6c\151\x63\40\146\x75\x6e\x63\x74\151\x6f\x6e\x20\x74\x65\x73\164\x54\150\x69\x73\x4d\141\x6b\145\x73\116\157\x53\x65\x6e\163\145\x28\x29\x20\x7b\175\12\12\x20\x20\x20\x20\x2f\52\52\12\x20\40\40\x20\x20\x2a\40\124\x68\x69\163\40\143\x6f\x6d\155\145\156\164\40\x68\x61\163\x20\40\x20\155\157\162\145\40\x69\x73\163\x75\145\x73\12\40\x20\40\x20\40\52\x2f\12\x20\x20\x20\40\160\x75\142\x6c\x69\x63\40\x66\x75\156\143\164\x69\x6f\156\x20\164\x65\x73\164\x49\x74\x55\163\x65\x73\124\x61\x62\x73\x28\x29\40\173\x7d\12\12\x20\x20\x20\x20\57\52\x2a\xa\40\40\x20\40\40\52\x20\x40\x64\x65\x70\x65\x6e\x64\x73\40\164\145\x73\164\x49\164\125\x73\x65\163\124\x61\x62\x73\12\40\x20\x20\x20\40\x2a\57\xa\x20\40\40\x20\160\165\142\154\151\x63\40\146\x75\156\143\x74\151\x6f\156\40\164\x65\163\164\111\164\104\x65\160\145\156\144\163\x52\x65\141\x6c\x6c\171\50\51\x20\173\x7d\12\12\40\x20\x20\40\x2f\x2a\52\xa\x20\x20\x20\x20\x20\52\40\x40\144\145\160\145\156\x64\163\40\164\145\163\x74\111\x74\x55\x73\145\163\124\x61\142\x73\xa\x20\40\40\40\40\52\x2f\xa\40\40\40\x20\160\165\142\154\x69\x63\x20\x66\x75\x6e\x63\x74\151\x6f\x6e\40\164\145\x73\164\x49\x74\x44\x65\x70\x65\156\x64\x73\123\x6f\x6d\145\115\x6f\x72\x65\x28\x29\40\173\x7d\xa\x7d", "\x3c\77\160\x68\160\12\143\154\141\x73\163\x20\124\145\x73\164\x20\145\170\x74\x65\x6e\144\163\x20\134\x50\150\160\x55\x6e\x69\x74\x5c\x46\x72\141\x6d\145\127\157\162\x6b\134\124\145\163\x74\x43\x61\163\x65\12\x7b\xa\x20\40\x20\x20\x2f\x2a\x2a\12\x20\40\x20\40\x20\52\x20\x49\40\x61\155\x20\x61\40\143\x6f\155\155\x65\156\164\40\x40\164\x65\163\x74\x20\x61\x62\157\x75\x74\x20\x74\150\145\x20\146\x75\156\x63\164\151\157\x6e\12\x20\x20\40\x20\40\52\57\12\x20\x20\40\40\160\165\142\x6c\x69\x63\40\146\x75\156\143\x74\151\157\x6e\x20\x69\x48\x61\x74\x65\115\x79\x54\x65\163\x74\x53\165\151\x74\x65\50\51\x20\x7b\175\12\xa\40\40\40\x20\x2f\52\x2a\12\x20\40\x20\x20\x20\x2a\40\111\x20\141\x6d\40\x61\156\x6f\164\x68\x65\162\40\143\x6f\155\155\x65\x6e\164\x20\141\142\x6f\x75\164\40\x61\x20\146\165\156\x63\164\x69\157\156\40\100\164\x65\x73\x74\12\40\40\x20\x20\x20\x2a\57\12\40\40\40\40\160\165\142\x6c\x69\x63\x20\x66\165\x6e\x63\164\x69\157\156\x20\x74\150\151\x73\x4d\141\x6b\x65\x73\116\x6f\x53\145\x6e\163\145\50\x29\40\x7b\x7d\xa\12\x20\x20\x20\40\x2f\52\x2a\xa\x20\40\40\40\x20\52\40\x54\150\151\x73\40\143\x6f\x6d\x6d\145\x6e\x74\40\x68\141\163\40\x40\x74\x65\163\x74\40\40\x20\x6d\157\x72\x65\x20\151\163\163\x75\x65\x73\xa\x20\x20\x20\x20\40\x2a\x2f\xa\x20\x20\40\x20\160\x75\142\x6c\x69\x63\40\x66\x75\x6e\143\x74\x69\157\x6e\40\151\164\x55\163\145\x73\124\x61\x62\163\50\51\40\x7b\x7d\12\xa\40\40\40\x20\57\52\x2a\xa\40\40\x20\40\x20\52\40\x40\144\145\x70\145\156\x64\x73\40\151\164\125\163\145\163\x54\x61\x62\163\40\x40\x74\145\163\164\12\40\x20\x20\40\40\x2a\57\12\x20\40\40\x20\x70\x75\142\154\151\x63\40\x66\165\156\143\164\x69\157\156\x20\x69\x74\x44\145\160\x65\x6e\144\x73\x52\145\x61\154\x6c\x79\50\x29\x20\173\x7d\xa\xa\x20\40\40\x20\57\52\x2a\xa\x20\40\40\x20\x20\x2a\x20\x40\x74\145\163\164\x20\x40\144\145\160\145\156\144\163\40\x69\x74\125\163\145\163\x54\141\142\x73\12\x20\40\40\x20\40\52\57\xa\40\x20\x20\40\x70\x75\142\154\151\143\x20\146\x75\x6e\143\164\151\x6f\156\40\x69\164\104\145\x70\x65\156\144\163\x53\x6f\x6d\145\x4d\157\x72\145\x28\x29\x20\x7b\x7d\12\175"]); goto pNsyr; PEh1g: (yield "\x41\x6e\x6e\157\x74\x61\164\151\x6f\156\40\x70\162\x65\163\x65\156\x74\54\x20\x62\x75\x74\x20\x74\x68\x65\162\x65\x20\151\163\40\141\x20\154\157\167\x65\162\143\x61\x73\145\x20\143\150\141\x72\141\143\x74\x65\x72\40\141\146\164\x65\x72\40\164\150\x65\40\x74\x65\163\x74\x20\160\x72\x65\x66\151\170\40\163\157\40\151\164\40\153\145\145\160\163\40\x74\150\x65\x20\x70\x72\x65\x66\151\x78" => ["\x3c\77\160\x68\160\12\x63\154\141\163\x73\40\x54\145\163\x74\40\x65\170\x74\145\x6e\x64\163\x20\134\120\x68\x70\125\156\151\x74\x5c\x46\x72\141\155\145\127\157\162\x6b\x5c\124\145\163\x74\x43\141\x73\145\xa\x7b\12\x20\40\40\40\57\52\x2a\12\x20\40\40\40\40\x2a\40\x40\x74\x65\x73\164\12\40\x20\x20\40\40\52\x2f\xa\x20\x20\x20\x20\160\x75\x62\x6c\151\x63\40\146\x75\156\x63\164\151\x6f\156\x20\x74\145\163\x74\x61\162\x6f\163\x73\141\111\163\x46\162\x6f\155\x49\x74\141\x6c\x79\x28\x29\x20\173\175\12\175", null, ["\163\164\x79\x6c\145" => "\x61\156\156\x6f\164\141\x74\151\x6f\156"]]); goto DYwnk; r22u2: (yield "\124\145\x73\164\x20\x61\156\x6e\157\x74\x61\164\151\x6f\x6e\x20\x68\x61\163\40\x74\x6f\x20\x62\x65\40\141\x64\x64\145\x64\x2c\x20\x62\x75\164\x20\164\x68\x65\x72\145\x20\151\x73\x20\141\154\x72\145\141\x64\x79\40\141\40\x6f\x6e\145\x20\x6c\151\x6e\145\40\x64\157\x63\40\x62\x6c\x6f\x63\x6b" => ["\x3c\x3f\x70\x68\160\12\143\x6c\141\x73\163\40\x54\x65\163\x74\40\x65\170\164\x65\x6e\144\163\x20\134\x50\x68\160\x55\x6e\151\x74\x5c\106\162\141\x6d\x65\x57\x6f\x72\153\134\x54\145\163\x74\103\x61\163\x65\12\173\xa\40\40\40\x20\x2f\x2a\x2a\12\40\x20\x20\40\x20\52\40\100\147\x72\x6f\x75\x70\40\104\x61\164\141\142\x61\x73\145\12\x20\40\x20\40\40\x2a\12\40\x20\40\40\40\52\x20\x40\164\x65\x73\x74\xa\40\40\x20\x20\40\52\57\xa\40\x20\40\40\160\165\x62\x6c\x69\x63\x20\x66\x75\156\143\164\151\157\156\x20\151\164\124\145\163\164\163\x44\141\x74\x61\142\141\x73\x65\50\51\40\x7b\x7d\xa\175", "\x3c\x3f\160\150\x70\xa\143\154\x61\x73\163\x20\124\x65\x73\x74\40\x65\170\164\x65\x6e\x64\x73\x20\134\x50\x68\x70\125\x6e\151\x74\x5c\106\162\141\x6d\145\x57\x6f\x72\153\x5c\x54\145\x73\x74\x43\x61\x73\145\xa\173\12\40\x20\40\40\57\52\52\x20\x40\147\162\x6f\165\x70\x20\104\x61\164\141\x62\141\x73\145\x20\x2a\57\xa\40\x20\40\40\x70\165\x62\154\x69\x63\x20\146\165\x6e\x63\x74\151\x6f\x6e\x20\164\145\163\x74\x49\x74\x54\x65\163\164\163\x44\141\x74\x61\142\x61\x73\x65\x28\x29\40\173\x7d\12\175", ["\x73\x74\x79\154\145" => "\x61\156\x6e\x6f\x74\141\164\x69\157\156"]]); goto Hu6Li; mAuMv: (yield "\x41\x62\x73\164\x72\x61\143\164\x20\x74\x65\163\164\40\147\x65\x74\x73\40\x61\156\x6e\157\164\x61\164\151\x6f\156\x20\162\x65\155\157\166\x65\144" => ["\x3c\77\160\150\x70\xa\x61\142\163\164\x72\x61\x63\164\40\143\x6c\141\163\x73\x20\x54\145\x73\x74\x20\x65\x78\164\145\156\144\163\40\x5c\x50\x68\160\x55\x6e\x69\164\x5c\x46\162\141\x6d\x65\x57\x6f\162\153\134\124\145\x73\164\x43\141\x73\145\xa\x7b\xa\x20\40\40\40\57\52\x2a\12\x20\40\40\x20\40\52\xa\40\x20\x20\x20\x20\x2a\x2f\12\40\40\x20\40\141\142\x73\164\x72\141\x63\164\x20\146\x75\156\143\x74\151\157\156\40\x74\145\163\164\106\157\x6f\x42\141\x72\50\x29\x3b\xa\x7d", "\74\77\160\150\x70\12\141\142\x73\164\x72\x61\143\164\40\143\x6c\141\163\x73\40\x54\x65\x73\164\x20\145\x78\164\145\156\x64\163\40\134\x50\x68\160\125\156\151\164\x5c\x46\x72\141\155\145\127\x6f\x72\x6b\134\124\x65\163\x74\x43\141\163\x65\12\173\12\40\40\x20\x20\57\52\52\12\40\x20\x20\x20\40\52\x20\100\164\x65\x73\x74\xa\x20\x20\x20\x20\x20\52\57\xa\x20\40\40\x20\141\x62\163\164\162\141\x63\164\x20\x66\165\156\x63\164\x69\157\x6e\x20\x66\x6f\x6f\x42\141\x72\x28\x29\x3b\xa\175", ["\x73\x74\x79\154\145" => "\x70\x72\x65\x66\151\170"]]); goto jXq0K; DrB1s: (yield "\x41\156\x6e\x6f\164\x61\164\x69\x6f\156\x20\151\x73\x20\156\157\x74\40\x75\x73\x65\144\54\40\x61\x6e\144\x20\x73\x68\x6f\165\154\x64\40\156\x6f\x74\40\142\x65" => ["\x3c\77\x70\150\160\xa\x63\x6c\141\163\x73\40\124\x65\163\164\x20\x65\170\164\x65\156\144\x73\x20\134\x50\x68\x70\x55\156\x69\x74\134\x46\162\x61\x6d\145\x57\157\x72\x6b\134\x54\145\163\x74\103\x61\x73\145\12\173\xa\x20\x20\40\x20\160\165\142\154\151\143\x20\x66\165\x6e\143\164\x69\157\x6e\x20\x74\145\x73\x74\111\164\x44\x6f\x65\163\123\x6f\x6d\145\164\150\151\x6e\147\x57\x69\164\x68\x6f\165\164\x50\x68\x70\x44\157\143\50\x29\x20\173\x7d\xa\40\x20\x20\x20\57\52\52\xa\40\40\x20\x20\40\52\40\116\157\40\141\156\x6e\157\164\x61\164\151\157\x6e\54\x20\152\x75\163\164\x20\x74\145\x78\x74\12\x20\x20\40\x20\40\x2a\x2f\12\x20\x20\40\40\x70\165\x62\154\151\x63\x20\146\165\x6e\143\x74\x69\x6f\x6e\40\x74\145\163\x74\111\164\x44\157\x65\x73\123\x6f\155\x65\164\x68\x69\x6e\147\x57\x69\164\x68\120\x68\x70\x44\157\143\50\51\x20\x7b\175\12\xa\40\40\x20\40\x70\165\x62\154\x69\143\40\x66\x75\x6e\x63\x74\x69\157\x6e\40\164\x65\x73\x74\x69\x6e\147\x49\x74\x44\x6f\145\163\x53\157\155\145\164\150\151\x6e\x67\127\151\x74\x68\x6f\x75\x74\120\150\x70\104\x6f\x63\50\x29\x20\x7b\x7d\xa\40\40\x20\40\x2f\52\x2a\xa\x20\40\x20\40\x20\x2a\x20\x4e\x6f\40\x61\x6e\156\157\164\x61\164\151\157\x6e\54\40\x6a\x75\163\x74\x20\x74\x65\170\x74\xa\x20\40\x20\40\40\x2a\57\12\x20\40\40\x20\160\165\142\x6c\151\143\40\x66\165\156\x63\x74\x69\x6f\x6e\40\164\x65\x73\164\151\x6e\x67\x49\164\104\x6f\145\163\x53\157\x6d\x65\164\x68\151\x6e\147\127\151\x74\x68\120\150\x70\x44\157\143\50\51\x20\173\x7d\xa\x7d"]); goto PZNlV; LVstG: (yield "\x41\156\x6e\x6f\x74\141\164\x69\157\x6e\x20\x67\145\164\x73\40\x61\x64\x64\x65\x64\54\x20\142\165\x74\40\164\x68\x65\162\x65\40\151\163\40\141\154\x72\145\141\144\171\x20\x61\156\40\x40\164\145\163\164\x57\x69\x74\150\x20\151\x6e\40\164\x68\x65\x20\144\157\x63\x20\x62\x6c\157\x63\x6b" => ["\74\77\160\x68\x70\12\x66\x69\x6e\141\154\40\x63\154\x61\163\163\x20\120\162\x6f\143\145\163\x73\x4c\x69\156\x74\145\162\120\162\x6f\143\x65\163\163\x42\x75\151\154\x64\x65\162\124\145\163\164\x20\145\x78\164\145\156\x64\x73\40\124\145\x73\x74\103\141\163\145\12\x7b\12\40\x20\x20\40\x2f\x2a\52\xa\40\x20\40\x20\x20\x2a\40\100\160\x61\162\141\155\40\163\x74\162\x69\156\147\40\44\x65\170\145\x63\x75\x74\141\142\x6c\x65\xa\40\40\40\x20\x20\52\x20\x40\x70\141\x72\x61\x6d\x20\163\x74\x72\x69\x6e\x67\40\x24\x66\151\x6c\x65\xa\40\40\40\x20\x20\52\40\100\160\x61\162\x61\x6d\40\x73\x74\x72\x69\156\147\x20\x24\x65\x78\160\x65\x63\164\145\x64\12\40\x20\40\x20\x20\x2a\xa\40\40\40\x20\x20\52\x20\x40\164\145\163\164\127\151\164\x68\40\x5b\42\160\150\160\x22\x2c\x20\42\146\x6f\157\56\x70\x68\160\x22\x2c\x20\42\x5c\x22\160\x68\160\134\42\x20\55\154\x20\134\42\146\x6f\157\x2e\160\150\160\134\42\x22\x5d\12\40\40\40\x20\40\52\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\133\x22\x43\72\x5c\120\162\x6f\x67\162\141\155\x20\106\x69\154\145\163\x5c\160\x68\x70\134\160\150\x70\x2e\x65\170\145\x22\x2c\40\42\x66\157\157\x20\142\x61\162\x5c\142\141\172\56\x70\150\x70\x22\x2c\x20\x22\134\x22\x43\x3a\x5c\120\162\x6f\147\162\x61\x6d\40\x46\x69\x6c\x65\163\134\160\150\x70\x5c\x70\150\160\x2e\145\x78\x65\x5c\42\x20\x2d\154\x20\134\42\x66\157\x6f\40\x62\141\x72\134\x62\x61\172\x2e\160\x68\160\134\42\x22\135\xa\40\x20\x20\x20\40\52\40\x40\x72\145\161\165\x69\x72\145\x73\x20\x4f\x53\40\x4c\x69\x6e\x75\x78\174\x44\141\x72\167\x69\x6e\12\x20\40\40\40\x20\52\12\x20\x20\40\40\40\52\40\100\164\x65\x73\x74\12\x20\40\40\x20\x20\52\x2f\12\x20\40\x20\40\x70\165\x62\154\151\x63\40\146\x75\x6e\x63\x74\x69\x6f\x6e\40\160\x72\x65\x70\141\x72\145\103\x6f\155\x6d\x61\x6e\144\117\x6e\x50\150\160\x4f\x6e\x4c\x69\156\x75\x78\x4f\x72\x4d\x61\143\x28\x24\145\170\x65\143\x75\164\141\x62\x6c\145\x2c\x20\x24\146\151\154\x65\x2c\x20\x24\x65\170\160\145\143\x74\x65\144\51\xa\x20\40\40\40\173\xa\x20\40\40\x20\x20\40\40\40\44\x62\x75\x69\x6c\x64\x65\162\x20\75\x20\x6e\145\x77\40\120\162\157\x63\145\163\163\x4c\x69\156\164\x65\x72\120\x72\x6f\x63\x65\163\163\102\x75\151\154\144\x65\162\50\x24\145\x78\x65\x63\165\164\x61\x62\x6c\145\51\x3b\12\xa\x20\x20\x20\40\x20\40\40\x20\x24\x74\x68\151\163\x2d\x3e\141\163\x73\145\162\164\x53\141\x6d\x65\x28\12\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\44\x65\x78\x70\x65\143\x74\x65\x64\54\xa\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x24\142\x75\x69\x6c\144\x65\162\55\x3e\x62\x75\x69\x6c\144\x28\x24\x66\x69\x6c\x65\x29\x2d\x3e\x67\x65\x74\x43\157\x6d\x6d\x61\156\x64\114\151\156\145\50\51\12\40\40\40\40\x20\x20\40\x20\51\x3b\xa\x20\x20\x20\x20\x7d\xa\175", "\74\77\x70\x68\x70\12\x66\x69\156\141\x6c\40\x63\x6c\141\x73\163\40\x50\162\157\x63\145\163\x73\x4c\151\x6e\164\x65\x72\x50\x72\157\143\x65\x73\x73\x42\165\x69\x6c\x64\145\x72\124\x65\x73\164\x20\x65\x78\164\x65\156\144\163\40\x54\145\163\x74\x43\141\163\x65\xa\x7b\xa\40\x20\40\40\x2f\x2a\52\xa\40\40\40\x20\x20\x2a\x20\x40\160\141\x72\x61\x6d\x20\x73\x74\162\151\156\x67\40\x24\x65\170\x65\143\165\164\x61\142\x6c\x65\12\x20\x20\x20\40\x20\52\x20\x40\x70\141\162\141\x6d\40\x73\164\x72\151\x6e\147\x20\x24\x66\151\x6c\x65\12\x20\x20\x20\x20\40\x2a\40\100\160\141\162\x61\x6d\x20\163\x74\162\x69\156\147\x20\x24\x65\170\x70\145\x63\164\x65\144\12\x20\x20\40\40\x20\x2a\12\40\40\x20\40\x20\52\x20\100\164\x65\163\x74\127\x69\x74\x68\x20\x5b\x22\160\150\x70\x22\x2c\x20\x22\146\157\157\56\160\150\x70\x22\x2c\40\x22\x5c\x22\160\150\x70\x5c\42\40\55\154\x20\134\x22\146\157\x6f\56\x70\x68\x70\x5c\x22\x22\135\xa\x20\x20\x20\40\x20\x2a\40\x20\40\40\x20\40\x20\40\x20\40\40\133\x22\x43\x3a\x5c\x50\162\157\x67\x72\141\155\x20\x46\x69\154\145\x73\x5c\160\x68\x70\134\x70\150\x70\x2e\145\170\x65\x22\x2c\x20\42\146\x6f\x6f\x20\142\141\x72\x5c\142\141\x7a\56\x70\x68\x70\x22\x2c\x20\42\x5c\42\x43\x3a\134\x50\x72\x6f\x67\x72\x61\155\40\x46\x69\x6c\x65\163\134\160\x68\160\x5c\x70\150\x70\56\x65\x78\x65\x5c\42\x20\x2d\x6c\40\x5c\42\x66\157\157\x20\142\x61\162\x5c\142\141\172\x2e\x70\x68\160\134\x22\x22\x5d\12\40\x20\x20\40\x20\x2a\x20\x40\162\145\161\x75\x69\x72\x65\x73\40\117\x53\40\x4c\x69\x6e\x75\x78\174\x44\141\162\x77\151\x6e\xa\x20\40\x20\40\x20\x2a\x2f\12\x20\40\x20\40\160\165\142\x6c\151\143\40\x66\x75\156\x63\164\x69\x6f\x6e\40\x74\145\x73\x74\x50\162\145\160\141\162\x65\103\157\155\x6d\x61\156\144\x4f\156\120\150\x70\117\x6e\x4c\x69\156\165\170\117\162\x4d\141\143\50\x24\145\x78\x65\143\x75\164\141\142\x6c\145\x2c\40\44\x66\x69\154\145\54\40\x24\x65\x78\x70\x65\143\164\x65\144\51\12\40\40\40\40\173\xa\x20\x20\x20\x20\40\x20\40\40\44\x62\165\151\154\x64\x65\x72\40\x3d\x20\156\x65\167\40\x50\x72\157\x63\x65\163\x73\114\151\x6e\x74\x65\x72\x50\162\x6f\x63\x65\x73\163\102\165\x69\x6c\144\145\x72\50\44\x65\x78\x65\143\x75\164\141\x62\x6c\145\51\x3b\xa\12\40\40\x20\40\40\40\x20\40\44\x74\150\x69\163\55\x3e\141\x73\163\145\162\x74\x53\141\155\145\x28\xa\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x24\145\170\x70\145\x63\164\x65\144\x2c\xa\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\44\x62\165\x69\x6c\x64\145\x72\x2d\76\x62\165\151\x6c\144\50\x24\x66\x69\154\x65\x29\55\76\x67\x65\164\x43\x6f\x6d\155\141\156\x64\x4c\151\x6e\x65\50\x29\12\x20\40\40\40\x20\x20\40\40\x29\73\xa\40\x20\x20\40\x7d\12\x7d", ["\x73\x74\x79\x6c\145" => "\141\x6e\156\x6f\164\141\164\x69\157\x6e"]]); goto lG6Zs; GL7Oh: (yield "\x64\157\x20\156\157\164\40\x74\157\165\143\x68\40\163\151\156\147\154\x65\40\154\x69\156\x65\40\100\144\145\160\x65\156\144\163\x20\x61\x6e\x6e\x6f\x74\x61\x74\151\x6f\x6e\40\x77\x68\x65\x6e\40\141\154\x72\145\x61\144\x79\x20\x63\x6f\x72\162\x65\x63\x74" => ["\74\77\x70\x68\160\40\143\154\141\x73\163\40\106\x6f\x6f\124\145\163\164\x20\x65\x78\x74\x65\156\144\x73\x20\134\120\110\x50\x55\x6e\x69\164\x5c\x46\162\x61\x6d\x65\167\x6f\x72\153\134\x54\145\x73\164\103\141\163\145\xa\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x7b\12\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\x70\165\142\x6c\151\143\40\x66\x75\156\143\164\151\x6f\x6e\x20\x74\x65\x73\x74\x4f\x6e\145\50\x29\x20\x7b\x7d\12\xa\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\40\57\x2a\x2a\40\x40\144\145\160\x65\156\144\x73\40\x74\x65\x73\164\x4f\156\145\40\x2a\57\12\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\40\40\40\x20\40\x70\x75\x62\154\151\143\40\146\x75\x6e\143\x74\151\157\x6e\x20\x74\145\163\x74\124\167\x6f\x28\x29\40\173\x7d\xa\xa\x20\40\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\57\x2a\52\x20\x20\40\40\100\144\x65\x70\145\156\x64\x73\40\40\40\40\164\145\163\164\124\x77\157\40\x20\40\40\52\57\12\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\160\x75\x62\154\151\143\x20\x66\x75\x6e\x63\164\151\157\x6e\40\164\x65\163\164\124\150\x72\145\145\x28\51\x20\x7b\175\xa\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x7d"]); goto p5vZj; FQpd_: (yield "\x54\145\x73\164\40\141\x6e\156\x6f\164\141\x74\151\x6f\x6e\x20\150\x61\x73\x20\164\x6f\x20\142\145\40\141\x64\x64\145\x64\54\40\x62\x75\x74\40\164\150\145\x72\x65\40\151\x73\x20\141\154\x72\x65\141\x64\x79\40\141\x20\x6f\x6e\x65\40\154\x69\x6e\145\x20\143\157\155\x6d\145\156\164\x20\160\x72\x65\163\x65\x6e\x74" => ["\x3c\x3f\160\x68\160\12\143\154\x61\163\163\40\124\145\163\164\40\x65\170\x74\145\x6e\x64\x73\40\x5c\120\x68\160\x55\x6e\x69\x74\x5c\x46\x72\x61\x6d\145\x57\x6f\162\153\134\x54\145\x73\164\x43\x61\163\145\xa\x7b\xa\40\40\40\40\x2f\x2f\x49\x20\162\x65\141\154\x6c\171\40\154\x69\x6b\145\x20\164\150\151\x73\40\x74\x65\163\164\x2c\x20\151\x74\40\150\x65\x6c\x70\x73\40\141\x20\154\x6f\x74\xa\40\x20\x20\40\57\x2a\52\12\40\40\40\x20\x20\x2a\40\x40\164\145\x73\164\12\x20\x20\40\40\40\x2a\x2f\12\40\40\40\x20\160\x75\x62\154\x69\x63\x20\x66\x75\156\x63\x74\x69\x6f\x6e\x20\x69\x74\x54\145\x73\x74\x73\104\141\164\x61\x62\141\163\145\x28\x29\40\x7b\175\12\x7d", "\x3c\x3f\160\150\x70\12\143\x6c\x61\x73\x73\40\124\x65\163\x74\40\x65\170\164\145\x6e\x64\x73\40\x5c\120\150\160\x55\x6e\x69\164\x5c\x46\162\x61\x6d\145\x57\157\162\153\x5c\x54\145\163\164\103\x61\163\145\12\x7b\12\40\x20\40\40\x2f\57\111\x20\162\145\x61\x6c\x6c\171\40\x6c\151\x6b\x65\x20\164\x68\151\x73\40\164\x65\163\x74\x2c\x20\x69\x74\x20\x68\x65\x6c\160\x73\x20\141\40\154\157\x74\12\40\x20\40\40\x70\165\142\x6c\x69\143\x20\x66\165\x6e\x63\x74\x69\x6f\x6e\x20\164\145\163\164\111\164\124\145\163\164\x73\104\141\x74\141\x62\141\x73\x65\x28\51\40\x7b\x7d\xa\175", ["\x73\164\171\x6c\x65" => "\x61\156\156\x6f\164\141\164\x69\x6f\156"]]); goto oQaEQ; yfnHj: (yield "\x41\156\156\x6f\164\141\164\151\157\156\x20\147\x65\x74\x73\40\x72\145\x6d\157\x76\145\x64\40\167\x68\145\x6e\x20\x61\x20\x73\x69\x6e\x67\x6c\145\40\x6c\151\x6e\145\x20\x64\157\143\40\142\x6c\x6f\143\153\40\150\x61\x73\40\164\x68\x65\40\x74\x61\x67\x2c\x20\x62\165\x74\x20\x74\150\145\162\x65\40\141\162\145\x20\x6f\164\x68\x65\162\40\164\x68\x69\156\147\163\x20\x61\163\x20\167\x65\154\x6c" => ["\74\x3f\x70\x68\160\xa\x63\154\141\163\x73\x20\x54\x65\x73\x74\40\x65\170\x74\145\156\144\163\40\x5c\120\150\160\x55\156\x69\x74\x5c\106\x72\141\x6d\x65\127\157\162\153\134\x54\x65\163\164\103\141\x73\x65\xa\x7b\xa\x20\40\x20\x20\57\x2a\52\40\124\150\145\x72\145\40\151\163\40\163\157\x6d\145\40\x74\145\170\x74\x20\x68\145\x72\x65\x20\100\x67\162\157\x75\160\40\104\141\x74\141\142\x61\x73\x65\40\100\x67\x72\157\x75\x70\x20\x49\156\164\x65\x67\x72\x61\164\151\x6f\x6e\40\52\57\12\x20\x20\x20\x20\160\x75\142\x6c\151\143\40\146\x75\x6e\143\164\151\x6f\156\40\164\x65\163\x74\x57\x68\171\x44\157\x54\x68\x69\x73\x28\x29\x20\x7b\175\xa\x7d", "\x3c\77\x70\150\x70\xa\x63\154\x61\163\163\40\x54\x65\x73\164\40\x65\x78\x74\x65\x6e\x64\163\40\134\x50\x68\x70\125\156\151\164\134\106\162\x61\x6d\145\x57\x6f\162\x6b\134\x54\145\163\x74\103\141\x73\145\12\173\12\x20\40\40\x20\57\52\52\x20\x54\150\x65\x72\x65\x20\x69\x73\40\163\x6f\155\145\40\100\164\x65\x73\x74\x20\164\145\170\x74\40\150\x65\162\145\40\100\x67\162\x6f\165\x70\40\104\141\164\141\x62\x61\x73\x65\x20\x40\x67\x72\x6f\x75\160\x20\x49\x6e\164\x65\147\162\x61\164\151\157\156\40\52\57\xa\40\x20\x20\40\160\165\x62\x6c\x69\143\40\146\x75\156\143\x74\151\x6f\156\40\164\x65\x73\164\x57\x68\x79\104\157\x54\150\x69\163\50\51\40\173\x7d\xa\x7d"]); goto A2lla; ImAjS: (yield "\x41\x6e\x6e\157\164\x61\x74\x69\x6f\x6e\40\x69\x73\x20\x61\x64\x64\x65\x64\54\40\141\x6e\144\x20\151\164\x20\151\x73\x20\x73\x6e\x61\153\x65\40\x63\x61\x73\145" => ["\74\77\160\150\x70\12\143\x6c\141\163\x73\x20\x54\x65\163\164\x20\145\x78\x74\x65\x6e\x64\x73\40\x5c\x50\x68\160\125\x6e\151\x74\x5c\106\162\141\x6d\145\127\157\x72\153\x5c\124\x65\163\164\x43\141\163\x65\12\173\xa\40\40\40\x20\57\52\x2a\12\40\40\x20\40\x20\52\40\x40\164\x65\x73\x74\12\x20\40\x20\40\40\52\57\xa\40\x20\40\x20\x70\x75\142\x6c\151\143\40\x66\165\x6e\143\164\151\157\156\x20\151\164\137\x68\141\x73\137\x73\x6e\x61\153\145\137\143\141\x73\145\50\x29\x20\173\x7d\12\175", "\x3c\x3f\x70\x68\160\12\143\154\141\x73\x73\40\x54\145\163\164\40\x65\x78\x74\x65\x6e\144\x73\40\134\x50\150\x70\x55\156\151\x74\134\x46\162\x61\x6d\x65\127\157\x72\x6b\134\x54\145\163\x74\x43\141\x73\145\xa\173\xa\40\x20\40\40\160\165\x62\x6c\x69\143\x20\x66\x75\156\x63\164\x69\157\156\40\164\x65\163\x74\x5f\x69\164\x5f\x68\x61\x73\x5f\x73\x6e\141\153\x65\137\x63\141\163\145\50\x29\40\173\x7d\xa\175", ["\163\164\171\154\145" => "\141\x6e\156\157\164\141\164\151\157\x6e"]]); goto ExXv4; vDfCE: (yield "\x41\156\156\x6f\164\141\x74\x69\x6f\x6e\x20\151\x73\40\x6e\x6f\164\40\x75\163\x65\144\x2c\40\x62\165\x74\40\x73\x68\x6f\165\x6c\x64\40\x62\x65\54\40\141\156\144\x20\151\x74\40\x64\145\160\145\x6e\x64\163\x20\157\x6e\40\157\x74\x68\145\162\x20\x74\145\163\164\x73" => ["\x3c\77\160\x68\160\xa\x63\154\141\163\x73\x20\x54\145\x73\x74\40\145\x78\x74\145\x6e\x64\x73\40\134\x50\x68\160\125\x6e\x69\x74\x5c\x46\162\141\155\x65\x57\157\x72\153\134\124\x65\x73\164\x43\141\x73\145\12\173\12\40\x20\40\x20\x2f\52\x2a\12\40\40\40\40\40\x2a\40\x40\164\x65\x73\164\12\x20\40\x20\40\x20\x2a\57\12\40\x20\x20\x20\160\x75\x62\x6c\151\143\x20\146\165\x6e\143\164\x69\157\x6e\40\x61\x61\x61\x20\50\51\40\x7b\175\xa\xa\x20\40\40\x20\57\52\52\xa\40\x20\x20\40\x20\52\x20\x40\x64\x65\160\145\x6e\x64\x73\40\141\x61\x61\xa\x20\x20\40\40\x20\x2a\xa\40\40\40\40\40\52\40\100\164\145\x73\x74\12\40\40\x20\x20\x20\52\57\xa\x20\40\40\40\160\165\x62\154\151\143\x20\146\165\156\x63\164\x69\x6f\156\x20\x62\142\142\x20\50\51\40\x7b\175\12\175", "\x3c\x3f\160\150\x70\xa\143\x6c\141\163\x73\x20\124\x65\x73\x74\x20\x65\170\164\145\156\x64\x73\40\x5c\120\150\160\125\x6e\x69\x74\134\x46\x72\141\155\x65\x57\x6f\162\153\134\124\145\x73\x74\x43\141\163\x65\xa\x7b\12\x20\40\x20\x20\x70\x75\x62\154\x69\143\40\x66\x75\x6e\143\x74\x69\157\x6e\x20\164\145\x73\x74\101\x61\x61\40\50\x29\40\x7b\x7d\xa\xa\x20\40\x20\40\x2f\52\x2a\xa\x20\40\40\40\x20\x2a\40\100\144\x65\160\x65\x6e\144\163\x20\x74\x65\x73\164\x41\x61\x61\12\x20\40\40\x20\x20\x2a\57\xa\40\40\40\x20\160\165\x62\154\x69\143\x20\x66\165\156\143\164\x69\x6f\156\x20\x74\145\163\164\102\142\142\x20\x28\x29\x20\x7b\x7d\xa\x7d", ["\163\x74\x79\x6c\145" => "\x61\156\156\x6f\x74\141\x74\151\157\x6e"]]); goto p_cSX; Hu6Li: (yield "\124\x65\163\x74\x20\141\156\156\157\x74\141\164\151\x6f\156\40\x68\x61\163\x20\164\x6f\40\x62\x65\40\x61\x64\144\145\144\54\40\x62\165\164\40\164\x68\x65\162\x65\40\x69\x73\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x61\x20\157\x6e\145\40\154\151\156\x65\40\x64\157\x63\x20\142\154\x6f\143\153\40\x77\x68\x69\x63\150\x20\x69\163\40\141\40\163\x65\156\x74\145\156\143\x65" => ["\x3c\x3f\160\x68\x70\xa\143\154\141\x73\163\40\124\145\x73\x74\x20\145\x78\x74\145\x6e\x64\x73\40\x5c\120\150\x70\x55\x6e\x69\x74\x5c\106\x72\141\x6d\x65\x57\157\x72\153\x5c\x54\x65\x73\x74\x43\141\x73\x65\12\x7b\12\40\x20\40\40\x2f\x2a\x2a\12\x20\40\x20\x20\x20\x2a\40\x49\40\x72\145\x61\x6c\154\x79\x20\x6c\x69\x6b\x65\x20\x74\150\151\x73\40\164\x65\x73\164\54\40\x69\x74\40\x68\145\154\160\x73\40\141\40\154\157\x74\12\40\x20\x20\40\x20\x2a\xa\x20\x20\40\40\x20\52\40\100\x74\x65\x73\x74\12\40\40\40\40\40\x2a\x2f\12\40\40\40\40\x70\165\142\154\x69\x63\40\x66\x75\156\143\x74\151\157\156\x20\151\164\x54\145\x73\x74\163\x44\x61\164\x61\x62\x61\x73\145\x28\x29\40\173\175\12\x7d", "\x3c\x3f\x70\150\x70\xa\143\154\141\x73\163\40\x54\145\x73\x74\40\x65\170\164\x65\156\x64\x73\x20\x5c\120\150\160\x55\x6e\x69\x74\x5c\106\x72\x61\155\x65\x57\157\162\x6b\134\124\x65\163\164\103\141\163\x65\12\x7b\xa\40\x20\40\40\57\52\52\40\111\40\x72\145\x61\x6c\154\x79\x20\x6c\151\153\145\x20\x74\x68\151\x73\x20\x74\x65\x73\x74\x2c\x20\x69\164\x20\x68\x65\x6c\160\x73\40\141\40\154\157\x74\x20\52\x2f\12\x20\40\40\40\160\x75\142\154\151\x63\40\x66\x75\x6e\x63\x74\x69\157\156\40\x74\145\x73\x74\x49\164\124\145\x73\x74\163\104\141\x74\x61\x62\141\x73\145\50\51\40\173\x7d\xa\175", ["\x73\x74\171\154\x65" => "\141\x6e\x6e\x6f\164\141\x74\151\x6f\156"]]); goto FQpd_; TgBnp: (yield "\101\x6e\156\x6f\164\x61\164\x69\157\x6e\x20\x70\x72\x65\163\145\x6e\x74\x2c\40\x6d\x65\x74\x68\157\144\40\x71\x75\141\154\x69\146\151\x65\x73\x20\141\x73\x20\164\x65\163\164\54\40\142\x75\x74\x20\x74\x65\x73\164\x5f\x20\160\162\145\146\x69\x78\40\x63\141\156\156\x6f\x74\x20\142\145\40\162\x65\x6d\x6f\166\145\x64" => ["\74\77\160\x68\160\12\143\x6c\x61\x73\163\x20\x54\145\x73\x74\x20\x65\170\164\x65\156\144\x73\x20\x5c\x50\150\160\125\x6e\x69\x74\134\x46\x72\141\155\x65\x57\157\x72\153\x5c\124\x65\163\164\x43\x61\163\x65\12\x7b\xa\40\x20\40\40\x2f\52\52\xa\40\x20\40\x20\x20\52\40\100\x74\145\163\164\12\40\x20\x20\40\x20\52\57\xa\x20\x20\x20\40\x70\x75\142\154\x69\x63\40\146\x75\156\143\x74\x69\x6f\x6e\x20\164\x65\x73\x74\x5f\x28\x29\40\173\175\xa\175", null, ["\163\x74\171\x6c\145" => "\x61\x6e\x6e\x6f\x74\141\x74\151\x6f\156"]]); goto bxGq1; DytIe: (yield "\101\156\x6e\157\164\x61\x74\x69\x6f\156\40\x68\x61\x73\40\164\157\x20\142\x65\40\141\144\144\145\x64\40\x74\x6f\x20\155\165\154\x74\151\160\154\145\x20\x66\x75\156\x63\164\x69\157\x6e\163" => ["\74\x3f\x70\x68\160\xa\x63\x6c\141\x73\x73\x20\x54\145\x73\x74\40\x65\x78\164\145\x6e\144\x73\40\x5c\x50\150\x70\125\x6e\151\x74\x5c\x46\x72\141\155\x65\127\x6f\162\153\134\124\145\x73\x74\103\141\163\x65\12\x7b\12\x20\x20\40\x20\57\52\52\12\40\x20\40\40\40\52\40\x40\x74\145\x73\x74\12\40\x20\x20\40\40\52\57\12\x20\x20\40\x20\160\165\142\154\x69\x63\40\x66\165\156\143\x74\x69\157\156\x20\151\x74\x57\x6f\162\x6b\x73\50\51\40\173\175\xa\xa\40\40\40\x20\57\x2a\52\xa\40\x20\40\x20\40\x2a\x20\100\x74\x65\163\164\12\x20\40\x20\x20\x20\52\x2f\12\x20\x20\x20\x20\160\165\142\154\151\x63\x20\146\x75\x6e\143\164\x69\157\x6e\40\x69\x74\104\157\x65\163\x53\157\x6d\x65\164\x68\151\x6e\x67\x28\x29\x20\x7b\175\12\x7d", "\74\77\160\150\x70\xa\x63\154\141\x73\163\x20\124\x65\163\x74\x20\x65\x78\164\145\x6e\144\163\x20\x5c\120\150\x70\x55\x6e\x69\x74\x5c\x46\x72\141\155\x65\127\157\162\x6b\x5c\124\x65\163\164\x43\141\x73\145\12\x7b\12\40\x20\40\x20\160\165\142\x6c\151\143\x20\x66\165\156\x63\x74\x69\157\156\40\164\x65\163\164\111\x74\127\x6f\x72\153\x73\50\51\40\x7b\x7d\12\12\40\40\x20\x20\x70\x75\x62\x6c\x69\143\40\146\x75\156\x63\164\x69\x6f\x6e\40\164\x65\x73\x74\111\x74\x44\x6f\145\x73\123\x6f\x6d\145\164\150\x69\156\x67\x28\51\40\173\175\12\x7d", ["\163\164\x79\154\145" => "\141\156\x6e\x6f\164\141\x74\x69\x6f\156"]]); goto A3urq; bjutc: (yield "\x41\156\156\157\x74\x61\164\151\x6f\x6e\40\x6d\151\x73\163\151\156\x67\x2c\x20\x6d\145\164\x68\157\144\x20\x71\165\141\154\x69\146\151\145\163\40\141\x73\40\164\145\x73\x74\54\40\x62\165\x74\x20\x74\x65\x73\164\x5f\x20\160\x72\x65\146\151\170\40\143\x61\156\x6e\157\164\x20\142\x65\40\162\x65\x6d\157\x76\x65\144" => ["\74\x3f\x70\150\x70\12\143\x6c\x61\x73\x73\40\124\145\x73\x74\40\145\170\x74\x65\156\144\163\40\134\x50\150\x70\x55\x6e\151\164\x5c\x46\x72\141\x6d\145\127\157\x72\153\134\124\145\163\164\x43\x61\163\x65\12\x7b\xa\40\40\x20\x20\57\x2a\52\xa\x20\x20\x20\40\x20\x2a\x20\x40\164\x65\x73\x74\xa\40\40\40\x20\40\x2a\57\12\40\x20\40\40\x70\165\x62\x6c\151\x63\40\146\x75\x6e\143\164\x69\157\x6e\x20\x74\x65\163\x74\x5f\x28\51\x20\x7b\175\xa\175", "\x3c\x3f\160\150\x70\xa\143\x6c\x61\163\163\x20\124\x65\x73\164\40\x65\170\164\145\x6e\144\163\x20\134\x50\150\x70\x55\x6e\x69\164\x5c\x46\x72\141\x6d\x65\x57\x6f\162\x6b\134\x54\x65\x73\x74\x43\x61\x73\145\12\x7b\12\40\40\40\40\x70\x75\x62\154\151\143\40\x66\165\156\143\164\151\x6f\x6e\40\x74\x65\x73\x74\x5f\50\51\40\x7b\175\xa\175", ["\x73\x74\x79\154\145" => "\141\x6e\x6e\157\x74\141\x74\151\157\156"]]); goto TgBnp; kjGWW: (yield "\101\x6e\156\x6f\164\141\x74\x69\x6f\x6e\40\x69\x73\40\x75\163\145\144\x2c\x20\x61\x6e\144\40\151\x74\x20\163\x68\x6f\165\x6c\144\40\156\157\164\40\142\x65" => ["\74\77\160\150\160\xa\143\154\x61\163\x73\x20\124\145\x73\164\x20\145\x78\x74\145\156\144\163\x20\x5c\x50\150\x70\x55\x6e\x69\x74\134\106\162\x61\155\x65\127\157\162\x6b\x5c\x54\145\163\164\x43\x61\x73\x65\xa\173\12\40\40\40\x20\57\x2a\52\xa\40\x20\40\40\x20\52\xa\x20\x20\x20\x20\x20\x2a\57\xa\x20\40\40\40\x70\165\142\154\x69\x63\x20\146\165\156\x63\164\151\x6f\156\40\x74\x65\163\x74\111\164\104\157\x65\x73\x53\x6f\x6d\x65\164\150\151\156\x67\x28\x29\40\x7b\x7d\xa\175", "\x3c\77\x70\x68\160\12\143\x6c\141\163\163\40\x54\145\x73\x74\40\x65\170\164\x65\x6e\144\x73\40\134\120\x68\x70\x55\156\x69\x74\134\106\x72\141\155\x65\x57\x6f\162\153\x5c\x54\x65\163\x74\103\141\163\x65\12\173\xa\40\x20\40\40\x2f\52\52\12\x20\40\x20\x20\40\x2a\40\100\x74\145\x73\164\12\40\40\40\x20\x20\52\57\xa\x20\40\x20\x20\160\165\142\154\x69\x63\x20\x66\x75\156\143\x74\151\157\x6e\x20\x69\164\104\x6f\x65\x73\123\157\x6d\145\x74\x68\151\x6e\x67\x28\x29\40\x7b\x7d\12\x7d", ["\x73\x74\x79\154\x65" => "\x70\x72\x65\x66\151\x78"]]); goto p5h0B; d5WMl: (yield "\101\x6e\156\x6f\164\141\164\151\x6f\156\40\151\163\x20\165\x73\x65\144\54\x20\142\x75\164\40\x73\x68\157\x75\x6c\144\x20\156\157\164\x20\142\145\54\x20\141\x6e\x64\40\x69\164\x20\x64\x65\160\x65\156\144\x73\40\x6f\x6e\x20\157\164\150\145\162\40\x74\x65\x73\x74\x73" => ["\74\77\x70\150\x70\12\143\x6c\x61\163\x73\40\124\145\x73\164\40\x65\170\164\x65\x6e\x64\x73\40\x5c\120\x68\x70\x55\x6e\x69\x74\x5c\x46\162\x61\155\x65\127\x6f\x72\153\x5c\x54\145\163\164\103\141\x73\145\12\x7b\xa\x20\x20\40\40\57\x2a\52\12\x20\40\40\x20\40\x2a\xa\x20\x20\x20\x20\40\52\x2f\xa\x20\x20\x20\x20\x70\x75\x62\154\x69\x63\x20\146\165\x6e\143\x74\151\157\x6e\40\x74\145\x73\164\x41\x61\x61\40\50\x29\x20\x7b\x7d\xa\12\40\x20\40\x20\160\x75\x62\154\151\143\40\x66\x75\156\x63\x74\x69\157\x6e\x20\x68\145\154\x70\x65\162\106\165\x6e\x63\164\x69\x6f\x6e\x28\51\40\x7b\x7d\xa\xa\40\40\x20\x20\57\52\52\12\40\40\40\x20\x20\52\x20\x40\x64\x65\x70\x65\x6e\144\x73\40\164\x65\163\x74\101\141\x61\12\x20\40\x20\40\x20\x2a\xa\40\x20\40\40\x20\52\xa\x20\x20\40\x20\x20\x2a\x2f\12\x20\40\40\40\160\165\142\154\151\143\40\146\165\156\143\164\151\157\x6e\40\x74\145\x73\164\102\142\142\40\x28\x29\x20\x7b\x7d\12\x7d", "\x3c\x3f\160\150\x70\12\143\154\x61\163\163\x20\124\145\163\x74\x20\145\170\x74\145\x6e\x64\x73\40\x5c\120\x68\x70\x55\x6e\151\164\134\x46\162\x61\x6d\145\127\157\162\153\134\124\x65\163\164\103\141\x73\x65\12\x7b\12\40\x20\x20\x20\x2f\52\x2a\12\x20\x20\x20\x20\40\x2a\40\x40\164\x65\x73\164\12\x20\40\40\x20\40\x2a\x2f\xa\x20\x20\x20\40\x70\165\142\x6c\x69\143\x20\x66\165\156\143\x74\151\x6f\x6e\40\141\141\141\40\50\51\x20\x7b\x7d\xa\xa\x20\40\40\40\x70\x75\x62\154\151\x63\x20\x66\x75\x6e\143\164\151\157\156\x20\150\145\x6c\160\x65\162\x46\x75\x6e\x63\x74\x69\157\x6e\x28\x29\40\x7b\175\12\xa\40\40\40\40\x2f\x2a\x2a\xa\40\x20\40\x20\40\52\x20\x40\144\x65\x70\x65\x6e\144\163\x20\141\x61\141\12\x20\x20\40\40\x20\x2a\12\40\x20\40\x20\40\52\x20\x40\164\145\x73\164\12\40\x20\40\40\40\x2a\x2f\xa\40\40\x20\x20\x70\x75\142\154\x69\143\x20\x66\165\x6e\143\x74\151\157\x6e\x20\142\x62\x62\40\50\x29\x20\x7b\175\xa\x7d", ["\163\x74\x79\x6c\x65" => "\x70\x72\x65\146\151\x78"]]); goto vDfCE; PZNlV: (yield "\101\156\156\157\x74\141\x74\151\x6f\x6e\x20\x69\x73\x20\x61\x64\x64\x65\144\40\167\x68\x65\156\40\151\164\x20\151\163\x20\x61\x6c\x72\145\x61\x64\x79\x20\x70\x72\x65\x73\145\x6e\x74\x20\151\156\x20\x61\40\167\145\x69\162\x64\40\x70\154\x61\143\145" => ["\74\77\x70\150\x70\xa\143\x6c\141\x73\163\x20\x54\x65\x73\164\40\x65\x78\164\x65\x6e\x64\163\x20\x5c\120\x68\160\x55\x6e\151\x74\134\106\162\x61\155\x65\127\157\162\153\134\x54\x65\x73\x74\x43\x61\163\145\xa\x7b\12\40\x20\x20\40\57\x2a\x2a\xa\40\x20\40\x20\40\x2a\x20\x49\40\x61\x6d\40\141\x20\143\157\155\x6d\145\156\x74\x20\x40\x74\145\163\x74\40\141\142\157\x75\164\x20\x74\x68\x65\40\x66\165\156\143\164\151\x6f\156\12\40\x20\40\40\40\52\xa\x20\40\x20\x20\40\52\x20\100\164\x65\163\164\12\x20\40\x20\40\x20\52\57\12\x20\40\x20\x20\x70\165\x62\154\x69\143\x20\146\x75\156\x63\x74\151\157\x6e\40\151\110\141\164\145\115\171\124\x65\x73\x74\123\165\151\164\145\x28\x29\40\173\175\xa\175", "\x3c\77\160\x68\x70\12\143\154\141\163\x73\40\x54\x65\163\164\x20\145\x78\164\145\156\144\163\40\x5c\x50\x68\x70\x55\x6e\151\164\x5c\x46\x72\x61\x6d\145\127\157\162\x6b\134\x54\x65\163\164\x43\x61\x73\x65\xa\x7b\xa\40\x20\x20\x20\57\x2a\52\12\40\40\40\x20\40\52\40\x49\40\141\x6d\40\x61\40\143\157\x6d\155\145\156\x74\40\100\164\x65\x73\x74\40\x61\142\x6f\x75\164\40\164\150\145\x20\x66\165\156\143\x74\x69\157\x6e\12\x20\40\40\40\40\x2a\57\12\x20\x20\x20\40\160\x75\142\154\151\x63\x20\146\165\156\x63\164\151\157\x6e\40\x69\110\141\x74\145\115\x79\x54\x65\163\x74\123\x75\151\x74\x65\50\51\40\173\x7d\12\175", ["\163\x74\171\x6c\145" => "\x61\x6e\156\157\164\x61\164\x69\x6f\x6e"]]); goto R3yzf; W98dZ: (yield "\x41\x6e\x6e\157\x74\141\x74\x69\157\x6e\x20\x64\157\145\163\40\156\157\164\40\x67\145\164\x20\141\144\144\x65\144\40\151\x66\x20\164\x68\145\x72\x65\x20\141\162\x65\x20\x6e\157\40\x74\145\163\164\x73\40\x69\x6e\40\x74\x68\x65\x20\x74\x65\163\164\40\x63\x6c\141\x73\163" => ["\x3c\77\160\150\160\12\143\x6c\141\163\163\x20\124\145\x73\164\40\145\x78\164\145\x6e\144\x73\40\134\120\x68\160\125\x6e\151\x74\134\x46\162\141\155\x65\127\x6f\x72\x6b\x5c\x54\x65\163\x74\103\x61\x73\145\12\x7b\xa\40\40\40\x20\x70\165\x62\x6c\151\x63\x20\x66\165\156\x63\x74\151\x6f\x6e\40\x73\x65\x74\125\160\x28\51\x20\173\x7d\12\xa\x20\x20\x20\x20\160\x75\x62\x6c\x69\143\40\146\165\156\x63\x74\x69\157\x6e\40\x69\x74\x48\x65\x6c\160\163\x53\157\155\145\x54\145\x73\x74\x73\50\x29\x20\x7b\175\12\12\40\40\40\40\160\165\x62\154\151\143\x20\146\x75\x6e\x63\x74\x69\x6f\x6e\x20\163\x6f\x6d\145\x4d\x6f\x72\145\103\x68\141\x6e\147\x65\x73\50\x29\x20\x7b\175\xa\x7d", null, ["\x73\x74\171\x6c\x65" => "\x61\x6e\156\x6f\x74\141\164\x69\157\156"]]); goto mAuMv; Rc83a: (yield "\103\x6c\141\163\163\x20\150\x61\163\x20\x62\x6f\164\150\40\x63\141\x6d\x65\x6c\x20\x61\156\144\40\163\156\x61\x6b\x65\40\x63\x61\x73\x65\x2c\40\141\x6e\156\x6f\x74\x61\x74\x65\x64\x20\146\x75\x6e\143\164\x69\x6f\x6e\163\x20\x61\x6e\144\40\156\157\x74\54\40\141\156\144\40\167\x61\x6e\164\163\40\164\157\40\x61\144\x64\40\141\x6e\156\157\x74\x61\164\x69\157\x6e\163" => ["\74\77\x70\x68\x70\xa\143\154\141\x73\x73\x20\124\x65\163\164\40\145\x78\164\145\156\x64\163\x20\x5c\120\150\160\125\156\x69\x74\134\106\x72\141\155\145\127\157\162\153\134\124\x65\x73\164\x43\141\x73\145\12\x7b\xa\x20\40\x20\x20\57\52\52\12\40\40\x20\40\40\x2a\40\100\164\145\x73\164\12\x20\40\x20\40\40\52\57\xa\40\x20\x20\40\160\165\x62\154\x69\x63\40\146\x75\156\x63\164\151\x6f\156\x20\163\x6e\141\153\x65\x5f\143\x61\x73\x65\144\x20\x28\51\x20\x7b\175\12\12\40\x20\x20\x20\x2f\x2a\52\12\40\40\x20\40\40\x2a\40\x40\164\x65\163\164\xa\x20\x20\x20\40\40\52\57\12\x20\x20\x20\x20\160\x75\142\x6c\151\143\40\146\x75\x6e\x63\164\x69\x6f\x6e\40\x63\141\155\x65\x6c\x43\141\x73\x65\x64\x20\50\51\x20\173\175\12\12\x20\40\x20\x20\57\x2a\x2a\xa\x20\x20\x20\x20\40\52\x20\x44\145\x73\x63\x72\151\x70\x74\x69\x6f\x6e\x2e\12\x20\40\40\40\40\52\12\x20\x20\40\40\40\x2a\x20\100\x64\x65\160\145\x6e\144\163\x20\143\x61\155\145\154\x43\x61\x73\145\144\xa\40\x20\40\40\x20\x2a\12\40\x20\40\x20\40\x2a\40\x40\x74\145\163\x74\12\40\x20\40\x20\40\52\57\12\40\x20\x20\x20\160\165\x62\154\151\143\x20\146\x75\x6e\x63\x74\151\x6f\x6e\x20\144\x65\x70\145\156\144\163\137\x6f\x6e\137\163\x6f\155\x65\157\156\x65\40\50\x29\40\173\175\xa\12\40\x20\x20\x20\57\57\x49\164\x20\x65\166\x65\156\40\150\141\163\40\x61\x20\143\157\x6d\155\145\x6e\x74\12\x20\40\40\40\160\x75\x62\154\151\143\x20\x66\165\x6e\x63\164\151\x6f\x6e\x20\x61\137\150\x65\154\x70\145\162\137\146\x75\x6e\143\x74\x69\x6f\156\40\x28\x29\x20\x7b\x7d\xa\12\40\x20\40\x20\x2f\x2a\x2a\12\x20\x20\x20\40\40\x2a\40\100\x64\x65\x70\x65\156\144\x73\40\x64\x65\x70\x65\156\x64\163\137\x6f\x6e\x5f\163\x6f\155\145\x6f\x6e\145\xa\x20\x20\x20\x20\x20\x2a\12\x20\x20\40\x20\x20\x2a\x20\x40\x74\145\x73\164\12\x20\40\40\40\40\52\x2f\xa\x20\40\x20\40\x70\x75\142\x6c\151\143\40\146\165\x6e\143\x74\151\x6f\156\x20\155\x6f\162\145\x44\145\160\145\156\x64\163\50\51\40\x7b\x7d\xa\12\x20\x20\40\x20\x2f\52\x2a\12\40\x20\40\x20\x20\52\40\100\x64\x65\x70\145\x6e\x64\x73\40\144\x65\160\145\x6e\x64\x73\137\x6f\x6e\137\x73\x6f\x6d\x65\x6f\x6e\x65\12\x20\x20\x20\40\40\52\xa\40\x20\x20\40\40\x2a\40\x40\x74\145\163\164\12\40\40\40\40\x20\52\x2f\xa\x20\x20\40\40\160\165\142\x6c\x69\x63\x20\146\165\156\x63\x74\x69\x6f\x6e\40\141\x6c\162\x65\x61\144\x79\x41\x6e\x6e\x6f\164\x61\x74\145\144\50\x29\40\x7b\175\12\x7d", "\74\x3f\160\150\160\xa\143\154\141\163\163\40\x54\x65\x73\164\40\145\170\x74\145\x6e\144\163\x20\134\120\x68\160\125\156\x69\164\x5c\x46\162\141\x6d\145\127\x6f\162\x6b\134\124\x65\163\164\x43\x61\163\145\12\x7b\xa\40\40\x20\x20\x70\x75\142\x6c\x69\x63\x20\x66\x75\156\143\164\x69\x6f\x6e\40\164\x65\x73\x74\137\x73\156\141\x6b\x65\x5f\x63\x61\163\x65\144\40\x28\x29\x20\x7b\x7d\12\xa\x20\40\40\40\160\165\x62\154\x69\x63\40\x66\165\156\143\x74\151\x6f\156\40\x74\145\x73\x74\103\x61\155\x65\x6c\x43\x61\163\145\x64\40\50\51\40\x7b\175\xa\12\x20\40\x20\x20\x2f\x2a\x2a\12\40\x20\x20\40\40\52\40\104\x65\x73\x63\162\x69\x70\164\151\157\156\56\xa\40\x20\40\40\x20\x2a\12\40\x20\40\x20\x20\x2a\40\100\144\145\160\145\156\x64\x73\x20\164\x65\163\x74\x43\141\x6d\145\x6c\103\x61\163\x65\144\12\40\x20\x20\40\40\x2a\57\xa\x20\x20\40\x20\x70\165\142\154\151\x63\x20\146\165\x6e\x63\164\151\x6f\156\x20\164\x65\163\x74\x5f\x64\145\160\x65\x6e\x64\163\x5f\x6f\x6e\137\163\157\x6d\x65\x6f\156\145\40\50\x29\40\173\175\12\xa\40\40\40\x20\x2f\x2f\111\x74\40\145\x76\x65\156\40\x68\141\163\x20\x61\40\x63\x6f\155\155\x65\x6e\164\12\x20\x20\x20\x20\x70\x75\x62\x6c\x69\x63\40\146\x75\x6e\143\x74\151\157\156\40\141\137\150\145\x6c\160\145\x72\x5f\x66\165\156\x63\x74\151\x6f\156\x20\50\51\x20\x7b\175\xa\xa\40\x20\x20\40\57\x2a\x2a\xa\x20\x20\40\40\x20\x2a\40\x40\144\x65\x70\145\156\x64\163\40\164\145\163\x74\137\144\x65\x70\x65\156\x64\163\137\157\156\x5f\163\157\x6d\145\157\156\x65\xa\x20\40\x20\40\40\x2a\57\12\40\40\x20\40\160\x75\142\x6c\x69\x63\x20\146\165\x6e\x63\x74\x69\157\156\x20\x74\145\x73\164\x4d\157\162\145\104\145\160\145\x6e\144\163\50\51\x20\173\175\xa\xa\x20\40\x20\40\57\52\x2a\12\x20\40\x20\x20\40\52\x20\x40\144\145\160\145\156\x64\163\x20\x74\x65\163\x74\x5f\144\x65\x70\x65\x6e\144\x73\x5f\x6f\156\x5f\163\x6f\x6d\x65\157\x6e\145\12\40\40\x20\x20\x20\52\12\40\x20\40\x20\x20\x2a\40\x40\x74\145\x73\164\12\40\40\40\40\x20\x2a\x2f\12\40\x20\x20\x20\160\x75\x62\154\151\x63\x20\x66\x75\156\143\x74\x69\157\156\x20\141\x6c\162\x65\x61\x64\171\x41\x6e\x6e\x6f\x74\141\164\145\x64\x28\x29\x20\173\175\xa\x7d", ["\x73\164\x79\154\145" => "\141\x6e\x6e\x6f\x74\141\164\x69\157\156"]]); goto DytIe; ExXv4: (yield "\x41\156\x6e\157\x74\x61\x74\151\x6f\156\40\x67\145\x74\163\40\x61\144\144\x65\x64\54\40\151\164\40\150\141\x73\x20\141\x6e\40\100\x64\x65\160\x65\x6e\144\163\54\40\x61\156\144\40\x77\x65\40\165\163\x65\40\x73\x6e\x61\153\145\40\x63\141\163\x65" => ["\74\x3f\160\150\x70\12\x63\154\x61\163\x73\x20\x54\x65\x73\164\40\x65\170\164\145\156\x64\163\40\134\120\x68\160\x55\x6e\151\x74\134\106\162\x61\155\145\127\x6f\162\153\x5c\x54\145\163\164\x43\x61\163\145\xa\173\12\x20\x20\x20\x20\57\52\x2a\xa\40\x20\x20\x20\40\x2a\40\100\164\x65\x73\164\xa\40\40\x20\x20\40\x2a\57\xa\40\x20\40\x20\160\x75\142\x6c\151\x63\40\146\x75\x6e\143\x74\x69\x6f\x6e\40\x77\157\162\x6b\x73\x5f\146\x69\x6e\x65\40\x28\51\40\173\175\12\xa\x20\40\40\x20\x2f\x2a\52\12\40\x20\40\x20\x20\52\x20\x40\x64\x65\160\145\x6e\x64\x73\x20\x77\157\162\153\x73\137\146\x69\x6e\x65\12\x20\x20\40\x20\40\x2a\12\x20\40\x20\40\x20\52\40\100\164\x65\163\164\xa\40\x20\40\x20\40\x2a\x2f\12\40\40\x20\x20\160\165\x62\x6c\x69\143\40\146\165\x6e\143\164\151\x6f\x6e\40\x77\x6f\x72\153\x73\137\x66\x69\156\145\x5f\164\x6f\157\50\51\40\x7b\x7d\12\175", "\x3c\77\x70\150\x70\12\143\154\x61\x73\x73\x20\124\x65\x73\164\40\145\170\x74\x65\x6e\x64\163\40\x5c\x50\x68\160\x55\156\151\164\x5c\x46\x72\x61\155\145\127\157\162\153\134\x54\x65\x73\164\x43\141\x73\145\12\173\12\40\40\x20\40\x70\165\142\154\151\x63\40\x66\165\156\143\x74\x69\157\x6e\40\x74\x65\163\x74\137\x77\x6f\162\x6b\163\x5f\x66\151\x6e\145\x20\50\x29\x20\x7b\175\12\xa\40\40\40\x20\57\52\52\12\40\40\x20\x20\x20\x2a\40\100\x64\145\x70\145\x6e\144\x73\40\x74\x65\163\x74\137\x77\x6f\162\x6b\x73\137\x66\x69\x6e\x65\12\40\40\x20\x20\x20\x2a\x2f\12\x20\40\x20\x20\x70\165\x62\x6c\x69\x63\40\x66\165\156\143\164\x69\x6f\x6e\40\x74\x65\x73\164\137\167\157\x72\153\163\137\x66\151\156\145\137\164\x6f\x6f\x28\51\x20\173\175\xa\x7d", ["\163\x74\x79\154\x65" => "\x61\x6e\x6e\x6f\164\x61\x74\151\x6f\156"]]); goto Rc83a; p5vZj: } public function k10UB(string $rhChg, ?string $i3eJk = null, array $h9tuX = []) : void { goto Rvjmb; Rvjmb: $this->B6bJ0->XLewp(new XnVO1("\11", "\15\xa")); goto tiIJ7; mInBA: $this->MvxEx($rhChg, $i3eJk); goto XpaKD; tiIJ7: $this->B6bJ0->DSEup($h9tuX); goto mInBA; XpaKD: } public static function ZgVXy() : iterable { (yield ["\x3c\77\160\150\160\12\12\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\143\x6c\141\163\x73\40\x46\157\x6f\x54\145\163\164\40\x65\170\164\x65\x6e\144\x73\40\134\x50\x48\120\x55\156\151\164\137\x46\162\141\x6d\x65\x77\157\162\x6b\x5f\x54\x65\163\164\103\141\163\145\x20\173\12\xa\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x2f\52\x2a\xa\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\40\40\x20\40\52\xa\x20\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x2a\57\12\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\160\x75\142\154\151\143\40\146\165\156\143\x74\151\157\x6e\40\x74\x65\163\x74\x46\x6f\x6f\x54\x65\x73\164\50\x29\40\x7b\x7d\xa\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\175\xa\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40", "\74\77\x70\150\x70\xa\xa\40\40\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\143\154\141\163\x73\40\106\157\157\x54\145\x73\164\40\x65\170\x74\x65\156\144\x73\40\134\120\110\120\x55\x6e\151\164\137\106\x72\141\x6d\x65\x77\157\x72\153\137\124\145\163\x74\103\x61\163\145\x20\173\xa\xa\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x2f\x2a\x2a\12\40\40\40\40\x20\40\x20\x20\40\40\40\40\x20\40\40\40\40\x20\x20\40\x20\52\40\100\x74\x65\x73\x74\xa\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\52\57\xa\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\160\x75\142\154\x69\143\40\146\x75\x6e\143\x74\x69\157\156\x20\x66\157\x6f\x54\145\x73\164\50\x29\40\x7b\x7d\xa\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x7d\xa\40\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20"]); } public function c5eb2(string $rhChg, string $i3eJk, array $h9tuX) : void { $this->B6bJ0->dSeuP($h9tuX); $this->mVXEX($rhChg, $i3eJk); } public static function UTIpd() : iterable { (yield ["\x3c\x3f\x70\150\x70\xa\x63\x6c\x61\x73\163\40\x54\x65\x73\x74\x20\x65\170\x74\x65\156\144\x73\x20\x5c\120\150\x70\x55\x6e\151\164\x5c\106\x72\x61\155\x65\x57\x6f\162\153\x5c\124\x65\163\164\103\x61\163\145\xa\173\12\x20\40\40\x20\57\52\x2a\12\40\x20\x20\40\x20\x2a\40\x40\x74\145\x73\164\12\40\x20\x20\x20\x20\x2a\x2f\12\40\x20\40\40\x23\x5b\117\156\x65\124\145\163\164\x5d\12\40\x20\x20\x20\160\x75\142\x6c\151\143\x20\146\x75\x6e\x63\x74\151\157\156\x20\151\164\x57\157\x72\x6b\x73\50\51\40\173\x7d\xa\12\x20\40\40\40\57\52\x2a\xa\40\40\40\40\x20\x2a\x20\x40\164\x65\x73\164\xa\x20\x20\x20\x20\40\52\x2f\xa\x20\x20\40\x20\x23\x5b\124\167\x6f\124\x65\x73\x74\135\xa\x20\x20\40\x20\160\x75\142\x6c\x69\x63\40\x66\165\156\x63\x74\151\x6f\x6e\x20\151\164\x44\x6f\145\x73\x53\157\x6d\145\x74\x68\151\156\x67\50\x29\40\x7b\175\xa\x7d", "\x3c\77\160\x68\160\12\143\154\x61\163\x73\x20\x54\145\163\164\40\145\170\164\x65\x6e\144\x73\40\x5c\120\x68\x70\x55\x6e\x69\x74\x5c\106\x72\x61\155\145\127\x6f\162\153\x5c\124\x65\x73\164\x43\x61\x73\x65\12\173\12\40\40\x20\x20\43\133\117\x6e\145\124\x65\x73\x74\135\12\40\x20\40\40\x70\165\142\x6c\151\x63\x20\x66\165\156\x63\x74\x69\x6f\156\40\164\x65\x73\x74\x49\x74\127\x6f\x72\153\x73\x28\x29\40\173\175\xa\xa\40\x20\40\40\43\x5b\124\x77\157\124\x65\x73\164\x5d\12\40\40\40\x20\160\165\142\x6c\x69\143\40\x66\165\156\x63\164\x69\157\x6e\40\x74\145\163\x74\x49\164\104\157\x65\x73\x53\157\155\145\164\x68\x69\156\147\x28\51\x20\x7b\175\xa\175", ["\163\164\171\154\145" => "\141\156\x6e\x6f\164\141\x74\151\157\x6e"]]); (yield ["\x3c\x3f\160\x68\160\xa\x63\154\141\163\163\x20\124\145\x73\164\40\x65\x78\x74\x65\156\x64\x73\40\x5c\120\150\160\125\156\151\x74\134\x46\162\141\155\x65\127\157\162\x6b\134\124\145\x73\164\103\141\x73\x65\12\x7b\12\40\40\x20\x20\x2f\x2a\52\xa\x20\40\40\x20\40\52\x20\100\164\x65\163\x74\12\x20\40\40\x20\40\x2a\57\12\x20\x20\x20\x20\43\x5b\x4f\156\145\x54\x65\163\164\135\12\x20\x20\40\40\x23\133\x49\x6e\x74\x65\x72\x6e\x61\x6c\x5d\xa\x20\x20\x20\x20\160\165\142\154\151\143\x20\146\x75\156\x63\164\x69\x6f\x6e\40\151\x74\127\x6f\162\153\163\50\51\40\x7b\175\xa\12\x20\40\40\40\57\x2a\x2a\12\x20\40\x20\40\x20\x2a\40\x40\164\x65\x73\x74\12\40\x20\x20\x20\x20\52\57\12\40\x20\x20\x20\43\x5b\124\167\157\x54\x65\163\164\x5d\xa\x20\40\x20\40\43\x5b\111\156\164\145\162\156\141\x6c\135\xa\40\40\x20\40\160\x75\x62\x6c\x69\143\x20\146\165\156\143\164\x69\157\156\x20\x69\x74\104\157\145\163\123\157\155\145\164\x68\151\156\x67\50\51\x20\x7b\x7d\12\x7d", "\x3c\x3f\x70\x68\160\xa\x63\154\x61\163\x73\40\124\x65\163\x74\x20\x65\x78\x74\145\156\x64\163\x20\134\x50\x68\x70\125\156\x69\164\134\x46\x72\141\x6d\x65\127\157\x72\x6b\x5c\124\x65\163\164\x43\x61\x73\x65\12\173\12\40\40\x20\40\43\x5b\117\156\x65\124\x65\x73\164\x5d\12\40\x20\x20\40\x23\x5b\111\156\164\145\162\156\x61\x6c\x5d\xa\40\40\x20\40\160\165\142\154\x69\x63\40\x66\x75\x6e\x63\164\151\157\x6e\40\164\x65\x73\x74\x49\164\x57\x6f\x72\x6b\x73\x28\x29\40\173\x7d\xa\12\x20\40\x20\x20\x23\133\x54\167\x6f\x54\145\163\164\135\xa\x20\x20\x20\x20\43\133\x49\x6e\164\145\x72\156\x61\x6c\135\xa\x20\x20\x20\40\160\x75\142\x6c\151\143\x20\146\x75\x6e\143\164\151\x6f\156\x20\x74\145\x73\x74\111\x74\104\x6f\x65\163\123\x6f\155\x65\164\150\151\x6e\x67\x28\x29\x20\x7b\175\xa\x7d", ["\x73\x74\x79\154\145" => "\141\156\156\x6f\x74\x61\x74\x69\157\x6e"]]); } }

Function Calls

None

Variables

None

Stats

MD5 d27e8b2ab2491a74b68c3962542169ae
Eval Count 0
Decode Time 115 ms