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

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace Phalcon\Tests\Integration\Mvc\Model; use Codeception\Example; use Integra..

Decoded Output download

<?php
 namespace Phalcon\Tests\Integration\Mvc\Model; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Model\Query; use Phalcon\Tests\Fixtures\Traits\DiTrait; use Phalcon\Tests\Models\Deles; use Phalcon\Tests\Models\Parts; use Phalcon\Tests\Models\People; use Phalcon\Tests\Models\Personers; use Phalcon\Tests\Models\Products; use Phalcon\Tests\Models\Robots; use Phalcon\Tests\Models\RobotsParts; use Phalcon\Tests\Models\Robotters; use Phalcon\Tests\Models\RobottersDeles; use Phalcon\Tests\Models\Some\Products as SomeProducts; use Phalcon\Tests\Models\Some\Robotters as SomeRobotters; class QueryOldCest { use DiTrait; public function _before(IntegrationTester $I) { $this->setNewFactoryDefault(); $this->setDiSqlite(); } public function testSelectParsing(IntegrationTester $I, Example $example) { $phql = $example["phql"]; $expected = $example["expected"]; $query = new Query($phql); $query->setDI($this->container); $I->assertEquals($expected, $query->parse()); } public function shouldInsertParsing(IntegrationTester $I, Example $example) { $params = $example[0]; $expected = $example[1]; $query = new Query($params["query"]); $query->setDI($this->container); $I->assertEquals($expected, $query->parse()); } public function shouldUpdateParsing(IntegrationTester $I, Example $example) { $params = $example[0]; $expected = $example[1]; $query = new Query($params["query"]); $query->setDI($this->container); $I->assertEquals($expected, $query->parse()); } public function shouldDeleteParsing(IntegrationTester $I, Example $example) { $params = $example[0]; $expected = $example[1]; $query = new Query($params["query"]); $query->setDI($this->container); $I->assertEquals($expected, $query->parse()); } private function getExamples() : array { return array(array("phql" => "SELECT * FROM " . Robots::class, "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))))), array("phql" => "SELECT * FROM " . SomeProducts::class, "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array(lcfirst(SomeProducts::class) => array("type" => "object", "model" => SomeProducts::class, "column" => "le_products", "balias" => lcfirst(SomeProducts::class))))), array("phql" => "SELECT " . SomeProducts::class . ".* FROM " . SomeProducts::class, "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array(lcfirst(SomeProducts::class) => array("type" => "object", "model" => SomeProducts::class, "column" => "le_products", "balias" => lcfirst(SomeProducts::class))))), array("phql" => "SELECT p.* FROM " . SomeProducts::class . " p", "expected" => array("models" => array(SomeProducts::class), "tables" => array(array("le_products", null, "p")), "columns" => array("p" => array("type" => "object", "model" => SomeProducts::class, "column" => "p", "balias" => "p")))), array("phql" => "SELECT " . Robots::class . ".* FROM " . Robots::class, "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))))), array("phql" => "SELECT r.* FROM " . Robots::class . " r", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => "r")))), array("phql" => "SELECT r.* FROM " . Robots::class . " AS r", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => "r")))), array("phql" => "SELECT id, name FROM " . Robots::class, "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array("id" => array("type" => "scalar", "balias" => "id", "sqlAlias" => "id", "column" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id")), "name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT r.id, r.name FROM " . Robots::class . " AS r", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array("r_id" => array("type" => "scalar", "balias" => "id", "sqlAlias" => "id", "column" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id")), "r_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT r.id AS le_id, r.name AS le_name FROM " . Robots::class . " AS r", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array("le_id" => array("type" => "scalar", "balias" => "le_id", "sqlAlias" => "le_id", "column" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id")), "le_name" => array("type" => "scalar", "balias" => "le_name", "sqlAlias" => "le_name", "column" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT " . Robots::class . ".id AS le_id, " . Robots::class . ".name AS le_name FROM " . Robots::class, "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array("le_id" => array("type" => "scalar", "balias" => "le_id", "sqlAlias" => "le_id", "column" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id")), "le_name" => array("type" => "scalar", "balias" => "le_name", "sqlAlias" => "le_name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT '' empty_str, 10.5 double_number, 1000 AS long_number FROM " . Robots::class, "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array("empty_str" => array("type" => "scalar", "column" => array("type" => "literal", "value" => "''"), "balias" => "empty_str", "sqlAlias" => "empty_str"), "double_number" => array("type" => "scalar", "column" => array("type" => "literal", "value" => "10.5"), "balias" => "double_number", "sqlAlias" => "double_number"), "long_number" => array("type" => "scalar", "column" => array("type" => "literal", "value" => "1000"), "balias" => "long_number", "sqlAlias" => "long_number")))), array("phql" => "SELECT " . People::class . ".cedula FROM " . People::class, "expected" => array("models" => array(People::class), "tables" => array("personas"), "columns" => array(People::class . "_cedula" => array("type" => "scalar", "balias" => "cedula", "sqlAlias" => "cedula", "column" => array("type" => "qualified", "domain" => "personas", "name" => "cedula", "balias" => "cedula"))))), array("phql" => "select " . strtolower(People::class) . ".cedula from " . strtolower(People::class), "expected" => array("models" => array(strtolower(People::class)), "tables" => array("personas"), "columns" => array(strtolower(People::class) . "_cedula" => array("type" => "scalar", "balias" => "cedula", "sqlAlias" => "cedula", "column" => array("type" => "qualified", "domain" => "personas", "name" => "cedula", "balias" => "cedula"))))), array("phql" => "SELECT p.cedula AS cedula FROM " . People::class . " p", "expected" => array("models" => array(People::class), "tables" => array(array("personas", null, "p")), "columns" => array("cedula" => array("type" => "scalar", "balias" => "cedula", "sqlAlias" => "cedula", "column" => array("type" => "qualified", "domain" => "p", "name" => "cedula", "balias" => "cedula"))))), array("phql" => "SELECT CONCAT(cedula,'-',nombres) AS nombre FROM " . People::class, "expected" => array("models" => array(People::class), "tables" => array("personas"), "columns" => array("nombre" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "CONCAT", "arguments" => array(array("type" => "qualified", "domain" => "personas", "name" => "cedula", "balias" => "cedula"), array("type" => "literal", "value" => "'-'"), array("type" => "qualified", "domain" => "personas", "name" => "nombres", "balias" => "nombres"))), "balias" => "nombre", "sqlAlias" => "nombre")))), array("phql" => "SELECT CONCAT(" . People::class . ".cedula,'-'," . People::class . ".nombres) AS nombre FROM " . People::class, "expected" => array("models" => array(People::class), "tables" => array("personas"), "columns" => array("nombre" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "CONCAT", "arguments" => array(array("type" => "qualified", "domain" => "personas", "name" => "cedula", "balias" => "cedula"), array("type" => "literal", "value" => "'-'"), array("type" => "qualified", "domain" => "personas", "name" => "nombres", "balias" => "nombres"))), "balias" => "nombre", "sqlAlias" => "nombre")))), array("phql" => "SELECT * FROM " . Robots::class . " JOIN " . RobotsParts::class, "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class))), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"))))))), array("phql" => "SELECT * FROM " . Robots::class . " CROSS JOIN " . RobotsParts::class, "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class))), "joins" => array(array("type" => "CROSS", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"))))))), array("phql" => "SELECT * FROM " . Robots::class . " LEFT JOIN " . RobotsParts::class . " RIGHT JOIN " . Parts::class, "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class)), lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(Parts::class) => array("type" => "object", "model" => Parts::class, "column" => "parts", "balias" => lcfirst(Parts::class))), "joins" => array(array("type" => "LEFT", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id")))), array("type" => "RIGHT", "source" => array("parts", null), "conditions" => array())))), array("phql" => "SELECT * FROM " . RobotsParts::class . " LEFT OUTER JOIN " . Robots::class . " RIGHT OUTER JOIN " . Parts::class, "expected" => array("models" => array(RobotsParts::class), "tables" => array("robots_parts"), "columns" => array(lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class)), lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(Parts::class) => array("type" => "object", "model" => Parts::class, "column" => "parts", "balias" => lcfirst(Parts::class))), "joins" => array(array("type" => "LEFT", "source" => array("robots", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id")))), array("type" => "RIGHT", "source" => array("parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "parts_id", "balias" => "parts_id"), "right" => array("type" => "qualified", "domain" => "parts", "name" => "id", "balias" => "id"))))))), array("phql" => "SELECT * FROM " . Robots::class . " JOIN " . RobotsParts::class . " ON " . Robots::class . ".id = " . RobotsParts::class . ".robots_id", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class))), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"))))))), array("phql" => "SELECT * FROM " . Robots::class . " LEFT OUTER JOIN " . RobotsParts::class . " ON " . Robots::class . ".id = " . RobotsParts::class . ".robots_id AND " . RobotsParts::class . ".robots_id = " . Robots::class . ".id WHERE " . Robots::class . ".id IS NULL", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class))), "joins" => array(array("type" => "LEFT", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"))), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"))))), "where" => array("type" => "unary-op", "op" => " IS NULL", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id")))), array("phql" => "SELECT * FROM " . Robots::class . " RIGHT OUTER JOIN " . RobotsParts::class . " ON " . Robots::class . ".id = " . RobotsParts::class . ".robots_id AND " . RobotsParts::class . ".robots_id = " . Robots::class . ".id WHERE " . RobotsParts::class . ".robots_id IS NOT NULL", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class))), "joins" => array(array("type" => "RIGHT", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"))), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"))))), "where" => array("type" => "unary-op", "op" => " IS NOT NULL", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id")))), array("phql" => "SELECT * FROM " . Robots::class . " FULL OUTER JOIN " . RobotsParts::class, "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class))), "joins" => array(array("type" => "FULL OUTER", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"))))))), array("phql" => "SELECT * FROM " . RobotsParts::class . " JOIN " . Robots::class, "expected" => array("models" => array(RobotsParts::class), "tables" => array("robots_parts"), "columns" => array(lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class)), lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "joins" => array(array("type" => "INNER", "source" => array("robots", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"))))))), array("phql" => "SELECT r.*, p.* FROM " . Robots::class . " AS r JOIN " . RobotsParts::class . " AS p", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => "r"), "p" => array("type" => "object", "model" => RobotsParts::class, "column" => "p", "balias" => "p")), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null, "p"), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "p", "name" => "robots_id", "balias" => "robots_id"))))))), array("phql" => "SELECT * FROM " . Robots::class . " AS r JOIN " . RobotsParts::class . " AS p", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "p", "balias" => lcfirst(RobotsParts::class))), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null, "p"), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "p", "name" => "robots_id", "balias" => "robots_id"))))))), array("phql" => "SELECT r.* FROM " . Robots::class . " r INNER JOIN " . RobotsParts::class, "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => "r")), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id"))))))), array("phql" => "SELECT ( " . People::class . ".cupo + 100) / (" . Products::class . ".price * 0.15) FROM " . People::class . " JOIN " . Products::class, "expected" => array("models" => array(People::class), "tables" => array("personas"), "columns" => array("_0" => array("type" => "scalar", "column" => array("type" => "binary-op", "op" => "/", "left" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "personas", "name" => "cupo", "balias" => "cupo"), "right" => array("type" => "literal", "value" => "100"))), "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "*", "left" => array("type" => "qualified", "domain" => "products", "name" => "price", "balias" => "price"), "right" => array("type" => "literal", "value" => "0.15")))))), "joins" => array(array("type" => "INNER", "source" => array("products", null), "conditions" => array())))), array("phql" => "SELECT ( " . People::class . ".cupo + 100) / (" . SomeProducts::class . ".price * 0.15) AS price FROM " . People::class . " JOIN " . SomeProducts::class, "expected" => array("models" => array(People::class), "tables" => array("personas"), "columns" => array("price" => array("type" => "scalar", "column" => array("type" => "binary-op", "op" => "/", "left" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "personas", "name" => "cupo", "balias" => "cupo"), "right" => array("type" => "literal", "value" => "100"))), "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "*", "left" => array("type" => "qualified", "domain" => "le_products", "name" => "price", "balias" => "price"), "right" => array("type" => "literal", "value" => "0.15")))), "balias" => "price", "sqlAlias" => "price")), "joins" => array(array("type" => "INNER", "source" => array("le_products", null), "conditions" => array())))), array("phql" => "SELECT (p.cupo + 100) / (s.price * 0.15) AS price FROM " . People::class . " AS p JOIN " . SomeProducts::class . " AS s", "expected" => array("models" => array(People::class), "tables" => array(array("personas", null, "p")), "columns" => array("price" => array("type" => "scalar", "column" => array("type" => "binary-op", "op" => "/", "left" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "p", "name" => "cupo", "balias" => "cupo"), "right" => array("type" => "literal", "value" => "100"))), "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "*", "left" => array("type" => "qualified", "domain" => "s", "name" => "price", "balias" => "price"), "right" => array("type" => "literal", "value" => "0.15")))), "balias" => "price", "sqlAlias" => "price")), "joins" => array(array("type" => "INNER", "source" => array("le_products", null, "s"), "conditions" => array())))), array("phql" => "SELECT * FROM " . Robots::class . ", " . RobotsParts::class, "expected" => array("models" => array(Robots::class, RobotsParts::class), "tables" => array("robots", "robots_parts"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class))))), array("phql" => "SELECT * FROM " . Robots::class . " r, " . RobotsParts::class . " p", "expected" => array("models" => array(Robots::class, RobotsParts::class), "tables" => array(array("robots", null, "r"), array("robots_parts", null, "p")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "p", "balias" => lcfirst(RobotsParts::class))))), array("phql" => "SELECT * FROM " . Robots::class . " AS r, " . RobotsParts::class . " AS p", "expected" => array("models" => array(Robots::class, RobotsParts::class), "tables" => array(array("robots", null, "r"), array("robots_parts", null, "p")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "p", "balias" => lcfirst(RobotsParts::class))))), array("phql" => "SELECT name, parts_id FROM " . Robots::class . " AS r, " . RobotsParts::class . " AS p", "expected" => array("models" => array(Robots::class, RobotsParts::class), "tables" => array(array("robots", null, "r"), array("robots_parts", null, "p")), "columns" => array("name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name")), "parts_id" => array("type" => "scalar", "balias" => "parts_id", "sqlAlias" => "parts_id", "column" => array("type" => "qualified", "domain" => "p", "name" => "parts_id", "balias" => "parts_id"))))), array("phql" => "SELECT * FROM " . Robots::class . " AS r, " . RobotsParts::class . " AS p WHERE r.id = p.robots_id", "expected" => array("models" => array(Robots::class, RobotsParts::class), "tables" => array(array("robots", null, "r"), array("robots_parts", null, "p")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "p", "balias" => lcfirst(RobotsParts::class))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "p", "name" => "robots_id", "balias" => "robots_id")))), array("phql" => "SELECT * FROM " . Robots::class . ", " . RobotsParts::class . " WHERE " . Robots::class . ".id = " . RobotsParts::class . ".robots_id", "expected" => array("models" => array(Robots::class, RobotsParts::class), "tables" => array("robots", "robots_parts"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("type" => "object", "model" => RobotsParts::class, "column" => "robots_parts", "balias" => lcfirst(RobotsParts::class))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id = 100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id != 100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id > 100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id < 100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "<", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id >= 100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => ">=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id <= 100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "<=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".name LIKE 'as%'", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "LIKE", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "literal", "value" => "'as%'")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".name NOT LIKE 'as%'", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "NOT LIKE", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "literal", "value" => "'as%'")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".name BETWEEN 'john' AND 'mike'", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "BETWEEN", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "literal", "value" => "'john'"), "right" => array("type" => "literal", "value" => "'mike'"))))), array("phql" => "SELECT * FROM " . SomeProducts::class . " WHERE DATE(" . SomeProducts::class . ".created_at) = "2010-10-02"", "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array(lcfirst(SomeProducts::class) => array("type" => "object", "model" => SomeProducts::class, "column" => "le_products", "balias" => lcfirst(SomeProducts::class))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "functionCall", "name" => "DATE", "arguments" => array(array("type" => "qualified", "domain" => "le_products", "name" => "created_at", "balias" => "created_at"))), "right" => array("type" => "literal", "value" => "'2010-10-02'")))), array("phql" => "SELECT * FROM " . SomeProducts::class . " WHERE " . SomeProducts::class . ".created_at < now()", "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array(lcfirst(SomeProducts::class) => array("type" => "object", "model" => SomeProducts::class, "column" => "le_products", "balias" => lcfirst(SomeProducts::class))), "where" => array("type" => "binary-op", "op" => "<", "left" => array("type" => "qualified", "domain" => "le_products", "name" => "created_at", "balias" => "created_at"), "right" => array("type" => "functionCall", "name" => "now")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id IN (1)", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "IN", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "list", array(array("type" => "literal", "value" => "1")))))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id IN (1, 2, 3, 4)", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "IN", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "list", array(array("type" => "literal", "value" => "1"), array("type" => "literal", "value" => "2"), array("type" => "literal", "value" => "3"), array("type" => "literal", "value" => "4")))))), array("phql" => "SELECT * FROM " . Robots::class . " r WHERE r.id IN (r.id+1, r.id+2)", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "IN", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "list", array(array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "1")), array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "2"))))))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".name = :name:", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "placeholder", "value" => ":name")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".name = ?0", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "placeholder", "value" => ":0")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".name = 'R2D2' OR " . Robots::class . ".name <> 'C3PO'", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "binary-op", "op" => "OR", "left" => array("type" => "literal", "value" => "'R2D2'"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))), "right" => array("type" => "literal", "value" => "'C3PO'")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".name = 'R2D2' AND " . Robots::class . ".name <> 'C3PO'", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "literal", "value" => "'R2D2'"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))), "right" => array("type" => "literal", "value" => "'C3PO'")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".name = :first_name: AND " . Robots::class . ".name <> :second_name:", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "placeholder", "value" => ":first_name"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))), "right" => array("type" => "placeholder", "value" => ":second_name")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".name = 'R2D2' AND " . Robots::class . ".name <> 'C3PO' AND " . Robots::class . ".id > 100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "literal", "value" => "'R2D2'"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "literal", "value" => "'C3PO'"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"))), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE (" . Robots::class . ".name = 'R2D2' AND " . Robots::class . ".name <> 'C3PO') OR " . Robots::class . ".id > 100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "binary-op", "op" => "OR", "left" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "literal", "value" => "'R2D2'"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))), "right" => array("type" => "literal", "value" => "'C3PO'"))), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id")), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE (" . Robots::class . ".name = 'R2D2' AND " . Robots::class . ".name <> 'C3PO') OR (" . Robots::class . ".id > 100 AND " . Robots::class . ".id <= 150)", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "OR", "left" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "literal", "value" => "'R2D2'"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))), "right" => array("type" => "literal", "value" => "'C3PO'"))), "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "<=", "left" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "literal", "value" => "100"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"))), "right" => array("type" => "literal", "value" => "150")))))), array("phql" => "SELECT * FROM " . Robots::class . " r WHERE r.id NOT IN (r.id+1, r.id+2)", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "NOT IN", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "list", array(array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "1")), array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "2"))))))), array("phql" => "SELECT * FROM " . Robots::class . " r LIMIT 100", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "limit" => array("number" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . Robots::class . " r LIMIT 10,100", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "limit" => array("number" => array("type" => "literal", "value" => "100"), "offset" => array("type" => "literal", "value" => "10")))), array("phql" => "SELECT * FROM " . Robots::class . " r LIMIT 100 OFFSET 10", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "limit" => array("number" => array("type" => "literal", "value" => "100"), "offset" => array("type" => "literal", "value" => "10")))), array("phql" => "SELECT * FROM " . SomeProducts::class . " p WHERE p.name = "Artichoke" LIMIT 100", "expected" => array("models" => array(SomeProducts::class), "tables" => array(array("le_products", null, "p")), "columns" => array(lcfirst(SomeProducts::class) => array("type" => "object", "model" => SomeProducts::class, "column" => "p", "balias" => lcfirst(SomeProducts::class))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "p", "name" => "name", "balias" => "name"), "right" => array("type" => "literal", "value" => "'Artichoke'")), "limit" => array("number" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT * FROM " . SomeProducts::class . " p ORDER BY p.name", "expected" => array("models" => array(SomeProducts::class), "tables" => array(array("le_products", null, "p")), "columns" => array(lcfirst(SomeProducts::class) => array("type" => "object", "model" => SomeProducts::class, "column" => "p", "balias" => lcfirst(SomeProducts::class))), "order" => array(array(array("type" => "qualified", "domain" => "p", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT * FROM " . SomeProducts::class . " ORDER BY " . SomeProducts::class . ".name", "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array(lcfirst(SomeProducts::class) => array("type" => "object", "model" => SomeProducts::class, "column" => "le_products", "balias" => lcfirst(SomeProducts::class))), "order" => array(array(array("type" => "qualified", "domain" => "le_products", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT * FROM " . SomeProducts::class . " ORDER BY id, " . SomeProducts::class . ".name, 3", "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array(lcfirst(SomeProducts::class) => array("type" => "object", "model" => SomeProducts::class, "column" => "le_products", "balias" => lcfirst(SomeProducts::class))), "order" => array(array(array("type" => "qualified", "domain" => "le_products", "name" => "id", "balias" => "id")), array(array("type" => "qualified", "domain" => "le_products", "name" => "name", "balias" => "name")), array(array("type" => "literal", "value" => "3"))))), array("phql" => "SELECT * FROM " . Robots::class . " r WHERE NOT (r.name = "shaggy") ORDER BY 1, r.name", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "where" => array("type" => "unary-op", "op" => "NOT ", "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"), "right" => array("type" => "literal", "value" => "'shaggy'")))), "order" => array(array(array("type" => "literal", "value" => "1")), array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT * FROM " . Robots::class . " r WHERE NOT (r.name = "shaggy") ORDER BY 1 DESC, r.name", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "where" => array("type" => "unary-op", "op" => "NOT ", "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"), "right" => array("type" => "literal", "value" => "'shaggy'")))), "order" => array(array(array("type" => "literal", "value" => "1"), "DESC"), array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT * FROM " . Robots::class . " r WHERE NOT (r.name = "shaggy") ORDER BY 1, r.name", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "where" => array("type" => "unary-op", "op" => "NOT ", "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"), "right" => array("type" => "literal", "value" => "'shaggy'")))), "order" => array(array(array("type" => "literal", "value" => "1")), array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT * FROM " . Robots::class . " r WHERE r.name <> "shaggy" ORDER BY 1, 2 LIMIT 5", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"), "right" => array("type" => "literal", "value" => "'shaggy'")), "order" => array(array(array("type" => "literal", "value" => "1")), array(array("type" => "literal", "value" => "2"))), "limit" => array("number" => array("type" => "literal", "value" => "5")))), array("phql" => "SELECT * FROM " . Robots::class . " r WHERE r.name <> "shaggy" ORDER BY 1 ASC, 2 DESC LIMIT 5", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"), "right" => array("type" => "literal", "value" => "'shaggy'")), "order" => array(array(array("type" => "literal", "value" => "1"), "ASC"), array(array("type" => "literal", "value" => "2"), "DESC")), "limit" => array("number" => array("type" => "literal", "value" => "5")))), array("phql" => "SELECT * FROM " . Robots::class . " GROUP BY " . Robots::class . ".name", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")))), array("phql" => "SELECT * FROM " . Robots::class . " GROUP BY " . Robots::class . ".name, " . Robots::class . ".id", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id")))), array("phql" => "SELECT " . Robots::class . ".name, SUM(" . Robots::class . ".price) AS summatory FROM " . Robots::class . " GROUP BY " . Robots::class . ".name", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(Robots::class . "_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "summatory" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "SUM", "arguments" => array(array("type" => "qualified", "domain" => "robots", "name" => "price", "balias" => "price"))), "balias" => "summatory", "sqlAlias" => "summatory")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")))), array("phql" => "SELECT r.id, r.name, SUM(r.price) AS summatory, MIN(r.price) FROM " . Robots::class . " r GROUP BY r.id, r.name", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array("r_id" => array("type" => "scalar", "balias" => "id", "sqlAlias" => "id", "column" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id")), "r_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name")), "summatory" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "SUM", "arguments" => array(array("type" => "qualified", "domain" => "r", "name" => "price", "balias" => "price"))), "balias" => "summatory", "sqlAlias" => "summatory"), "_3" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "MIN", "arguments" => array(array("type" => "qualified", "domain" => "r", "name" => "price", "balias" => "price"))))), "group" => array(array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id > 5 GROUP BY " . Robots::class . ".name", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "5")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id > 5 GROUP BY " . Robots::class . ".name LIMIT 10", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "5")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "limit" => array("number" => array("type" => "literal", "value" => "10")))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id > 5 GROUP BY " . Robots::class . ".name ORDER BY " . Robots::class . ".id LIMIT 10", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "5")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "order" => array(array(array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"))), "limit" => array("number" => array("type" => "literal", "value" => "10")))), array("phql" => "SELECT * FROM " . Robots::class . " GROUP BY " . Robots::class . ".name ORDER BY " . Robots::class . ".id", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "order" => array(array(array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"))))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE " . Robots::class . ".id != 10 GROUP BY " . Robots::class . ".name ORDER BY " . Robots::class . ".id", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "10")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "order" => array(array(array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"))))), array("phql" => "SELECT " . Robots::class . ".name, COUNT(*) FROM " . Robots::class . " GROUP BY " . Robots::class . ".name HAVING COUNT(*)>100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(Robots::class . "_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "_1" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))))), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "having" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT " . SomeProducts::class . ".type, SUM(" . SomeProducts::class . ".price) AS price FROM " . SomeProducts::class . " GROUP BY " . SomeProducts::class . ".type HAVING SUM(" . SomeProducts::class . ".price)<100", "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array(SomeProducts::class . "_type" => array("type" => "scalar", "balias" => "type", "sqlAlias" => "type", "column" => array("type" => "qualified", "domain" => "le_products", "name" => "type", "balias" => "type")), "price" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "SUM", "arguments" => array(array("type" => "qualified", "domain" => "le_products", "name" => "price", "balias" => "price"))), "balias" => "price", "sqlAlias" => "price")), "group" => array(array("type" => "qualified", "domain" => "le_products", "name" => "type", "balias" => "type")), "having" => array("type" => "binary-op", "op" => "<", "left" => array("type" => "functionCall", "name" => "SUM", "arguments" => array(array("type" => "qualified", "name" => "price", "domain" => "le_products", "balias" => "price"))), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT type, SUM(price) AS price FROM " . SomeProducts::class . " GROUP BY 1 HAVING SUM(price)<100", "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array("type" => array("type" => "scalar", "balias" => "type", "sqlAlias" => "type", "column" => array("type" => "qualified", "domain" => "le_products", "name" => "type", "balias" => "type")), "price" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "SUM", "arguments" => array(array("type" => "qualified", "domain" => "le_products", "name" => "price", "balias" => "price"))), "balias" => "price", "sqlAlias" => "price")), "group" => array(array("type" => "literal", "value" => "1")), "having" => array("type" => "binary-op", "op" => "<", "left" => array("type" => "functionCall", "name" => "SUM", "arguments" => array(array("type" => "qualified", "name" => "price"))), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT COUNT(DISTINCT " . SomeProducts::class . ".type) AS price FROM " . SomeProducts::class, "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array("price" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "qualified", "domain" => "le_products", "name" => "type", "balias" => "type")), "distinct" => 1), "balias" => "price", "sqlAlias" => "price")))), array("phql" => "SELECT COUNT(DISTINCT " . SomeProducts::class . ".type) price FROM " . SomeProducts::class, "expected" => array("models" => array(SomeProducts::class), "tables" => array("le_products"), "columns" => array("price" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "qualified", "domain" => "le_products", "name" => "type", "balias" => "type")), "distinct" => 1), "balias" => "price", "sqlAlias" => "price")))), array("phql" => "SELECT " . Robots::class . ".name, COUNT(*) FROM " . Robots::class . " WHERE " . Robots::class . ".type = "virtual" GROUP BY " . Robots::class . ".name HAVING COUNT(*)>100", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(Robots::class . "_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "_1" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "type", "balias" => "type"), "right" => array("type" => "literal", "value" => "'virtual'")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "having" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))), "right" => array("type" => "literal", "value" => "100")))), array("phql" => "SELECT " . Robots::class . ".name, COUNT(*) FROM " . Robots::class . " WHERE " . Robots::class . ".type = "virtual" GROUP BY " . Robots::class . ".name HAVING COUNT(*)>100 ORDER BY 2", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(Robots::class . "_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "_1" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "type", "balias" => "type"), "right" => array("type" => "literal", "value" => "'virtual'")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "having" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))), "right" => array("type" => "literal", "value" => "100")), "order" => array(array(array("type" => "literal", "value" => "2"))))), array("phql" => "SELECT " . Robots::class . ".name, COUNT(*) FROM " . Robots::class . " WHERE " . Robots::class . ".type = "virtual" GROUP BY " . Robots::class . ".name HAVING COUNT(*)>100 ORDER BY 2 LIMIT 15", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(Robots::class . "_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "_1" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "type", "balias" => "type"), "right" => array("type" => "literal", "value" => "'virtual'")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "having" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))), "right" => array("type" => "literal", "value" => "100")), "order" => array(array(array("type" => "literal", "value" => "2"))), "limit" => array("number" => array("type" => "literal", "value" => "15")))), array("phql" => "SELECT " . Robots::class . ".name, COUNT(*) FROM " . Robots::class . " GROUP BY " . Robots::class . ".name HAVING COUNT(*)>100 ORDER BY 2 LIMIT 15", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(Robots::class . "_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "_1" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))))), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "having" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))), "right" => array("type" => "literal", "value" => "100")), "order" => array(array(array("type" => "literal", "value" => "2"))), "limit" => array("number" => array("type" => "literal", "value" => "15")))), array("phql" => "SELECT name, COUNT(*) FROM " . Robots::class . " WHERE type = "virtual" GROUP BY name HAVING COUNT(*)>100 LIMIT 15", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array("name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "_1" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "type", "balias" => "type"), "right" => array("type" => "literal", "value" => "'virtual'")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "having" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))), "right" => array("type" => "literal", "value" => "100")), "limit" => array("number" => array("type" => "literal", "value" => "15")))), array("phql" => "SELECT " . Robots::class . ".name, COUNT(*) FROM " . Robots::class . " WHERE " . Robots::class . ".type = "virtual" GROUP BY " . Robots::class . ".name HAVING COUNT(*)>100 LIMIT 15", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(Robots::class . "_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "_1" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "type", "balias" => "type"), "right" => array("type" => "literal", "value" => "'virtual'")), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "having" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))), "right" => array("type" => "literal", "value" => "100")), "limit" => array("number" => array("type" => "literal", "value" => "15")))), array("phql" => "SELECT " . Robots::class . ".name, COUNT(*) FROM " . Robots::class . " GROUP BY " . Robots::class . ".name HAVING COUNT(*)>100 LIMIT 15", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(Robots::class . "_name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "_1" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))))), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "having" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "functionCall", "name" => "COUNT", "arguments" => array(array("type" => "all"))), "right" => array("type" => "literal", "value" => "100")), "limit" => array("number" => array("type" => "literal", "value" => "15")))), array("phql" => "SELECT * FROM " . Robotters::class, "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class))))), array("phql" => "SELECT * FROM " . SomeRobotters::class, "expected" => array("models" => array(SomeRobotters::class), "tables" => array("robots"), "columns" => array(lcfirst(SomeRobotters::class) => array("type" => "object", "model" => SomeRobotters::class, "column" => "robots", "balias" => lcfirst(SomeRobotters::class))))), array("phql" => "SELECT " . SomeRobotters::class . ".* FROM " . SomeRobotters::class, "expected" => array("models" => array(SomeRobotters::class), "tables" => array("robots"), "columns" => array(lcfirst(SomeRobotters::class) => array("type" => "object", "model" => SomeRobotters::class, "column" => "robots", "balias" => lcfirst(SomeRobotters::class))))), array("phql" => "SELECT r.* FROM " . SomeRobotters::class . " r", "expected" => array("models" => array(SomeRobotters::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => SomeRobotters::class, "column" => "r", "balias" => "r")))), array("phql" => "SELECT " . Robotters::class . ".* FROM " . Robotters::class, "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class))))), array("phql" => "SELECT r.* FROM " . Robotters::class . " r", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => "r")))), array("phql" => "SELECT r.* FROM " . Robotters::class . " AS r", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => "r")))), array("phql" => "SELECT code, theName FROM " . Robotters::class, "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array("code" => array("type" => "scalar", "balias" => "code", "sqlAlias" => "code", "column" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code")), "theName" => array("type" => "scalar", "balias" => "theName", "sqlAlias" => "theName", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "theName"))))), array("phql" => "SELECT r.code, r.theName FROM " . Robotters::class . " AS r", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array("r_code" => array("type" => "scalar", "balias" => "code", "sqlAlias" => "code", "column" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "code")), "r_theName" => array("type" => "scalar", "balias" => "theName", "sqlAlias" => "theName", "column" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"))))), array("phql" => "SELECT r.code AS le_id, r.theName AS le_name FROM " . Robotters::class . " AS r", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array("le_id" => array("type" => "scalar", "balias" => "le_id", "sqlAlias" => "le_id", "column" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "code")), "le_name" => array("type" => "scalar", "balias" => "le_name", "sqlAlias" => "le_name", "column" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"))))), array("phql" => "SELECT " . Robotters::class . ".code AS le_id, " . Robotters::class . ".theName AS le_name FROM " . Robotters::class, "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array("le_id" => array("type" => "scalar", "balias" => "le_id", "sqlAlias" => "le_id", "column" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code")), "le_name" => array("type" => "scalar", "balias" => "le_name", "sqlAlias" => "le_name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "theName"))))), array("phql" => "SELECT '' empty_str, 10.5 double_number, 1000 AS long_number FROM " . Robotters::class, "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array("empty_str" => array("type" => "scalar", "column" => array("type" => "literal", "value" => "''"), "balias" => "empty_str", "sqlAlias" => "empty_str"), "double_number" => array("type" => "scalar", "column" => array("type" => "literal", "value" => "10.5"), "balias" => "double_number", "sqlAlias" => "double_number"), "long_number" => array("type" => "scalar", "column" => array("type" => "literal", "value" => "1000"), "balias" => "long_number", "sqlAlias" => "long_number")))), array("phql" => "SELECT " . Personers::class . ".borgerId FROM " . Personers::class, "expected" => array("models" => array(Personers::class), "tables" => array("personas"), "columns" => array(Personers::class . "_borgerId" => array("type" => "scalar", "balias" => "borgerId", "sqlAlias" => "borgerId", "column" => array("type" => "qualified", "domain" => "personas", "name" => "cedula", "balias" => "borgerId"))))), array("phql" => "select " . strtolower(Personers::class) . ".borgerId from " . strtolower(Personers::class), "expected" => array("models" => array(strtolower(Personers::class)), "tables" => array("personas"), "columns" => array(strtolower(Personers::class) . "_borgerId" => array("type" => "scalar", "balias" => "borgerId", "sqlAlias" => "borgerId", "column" => array("type" => "qualified", "domain" => "personas", "name" => "cedula", "balias" => "borgerId"))))), array("phql" => "SELECT p.borgerId AS cedula FROM " . Personers::class . " p", "expected" => array("models" => array(Personers::class), "tables" => array(array("personas", null, "p")), "columns" => array("cedula" => array("type" => "scalar", "balias" => "cedula", "sqlAlias" => "cedula", "column" => array("type" => "qualified", "domain" => "p", "name" => "cedula", "balias" => "borgerId"))))), array("phql" => "SELECT CONCAT(" . Personers::class . ".borgerId,'-'," . Personers::class . ".navnes) AS navne FROM " . Personers::class, "expected" => array("models" => array(Personers::class), "tables" => array("personas"), "columns" => array("navne" => array("type" => "scalar", "column" => array("type" => "functionCall", "name" => "CONCAT", "arguments" => array(array("type" => "qualified", "domain" => "personas", "name" => "cedula", "balias" => "borgerId"), array("type" => "literal", "value" => "'-'"), array("type" => "qualified", "domain" => "personas", "name" => "nombres", "balias" => "navnes"))), "balias" => "navne", "sqlAlias" => "navne")))), array("phql" => "SELECT * FROM " . Robotters::class . " JOIN " . RobottersDeles::class, "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class))), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT * FROM " . Robotters::class . " CROSS JOIN " . RobottersDeles::class, "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class))), "joins" => array(array("type" => "CROSS", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT * FROM " . Robotters::class . " LEFT JOIN " . RobottersDeles::class . " RIGHT JOIN " . Deles::class, "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class)), lcfirst(Deles::class) => array("type" => "object", "model" => Deles::class, "column" => "parts", "balias" => lcfirst(Deles::class))), "joins" => array(array("type" => "LEFT", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode")))), array("type" => "RIGHT", "source" => array("parts", null), "conditions" => array())))), array("phql" => "SELECT * FROM " . RobottersDeles::class . " LEFT OUTER JOIN " . Robotters::class . " RIGHT OUTER JOIN " . Deles::class, "expected" => array("models" => array(RobottersDeles::class), "tables" => array("robots_parts"), "columns" => array(lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class)), lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(Deles::class) => array("type" => "object", "model" => Deles::class, "column" => "parts", "balias" => lcfirst(Deles::class))), "joins" => array(array("type" => "LEFT", "source" => array("robots", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code")))), array("type" => "RIGHT", "source" => array("parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "parts_id", "balias" => "delesCode"), "right" => array("type" => "qualified", "domain" => "parts", "name" => "id", "balias" => "code"))))))), array("phql" => "SELECT * FROM " . Robotters::class . " JOIN " . RobottersDeles::class . " ON " . Robotters::class . ".code = " . RobottersDeles::class . ".robottersCode", "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class))), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT * FROM " . Robotters::class . " LEFT OUTER JOIN " . RobottersDeles::class . " ON " . Robotters::class . ".code = " . RobottersDeles::class . ".robottersCode AND " . RobottersDeles::class . ".robottersCode = " . Robotters::class . ".code WHERE " . Robotters::class . ".code IS NULL", "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class))), "joins" => array(array("type" => "LEFT", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"))), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"))))), "where" => array("type" => "unary-op", "op" => " IS NULL", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code")))), array("phql" => "SELECT * FROM " . Robotters::class . " RIGHT OUTER JOIN " . RobottersDeles::class . " ON " . Robotters::class . ".code = " . RobottersDeles::class . ".robottersCode AND " . RobottersDeles::class . ".robottersCode = " . Robotters::class . ".code WHERE " . RobottersDeles::class . ".robottersCode IS NOT NULL", "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class))), "joins" => array(array("type" => "RIGHT", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"))), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"))))), "where" => array("type" => "unary-op", "op" => " IS NOT NULL", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode")))), array("phql" => "SELECT * FROM " . Robotters::class . " FULL OUTER JOIN " . RobottersDeles::class, "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class))), "joins" => array(array("type" => "FULL OUTER", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT * FROM " . RobottersDeles::class . " JOIN " . Robotters::class, "expected" => array("models" => array(RobottersDeles::class), "tables" => array("robots_parts"), "columns" => array(lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class)), lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class))), "joins" => array(array("type" => "INNER", "source" => array("robots", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"))))))), array("phql" => "SELECT r.*, p.* FROM " . Robotters::class . " AS r JOIN " . RobottersDeles::class . " AS p", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => "r"), "p" => array("type" => "object", "model" => RobottersDeles::class, "column" => "p", "balias" => "p")), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null, "p"), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "p", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT * FROM " . Robotters::class . " AS r JOIN " . RobottersDeles::class . " AS p", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "p", "balias" => lcfirst(RobottersDeles::class))), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null, "p"), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "p", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT r.* FROM " . Robotters::class . " r INNER JOIN " . RobottersDeles::class, "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => "r")), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT * FROM " . RobottersDeles::class . " JOIN " . Robotters::class, "expected" => array("models" => array(RobottersDeles::class), "tables" => array("robots_parts"), "columns" => array(lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class)), lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class))), "joins" => array(array("type" => "INNER", "source" => array("robots", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"), "right" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"))))))), array("phql" => "SELECT r.*, p.* FROM " . Robotters::class . " AS r JOIN " . RobottersDeles::class . " AS p", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => "r"), "p" => array("type" => "object", "model" => RobottersDeles::class, "column" => "p", "balias" => "p")), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null, "p"), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "p", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT * FROM " . Robotters::class . " AS r JOIN " . RobottersDeles::class . " AS p", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "p", "balias" => lcfirst(RobottersDeles::class))), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null, "p"), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "p", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT r.* FROM " . Robotters::class . " r INNER JOIN " . RobottersDeles::class, "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array("r" => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => "r")), "joins" => array(array("type" => "INNER", "source" => array("robots_parts", null), "conditions" => array(array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode"))))))), array("phql" => "SELECT ( " . Personers::class . ".kredit + 100) / (" . Products::class . ".price * 0.15) FROM " . Personers::class . " JOIN " . Products::class, "expected" => array("models" => array(Personers::class), "tables" => array("personas"), "columns" => array("_0" => array("type" => "scalar", "column" => array("type" => "binary-op", "op" => "/", "left" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "personas", "name" => "cupo", "balias" => "kredit"), "right" => array("type" => "literal", "value" => "100"))), "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "*", "left" => array("type" => "qualified", "domain" => "products", "name" => "price", "balias" => "price"), "right" => array("type" => "literal", "value" => "0.15")))))), "joins" => array(array("type" => "INNER", "source" => array("products", null), "conditions" => array())))), array("phql" => "SELECT ( " . Personers::class . ".kredit + 100) / (" . SomeProducts::class . ".price * 0.15) AS price FROM " . Personers::class . " JOIN " . SomeProducts::class, "expected" => array("models" => array(Personers::class), "tables" => array("personas"), "columns" => array("price" => array("type" => "scalar", "column" => array("type" => "binary-op", "op" => "/", "left" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "personas", "name" => "cupo", "balias" => "kredit"), "right" => array("type" => "literal", "value" => "100"))), "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "*", "left" => array("type" => "qualified", "domain" => "le_products", "name" => "price", "balias" => "price"), "right" => array("type" => "literal", "value" => "0.15")))), "balias" => "price", "sqlAlias" => "price")), "joins" => array(array("type" => "INNER", "source" => array("le_products", null), "conditions" => array())))), array("phql" => "SELECT (p.kredit + 100) / (s.price * 0.15) AS price FROM " . Personers::class . " AS p JOIN " . SomeProducts::class . " AS s", "expected" => array("models" => array(Personers::class), "tables" => array(array("personas", null, "p")), "columns" => array("price" => array("type" => "scalar", "column" => array("type" => "binary-op", "op" => "/", "left" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "qualified", "domain" => "p", "name" => "cupo", "balias" => "kredit"), "right" => array("type" => "literal", "value" => "100"))), "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "*", "left" => array("type" => "qualified", "domain" => "s", "name" => "price", "balias" => "price"), "right" => array("type" => "literal", "value" => "0.15")))), "balias" => "price", "sqlAlias" => "price")), "joins" => array(array("type" => "INNER", "source" => array("le_products", null, "s"), "conditions" => array())))), array("phql" => "SELECT * FROM " . Robotters::class . ", " . RobottersDeles::class, "expected" => array("models" => array(Robotters::class, RobottersDeles::class), "tables" => array("robots", "robots_parts"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class))))), array("phql" => "SELECT * FROM " . Robotters::class . " r, " . RobottersDeles::class . " p", "expected" => array("models" => array(Robotters::class, RobottersDeles::class), "tables" => array(array("robots", null, "r"), array("robots_parts", null, "p")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "p", "balias" => lcfirst(RobottersDeles::class))))), array("phql" => "SELECT * FROM " . Robotters::class . " AS r, " . RobottersDeles::class . " AS p", "expected" => array("models" => array(Robotters::class, RobottersDeles::class), "tables" => array(array("robots", null, "r"), array("robots_parts", null, "p")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "p", "balias" => lcfirst(RobottersDeles::class))))), array("phql" => "SELECT theName, delesCode FROM " . Robotters::class . " AS r, " . RobottersDeles::class . " AS p", "expected" => array("models" => array(Robotters::class, RobottersDeles::class), "tables" => array(array("robots", null, "r"), array("robots_parts", null, "p")), "columns" => array("theName" => array("type" => "scalar", "balias" => "theName", "sqlAlias" => "theName", "column" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName")), "delesCode" => array("type" => "scalar", "balias" => "delesCode", "sqlAlias" => "delesCode", "column" => array("type" => "qualified", "domain" => "p", "name" => "parts_id", "balias" => "delesCode"))))), array("phql" => "SELECT * FROM " . Robotters::class . " AS r, " . RobottersDeles::class . " AS p WHERE r.code = p.robottersCode", "expected" => array("models" => array(Robotters::class, RobottersDeles::class), "tables" => array(array("robots", null, "r"), array("robots_parts", null, "p")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "p", "balias" => lcfirst(RobottersDeles::class))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "p", "name" => "robots_id", "balias" => "robottersCode")))), array("phql" => "SELECT * FROM " . Robotters::class . ", " . RobottersDeles::class . " WHERE " . Robotters::class . ".code = " . RobottersDeles::class . ".robottersCode", "expected" => array("models" => array(Robotters::class, RobottersDeles::class), "tables" => array("robots", "robots_parts"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("type" => "object", "model" => RobottersDeles::class, "column" => "robots_parts", "balias" => lcfirst(RobottersDeles::class))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code"), "right" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robottersCode")))), array("phql" => "SELECT * FROM " . Robotters::class . " r WHERE NOT (r.theName = "shaggy") ORDER BY 1, r.theName", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class))), "where" => array("type" => "unary-op", "op" => "NOT ", "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"), "right" => array("type" => "literal", "value" => "'shaggy'")))), "order" => array(array(array("type" => "literal", "value" => "1")), array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"))))), array("phql" => "SELECT * FROM " . Robotters::class . " r WHERE NOT (r.theName = "shaggy") ORDER BY 1 DESC, r.theName", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class))), "where" => array("type" => "unary-op", "op" => "NOT ", "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"), "right" => array("type" => "literal", "value" => "'shaggy'")))), "order" => array(array(array("type" => "literal", "value" => "1"), "DESC"), array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"))))), array("phql" => "SELECT * FROM " . Robotters::class . " r WHERE NOT (r.theName = "shaggy") ORDER BY 1, r.theName", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class))), "where" => array("type" => "unary-op", "op" => "NOT ", "right" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"), "right" => array("type" => "literal", "value" => "'shaggy'")))), "order" => array(array(array("type" => "literal", "value" => "1")), array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"))))), array("phql" => "SELECT * FROM " . Robotters::class . " r WHERE r.theName <> "shaggy" ORDER BY 1, 2 LIMIT 5", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class))), "where" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"), "right" => array("type" => "literal", "value" => "'shaggy'")), "order" => array(array(array("type" => "literal", "value" => "1")), array(array("type" => "literal", "value" => "2"))), "limit" => array("number" => array("type" => "literal", "value" => "5")))), array("phql" => "SELECT * FROM " . Robotters::class . " r WHERE r.theName <> "shaggy" ORDER BY 1 ASC, 2 DESC LIMIT 5", "expected" => array("models" => array(Robotters::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "r", "balias" => lcfirst(Robotters::class))), "where" => array("type" => "binary-op", "op" => "<>", "left" => array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "theName"), "right" => array("type" => "literal", "value" => "'shaggy'")), "order" => array(array(array("type" => "literal", "value" => "1"), "ASC"), array(array("type" => "literal", "value" => "2"), "DESC")), "limit" => array("number" => array("type" => "literal", "value" => "5")))), array("phql" => "SELECT * FROM " . Robotters::class . " GROUP BY " . Robotters::class . ".theName", "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class))), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "theName")))), array("phql" => "SELECT * FROM " . Robotters::class . " GROUP BY " . Robotters::class . ".theName, " . Robotters::class . ".code", "expected" => array("models" => array(Robotters::class), "tables" => array("robots"), "columns" => array(lcfirst(Robotters::class) => array("type" => "object", "model" => Robotters::class, "column" => "robots", "balias" => lcfirst(Robotters::class))), "group" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "theName"), array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "code")))), array("phql" => "SELECT * FROM " . Robots::class . " r LIMIT ?1,:limit:", "expected" => array("models" => array(Robots::class), "tables" => array(array("robots", null, "r")), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "r", "balias" => lcfirst(Robots::class))), "limit" => array("number" => array("type" => "placeholder", "value" => ":limit"), "offset" => array("type" => "placeholder", "value" => ":1")))), array("phql" => "SELECT DISTINCT id, name FROM " . Robots::class, "expected" => array("distinct" => 1, "models" => array(Robots::class), "tables" => array("robots"), "columns" => array("id" => array("type" => "scalar", "balias" => "id", "sqlAlias" => "id", "column" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id")), "name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT ALL id, name FROM " . Robots::class, "expected" => array("distinct" => 0, "models" => array(Robots::class), "tables" => array("robots"), "columns" => array("id" => array("type" => "scalar", "balias" => "id", "sqlAlias" => "id", "column" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id")), "name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))))), array("phql" => "SELECT * FROM " . Robots::class . " WHERE id IN (SELECT robots_id FROM " . RobotsParts::class . ")", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array(lcfirst(Robots::class) => array("type" => "object", "model" => Robots::class, "column" => "robots", "balias" => lcfirst(Robots::class))), "where" => array("type" => "binary-op", "op" => "IN", "left" => array("type" => "qualified", "domain" => "robots", "name" => "id", "balias" => "id"), "right" => array("type" => "select", "value" => array("models" => array(RobotsParts::class), "tables" => array("robots_parts"), "columns" => array("robots_id" => array("type" => "scalar", "balias" => "robots_id", "sqlAlias" => "robots_id", "column" => array("type" => "qualified", "domain" => "robots_parts", "name" => "robots_id", "balias" => "robots_id")))))))), array("phql" => "SELECT UPPER(" . Robots::class . ".name) AS name FROM " . Robots::class . " WHERE " . Robots::class . ".name = "Robotina"", "expected" => array("models" => array(Robots::class), "tables" => array("robots"), "columns" => array("name" => array("type" => "scalar", "balias" => "name", "sqlAlias" => "name", "column" => array("type" => "functionCall", "name" => "UPPER", "arguments" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"))))), "where" => array("type" => "binary-op", "op" => "=", "left" => array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), "right" => array("type" => "literal", "value" => "'Robotina'"))))); } private function getExamplesInsert() : array { return array(array(array("query" => "INSERT INTO " . Robots::class . " VALUES (NULL, 'some robot', 1945)"), array("model" => Robots::class, "table" => "robots", "values" => array(array("type" => 322, "value" => array("type" => "literal", "value" => "NULL")), array("type" => 260, "value" => array("type" => "literal", "value" => "some robot")), array("type" => 258, "value" => array("type" => "literal", "value" => "1945"))))), array(array("query" => "insert into " . strtolower(Robots::class) . " values (null, 'some robot', 1945)"), array("model" => strtolower(Robots::class), "table" => "robots", "values" => array(array("type" => 322, "value" => array("type" => "literal", "value" => "NULL")), array("type" => 260, "value" => array("type" => "literal", "value" => "some robot")), array("type" => 258, "value" => array("type" => "literal", "value" => "1945"))))), array(array("query" => "INSERT INTO " . SomeProducts::class . " VALUES ("Some name", 100.15, current_date(), now())"), array("model" => SomeProducts::class, "table" => "le_products", "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "Some name")), array("type" => 259, "value" => array("type" => "literal", "value" => "100.15")), array("type" => 350, "value" => array("type" => "functionCall", "name" => "current_date")), array("type" => 350, "value" => array("type" => "functionCall", "name" => "now"))))), array(array("query" => "INSERT INTO " . Robots::class . " VALUES ((1+1000*:le_id:), CONCAT('some', 'robot'), 2011)"), array("model" => Robots::class, "table" => "robots", "values" => array(array("type" => 356, "value" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "*", "left" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "literal", "value" => "1"), "right" => array("type" => "literal", "value" => "1000")), "right" => array("type" => "placeholder", "value" => ":le_id")))), array("type" => 350, "value" => array("type" => "functionCall", "name" => "CONCAT", "arguments" => array(array("type" => "literal", "value" => "'some'"), array("type" => "literal", "value" => "'robot'")))), array("type" => 258, "value" => array("type" => "literal", "value" => "2011"))))), array(array("query" => "INSERT INTO " . Robots::class . " (name, type, year) VALUES ('a name', 'virtual', ?0)"), array("model" => Robots::class, "table" => "robots", "fields" => array("name", "type", "year"), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "a name")), array("type" => 260, "value" => array("type" => "literal", "value" => "virtual")), array("type" => 273, "value" => array("type" => "placeholder", "value" => ":0"))))), array(array("query" => "INSERT INTO " . Robotters::class . " VALUES (NULL, 'some robot', 1945)"), array("model" => Robotters::class, "table" => "robots", "values" => array(array("type" => 322, "value" => array("type" => "literal", "value" => "NULL")), array("type" => 260, "value" => array("type" => "literal", "value" => "some robot")), array("type" => 258, "value" => array("type" => "literal", "value" => "1945"))))), array(array("query" => "insert into " . strtolower(Robotters::class) . " values (null, 'some robot', 1945)"), array("model" => strtolower(Robotters::class), "table" => "robots", "values" => array(array("type" => 322, "value" => array("type" => "literal", "value" => "NULL")), array("type" => 260, "value" => array("type" => "literal", "value" => "some robot")), array("type" => 258, "value" => array("type" => "literal", "value" => "1945"))))), array(array("query" => "INSERT INTO " . Robotters::class . " VALUES ((1+1000*:le_id:), CONCAT('some', 'robot'), 2011)"), array("model" => Robotters::class, "table" => "robots", "values" => array(array("type" => 356, "value" => array("type" => "parentheses", "left" => array("type" => "binary-op", "op" => "*", "left" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "literal", "value" => "1"), "right" => array("type" => "literal", "value" => "1000")), "right" => array("type" => "placeholder", "value" => ":le_id")))), array("type" => 350, "value" => array("type" => "functionCall", "name" => "CONCAT", "arguments" => array(array("type" => "literal", "value" => "'some'"), array("type" => "literal", "value" => "'robot'")))), array("type" => 258, "value" => array("type" => "literal", "value" => "2011"))))), array(array("query" => "INSERT INTO " . Robotters::class . " (theName, theType, theYear) VALUES ('a name', 'virtual', ?0)"), array("model" => Robotters::class, "table" => "robots", "fields" => array("theName", "theType", "theYear"), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "a name")), array("type" => 260, "value" => array("type" => "literal", "value" => "virtual")), array("type" => 273, "value" => array("type" => "placeholder", "value" => ":0")))))); } private function getExamplesUpdate() : array { return array(array(array("query" => "UPDATE " . Robots::class . " SET name = 'some name'"), array("tables" => array("robots"), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name"))))), array(array("query" => "UPDATE " . Robots::class . " SET " . Robots::class . ".name = 'some name'"), array("tables" => array("robots"), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name"))))), array(array("query" => "UPDATE " . SomeProducts::class . " SET " . SomeProducts::class . ".name = "some name""), array("tables" => array("le_products"), "models" => array(SomeProducts::class), "fields" => array(array("type" => "qualified", "domain" => "le_products", "name" => "name", "balias" => "name")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name"))))), array(array("query" => "UPDATE " . SomeProducts::class . " p SET p.name = "some name""), array("tables" => array(array("le_products", null, "p")), "models" => array(SomeProducts::class), "fields" => array(array("type" => "qualified", "domain" => "p", "name" => "name", "balias" => "name")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name"))))), array(array("query" => "UPDATE " . Robots::class . " SET " . Robots::class . ".name = 'some name', " . Robots::class . ".year = 1990"), array("tables" => array("robots"), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), array("type" => "qualified", "domain" => "robots", "name" => "year", "balias" => "year")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name")), array("type" => 258, "value" => array("type" => "literal", "value" => "1990"))))), array(array("query" => "UPDATE " . SomeProducts::class . " p SET p.name = "some name", p.year = 1990"), array("tables" => array(array("le_products", null, "p")), "models" => array(SomeProducts::class), "fields" => array(array("type" => "qualified", "domain" => "p", "name" => "name", "balias" => "name"), array("type" => "qualified", "domain" => "p", "name" => "year", "balias" => "year")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name")), array("type" => 258, "value" => array("type" => "literal", "value" => "1990"))))), array(array("query" => "UPDATE " . Robots::class . " SET " . Robots::class . ".name = 'some name', " . Robots::class . ".year = YEAR(current_date()) + " . Robots::class . ".year"), array("tables" => array("robots"), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "robots", "name" => "name", "balias" => "name"), array("type" => "qualified", "domain" => "robots", "name" => "year", "balias" => "year")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name")), array("type" => 43, "value" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "functionCall", "name" => "YEAR", "arguments" => array(array("type" => "functionCall", "name" => "current_date"))), "right" => array("type" => "qualified", "domain" => "robots", "name" => "year", "balias" => "year")))))), array(array("query" => "UPDATE " . Robots::class . " AS r SET r.name = 'some name', r.year = YEAR(current_date()) + r.year"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"), array("type" => "qualified", "domain" => "r", "name" => "year", "balias" => "year")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name")), array("type" => 43, "value" => array("type" => "binary-op", "op" => "+", "left" => array("type" => "functionCall", "name" => "YEAR", "arguments" => array(array("type" => "functionCall", "name" => "current_date"))), "right" => array("type" => "qualified", "domain" => "r", "name" => "year", "balias" => "year")))))), array(array("query" => "UPDATE " . Robots::class . " AS r SET r.name = 'some name' WHERE r.id > 100"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name"))), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")))), array(array("query" => "UPDATE " . Robots::class . " as r set r.name = 'some name', r.year = r.year*2 where r.id > 100 and r.id <= 200"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name"), array("type" => "qualified", "domain" => "r", "name" => "year", "balias" => "year")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name")), array("type" => 42, "value" => array("type" => "binary-op", "op" => "*", "left" => array("type" => "qualified", "domain" => "r", "name" => "year", "balias" => "year"), "right" => array("type" => "literal", "value" => "2")))), "where" => array("type" => "binary-op", "op" => "<=", "left" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "binary-op", "op" => "AND", "left" => array("type" => "literal", "value" => "100"), "right" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"))), "right" => array("type" => "literal", "value" => "200")))), array(array("query" => "update " . strtolower(Robots::class) . " as r set r.name = 'some name' LIMIT 10"), array("tables" => array(array("robots", null, "r")), "models" => array(strtolower(Robots::class)), "fields" => array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name"))), "limit" => array("number" => array("type" => "literal", "value" => "10")))), array(array("query" => "UPDATE " . Robots::class . " r SET r.name = 'some name' LIMIT 10"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name"))), "limit" => array("number" => array("type" => "literal", "value" => "10")))), array(array("query" => "UPDATE " . Robots::class . " AS r SET r.name = 'some name' WHERE r.id > 100 LIMIT 10"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name"))), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")), "limit" => array("number" => array("type" => "literal", "value" => "10")))), array(array("query" => "UPDATE " . Robots::class . " r SET r.name = 'some name' LIMIT ?1"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "fields" => array(array("type" => "qualified", "domain" => "r", "name" => "name", "balias" => "name")), "values" => array(array("type" => 260, "value" => array("type" => "literal", "value" => "some name"))), "limit" => array("number" => array("type" => "placeholder", "value" => ":1"))))); } private function getExamplesDelete() : array { return array(array(array("query" => "DELETE FROM " . Robots::class), array("tables" => array("robots"), "models" => array(Robots::class))), array(array("query" => "DELETE FROM " . Robots::class . " AS r WHERE r.id > 100"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")))), array(array("query" => "DELETE FROM " . Robots::class . " as r WHERE r.id > 100"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")))), array(array("query" => "DELETE FROM " . Robots::class . " r LIMIT 10"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "limit" => array("number" => array("type" => "literal", "value" => "10")))), array(array("query" => "DELETE FROM " . Robots::class . " r WHERE r.id > 100 LIMIT 10"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")), "limit" => array("number" => array("type" => "literal", "value" => "10")))), array(array("query" => "DELETE FROM " . Robots::class . " r WHERE r.id > 100 LIMIT :limit:"), array("tables" => array(array("robots", null, "r")), "models" => array(Robots::class), "where" => array("type" => "binary-op", "op" => ">", "left" => array("type" => "qualified", "domain" => "r", "name" => "id", "balias" => "id"), "right" => array("type" => "literal", "value" => "100")), "limit" => array("number" => array("type" => "placeholder", "value" => ":limit"))))); } } ?>

Did this file decode correctly?

Original Code

<?php
 namespace Phalcon\Tests\Integration\Mvc\Model; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Model\Query; use Phalcon\Tests\Fixtures\Traits\DiTrait; use Phalcon\Tests\Models\Deles; use Phalcon\Tests\Models\Parts; use Phalcon\Tests\Models\People; use Phalcon\Tests\Models\Personers; use Phalcon\Tests\Models\Products; use Phalcon\Tests\Models\Robots; use Phalcon\Tests\Models\RobotsParts; use Phalcon\Tests\Models\Robotters; use Phalcon\Tests\Models\RobottersDeles; use Phalcon\Tests\Models\Some\Products as SomeProducts; use Phalcon\Tests\Models\Some\Robotters as SomeRobotters; class QueryOldCest { use DiTrait; public function _before(IntegrationTester $I) { $this->setNewFactoryDefault(); $this->setDiSqlite(); } public function testSelectParsing(IntegrationTester $I, Example $example) { $phql = $example["\x70\150\161\x6c"]; $expected = $example["\145\x78\160\145\x63\x74\145\144"]; $query = new Query($phql); $query->setDI($this->container); $I->assertEquals($expected, $query->parse()); } public function shouldInsertParsing(IntegrationTester $I, Example $example) { $params = $example[0]; $expected = $example[1]; $query = new Query($params["\x71\165\x65\162\171"]); $query->setDI($this->container); $I->assertEquals($expected, $query->parse()); } public function shouldUpdateParsing(IntegrationTester $I, Example $example) { $params = $example[0]; $expected = $example[1]; $query = new Query($params["\161\165\x65\162\171"]); $query->setDI($this->container); $I->assertEquals($expected, $query->parse()); } public function shouldDeleteParsing(IntegrationTester $I, Example $example) { $params = $example[0]; $expected = $example[1]; $query = new Query($params["\x71\x75\145\x72\x79"]); $query->setDI($this->container); $I->assertEquals($expected, $query->parse()); } private function getExamples() : array { return array(array("\x70\150\x71\x6c" => "\123\105\114\x45\x43\124\40\52\40\106\122\x4f\115\40" . Robots::class, "\145\170\x70\145\143\x74\145\x64" => array("\155\x6f\x64\x65\x6c\163" => array(Robots::class), "\164\x61\x62\x6c\x65\x73" => array("\162\x6f\142\x6f\164\163"), "\143\157\154\165\155\156\x73" => array(lcfirst(Robots::class) => array("\164\x79\x70\x65" => "\x6f\x62\x6a\145\143\x74", "\155\157\x64\x65\x6c" => Robots::class, "\143\x6f\154\x75\x6d\156" => "\162\x6f\x62\157\x74\163", "\142\141\154\x69\141\x73" => lcfirst(Robots::class))))), array("\x70\x68\x71\x6c" => "\123\105\x4c\x45\103\x54\x20\52\40\106\122\x4f\x4d\40" . SomeProducts::class, "\x65\170\160\145\143\x74\145\x64" => array("\155\157\144\145\154\163" => array(SomeProducts::class), "\x74\x61\x62\x6c\x65\163" => array("\154\x65\137\160\x72\157\x64\x75\143\x74\163"), "\x63\157\154\x75\155\156\x73" => array(lcfirst(SomeProducts::class) => array("\164\171\160\145" => "\157\142\x6a\145\143\164", "\x6d\x6f\144\x65\154" => SomeProducts::class, "\143\x6f\154\165\x6d\x6e" => "\x6c\x65\x5f\x70\x72\157\144\x75\x63\x74\163", "\x62\141\154\151\x61\x73" => lcfirst(SomeProducts::class))))), array("\160\150\161\x6c" => "\x53\105\114\x45\103\124\40" . SomeProducts::class . "\x2e\52\40\106\x52\x4f\x4d\40" . SomeProducts::class, "\145\170\x70\145\x63\164\145\x64" => array("\155\157\144\145\x6c\x73" => array(SomeProducts::class), "\164\x61\142\154\x65\163" => array("\154\145\137\160\x72\x6f\144\165\x63\x74\x73"), "\143\x6f\154\165\155\x6e\163" => array(lcfirst(SomeProducts::class) => array("\x74\171\x70\145" => "\157\142\x6a\145\x63\x74", "\155\x6f\x64\x65\154" => SomeProducts::class, "\143\157\154\165\x6d\156" => "\154\145\x5f\x70\162\x6f\x64\165\143\164\163", "\x62\x61\154\x69\141\163" => lcfirst(SomeProducts::class))))), array("\160\x68\x71\154" => "\x53\105\x4c\105\103\124\40\x70\56\x2a\40\x46\x52\x4f\115\x20" . SomeProducts::class . "\x20\x70", "\x65\x78\160\x65\x63\164\x65\x64" => array("\155\157\144\145\x6c\163" => array(SomeProducts::class), "\164\141\142\154\x65\x73" => array(array("\154\x65\x5f\160\x72\x6f\144\x75\143\164\x73", null, "\160")), "\143\157\154\165\x6d\x6e\x73" => array("\160" => array("\x74\x79\160\x65" => "\157\142\152\x65\143\164", "\x6d\x6f\x64\x65\x6c" => SomeProducts::class, "\x63\157\x6c\165\155\x6e" => "\160", "\142\x61\x6c\151\x61\163" => "\x70")))), array("\160\x68\161\x6c" => "\x53\x45\x4c\105\103\124\x20" . Robots::class . "\x2e\52\x20\x46\x52\117\x4d\x20" . Robots::class, "\x65\170\160\145\x63\x74\x65\144" => array("\x6d\x6f\144\x65\x6c\163" => array(Robots::class), "\164\141\x62\154\x65\x73" => array("\162\157\x62\157\164\163"), "\143\x6f\154\x75\155\156\x73" => array(lcfirst(Robots::class) => array("\164\171\x70\x65" => "\x6f\142\152\x65\x63\x74", "\155\x6f\144\145\x6c" => Robots::class, "\143\x6f\x6c\165\x6d\x6e" => "\162\157\x62\157\164\x73", "\x62\x61\x6c\x69\141\163" => lcfirst(Robots::class))))), array("\160\x68\161\x6c" => "\123\105\114\105\x43\124\40\x72\x2e\52\40\x46\x52\x4f\115\40" . Robots::class . "\x20\x72", "\145\x78\160\x65\143\x74\145\x64" => array("\x6d\x6f\144\x65\154\163" => array(Robots::class), "\164\141\x62\154\x65\x73" => array(array("\x72\157\142\157\164\x73", null, "\162")), "\x63\x6f\154\x75\x6d\x6e\163" => array("\x72" => array("\x74\x79\160\145" => "\x6f\x62\x6a\145\143\x74", "\155\157\144\x65\154" => Robots::class, "\143\x6f\x6c\165\155\x6e" => "\x72", "\142\141\154\151\x61\163" => "\x72")))), array("\x70\150\x71\154" => "\x53\x45\114\105\x43\124\x20\x72\56\x2a\40\x46\122\117\x4d\40" . Robots::class . "\40\x41\123\40\162", "\145\x78\x70\x65\x63\164\x65\144" => array("\x6d\157\144\x65\154\163" => array(Robots::class), "\164\141\142\x6c\x65\x73" => array(array("\162\x6f\142\157\x74\x73", null, "\162")), "\143\x6f\154\x75\x6d\x6e\163" => array("\162" => array("\164\x79\x70\145" => "\157\x62\152\x65\143\164", "\155\157\144\x65\154" => Robots::class, "\x63\157\x6c\165\x6d\156" => "\x72", "\x62\x61\154\x69\141\x73" => "\162")))), array("\x70\x68\161\x6c" => "\x53\x45\114\105\x43\124\40\151\144\x2c\40\x6e\141\x6d\145\x20\106\122\117\x4d\40" . Robots::class, "\x65\170\x70\145\143\x74\x65\144" => array("\155\x6f\x64\145\x6c\163" => array(Robots::class), "\164\x61\142\154\x65\163" => array("\162\157\142\157\164\x73"), "\143\157\x6c\x75\x6d\x6e\163" => array("\151\x64" => array("\x74\171\x70\x65" => "\163\143\141\154\141\x72", "\x62\x61\154\151\x61\163" => "\x69\x64", "\x73\x71\154\101\x6c\x69\x61\163" => "\151\144", "\x63\157\x6c\165\155\x6e" => array("\x74\x79\160\145" => "\161\x75\x61\x6c\151\x66\151\x65\144", "\x64\x6f\155\x61\x69\156" => "\x72\x6f\142\157\x74\x73", "\x6e\x61\x6d\x65" => "\151\x64", "\142\141\x6c\151\x61\163" => "\151\x64")), "\156\141\155\x65" => array("\164\x79\x70\x65" => "\x73\x63\141\x6c\141\162", "\142\141\x6c\151\x61\163" => "\x6e\x61\x6d\145", "\163\x71\154\101\154\151\141\x73" => "\156\141\x6d\x65", "\x63\x6f\154\165\155\156" => array("\x74\171\x70\145" => "\161\165\x61\x6c\x69\146\x69\x65\x64", "\144\x6f\155\x61\x69\156" => "\x72\x6f\x62\157\x74\163", "\156\x61\155\145" => "\156\x61\x6d\x65", "\x62\x61\x6c\x69\141\x73" => "\x6e\x61\x6d\145"))))), array("\160\150\x71\x6c" => "\123\105\x4c\105\x43\124\40\x72\x2e\x69\x64\54\40\x72\x2e\156\141\155\x65\40\x46\x52\x4f\115\40" . Robots::class . "\40\x41\x53\x20\x72", "\x65\170\160\x65\143\164\145\x64" => array("\x6d\x6f\x64\145\x6c\x73" => array(Robots::class), "\x74\x61\x62\x6c\145\x73" => array(array("\162\x6f\x62\157\164\163", null, "\x72")), "\x63\x6f\x6c\x75\x6d\x6e\x73" => array("\162\137\x69\144" => array("\x74\x79\160\x65" => "\163\x63\141\x6c\141\162", "\142\141\x6c\x69\141\x73" => "\x69\144", "\163\161\x6c\101\154\x69\141\x73" => "\151\x64", "\143\157\154\165\x6d\x6e" => array("\x74\x79\160\x65" => "\161\165\x61\x6c\x69\x66\x69\145\144", "\144\157\x6d\141\x69\x6e" => "\162", "\x6e\x61\x6d\x65" => "\151\x64", "\x62\x61\x6c\x69\141\x73" => "\x69\144")), "\162\x5f\156\141\x6d\x65" => array("\x74\x79\x70\x65" => "\163\143\141\x6c\x61\x72", "\x62\x61\154\151\141\x73" => "\x6e\141\155\145", "\x73\x71\x6c\101\154\x69\141\x73" => "\x6e\141\155\145", "\143\x6f\154\x75\155\x6e" => array("\x74\x79\x70\145" => "\161\x75\x61\154\151\x66\x69\x65\x64", "\x64\x6f\x6d\x61\151\156" => "\x72", "\x6e\141\155\145" => "\x6e\141\x6d\x65", "\x62\x61\x6c\x69\x61\163" => "\x6e\x61\x6d\x65"))))), array("\x70\x68\161\154" => "\x53\105\114\x45\x43\124\x20\162\56\x69\144\40\101\123\x20\x6c\145\137\x69\x64\54\40\162\56\x6e\141\x6d\145\40\x41\x53\40\154\x65\137\156\141\x6d\145\x20\106\122\117\115\40" . Robots::class . "\40\x41\x53\40\x72", "\145\x78\x70\145\x63\x74\x65\144" => array("\x6d\x6f\144\145\x6c\x73" => array(Robots::class), "\164\141\142\154\x65\x73" => array(array("\x72\x6f\142\x6f\164\163", null, "\x72")), "\143\157\x6c\165\155\x6e\163" => array("\154\x65\x5f\x69\x64" => array("\x74\x79\x70\x65" => "\163\x63\x61\x6c\x61\x72", "\142\141\x6c\151\141\163" => "\154\145\x5f\151\x64", "\163\161\154\101\154\151\x61\x73" => "\x6c\145\x5f\151\144", "\143\157\154\165\x6d\x6e" => array("\x74\x79\x70\145" => "\x71\x75\141\154\x69\x66\x69\145\144", "\x64\157\155\x61\151\x6e" => "\162", "\x6e\x61\155\145" => "\151\144", "\x62\141\154\151\x61\x73" => "\151\144")), "\154\x65\x5f\x6e\x61\155\x65" => array("\x74\x79\160\145" => "\163\143\141\x6c\141\x72", "\142\141\154\151\x61\163" => "\x6c\145\x5f\x6e\141\x6d\145", "\x73\x71\x6c\x41\154\151\x61\x73" => "\154\x65\137\x6e\141\155\145", "\x63\157\154\165\155\156" => array("\164\171\160\145" => "\x71\x75\x61\x6c\151\146\151\145\x64", "\144\157\x6d\x61\151\x6e" => "\x72", "\x6e\x61\x6d\145" => "\156\141\155\145", "\x62\x61\154\x69\x61\163" => "\156\141\155\145"))))), array("\x70\150\x71\x6c" => "\x53\x45\x4c\x45\103\124\40" . Robots::class . "\x2e\151\x64\x20\101\123\x20\x6c\145\137\x69\x64\x2c\40" . Robots::class . "\56\156\x61\x6d\145\40\x41\x53\40\154\x65\137\156\x61\x6d\145\x20\106\x52\117\115\x20" . Robots::class, "\x65\170\160\x65\x63\x74\x65\x64" => array("\x6d\157\x64\x65\x6c\163" => array(Robots::class), "\164\x61\142\154\x65\x73" => array("\162\x6f\142\157\x74\163"), "\143\157\x6c\165\155\156\163" => array("\x6c\145\x5f\x69\144" => array("\164\x79\x70\145" => "\163\x63\x61\154\x61\162", "\x62\141\x6c\151\x61\163" => "\154\x65\x5f\151\144", "\163\x71\x6c\101\154\x69\x61\163" => "\154\x65\137\151\x64", "\143\157\154\165\155\x6e" => array("\164\171\x70\x65" => "\x71\x75\x61\154\151\x66\151\145\x64", "\x64\x6f\155\x61\151\156" => "\162\157\142\x6f\x74\163", "\156\141\x6d\145" => "\x69\144", "\142\x61\x6c\x69\x61\163" => "\151\144")), "\x6c\x65\x5f\156\x61\x6d\145" => array("\x74\171\160\x65" => "\163\143\x61\x6c\141\162", "\142\x61\x6c\x69\141\163" => "\x6c\145\x5f\x6e\141\155\x65", "\x73\161\154\x41\x6c\x69\141\163" => "\x6c\145\137\156\x61\155\x65", "\143\x6f\x6c\165\x6d\156" => array("\x74\x79\x70\x65" => "\x71\165\x61\x6c\151\146\151\145\x64", "\144\157\x6d\141\x69\156" => "\162\x6f\x62\x6f\164\163", "\x6e\x61\x6d\145" => "\156\141\x6d\145", "\x62\141\154\x69\x61\163" => "\x6e\x61\x6d\145"))))), array("\160\150\x71\x6c" => "\123\105\x4c\x45\x43\124\40\x27\47\x20\145\x6d\160\164\x79\x5f\x73\164\162\x2c\40\61\60\x2e\65\x20\x64\x6f\165\x62\154\x65\x5f\x6e\x75\x6d\142\145\x72\54\40\x31\x30\x30\60\x20\101\123\40\154\x6f\156\147\x5f\156\x75\155\x62\x65\x72\x20\x46\122\117\x4d\x20" . Robots::class, "\145\x78\x70\145\x63\x74\145\144" => array("\x6d\x6f\x64\145\x6c\x73" => array(Robots::class), "\x74\x61\x62\x6c\145\163" => array("\162\157\142\157\x74\x73"), "\143\157\x6c\165\155\156\x73" => array("\x65\155\160\x74\171\137\x73\x74\162" => array("\x74\x79\x70\145" => "\x73\143\x61\154\141\x72", "\x63\157\x6c\165\x6d\156" => array("\x74\171\x70\x65" => "\154\x69\164\x65\162\141\154", "\x76\141\154\165\x65" => "\x27\x27"), "\x62\x61\154\x69\141\163" => "\x65\155\x70\164\171\x5f\163\x74\162", "\163\161\154\x41\x6c\x69\x61\163" => "\145\x6d\160\164\x79\x5f\x73\164\162"), "\x64\157\165\142\154\x65\137\156\x75\155\142\x65\x72" => array("\164\171\x70\x65" => "\x73\143\141\x6c\141\162", "\143\x6f\x6c\165\x6d\156" => array("\164\x79\160\145" => "\154\151\x74\x65\x72\x61\x6c", "\166\141\154\x75\145" => "\61\60\x2e\65"), "\142\x61\154\x69\141\163" => "\144\157\165\x62\154\x65\137\156\165\x6d\142\x65\x72", "\x73\161\154\101\x6c\x69\141\163" => "\144\157\x75\142\x6c\145\137\156\x75\x6d\x62\x65\162"), "\154\x6f\x6e\147\137\156\x75\155\142\145\162" => array("\x74\x79\160\145" => "\163\143\141\x6c\x61\x72", "\143\157\154\165\155\x6e" => array("\x74\x79\x70\x65" => "\154\x69\164\145\x72\141\x6c", "\166\141\x6c\x75\x65" => "\61\60\60\60"), "\142\x61\154\x69\x61\163" => "\x6c\157\156\x67\137\156\x75\x6d\142\x65\162", "\x73\161\154\101\154\151\x61\163" => "\154\157\156\x67\137\x6e\x75\155\x62\145\x72")))), array("\x70\150\161\x6c" => "\x53\105\114\105\x43\124\x20" . People::class . "\56\x63\x65\x64\165\154\x61\x20\x46\x52\x4f\x4d\x20" . People::class, "\x65\170\x70\145\x63\x74\145\x64" => array("\x6d\157\x64\145\154\x73" => array(People::class), "\x74\141\142\x6c\145\x73" => array("\160\x65\x72\x73\157\156\141\x73"), "\x63\x6f\154\165\155\x6e\x73" => array(People::class . "\x5f\x63\x65\x64\165\x6c\141" => array("\x74\171\x70\x65" => "\163\143\x61\x6c\x61\x72", "\142\141\154\x69\x61\163" => "\x63\x65\144\x75\154\141", "\163\x71\x6c\101\154\151\x61\163" => "\x63\x65\x64\165\154\x61", "\x63\x6f\x6c\x75\155\x6e" => array("\164\171\160\145" => "\161\165\141\x6c\151\x66\x69\145\144", "\x64\157\x6d\141\151\156" => "\160\145\162\x73\157\156\x61\163", "\x6e\x61\x6d\x65" => "\x63\145\x64\165\x6c\141", "\142\141\x6c\151\x61\x73" => "\x63\145\x64\165\x6c\141"))))), array("\160\150\x71\154" => "\163\x65\x6c\145\x63\164\40" . strtolower(People::class) . "\x2e\143\x65\144\165\x6c\x61\40\146\x72\x6f\x6d\x20" . strtolower(People::class), "\x65\170\160\x65\x63\164\145\144" => array("\155\x6f\144\145\x6c\163" => array(strtolower(People::class)), "\164\x61\x62\x6c\145\163" => array("\x70\145\x72\x73\157\156\x61\163"), "\x63\157\154\165\x6d\x6e\x73" => array(strtolower(People::class) . "\x5f\143\x65\144\165\154\x61" => array("\x74\171\160\x65" => "\163\x63\x61\154\x61\x72", "\142\141\x6c\x69\141\x73" => "\x63\x65\x64\x75\154\x61", "\163\x71\154\101\154\151\141\x73" => "\143\145\144\x75\x6c\141", "\x63\157\154\x75\x6d\156" => array("\x74\171\x70\x65" => "\x71\x75\x61\x6c\x69\x66\151\x65\x64", "\x64\x6f\155\x61\151\x6e" => "\160\145\x72\x73\x6f\156\141\163", "\x6e\x61\155\145" => "\143\145\144\x75\154\x61", "\x62\x61\154\x69\141\x73" => "\x63\145\144\165\154\x61"))))), array("\x70\x68\161\154" => "\x53\105\114\105\x43\x54\40\160\x2e\143\145\144\x75\154\141\x20\101\123\x20\x63\x65\144\x75\x6c\141\x20\x46\x52\117\115\x20" . People::class . "\40\x70", "\x65\x78\x70\x65\x63\x74\x65\x64" => array("\x6d\x6f\144\145\154\x73" => array(People::class), "\x74\141\142\154\x65\163" => array(array("\160\x65\162\x73\157\x6e\141\x73", null, "\x70")), "\143\x6f\154\165\155\x6e\163" => array("\x63\145\144\165\x6c\141" => array("\x74\171\x70\145" => "\163\x63\x61\x6c\141\x72", "\x62\x61\x6c\x69\141\x73" => "\x63\x65\x64\x75\154\x61", "\163\x71\x6c\101\154\151\x61\163" => "\x63\x65\x64\165\x6c\141", "\143\157\x6c\x75\x6d\x6e" => array("\164\x79\x70\x65" => "\161\x75\x61\x6c\x69\x66\x69\145\x64", "\144\x6f\x6d\141\151\156" => "\x70", "\x6e\x61\155\x65" => "\x63\x65\x64\x75\154\x61", "\142\x61\x6c\151\x61\163" => "\143\145\144\165\x6c\141"))))), array("\160\150\161\x6c" => "\x53\x45\114\x45\103\124\40\103\117\x4e\103\x41\x54\x28\143\x65\x64\165\154\x61\54\x27\x2d\x27\x2c\x6e\157\155\142\x72\145\163\x29\x20\x41\123\40\156\157\155\142\x72\x65\40\x46\122\x4f\115\40" . People::class, "\x65\170\160\x65\143\164\145\144" => array("\155\157\x64\x65\x6c\x73" => array(People::class), "\164\x61\142\154\145\x73" => array("\x70\x65\x72\x73\x6f\156\x61\x73"), "\x63\x6f\x6c\x75\x6d\156\x73" => array("\x6e\x6f\155\x62\x72\145" => array("\x74\x79\160\145" => "\163\143\x61\x6c\141\162", "\143\x6f\x6c\x75\x6d\156" => array("\x74\x79\x70\145" => "\x66\x75\x6e\x63\x74\151\x6f\156\x43\x61\x6c\154", "\x6e\141\155\x65" => "\x43\x4f\x4e\x43\x41\x54", "\141\162\x67\x75\x6d\x65\156\x74\x73" => array(array("\x74\x79\x70\145" => "\x71\165\x61\154\151\x66\151\145\x64", "\144\157\155\x61\151\x6e" => "\x70\145\x72\163\157\156\x61\x73", "\156\x61\155\x65" => "\x63\145\x64\165\x6c\141", "\142\141\154\151\141\x73" => "\143\x65\144\x75\x6c\141"), array("\x74\x79\x70\x65" => "\x6c\151\x74\x65\162\141\x6c", "\x76\141\x6c\165\145" => "\x27\x2d\x27"), array("\x74\x79\160\145" => "\161\x75\x61\154\x69\x66\x69\x65\x64", "\144\157\155\141\151\x6e" => "\160\145\x72\x73\157\x6e\141\x73", "\156\x61\155\x65" => "\x6e\157\x6d\142\x72\145\163", "\x62\x61\x6c\151\141\x73" => "\156\157\155\x62\162\x65\163"))), "\142\x61\x6c\x69\141\x73" => "\x6e\x6f\x6d\x62\x72\x65", "\x73\161\x6c\101\154\151\x61\163" => "\156\157\x6d\142\162\145")))), array("\x70\150\161\x6c" => "\123\105\114\105\x43\x54\40\x43\117\x4e\103\101\x54\x28" . People::class . "\x2e\x63\145\144\x75\154\141\x2c\47\55\x27\54" . People::class . "\56\x6e\x6f\x6d\142\162\145\163\x29\40\101\x53\40\x6e\157\155\x62\x72\145\x20\106\122\x4f\x4d\x20" . People::class, "\145\170\160\145\143\x74\x65\144" => array("\155\157\x64\145\154\163" => array(People::class), "\x74\141\x62\154\145\x73" => array("\x70\145\162\x73\x6f\x6e\x61\x73"), "\x63\157\x6c\x75\x6d\156\163" => array("\x6e\x6f\155\x62\162\145" => array("\x74\171\160\145" => "\163\x63\x61\x6c\141\162", "\143\x6f\x6c\x75\155\x6e" => array("\x74\x79\160\145" => "\x66\x75\x6e\x63\x74\151\x6f\x6e\103\x61\x6c\x6c", "\x6e\141\155\x65" => "\x43\x4f\x4e\x43\101\x54", "\141\162\x67\x75\x6d\145\x6e\164\163" => array(array("\x74\171\160\x65" => "\161\x75\x61\x6c\x69\146\x69\145\x64", "\x64\157\x6d\x61\151\x6e" => "\x70\145\x72\x73\x6f\x6e\141\163", "\156\141\155\145" => "\143\145\144\x75\x6c\x61", "\x62\141\x6c\x69\141\163" => "\x63\x65\144\165\x6c\x61"), array("\164\x79\160\x65" => "\x6c\x69\164\x65\x72\x61\154", "\x76\x61\154\165\x65" => "\x27\55\x27"), array("\x74\x79\160\145" => "\x71\x75\x61\154\x69\x66\x69\145\144", "\144\157\x6d\x61\x69\156" => "\x70\145\x72\x73\x6f\x6e\141\x73", "\x6e\x61\155\145" => "\x6e\157\x6d\142\162\145\x73", "\142\x61\154\151\141\x73" => "\156\x6f\155\x62\162\145\x73"))), "\142\x61\154\151\x61\x73" => "\x6e\157\x6d\142\162\145", "\163\x71\x6c\101\x6c\x69\141\163" => "\x6e\157\155\x62\x72\145")))), array("\x70\150\161\x6c" => "\x53\105\x4c\x45\x43\124\40\x2a\x20\x46\x52\117\115\40" . Robots::class . "\x20\x4a\117\111\x4e\40" . RobotsParts::class, "\x65\170\160\x65\x63\x74\x65\x64" => array("\155\x6f\x64\x65\x6c\163" => array(Robots::class), "\x74\x61\x62\x6c\x65\163" => array("\x72\157\142\x6f\164\x73"), "\143\157\x6c\x75\155\156\163" => array(lcfirst(Robots::class) => array("\x74\171\160\x65" => "\157\x62\152\145\143\164", "\155\157\144\145\x6c" => Robots::class, "\143\157\154\165\x6d\156" => "\162\157\142\x6f\164\163", "\x62\141\154\151\x61\163" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\x74\x79\160\x65" => "\157\142\x6a\145\143\x74", "\x6d\157\x64\145\154" => RobotsParts::class, "\143\157\x6c\165\155\156" => "\162\x6f\x62\157\164\163\137\x70\141\162\x74\163", "\x62\x61\x6c\151\x61\163" => lcfirst(RobotsParts::class))), "\x6a\157\151\x6e\x73" => array(array("\164\x79\160\145" => "\111\x4e\x4e\105\122", "\163\x6f\165\x72\x63\x65" => array("\162\157\142\157\x74\x73\137\160\x61\x72\164\x73", null), "\x63\x6f\x6e\144\x69\164\x69\x6f\x6e\x73" => array(array("\x74\x79\x70\145" => "\x62\151\156\141\162\x79\x2d\x6f\x70", "\157\x70" => "\x3d", "\154\145\146\x74" => array("\x74\171\160\145" => "\x71\x75\141\154\x69\x66\x69\x65\144", "\x64\x6f\x6d\141\151\156" => "\162\x6f\142\x6f\x74\163", "\156\141\x6d\145" => "\151\144", "\142\141\154\151\x61\163" => "\x69\144"), "\x72\x69\147\x68\164" => array("\164\x79\x70\145" => "\161\165\141\x6c\x69\x66\x69\x65\x64", "\144\157\x6d\x61\151\156" => "\162\x6f\x62\x6f\x74\163\x5f\160\141\162\x74\163", "\x6e\x61\x6d\x65" => "\162\157\142\x6f\x74\163\x5f\151\x64", "\142\141\x6c\x69\x61\163" => "\x72\x6f\142\157\x74\x73\x5f\x69\144"))))))), array("\x70\x68\x71\x6c" => "\x53\x45\114\x45\x43\x54\40\52\40\106\x52\x4f\x4d\40" . Robots::class . "\40\103\x52\117\x53\123\x20\x4a\117\111\x4e\x20" . RobotsParts::class, "\145\x78\160\145\x63\x74\145\x64" => array("\x6d\157\144\x65\154\163" => array(Robots::class), "\x74\141\142\x6c\x65\x73" => array("\162\x6f\142\157\164\163"), "\x63\x6f\x6c\x75\155\x6e\x73" => array(lcfirst(Robots::class) => array("\x74\x79\160\x65" => "\157\x62\152\145\x63\x74", "\x6d\157\x64\145\x6c" => Robots::class, "\143\157\x6c\x75\155\156" => "\x72\157\142\157\x74\x73", "\x62\141\154\151\141\163" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\164\x79\160\145" => "\157\142\152\145\x63\164", "\155\x6f\144\x65\x6c" => RobotsParts::class, "\143\157\154\165\x6d\x6e" => "\x72\x6f\142\x6f\x74\x73\137\160\141\162\x74\163", "\142\x61\x6c\x69\141\163" => lcfirst(RobotsParts::class))), "\152\157\151\156\163" => array(array("\164\x79\160\x65" => "\103\122\117\123\x53", "\x73\x6f\165\162\x63\145" => array("\162\x6f\142\157\x74\163\x5f\x70\141\x72\x74\x73", null), "\143\x6f\x6e\x64\151\164\151\x6f\156\x73" => array(array("\164\x79\x70\x65" => "\x62\151\x6e\141\162\x79\x2d\x6f\x70", "\x6f\160" => "\75", "\x6c\x65\x66\164" => array("\x74\171\x70\x65" => "\161\165\141\154\x69\x66\151\145\144", "\144\x6f\x6d\x61\151\x6e" => "\162\x6f\142\157\164\163", "\x6e\141\155\145" => "\151\x64", "\142\x61\154\151\141\163" => "\151\144"), "\x72\151\147\150\164" => array("\164\x79\x70\145" => "\161\165\x61\x6c\151\146\151\x65\x64", "\144\x6f\x6d\x61\x69\156" => "\162\157\x62\157\164\163\137\160\x61\162\x74\x73", "\x6e\141\155\x65" => "\162\x6f\142\157\164\163\x5f\x69\x64", "\142\141\x6c\x69\141\x73" => "\x72\x6f\x62\x6f\x74\x73\137\151\x64"))))))), array("\x70\150\x71\x6c" => "\123\x45\114\x45\103\124\40\x2a\40\106\122\117\115\40" . Robots::class . "\x20\114\x45\106\x54\x20\112\x4f\x49\x4e\40" . RobotsParts::class . "\40\x52\x49\x47\110\x54\40\x4a\x4f\x49\116\x20" . Parts::class, "\145\170\x70\x65\143\164\145\x64" => array("\155\157\144\145\x6c\x73" => array(Robots::class), "\x74\x61\142\x6c\x65\163" => array("\162\x6f\142\157\x74\x73"), "\x63\157\154\165\155\x6e\x73" => array(lcfirst(RobotsParts::class) => array("\x74\x79\x70\145" => "\x6f\x62\152\x65\143\x74", "\x6d\x6f\144\145\x6c" => RobotsParts::class, "\x63\x6f\x6c\165\155\x6e" => "\162\x6f\142\x6f\x74\163\137\160\x61\162\x74\163", "\142\141\x6c\151\141\163" => lcfirst(RobotsParts::class)), lcfirst(Robots::class) => array("\164\x79\160\x65" => "\x6f\142\152\145\143\164", "\155\x6f\x64\145\x6c" => Robots::class, "\143\157\x6c\165\x6d\156" => "\x72\x6f\142\157\164\163", "\142\x61\x6c\x69\141\x73" => lcfirst(Robots::class)), lcfirst(Parts::class) => array("\164\x79\x70\145" => "\x6f\142\152\145\x63\x74", "\x6d\x6f\144\145\154" => Parts::class, "\x63\157\x6c\165\x6d\x6e" => "\160\141\x72\x74\x73", "\142\141\154\151\141\163" => lcfirst(Parts::class))), "\152\157\151\x6e\x73" => array(array("\164\171\x70\145" => "\114\105\106\x54", "\x73\157\x75\162\x63\x65" => array("\162\x6f\x62\157\164\x73\x5f\x70\141\162\x74\163", null), "\x63\157\156\x64\x69\164\151\x6f\156\x73" => array(array("\164\171\x70\x65" => "\x62\151\156\x61\x72\x79\x2d\157\160", "\x6f\160" => "\x3d", "\x6c\x65\146\x74" => array("\164\171\x70\x65" => "\x71\x75\x61\x6c\x69\146\x69\145\144", "\x64\x6f\155\x61\151\156" => "\162\157\x62\157\164\163", "\x6e\141\x6d\145" => "\151\x64", "\x62\141\x6c\151\x61\163" => "\151\144"), "\x72\x69\147\150\x74" => array("\x74\x79\160\145" => "\x71\x75\x61\x6c\x69\146\x69\x65\144", "\x64\x6f\x6d\141\x69\156" => "\162\157\x62\x6f\x74\x73\137\x70\141\162\164\163", "\x6e\141\155\x65" => "\162\157\x62\x6f\x74\163\x5f\151\x64", "\x62\x61\154\151\141\x73" => "\162\x6f\142\x6f\x74\163\137\151\144")))), array("\164\171\160\x65" => "\x52\x49\x47\110\124", "\x73\157\165\x72\x63\145" => array("\160\x61\162\164\x73", null), "\x63\157\x6e\x64\x69\164\151\x6f\x6e\x73" => array())))), array("\x70\150\x71\154" => "\x53\105\114\105\103\124\40\x2a\40\106\x52\117\x4d\x20" . RobotsParts::class . "\40\x4c\105\106\124\40\117\125\x54\x45\122\40\112\x4f\x49\x4e\x20" . Robots::class . "\x20\122\x49\x47\x48\124\40\x4f\x55\x54\105\122\x20\x4a\117\x49\x4e\40" . Parts::class, "\x65\x78\160\145\143\164\x65\x64" => array("\155\157\144\145\154\x73" => array(RobotsParts::class), "\x74\x61\x62\154\145\x73" => array("\x72\x6f\x62\x6f\x74\x73\137\x70\x61\x72\x74\x73"), "\143\157\154\x75\155\156\163" => array(lcfirst(RobotsParts::class) => array("\x74\171\x70\x65" => "\157\x62\x6a\145\143\x74", "\155\x6f\144\145\154" => RobotsParts::class, "\143\157\x6c\x75\155\156" => "\x72\157\142\x6f\x74\x73\137\160\141\162\164\163", "\142\141\154\151\141\x73" => lcfirst(RobotsParts::class)), lcfirst(Robots::class) => array("\x74\171\160\145" => "\157\142\x6a\145\x63\x74", "\155\x6f\144\x65\x6c" => Robots::class, "\x63\x6f\x6c\165\x6d\x6e" => "\162\157\142\x6f\x74\x73", "\142\141\154\151\141\x73" => lcfirst(Robots::class)), lcfirst(Parts::class) => array("\164\171\160\x65" => "\157\142\152\x65\143\164", "\155\157\x64\x65\x6c" => Parts::class, "\x63\157\154\x75\x6d\156" => "\160\141\x72\x74\163", "\x62\141\154\151\141\x73" => lcfirst(Parts::class))), "\x6a\157\151\x6e\163" => array(array("\164\171\160\x65" => "\114\105\x46\x54", "\163\157\165\x72\143\145" => array("\162\x6f\x62\x6f\x74\163", null), "\x63\157\156\144\151\x74\151\157\x6e\163" => array(array("\164\171\160\145" => "\x62\x69\x6e\141\162\171\55\x6f\x70", "\157\x70" => "\x3d", "\x6c\x65\146\164" => array("\164\x79\160\145" => "\x71\165\x61\154\151\146\x69\145\x64", "\144\x6f\155\141\x69\156" => "\162\x6f\142\x6f\x74\163\x5f\x70\x61\162\x74\x73", "\156\141\155\x65" => "\x72\157\142\x6f\164\163\137\x69\x64", "\x62\141\154\151\141\163" => "\162\x6f\x62\157\164\163\137\x69\x64"), "\x72\151\x67\x68\164" => array("\164\171\x70\145" => "\161\x75\x61\x6c\x69\x66\x69\145\144", "\144\157\x6d\141\x69\156" => "\x72\x6f\x62\x6f\164\x73", "\x6e\141\155\145" => "\151\x64", "\142\141\x6c\x69\x61\163" => "\151\x64")))), array("\164\171\160\145" => "\x52\x49\x47\110\124", "\x73\157\165\x72\x63\x65" => array("\160\x61\x72\x74\x73", null), "\x63\x6f\x6e\144\151\x74\151\157\x6e\x73" => array(array("\164\171\160\145" => "\x62\151\x6e\x61\x72\171\55\157\160", "\x6f\160" => "\75", "\x6c\145\x66\x74" => array("\164\x79\160\x65" => "\161\165\x61\x6c\151\x66\151\x65\144", "\144\157\x6d\x61\x69\156" => "\162\x6f\142\157\x74\x73\137\160\141\x72\164\163", "\156\x61\x6d\145" => "\160\x61\x72\164\x73\x5f\151\144", "\x62\141\154\x69\141\x73" => "\x70\141\x72\164\163\137\x69\x64"), "\162\x69\x67\x68\x74" => array("\x74\x79\160\145" => "\x71\x75\141\154\151\x66\x69\145\x64", "\144\157\155\x61\151\156" => "\x70\141\x72\x74\x73", "\x6e\141\155\x65" => "\151\144", "\x62\141\x6c\151\x61\163" => "\x69\x64"))))))), array("\160\150\x71\x6c" => "\x53\105\x4c\x45\103\x54\x20\52\40\x46\x52\x4f\115\40" . Robots::class . "\40\112\x4f\111\x4e\x20" . RobotsParts::class . "\x20\x4f\116\x20" . Robots::class . "\x2e\151\x64\x20\75\40" . RobotsParts::class . "\56\162\x6f\142\157\164\x73\137\151\144", "\x65\x78\160\x65\143\x74\145\144" => array("\x6d\157\x64\x65\154\x73" => array(Robots::class), "\x74\x61\x62\x6c\145\163" => array("\162\157\142\157\164\163"), "\143\157\154\165\x6d\156\163" => array(lcfirst(Robots::class) => array("\x74\x79\x70\145" => "\157\x62\152\x65\x63\x74", "\155\157\144\x65\154" => Robots::class, "\x63\157\x6c\x75\x6d\x6e" => "\x72\157\x62\157\x74\x73", "\x62\x61\x6c\151\141\x73" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\x74\171\160\145" => "\157\142\x6a\x65\143\x74", "\155\157\144\x65\x6c" => RobotsParts::class, "\143\x6f\x6c\x75\x6d\x6e" => "\162\x6f\142\157\x74\x73\x5f\x70\x61\162\164\163", "\142\x61\x6c\x69\x61\163" => lcfirst(RobotsParts::class))), "\x6a\x6f\151\156\163" => array(array("\x74\171\160\145" => "\111\116\x4e\105\122", "\x73\157\x75\162\143\145" => array("\162\x6f\x62\157\x74\163\x5f\x70\141\162\164\163", null), "\143\157\x6e\144\151\x74\151\157\156\x73" => array(array("\x74\x79\160\x65" => "\x62\151\x6e\141\x72\x79\55\x6f\x70", "\x6f\x70" => "\75", "\x6c\x65\x66\164" => array("\x74\171\x70\145" => "\x71\165\x61\154\151\146\151\145\x64", "\x64\x6f\155\141\151\x6e" => "\x72\x6f\x62\157\x74\163", "\x6e\141\155\145" => "\x69\x64", "\x62\x61\x6c\151\141\163" => "\x69\x64"), "\x72\151\x67\x68\x74" => array("\164\x79\x70\145" => "\x71\x75\141\154\151\146\151\x65\x64", "\144\157\155\x61\x69\156" => "\162\157\x62\x6f\164\x73\137\x70\x61\x72\164\163", "\x6e\x61\155\145" => "\x72\x6f\x62\157\164\163\x5f\x69\144", "\x62\x61\x6c\x69\141\163" => "\162\157\x62\157\x74\x73\137\151\x64"))))))), array("\x70\150\161\154" => "\123\x45\x4c\105\x43\124\40\x2a\x20\106\122\x4f\x4d\40" . Robots::class . "\x20\114\x45\x46\x54\40\x4f\125\124\105\x52\40\x4a\x4f\111\116\x20" . RobotsParts::class . "\40\x4f\x4e\x20" . Robots::class . "\56\151\144\x20\x3d\40" . RobotsParts::class . "\x2e\162\x6f\x62\x6f\x74\163\137\x69\144\x20\x41\x4e\104\x20" . RobotsParts::class . "\x2e\x72\157\142\157\164\x73\137\151\144\40\x3d\40" . Robots::class . "\x2e\151\x64\40\x57\110\105\122\105\x20" . Robots::class . "\56\151\144\x20\111\x53\40\x4e\x55\114\x4c", "\x65\x78\160\x65\143\164\145\x64" => array("\155\x6f\144\145\154\163" => array(Robots::class), "\x74\141\142\x6c\x65\163" => array("\x72\x6f\x62\157\x74\x73"), "\143\x6f\154\x75\155\x6e\x73" => array(lcfirst(Robots::class) => array("\164\x79\160\x65" => "\x6f\x62\152\145\143\164", "\155\157\144\x65\x6c" => Robots::class, "\x63\157\154\165\x6d\x6e" => "\x72\x6f\142\157\164\x73", "\x62\141\154\x69\x61\x73" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\164\171\x70\x65" => "\x6f\x62\152\x65\x63\164", "\x6d\157\144\x65\154" => RobotsParts::class, "\x63\x6f\x6c\165\155\156" => "\162\x6f\x62\157\x74\x73\x5f\160\x61\162\x74\x73", "\142\x61\x6c\151\x61\163" => lcfirst(RobotsParts::class))), "\152\x6f\151\156\163" => array(array("\164\x79\160\145" => "\x4c\105\x46\124", "\x73\x6f\x75\162\143\145" => array("\162\157\142\x6f\164\163\137\160\141\x72\164\x73", null), "\143\x6f\x6e\x64\x69\164\x69\x6f\x6e\163" => array(array("\x74\171\160\145" => "\142\x69\156\x61\162\x79\x2d\157\x70", "\x6f\160" => "\75", "\154\145\x66\164" => array("\164\x79\160\x65" => "\x62\151\x6e\141\162\x79\55\x6f\160", "\157\x70" => "\75", "\x6c\x65\146\164" => array("\x74\171\160\x65" => "\161\x75\141\154\x69\x66\x69\145\144", "\144\157\x6d\x61\151\156" => "\162\x6f\x62\x6f\164\x73", "\156\141\x6d\x65" => "\x69\x64", "\x62\x61\154\x69\141\x73" => "\x69\144"), "\x72\x69\x67\150\x74" => array("\x74\171\x70\x65" => "\142\x69\x6e\141\x72\x79\x2d\x6f\x70", "\157\x70" => "\101\x4e\x44", "\154\x65\146\164" => array("\164\x79\x70\x65" => "\161\165\x61\x6c\x69\x66\x69\145\144", "\x64\157\155\x61\x69\x6e" => "\162\157\x62\x6f\x74\163\x5f\160\x61\162\x74\x73", "\156\141\x6d\145" => "\162\x6f\x62\x6f\x74\x73\x5f\x69\x64", "\142\141\x6c\151\141\163" => "\162\157\x62\157\164\163\137\x69\x64"), "\162\151\147\150\x74" => array("\x74\171\160\145" => "\x71\x75\141\154\151\146\x69\x65\x64", "\144\157\x6d\141\x69\156" => "\162\157\142\157\164\163\x5f\x70\x61\x72\x74\163", "\x6e\x61\x6d\145" => "\x72\157\x62\x6f\x74\x73\x5f\x69\x64", "\x62\x61\154\151\141\163" => "\x72\157\142\157\x74\163\x5f\x69\144"))), "\162\151\x67\150\164" => array("\164\x79\160\145" => "\x71\x75\141\154\151\146\x69\145\144", "\144\x6f\x6d\141\151\156" => "\x72\x6f\142\x6f\164\163", "\156\x61\155\145" => "\x69\144", "\x62\x61\x6c\x69\141\163" => "\151\x64"))))), "\x77\150\x65\x72\x65" => array("\164\x79\160\x65" => "\165\x6e\x61\162\171\x2d\x6f\x70", "\x6f\160" => "\40\x49\x53\40\x4e\x55\x4c\114", "\x6c\145\146\x74" => array("\x74\171\160\145" => "\161\165\141\x6c\151\146\151\x65\144", "\x64\x6f\x6d\x61\x69\156" => "\162\x6f\x62\157\x74\163", "\x6e\x61\155\x65" => "\151\144", "\x62\x61\154\151\x61\x73" => "\151\x64")))), array("\160\150\161\x6c" => "\x53\105\x4c\x45\103\124\40\x2a\40\106\122\x4f\115\x20" . Robots::class . "\x20\122\x49\x47\110\x54\40\x4f\125\124\105\x52\x20\x4a\x4f\x49\116\x20" . RobotsParts::class . "\40\117\x4e\40" . Robots::class . "\56\151\x64\40\x3d\x20" . RobotsParts::class . "\x2e\162\157\x62\157\x74\163\137\x69\144\40\x41\116\104\40" . RobotsParts::class . "\56\x72\x6f\x62\x6f\x74\x73\x5f\x69\144\40\x3d\40" . Robots::class . "\x2e\x69\x64\x20\127\x48\x45\x52\x45\x20" . RobotsParts::class . "\x2e\x72\x6f\142\x6f\164\x73\x5f\x69\x64\40\111\123\x20\116\x4f\124\40\116\125\x4c\114", "\x65\170\x70\x65\143\x74\x65\x64" => array("\155\157\144\145\x6c\x73" => array(Robots::class), "\x74\141\x62\154\145\163" => array("\x72\x6f\142\x6f\164\x73"), "\143\157\154\165\x6d\x6e\x73" => array(lcfirst(Robots::class) => array("\164\x79\x70\145" => "\157\x62\x6a\145\x63\164", "\x6d\x6f\144\x65\154" => Robots::class, "\x63\157\154\165\155\x6e" => "\162\157\142\157\x74\163", "\x62\141\x6c\x69\141\163" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\164\171\x70\145" => "\157\142\152\x65\x63\164", "\155\x6f\144\145\154" => RobotsParts::class, "\143\157\x6c\x75\155\156" => "\x72\x6f\142\157\164\163\x5f\x70\x61\162\x74\x73", "\142\x61\x6c\151\x61\163" => lcfirst(RobotsParts::class))), "\x6a\157\151\x6e\x73" => array(array("\x74\x79\x70\145" => "\x52\111\107\x48\x54", "\163\x6f\x75\x72\143\145" => array("\162\x6f\x62\157\x74\x73\137\160\141\x72\x74\x73", null), "\143\x6f\156\x64\151\164\x69\x6f\156\163" => array(array("\x74\171\x70\x65" => "\142\151\x6e\141\x72\x79\x2d\x6f\160", "\x6f\160" => "\x3d", "\154\145\146\x74" => array("\164\x79\160\x65" => "\142\x69\x6e\x61\162\x79\x2d\x6f\160", "\157\x70" => "\x3d", "\154\x65\146\x74" => array("\164\171\x70\x65" => "\161\x75\x61\x6c\x69\146\x69\145\144", "\144\157\x6d\141\151\x6e" => "\162\x6f\142\x6f\164\163", "\156\x61\155\145" => "\x69\x64", "\142\141\x6c\x69\141\163" => "\x69\144"), "\162\x69\x67\150\164" => array("\x74\x79\x70\145" => "\142\151\x6e\141\162\x79\55\157\160", "\x6f\160" => "\x41\x4e\x44", "\x6c\x65\x66\164" => array("\x74\x79\x70\145" => "\161\x75\x61\x6c\151\x66\x69\x65\x64", "\144\x6f\x6d\x61\x69\156" => "\162\157\142\157\x74\x73\x5f\x70\x61\162\x74\163", "\x6e\x61\x6d\145" => "\162\x6f\x62\157\164\163\137\x69\144", "\142\x61\154\x69\141\x73" => "\x72\157\142\x6f\164\163\137\151\144"), "\x72\x69\147\x68\164" => array("\164\x79\x70\x65" => "\161\165\141\154\x69\146\x69\x65\x64", "\x64\x6f\155\x61\151\x6e" => "\x72\x6f\x62\157\x74\x73\x5f\160\x61\162\x74\163", "\156\141\155\x65" => "\162\x6f\142\x6f\x74\x73\x5f\x69\x64", "\142\141\154\x69\x61\163" => "\x72\157\142\x6f\x74\163\x5f\x69\x64"))), "\162\151\x67\x68\164" => array("\x74\x79\160\x65" => "\x71\165\141\154\x69\146\x69\145\144", "\144\x6f\155\x61\151\x6e" => "\162\157\142\157\164\x73", "\x6e\x61\x6d\145" => "\x69\x64", "\x62\x61\x6c\151\x61\x73" => "\151\x64"))))), "\x77\150\145\x72\x65" => array("\164\171\x70\x65" => "\x75\x6e\141\x72\171\x2d\157\160", "\x6f\160" => "\x20\111\x53\x20\x4e\117\124\40\116\x55\114\x4c", "\x6c\145\x66\x74" => array("\164\171\x70\x65" => "\x71\x75\x61\154\x69\146\x69\x65\144", "\144\157\x6d\141\x69\156" => "\x72\x6f\142\157\x74\163\137\160\x61\162\164\163", "\156\141\x6d\145" => "\x72\157\x62\157\164\x73\x5f\x69\144", "\142\141\x6c\x69\x61\163" => "\x72\x6f\142\x6f\x74\163\x5f\151\144")))), array("\x70\150\161\x6c" => "\123\105\x4c\105\103\x54\x20\x2a\x20\106\x52\x4f\115\40" . Robots::class . "\40\106\125\x4c\x4c\x20\x4f\125\x54\105\x52\40\112\x4f\x49\x4e\x20" . RobotsParts::class, "\145\x78\x70\x65\x63\164\x65\x64" => array("\155\x6f\144\x65\x6c\x73" => array(Robots::class), "\164\141\x62\x6c\x65\163" => array("\162\157\142\157\164\163"), "\143\x6f\154\x75\x6d\x6e\x73" => array(lcfirst(Robots::class) => array("\x74\x79\x70\145" => "\157\x62\152\x65\143\x74", "\155\x6f\x64\145\x6c" => Robots::class, "\x63\157\154\165\155\x6e" => "\x72\x6f\142\157\x74\163", "\x62\x61\154\x69\141\x73" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\x74\x79\160\x65" => "\x6f\x62\152\x65\x63\164", "\155\157\x64\145\154" => RobotsParts::class, "\x63\x6f\x6c\165\155\156" => "\162\157\x62\157\x74\x73\x5f\x70\x61\162\x74\163", "\x62\x61\154\x69\x61\163" => lcfirst(RobotsParts::class))), "\152\157\151\156\x73" => array(array("\164\x79\x70\x65" => "\x46\x55\x4c\114\x20\x4f\x55\x54\x45\x52", "\x73\157\165\162\143\x65" => array("\x72\157\x62\x6f\x74\163\x5f\x70\141\x72\164\163", null), "\x63\157\156\144\151\164\151\157\156\163" => array(array("\164\171\x70\x65" => "\142\x69\156\x61\162\x79\x2d\x6f\x70", "\x6f\x70" => "\75", "\154\x65\146\x74" => array("\164\x79\x70\x65" => "\x71\165\x61\x6c\x69\146\151\145\x64", "\x64\157\x6d\x61\151\x6e" => "\x72\157\142\x6f\164\163", "\x6e\141\155\145" => "\x69\144", "\x62\x61\x6c\x69\141\x73" => "\x69\144"), "\x72\151\x67\150\164" => array("\x74\x79\x70\145" => "\x71\x75\x61\x6c\151\146\x69\x65\x64", "\x64\157\155\141\x69\156" => "\x72\157\x62\157\164\163\137\x70\x61\162\x74\x73", "\x6e\x61\x6d\x65" => "\162\157\142\x6f\164\x73\x5f\151\144", "\142\x61\x6c\151\141\163" => "\x72\157\x62\x6f\164\x73\x5f\x69\x64"))))))), array("\x70\x68\x71\154" => "\x53\105\x4c\105\x43\x54\40\x2a\40\106\x52\x4f\x4d\40" . RobotsParts::class . "\40\112\117\111\x4e\40" . Robots::class, "\145\x78\160\145\x63\x74\145\x64" => array("\x6d\157\144\145\x6c\x73" => array(RobotsParts::class), "\x74\141\142\x6c\x65\163" => array("\x72\x6f\142\x6f\164\x73\137\160\141\x72\x74\x73"), "\x63\157\154\165\x6d\x6e\163" => array(lcfirst(RobotsParts::class) => array("\x74\x79\160\x65" => "\157\x62\x6a\145\x63\164", "\x6d\x6f\x64\x65\x6c" => RobotsParts::class, "\143\x6f\154\x75\x6d\156" => "\162\157\x62\157\164\163\137\x70\141\x72\164\x73", "\x62\141\x6c\151\x61\x73" => lcfirst(RobotsParts::class)), lcfirst(Robots::class) => array("\x74\x79\160\145" => "\x6f\142\x6a\145\x63\x74", "\x6d\157\x64\145\154" => Robots::class, "\x63\157\x6c\165\x6d\156" => "\162\157\142\157\164\x73", "\142\141\x6c\x69\x61\x73" => lcfirst(Robots::class))), "\152\157\x69\156\163" => array(array("\164\171\160\x65" => "\x49\116\116\105\x52", "\x73\x6f\x75\x72\143\145" => array("\162\157\x62\x6f\164\x73", null), "\x63\157\x6e\x64\x69\x74\151\157\x6e\163" => array(array("\x74\171\160\x65" => "\142\151\156\141\162\x79\55\157\x70", "\157\x70" => "\75", "\154\x65\146\x74" => array("\x74\x79\x70\145" => "\x71\x75\x61\154\x69\x66\151\x65\x64", "\144\x6f\155\141\x69\x6e" => "\x72\157\x62\157\164\x73\x5f\x70\x61\x72\164\x73", "\x6e\141\x6d\x65" => "\x72\157\142\x6f\x74\163\x5f\151\144", "\142\x61\154\x69\x61\163" => "\x72\x6f\142\x6f\x74\163\137\x69\x64"), "\162\151\147\150\164" => array("\x74\171\160\x65" => "\161\165\x61\x6c\x69\146\x69\145\144", "\144\157\155\141\151\x6e" => "\x72\x6f\142\157\x74\x73", "\156\141\155\x65" => "\x69\x64", "\142\141\154\x69\x61\163" => "\151\x64"))))))), array("\160\x68\x71\154" => "\x53\105\114\x45\x43\x54\x20\x72\56\52\54\40\x70\56\x2a\x20\106\x52\117\x4d\40" . Robots::class . "\x20\x41\x53\40\162\40\x4a\117\x49\116\x20" . RobotsParts::class . "\x20\101\x53\40\160", "\x65\x78\160\145\x63\x74\x65\144" => array("\x6d\157\144\x65\154\163" => array(Robots::class), "\x74\x61\x62\x6c\x65\x73" => array(array("\162\x6f\x62\x6f\x74\163", null, "\162")), "\143\x6f\x6c\x75\155\156\163" => array("\162" => array("\164\171\160\145" => "\x6f\x62\152\145\143\x74", "\x6d\x6f\x64\145\154" => Robots::class, "\x63\x6f\x6c\x75\155\x6e" => "\162", "\142\141\154\x69\141\163" => "\x72"), "\160" => array("\x74\171\160\x65" => "\157\x62\152\145\x63\164", "\x6d\x6f\x64\x65\154" => RobotsParts::class, "\x63\x6f\x6c\165\155\x6e" => "\160", "\x62\x61\154\151\x61\x73" => "\x70")), "\152\x6f\151\x6e\x73" => array(array("\x74\171\x70\x65" => "\x49\x4e\116\105\122", "\163\157\165\162\x63\x65" => array("\x72\157\142\x6f\x74\x73\137\160\141\162\x74\163", null, "\x70"), "\x63\x6f\156\144\151\x74\151\157\156\163" => array(array("\164\171\160\x65" => "\x62\151\x6e\x61\x72\x79\55\x6f\x70", "\157\x70" => "\75", "\x6c\x65\146\164" => array("\x74\171\x70\145" => "\161\x75\x61\x6c\151\x66\151\x65\144", "\x64\x6f\x6d\141\151\x6e" => "\x72", "\156\x61\x6d\x65" => "\151\144", "\x62\141\154\x69\141\163" => "\x69\x64"), "\162\x69\147\150\164" => array("\x74\x79\160\145" => "\x71\165\x61\x6c\x69\x66\x69\145\144", "\x64\157\155\141\x69\x6e" => "\160", "\x6e\x61\155\x65" => "\162\157\142\x6f\164\x73\137\x69\x64", "\142\x61\x6c\151\141\163" => "\x72\x6f\142\157\x74\163\x5f\151\144"))))))), array("\x70\x68\x71\x6c" => "\x53\x45\x4c\x45\103\124\x20\x2a\40\x46\122\x4f\x4d\40" . Robots::class . "\40\101\123\x20\x72\40\x4a\117\111\x4e\40" . RobotsParts::class . "\x20\x41\123\40\x70", "\145\x78\160\145\143\164\145\x64" => array("\155\x6f\144\145\x6c\x73" => array(Robots::class), "\x74\x61\x62\x6c\145\163" => array(array("\x72\157\x62\157\164\x73", null, "\162")), "\x63\157\154\165\155\x6e\163" => array(lcfirst(Robots::class) => array("\x74\x79\160\x65" => "\x6f\142\x6a\x65\143\x74", "\x6d\157\144\x65\154" => Robots::class, "\143\x6f\x6c\165\x6d\156" => "\162", "\142\141\154\151\x61\163" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\x74\x79\x70\145" => "\x6f\142\152\145\x63\x74", "\x6d\x6f\144\x65\154" => RobotsParts::class, "\x63\157\x6c\165\x6d\156" => "\160", "\x62\141\x6c\x69\x61\x73" => lcfirst(RobotsParts::class))), "\x6a\157\x69\156\163" => array(array("\164\x79\160\145" => "\x49\x4e\116\105\122", "\163\157\165\162\143\x65" => array("\162\157\142\157\x74\163\137\x70\x61\162\x74\x73", null, "\160"), "\x63\x6f\x6e\x64\x69\164\x69\157\x6e\163" => array(array("\164\171\x70\145" => "\142\x69\x6e\141\x72\x79\x2d\x6f\x70", "\157\160" => "\x3d", "\154\x65\x66\164" => array("\164\x79\x70\x65" => "\x71\x75\x61\x6c\151\x66\151\x65\144", "\x64\x6f\155\141\x69\x6e" => "\162", "\156\x61\155\145" => "\151\x64", "\142\x61\154\x69\x61\x73" => "\x69\144"), "\x72\151\x67\x68\164" => array("\164\x79\160\145" => "\161\165\141\x6c\x69\146\x69\x65\x64", "\x64\157\x6d\141\151\x6e" => "\x70", "\x6e\x61\x6d\145" => "\162\157\x62\x6f\x74\163\137\151\x64", "\142\x61\154\x69\141\163" => "\x72\x6f\x62\x6f\x74\163\137\151\144"))))))), array("\160\150\161\x6c" => "\123\105\114\105\x43\124\40\x72\56\x2a\40\106\122\117\115\40" . Robots::class . "\40\x72\40\111\116\116\105\x52\40\x4a\x4f\111\116\40" . RobotsParts::class, "\x65\170\160\x65\x63\x74\x65\x64" => array("\155\157\144\145\154\163" => array(Robots::class), "\164\141\142\x6c\x65\163" => array(array("\162\157\x62\x6f\164\x73", null, "\162")), "\143\157\x6c\x75\155\x6e\x73" => array("\162" => array("\164\171\x70\x65" => "\x6f\142\152\145\143\x74", "\155\157\x64\145\x6c" => Robots::class, "\143\x6f\x6c\165\155\x6e" => "\162", "\x62\141\x6c\x69\141\163" => "\x72")), "\x6a\157\151\156\x73" => array(array("\x74\x79\160\x65" => "\111\116\116\x45\x52", "\x73\157\x75\162\x63\145" => array("\x72\157\x62\157\164\x73\137\160\141\x72\164\163", null), "\x63\x6f\x6e\x64\x69\164\x69\x6f\x6e\163" => array(array("\x74\171\x70\145" => "\x62\x69\x6e\x61\x72\x79\x2d\x6f\160", "\x6f\x70" => "\x3d", "\x6c\x65\x66\164" => array("\x74\x79\160\145" => "\x71\x75\141\154\x69\146\x69\145\144", "\144\x6f\x6d\x61\151\156" => "\x72", "\x6e\x61\x6d\x65" => "\151\144", "\142\x61\154\151\141\163" => "\x69\x64"), "\x72\151\147\150\164" => array("\164\x79\160\145" => "\161\x75\141\x6c\151\x66\151\145\x64", "\x64\157\155\x61\x69\x6e" => "\x72\157\x62\157\164\163\137\x70\x61\x72\x74\x73", "\156\x61\155\x65" => "\x72\x6f\x62\x6f\x74\163\x5f\151\144", "\142\x61\154\151\141\x73" => "\x72\157\142\157\x74\x73\137\x69\x64"))))))), array("\160\150\x71\x6c" => "\123\x45\x4c\x45\103\x54\40\50\x20" . People::class . "\x2e\x63\x75\x70\157\x20\x2b\x20\x31\60\60\x29\x20\57\40\x28" . Products::class . "\56\x70\162\151\x63\x65\40\52\x20\x30\x2e\x31\65\51\40\106\x52\117\x4d\x20" . People::class . "\x20\112\117\111\x4e\x20" . Products::class, "\145\170\160\x65\x63\164\x65\x64" => array("\155\x6f\144\x65\154\163" => array(People::class), "\x74\141\x62\154\x65\x73" => array("\160\x65\162\x73\157\156\141\163"), "\x63\157\154\x75\x6d\x6e\x73" => array("\x5f\x30" => array("\x74\x79\160\x65" => "\x73\143\x61\154\141\162", "\143\x6f\x6c\x75\x6d\156" => array("\x74\171\x70\x65" => "\142\x69\156\141\162\x79\55\x6f\x70", "\157\x70" => "\x2f", "\x6c\x65\x66\164" => array("\x74\171\160\145" => "\160\141\162\x65\x6e\164\x68\x65\163\145\x73", "\154\x65\146\164" => array("\x74\x79\160\145" => "\x62\x69\x6e\141\x72\x79\x2d\157\x70", "\x6f\x70" => "\x2b", "\x6c\x65\146\164" => array("\164\x79\x70\x65" => "\x71\x75\141\154\151\146\x69\145\144", "\144\x6f\x6d\141\x69\156" => "\x70\145\x72\x73\157\156\141\x73", "\156\141\155\145" => "\x63\x75\160\x6f", "\x62\x61\x6c\x69\141\x73" => "\x63\x75\x70\x6f"), "\162\151\x67\x68\164" => array("\164\171\160\x65" => "\x6c\x69\164\145\162\x61\x6c", "\x76\141\x6c\x75\145" => "\x31\x30\60"))), "\162\151\x67\x68\164" => array("\x74\171\x70\x65" => "\x70\x61\162\145\156\164\x68\x65\x73\145\163", "\154\x65\146\164" => array("\164\171\x70\x65" => "\142\x69\x6e\x61\162\171\55\157\160", "\157\160" => "\52", "\154\x65\146\164" => array("\x74\171\x70\145" => "\161\165\141\x6c\151\146\x69\x65\x64", "\144\x6f\x6d\x61\x69\x6e" => "\160\162\157\x64\165\143\164\x73", "\156\141\155\x65" => "\160\162\x69\x63\x65", "\142\x61\x6c\x69\141\x73" => "\x70\162\x69\x63\x65"), "\162\x69\x67\x68\x74" => array("\x74\x79\160\145" => "\x6c\151\x74\x65\x72\x61\154", "\166\x61\x6c\165\145" => "\x30\x2e\x31\65")))))), "\152\x6f\151\x6e\x73" => array(array("\x74\x79\160\145" => "\x49\x4e\x4e\x45\122", "\x73\157\165\162\x63\x65" => array("\x70\162\157\144\x75\143\x74\163", null), "\x63\157\x6e\x64\151\164\151\157\x6e\163" => array())))), array("\x70\150\x71\x6c" => "\123\105\114\105\103\124\x20\50\x20" . People::class . "\x2e\143\165\x70\x6f\40\x2b\x20\61\x30\60\x29\40\x2f\40\50" . SomeProducts::class . "\56\x70\162\151\x63\x65\x20\x2a\40\x30\x2e\61\x35\x29\x20\101\123\x20\x70\162\x69\x63\145\40\106\x52\x4f\115\40" . People::class . "\40\112\117\x49\116\x20" . SomeProducts::class, "\145\x78\x70\x65\x63\x74\x65\x64" => array("\x6d\x6f\144\145\154\x73" => array(People::class), "\x74\x61\x62\154\x65\163" => array("\x70\x65\x72\x73\157\x6e\x61\x73"), "\143\x6f\154\x75\155\156\163" => array("\x70\162\x69\143\x65" => array("\164\x79\x70\x65" => "\x73\143\141\154\141\162", "\143\x6f\x6c\165\x6d\x6e" => array("\164\x79\160\x65" => "\142\x69\156\x61\x72\x79\x2d\x6f\160", "\157\x70" => "\x2f", "\x6c\145\146\x74" => array("\164\171\160\145" => "\160\x61\x72\145\x6e\x74\x68\x65\x73\145\x73", "\x6c\145\146\164" => array("\x74\171\160\x65" => "\x62\151\x6e\x61\x72\171\x2d\157\x70", "\157\x70" => "\x2b", "\x6c\145\x66\164" => array("\164\x79\160\145" => "\161\165\141\x6c\151\146\151\x65\144", "\x64\x6f\155\141\x69\156" => "\x70\x65\162\x73\x6f\156\x61\163", "\156\141\x6d\145" => "\143\165\160\157", "\x62\x61\x6c\151\141\163" => "\143\165\160\157"), "\162\x69\147\x68\x74" => array("\x74\171\x70\145" => "\x6c\151\164\x65\162\141\x6c", "\x76\x61\154\x75\145" => "\61\60\x30"))), "\x72\x69\x67\150\x74" => array("\164\171\x70\x65" => "\160\141\162\x65\156\x74\x68\x65\x73\x65\163", "\x6c\x65\146\x74" => array("\164\171\x70\x65" => "\x62\x69\156\141\162\171\x2d\157\160", "\x6f\x70" => "\52", "\154\x65\146\x74" => array("\x74\171\160\x65" => "\x71\165\x61\x6c\151\146\x69\145\144", "\144\157\155\141\151\156" => "\154\145\137\x70\x72\157\144\165\x63\x74\x73", "\156\141\x6d\x65" => "\x70\162\151\x63\x65", "\x62\141\154\151\141\x73" => "\160\x72\151\x63\145"), "\162\151\147\x68\164" => array("\x74\x79\160\145" => "\x6c\151\x74\x65\x72\141\x6c", "\166\141\x6c\165\145" => "\x30\56\61\x35")))), "\142\x61\154\x69\141\x73" => "\x70\x72\151\143\145", "\163\x71\154\101\x6c\x69\141\163" => "\x70\162\x69\x63\x65")), "\x6a\x6f\151\156\x73" => array(array("\164\171\160\x65" => "\111\x4e\116\105\x52", "\x73\x6f\165\x72\143\x65" => array("\x6c\145\137\160\162\157\144\x75\x63\164\x73", null), "\143\x6f\x6e\144\x69\x74\151\x6f\156\x73" => array())))), array("\x70\x68\x71\x6c" => "\123\x45\114\x45\103\124\40\x28\160\x2e\143\165\160\157\40\x2b\40\x31\60\60\x29\40\57\x20\50\163\x2e\x70\162\x69\x63\x65\x20\x2a\40\x30\56\61\x35\51\x20\101\x53\40\160\x72\151\x63\145\40\106\x52\x4f\115\x20" . People::class . "\40\101\123\x20\x70\x20\112\117\111\x4e\40" . SomeProducts::class . "\40\101\x53\x20\163", "\145\x78\160\145\143\164\x65\144" => array("\x6d\157\x64\x65\154\163" => array(People::class), "\164\141\x62\154\145\163" => array(array("\x70\x65\x72\163\157\x6e\x61\x73", null, "\160")), "\x63\x6f\154\x75\x6d\156\163" => array("\160\162\x69\143\x65" => array("\x74\171\x70\145" => "\x73\x63\x61\x6c\x61\x72", "\x63\157\154\x75\x6d\x6e" => array("\x74\x79\160\145" => "\142\x69\156\x61\162\x79\55\x6f\160", "\157\160" => "\57", "\x6c\x65\x66\164" => array("\164\171\x70\x65" => "\x70\141\x72\x65\156\x74\150\x65\x73\x65\x73", "\x6c\x65\x66\164" => array("\x74\171\x70\145" => "\142\151\156\x61\x72\x79\x2d\x6f\x70", "\x6f\x70" => "\x2b", "\x6c\x65\x66\x74" => array("\164\x79\x70\145" => "\161\x75\x61\x6c\x69\x66\151\145\x64", "\x64\x6f\155\141\x69\156" => "\160", "\156\141\155\145" => "\x63\x75\x70\x6f", "\x62\x61\x6c\x69\x61\163" => "\143\x75\x70\157"), "\x72\151\147\150\164" => array("\x74\171\160\x65" => "\x6c\x69\x74\x65\x72\141\154", "\166\141\x6c\x75\145" => "\61\x30\x30"))), "\x72\151\147\x68\x74" => array("\164\x79\160\x65" => "\x70\141\x72\x65\156\164\x68\x65\x73\145\x73", "\154\145\x66\x74" => array("\x74\x79\x70\x65" => "\x62\x69\x6e\x61\162\x79\55\x6f\x70", "\157\x70" => "\52", "\x6c\x65\146\x74" => array("\x74\171\160\145" => "\161\165\141\x6c\151\x66\151\x65\144", "\x64\x6f\155\141\151\156" => "\x73", "\156\141\155\x65" => "\x70\162\x69\x63\x65", "\142\141\154\151\141\x73" => "\160\162\151\x63\145"), "\162\x69\147\x68\164" => array("\164\171\160\145" => "\x6c\x69\x74\x65\x72\141\154", "\166\141\x6c\x75\x65" => "\60\56\x31\65")))), "\x62\141\x6c\x69\x61\x73" => "\x70\x72\x69\143\145", "\163\161\x6c\x41\x6c\151\x61\163" => "\x70\162\x69\x63\145")), "\152\x6f\151\x6e\163" => array(array("\x74\171\160\x65" => "\x49\x4e\116\105\122", "\163\x6f\x75\x72\143\145" => array("\x6c\145\x5f\x70\x72\157\144\165\x63\164\x73", null, "\x73"), "\x63\157\156\x64\151\x74\x69\x6f\x6e\163" => array())))), array("\x70\150\161\x6c" => "\x53\x45\x4c\105\x43\124\40\52\x20\106\122\117\115\x20" . Robots::class . "\x2c\x20" . RobotsParts::class, "\x65\x78\x70\145\x63\164\145\x64" => array("\155\157\144\x65\x6c\163" => array(Robots::class, RobotsParts::class), "\164\141\142\x6c\x65\163" => array("\x72\157\142\x6f\164\x73", "\162\157\142\157\x74\163\137\x70\x61\x72\164\163"), "\143\157\x6c\165\155\156\x73" => array(lcfirst(Robots::class) => array("\x74\x79\x70\145" => "\157\142\x6a\145\143\164", "\x6d\157\144\145\154" => Robots::class, "\143\157\154\165\155\156" => "\162\x6f\142\x6f\164\x73", "\142\x61\154\151\141\x73" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\164\x79\160\x65" => "\x6f\142\152\x65\143\164", "\155\x6f\x64\x65\154" => RobotsParts::class, "\143\157\x6c\165\155\x6e" => "\x72\157\x62\157\x74\163\137\x70\x61\x72\164\x73", "\142\x61\x6c\x69\141\163" => lcfirst(RobotsParts::class))))), array("\160\150\161\x6c" => "\x53\105\114\x45\103\x54\40\52\40\106\x52\x4f\115\40" . Robots::class . "\x20\162\54\x20" . RobotsParts::class . "\x20\160", "\145\x78\160\x65\x63\x74\145\x64" => array("\155\157\144\x65\154\x73" => array(Robots::class, RobotsParts::class), "\164\141\142\x6c\x65\163" => array(array("\x72\157\x62\x6f\164\x73", null, "\x72"), array("\x72\157\142\157\164\x73\137\x70\141\x72\164\163", null, "\x70")), "\143\x6f\x6c\x75\155\156\x73" => array(lcfirst(Robots::class) => array("\164\171\x70\x65" => "\157\x62\152\x65\143\164", "\155\157\x64\x65\x6c" => Robots::class, "\x63\157\154\x75\x6d\156" => "\162", "\x62\141\154\151\141\x73" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\164\171\160\145" => "\157\x62\x6a\145\x63\164", "\x6d\157\x64\x65\154" => RobotsParts::class, "\143\157\154\165\155\156" => "\160", "\x62\141\x6c\x69\x61\x73" => lcfirst(RobotsParts::class))))), array("\160\150\161\154" => "\123\x45\114\105\103\124\40\52\x20\x46\122\x4f\x4d\40" . Robots::class . "\40\101\x53\x20\x72\x2c\40" . RobotsParts::class . "\x20\x41\x53\x20\x70", "\145\170\x70\x65\x63\x74\145\x64" => array("\x6d\157\x64\145\x6c\163" => array(Robots::class, RobotsParts::class), "\164\141\142\x6c\145\163" => array(array("\162\157\x62\157\x74\x73", null, "\162"), array("\x72\157\x62\157\x74\x73\x5f\160\141\162\x74\163", null, "\160")), "\x63\x6f\x6c\x75\155\156\163" => array(lcfirst(Robots::class) => array("\164\171\160\145" => "\157\x62\x6a\145\x63\164", "\x6d\157\x64\x65\154" => Robots::class, "\x63\x6f\x6c\x75\x6d\156" => "\162", "\x62\x61\154\151\x61\163" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\x74\x79\160\145" => "\x6f\142\152\x65\143\164", "\155\157\x64\145\x6c" => RobotsParts::class, "\143\x6f\x6c\x75\x6d\x6e" => "\x70", "\x62\141\154\x69\141\x73" => lcfirst(RobotsParts::class))))), array("\x70\x68\161\x6c" => "\x53\105\x4c\105\x43\x54\40\x6e\141\155\145\x2c\40\x70\141\162\x74\163\x5f\x69\144\x20\x46\122\x4f\115\x20" . Robots::class . "\40\101\123\40\x72\54\x20" . RobotsParts::class . "\x20\101\x53\x20\160", "\x65\170\160\x65\143\164\145\144" => array("\x6d\x6f\144\145\154\x73" => array(Robots::class, RobotsParts::class), "\x74\x61\142\x6c\145\163" => array(array("\162\x6f\142\x6f\x74\x73", null, "\x72"), array("\x72\x6f\142\157\x74\x73\x5f\x70\x61\162\164\163", null, "\160")), "\x63\x6f\x6c\x75\155\x6e\163" => array("\156\141\155\x65" => array("\164\171\160\x65" => "\163\143\141\154\x61\162", "\142\141\154\151\x61\x73" => "\156\x61\155\145", "\163\161\154\x41\154\151\141\163" => "\156\x61\x6d\145", "\143\x6f\154\165\155\156" => array("\x74\171\x70\x65" => "\161\165\141\154\x69\146\x69\x65\x64", "\x64\157\x6d\x61\151\156" => "\162", "\156\141\x6d\145" => "\156\x61\x6d\x65", "\142\x61\154\151\141\163" => "\x6e\x61\155\x65")), "\x70\x61\x72\164\x73\137\151\144" => array("\164\171\160\145" => "\x73\x63\x61\154\141\x72", "\x62\141\154\151\141\x73" => "\160\141\162\164\163\137\151\144", "\x73\x71\154\x41\x6c\151\141\x73" => "\160\x61\x72\x74\163\x5f\x69\x64", "\143\x6f\x6c\x75\155\156" => array("\x74\x79\160\145" => "\x71\165\141\154\x69\146\151\x65\144", "\x64\x6f\155\x61\x69\156" => "\160", "\x6e\x61\155\145" => "\x70\x61\162\164\x73\x5f\151\144", "\x62\x61\x6c\x69\x61\x73" => "\160\x61\162\164\x73\137\x69\x64"))))), array("\x70\150\161\x6c" => "\123\x45\x4c\x45\x43\x54\40\x2a\40\x46\x52\x4f\x4d\x20" . Robots::class . "\40\x41\x53\x20\x72\x2c\x20" . RobotsParts::class . "\40\x41\x53\x20\x70\x20\x57\x48\105\x52\x45\x20\x72\56\151\144\x20\75\40\160\56\x72\157\x62\x6f\x74\163\137\x69\x64", "\x65\170\160\145\x63\164\x65\144" => array("\155\x6f\x64\x65\154\163" => array(Robots::class, RobotsParts::class), "\x74\x61\142\154\x65\163" => array(array("\x72\x6f\x62\x6f\164\x73", null, "\x72"), array("\x72\157\142\x6f\x74\x73\137\x70\141\x72\164\163", null, "\x70")), "\x63\157\x6c\x75\x6d\156\x73" => array(lcfirst(Robots::class) => array("\x74\171\160\145" => "\157\x62\x6a\145\x63\164", "\155\157\x64\x65\154" => Robots::class, "\x63\x6f\154\x75\x6d\x6e" => "\162", "\142\141\x6c\151\141\x73" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\164\x79\160\145" => "\x6f\142\152\145\143\x74", "\155\x6f\x64\x65\154" => RobotsParts::class, "\x63\157\154\165\155\x6e" => "\160", "\x62\x61\154\151\x61\163" => lcfirst(RobotsParts::class))), "\167\x68\x65\162\145" => array("\x74\171\160\145" => "\x62\151\x6e\141\162\x79\x2d\157\x70", "\157\160" => "\75", "\154\145\146\164" => array("\164\171\160\x65" => "\161\165\x61\x6c\x69\x66\151\145\x64", "\144\x6f\155\141\151\x6e" => "\162", "\x6e\x61\155\145" => "\151\144", "\x62\141\154\x69\x61\163" => "\x69\144"), "\162\151\147\x68\x74" => array("\164\x79\160\145" => "\161\165\141\154\151\x66\x69\145\x64", "\x64\157\x6d\141\x69\x6e" => "\x70", "\156\141\155\145" => "\162\157\142\x6f\x74\163\x5f\x69\x64", "\x62\x61\x6c\151\141\163" => "\x72\157\142\157\x74\x73\137\151\x64")))), array("\160\x68\161\x6c" => "\123\x45\x4c\105\x43\x54\40\52\40\106\x52\x4f\x4d\40" . Robots::class . "\x2c\40" . RobotsParts::class . "\x20\127\110\x45\x52\105\x20" . Robots::class . "\56\151\x64\x20\x3d\x20" . RobotsParts::class . "\x2e\x72\157\x62\x6f\x74\x73\137\x69\144", "\x65\x78\160\145\143\164\145\x64" => array("\x6d\157\x64\x65\154\x73" => array(Robots::class, RobotsParts::class), "\164\x61\x62\154\145\163" => array("\x72\x6f\142\x6f\x74\163", "\x72\157\142\x6f\164\x73\x5f\160\x61\x72\x74\163"), "\x63\157\x6c\x75\155\x6e\163" => array(lcfirst(Robots::class) => array("\164\x79\x70\145" => "\157\x62\x6a\145\x63\164", "\x6d\157\144\x65\154" => Robots::class, "\143\x6f\154\x75\155\156" => "\162\157\x62\157\x74\x73", "\x62\141\x6c\x69\x61\x73" => lcfirst(Robots::class)), lcfirst(RobotsParts::class) => array("\164\x79\x70\x65" => "\x6f\x62\152\x65\143\x74", "\155\157\x64\x65\x6c" => RobotsParts::class, "\143\x6f\x6c\x75\x6d\x6e" => "\162\157\142\x6f\164\x73\137\x70\141\x72\164\x73", "\142\x61\x6c\151\x61\x73" => lcfirst(RobotsParts::class))), "\x77\150\x65\x72\x65" => array("\164\171\x70\x65" => "\142\x69\x6e\x61\x72\x79\55\157\x70", "\157\160" => "\x3d", "\154\x65\146\164" => array("\x74\171\160\x65" => "\x71\x75\x61\x6c\x69\146\151\145\144", "\x64\157\x6d\141\151\x6e" => "\x72\157\x62\157\164\x73", "\156\141\x6d\145" => "\151\144", "\x62\x61\x6c\x69\x61\163" => "\151\144"), "\162\x69\x67\x68\164" => array("\164\171\x70\145" => "\161\165\141\154\x69\146\x69\x65\144", "\x64\157\x6d\141\x69\156" => "\162\157\142\x6f\x74\x73\x5f\160\x61\x72\x74\x73", "\156\141\155\x65" => "\162\x6f\x62\157\x74\x73\137\x69\x64", "\x62\x61\154\x69\x61\163" => "\x72\157\142\157\x74\x73\x5f\x69\144")))), array("\x70\x68\x71\154" => "\x53\105\x4c\105\x43\124\x20\x2a\x20\x46\x52\x4f\115\x20" . Robots::class . "\x20\x57\110\x45\x52\105\40" . Robots::class . "\56\x69\144\x20\75\40\61\x30\x30", "\x65\170\x70\145\143\x74\145\144" => array("\x6d\157\x64\x65\x6c\x73" => array(Robots::class), "\164\x61\142\x6c\145\x73" => array("\x72\x6f\142\x6f\x74\x73"), "\143\157\154\165\x6d\156\163" => array(lcfirst(Robots::class) => array("\164\171\160\145" => "\x6f\142\x6a\145\143\x74", "\x6d\x6f\x64\145\x6c" => Robots::class, "\x63\x6f\x6c\x75\155\156" => "\162\157\142\157\164\163", "\142\141\154\151\141\x73" => lcfirst(Robots::class))), "\x77\150\145\162\145" => array("\x74\171\x70\x65" => "\142\x69\156\x61\162\171\55\157\x70", "\157\x70" => "\75", "\154\145\x66\164" => array("\x74\x79\x70\x65" => "\x71\165\141\x6c\x69\146\151\145\x64", "\144\x6f\x6d\x61\x69\x6e" => "\x72\x6f\142\x6f\x74\163", "\x6e\x61\155\x65" => "\x69\144", "\142\x61\x6c\x69\141\x73" => "\x69\x64"), "\162\151\147\150\164" => array("\x74\171\160\145" => "\154\x69\x74\x65\162\x61\x6c", "\x76\141\x6c\165\145" => "\x31\60\60")))), array("\160\x68\161\154" => "\x53\x45\x4c\x45\103\x54\40\x2a\40\x46\122\117\115\40" . Robots::class . "\x20\127\x48\x45\x52\x45\40" . Robots::class . "\56\x69\x64\40\41\x3d\40\x31\60\x30", "\x65\170\x70\145\x63\164\145\x64" => array("\155\157\x64\x65\154\x73" => array(Robots::class), "\x74\x61\142\154\145\x73" => array("\162\157\x62\157\164\163"), "\143\157\154\x75\x6d\x6e\163" => array(lcfirst(Robots::class) => array("\164\171\x70\145" => "\157\142\x6a\x65\x63\164", "\155\157\x64\145\154" => Robots::class, "\143\157\154\x75\x6d\x6e" => "\x72\x6f\x62\x6f\164\x73", "\142\141\x6c\x69\141\x73" => lcfirst(Robots::class))), "\167\x68\x65\162\x65" => array("\164\x79\160\145" => "\x62\151\156\141\162\x79\55\x6f\160", "\x6f\x70" => "\74\76", "\x6c\x65\146\164" => array("\x74\171\160\145" => "\161\165\141\154\x69\146\x69\145\x64", "\x64\x6f\155\141\x69\156" => "\x72\157\142\x6f\x74\163", "\156\x61\155\x65" => "\151\x64", "\142\141\154\151\x61\x73" => "\151\144"), "\162\x69\147\x68\x74" => array("\164\171\x70\145" => "\154\x69\x74\x65\x72\x61\x6c", "\x76\x61\x6c\x75\x65" => "\x31\60\x30")))), array("\160\150\161\154" => "\x53\105\114\x45\x43\x54\40\x2a\40\x46\x52\117\x4d\40" . Robots::class . "\x20\127\110\x45\122\x45\x20" . Robots::class . "\x2e\x69\x64\x20\76\x20\x31\60\60", "\145\x78\x70\x65\x63\x74\x65\144" => array("\155\157\144\145\154\163" => array(Robots::class), "\164\141\x62\x6c\145\x73" => array("\162\x6f\142\157\x74\x73"), "\x63\x6f\x6c\165\x6d\x6e\163" => array(lcfirst(Robots::class) => array("\x74\171\x70\x65" => "\x6f\142\152\145\x63\x74", "\155\157\x64\x65\x6c" => Robots::class, "\x63\157\154\x75\x6d\156" => "\x72\157\142\x6f\x74\163", "\142\141\x6c\151\x61\163" => lcfirst(Robots::class))), "\x77\x68\145\162\145" => array("\164\x79\x70\x65" => "\142\151\x6e\x61\162\171\55\157\160", "\x6f\160" => "\x3e", "\x6c\x65\146\164" => array("\164\x79\160\145" => "\161\165\x61\154\x69\x66\x69\x65\144", "\x64\x6f\155\141\151\156" => "\x72\x6f\x62\x6f\x74\x73", "\x6e\x61\x6d\x65" => "\x69\144", "\142\141\154\x69\141\163" => "\151\144"), "\x72\151\147\x68\164" => array("\164\x79\160\145" => "\x6c\x69\x74\145\162\x61\x6c", "\x76\x61\154\x75\x65" => "\61\60\60")))), array("\160\150\x71\x6c" => "\123\105\x4c\105\103\124\40\52\40\106\x52\117\115\x20" . Robots::class . "\40\127\x48\x45\122\105\40" . Robots::class . "\56\x69\144\40\x3c\x20\x31\60\x30", "\x65\170\x70\145\143\x74\145\x64" => array("\x6d\157\x64\145\154\x73" => array(Robots::class), "\x74\x61\x62\x6c\145\x73" => array("\x72\157\142\157\164\163"), "\143\x6f\x6c\x75\155\x6e\163" => array(lcfirst(Robots::class) => array("\164\171\x70\145" => "\x6f\142\152\145\x63\164", "\155\x6f\x64\145\x6c" => Robots::class, "\143\x6f\154\x75\155\156" => "\x72\157\142\x6f\164\163", "\x62\x61\154\151\141\163" => lcfirst(Robots::class))), "\167\150\145\162\145" => array("\x74\x79\x70\145" => "\142\151\x6e\141\162\171\55\x6f\160", "\157\160" => "\x3c", "\154\145\146\x74" => array("\164\x79\x70\x65" => "\x71\x75\x61\x6c\x69\146\151\x65\144", "\x64\157\155\x61\x69\156" => "\162\157\142\x6f\164\x73", "\x6e\x61\x6d\145" => "\x69\x64", "\x62\x61\154\x69\141\x73" => "\x69\144"), "\x72\151\x67\x68\x74" => array("\164\171\x70\x65" => "\x6c\151\164\145\162\141\154", "\166\x61\x6c\165\x65" => "\x31\60\x30")))), array("\x70\x68\161\154" => "\x53\105\x4c\x45\x43\x54\x20\52\x20\x46\x52\x4f\x4d\x20" . Robots::class . "\40\127\110\105\x52\x45\x20" . Robots::class . "\56\151\144\40\76\x3d\40\x31\60\x30", "\145\170\x70\145\x63\164\145\x64" => array("\155\157\x64\x65\154\x73" => array(Robots::class), "\164\x61\x62\x6c\x65\x73" => array("\x72\157\142\x6f\164\x73"), "\x63\x6f\154\x75\x6d\x6e\x73" => array(lcfirst(Robots::class) => array("\164\171\x70\x65" => "\x6f\x62\x6a\145\x63\164", "\x6d\x6f\144\145\154" => Robots::class, "\143\x6f\x6c\165\155\156" => "\x72\x6f\142\x6f\164\x73", "\142\x61\x6c\151\141\163" => lcfirst(Robots::class))), "\167\x68\145\162\x65" => array("\x74\x79\160\x65" => "\142\x69\156\141\162\171\55\157\x70", "\157\x70" => "\76\x3d", "\154\x65\146\x74" => array("\164\171\x70\x65" => "\161\x75\141\x6c\x69\x66\151\x65\144", "\144\x6f\155\141\x69\156" => "\162\157\142\x6f\164\x73", "\156\141\155\x65" => "\151\144", "\x62\141\x6c\151\x61\163" => "\x69\144"), "\162\x69\147\150\x74" => array("\x74\x79\x70\145" => "\154\151\164\145\x72\141\x6c", "\166\141\154\x75\145" => "\61\x30\60")))), array("\160\x68\161\x6c" => "\x53\x45\x4c\x45\103\x54\x20\x2a\40\106\122\117\x4d\x20" . Robots::class . "\x20\127\110\105\x52\x45\x20" . Robots::class . "\56\151\x64\x20\x3c\x3d\x20\x31\x30\x30", "\x65\x78\160\145\143\x74\145\x64" => array("\x6d\157\144\145\x6c\163" => array(Robots::class), "\x74\x61\x62\154\145\x73" => array("\x72\157\x62\x6f\x74\163"), "\143\157\154\165\155\x6e\163" => array(lcfirst(Robots::class) => array("\164\171\x70\145" => "\x6f\142\152\145\x63\x74", "\x6d\157\x64\x65\x6c" => Robots::class, "\x63\157\154\x75\155\x6e" => "\x72\x6f\142\x6f\x74\x73", "\142\x61\x6c\151\141\163" => lcfirst(Robots::class))), "\167\150\x65\162\145" => array("\164\171\160\145" => "\142\x69\x6e\x61\x72\171\55\x6f\x70", "\x6f\x70" => "\x3c\x3d", "\x6c\145\x66\x74" => array("\x74\x79\160\145" => "\161\165\x61\154\151\x66\x69\x65\x64", "\144\x6f\155\x61\x69\x6e" => "\162\x6f\142\157\x74\163", "\156\141\155\x65" => "\151\144", "\x62\141\154\151\141\x73" => "\x69\144"), "\162\x69\147\x68\x74" => array("\x74\171\160\145" => "\x6c\151\164\145\162\x61\154", "\166\141\x6c\x75\x65" => "\61\x30\60")))), array("\x70\x68\x71\154" => "\123\105\114\105\103\x54\x20\x2a\x20\x46\x52\117\115\x20" . Robots::class . "\x20\127\110\x45\122\105\40" . Robots::class . "\x2e\x6e\141\x6d\x65\x20\x4c\x49\x4b\x45\40\47\x61\x73\x25\47", "\145\170\160\x65\x63\164\145\144" => array("\155\157\144\145\154\x73" => array(Robots::class), "\164\x61\x62\154\145\x73" => array("\162\157\142\157\164\163"), "\143\x6f\x6c\165\155\156\163" => array(lcfirst(Robots::class) => array("\164\171\x70\x65" => "\x6f\x62\152\145\143\164", "\x6d\x6f\x64\x65\154" => Robots::class, "\x63\157\x6c\165\155\156" => "\162\157\x62\x6f\164\x73", "\142\141\x6c\151\x61\x73" => lcfirst(Robots::class))), "\167\150\x65\x72\145" => array("\x74\171\160\145" => "\142\x69\x6e\141\162\171\x2d\157\x70", "\157\160" => "\x4c\111\x4b\105", "\154\x65\146\164" => array("\x74\171\x70\145" => "\x71\x75\x61\x6c\x69\146\x69\145\x64", "\144\157\155\141\151\x6e" => "\x72\157\x62\157\164\163", "\156\141\x6d\x65" => "\x6e\x61\x6d\x65", "\x62\x61\154\151\141\x73" => "\156\141\x6d\x65"), "\x72\151\x67\x68\x74" => array("\164\x79\160\145" => "\154\x69\x74\145\162\x61\x6c", "\x76\141\x6c\165\x65" => "\x27\x61\x73\45\x27")))), array("\160\150\161\154" => "\123\105\x4c\x45\x43\124\40\x2a\40\106\x52\117\115\40" . Robots::class . "\x20\127\x48\x45\122\x45\40" . Robots::class . "\56\x6e\x61\155\145\40\116\117\124\x20\114\x49\x4b\x45\x20\47\141\x73\45\47", "\145\170\160\x65\x63\164\145\144" => array("\x6d\x6f\x64\x65\x6c\163" => array(Robots::class), "\164\141\x62\x6c\x65\x73" => array("\162\157\142\157\164\x73"), "\x63\157\x6c\x75\155\x6e\163" => array(lcfirst(Robots::class) => array("\x74\171\160\145" => "\157\142\152\x65\x63\x74", "\155\x6f\144\x65\154" => Robots::class, "\143\x6f\x6c\x75\155\156" => "\x72\157\142\157\164\163", "\x62\x61\x6c\x69\141\163" => lcfirst(Robots::class))), "\x77\x68\x65\162\145" => array("\x74\171\160\x65" => "\142\151\x6e\x61\162\171\x2d\x6f\x70", "\157\x70" => "\116\x4f\x54\x20\x4c\x49\x4b\x45", "\154\145\146\x74" => array("\x74\171\160\145" => "\161\x75\x61\x6c\x69\146\151\x65\144", "\144\157\x6d\141\x69\156" => "\x72\x6f\142\x6f\164\163", "\x6e\x61\x6d\145" => "\x6e\x61\155\x65", "\142\x61\x6c\x69\x61\163" => "\x6e\141\155\145"), "\x72\x69\x67\x68\x74" => array("\164\x79\160\145" => "\154\x69\x74\145\162\x61\154", "\x76\141\x6c\165\x65" => "\47\141\163\45\47")))), array("\x70\150\x71\154" => "\123\105\x4c\105\x43\x54\40\52\x20\106\x52\x4f\x4d\40" . Robots::class . "\40\127\x48\x45\x52\x45\x20" . Robots::class . "\x2e\x6e\x61\x6d\145\x20\102\105\x54\x57\105\x45\x4e\x20\47\x6a\x6f\150\x6e\47\x20\101\x4e\104\x20\47\x6d\151\x6b\145\47", "\145\170\160\x65\143\x74\x65\144" => array("\155\x6f\144\145\154\163" => array(Robots::class), "\x74\x61\x62\154\x65\163" => array("\x72\157\x62\157\x74\163"), "\143\157\154\165\x6d\x6e\x73" => array(lcfirst(Robots::class) => array("\164\171\160\x65" => "\157\x62\x6a\x65\143\x74", "\x6d\157\144\x65\154" => Robots::class, "\143\x6f\154\x75\x6d\156" => "\x72\157\142\x6f\x74\x73", "\142\x61\x6c\151\141\x73" => lcfirst(Robots::class))), "\x77\x68\x65\162\145" => array("\164\x79\x70\145" => "\142\151\156\141\x72\x79\55\x6f\x70", "\x6f\160" => "\x42\105\124\127\x45\x45\x4e", "\x6c\x65\146\x74" => array("\x74\171\x70\145" => "\x71\165\x61\154\x69\x66\x69\x65\144", "\144\x6f\155\141\151\156" => "\x72\157\x62\x6f\x74\x73", "\x6e\x61\155\145" => "\x6e\x61\x6d\145", "\x62\141\154\151\x61\163" => "\156\x61\x6d\x65"), "\162\151\147\150\x74" => array("\164\171\x70\145" => "\x62\151\x6e\141\x72\x79\x2d\157\x70", "\x6f\x70" => "\101\x4e\104", "\x6c\145\146\x74" => array("\x74\x79\x70\145" => "\154\x69\x74\x65\162\x61\x6c", "\166\x61\154\165\145" => "\x27\x6a\x6f\150\156\47"), "\x72\x69\147\x68\164" => array("\164\x79\x70\145" => "\x6c\151\164\145\x72\141\154", "\x76\x61\154\165\x65" => "\x27\155\151\153\x65\x27"))))), array("\160\x68\x71\154" => "\x53\105\x4c\x45\103\x54\x20\x2a\40\x46\122\117\x4d\40" . SomeProducts::class . "\40\127\110\x45\122\x45\40\x44\101\124\105\x28" . SomeProducts::class . "\56\x63\162\x65\141\x74\x65\x64\137\x61\x74\x29\40\x3d\40\x22\62\x30\x31\60\x2d\61\x30\55\x30\62\42", "\x65\170\x70\x65\143\x74\x65\x64" => array("\x6d\x6f\144\x65\154\x73" => array(SomeProducts::class), "\164\141\142\154\145\163" => array("\154\x65\x5f\x70\162\x6f\144\165\x63\x74\163"), "\x63\157\154\x75\155\x6e\x73" => array(lcfirst(SomeProducts::class) => array("\x74\x79\160\x65" => "\x6f\142\152\145\x63\x74", "\155\157\x64\145\154" => SomeProducts::class, "\143\157\x6c\165\x6d\156" => "\154\x65\x5f\160\162\x6f\144\x75\143\x74\163", "\x62\x61\154\151\x61\163" => lcfirst(SomeProducts::class))), "\x77\150\145\x72\145" => array("\x74\x79\x70\145" => "\142\151\x6e\x61\162\x79\x2d\x6f\160", "\x6f\x70" => "\75", "\154\x65\x66\x74" => array("\164\x79\x70\145" => "\146\x75\156\x63\x74\x69\x6f\156\x43\141\154\154", "\156\141\155\x65" => "\x44\x41\x54\x45", "\x61\162\x67\165\x6d\145\156\164\163" => array(array("\x74\171\x70\145" => "\x71\x75\141\154\151\146\x69\145\x64", "\x64\157\x6d\141\151\x6e" => "\154\x65\x5f\160\162\x6f\x64\x75\143\x74\x73", "\x6e\x61\x6d\x65" => "\143\162\145\x61\164\145\x64\x5f\141\164", "\142\x61\154\x69\141\163" => "\143\x72\145\x61\164\145\144\x5f\141\x74"))), "\x72\x69\147\x68\x74" => array("\164\x79\x70\145" => "\x6c\151\x74\145\162\141\x6c", "\x76\x61\x6c\165\145" => "\47\62\x30\61\x30\55\x31\60\x2d\60\62\x27")))), array("\160\150\161\154" => "\123\105\114\x45\x43\x54\x20\52\40\x46\122\x4f\x4d\x20" . SomeProducts::class . "\40\127\110\105\122\105\x20" . SomeProducts::class . "\56\143\162\x65\x61\x74\x65\144\x5f\141\164\40\74\40\156\157\x77\x28\51", "\x65\x78\160\x65\x63\164\x65\x64" => array("\155\x6f\x64\145\154\163" => array(SomeProducts::class), "\x74\141\x62\154\x65\x73" => array("\154\x65\x5f\x70\162\157\144\165\143\x74\x73"), "\x63\157\154\x75\x6d\x6e\163" => array(lcfirst(SomeProducts::class) => array("\164\171\160\145" => "\x6f\142\x6a\145\x63\x74", "\x6d\157\x64\145\154" => SomeProducts::class, "\x63\157\x6c\x75\x6d\x6e" => "\154\x65\137\x70\x72\157\x64\x75\x63\x74\163", "\142\x61\154\151\x61\163" => lcfirst(SomeProducts::class))), "\167\x68\145\x72\145" => array("\x74\171\x70\145" => "\142\x69\156\x61\x72\x79\55\157\160", "\x6f\160" => "\74", "\154\145\x66\x74" => array("\x74\x79\x70\x65" => "\161\x75\141\x6c\x69\x66\x69\x65\144", "\x64\x6f\155\141\x69\x6e" => "\x6c\145\137\x70\162\157\x64\165\x63\x74\x73", "\156\x61\x6d\x65" => "\143\x72\145\141\164\145\144\x5f\x61\164", "\x62\141\154\151\141\x73" => "\143\x72\x65\141\x74\x65\x64\137\x61\164"), "\x72\151\147\x68\164" => array("\164\171\160\x65" => "\146\x75\x6e\x63\x74\x69\157\x6e\103\x61\x6c\154", "\x6e\x61\x6d\145" => "\x6e\157\x77")))), array("\160\x68\x71\x6c" => "\x53\x45\x4c\105\103\x54\40\x2a\40\106\x52\x4f\115\40" . Robots::class . "\40\x57\x48\x45\122\105\x20" . Robots::class . "\56\151\144\x20\111\x4e\40\x28\x31\x29", "\145\170\x70\145\143\x74\x65\144" => array("\155\x6f\x64\x65\x6c\x73" => array(Robots::class), "\164\x61\x62\154\x65\163" => array("\x72\157\x62\157\x74\163"), "\143\157\154\x75\x6d\156\x73" => array(lcfirst(Robots::class) => array("\164\171\x70\145" => "\x6f\x62\152\145\x63\164", "\x6d\157\x64\145\x6c" => Robots::class, "\143\157\154\165\155\156" => "\x72\x6f\142\x6f\x74\x73", "\x62\141\154\151\141\163" => lcfirst(Robots::class))), "\167\x68\x65\162\145" => array("\164\171\x70\145" => "\x62\151\x6e\x61\x72\x79\x2d\x6f\160", "\157\160" => "\111\116", "\154\145\146\x74" => array("\x74\171\x70\145" => "\x71\x75\141\154\x69\x66\x69\145\144", "\x64\157\155\x61\x69\156" => "\162\157\x62\x6f\x74\x73", "\x6e\x61\x6d\145" => "\x69\144", "\142\x61\x6c\x69\x61\x73" => "\151\144"), "\x72\151\x67\x68\x74" => array("\x74\171\160\x65" => "\154\151\163\164", array(array("\x74\x79\160\x65" => "\x6c\x69\x74\145\162\141\154", "\x76\141\154\x75\x65" => "\61")))))), array("\160\150\161\x6c" => "\123\x45\114\105\x43\124\x20\x2a\x20\106\122\x4f\115\x20" . Robots::class . "\x20\x57\x48\105\122\x45\x20" . Robots::class . "\x2e\151\144\x20\111\116\40\50\61\54\40\x32\x2c\x20\x33\x2c\x20\x34\51", "\145\170\x70\145\x63\164\145\x64" => array("\155\x6f\x64\x65\x6c\x73" => array(Robots::class), "\164\141\x62\x6c\x65\x73" => array("\x72\157\142\157\164\163"), "\143\x6f\154\165\155\156\163" => array(lcfirst(Robots::class) => array("\164\x79\x70\x65" => "\x6f\x62\152\145\x63\x74", "\x6d\x6f\x64\145\x6c" => Robots::class, "\x63\157\154\x75\155\x6e" => "\162\x6f\x62\157\164\x73", "\x62\x61\x6c\x69\x61\x73" => lcfirst(Robots::class))), "\167\150\145\x72\145" => array("\164\171\160\x65" => "\x62\151\156\x61\162\171\55\x6f\160", "\157\160" => "\x49\116", "\154\145\146\x74" => array("\x74\x79\x70\x65" => "\x71\165\x61\x6c\151\146\151\x65\x64", "\x64\157\155\141\x69\x6e" => "\162\x6f\x62\157\x74\x73", "\156\x61\155\x65" => "\x69\x64", "\x62\x61\x6c\x69\141\163" => "\151\144"), "\162\x69\x67\150\164" => array("\x74\x79\x70\145" => "\154\x69\163\x74", array(array("\164\x79\160\145" => "\154\x69\x74\x65\162\x61\154", "\x76\141\154\x75\145" => "\x31"), array("\164\171\x70\x65" => "\x6c\x69\164\x65\x72\141\x6c", "\166\141\x6c\x75\x65" => "\x32"), array("\x74\171\160\145" => "\x6c\151\x74\x65\162\141\x6c", "\166\x61\154\165\x65" => "\63"), array("\x74\171\160\145" => "\x6c\151\x74\145\x72\x61\154", "\166\141\x6c\165\x65" => "\64")))))), array("\x70\150\161\154" => "\123\105\x4c\105\x43\x54\x20\x2a\x20\106\x52\117\115\40" . Robots::class . "\40\162\x20\127\x48\x45\122\105\x20\162\56\x69\x64\40\x49\116\x20\50\162\56\x69\144\53\61\54\40\x72\56\x69\144\53\x32\x29", "\x65\170\x70\x65\x63\164\x65\144" => array("\x6d\x6f\144\x65\154\163" => array(Robots::class), "\164\141\x62\154\145\x73" => array(array("\x72\157\142\x6f\x74\163", null, "\x72")), "\x63\x6f\154\165\x6d\x6e\x73" => array(lcfirst(Robots::class) => array("\x74\x79\x70\x65" => "\x6f\142\x6a\x65\x63\x74", "\155\157\x64\145\x6c" => Robots::class, "\x63\157\x6c\x75\x6d\156" => "\162", "\x62\141\154\151\x61\163" => lcfirst(Robots::class))), "\167\150\145\x72\145" => array("\x74\x79\x70\145" => "\x62\151\156\x61\x72\171\55\157\x70", "\157\160" => "\111\x4e", "\154\x65\x66\164" => array("\164\171\160\x65" => "\161\x75\x61\154\151\x66\x69\x65\x64", "\144\x6f\x6d\x61\x69\x6e" => "\x72", "\156\141\155\x65" => "\151\144", "\x62\141\154\x69\141\x73" => "\151\x64"), "\162\151\x67\150\x74" => array("\x74\x79\x70\x65" => "\154\x69\163\164", array(array("\x74\x79\x70\x65" => "\142\x69\x6e\x61\162\171\x2d\x6f\x70", "\x6f\x70" => "\53", "\154\x65\x66\164" => array("\x74\x79\x70\145" => "\161\x75\x61\154\151\x66\151\145\144", "\x64\x6f\155\x61\x69\x6e" => "\162", "\156\141\155\145" => "\151\x64", "\142\141\154\151\141\x73" => "\151\144"), "\x72\x69\x67\150\164" => array("\164\171\x70\x65" => "\154\151\x74\x65\x72\x61\x6c", "\x76\141\154\x75\145" => "\61")), array("\x74\x79\x70\145" => "\x62\x69\156\x61\162\x79\x2d\x6f\160", "\157\x70" => "\x2b", "\154\145\146\164" => array("\x74\171\x70\145" => "\161\165\141\154\x69\146\x69\x65\144", "\x64\157\155\x61\151\x6e" => "\162", "\156\141\155\x65" => "\x69\x64", "\142\x61\154\151\141\163" => "\151\x64"), "\x72\151\x67\x68\164" => array("\164\171\160\145" => "\154\151\x74\145\x72\x61\x6c", "\166\x61\x6c\165\x65" => "\62"))))))), array("\x70\150\x71\x6c" => "\123\105\x4c\x45\x43\124\x20\52\40\106\122\117\x4d\40" . Robots::class . "\x20\127\x48\105\x52\x45\x20" . Robots::class . "\56\156\141\x6d\145\x20\x3d\40\x3a\x6e\141\x6d\x65\x3a", "\145\170\160\145\143\x74\145\144" => array("\155\x6f\144\x65\x6c\x73" => array(Robots::class), "\x74\x61\x62\154\x65\163" => array("\x72\157\142\157\x74\x73"), "\x63\157\154\x75\x6d\x6e\x73" => array(lcfirst(Robots::class) => array("\x74\x79\x70\145" => "\x6f\142\x6a\145\x63\164", "\x6d\x6f\x64\x65\154" => Robots::class, "\x63\x6f\154\165\155\x6e" => "\162\157\x62\157\x74\x73", "\x62\x61\154\151\x61\163" => lcfirst(Robots::class))), "\x77\x68\145\162\145" => array("\x74\171\160\145" => "\x62\151\156\x61\162\171\55\x6f\x70", "\x6f\160" => "\x3d", "\x6c\x65\x66\x74" => array("\x74\x79\160\145" => "\x71\x75\141\x6c\151\146\x69\x65\x64", "\144\157\x6d\141\151\x6e" => "\162\x6f\142\x6f\164\163", "\156\x61\155\145" => "\x6e\x61\155\145", "\x62\141\x6c\x69\141\163" => "\x6e\x61\x6d\x65"), "\x72\x69\x67\x68\x74" => array("\164\x79\160\145" => "\160\x6c\x61\143\145\x68\x6f\x6c\144\145\162", "\166\141\x6c\165\x65" => "\x3a\156\x61\x6d\145")))), array("\x70\x68\161\x6c" => "\123\105\x4c\105\103\124\x20\52\40\106\122\x4f\x4d\40" . Robots::class . "\x20\127\110\x45\122\105\40" . Robots::class . "\x2e\156\x61\x6d\x65\x20\75\x20\x3f\60", "\x65\x78\160\x65\x63\x74\x65\x64" => array("\155\157\x64\145\154\x73" => array(Robots::class), "\164\x61\142\154\x65\163" => array("\162\157\142\157\164\x73"), "\143\157\x6c\165\155\156\163" => array(lcfirst(Robots::class) => array("\x74\x79\x70\x65" => "\157\142\152\x65\143\164", "\155\157\x64\145\154" => Robots::class, "\143\x6f\x6c\165\155\x6e" => "\x72\x6f\x62\x6f\164\163", "\x62\x61\154\x69\141\163" => lcfirst(Robots::class))), "\x77\x68\145\162\x65" => array("\x74\171\160\145" => "\x62\x69\x6e\x61\x72\171\x2d\x6f\160", "\x6f\160" => "\x3d", "\x6c\x65\146\x74" => array("\164\171\160\145" => "\161\165\x61\154\x69\x66\151\145\144", "\x64\157\155\x61\x69\x6e" => "\x72\157\x62\157\164\x73", "\156\141\x6d\x65" => "\156\141\x6d\x65", "\x62\141\154\x69\x61\x73" => "\156\141\x6d\145"), "\x72\151\147\x68\164" => array("\x74\171\160\x65" => "\160\154\x61\x63\x65\x68\x6f\154\x64\145\162", "\x76\x61\x6c\x75\x65" => "\72\60")))), array("\160\150\x71\154" => "\x53\105\x4c\105\103\x54\x20\52\40\x46\x52\117\x4d\40" . Robots::class . "\x20\x57\x48\105\x52\x45\x20" . Robots::class . "\x2e\156\141\x6d\145\x20\x3d\40\47\x52\x32\x44\62\x27\x20\x4f\x52\x20" . Robots::class . "\56\156\x61\155\145\40\x3c\x3e\40\47\x43\x33\120\x4f\x27", "\145\x78\x70\x65\x63\164\x65\x64" => array("\x6d\157\144\x65\154\x73" => array(Robots::class), "\x74\141\142\154\145\163" => array("\162\157\142\157\x74\x73"), "\143\157\x6c\x75\155\x6e\163" => array(lcfirst(Robots::class) => array("\x74\x79\160\x65" => "\x6f\x62\x6a\x65\x63\x74", "\x6d\157\x64\x65\154" => Robots::class, "\143\x6f\154\165\x6d\x6e" => "\162\x6f\x62\157\164\163", "\142\x61\154\151\141\x73" => lcfirst(Robots::class))), "\167\150\x65\x72\x65" => array("\x74\x79\x70\145" => "\x62\x69\x6e\x61\x72\x79\x2d\157\x70", "\x6f\x70" => "\x3c\x3e", "\x6c\x65\146\x74" => array("\x74\171\x70\x65" => "\x62\x69\156\x61\162\171\x2d\x6f\160", "\157\x70" => "\x3d", "\154\145\x66\x74" => array("\x74\171\160\x65" => "\161\x75\141\x6c\x69\146\x69\x65\x64", "\x64\x6f\x6d\141\151\156" => "\162\157\142\157\x74\163", "\156\141\x6d\x65" => "\x6e\141\155\145", "\x62\141\x6c\151\x61\163" => "\x6e\141\155\x65"), "\162\151\x67\150\164" => array("\164\x79\x70\x65" => "\142\151\x6e\x61\x72\x79\55\x6f\x70", "\x6f\160" => "\117\122", "\x6c\x65\146\164" => array("\x74\x79\160\x65" => "\154\x69\x74\x65\x72\141\154", "\166\x61\154\x75\145" => "\x27\x52\62\104\x32\x27"), "\x72\151\x67\x68\164" => array("\164\x79\160\145" => "\x71\x75\x61\x6c\x69\x66\x69\145\x64", "\x64\x6f\x6d\x61\151\x6e" => "\162\157\x62\157\x74\x73", "\x6e\x61\x6d\145" => "\x6e\x61\155\x65", "\x62\x61\154\x69\141\163" => "\156\141\x6d\x65"))), "\x72\151\147\x68\x74" => array("\x74\x79\x70\145" => "\154\151\x74\145\x72\141\x6c", "\166\x61\154\165\x65" => "\47\103\x33\120\x4f\x27")))), array("\160\150\x71\x6c" => "\x53\x45\114\105\103\x54\x20\52\40\x46\x52\117\x4d\x20" . Robots::class . "\40\x57\110\105\122\x45\x20" . Robots::class . "\56\x6e\x61\155\145\40\x3d\40\47\122\62\104\x32\47\x20\x41\116\x44\x20" . Robots::class . "\x2e\156\x61\155\145\x20\x3c\x3e\40\x27\103\63\120\117\x27", "\x65\x78\160\145\143\x74\x65\x64" => array("\155\157\x64\145\154\163" => array(Robots::class), "\x74\x61\142\154\x65\x73" => array("\x72\157\x62\157\x74\x73"), "\143\x6f\x6c\165\155\x6e\x73" => array(lcfirst(Robots::class) => array("\x74\171\x70\x65" => "\x6f\x62\x6a\x65\x63\x74", "\x6d\157\144\145\x6c" => Robots::class, "\143\x6f\x6c\165\x6d\x6e" => "\162\157\x62\x6f\x74\x73", "\x62\x61\154\x69\x61\x73" => lcfirst(Robots::class))), "\x77\150\x65\162\145" => array("\x74\x79\160\x65" => "\142\x69\156\141\x72\x79\x2d\157\x70", "\157\x70" => "\74\x3e", "\154\x65\146\x74" => array("\164\x79\160\145" => "\x62\151\156\141\162\171\55\x6f\160", "\x6f\160" => "\x3d", "\x6c\145\x66\x74" => array("\x74\171\x70\145" => "\x71\x75\x61\154\151\146\151\145\144", "\144\157\x6d\x61\151\x6e" => "\162\157\x62\x6f\164\163", "\156\141\x6d\x65" => "\156\x61\155\x65", "\x62\x61\154\151\141\163" => "\x6e\141\155\145"), "\x72\x69\147\x68\x74" => array("\x74\x79\x70\145" => "\142\151\x6e\141\x72\x79\55\x6f\160", "\x6f\160" => "\x41\116\104", "\x6c\x65\146\x74" => array("\x74\x79\160\145" => "\x6c\151\164\x65\162\x61\154", "\x76\141\x6c\x75\145" => "\47\x52\x32\x44\62\47"), "\x72\151\147\150\164" => array("\x74\x79\x70\x65" => "\x71\x75\141\x6c\x69\146\x69\x65\x64", "\144\x6f\x6d\x61\151\156" => "\x72\x6f\142\157\164\x73", "\x6e\141\x6d\x65" => "\156\141\155\x65", "\142\x61\x6c\151\141\163" => "\x6e\x61\155\145"))), "\x72\151\x67\150\164" => array("\x74\x79\160\145" => "\x6c\151\x74\x65\x72\141\154", "\166\x61\x6c\165\145" => "\x27\103\x33\x50\117\47")))), array("\x70\150\161\x6c" => "\x53\105\114\x45\103\124\x20\x2a\40\x46\122\117\115\x20" . Robots::class . "\40\127\110\105\x52\x45\x20" . Robots::class . "\56\x6e\x61\x6d\x65\x20\75\40\x3a\x66\151\x72\x73\x74\x5f\x6e\x61\x6d\x65\72\x20\x41\x4e\x44\x20" . Robots::class . "\x2e\x6e\x61\x6d\145\40\x3c\x3e\40\x3a\x73\145\143\x6f\156\x64\137\156\141\x6d\x65\72", "\x65\x78\160\x65\x63\164\x65\x64" => array("\155\157\x64\145\x6c\163" => array(Robots::class), "\x74\141\142\x6c\x65\x73" => array("\162\x6f\x62\x6f\164\x73"), "\x63\157\154\x75\x6d\x6e\163" => array(lcfirst(Robots::class) => array("\164\171\160\x65" => "\x6f\142\x6a\145\x63\164", "\x6d\x6f\x64\145\154" => Robots::class, "\143\x6f\154\x75\155\x6e" => "\162\157\x62\x6f\x74\163", "\142\x61\x6c\x69\x61\x73" => lcfirst(Robots::class))), "\x77\150\x65\x72\145" => array("\x74\171\x70\145" => "\142\x69\156\141\162\x79\55\157\160", "\157\160" => "\74\x3e", "\154\145\146\164" => array("\164\171\160\x65" => "\142\x69\156\141\x72\x79\x2d\x6f\160", "\x6f\160" => "\x3d", "\x6c\x65\x66\x74" => array("\x74\x79\x70\145" => "\161\165\x61\x6c\x69\x66\151\x65\x64", "\144\157\x6d\141\151\x6e" => "\x72\157\142\x6f\x74\x73", "\x6e\141\155\x65" => "\156\x61\x6d\x65", "\x62\x61\x6c\151\x61\x73" => "\x6e\x61\155\145"), "\162\151\x67\150\x74" => array("\x74\171\x70\145" => "\142\151\156\141\162\x79\x2d\157\x70", "\x6f\160" => "\101\116\x44", "\154\x65\146\x74" => array("\x74\x79\160\x65" => "\160\154\141\143\145\x68\x6f\x6c\144\145\x72", "\x76\x61\154\x75\145" => "\72\146\151\162\163\164\137\x6e\141\x6d\x65"), "\x72\x69\x67\150\164" => array("\x74\x79\160\x65" => "\161\165\141\x6c\x69\x66\151\x65\x64", "\x64\x6f\x6d\x61\x69\156" => "\162\x6f\142\x6f\164\x73", "\156\141\155\x65" => "\x6e\141\x6d\x65", "\142\x61\x6c\x69\x61\x73" => "\x6e\x61\x6d\145"))), "\x72\x69\x67\x68\x74" => array("\164\171\x70\x65" => "\160\154\141\143\x65\x68\157\154\x64\x65\x72", "\166\x61\x6c\x75\x65" => "\x3a\163\145\x63\157\x6e\144\137\x6e\x61\x6d\x65")))), array("\x70\150\x71\154" => "\123\x45\114\105\x43\x54\40\52\40\x46\x52\x4f\115\40" . Robots::class . "\40\127\110\105\122\x45\x20" . Robots::class . "\x2e\x6e\x61\x6d\x65\40\x3d\x20\x27\122\62\104\62\x27\x20\x41\116\104\x20" . Robots::class . "\x2e\156\x61\155\145\x20\x3c\x3e\x20\x27\103\x33\x50\x4f\x27\40\101\x4e\x44\x20" . Robots::class . "\56\x69\x64\x20\76\40\x31\x30\x30", "\145\170\160\x65\x63\x74\x65\144" => array("\x6d\157\144\x65\154\163" => array(Robots::class), "\164\141\142\x6c\x65\163" => array("\162\x6f\x62\x6f\164\x73"), "\143\157\154\x75\155\x6e\163" => array(lcfirst(Robots::class) => array("\164\171\x70\145" => "\x6f\x62\x6a\145\143\164", "\155\x6f\144\145\x6c" => Robots::class, "\x63\157\154\165\155\156" => "\x72\x6f\142\157\x74\163", "\142\x61\x6c\x69\x61\163" => lcfirst(Robots::class))), "\167\x68\145\x72\x65" => array("\x74\171\160\x65" => "\142\151\156\141\162\x79\x2d\157\x70", "\157\x70" => "\x3e", "\154\145\x66\x74" => array("\x74\171\160\145" => "\142\x69\156\x61\x72\171\x2d\x6f\160", "\x6f\x70" => "\x3c\76", "\x6c\145\146\x74" => array("\164\x79\160\145" => "\142\x69\156\x61\x72\x79\x2d\x6f\x70", "\x6f\160" => "\x3d", "\154\145\x66\164" => array("\x74\x79\160\145" => "\x71\x75\x61\154\x69\146\151\x65\x64", "\144\x6f\155\x61\x69\x6e" => "\162\157\142\x6f\x74\163", "\156\141\x6d\145" => "\156\141\x6d\145", "\x62\141\154\151\x61\x73" => "\x6e\141\155\145"), "\162\151\x67\x68\164" => array("\x74\171\160\x65" => "\142\x69\x6e\141\162\x79\55\x6f\x70", "\x6f\x70" => "\101\116\104", "\154\x65\146\164" => array("\164\171\x70\145" => "\x6c\x69\x74\145\162\x61\154", "\166\x61\x6c\165\145" => "\47\122\x32\104\x32\x27"), "\162\x69\x67\150\164" => array("\164\171\160\x65" => "\161\165\141\154\x69\x66\x69\x65\x64", "\x64\x6f\155\x61\x69\156" => "\162\157\x62\x6f\164\163", "\156\x61\x6d\x65" => "\x6e\x61\x6d\x65", "\x62\x61\x6c\151\x61\163" => "\x6e\141\155\145"))), "\x72\x69\147\x68\164" => array("\x74\x79\x70\x65" => "\142\151\x6e\x61\x72\171\x2d\x6f\x70", "\157\x70" => "\101\x4e\x44", "\154\145\146\164" => array("\164\x79\x70\x65" => "\154\x69\x74\x65\x72\x61\x6c", "\x76\141\x6c\165\x65" => "\x27\103\x33\x50\117\47"), "\x72\x69\147\x68\x74" => array("\164\171\x70\x65" => "\161\x75\x61\x6c\x69\146\x69\x65\144", "\x64\x6f\155\141\151\156" => "\162\x6f\142\x6f\164\x73", "\x6e\x61\x6d\145" => "\x69\144", "\142\141\x6c\x69\x61\x73" => "\151\144"))), "\x72\151\147\x68\x74" => array("\x74\x79\160\145" => "\x6c\151\x74\145\162\141\154", "\x76\141\x6c\x75\x65" => "\61\x30\x30")))), array("\160\x68\x71\x6c" => "\x53\x45\x4c\x45\103\x54\x20\x2a\x20\106\122\117\115\x20" . Robots::class . "\x20\x57\x48\105\x52\x45\x20\x28" . Robots::class . "\x2e\156\141\155\145\40\75\40\47\122\x32\104\x32\x27\x20\x41\x4e\104\x20" . Robots::class . "\56\x6e\x61\x6d\145\x20\74\x3e\40\x27\x43\x33\x50\117\x27\51\x20\x4f\122\40" . Robots::class . "\x2e\x69\144\40\76\x20\61\60\60", "\145\x78\x70\145\x63\x74\145\x64" => array("\x6d\157\144\x65\x6c\163" => array(Robots::class), "\164\141\142\154\x65\x73" => array("\x72\x6f\x62\157\x74\x73"), "\143\x6f\x6c\x75\155\156\163" => array(lcfirst(Robots::class) => array("\x74\171\x70\145" => "\x6f\142\x6a\x65\143\164", "\155\x6f\144\145\154" => Robots::class, "\x63\157\154\165\x6d\156" => "\162\157\x62\157\x74\x73", "\142\x61\154\x69\141\163" => lcfirst(Robots::class))), "\167\x68\145\162\x65" => array("\164\171\x70\145" => "\142\151\x6e\141\162\x79\x2d\x6f\160", "\x6f\160" => "\76", "\154\145\146\x74" => array("\164\x79\160\145" => "\x62\x69\x6e\141\x72\171\55\157\160", "\x6f\x70" => "\117\122", "\154\x65\146\x74" => array("\x74\x79\x70\x65" => "\160\x61\162\145\x6e\x74\150\x65\x73\x65\x73", "\154\145\x66\164" => array("\x74\171\160\x65" => "\142\x69\156\141\162\171\x2d\157\160", "\x6f\x70" => "\74\x3e", "\x6c\x65\146\164" => array("\x74\171\160\145" => "\142\x69\x6e\x61\x72\171\x2d\x6f\x70", "\x6f\160" => "\x3d", "\x6c\145\x66\164" => array("\x74\x79\x70\x65" => "\x71\x75\x61\154\x69\x66\x69\145\x64", "\x64\x6f\155\x61\151\x6e" => "\162\157\x62\x6f\x74\x73", "\156\141\155\145" => "\x6e\141\155\x65", "\x62\141\x6c\151\x61\163" => "\x6e\x61\x6d\x65"), "\x72\151\147\150\x74" => array("\x74\171\160\145" => "\x62\151\156\x61\162\171\55\x6f\160", "\157\160" => "\101\x4e\x44", "\154\145\146\x74" => array("\164\171\160\145" => "\x6c\151\164\145\162\x61\154", "\x76\x61\154\x75\x65" => "\x27\122\x32\104\62\x27"), "\162\151\x67\150\164" => array("\164\x79\x70\x65" => "\x71\165\141\x6c\x69\146\x69\145\144", "\x64\x6f\155\x61\x69\x6e" => "\162\x6f\x62\x6f\164\x73", "\156\141\x6d\x65" => "\156\141\x6d\x65", "\142\141\154\x69\141\x73" => "\x6e\141\x6d\x65"))), "\162\151\x67\x68\164" => array("\x74\x79\160\145" => "\x6c\151\164\145\x72\x61\154", "\x76\141\x6c\x75\145" => "\47\103\63\120\x4f\47"))), "\x72\x69\147\150\x74" => array("\x74\x79\160\x65" => "\161\165\x61\x6c\151\146\x69\145\144", "\144\x6f\155\141\151\156" => "\162\x6f\142\x6f\x74\x73", "\x6e\141\x6d\x65" => "\151\144", "\x62\x61\x6c\x69\x61\163" => "\x69\x64")), "\x72\x69\147\150\x74" => array("\x74\171\160\145" => "\x6c\x69\x74\x65\x72\141\154", "\166\141\154\x75\145" => "\x31\60\60")))), array("\x70\x68\x71\154" => "\123\x45\114\105\103\124\x20\x2a\x20\x46\x52\x4f\115\x20" . Robots::class . "\40\127\110\105\122\x45\x20\x28" . Robots::class . "\56\x6e\141\155\145\x20\75\40\47\x52\x32\x44\62\x27\x20\x41\116\104\x20" . Robots::class . "\x2e\x6e\141\155\145\x20\x3c\76\x20\x27\103\63\x50\117\x27\51\x20\117\x52\x20\50" . Robots::class . "\56\151\144\40\76\x20\61\x30\60\x20\101\116\x44\40" . Robots::class . "\x2e\151\144\40\74\x3d\40\61\x35\x30\51", "\145\x78\160\145\x63\x74\145\144" => array("\x6d\157\144\x65\154\x73" => array(Robots::class), "\x74\141\142\154\145\163" => array("\x72\157\x62\157\x74\x73"), "\143\157\x6c\165\x6d\x6e\x73" => array(lcfirst(Robots::class) => array("\164\171\160\145" => "\157\x62\x6a\x65\143\x74", "\x6d\157\x64\145\x6c" => Robots::class, "\x63\157\x6c\165\155\x6e" => "\162\157\142\157\164\163", "\142\x61\x6c\151\141\163" => lcfirst(Robots::class))), "\x77\x68\x65\x72\x65" => array("\x74\171\160\x65" => "\x62\x69\x6e\x61\x72\171\55\157\160", "\157\160" => "\x4f\122", "\x6c\145\146\164" => array("\164\171\x70\145" => "\160\x61\x72\x65\156\x74\x68\145\163\x65\163", "\x6c\145\x66\x74" => array("\164\171\x70\145" => "\x62\151\x6e\x61\162\171\x2d\x6f\x70", "\x6f\x70" => "\74\x3e", "\154\145\146\164" => array("\164\x79\x70\145" => "\x62\x69\x6e\141\162\171\55\x6f\x70", "\x6f\x70" => "\75", "\154\145\x66\x74" => array("\x74\171\160\x65" => "\x71\x75\141\x6c\x69\x66\x69\x65\x64", "\x64\x6f\155\x61\151\156" => "\x72\x6f\x62\x6f\164\163", "\156\141\x6d\x65" => "\x6e\141\x6d\x65", "\x62\141\x6c\x69\x61\163" => "\156\141\x6d\x65"), "\x72\x69\x67\150\164" => array("\164\x79\x70\145" => "\x62\x69\156\x61\x72\x79\x2d\157\160", "\157\x70" => "\x41\116\x44", "\154\145\146\x74" => array("\164\171\x70\x65" => "\154\151\164\x65\162\141\x6c", "\x76\141\154\165\x65" => "\x27\x52\x32\x44\x32\x27"), "\162\151\147\150\164" => array("\x74\x79\x70\x65" => "\161\165\x61\154\x69\x66\x69\x65\x64", "\x64\157\x6d\x61\x69\156" => "\162\x6f\142\157\x74\163", "\156\x61\155\x65" => "\156\x61\x6d\145", "\x62\x61\x6c\x69\141\x73" => "\156\141\155\x65"))), "\x72\x69\147\x68\164" => array("\x74\171\160\x65" => "\154\x69\x74\145\x72\x61\x6c", "\166\x61\x6c\165\145" => "\x27\x43\63\x50\x4f\47"))), "\162\151\x67\x68\x74" => array("\164\x79\160\145" => "\x70\x61\x72\145\156\x74\150\145\163\x65\x73", "\x6c\145\146\x74" => array("\164\171\160\145" => "\142\x69\156\141\x72\x79\x2d\x6f\160", "\x6f\160" => "\x3c\75", "\x6c\145\146\164" => array("\164\171\160\x65" => "\142\x69\x6e\141\x72\x79\55\157\160", "\157\x70" => "\x3e", "\154\145\146\164" => array("\164\171\x70\x65" => "\x71\x75\x61\154\151\x66\151\x65\144", "\144\157\x6d\x61\151\156" => "\162\157\x62\157\164\163", "\x6e\x61\155\x65" => "\x69\x64", "\x62\141\x6c\151\x61\x73" => "\x69\144"), "\x72\151\x67\150\x74" => array("\x74\171\x70\145" => "\x62\x69\x6e\141\x72\171\55\157\160", "\x6f\x70" => "\x41\116\104", "\x6c\x65\x66\164" => array("\x74\x79\160\x65" => "\154\x69\x74\145\162\x61\154", "\x76\x61\154\x75\x65" => "\61\60\x30"), "\x72\x69\147\150\164" => array("\164\171\x70\145" => "\161\165\x61\x6c\151\x66\151\145\x64", "\144\x6f\x6d\x61\x69\156" => "\x72\x6f\142\x6f\x74\163", "\x6e\141\x6d\x65" => "\x69\144", "\x62\141\x6c\x69\x61\163" => "\151\144"))), "\x72\x69\x67\150\164" => array("\x74\171\x70\x65" => "\154\151\164\145\162\141\154", "\166\141\x6c\165\145" => "\x31\x35\60")))))), array("\160\x68\161\x6c" => "\x53\105\x4c\x45\x43\124\x20\x2a\40\x46\122\x4f\x4d\x20" . Robots::class . "\40\x72\x20\127\x48\x45\122\x45\40\x72\x2e\x69\144\x20\116\x4f\x54\40\x49\116\40\x28\x72\56\x69\144\53\x31\x2c\40\x72\56\x69\144\x2b\62\51", "\145\170\160\145\x63\164\145\144" => array("\x6d\x6f\144\x65\x6c\163" => array(Robots::class), "\x74\141\142\154\145\163" => array(array("\162\x6f\142\x6f\x74\x73", null, "\162")), "\143\x6f\x6c\x75\155\156\163" => array(lcfirst(Robots::class) => array("\164\x79\x70\145" => "\157\x62\152\x65\x63\164", "\x6d\x6f\x64\145\x6c" => Robots::class, "\x63\157\x6c\165\155\156" => "\162", "\142\x61\x6c\x69\141\x73" => lcfirst(Robots::class))), "\167\x68\x65\x72\145" => array("\164\171\x70\x65" => "\x62\151\156\141\162\x79\55\x6f\160", "\157\160" => "\x4e\x4f\x54\x20\x49\x4e", "\x6c\x65\146\164" => array("\x74\171\x70\x65" => "\161\x75\141\x6c\x69\x66\x69\x65\144", "\x64\157\x6d\x61\151\x6e" => "\x72", "\x6e\141\x6d\x65" => "\151\x64", "\142\141\x6c\x69\141\163" => "\151\144"), "\162\151\x67\x68\164" => array("\164\171\160\x65" => "\x6c\x69\163\164", array(array("\164\171\x70\145" => "\142\151\x6e\x61\x72\x79\55\157\x70", "\x6f\x70" => "\53", "\154\x65\146\164" => array("\x74\171\160\145" => "\161\165\x61\x6c\x69\x66\151\x65\x64", "\x64\x6f\155\x61\x69\x6e" => "\162", "\156\x61\x6d\x65" => "\x69\x64", "\142\141\154\151\141\163" => "\x69\x64"), "\x72\x69\147\x68\x74" => array("\x74\x79\x70\145" => "\154\x69\x74\x65\x72\141\154", "\x76\x61\x6c\165\145" => "\x31")), array("\x74\x79\x70\145" => "\x62\x69\156\141\162\171\55\x6f\160", "\157\x70" => "\x2b", "\x6c\x65\x66\164" => array("\x74\x79\160\x65" => "\x71\x75\x61\x6c\151\146\151\145\x64", "\x64\157\x6d\x61\x69\156" => "\162", "\156\x61\x6d\x65" => "\x69\144", "\x62\x61\x6c\151\141\163" => "\x69\144"), "\162\x69\147\150\x74" => array("\164\x79\x70\145" => "\x6c\x69\164\145\162\x61\154", "\166\141\154\x75\145" => "\x32"))))))), array("\160\x68\161\x6c" => "\123\105\114\x45\x43\x54\x20\x2a\40\106\122\x4f\115\x20" . Robots::class . "\40\x72\x20\x4c\111\x4d\x49\x54\40\61\x30\x30", "\x65\x78\x70\x65\x63\164\x65\x64" => array("\155\x6f\x64\x65\154\163" => array(Robots::class), "\x74\141\x62\154\145\x73" => array(array("\x72\157\x62\x6f\x74\x73", null, "\162")), "\x63\x6f\x6c\x75\x6d\x6e\163" => array(lcfirst(Robots::class) => array("\164\171\x70\x65" => "\157\x62\152\145\143\164", "\155\x6f\144\145\x6c" => Robots::class, "\143\x6f\x6c\165\x6d\x6e" => "\x72", "\x62\141\x6c\151\x61\x73" => lcfirst(Robots::class))), "\x6c\x69\x6d\x69\x74" => array("\156\165\x6d\x62\x65\162" => array("\x74\171\160\x65" => "\154\151\164\x65\162\x61\154", "\x76\141\154\x75\x65" => "\61\x30\60")))), array("\160\x68\161\x6c" => "\123\105\x4c\105\x43\124\x20\52\x20\106\122\117\115\40" . Robots::class . "\x20\162\40\x4c\111\115\111\x54\40\x31\x30\54\61\x30\x30", "\x65\x78\x70\145\143\164\145\144" => array("\155\x6f\x64\145\154\163" => array(Robots::class), "\164\141\x62\154\145\163" => array(array("\x72\x6f\142\x6f\x74\163", null, "\162")), "\x63\157\154\x75\155\156\163" => array(lcfirst(Robots::class) => array("\164\171\160\x65" => "\157\x62\152\145\x63\164", "\155\157\144\145\154" => Robots::class, "\143\157\154\x75\x6d\x6e" => "\162", "\x62\x61\154\x69\141\x73" => lcfirst(Robots::class))), "\x6c\x69\x6d\151\164" => array("\156\x75\x6d\142\x65\x72" => array("\164\x79\x70\x65" => "\154\x69\x74\x65\162\x61\x6c", "\166\141\154\165\x65" => "\61\60\60"), "\157\146\146\163\x65\164" => array("\164\x79\x70\x65" => "\154\151\164\x65\162\x61\154", "\x76\x61\x6c\x75\145" => "\x31\x30")))), array("\x70\150\x71\x6c" => "\123\x45\114\105\103\124\x20\x2a\x20\106\122\x4f\115\40" . Robots::class . "\40\162\40\114\111\x4d\x49\x54\40\61\60\60\40\117\x46\x46\123\x45\x54\40\x31\60", "\145\170\x70\145\x63\164\145\144" => array("\155\x6f\144\x65\x6c\x73" => array(Robots::class), "\x74\x61\142\x6c\145\x73" => array(array("\162\157\x62\157\x74\x73", null, "\x72")), "\143\157\x6c\x75\155\x6e\x73" => array(lcfirst(Robots::class) => array("\164\x79\x70\145" => "\157\142\152\145\x63\164", "\x6d\x6f\144\145\x6c" => Robots::class, "\x63\157\154\x75\155\156" => "\x72", "\142\x61\154\x69\x61\163" => lcfirst(Robots::class))), "\154\151\155\151\x74" => array("\156\x75\x6d\142\x65\162" => array("\x74\x79\160\x65" => "\x6c\151\164\145\x72\141\x6c", "\166\x61\154\165\145" => "\61\60\x30"), "\x6f\x66\146\163\x65\164" => array("\164\x79\160\145" => "\x6c\151\x74\x65\162\141\x6c", "\x76\x61\154\x75\x65" => "\61\60")))), array("\x70\x68\x71\154" => "\x53\105\x4c\x45\x43\124\x20\52\40\x46\x52\117\x4d\40" . SomeProducts::class . "\x20\160\x20\x57\110\105\122\x45\40\x70\x2e\156\141\155\x65\40\75\x20\x22\x41\x72\x74\151\143\150\157\153\x65\42\40\x4c\x49\x4d\x49\124\40\61\x30\x30", "\x65\x78\x70\x65\x63\x74\x65\144" => array("\x6d\x6f\144\145\154\x73" => array(SomeProducts::class), "\x74\x61\142\x6c\145\163" => array(array("\x6c\145\137\160\162\157\x64\x75\143\x74\163", null, "\x70")), "\143\157\x6c\165\x6d\156\163" => array(lcfirst(SomeProducts::class) => array("\164\x79\160\145" => "\157\142\152\145\143\x74", "\155\157\x64\145\154" => SomeProducts::class, "\x63\157\x6c\x75\x6d\x6e" => "\160", "\x62\x61\x6c\x69\141\163" => lcfirst(SomeProducts::class))), "\x77\x68\x65\162\x65" => array("\x74\171\x70\x65" => "\x62\151\x6e\141\162\171\55\157\x70", "\x6f\160" => "\x3d", "\x6c\x65\x66\164" => array("\164\x79\160\x65" => "\x71\x75\141\x6c\151\146\x69\145\144", "\144\x6f\155\141\151\x6e" => "\x70", "\x6e\x61\155\x65" => "\156\x61\155\x65", "\142\141\x6c\151\x61\x73" => "\x6e\x61\155\x65"), "\162\x69\x67\150\164" => array("\164\x79\160\x65" => "\x6c\x69\x74\145\162\x61\x6c", "\x76\x61\154\x75\x65" => "\x27\101\x72\164\x69\143\x68\157\153\x65\47")), "\154\x69\155\x69\x74" => array("\x6e\165\155\x62\x65\162" => array("\164\171\x70\x65" => "\154\151\x74\145\162\x61\x6c", "\166\x61\x6c\165\145" => "\x31\x30\x30")))), array("\x70\150\x71\x6c" => "\123\105\x4c\105\x43\x54\40\x2a\40\106\122\x4f\x4d\x20" . SomeProducts::class . "\x20\x70\40\117\x52\104\105\122\40\x42\131\40\160\x2e\x6e\x61\x6d\x65", "\145\x78\160\x65\143\164\x65\144" => array("\x6d\x6f\x64\x65\154\163" => array(SomeProducts::class), "\x74\x61\x62\154\x65\x73" => array(array("\154\x65\x5f\160\162\157\x64\x75\143\x74\x73", null, "\x70")), "\x63\157\154\165\x6d\156\x73" => array(lcfirst(SomeProducts::class) => array("\164\x79\x70\145" => "\157\142\x6a\x65\x63\x74", "\x6d\x6f\144\x65\154" => SomeProducts::class, "\x63\x6f\x6c\x75\155\156" => "\160", "\x62\x61\x6c\151\141\x73" => lcfirst(SomeProducts::class))), "\x6f\162\144\145\x72" => array(array(array("\164\171\x70\x65" => "\x71\x75\x61\154\151\x66\151\145\x64", "\144\157\155\x61\151\x6e" => "\160", "\156\x61\x6d\x65" => "\156\x61\x6d\x65", "\x62\x61\154\x69\x61\163" => "\156\141\x6d\145"))))), array("\160\150\161\154" => "\123\105\114\x45\103\124\40\x2a\40\106\122\117\115\40" . SomeProducts::class . "\x20\x4f\122\104\x45\x52\x20\x42\131\x20" . SomeProducts::class . "\x2e\156\x61\155\x65", "\x65\170\x70\x65\x63\164\145\x64" => array("\x6d\157\144\145\154\x73" => array(SomeProducts::class), "\x74\x61\142\x6c\145\x73" => array("\154\145\x5f\160\162\x6f\144\165\x63\x74\163"), "\x63\x6f\x6c\x75\155\156\163" => array(lcfirst(SomeProducts::class) => array("\x74\171\160\x65" => "\x6f\142\x6a\145\x63\164", "\x6d\157\x64\145\154" => SomeProducts::class, "\143\157\x6c\165\155\156" => "\154\x65\x5f\x70\x72\157\144\x75\x63\x74\163", "\x62\x61\154\151\141\163" => lcfirst(SomeProducts::class))), "\x6f\162\x64\x65\x72" => array(array(array("\164\171\160\145" => "\x71\165\141\154\x69\x66\x69\x65\x64", "\x64\x6f\155\x61\151\x6e" => "\x6c\x65\x5f\160\162\x6f\144\165\143\x74\163", "\156\x61\x6d\x65" => "\x6e\x61\x6d\x65", "\142\141\154\x69\x61\163" => "\156\x61\155\145"))))), array("\160\x68\161\x6c" => "\123\x45\114\105\103\x54\40\x2a\40\x46\x52\117\115\40" . SomeProducts::class . "\40\117\122\x44\x45\122\x20\102\131\40\151\x64\54\x20" . SomeProducts::class . "\x2e\156\141\x6d\x65\x2c\40\x33", "\145\x78\160\x65\143\164\x65\144" => array("\155\x6f\x64\145\x6c\163" => array(SomeProducts::class), "\x74\x61\142\x6c\x65\163" => array("\154\145\x5f\x70\x72\x6f\x64\x75\x63\x74\x73"), "\x63\157\x6c\x75\155\156\x73" => array(lcfirst(SomeProducts::class) => array("\164\x79\x70\145" => "\x6f\x62\x6a\x65\143\164", "\x6d\x6f\x64\x65\154" => SomeProducts::class, "\x63\157\x6c\x75\x6d\x6e" => "\154\x65\x5f\160\162\157\144\165\x63\164\x73", "\x62\x61\x6c\x69\x61\x73" => lcfirst(SomeProducts::class))), "\x6f\x72\x64\x65\x72" => array(array(array("\164\171\160\145" => "\161\x75\141\154\151\x66\151\x65\144", "\x64\x6f\x6d\141\x69\x6e" => "\154\x65\x5f\x70\162\157\x64\x75\x63\x74\163", "\x6e\x61\155\145" => "\151\144", "\x62\141\x6c\x69\141\163" => "\x69\x64")), array(array("\164\x79\160\x65" => "\161\165\x61\154\151\146\151\x65\144", "\144\157\x6d\141\x69\156" => "\154\x65\x5f\160\162\x6f\144\165\x63\164\163", "\156\141\155\x65" => "\156\141\x6d\145", "\142\141\154\x69\141\163" => "\x6e\x61\155\145")), array(array("\x74\171\160\145" => "\154\x69\x74\x65\162\141\154", "\166\x61\x6c\x75\145" => "\x33"))))), array("\160\150\161\154" => "\x53\105\x4c\105\x43\x54\40\52\x20\106\x52\117\115\x20" . Robots::class . "\x20\x72\x20\x57\x48\105\122\x45\x20\x4e\x4f\x54\40\50\162\56\156\141\x6d\145\40\75\x20\x22\163\150\141\147\x67\171\x22\x29\x20\x4f\x52\x44\x45\122\x20\x42\x59\40\61\54\x20\162\56\x6e\x61\155\145", "\145\x78\160\x65\143\164\145\x64" => array("\x6d\x6f\144\x65\154\163" => array(Robots::class), "\164\x61\142\154\145\x73" => array(array("\x72\x6f\142\x6f\164\x73", null, "\162")), "\x63\157\x6c\x75\155\156\163" => array(lcfirst(Robots::class) => array("\x74\x79\160\x65" => "\x6f\142\x6a\145\x63\164", "\155\157\x64\x65\154" => Robots::class, "\143\x6f\x6c\x75\155\156" => "\x72", "\142\x61\154\151\x61\163" => lcfirst(Robots::class))), "\x77\x68\145\x72\145" => array("\x74\171\160\145" => "\165\156\x61\162\171\55\x6f\x70", "\157\160" => "\x4e\117\x54\x20", "\162\151\147\150\x74" => array("\164\x79\160\x65" => "\x70\141\162\145\156\x74\x68\145\x73\145\x73", "\x6c\145\x66\164" => array("\x74\x79\x70\x65" => "\142\151\156\x61\x72\171\55\x6f\x70", "\157\160" => "\x3d", "\x6c\145\146\x74" => array("\164\171\x70\x65" => "\161\165\141\154\x69\146\151\x65\x64", "\144\x6f\155\141\151\156" => "\x72", "\x6e\141\155\145" => "\x6e\141\x6d\x65", "\x62\x61\154\151\141\163" => "\156\x61\x6d\x65"), "\162\x69\x67\x68\164" => array("\x74\171\x70\145" => "\x6c\x69\164\145\x72\x61\x6c", "\166\x61\154\165\x65" => "\x27\x73\x68\141\x67\147\x79\47")))), "\157\162\144\145\162" => array(array(array("\164\171\160\x65" => "\154\151\x74\145\x72\x61\154", "\x76\141\x6c\165\145" => "\61")), array(array("\164\x79\x70\145" => "\161\165\x61\x6c\151\x66\x69\x65\x64", "\x64\157\155\x61\151\156" => "\x72", "\x6e\x61\x6d\145" => "\x6e\x61\x6d\x65", "\x62\x61\154\151\141\x73" => "\x6e\141\155\145"))))), array("\x70\x68\161\x6c" => "\123\x45\114\105\103\124\x20\52\x20\x46\122\x4f\115\x20" . Robots::class . "\40\162\40\127\x48\105\122\x45\x20\116\x4f\124\40\50\162\56\x6e\x61\155\145\x20\x3d\40\x22\163\x68\141\x67\x67\x79\x22\x29\40\117\x52\104\105\122\40\102\x59\x20\61\x20\x44\x45\123\103\54\x20\x72\56\x6e\141\155\x65", "\x65\x78\x70\145\x63\x74\x65\x64" => array("\x6d\x6f\144\145\154\163" => array(Robots::class), "\164\x61\142\154\145\x73" => array(array("\x72\157\x62\x6f\164\163", null, "\x72")), "\143\157\x6c\x75\155\156\x73" => array(lcfirst(Robots::class) => array("\x74\x79\160\x65" => "\x6f\x62\x6a\145\x63\x74", "\x6d\157\144\x65\x6c" => Robots::class, "\x63\157\x6c\x75\x6d\x6e" => "\x72", "\x62\141\x6c\x69\x61\x73" => lcfirst(Robots::class))), "\167\x68\145\162\x65" => array("\164\171\160\x65" => "\165\156\x61\162\171\x2d\157\x70", "\x6f\160" => "\116\117\124\x20", "\x72\x69\147\150\164" => array("\x74\171\160\145" => "\x70\141\162\x65\156\x74\x68\x65\x73\x65\163", "\x6c\145\146\164" => array("\164\171\x70\145" => "\142\151\156\x61\162\171\55\157\x70", "\157\160" => "\75", "\154\x65\146\164" => array("\x74\x79\160\145" => "\x71\x75\141\x6c\x69\x66\151\145\144", "\x64\157\155\x61\151\156" => "\162", "\x6e\141\155\145" => "\x6e\x61\155\x65", "\142\x61\x6c\151\x61\163" => "\x6e\x61\155\145"), "\x72\151\147\x68\x74" => array("\164\171\160\145" => "\x6c\x69\164\145\162\x61\154", "\166\141\x6c\x75\145" => "\x27\163\150\x61\147\x67\171\47")))), "\x6f\x72\x64\x65\x72" => array(array(array("\164\x79\160\x65" => "\x6c\151\x74\145\162\141\x6c", "\x76\141\154\165\145" => "\61"), "\x44\105\x53\103"), array(array("\x74\x79\160\x65" => "\x71\165\141\154\x69\146\x69\145\x64", "\144\157\x6d\141\151\156" => "\162", "\156\x61\155\145" => "\156\141\x6d\145", "\142\x61\154\151\141\163" => "\x6e\x61\x6d\x65"))))), array("\x70\x68\x71\154" => "\x53\x45\x4c\x45\103\x54\x20\52\x20\106\122\x4f\115\40" . Robots::class . "\x20\x72\x20\127\x48\105\122\x45\x20\x4e\x4f\124\x20\x28\162\56\156\x61\155\145\x20\x3d\x20\42\163\x68\x61\147\x67\171\42\51\40\x4f\122\104\105\122\40\x42\131\x20\61\54\40\162\56\x6e\141\155\x65", "\x65\170\160\x65\143\x74\145\x64" => array("\x6d\x6f\x64\145\x6c\x73" => array(Robots::class), "\x74\141\142\154\x65\x73" => array(array("\162\157\x62\157\x74\x73", null, "\162")), "\x63\157\x6c\x75\x6d\x6e\163" => array(lcfirst(Robots::class) => array("\x74\x79\160\x65" => "\x6f\142\152\x65\143\x74", "\x6d\x6f\144\145\x6c" => Robots::class, "\x63\157\x6c\165\x6d\156" => "\x72", "\142\141\x6c\151\141\163" => lcfirst(Robots::class))), "\x77\x68\145\162\x65" => array("\164\x79\160\x65" => "\x75\x6e\141\x72\x79\55\157\x70", "\x6f\x70" => "\116\117\124\40", "\162\151\x67\x68\x74" => array("\164\x79\160\145" => "\160\141\162\145\x6e\x74\x68\145\x73\x65\x73", "\x6c\145\x66\x74" => array("\x74\171\x70\x65" => "\142\x69\156\141\x72\x79\55\x6f\160", "\157\160" => "\75", "\x6c\145\146\164" => array("\164\171\160\145" => "\x71\x75\x61\154\x69\146\151\x65\x64", "\x64\157\155\x61\151\x6e" => "\162", "\156\x61\x6d\145" => "\156\x61\x6d\x65", "\142\x61\154\x69\141\163" => "\x6e\x61\155\x65"), "\162\151\147\150\164" => array("\x74\171\160\x65" => "\154\x69\x74\x65\x72\141\x6c", "\x76\141\154\165\x65" => "\47\x73\150\x61\147\147\171\x27")))), "\x6f\162\144\x65\162" => array(array(array("\x74\x79\x70\145" => "\154\x69\x74\x65\x72\141\x6c", "\166\x61\154\165\x65" => "\61")), array(array("\164\171\x70\x65" => "\161\165\x61\x6c\151\x66\x69\145\x64", "\144\157\x6d\141\x69\x6e" => "\162", "\156\141\x6d\x65" => "\156\x61\x6d\145", "\x62\141\154\x69\141\x73" => "\156\141\x6d\145"))))), array("\x70\x68\x71\x6c" => "\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\117\x4d\x20" . Robots::class . "\x20\162\40\127\110\x45\122\105\x20\x72\x2e\156\141\x6d\145\40\x3c\76\40\42\163\x68\141\147\x67\x79\x22\40\117\x52\x44\105\x52\40\x42\x59\x20\x31\54\x20\x32\40\x4c\x49\115\111\124\x20\65", "\x65\x78\160\x65\x63\x74\145\144" => array("\x6d\x6f\144\145\154\x73" => array(Robots::class), "\x74\141\x62\154\145\x73" => array(array("\x72\x6f\142\157\164\x73", null, "\162")), "\143\x6f\x6c\165\155\156\163" => array(lcfirst(Robots::class) => array("\164\x79\x70\x65" => "\157\x62\x6a\145\x63\x74", "\x6d\157\x64\145\x6c" => Robots::class, "\143\x6f\x6c\165\x6d\x6e" => "\162", "\x62\x61\x6c\x69\x61\x73" => lcfirst(Robots::class))), "\167\150\145\x72\145" => array("\164\171\x70\145" => "\x62\151\156\x61\162\x79\55\x6f\x70", "\x6f\160" => "\x3c\76", "\154\x65\146\164" => array("\164\x79\x70\x65" => "\161\x75\141\x6c\x69\x66\x69\x65\144", "\144\157\155\x61\x69\x6e" => "\x72", "\156\x61\155\x65" => "\x6e\x61\x6d\145", "\142\x61\x6c\x69\141\x73" => "\156\141\x6d\145"), "\x72\151\147\150\x74" => array("\164\171\x70\145" => "\154\151\164\x65\162\141\x6c", "\x76\x61\x6c\x75\145" => "\x27\x73\150\141\147\x67\171\47")), "\x6f\162\144\145\x72" => array(array(array("\164\x79\x70\x65" => "\x6c\x69\x74\145\x72\141\x6c", "\166\141\154\x75\145" => "\x31")), array(array("\x74\171\160\145" => "\154\x69\x74\x65\162\x61\154", "\166\x61\154\x75\145" => "\62"))), "\x6c\151\155\151\x74" => array("\x6e\165\155\142\145\162" => array("\164\x79\160\145" => "\x6c\x69\164\x65\x72\141\x6c", "\x76\x61\x6c\165\145" => "\65")))), array("\x70\x68\161\154" => "\x53\105\114\105\x43\x54\40\x2a\40\x46\122\x4f\x4d\x20" . Robots::class . "\40\162\40\x57\110\x45\x52\x45\40\x72\x2e\x6e\x61\155\x65\x20\74\76\x20\42\163\150\x61\147\147\x79\x22\40\x4f\x52\104\105\122\40\102\131\40\x31\40\101\123\103\54\40\x32\40\x44\x45\123\103\x20\x4c\x49\x4d\111\124\40\65", "\x65\170\x70\x65\x63\164\145\144" => array("\155\157\x64\145\154\x73" => array(Robots::class), "\164\141\x62\x6c\x65\x73" => array(array("\x72\157\x62\x6f\x74\x73", null, "\x72")), "\x63\x6f\x6c\x75\155\156\x73" => array(lcfirst(Robots::class) => array("\x74\x79\160\145" => "\157\x62\152\x65\143\x74", "\x6d\x6f\144\145\154" => Robots::class, "\143\x6f\x6c\x75\x6d\156" => "\162", "\x62\x61\x6c\x69\141\x73" => lcfirst(Robots::class))), "\x77\150\145\162\145" => array("\164\x79\160\x65" => "\x62\x69\x6e\141\x72\171\x2d\x6f\x70", "\x6f\160" => "\x3c\x3e", "\x6c\145\x66\x74" => array("\164\x79\160\x65" => "\x71\x75\x61\154\151\x66\151\x65\144", "\x64\x6f\155\141\151\x6e" => "\x72", "\x6e\141\155\145" => "\x6e\141\x6d\x65", "\x62\x61\x6c\151\141\x73" => "\x6e\141\155\x65"), "\162\151\x67\150\164" => array("\164\171\160\145" => "\154\151\164\x65\x72\x61\154", "\166\x61\154\165\x65" => "\x27\163\x68\x61\147\147\x79\x27")), "\x6f\x72\x64\x65\162" => array(array(array("\x74\171\x70\x65" => "\154\151\164\145\162\x61\x6c", "\166\141\154\165\145" => "\x31"), "\101\123\x43"), array(array("\x74\171\160\145" => "\154\151\164\145\162\141\154", "\x76\141\154\165\x65" => "\62"), "\104\105\123\103")), "\x6c\x69\155\x69\164" => array("\x6e\x75\x6d\x62\x65\x72" => array("\x74\171\160\145" => "\154\151\164\145\x72\141\x6c", "\166\x61\154\165\x65" => "\x35")))), array("\160\x68\161\x6c" => "\123\105\114\x45\x43\124\40\52\x20\106\x52\117\115\40" . Robots::class . "\x20\107\x52\117\x55\120\40\102\x59\40" . Robots::class . "\x2e\x6e\x61\x6d\145", "\x65\x78\x70\145\143\164\x65\144" => array("\x6d\x6f\144\x65\154\x73" => array(Robots::class), "\164\141\142\x6c\145\x73" => array("\x72\157\x62\157\164\x73"), "\143\157\x6c\165\x6d\x6e\163" => array(lcfirst(Robots::class) => array("\x74\171\160\x65" => "\x6f\142\152\x65\143\164", "\x6d\157\x64\145\154" => Robots::class, "\143\157\154\x75\155\x6e" => "\x72\x6f\x62\157\164\x73", "\142\141\154\151\x61\163" => lcfirst(Robots::class))), "\x67\162\157\165\160" => array(array("\x74\171\x70\x65" => "\161\x75\x61\x6c\x69\x66\x69\x65\x64", "\144\x6f\155\141\x69\x6e" => "\x72\157\x62\157\x74\163", "\156\x61\155\145" => "\156\x61\155\x65", "\x62\141\x6c\x69\141\163" => "\x6e\141\x6d\145")))), array("\160\x68\161\x6c" => "\x53\105\x4c\x45\103\x54\40\x2a\40\x46\122\117\115\40" . Robots::class . "\x20\107\x52\x4f\x55\x50\x20\x42\131\x20" . Robots::class . "\x2e\156\x61\x6d\145\x2c\40" . Robots::class . "\56\x69\x64", "\x65\170\x70\145\143\x74\x65\144" => array("\155\x6f\x64\x65\154\163" => array(Robots::class), "\x74\141\142\x6c\145\163" => array("\162\x6f\x62\x6f\164\163"), "\x63\x6f\154\x75\x6d\x6e\163" => array(lcfirst(Robots::class) => array("\x74\171\x70\145" => "\157\142\152\x65\143\164", "\155\157\x64\145\x6c" => Robots::class, "\x63\x6f\x6c\x75\155\156" => "\x72\157\x62\x6f\x74\163", "\x62\x61\x6c\151\141\x73" => lcfirst(Robots::class))), "\147\162\157\x75\x70" => array(array("\164\171\160\x65" => "\161\165\141\x6c\x69\146\151\145\144", "\144\x6f\x6d\141\151\156" => "\162\x6f\142\157\164\163", "\x6e\141\x6d\145" => "\156\x61\155\145", "\142\x61\154\151\x61\163" => "\156\x61\x6d\x65"), array("\x74\x79\x70\x65" => "\161\165\141\154\x69\146\151\145\x64", "\x64\x6f\155\x61\151\156" => "\x72\157\x62\x6f\164\163", "\x6e\141\x6d\145" => "\x69\x64", "\142\x61\154\x69\141\x73" => "\151\144")))), array("\160\x68\161\x6c" => "\123\105\x4c\105\x43\x54\x20" . Robots::class . "\x2e\x6e\141\x6d\x65\54\x20\123\125\x4d\50" . Robots::class . "\x2e\160\162\x69\143\x65\x29\40\101\x53\x20\x73\x75\x6d\155\x61\164\157\x72\171\x20\x46\x52\117\115\x20" . Robots::class . "\x20\x47\x52\117\125\120\x20\102\x59\40" . Robots::class . "\x2e\x6e\x61\155\x65", "\x65\170\160\x65\143\164\x65\x64" => array("\155\x6f\144\x65\154\163" => array(Robots::class), "\x74\x61\x62\154\145\x73" => array("\162\x6f\142\x6f\x74\163"), "\143\157\x6c\x75\x6d\x6e\163" => array(Robots::class . "\x5f\x6e\x61\x6d\x65" => array("\x74\x79\x70\145" => "\x73\143\141\154\141\162", "\x62\x61\154\x69\x61\163" => "\156\x61\155\145", "\x73\x71\x6c\101\154\x69\x61\163" => "\156\x61\x6d\x65", "\x63\157\x6c\165\x6d\x6e" => array("\x74\x79\x70\x65" => "\161\165\x61\154\x69\x66\151\x65\x64", "\144\x6f\x6d\x61\x69\x6e" => "\x72\157\142\x6f\164\163", "\156\141\155\x65" => "\x6e\x61\x6d\145", "\142\x61\x6c\x69\141\x73" => "\156\141\155\145")), "\x73\x75\x6d\x6d\141\164\x6f\x72\171" => array("\164\x79\x70\145" => "\x73\x63\141\154\141\162", "\143\x6f\x6c\165\x6d\156" => array("\164\x79\160\145" => "\x66\165\x6e\x63\164\x69\157\x6e\x43\x61\154\x6c", "\156\x61\155\x65" => "\x53\x55\115", "\x61\x72\x67\x75\x6d\145\x6e\164\163" => array(array("\164\171\x70\x65" => "\161\x75\141\154\151\146\x69\145\144", "\x64\157\x6d\141\x69\x6e" => "\x72\x6f\142\x6f\x74\x73", "\x6e\141\155\145" => "\160\162\151\143\x65", "\x62\141\x6c\x69\x61\x73" => "\160\x72\x69\x63\145"))), "\142\141\x6c\x69\x61\163" => "\163\165\155\x6d\x61\x74\x6f\162\171", "\163\161\154\101\x6c\x69\x61\163" => "\163\x75\155\155\x61\x74\157\162\171")), "\147\162\157\x75\160" => array(array("\164\x79\x70\145" => "\x71\x75\x61\x6c\x69\x66\151\x65\144", "\x64\x6f\x6d\x61\x69\x6e" => "\162\x6f\x62\x6f\x74\x73", "\x6e\x61\155\x65" => "\156\141\x6d\x65", "\x62\x61\154\x69\x61\163" => "\156\141\x6d\x65")))), array("\x70\x68\x71\154" => "\123\x45\114\x45\x43\124\x20\162\x2e\151\x64\54\40\162\56\156\x61\155\x65\54\40\123\125\x4d\x28\162\x2e\x70\162\151\143\x65\x29\x20\x41\123\40\x73\165\x6d\x6d\x61\x74\157\x72\x79\54\40\x4d\111\116\50\162\x2e\x70\162\151\x63\145\x29\x20\x46\x52\117\115\x20" . Robots::class . "\x20\x72\40\x47\122\117\x55\120\x20\102\x59\40\162\x2e\151\144\54\x20\162\x2e\x6e\x61\x6d\x65", "\x65\x78\160\x65\x63\x74\x65\144" => array("\155\157\144\145\x6c\x73" => array(Robots::class), "\x74\x61\142\154\x65\x73" => array(array("\x72\x6f\x62\157\x74\163", null, "\x72")), "\x63\x6f\154\x75\155\156\163" => array("\162\137\151\x64" => array("\164\x79\160\145" => "\163\143\x61\x6c\x61\162", "\142\x61\154\151\x61\163" => "\x69\x64", "\x73\161\x6c\101\154\x69\x61\163" => "\x69\x64", "\143\157\154\165\x6d\x6e" => array("\164\x79\160\145" => "\x71\x75\x61\x6c\x69\146\x69\x65\144", "\144\x6f\x6d\x61\x69\156" => "\x72", "\156\x61\155\145" => "\151\x64", "\142\x61\154\x69\141\163" => "\x69\x64")), "\162\x5f\x6e\x61\x6d\x65" => array("\164\x79\160\145" => "\x73\143\141\x6c\141\x72", "\142\141\x6c\151\x61\163" => "\x6e\141\155\x65", "\163\161\154\101\154\151\141\x73" => "\156\x61\x6d\145", "\x63\x6f\x6c\165\x6d\156" => array("\x74\x79\160\145" => "\x71\165\141\154\x69\x66\151\x65\144", "\144\157\155\141\151\156" => "\x72", "\156\x61\155\x65" => "\x6e\141\155\145", "\x62\141\154\x69\141\x73" => "\x6e\141\x6d\145")), "\163\x75\x6d\155\141\x74\157\x72\x79" => array("\164\171\x70\145" => "\x73\x63\x61\154\141\x72", "\143\x6f\x6c\x75\x6d\x6e" => array("\164\x79\x70\145" => "\146\x75\156\143\164\x69\157\x6e\x43\141\x6c\x6c", "\156\141\x6d\145" => "\x53\125\x4d", "\141\162\147\x75\155\x65\156\164\x73" => array(array("\x74\x79\x70\x65" => "\x71\x75\x61\154\x69\x66\x69\x65\144", "\x64\x6f\x6d\141\x69\x6e" => "\x72", "\156\x61\155\145" => "\160\162\151\x63\x65", "\142\141\154\151\141\x73" => "\160\x72\x69\x63\x65"))), "\x62\141\154\x69\141\163" => "\163\165\x6d\x6d\141\x74\x6f\x72\x79", "\163\x71\x6c\101\x6c\x69\x61\x73" => "\163\165\x6d\x6d\x61\164\157\162\171"), "\x5f\63" => array("\164\171\160\x65" => "\163\143\141\x6c\141\x72", "\x63\157\x6c\165\155\x6e" => array("\x74\x79\x70\145" => "\x66\165\x6e\x63\164\x69\x6f\156\103\141\154\x6c", "\156\141\155\145" => "\x4d\111\x4e", "\x61\x72\x67\165\x6d\x65\x6e\x74\x73" => array(array("\164\171\x70\145" => "\161\165\x61\x6c\151\x66\151\x65\x64", "\144\x6f\155\x61\151\156" => "\x72", "\156\x61\155\x65" => "\160\162\151\x63\145", "\142\x61\x6c\151\x61\x73" => "\x70\x72\x69\143\145"))))), "\147\x72\x6f\165\x70" => array(array("\x74\171\x70\x65" => "\x71\165\x61\154\151\146\151\x65\x64", "\144\x6f\x6d\x61\x69\x6e" => "\162", "\x6e\x61\x6d\x65" => "\151\x64", "\x62\141\154\151\x61\163" => "\151\x64"), array("\164\171\x70\145" => "\x71\x75\x61\154\151\x66\x69\145\x64", "\144\157\155\x61\151\156" => "\x72", "\156\x61\155\145" => "\156\141\x6d\145", "\142\141\154\x69\141\163" => "\x6e\x61\x6d\x65")))), array("\x70\150\161\x6c" => "\x53\105\x4c\105\103\124\40\52\40\106\x52\x4f\115\40" . Robots::class . "\x20\x57\110\x45\x52\x45\x20" . Robots::class . "\x2e\151\144\x20\76\40\65\40\x47\x52\x4f\x55\x50\40\x42\x59\40" . Robots::class . "\56\x6e\141\155\145", "\145\x78\160\145\143\164\x65\144" => array("\155\x6f\x64\145\154\163" => array(Robots::class), "\x74\x61\x62\154\x65\163" => array("\x72\157\x62\157\x74\163"), "\x63\x6f\x6c\x75\x6d\x6e\x73" => array(lcfirst(Robots::class) => array("\x74\171\x70\145" => "\x6f\x62\x6a\x65\143\164", "\155\157\144\145\x6c" => Robots::class, "\143\157\x6c\165\155\156" => "\x72\x6f\x62\157\x74\163", "\x62\141\154\151\141\x73" => lcfirst(Robots::class))), "\167\x68\145\x72\x65" => array("\x74\171\160\x65" => "\x62\151\x6e\141\x72\171\x2d\157\160", "\157\160" => "\x3e", "\x6c\145\146\164" => array("\x74\x79\x70\x65" => "\x71\165\141\x6c\151\146\x69\x65\144", "\x64\x6f\x6d\141\x69\156" => "\162\x6f\x62\157\164\163", "\x6e\141\x6d\145" => "\x69\x64", "\x62\x61\x6c\x69\x61\163" => "\151\x64"), "\162\x69\x67\150\x74" => array("\x74\171\160\x65" => "\154\151\164\x65\x72\x61\x6c", "\x76\x61\x6c\x75\x65" => "\65")), "\147\162\157\165\x70" => array(array("\164\x79\160\145" => "\161\165\141\154\x69\x66\x69\145\144", "\x64\157\155\141\x69\156" => "\162\157\142\157\x74\x73", "\156\141\155\x65" => "\x6e\x61\x6d\145", "\142\x61\x6c\151\141\x73" => "\x6e\141\155\145")))), array("\x70\150\161\154" => "\x53\105\114\105\x43\x54\40\52\x20\106\x52\117\115\x20" . Robots::class . "\40\x57\x48\x45\122\105\40" . Robots::class . "\56\x69\144\40\x3e\40\65\40\x47\122\x4f\x55\x50\x20\x42\x59\40" . Robots::class . "\56\156\x61\155\x65\x20\x4c\x49\115\111\x54\40\x31\60", "\x65\170\x70\x65\143\x74\x65\144" => array("\155\x6f\x64\x65\x6c\x73" => array(Robots::class), "\164\x61\x62\154\145\x73" => array("\162\157\x62\x6f\164\163"), "\x63\157\154\165\x6d\156\163" => array(lcfirst(Robots::class) => array("\x74\171\160\x65" => "\157\x62\x6a\145\x63\x74", "\155\157\144\145\154" => Robots::class, "\x63\x6f\154\x75\x6d\x6e" => "\162\157\142\157\164\163", "\142\x61\154\151\141\x73" => lcfirst(Robots::class))), "\167\x68\145\162\145" => array("\x74\171\x70\145" => "\142\x69\156\x61\x72\171\x2d\157\160", "\157\x70" => "\x3e", "\x6c\x65\146\x74" => array("\164\x79\160\145" => "\161\165\141\154\x69\146\x69\145\x64", "\144\157\155\x61\x69\x6e" => "\162\x6f\142\x6f\164\x73", "\x6e\141\155\x65" => "\151\144", "\142\141\x6c\x69\141\x73" => "\151\x64"), "\x72\x69\147\x68\x74" => array("\164\171\x70\145" => "\154\x69\164\x65\x72\x61\x6c", "\x76\x61\154\x75\145" => "\x35")), "\147\162\x6f\x75\x70" => array(array("\164\x79\160\x65" => "\161\165\141\154\x69\146\151\145\x64", "\x64\x6f\x6d\x61\x69\156" => "\162\157\142\157\x74\163", "\156\141\155\x65" => "\156\x61\x6d\x65", "\142\x61\x6c\x69\141\x73" => "\x6e\x61\x6d\145")), "\154\151\155\151\x74" => array("\156\x75\155\142\x65\162" => array("\x74\171\x70\145" => "\154\151\x74\x65\x72\x61\x6c", "\166\x61\154\x75\x65" => "\x31\60")))), array("\x70\x68\x71\x6c" => "\x53\105\x4c\105\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20" . Robots::class . "\40\x57\110\x45\x52\x45\40" . Robots::class . "\x2e\x69\144\x20\x3e\x20\x35\x20\x47\x52\x4f\125\120\x20\102\x59\x20" . Robots::class . "\x2e\156\x61\155\x65\40\117\122\x44\105\122\40\102\131\x20" . Robots::class . "\x2e\x69\144\40\x4c\111\115\111\124\40\61\60", "\145\x78\160\145\x63\164\x65\x64" => array("\155\157\x64\x65\154\163" => array(Robots::class), "\x74\141\142\x6c\145\x73" => array("\x72\157\142\x6f\x74\163"), "\143\x6f\154\165\155\x6e\163" => array(lcfirst(Robots::class) => array("\164\x79\x70\x65" => "\157\142\152\x65\x63\164", "\155\x6f\144\x65\154" => Robots::class, "\143\157\154\165\x6d\x6e" => "\x72\x6f\x62\157\x74\163", "\x62\141\x6c\x69\141\x73" => lcfirst(Robots::class))), "\167\x68\145\x72\145" => array("\164\171\160\145" => "\x62\151\156\141\162\x79\55\157\x70", "\157\160" => "\x3e", "\154\x65\146\x74" => array("\x74\x79\160\145" => "\161\x75\x61\154\151\146\x69\x65\144", "\144\x6f\x6d\141\151\156" => "\x72\157\x62\x6f\164\x73", "\x6e\x61\155\145" => "\x69\144", "\x62\141\x6c\x69\x61\x73" => "\x69\144"), "\x72\151\x67\150\164" => array("\x74\x79\160\x65" => "\x6c\151\164\145\x72\141\154", "\166\141\154\165\x65" => "\x35")), "\147\x72\157\165\x70" => array(array("\164\x79\x70\x65" => "\161\165\x61\154\151\x66\151\x65\144", "\144\x6f\155\x61\x69\x6e" => "\162\157\x62\157\x74\163", "\156\x61\x6d\145" => "\156\141\155\x65", "\x62\141\154\151\x61\163" => "\x6e\141\155\x65")), "\x6f\162\x64\x65\x72" => array(array(array("\x74\x79\x70\145" => "\161\165\141\x6c\151\146\151\x65\144", "\x64\157\155\x61\151\x6e" => "\x72\157\142\157\164\x73", "\156\x61\155\145" => "\x69\144", "\x62\x61\x6c\151\141\163" => "\151\144"))), "\x6c\151\155\x69\x74" => array("\156\x75\x6d\142\x65\x72" => array("\x74\x79\x70\145" => "\154\x69\164\145\162\x61\154", "\x76\x61\154\165\145" => "\61\60")))), array("\x70\150\161\154" => "\123\x45\x4c\105\103\124\40\52\40\x46\122\x4f\x4d\x20" . Robots::class . "\40\x47\122\x4f\125\x50\x20\102\131\x20" . Robots::class . "\x2e\x6e\141\155\145\x20\117\122\x44\105\x52\40\x42\131\40" . Robots::class . "\56\x69\144", "\x65\170\160\145\143\x74\145\x64" => array("\155\x6f\x64\145\154\x73" => array(Robots::class), "\x74\141\142\154\145\x73" => array("\x72\157\142\157\164\x73"), "\x63\x6f\x6c\x75\x6d\x6e\163" => array(lcfirst(Robots::class) => array("\x74\171\x70\x65" => "\x6f\142\x6a\145\143\x74", "\x6d\157\144\x65\x6c" => Robots::class, "\143\157\154\x75\x6d\156" => "\x72\x6f\142\x6f\x74\x73", "\x62\141\154\x69\x61\x73" => lcfirst(Robots::class))), "\147\162\x6f\165\160" => array(array("\164\x79\x70\145" => "\161\x75\x61\x6c\x69\146\x69\145\144", "\144\x6f\155\x61\x69\156" => "\162\157\x62\x6f\x74\163", "\x6e\x61\x6d\x65" => "\156\141\155\x65", "\x62\141\x6c\151\x61\163" => "\x6e\141\155\145")), "\157\x72\144\145\162" => array(array(array("\x74\171\x70\x65" => "\161\x75\x61\154\x69\x66\151\145\x64", "\x64\x6f\155\141\x69\x6e" => "\x72\157\x62\157\x74\x73", "\x6e\141\x6d\x65" => "\151\144", "\x62\141\x6c\151\141\163" => "\x69\144"))))), array("\160\x68\x71\154" => "\x53\105\x4c\x45\x43\124\40\52\40\106\122\117\x4d\x20" . Robots::class . "\x20\127\x48\x45\x52\x45\x20" . Robots::class . "\56\151\144\40\x21\x3d\x20\61\x30\x20\x47\x52\x4f\125\120\x20\x42\x59\40" . Robots::class . "\56\156\141\x6d\x65\x20\x4f\122\x44\105\x52\40\x42\x59\40" . Robots::class . "\56\x69\144", "\x65\x78\160\x65\143\164\x65\144" => array("\155\x6f\x64\145\154\x73" => array(Robots::class), "\164\141\x62\154\145\x73" => array("\162\157\x62\x6f\x74\163"), "\143\x6f\154\165\x6d\x6e\163" => array(lcfirst(Robots::class) => array("\164\171\x70\145" => "\157\x62\152\145\x63\164", "\155\x6f\x64\x65\x6c" => Robots::class, "\x63\157\154\165\x6d\156" => "\x72\157\x62\x6f\x74\163", "\142\x61\154\151\x61\163" => lcfirst(Robots::class))), "\x77\x68\x65\162\x65" => array("\x74\x79\x70\x65" => "\x62\x69\x6e\141\162\x79\x2d\157\160", "\x6f\x70" => "\x3c\76", "\x6c\x65\x66\x74" => array("\164\171\160\145" => "\161\x75\x61\154\x69\146\x69\145\144", "\x64\157\x6d\x61\151\156" => "\x72\x6f\x62\x6f\x74\163", "\156\141\155\145" => "\151\x64", "\x62\141\154\151\141\x73" => "\151\x64"), "\x72\151\x67\150\164" => array("\x74\x79\x70\x65" => "\x6c\x69\164\x65\x72\x61\x6c", "\x76\x61\x6c\x75\x65" => "\61\x30")), "\x67\x72\x6f\x75\x70" => array(array("\x74\x79\160\145" => "\x71\x75\141\154\151\x66\x69\145\144", "\x64\x6f\155\141\x69\x6e" => "\162\x6f\142\x6f\164\x73", "\x6e\141\x6d\145" => "\156\x61\155\x65", "\142\141\x6c\x69\x61\x73" => "\x6e\x61\x6d\145")), "\x6f\162\x64\145\x72" => array(array(array("\164\x79\x70\145" => "\x71\x75\141\154\x69\x66\x69\145\x64", "\x64\x6f\x6d\141\x69\156" => "\x72\157\x62\x6f\x74\163", "\x6e\x61\155\x65" => "\x69\x64", "\142\x61\x6c\x69\x61\163" => "\151\144"))))), array("\160\150\161\x6c" => "\x53\x45\114\x45\103\124\40" . Robots::class . "\56\x6e\141\x6d\x65\54\40\103\x4f\x55\x4e\x54\50\52\51\40\x46\122\x4f\115\x20" . Robots::class . "\40\107\x52\117\125\x50\40\102\x59\40" . Robots::class . "\56\156\141\x6d\145\40\x48\101\x56\111\116\x47\40\x43\x4f\125\116\x54\x28\52\51\x3e\61\60\60", "\145\x78\x70\145\x63\164\145\x64" => array("\155\157\x64\x65\x6c\x73" => array(Robots::class), "\x74\x61\142\154\x65\163" => array("\162\x6f\x62\157\x74\163"), "\143\157\x6c\165\x6d\156\163" => array(Robots::class . "\137\x6e\x61\155\145" => array("\164\x79\160\145" => "\163\143\x61\x6c\x61\162", "\142\x61\x6c\x69\141\163" => "\156\141\x6d\145", "\x73\x71\x6c\x41\x6c\x69\141\163" => "\x6e\141\155\145", "\x63\x6f\x6c\x75\x6d\156" => array("\x74\171\x70\145" => "\161\165\x61\154\151\x66\x69\x65\144", "\x64\157\x6d\x61\151\x6e" => "\162\x6f\142\157\164\163", "\x6e\141\x6d\x65" => "\x6e\141\155\x65", "\142\x61\154\x69\x61\x73" => "\156\x61\x6d\145")), "\137\x31" => array("\x74\x79\160\145" => "\x73\143\x61\x6c\x61\162", "\x63\157\x6c\165\155\156" => array("\164\x79\160\x65" => "\146\x75\156\x63\x74\x69\x6f\156\x43\141\154\154", "\156\141\x6d\x65" => "\103\x4f\x55\116\x54", "\x61\x72\147\x75\x6d\145\x6e\x74\163" => array(array("\164\x79\160\145" => "\141\154\154"))))), "\x67\x72\x6f\x75\x70" => array(array("\164\171\x70\145" => "\x71\165\x61\154\x69\146\x69\x65\x64", "\144\x6f\155\x61\151\156" => "\162\x6f\x62\x6f\164\163", "\x6e\x61\x6d\x65" => "\x6e\141\155\x65", "\142\x61\154\151\x61\163" => "\156\x61\x6d\x65")), "\150\141\x76\151\x6e\x67" => array("\x74\171\160\x65" => "\x62\x69\x6e\141\162\x79\x2d\x6f\160", "\157\160" => "\x3e", "\x6c\145\x66\x74" => array("\164\171\x70\x65" => "\x66\165\156\143\x74\151\157\156\x43\x61\154\x6c", "\156\x61\x6d\145" => "\x43\x4f\125\x4e\124", "\141\162\147\x75\155\145\156\164\x73" => array(array("\x74\171\160\x65" => "\141\x6c\x6c"))), "\162\x69\x67\150\x74" => array("\x74\x79\x70\x65" => "\x6c\x69\164\145\162\x61\154", "\166\x61\154\165\x65" => "\x31\60\x30")))), array("\160\150\161\154" => "\x53\105\114\x45\103\124\x20" . SomeProducts::class . "\x2e\164\x79\160\145\54\40\x53\125\115\50" . SomeProducts::class . "\x2e\160\x72\x69\143\145\x29\x20\101\x53\x20\160\162\151\x63\145\40\106\x52\117\115\40" . SomeProducts::class . "\x20\x47\122\117\125\120\40\102\x59\40" . SomeProducts::class . "\56\164\x79\x70\x65\40\110\x41\126\x49\x4e\107\x20\x53\x55\x4d\50" . SomeProducts::class . "\56\x70\162\151\x63\x65\x29\74\x31\60\x30", "\145\170\160\x65\x63\x74\145\144" => array("\x6d\x6f\x64\145\154\x73" => array(SomeProducts::class), "\x74\141\x62\154\145\x73" => array("\154\145\x5f\x70\162\157\x64\x75\x63\x74\163"), "\143\157\x6c\x75\155\156\x73" => array(SomeProducts::class . "\x5f\164\x79\160\145" => array("\x74\x79\x70\145" => "\x73\x63\141\154\x61\162", "\142\x61\154\151\x61\x73" => "\164\171\x70\145", "\x73\x71\154\x41\154\151\x61\163" => "\x74\171\160\145", "\143\157\x6c\165\155\156" => array("\164\x79\160\145" => "\x71\x75\141\154\151\146\x69\145\x64", "\x64\157\155\141\x69\156" => "\154\x65\137\x70\x72\x6f\144\165\143\164\x73", "\156\x61\155\145" => "\x74\171\x70\145", "\142\x61\154\151\141\163" => "\x74\171\160\x65")), "\160\x72\151\x63\145" => array("\164\x79\x70\145" => "\163\x63\141\154\141\x72", "\143\x6f\154\165\155\156" => array("\164\171\x70\145" => "\146\x75\156\x63\164\x69\157\156\103\141\x6c\154", "\x6e\141\x6d\145" => "\x53\125\115", "\x61\162\x67\165\x6d\145\156\x74\x73" => array(array("\x74\x79\160\145" => "\x71\165\141\154\151\146\151\145\x64", "\x64\157\155\x61\x69\156" => "\x6c\x65\137\160\162\157\144\165\143\x74\163", "\156\141\155\145" => "\x70\162\151\143\145", "\x62\141\154\x69\x61\x73" => "\x70\162\151\143\x65"))), "\x62\x61\154\x69\141\163" => "\x70\x72\151\x63\x65", "\163\161\x6c\x41\x6c\x69\x61\x73" => "\x70\162\x69\143\x65")), "\147\162\x6f\x75\160" => array(array("\164\171\160\145" => "\161\x75\141\154\151\x66\151\145\144", "\x64\157\x6d\141\151\x6e" => "\154\x65\x5f\x70\162\x6f\144\165\143\164\163", "\x6e\141\x6d\x65" => "\164\x79\x70\145", "\142\141\x6c\x69\141\x73" => "\x74\x79\x70\x65")), "\x68\141\166\151\x6e\x67" => array("\164\x79\160\x65" => "\142\x69\x6e\141\x72\x79\55\x6f\160", "\157\x70" => "\x3c", "\x6c\x65\x66\164" => array("\x74\171\x70\x65" => "\x66\165\156\x63\164\x69\x6f\x6e\x43\x61\154\x6c", "\x6e\x61\x6d\x65" => "\123\125\x4d", "\141\162\x67\x75\x6d\x65\x6e\x74\163" => array(array("\x74\x79\x70\x65" => "\x71\165\141\154\151\146\151\x65\x64", "\156\141\x6d\x65" => "\160\162\151\x63\145", "\144\157\155\x61\x69\x6e" => "\x6c\x65\x5f\160\x72\157\144\165\143\x74\163", "\x62\141\154\151\141\163" => "\x70\x72\x69\x63\145"))), "\x72\x69\x67\x68\164" => array("\164\x79\160\x65" => "\154\x69\164\145\162\141\x6c", "\166\x61\154\x75\x65" => "\61\60\x30")))), array("\x70\150\161\x6c" => "\123\x45\x4c\105\103\x54\x20\x74\171\x70\x65\54\40\123\x55\x4d\50\x70\162\x69\x63\x65\x29\x20\101\123\40\x70\x72\151\143\145\40\106\122\117\x4d\x20" . SomeProducts::class . "\40\107\x52\117\x55\x50\40\102\131\40\61\x20\110\x41\x56\111\116\x47\40\123\125\x4d\50\x70\162\x69\x63\x65\x29\74\x31\60\60", "\x65\x78\x70\145\x63\164\x65\144" => array("\x6d\157\x64\145\154\163" => array(SomeProducts::class), "\x74\141\142\x6c\x65\x73" => array("\x6c\145\137\x70\162\157\144\x75\x63\x74\x73"), "\x63\x6f\x6c\x75\155\156\163" => array("\x74\x79\160\x65" => array("\x74\x79\x70\x65" => "\163\143\x61\x6c\141\162", "\142\141\x6c\151\141\163" => "\164\171\x70\145", "\x73\x71\x6c\101\x6c\x69\141\x73" => "\x74\171\160\x65", "\143\157\154\165\x6d\156" => array("\164\x79\160\x65" => "\161\x75\141\154\151\x66\x69\x65\144", "\x64\157\x6d\141\x69\x6e" => "\x6c\145\x5f\x70\x72\x6f\144\165\143\x74\x73", "\x6e\x61\155\x65" => "\164\x79\160\x65", "\x62\x61\x6c\151\141\163" => "\x74\171\x70\145")), "\x70\162\151\143\145" => array("\164\171\160\145" => "\x73\x63\x61\154\x61\162", "\x63\x6f\154\165\x6d\156" => array("\x74\171\160\145" => "\146\x75\156\143\164\151\x6f\x6e\x43\x61\154\154", "\156\x61\155\x65" => "\123\x55\115", "\x61\162\x67\x75\x6d\145\x6e\x74\x73" => array(array("\x74\171\x70\x65" => "\161\x75\141\154\151\x66\x69\x65\144", "\144\157\155\x61\x69\x6e" => "\x6c\145\137\160\162\157\144\x75\x63\x74\163", "\156\141\155\x65" => "\x70\162\151\x63\145", "\142\x61\x6c\151\x61\x73" => "\x70\162\151\x63\145"))), "\x62\141\x6c\151\x61\163" => "\x70\162\x69\x63\x65", "\x73\x71\154\x41\154\151\141\x73" => "\160\x72\x69\143\145")), "\x67\x72\157\x75\160" => array(array("\164\171\160\x65" => "\154\151\164\x65\x72\x61\154", "\166\x61\154\x75\x65" => "\61")), "\x68\x61\x76\x69\156\147" => array("\164\x79\160\145" => "\142\151\x6e\141\x72\171\55\157\160", "\x6f\160" => "\74", "\154\x65\x66\x74" => array("\x74\x79\160\x65" => "\146\x75\156\143\x74\151\157\x6e\x43\141\x6c\154", "\x6e\x61\x6d\145" => "\x53\x55\x4d", "\141\162\147\165\x6d\145\156\164\x73" => array(array("\x74\171\160\x65" => "\161\165\141\154\151\146\x69\x65\x64", "\156\x61\155\x65" => "\160\x72\x69\x63\145"))), "\x72\x69\147\x68\x74" => array("\164\171\160\145" => "\x6c\x69\164\x65\162\x61\x6c", "\x76\x61\x6c\165\145" => "\61\x30\x30")))), array("\160\x68\161\154" => "\123\105\x4c\x45\x43\x54\40\103\117\125\x4e\x54\x28\x44\111\123\x54\x49\x4e\x43\124\40" . SomeProducts::class . "\x2e\164\171\160\x65\51\x20\101\x53\40\160\162\151\x63\145\40\106\x52\117\x4d\x20" . SomeProducts::class, "\x65\170\x70\145\143\164\x65\x64" => array("\155\157\x64\x65\154\x73" => array(SomeProducts::class), "\x74\141\x62\x6c\x65\x73" => array("\154\145\x5f\160\x72\157\144\165\143\x74\x73"), "\x63\157\x6c\165\x6d\156\163" => array("\x70\x72\151\x63\145" => array("\164\x79\x70\x65" => "\163\143\x61\x6c\x61\162", "\143\x6f\x6c\x75\155\x6e" => array("\x74\x79\160\145" => "\x66\x75\x6e\x63\164\151\157\156\103\x61\154\x6c", "\156\x61\155\x65" => "\x43\x4f\x55\116\124", "\141\162\147\165\x6d\x65\x6e\x74\x73" => array(array("\164\171\160\x65" => "\161\165\x61\x6c\x69\146\x69\x65\x64", "\x64\157\x6d\141\x69\x6e" => "\154\x65\x5f\x70\162\x6f\144\x75\x63\x74\x73", "\156\141\x6d\x65" => "\164\171\160\145", "\142\141\x6c\151\141\163" => "\164\171\x70\x65")), "\144\x69\163\164\x69\x6e\143\x74" => 1), "\x62\x61\x6c\x69\x61\x73" => "\160\x72\151\x63\145", "\x73\x71\154\101\x6c\x69\141\163" => "\x70\162\x69\143\x65")))), array("\x70\x68\161\154" => "\123\105\114\105\x43\x54\x20\x43\117\x55\x4e\124\50\104\x49\123\124\111\116\x43\124\40" . SomeProducts::class . "\56\164\171\160\145\x29\x20\x70\162\151\143\x65\x20\106\122\x4f\115\40" . SomeProducts::class, "\x65\x78\x70\145\143\164\x65\x64" => array("\155\157\144\x65\x6c\x73" => array(SomeProducts::class), "\164\141\142\x6c\x65\x73" => array("\x6c\x65\137\160\x72\x6f\144\165\x63\164\163"), "\143\157\x6c\x75\x6d\x6e\163" => array("\160\162\x69\x63\145" => array("\x74\x79\x70\145" => "\x73\143\x61\154\x61\x72", "\143\x6f\x6c\x75\155\x6e" => array("\164\171\x70\x65" => "\146\x75\156\143\164\x69\157\156\x43\x61\x6c\154", "\x6e\141\x6d\145" => "\103\x4f\x55\116\124", "\x61\162\147\x75\155\x65\x6e\164\163" => array(array("\x74\171\160\x65" => "\161\165\x61\x6c\x69\146\151\145\x64", "\144\157\155\141\x69\156" => "\x6c\145\x5f\x70\162\157\144\x75\143\164\x73", "\156\x61\x6d\145" => "\164\171\x70\145", "\142\141\x6c\151\x61\x73" => "\164\171\x70\x65")), "\144\x69\x73\x74\151\x6e\x63\x74" => 1), "\x62\x61\x6c\x69\x61\163" => "\160\x72\151\x63\145", "\x73\161\x6c\x41\154\x69\x61\163" => "\160\162\x69\143\145")))), array("\160\x68\x71\154" => "\x53\105\x4c\x45\103\x54\40" . Robots::class . "\56\x6e\141\155\x65\54\x20\x43\x4f\125\116\x54\50\52\x29\x20\x46\x52\x4f\115\40" . Robots::class . "\40\x57\x48\105\122\x45\40" . Robots::class . "\56\164\x79\x70\145\x20\x3d\x20\42\166\x69\162\164\x75\141\154\x22\x20\x47\x52\117\x55\x50\40\102\131\x20" . Robots::class . "\x2e\156\141\155\145\x20\110\101\126\111\x4e\x47\40\x43\117\x55\x4e\x54\50\52\x29\76\61\x30\x30", "\145\170\160\145\143\x74\x65\144" => array("\x6d\157\144\145\x6c\163" => array(Robots::class), "\x74\141\142\x6c\145\163" => array("\162\157\x62\x6f\164\163"), "\143\157\154\165\155\x6e\x73" => array(Robots::class . "\137\156\141\x6d\x65" => array("\164\x79\160\145" => "\163\143\141\154\x61\162", "\x62\141\154\151\x61\x73" => "\x6e\141\x6d\x65", "\x73\x71\154\101\154\x69\141\x73" => "\156\141\x6d\x65", "\x63\157\x6c\x75\x6d\x6e" => array("\164\171\x70\x65" => "\161\165\x61\x6c\151\x66\x69\x65\144", "\x64\157\155\x61\151\156" => "\x72\x6f\142\157\164\x73", "\156\x61\x6d\x65" => "\156\x61\155\145", "\142\141\x6c\151\141\163" => "\156\x61\x6d\x65")), "\x5f\61" => array("\x74\x79\x70\x65" => "\163\x63\x61\x6c\x61\162", "\x63\x6f\154\x75\155\156" => array("\164\x79\x70\145" => "\146\165\x6e\143\x74\x69\157\x6e\103\141\x6c\x6c", "\x6e\x61\x6d\145" => "\x43\117\x55\116\x54", "\x61\162\147\165\x6d\x65\156\x74\x73" => array(array("\164\x79\x70\x65" => "\x61\x6c\154"))))), "\x77\150\x65\x72\145" => array("\x74\171\160\x65" => "\x62\151\156\141\162\x79\x2d\157\x70", "\x6f\160" => "\75", "\x6c\145\146\164" => array("\164\x79\x70\x65" => "\x71\x75\141\x6c\x69\146\x69\x65\144", "\144\x6f\155\x61\151\156" => "\162\x6f\142\x6f\164\163", "\156\x61\155\145" => "\164\171\160\145", "\x62\141\x6c\x69\141\163" => "\x74\x79\x70\x65"), "\162\x69\147\150\164" => array("\x74\x79\x70\145" => "\154\151\x74\145\162\141\x6c", "\x76\141\x6c\x75\x65" => "\x27\166\151\x72\x74\x75\141\x6c\47")), "\147\x72\x6f\x75\x70" => array(array("\x74\x79\160\x65" => "\161\165\x61\x6c\x69\146\151\145\x64", "\x64\157\x6d\x61\151\x6e" => "\x72\157\x62\157\x74\x73", "\156\x61\x6d\145" => "\x6e\141\155\145", "\142\141\154\x69\141\163" => "\156\x61\155\145")), "\150\141\166\x69\156\x67" => array("\164\x79\x70\145" => "\142\151\156\x61\x72\171\x2d\157\160", "\157\160" => "\76", "\x6c\145\146\x74" => array("\164\x79\x70\145" => "\146\x75\156\143\x74\151\x6f\x6e\103\141\154\154", "\x6e\x61\155\145" => "\x43\117\x55\116\124", "\x61\x72\x67\165\x6d\145\x6e\164\x73" => array(array("\164\x79\160\x65" => "\141\x6c\154"))), "\162\x69\147\x68\164" => array("\164\171\x70\145" => "\x6c\151\164\145\162\141\154", "\x76\141\x6c\165\x65" => "\x31\60\x30")))), array("\160\x68\x71\154" => "\x53\x45\x4c\105\x43\x54\x20" . Robots::class . "\56\156\141\x6d\145\x2c\x20\x43\117\x55\x4e\x54\50\52\51\x20\106\122\x4f\115\40" . Robots::class . "\40\127\x48\105\x52\105\40" . Robots::class . "\56\164\x79\160\145\40\75\40\x22\166\151\x72\164\x75\141\x6c\42\40\x47\122\x4f\125\x50\40\x42\131\40" . Robots::class . "\x2e\156\141\155\145\40\110\101\126\x49\x4e\x47\40\103\117\125\116\x54\x28\52\x29\x3e\x31\x30\x30\40\x4f\x52\104\105\x52\x20\102\131\40\62", "\x65\x78\x70\x65\143\164\145\x64" => array("\155\157\x64\145\154\163" => array(Robots::class), "\164\141\x62\154\145\x73" => array("\162\157\142\x6f\x74\163"), "\143\x6f\154\165\155\x6e\163" => array(Robots::class . "\x5f\156\141\155\x65" => array("\164\171\160\145" => "\x73\143\x61\x6c\x61\x72", "\x62\141\154\x69\x61\163" => "\x6e\x61\x6d\x65", "\163\161\154\101\154\x69\141\x73" => "\x6e\141\x6d\x65", "\143\x6f\154\x75\155\x6e" => array("\x74\171\160\x65" => "\x71\x75\x61\x6c\x69\x66\x69\x65\x64", "\144\x6f\x6d\x61\151\156" => "\162\157\142\x6f\164\163", "\156\141\x6d\x65" => "\156\x61\155\145", "\142\x61\x6c\151\141\x73" => "\x6e\x61\x6d\145")), "\x5f\61" => array("\x74\171\160\145" => "\163\143\x61\x6c\141\x72", "\x63\157\x6c\165\x6d\x6e" => array("\x74\x79\160\145" => "\x66\165\x6e\143\x74\x69\x6f\156\x43\141\x6c\x6c", "\x6e\141\x6d\x65" => "\103\117\125\x4e\x54", "\141\x72\x67\x75\155\145\156\x74\x73" => array(array("\x74\171\160\x65" => "\x61\154\154"))))), "\x77\x68\x65\x72\145" => array("\x74\171\x70\x65" => "\x62\151\x6e\141\x72\x79\x2d\157\x70", "\157\x70" => "\75", "\154\x65\146\x74" => array("\164\171\160\x65" => "\x71\x75\x61\154\151\146\151\x65\144", "\x64\x6f\155\141\151\156" => "\x72\x6f\x62\157\164\163", "\156\141\155\145" => "\164\171\160\145", "\x62\x61\x6c\151\x61\163" => "\x74\x79\160\145"), "\162\151\x67\x68\164" => array("\x74\171\x70\145" => "\x6c\151\x74\x65\x72\x61\x6c", "\166\141\154\165\x65" => "\x27\x76\x69\162\164\165\141\x6c\x27")), "\x67\162\157\x75\x70" => array(array("\164\171\x70\x65" => "\161\165\x61\154\151\146\151\145\144", "\144\x6f\x6d\x61\x69\x6e" => "\162\157\142\157\164\x73", "\x6e\141\x6d\x65" => "\x6e\141\x6d\x65", "\x62\141\154\151\141\163" => "\156\x61\x6d\145")), "\x68\141\166\x69\156\147" => array("\x74\x79\160\145" => "\142\x69\156\141\162\171\x2d\x6f\x70", "\x6f\160" => "\x3e", "\x6c\145\x66\x74" => array("\164\171\x70\145" => "\146\x75\156\143\164\151\x6f\x6e\x43\x61\154\x6c", "\156\141\x6d\145" => "\103\117\x55\116\124", "\x61\x72\147\x75\155\145\x6e\164\163" => array(array("\164\171\x70\x65" => "\x61\x6c\154"))), "\162\x69\x67\x68\164" => array("\x74\171\x70\x65" => "\x6c\151\164\x65\162\x61\x6c", "\166\x61\x6c\165\x65" => "\x31\x30\x30")), "\x6f\162\144\145\162" => array(array(array("\x74\x79\160\145" => "\x6c\x69\164\x65\x72\x61\x6c", "\166\x61\154\165\145" => "\62"))))), array("\x70\x68\161\154" => "\123\105\x4c\105\103\124\x20" . Robots::class . "\x2e\156\x61\155\145\x2c\40\x43\117\125\116\x54\x28\x2a\x29\40\x46\x52\117\115\x20" . Robots::class . "\40\127\x48\x45\122\x45\x20" . Robots::class . "\56\x74\x79\x70\145\40\x3d\40\42\166\x69\162\164\x75\x61\154\42\x20\x47\122\117\x55\x50\x20\x42\x59\x20" . Robots::class . "\56\x6e\141\x6d\145\40\x48\101\126\x49\x4e\107\x20\x43\117\125\116\124\x28\x2a\51\x3e\61\x30\x30\40\x4f\122\104\x45\x52\40\102\131\40\x32\40\114\x49\x4d\111\x54\40\x31\65", "\145\x78\160\145\x63\164\x65\x64" => array("\x6d\x6f\x64\x65\x6c\x73" => array(Robots::class), "\164\x61\142\x6c\x65\x73" => array("\x72\157\x62\x6f\x74\x73"), "\143\x6f\154\x75\x6d\x6e\x73" => array(Robots::class . "\x5f\x6e\141\155\145" => array("\164\x79\160\145" => "\163\x63\141\154\141\x72", "\142\141\x6c\x69\x61\163" => "\156\141\x6d\145", "\163\161\x6c\101\x6c\151\x61\163" => "\156\x61\x6d\145", "\x63\x6f\154\x75\155\156" => array("\164\x79\160\145" => "\x71\x75\141\x6c\151\x66\x69\145\x64", "\x64\157\155\x61\151\156" => "\162\157\142\157\164\x73", "\156\141\x6d\x65" => "\156\x61\155\145", "\x62\141\154\x69\141\163" => "\156\x61\x6d\145")), "\137\x31" => array("\164\171\x70\145" => "\163\x63\x61\154\141\162", "\143\157\154\165\155\x6e" => array("\164\x79\x70\x65" => "\146\165\x6e\x63\x74\x69\x6f\x6e\103\x61\154\x6c", "\156\x61\x6d\145" => "\103\x4f\125\x4e\x54", "\141\162\x67\x75\x6d\x65\156\x74\163" => array(array("\164\x79\x70\x65" => "\x61\x6c\154"))))), "\167\x68\x65\162\145" => array("\164\x79\x70\145" => "\x62\151\x6e\x61\162\171\55\x6f\x70", "\157\x70" => "\x3d", "\154\x65\146\x74" => array("\x74\171\x70\145" => "\161\x75\x61\154\x69\146\x69\145\x64", "\144\157\x6d\x61\x69\156" => "\162\157\142\x6f\x74\163", "\x6e\141\155\x65" => "\164\x79\x70\x65", "\142\x61\154\x69\141\x73" => "\164\x79\160\145"), "\x72\151\147\150\164" => array("\x74\171\x70\145" => "\154\x69\164\145\162\x61\154", "\x76\141\154\x75\x65" => "\x27\x76\151\162\x74\x75\141\154\x27")), "\x67\162\157\x75\x70" => array(array("\164\x79\x70\145" => "\x71\165\141\154\x69\x66\x69\145\144", "\144\157\x6d\141\x69\156" => "\x72\157\142\x6f\164\163", "\x6e\141\x6d\145" => "\x6e\x61\155\145", "\x62\x61\x6c\x69\x61\x73" => "\156\141\x6d\x65")), "\150\141\166\151\x6e\x67" => array("\164\x79\160\145" => "\x62\x69\156\141\x72\171\55\157\160", "\x6f\160" => "\76", "\x6c\x65\x66\x74" => array("\x74\171\160\x65" => "\x66\165\x6e\x63\x74\x69\x6f\156\x43\141\x6c\154", "\x6e\141\x6d\145" => "\x43\117\125\116\124", "\141\x72\x67\165\155\145\x6e\164\163" => array(array("\164\171\160\x65" => "\x61\154\x6c"))), "\162\151\x67\150\x74" => array("\164\x79\x70\145" => "\x6c\x69\x74\145\x72\141\154", "\x76\141\154\165\x65" => "\x31\60\60")), "\157\x72\144\x65\162" => array(array(array("\x74\x79\160\x65" => "\x6c\151\x74\145\x72\141\x6c", "\x76\x61\154\x75\x65" => "\62"))), "\x6c\x69\x6d\151\x74" => array("\x6e\165\155\142\x65\x72" => array("\x74\x79\160\145" => "\154\x69\164\145\x72\141\x6c", "\166\x61\x6c\x75\145" => "\x31\65")))), array("\x70\150\x71\154" => "\123\x45\x4c\105\103\124\40" . Robots::class . "\56\x6e\x61\155\145\x2c\40\103\117\125\x4e\124\50\52\51\40\x46\122\x4f\x4d\40" . Robots::class . "\x20\x47\122\117\x55\120\x20\x42\131\40" . Robots::class . "\56\x6e\x61\x6d\145\40\110\101\126\111\x4e\x47\40\103\x4f\125\x4e\124\x28\52\51\76\x31\60\60\x20\x4f\122\x44\105\122\x20\x42\x59\40\62\40\114\x49\x4d\x49\x54\40\x31\65", "\145\x78\160\x65\x63\x74\x65\144" => array("\x6d\157\x64\145\x6c\x73" => array(Robots::class), "\164\141\142\x6c\145\163" => array("\162\x6f\x62\x6f\x74\x73"), "\143\157\x6c\x75\155\x6e\x73" => array(Robots::class . "\x5f\156\x61\x6d\145" => array("\164\171\x70\x65" => "\163\143\x61\154\x61\x72", "\142\x61\154\x69\141\x73" => "\x6e\141\155\x65", "\163\161\x6c\101\x6c\151\141\x73" => "\156\x61\x6d\145", "\143\x6f\154\165\155\x6e" => array("\x74\171\x70\x65" => "\x71\165\141\x6c\151\x66\x69\x65\144", "\x64\157\155\141\x69\156" => "\x72\157\142\157\x74\163", "\x6e\x61\x6d\145" => "\156\141\x6d\145", "\142\x61\154\x69\141\x73" => "\156\141\155\x65")), "\x5f\61" => array("\164\171\160\145" => "\163\143\x61\154\x61\162", "\x63\157\x6c\x75\155\156" => array("\x74\171\160\x65" => "\x66\165\x6e\143\x74\x69\x6f\x6e\x43\x61\154\x6c", "\156\141\x6d\145" => "\x43\x4f\125\116\x54", "\x61\162\147\x75\x6d\145\x6e\x74\163" => array(array("\x74\x79\x70\145" => "\x61\x6c\154"))))), "\x67\x72\157\x75\x70" => array(array("\164\x79\x70\145" => "\x71\x75\x61\154\x69\x66\x69\x65\x64", "\x64\x6f\x6d\141\x69\156" => "\x72\x6f\142\x6f\164\163", "\x6e\x61\x6d\x65" => "\x6e\141\155\145", "\142\141\x6c\151\141\x73" => "\156\141\x6d\145")), "\150\141\166\x69\156\147" => array("\x74\x79\x70\145" => "\x62\x69\x6e\141\x72\171\x2d\x6f\160", "\x6f\160" => "\x3e", "\x6c\145\146\164" => array("\164\x79\160\145" => "\x66\x75\156\x63\164\x69\157\156\x43\x61\x6c\154", "\156\x61\x6d\145" => "\x43\x4f\125\116\x54", "\x61\x72\147\165\x6d\x65\156\164\163" => array(array("\x74\x79\x70\145" => "\141\x6c\154"))), "\x72\x69\x67\x68\164" => array("\164\171\160\145" => "\154\x69\164\145\162\x61\x6c", "\166\141\x6c\165\x65" => "\x31\60\60")), "\157\x72\144\145\x72" => array(array(array("\164\171\160\x65" => "\x6c\151\x74\x65\x72\141\x6c", "\166\141\154\x75\145" => "\62"))), "\x6c\x69\x6d\151\x74" => array("\156\x75\x6d\142\x65\x72" => array("\164\x79\160\145" => "\154\x69\x74\x65\x72\141\154", "\x76\141\x6c\x75\x65" => "\61\x35")))), array("\160\x68\161\x6c" => "\x53\105\x4c\105\x43\x54\40\x6e\141\155\145\x2c\40\103\117\x55\116\x54\x28\52\51\x20\106\x52\x4f\115\40" . Robots::class . "\40\x57\110\105\122\x45\40\164\x79\x70\x65\x20\75\x20\x22\166\151\162\164\165\141\154\x22\40\107\x52\117\125\120\x20\x42\131\x20\156\141\155\145\40\110\101\x56\111\116\x47\40\x43\117\x55\x4e\x54\50\52\x29\x3e\x31\60\x30\x20\114\x49\x4d\111\124\x20\x31\65", "\x65\x78\x70\145\x63\164\145\144" => array("\155\157\x64\145\x6c\x73" => array(Robots::class), "\164\x61\142\x6c\x65\163" => array("\162\x6f\142\157\164\x73"), "\x63\x6f\154\x75\155\156\163" => array("\156\x61\x6d\145" => array("\x74\x79\x70\x65" => "\x73\x63\141\154\x61\x72", "\142\x61\154\x69\x61\163" => "\156\141\x6d\145", "\163\161\x6c\101\154\151\141\163" => "\x6e\141\x6d\145", "\x63\x6f\154\165\x6d\x6e" => array("\164\x79\160\x65" => "\161\x75\x61\154\x69\x66\151\x65\144", "\x64\x6f\x6d\x61\x69\156" => "\162\x6f\x62\157\164\163", "\156\141\155\145" => "\x6e\141\155\x65", "\x62\x61\x6c\x69\141\163" => "\x6e\x61\x6d\x65")), "\137\x31" => array("\x74\171\160\x65" => "\163\143\141\154\141\162", "\143\x6f\x6c\x75\155\x6e" => array("\164\x79\x70\x65" => "\146\x75\156\x63\164\151\x6f\x6e\103\x61\154\154", "\x6e\141\155\145" => "\103\x4f\x55\x4e\124", "\141\162\147\x75\x6d\145\156\x74\163" => array(array("\x74\171\x70\145" => "\x61\154\154"))))), "\x77\150\x65\x72\145" => array("\x74\171\x70\x65" => "\x62\151\156\x61\x72\x79\x2d\x6f\x70", "\x6f\160" => "\75", "\x6c\145\146\164" => array("\x74\x79\160\x65" => "\161\x75\141\x6c\x69\x66\151\x65\144", "\144\157\x6d\x61\151\x6e" => "\x72\x6f\x62\x6f\x74\x73", "\156\x61\x6d\x65" => "\x74\x79\160\145", "\142\141\x6c\x69\x61\163" => "\164\x79\x70\x65"), "\162\151\x67\150\164" => array("\164\x79\x70\x65" => "\154\151\164\145\162\x61\154", "\166\x61\x6c\165\145" => "\47\x76\151\162\x74\165\x61\x6c\x27")), "\x67\162\157\x75\x70" => array(array("\164\171\x70\145" => "\161\165\x61\154\151\146\x69\145\x64", "\144\157\x6d\x61\x69\x6e" => "\162\157\142\157\164\x73", "\x6e\x61\155\x65" => "\x6e\141\x6d\x65", "\142\141\154\151\141\163" => "\156\141\x6d\x65")), "\150\x61\x76\x69\x6e\147" => array("\x74\171\x70\145" => "\142\x69\x6e\141\162\171\55\x6f\x70", "\x6f\160" => "\x3e", "\x6c\145\x66\164" => array("\164\x79\160\145" => "\146\165\156\x63\164\x69\157\156\103\141\154\x6c", "\156\x61\155\145" => "\x43\117\125\116\124", "\141\162\x67\165\x6d\x65\x6e\x74\x73" => array(array("\x74\x79\x70\145" => "\141\154\154"))), "\162\x69\x67\x68\164" => array("\164\x79\x70\145" => "\x6c\151\164\145\162\x61\x6c", "\x76\x61\154\165\145" => "\61\x30\60")), "\154\x69\x6d\151\x74" => array("\156\165\155\x62\145\x72" => array("\164\171\160\145" => "\x6c\151\x74\145\162\x61\154", "\x76\141\x6c\x75\145" => "\x31\x35")))), array("\160\150\x71\x6c" => "\x53\105\114\105\x43\x54\x20" . Robots::class . "\x2e\x6e\x61\155\145\x2c\40\103\117\125\116\124\x28\x2a\51\x20\x46\x52\x4f\x4d\40" . Robots::class . "\x20\x57\110\x45\x52\x45\40" . Robots::class . "\x2e\164\x79\x70\x65\40\x3d\x20\x22\166\x69\162\x74\x75\141\x6c\42\40\x47\122\117\x55\120\40\x42\x59\x20" . Robots::class . "\x2e\156\x61\155\145\40\x48\101\x56\x49\116\x47\40\103\117\125\x4e\x54\x28\x2a\51\x3e\x31\x30\x30\x20\114\x49\115\x49\124\40\61\65", "\x65\x78\160\x65\143\164\145\144" => array("\x6d\157\x64\145\154\163" => array(Robots::class), "\x74\141\x62\x6c\145\x73" => array("\x72\157\x62\157\164\163"), "\143\157\x6c\x75\x6d\156\163" => array(Robots::class . "\x5f\x6e\x61\155\145" => array("\164\x79\x70\145" => "\x73\143\x61\154\141\162", "\x62\141\154\151\141\163" => "\x6e\x61\155\145", "\x73\x71\154\x41\154\x69\141\163" => "\x6e\x61\155\x65", "\x63\x6f\x6c\x75\x6d\156" => array("\164\x79\x70\x65" => "\x71\165\141\x6c\x69\x66\151\145\x64", "\x64\157\x6d\141\x69\x6e" => "\162\157\x62\157\164\163", "\156\141\x6d\x65" => "\x6e\141\x6d\145", "\142\x61\x6c\151\x61\x73" => "\x6e\141\155\145")), "\x5f\x31" => array("\x74\171\160\x65" => "\x73\x63\141\x6c\x61\162", "\143\157\x6c\165\x6d\x6e" => array("\x74\171\x70\x65" => "\146\165\x6e\x63\x74\x69\x6f\156\103\141\x6c\154", "\x6e\x61\155\145" => "\103\117\125\x4e\x54", "\141\x72\x67\165\x6d\x65\156\x74\163" => array(array("\x74\x79\x70\145" => "\141\x6c\154"))))), "\167\150\x65\x72\145" => array("\164\171\x70\x65" => "\x62\x69\x6e\x61\162\x79\x2d\x6f\x70", "\157\160" => "\x3d", "\154\145\x66\x74" => array("\x74\171\160\145" => "\161\x75\141\154\151\x66\151\145\144", "\144\x6f\x6d\x61\x69\x6e" => "\162\157\142\157\x74\163", "\156\x61\x6d\145" => "\x74\x79\160\x65", "\142\141\x6c\151\x61\x73" => "\x74\x79\160\145"), "\162\151\147\150\x74" => array("\164\171\160\x65" => "\x6c\x69\x74\x65\162\141\154", "\166\141\154\x75\x65" => "\x27\166\x69\162\x74\x75\141\154\x27")), "\147\162\157\165\x70" => array(array("\164\171\160\145" => "\161\165\x61\154\x69\x66\x69\x65\x64", "\144\x6f\x6d\x61\151\156" => "\x72\x6f\x62\x6f\164\x73", "\x6e\141\155\x65" => "\156\x61\x6d\145", "\x62\141\154\151\x61\x73" => "\156\141\155\145")), "\x68\141\x76\x69\x6e\x67" => array("\x74\171\x70\145" => "\142\151\156\x61\162\x79\x2d\x6f\160", "\157\160" => "\x3e", "\x6c\x65\146\164" => array("\x74\x79\x70\145" => "\x66\x75\x6e\x63\x74\151\157\x6e\103\141\x6c\x6c", "\x6e\x61\155\145" => "\103\117\125\116\124", "\141\x72\147\165\155\145\x6e\164\x73" => array(array("\164\171\160\145" => "\141\154\x6c"))), "\162\x69\x67\150\x74" => array("\x74\x79\x70\x65" => "\154\x69\164\145\x72\141\154", "\x76\141\154\x75\x65" => "\x31\60\x30")), "\154\x69\x6d\151\164" => array("\x6e\x75\x6d\x62\145\162" => array("\164\171\x70\x65" => "\154\151\164\x65\x72\x61\154", "\166\x61\154\x75\145" => "\x31\x35")))), array("\160\150\161\154" => "\x53\x45\114\x45\x43\124\x20" . Robots::class . "\56\156\141\155\x65\54\x20\103\x4f\125\x4e\124\x28\52\x29\x20\106\x52\x4f\x4d\40" . Robots::class . "\40\107\122\x4f\125\x50\x20\102\x59\x20" . Robots::class . "\56\156\x61\155\145\x20\x48\x41\126\x49\x4e\x47\x20\103\x4f\x55\116\124\x28\52\51\76\x31\x30\60\x20\x4c\111\x4d\111\x54\40\x31\65", "\x65\x78\160\145\x63\164\x65\144" => array("\155\157\x64\x65\x6c\163" => array(Robots::class), "\x74\x61\142\154\x65\163" => array("\x72\157\x62\157\164\163"), "\143\157\154\x75\x6d\x6e\x73" => array(Robots::class . "\x5f\x6e\141\x6d\x65" => array("\x74\171\x70\x65" => "\163\x63\x61\154\x61\162", "\142\141\x6c\x69\x61\x73" => "\x6e\x61\x6d\x65", "\x73\x71\154\101\x6c\151\x61\x73" => "\156\x61\x6d\x65", "\x63\157\154\x75\155\156" => array("\164\171\160\x65" => "\x71\165\x61\x6c\151\146\151\145\144", "\144\157\x6d\141\151\156" => "\162\157\142\157\164\x73", "\156\141\x6d\145" => "\x6e\x61\155\145", "\x62\x61\154\151\141\x73" => "\156\141\155\145")), "\137\61" => array("\x74\171\x70\x65" => "\x73\x63\x61\x6c\x61\162", "\143\x6f\x6c\165\155\156" => array("\x74\x79\x70\145" => "\146\165\156\143\164\151\x6f\156\x43\141\x6c\x6c", "\x6e\x61\155\x65" => "\103\x4f\x55\x4e\124", "\x61\x72\147\165\x6d\145\156\164\x73" => array(array("\x74\x79\x70\145" => "\141\154\x6c"))))), "\147\162\157\165\160" => array(array("\x74\x79\x70\145" => "\x71\x75\x61\154\151\146\151\x65\x64", "\144\x6f\155\141\151\x6e" => "\x72\157\x62\x6f\x74\x73", "\x6e\141\155\x65" => "\x6e\x61\x6d\145", "\x62\x61\x6c\151\x61\163" => "\x6e\x61\x6d\145")), "\150\x61\166\x69\156\147" => array("\164\171\160\x65" => "\142\x69\x6e\141\x72\x79\55\157\x70", "\x6f\x70" => "\76", "\154\x65\146\x74" => array("\x74\171\x70\145" => "\146\x75\156\x63\x74\x69\x6f\x6e\x43\x61\154\154", "\156\x61\155\x65" => "\103\117\125\x4e\124", "\x61\162\147\165\x6d\x65\x6e\164\163" => array(array("\164\x79\x70\x65" => "\141\154\x6c"))), "\162\x69\147\x68\x74" => array("\164\171\160\x65" => "\154\151\x74\145\162\x61\x6c", "\166\x61\x6c\x75\145" => "\61\x30\60")), "\154\x69\x6d\151\164" => array("\156\165\155\142\145\x72" => array("\164\x79\160\145" => "\154\x69\164\145\162\x61\x6c", "\x76\x61\x6c\165\x65" => "\61\65")))), array("\x70\x68\x71\154" => "\123\105\114\x45\103\124\x20\52\x20\x46\x52\x4f\115\x20" . Robotters::class, "\x65\170\x70\x65\143\x74\145\144" => array("\155\x6f\x64\x65\154\163" => array(Robotters::class), "\164\141\x62\x6c\x65\x73" => array("\162\x6f\x62\157\164\163"), "\x63\157\x6c\165\x6d\x6e\x73" => array(lcfirst(Robotters::class) => array("\164\171\x70\x65" => "\x6f\142\152\145\x63\164", "\x6d\157\144\145\154" => Robotters::class, "\x63\157\x6c\x75\x6d\x6e" => "\162\x6f\x62\157\x74\x73", "\x62\x61\154\x69\x61\x73" => lcfirst(Robotters::class))))), array("\x70\150\x71\x6c" => "\123\x45\x4c\x45\103\x54\40\52\x20\x46\122\x4f\x4d\40" . SomeRobotters::class, "\145\x78\x70\145\x63\x74\145\x64" => array("\x6d\157\x64\145\154\163" => array(SomeRobotters::class), "\164\141\142\154\x65\163" => array("\x72\157\x62\157\164\x73"), "\143\157\x6c\165\x6d\156\163" => array(lcfirst(SomeRobotters::class) => array("\164\x79\160\x65" => "\157\x62\152\145\143\x74", "\155\157\x64\145\x6c" => SomeRobotters::class, "\143\157\x6c\x75\x6d\x6e" => "\162\157\142\157\x74\x73", "\x62\141\154\x69\141\163" => lcfirst(SomeRobotters::class))))), array("\160\x68\x71\x6c" => "\x53\105\x4c\105\x43\124\40" . SomeRobotters::class . "\56\x2a\x20\106\122\x4f\115\40" . SomeRobotters::class, "\x65\x78\x70\x65\x63\164\145\x64" => array("\x6d\x6f\144\x65\154\163" => array(SomeRobotters::class), "\x74\141\142\154\x65\163" => array("\x72\x6f\142\x6f\x74\x73"), "\x63\x6f\154\165\155\156\163" => array(lcfirst(SomeRobotters::class) => array("\x74\171\x70\145" => "\x6f\142\x6a\145\143\x74", "\155\x6f\x64\x65\x6c" => SomeRobotters::class, "\x63\157\154\165\155\156" => "\162\x6f\142\157\x74\x73", "\x62\x61\x6c\x69\x61\x73" => lcfirst(SomeRobotters::class))))), array("\x70\x68\x71\154" => "\123\105\114\105\103\124\x20\x72\56\x2a\x20\106\122\117\x4d\40" . SomeRobotters::class . "\40\x72", "\x65\x78\x70\x65\x63\164\145\x64" => array("\x6d\157\x64\145\154\x73" => array(SomeRobotters::class), "\x74\x61\142\154\145\163" => array(array("\x72\157\x62\157\164\163", null, "\x72")), "\143\157\x6c\165\155\x6e\x73" => array("\x72" => array("\164\171\x70\x65" => "\x6f\x62\152\145\x63\x74", "\x6d\x6f\x64\x65\154" => SomeRobotters::class, "\143\157\x6c\165\155\x6e" => "\x72", "\142\141\x6c\151\141\x73" => "\162")))), array("\x70\x68\x71\x6c" => "\123\105\x4c\x45\x43\x54\40" . Robotters::class . "\x2e\52\40\x46\122\x4f\x4d\x20" . Robotters::class, "\145\170\160\x65\143\x74\145\144" => array("\x6d\x6f\x64\x65\154\163" => array(Robotters::class), "\x74\141\x62\154\x65\x73" => array("\x72\157\142\x6f\164\x73"), "\x63\x6f\154\x75\155\156\x73" => array(lcfirst(Robotters::class) => array("\x74\x79\160\145" => "\x6f\142\x6a\145\143\164", "\155\x6f\144\x65\154" => Robotters::class, "\x63\x6f\x6c\165\x6d\156" => "\162\x6f\x62\157\164\x73", "\142\x61\x6c\151\x61\x73" => lcfirst(Robotters::class))))), array("\x70\x68\x71\154" => "\123\105\114\105\x43\x54\x20\x72\x2e\52\40\x46\122\117\x4d\40" . Robotters::class . "\40\x72", "\x65\x78\x70\x65\143\164\145\x64" => array("\x6d\157\x64\x65\x6c\x73" => array(Robotters::class), "\x74\x61\142\154\x65\163" => array(array("\162\x6f\x62\157\164\163", null, "\x72")), "\143\157\x6c\165\155\x6e\163" => array("\x72" => array("\x74\x79\x70\145" => "\x6f\x62\x6a\x65\143\x74", "\x6d\x6f\x64\145\x6c" => Robotters::class, "\x63\x6f\x6c\x75\x6d\156" => "\x72", "\x62\141\154\151\x61\x73" => "\162")))), array("\160\150\161\154" => "\x53\x45\114\x45\103\x54\40\x72\56\x2a\x20\x46\122\117\115\x20" . Robotters::class . "\40\101\x53\40\162", "\145\x78\x70\x65\x63\x74\145\144" => array("\155\157\x64\145\154\x73" => array(Robotters::class), "\x74\141\x62\154\145\x73" => array(array("\x72\x6f\x62\157\x74\x73", null, "\x72")), "\143\157\154\x75\x6d\x6e\x73" => array("\x72" => array("\x74\171\160\145" => "\157\x62\152\x65\143\164", "\155\x6f\x64\145\154" => Robotters::class, "\x63\x6f\154\165\x6d\156" => "\162", "\142\x61\154\151\141\163" => "\162")))), array("\x70\x68\x71\154" => "\x53\105\114\x45\103\x54\40\x63\157\x64\145\54\x20\x74\150\x65\116\x61\x6d\145\x20\106\x52\117\115\x20" . Robotters::class, "\x65\x78\160\145\x63\x74\x65\144" => array("\155\x6f\x64\145\154\x73" => array(Robotters::class), "\164\141\142\x6c\x65\x73" => array("\162\157\142\x6f\x74\163"), "\143\x6f\x6c\165\155\x6e\163" => array("\143\157\x64\145" => array("\164\x79\x70\x65" => "\163\x63\141\x6c\141\x72", "\x62\141\x6c\x69\x61\x73" => "\x63\x6f\144\145", "\163\x71\x6c\101\154\151\141\x73" => "\143\x6f\144\145", "\143\x6f\x6c\165\155\x6e" => array("\x74\x79\160\x65" => "\x71\x75\141\154\x69\146\151\145\144", "\144\157\x6d\141\151\156" => "\x72\157\142\x6f\164\163", "\156\x61\155\x65" => "\x69\x64", "\x62\141\x6c\151\141\163" => "\143\x6f\x64\145")), "\x74\x68\x65\116\x61\x6d\145" => array("\164\x79\x70\x65" => "\163\143\x61\x6c\141\x72", "\x62\141\x6c\151\x61\163" => "\x74\150\x65\x4e\141\x6d\145", "\x73\x71\154\x41\x6c\151\x61\x73" => "\164\x68\145\116\x61\155\x65", "\143\x6f\x6c\x75\155\156" => array("\x74\x79\x70\145" => "\161\165\x61\154\x69\x66\x69\x65\x64", "\144\157\x6d\141\x69\156" => "\162\157\x62\x6f\x74\163", "\156\141\x6d\x65" => "\156\x61\x6d\145", "\142\141\x6c\151\x61\163" => "\x74\150\x65\116\x61\x6d\x65"))))), array("\x70\150\161\x6c" => "\123\105\x4c\x45\x43\124\x20\162\x2e\x63\157\144\145\54\40\x72\x2e\164\150\x65\x4e\141\x6d\x65\x20\x46\122\117\x4d\40" . Robotters::class . "\40\101\123\x20\162", "\x65\170\160\x65\x63\164\145\144" => array("\155\x6f\x64\x65\154\x73" => array(Robotters::class), "\164\141\142\154\145\x73" => array(array("\162\x6f\x62\x6f\164\163", null, "\x72")), "\x63\157\x6c\165\x6d\x6e\163" => array("\162\137\143\157\144\x65" => array("\164\x79\160\145" => "\x73\143\141\x6c\x61\162", "\142\x61\x6c\151\x61\163" => "\x63\157\x64\x65", "\x73\x71\x6c\x41\x6c\151\x61\x73" => "\x63\x6f\x64\x65", "\x63\157\x6c\x75\x6d\x6e" => array("\164\x79\160\x65" => "\x71\165\141\154\x69\146\151\145\144", "\144\157\x6d\141\151\x6e" => "\162", "\156\141\x6d\145" => "\x69\144", "\142\141\154\151\141\163" => "\x63\157\144\145")), "\162\137\x74\150\x65\x4e\x61\x6d\x65" => array("\x74\171\x70\145" => "\x73\143\141\154\141\x72", "\142\141\154\151\x61\x73" => "\164\150\x65\116\141\155\x65", "\x73\x71\154\x41\154\x69\x61\x73" => "\x74\150\145\116\x61\155\145", "\x63\157\x6c\165\155\x6e" => array("\x74\x79\x70\145" => "\x71\165\x61\154\x69\x66\151\145\x64", "\144\157\x6d\x61\x69\x6e" => "\x72", "\156\141\155\145" => "\x6e\x61\155\x65", "\x62\141\154\x69\x61\163" => "\x74\150\145\116\141\x6d\145"))))), array("\160\150\161\154" => "\x53\x45\x4c\x45\103\124\x20\162\56\143\x6f\144\145\40\x41\x53\x20\154\145\x5f\x69\x64\x2c\x20\162\x2e\164\x68\145\116\x61\x6d\145\x20\x41\x53\x20\x6c\x65\x5f\156\x61\155\x65\x20\x46\x52\117\115\x20" . Robotters::class . "\40\101\x53\40\x72", "\145\x78\160\145\143\x74\145\x64" => array("\155\157\x64\145\x6c\163" => array(Robotters::class), "\x74\141\142\154\145\x73" => array(array("\162\x6f\x62\157\x74\x73", null, "\x72")), "\143\157\154\165\155\x6e\x73" => array("\x6c\145\x5f\151\x64" => array("\164\x79\x70\x65" => "\163\143\141\154\x61\x72", "\142\x61\154\151\x61\163" => "\x6c\x65\x5f\151\144", "\x73\161\x6c\101\154\x69\x61\163" => "\154\x65\x5f\151\144", "\143\157\x6c\165\155\156" => array("\164\171\160\x65" => "\x71\165\x61\154\151\x66\x69\x65\x64", "\x64\157\x6d\x61\151\156" => "\x72", "\156\x61\x6d\x65" => "\x69\x64", "\x62\141\x6c\151\x61\163" => "\x63\x6f\144\x65")), "\x6c\x65\137\x6e\141\155\145" => array("\x74\x79\x70\x65" => "\x73\x63\141\154\141\x72", "\142\x61\x6c\x69\x61\163" => "\154\x65\137\x6e\x61\x6d\145", "\x73\x71\x6c\x41\154\x69\x61\163" => "\x6c\x65\137\x6e\x61\x6d\145", "\143\x6f\x6c\x75\x6d\156" => array("\164\x79\160\145" => "\161\165\141\x6c\151\x66\x69\145\144", "\144\157\x6d\141\x69\x6e" => "\162", "\x6e\x61\x6d\x65" => "\156\x61\155\x65", "\142\141\154\x69\141\x73" => "\164\150\145\116\141\155\x65"))))), array("\x70\150\161\154" => "\x53\x45\114\105\x43\124\40" . Robotters::class . "\56\143\x6f\144\x65\40\x41\123\x20\x6c\145\137\151\x64\x2c\x20" . Robotters::class . "\56\x74\150\x65\x4e\x61\155\145\x20\101\123\x20\x6c\x65\x5f\x6e\141\155\x65\x20\106\122\x4f\x4d\40" . Robotters::class, "\145\x78\x70\x65\x63\x74\145\x64" => array("\155\157\144\x65\154\163" => array(Robotters::class), "\x74\141\x62\x6c\x65\163" => array("\x72\x6f\x62\x6f\x74\x73"), "\x63\x6f\154\165\155\x6e\x73" => array("\154\x65\x5f\x69\x64" => array("\164\x79\x70\145" => "\x73\x63\x61\x6c\x61\x72", "\x62\141\154\151\x61\x73" => "\154\145\x5f\x69\x64", "\x73\x71\x6c\x41\x6c\x69\141\x73" => "\x6c\145\x5f\151\x64", "\143\157\154\165\155\156" => array("\x74\171\160\x65" => "\x71\165\x61\x6c\x69\x66\151\x65\x64", "\144\x6f\155\141\151\156" => "\x72\157\x62\157\x74\x73", "\x6e\141\x6d\145" => "\151\x64", "\142\x61\x6c\x69\x61\163" => "\x63\x6f\x64\x65")), "\154\x65\x5f\x6e\x61\155\145" => array("\x74\x79\x70\145" => "\x73\x63\141\154\x61\x72", "\x62\141\154\x69\141\x73" => "\154\145\x5f\x6e\x61\155\x65", "\163\x71\154\x41\154\151\141\x73" => "\x6c\145\x5f\156\141\x6d\x65", "\143\x6f\x6c\165\x6d\156" => array("\x74\x79\x70\x65" => "\x71\x75\x61\x6c\151\x66\151\x65\x64", "\x64\157\x6d\141\151\x6e" => "\x72\x6f\x62\157\x74\x73", "\156\141\155\x65" => "\x6e\141\155\x65", "\x62\141\154\x69\141\x73" => "\164\x68\x65\x4e\141\x6d\x65"))))), array("\160\x68\x71\x6c" => "\123\x45\114\x45\103\124\x20\47\x27\x20\x65\x6d\x70\x74\x79\137\163\164\162\54\x20\61\x30\56\65\x20\x64\157\165\142\x6c\145\137\156\165\x6d\142\x65\162\54\x20\61\60\60\60\40\101\123\x20\x6c\x6f\x6e\x67\137\x6e\165\155\x62\145\162\x20\106\x52\117\x4d\x20" . Robotters::class, "\x65\170\160\x65\143\x74\x65\x64" => array("\155\157\x64\145\154\163" => array(Robotters::class), "\x74\141\x62\154\145\x73" => array("\x72\x6f\142\x6f\x74\x73"), "\143\157\154\x75\x6d\x6e\163" => array("\145\155\160\164\x79\137\x73\164\162" => array("\x74\171\x70\x65" => "\163\143\x61\x6c\141\x72", "\143\157\x6c\165\155\156" => array("\164\171\160\145" => "\154\x69\x74\145\x72\x61\154", "\x76\141\x6c\x75\x65" => "\47\x27"), "\142\x61\154\151\x61\x73" => "\145\x6d\x70\164\171\x5f\163\164\x72", "\x73\x71\154\101\x6c\151\141\x73" => "\145\x6d\160\x74\171\137\163\x74\162"), "\144\157\165\142\154\145\x5f\156\x75\x6d\142\145\162" => array("\164\171\x70\x65" => "\x73\x63\x61\x6c\141\162", "\143\157\x6c\x75\x6d\156" => array("\164\x79\x70\x65" => "\154\x69\164\x65\x72\x61\154", "\166\x61\x6c\165\145" => "\x31\60\x2e\x35"), "\142\141\x6c\x69\141\x73" => "\x64\157\x75\x62\x6c\x65\x5f\156\165\155\x62\145\x72", "\163\x71\x6c\x41\154\151\x61\x73" => "\x64\x6f\x75\142\154\x65\x5f\156\165\x6d\142\145\162"), "\154\x6f\156\x67\137\x6e\165\x6d\x62\145\x72" => array("\x74\x79\x70\145" => "\163\143\x61\154\141\162", "\143\x6f\154\165\x6d\156" => array("\164\171\160\145" => "\x6c\151\164\145\x72\141\x6c", "\x76\141\x6c\x75\145" => "\x31\60\x30\x30"), "\x62\141\154\x69\141\x73" => "\x6c\x6f\x6e\x67\137\x6e\x75\x6d\142\145\162", "\x73\x71\x6c\x41\x6c\151\x61\x73" => "\154\x6f\156\x67\x5f\156\x75\155\x62\x65\x72")))), array("\160\x68\x71\154" => "\123\105\x4c\x45\103\x54\40" . Personers::class . "\56\142\x6f\x72\x67\x65\x72\111\144\x20\x46\x52\x4f\x4d\x20" . Personers::class, "\145\170\x70\x65\143\164\x65\144" => array("\155\157\x64\145\154\163" => array(Personers::class), "\x74\x61\142\154\145\163" => array("\160\145\x72\163\x6f\156\x61\163"), "\x63\157\154\165\x6d\x6e\163" => array(Personers::class . "\137\142\157\162\147\x65\162\x49\144" => array("\164\171\x70\x65" => "\x73\x63\141\x6c\141\x72", "\x62\141\154\x69\141\163" => "\x62\157\162\147\145\x72\111\144", "\x73\161\154\101\x6c\151\x61\x73" => "\x62\157\x72\x67\x65\x72\x49\x64", "\143\x6f\x6c\165\155\156" => array("\x74\x79\x70\145" => "\161\x75\141\x6c\x69\146\x69\x65\144", "\x64\x6f\155\x61\151\x6e" => "\x70\145\x72\163\x6f\x6e\x61\x73", "\156\141\155\145" => "\x63\x65\x64\x75\x6c\x61", "\x62\141\154\x69\x61\x73" => "\x62\x6f\x72\147\x65\x72\x49\x64"))))), array("\x70\x68\x71\x6c" => "\x73\x65\154\145\x63\x74\x20" . strtolower(Personers::class) . "\56\x62\x6f\x72\x67\145\162\111\x64\40\146\x72\157\155\40" . strtolower(Personers::class), "\x65\x78\160\x65\143\164\145\x64" => array("\155\x6f\144\x65\x6c\x73" => array(strtolower(Personers::class)), "\164\x61\x62\x6c\x65\163" => array("\160\145\x72\163\x6f\x6e\141\163"), "\x63\x6f\x6c\x75\155\156\x73" => array(strtolower(Personers::class) . "\x5f\x62\157\162\147\145\162\x49\144" => array("\164\x79\160\x65" => "\x73\143\x61\x6c\141\162", "\x62\x61\154\151\141\163" => "\142\157\162\147\x65\x72\x49\144", "\x73\161\x6c\x41\154\x69\x61\x73" => "\142\157\162\x67\x65\162\111\x64", "\x63\157\154\x75\x6d\x6e" => array("\x74\x79\160\145" => "\161\165\141\x6c\151\146\x69\x65\144", "\144\x6f\x6d\x61\x69\x6e" => "\160\x65\162\x73\157\156\141\x73", "\156\x61\155\145" => "\x63\145\144\165\x6c\141", "\x62\141\154\151\141\x73" => "\x62\157\162\x67\x65\x72\x49\x64"))))), array("\160\x68\161\x6c" => "\x53\x45\x4c\105\103\124\x20\160\56\142\157\x72\x67\145\x72\x49\144\40\101\123\x20\143\x65\x64\x75\x6c\141\40\106\x52\x4f\x4d\x20" . Personers::class . "\x20\x70", "\x65\170\x70\x65\143\x74\145\x64" => array("\155\157\x64\145\x6c\x73" => array(Personers::class), "\x74\x61\142\154\x65\x73" => array(array("\160\145\x72\163\157\x6e\x61\x73", null, "\x70")), "\x63\157\154\165\155\156\x73" => array("\143\145\144\x75\x6c\x61" => array("\164\x79\160\x65" => "\x73\x63\141\x6c\141\x72", "\x62\141\x6c\x69\x61\x73" => "\143\x65\x64\x75\x6c\x61", "\x73\x71\154\101\154\151\x61\163" => "\143\145\144\x75\x6c\x61", "\x63\x6f\154\x75\155\x6e" => array("\x74\171\160\145" => "\x71\165\141\154\x69\146\151\x65\x64", "\144\157\x6d\x61\151\156" => "\x70", "\x6e\x61\155\x65" => "\x63\145\x64\x75\154\141", "\142\141\x6c\x69\x61\x73" => "\x62\157\162\x67\x65\x72\x49\144"))))), array("\160\150\161\154" => "\123\x45\x4c\105\x43\124\40\103\x4f\116\103\101\124\x28" . Personers::class . "\x2e\x62\x6f\x72\x67\x65\x72\x49\x64\x2c\47\x2d\x27\x2c" . Personers::class . "\56\x6e\x61\x76\156\145\x73\x29\x20\101\x53\x20\x6e\141\x76\156\x65\x20\106\x52\117\x4d\x20" . Personers::class, "\x65\170\x70\x65\x63\x74\x65\144" => array("\155\x6f\x64\145\x6c\x73" => array(Personers::class), "\164\x61\142\x6c\145\163" => array("\x70\145\x72\163\157\156\x61\x73"), "\143\157\154\165\155\x6e\x73" => array("\x6e\141\x76\156\x65" => array("\164\x79\160\x65" => "\163\x63\x61\x6c\141\162", "\143\157\154\165\155\156" => array("\x74\x79\160\x65" => "\x66\165\x6e\143\164\x69\157\x6e\x43\141\154\154", "\156\x61\155\x65" => "\x43\117\x4e\x43\101\124", "\141\x72\x67\165\x6d\145\x6e\x74\163" => array(array("\x74\x79\x70\x65" => "\x71\165\x61\x6c\151\x66\151\145\144", "\144\x6f\x6d\x61\x69\x6e" => "\160\145\162\x73\x6f\x6e\141\x73", "\156\x61\155\145" => "\x63\x65\x64\165\x6c\x61", "\x62\141\x6c\151\x61\x73" => "\x62\157\162\x67\x65\162\x49\144"), array("\164\x79\x70\x65" => "\154\151\164\x65\162\141\x6c", "\166\x61\154\x75\145" => "\x27\55\47"), array("\164\x79\160\145" => "\x71\x75\x61\x6c\x69\146\151\145\144", "\x64\x6f\155\141\x69\156" => "\x70\145\162\163\x6f\156\x61\163", "\156\x61\x6d\x65" => "\156\157\155\142\162\x65\x73", "\x62\x61\x6c\x69\141\x73" => "\156\x61\166\156\145\163"))), "\142\141\x6c\x69\x61\x73" => "\156\x61\166\156\145", "\163\161\154\101\154\151\141\x73" => "\x6e\x61\x76\156\x65")))), array("\160\x68\161\154" => "\123\105\114\x45\103\124\x20\x2a\40\106\x52\117\115\40" . Robotters::class . "\40\x4a\117\111\x4e\x20" . RobottersDeles::class, "\145\170\160\x65\143\x74\145\x64" => array("\x6d\x6f\144\145\x6c\163" => array(Robotters::class), "\164\141\142\x6c\x65\163" => array("\x72\157\142\157\x74\x73"), "\x63\157\154\165\155\x6e\163" => array(lcfirst(Robotters::class) => array("\164\x79\160\145" => "\x6f\142\152\145\x63\x74", "\x6d\157\x64\145\x6c" => Robotters::class, "\143\157\x6c\165\155\156" => "\162\x6f\142\x6f\x74\163", "\142\x61\154\151\141\x73" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\x74\x79\x70\145" => "\157\x62\x6a\145\143\x74", "\155\x6f\x64\145\154" => RobottersDeles::class, "\x63\157\154\165\x6d\x6e" => "\x72\x6f\x62\x6f\x74\163\137\x70\141\162\x74\163", "\142\141\x6c\x69\x61\x73" => lcfirst(RobottersDeles::class))), "\x6a\x6f\x69\x6e\163" => array(array("\164\171\x70\x65" => "\x49\x4e\116\x45\122", "\x73\157\165\x72\x63\x65" => array("\x72\x6f\142\157\164\163\x5f\160\x61\162\164\x73", null), "\143\x6f\156\x64\x69\x74\x69\x6f\156\163" => array(array("\164\x79\160\x65" => "\142\x69\x6e\x61\162\x79\x2d\x6f\x70", "\x6f\160" => "\x3d", "\154\x65\x66\164" => array("\x74\171\160\145" => "\161\x75\x61\154\151\x66\x69\x65\x64", "\x64\x6f\x6d\141\151\x6e" => "\x72\157\x62\157\164\x73", "\156\x61\x6d\145" => "\151\144", "\142\141\154\x69\141\x73" => "\143\x6f\x64\145"), "\x72\151\147\x68\164" => array("\164\171\x70\x65" => "\161\x75\x61\x6c\151\x66\151\145\x64", "\x64\157\155\x61\x69\x6e" => "\x72\x6f\142\157\164\x73\137\160\141\162\x74\163", "\156\x61\155\x65" => "\x72\157\142\157\x74\163\137\x69\x64", "\x62\141\x6c\151\141\x73" => "\x72\157\142\x6f\x74\164\x65\x72\x73\103\x6f\x64\x65"))))))), array("\x70\x68\x71\154" => "\x53\x45\x4c\105\103\124\40\x2a\x20\x46\x52\x4f\x4d\40" . Robotters::class . "\40\x43\122\117\123\x53\40\112\117\x49\x4e\40" . RobottersDeles::class, "\x65\170\160\145\143\164\x65\144" => array("\155\157\144\145\x6c\163" => array(Robotters::class), "\x74\x61\x62\x6c\x65\163" => array("\162\157\x62\157\164\x73"), "\x63\x6f\154\x75\155\x6e\x73" => array(lcfirst(Robotters::class) => array("\164\x79\160\145" => "\157\x62\x6a\145\143\x74", "\x6d\x6f\144\x65\x6c" => Robotters::class, "\143\157\x6c\x75\x6d\x6e" => "\x72\157\142\x6f\x74\x73", "\142\141\x6c\151\141\x73" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\x74\171\x70\145" => "\157\142\x6a\145\143\x74", "\x6d\157\144\145\x6c" => RobottersDeles::class, "\x63\x6f\154\165\155\156" => "\162\x6f\x62\157\x74\163\x5f\x70\141\x72\164\163", "\x62\x61\154\151\141\163" => lcfirst(RobottersDeles::class))), "\152\157\x69\x6e\x73" => array(array("\x74\171\160\145" => "\x43\122\117\x53\123", "\x73\x6f\165\162\143\x65" => array("\162\157\142\157\164\x73\137\160\141\x72\x74\163", null), "\143\157\156\144\151\x74\x69\x6f\156\163" => array(array("\x74\x79\160\x65" => "\x62\x69\156\x61\162\171\55\157\x70", "\157\x70" => "\75", "\x6c\x65\x66\x74" => array("\164\171\x70\145" => "\161\x75\x61\154\151\x66\x69\x65\144", "\144\x6f\155\141\151\x6e" => "\x72\157\x62\157\x74\x73", "\x6e\x61\x6d\x65" => "\151\x64", "\142\x61\154\151\141\x73" => "\143\157\x64\x65"), "\162\151\147\150\164" => array("\x74\x79\x70\x65" => "\161\165\141\154\151\146\151\x65\x64", "\144\157\155\141\x69\156" => "\162\157\x62\157\164\x73\x5f\x70\x61\x72\x74\x73", "\x6e\141\155\x65" => "\x72\157\142\x6f\x74\163\137\x69\x64", "\142\x61\x6c\151\x61\x73" => "\x72\x6f\142\157\164\164\145\x72\x73\x43\157\x64\x65"))))))), array("\160\x68\x71\x6c" => "\x53\x45\114\x45\x43\124\40\x2a\x20\x46\x52\x4f\115\x20" . Robotters::class . "\40\x4c\105\x46\x54\40\x4a\x4f\111\x4e\40" . RobottersDeles::class . "\x20\x52\111\x47\x48\x54\40\x4a\117\x49\x4e\40" . Deles::class, "\145\170\160\x65\x63\x74\145\x64" => array("\155\x6f\144\x65\154\x73" => array(Robotters::class), "\x74\x61\x62\x6c\x65\x73" => array("\x72\157\x62\x6f\164\x73"), "\x63\157\154\165\x6d\156\x73" => array(lcfirst(Robotters::class) => array("\164\171\160\145" => "\157\x62\152\x65\143\164", "\x6d\x6f\x64\145\154" => Robotters::class, "\x63\157\154\x75\155\156" => "\162\157\x62\x6f\164\x73", "\x62\141\x6c\151\x61\163" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\164\171\x70\x65" => "\157\x62\x6a\x65\x63\164", "\x6d\157\x64\x65\x6c" => RobottersDeles::class, "\x63\157\x6c\x75\155\x6e" => "\x72\157\x62\157\x74\x73\137\160\x61\x72\164\x73", "\142\141\x6c\151\x61\163" => lcfirst(RobottersDeles::class)), lcfirst(Deles::class) => array("\x74\171\x70\145" => "\157\x62\152\x65\x63\x74", "\x6d\157\x64\145\x6c" => Deles::class, "\143\x6f\154\165\x6d\x6e" => "\x70\x61\x72\x74\x73", "\142\x61\154\151\141\x73" => lcfirst(Deles::class))), "\152\157\151\156\x73" => array(array("\x74\x79\160\145" => "\x4c\x45\x46\124", "\163\157\x75\x72\143\x65" => array("\x72\x6f\x62\157\164\x73\137\x70\141\x72\x74\163", null), "\x63\157\156\144\151\164\x69\157\156\x73" => array(array("\x74\x79\x70\145" => "\x62\x69\156\141\x72\x79\x2d\157\x70", "\x6f\x70" => "\75", "\154\145\x66\164" => array("\x74\171\x70\145" => "\x71\x75\141\154\151\x66\151\145\x64", "\x64\157\x6d\141\151\156" => "\162\x6f\x62\157\164\x73", "\x6e\x61\155\145" => "\151\x64", "\x62\x61\154\x69\141\x73" => "\x63\157\144\145"), "\x72\x69\x67\150\x74" => array("\x74\x79\x70\x65" => "\161\165\x61\154\x69\146\151\x65\x64", "\144\157\x6d\x61\x69\x6e" => "\162\157\x62\157\164\163\x5f\x70\x61\x72\164\163", "\x6e\141\155\145" => "\162\157\x62\157\164\x73\137\151\144", "\142\x61\x6c\x69\x61\x73" => "\162\x6f\x62\157\x74\164\145\162\163\x43\157\x64\145")))), array("\x74\x79\160\x65" => "\122\111\x47\x48\x54", "\x73\157\x75\x72\x63\x65" => array("\160\141\162\x74\163", null), "\x63\157\156\x64\x69\x74\151\157\x6e\x73" => array())))), array("\x70\x68\x71\154" => "\x53\105\x4c\105\x43\124\40\52\40\x46\x52\x4f\115\40" . RobottersDeles::class . "\x20\114\x45\x46\124\x20\x4f\x55\124\x45\x52\x20\112\x4f\x49\x4e\40" . Robotters::class . "\40\x52\111\107\x48\x54\x20\x4f\x55\124\105\122\x20\x4a\x4f\x49\x4e\40" . Deles::class, "\145\170\160\145\143\164\145\144" => array("\x6d\x6f\144\x65\154\163" => array(RobottersDeles::class), "\x74\x61\x62\154\145\163" => array("\x72\x6f\x62\x6f\x74\163\x5f\x70\141\162\x74\x73"), "\143\x6f\x6c\165\155\x6e\x73" => array(lcfirst(RobottersDeles::class) => array("\164\171\x70\x65" => "\x6f\x62\152\145\x63\x74", "\155\157\x64\145\154" => RobottersDeles::class, "\143\x6f\154\165\155\156" => "\162\x6f\142\157\164\x73\x5f\x70\x61\162\x74\163", "\142\141\154\151\x61\163" => lcfirst(RobottersDeles::class)), lcfirst(Robotters::class) => array("\164\171\160\x65" => "\x6f\x62\x6a\x65\x63\164", "\155\x6f\x64\145\154" => Robotters::class, "\143\157\154\x75\x6d\x6e" => "\162\x6f\142\x6f\164\163", "\x62\x61\154\x69\x61\x73" => lcfirst(Robotters::class)), lcfirst(Deles::class) => array("\164\x79\x70\145" => "\157\142\x6a\145\x63\164", "\x6d\x6f\x64\145\154" => Deles::class, "\143\157\x6c\x75\155\156" => "\160\x61\162\x74\x73", "\x62\141\x6c\x69\x61\x73" => lcfirst(Deles::class))), "\x6a\x6f\151\156\x73" => array(array("\164\171\160\x65" => "\x4c\105\x46\x54", "\163\x6f\165\162\x63\145" => array("\162\157\142\157\x74\163", null), "\x63\157\156\144\x69\x74\x69\157\x6e\x73" => array(array("\164\171\x70\145" => "\142\151\156\141\162\x79\55\157\160", "\x6f\160" => "\x3d", "\154\145\146\164" => array("\164\171\x70\x65" => "\x71\165\x61\x6c\x69\x66\x69\x65\144", "\144\x6f\x6d\x61\x69\156" => "\162\157\142\157\164\x73\137\x70\141\162\164\x73", "\156\141\x6d\x65" => "\x72\157\142\157\164\163\137\151\144", "\142\x61\x6c\151\141\x73" => "\162\157\x62\157\164\164\145\162\163\x43\157\144\x65"), "\162\x69\x67\x68\x74" => array("\164\x79\160\145" => "\x71\x75\141\154\x69\x66\x69\145\144", "\x64\157\155\x61\x69\x6e" => "\162\157\x62\157\164\x73", "\156\x61\x6d\x65" => "\x69\144", "\142\141\x6c\x69\141\x73" => "\x63\x6f\144\145")))), array("\164\171\x70\145" => "\122\x49\x47\110\x54", "\x73\157\x75\162\143\x65" => array("\x70\x61\x72\164\x73", null), "\143\157\x6e\x64\x69\x74\x69\157\156\x73" => array(array("\x74\x79\160\145" => "\142\151\156\141\162\x79\55\x6f\160", "\x6f\x70" => "\x3d", "\x6c\x65\x66\164" => array("\164\171\160\145" => "\161\165\x61\154\151\x66\x69\145\x64", "\x64\x6f\155\x61\x69\156" => "\x72\157\x62\x6f\164\x73\137\x70\x61\162\x74\x73", "\156\x61\155\145" => "\x70\x61\162\x74\163\137\151\x64", "\x62\141\x6c\x69\141\163" => "\x64\145\154\x65\163\103\157\x64\145"), "\162\151\x67\150\164" => array("\164\171\160\x65" => "\161\x75\141\154\151\x66\x69\x65\144", "\144\x6f\155\141\151\x6e" => "\160\141\x72\164\163", "\x6e\141\155\145" => "\151\x64", "\x62\x61\154\x69\141\x73" => "\x63\x6f\144\145"))))))), array("\x70\x68\161\154" => "\123\105\114\x45\x43\x54\x20\x2a\x20\106\x52\x4f\x4d\x20" . Robotters::class . "\40\x4a\x4f\111\116\40" . RobottersDeles::class . "\40\117\x4e\x20" . Robotters::class . "\x2e\143\157\144\145\x20\75\40" . RobottersDeles::class . "\x2e\x72\157\x62\157\164\164\x65\162\163\x43\x6f\144\x65", "\145\170\160\x65\x63\x74\x65\x64" => array("\155\x6f\x64\145\154\163" => array(Robotters::class), "\164\141\142\x6c\145\x73" => array("\x72\157\142\157\x74\163"), "\143\157\x6c\x75\155\x6e\x73" => array(lcfirst(Robotters::class) => array("\164\171\160\145" => "\157\142\x6a\x65\143\164", "\155\157\x64\x65\x6c" => Robotters::class, "\143\x6f\154\165\155\156" => "\x72\157\142\x6f\x74\x73", "\142\x61\x6c\151\x61\x73" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\x74\171\x70\145" => "\157\142\x6a\x65\x63\x74", "\x6d\x6f\144\x65\154" => RobottersDeles::class, "\x63\157\x6c\165\x6d\x6e" => "\x72\157\142\x6f\x74\x73\137\160\x61\x72\164\163", "\x62\x61\154\151\x61\163" => lcfirst(RobottersDeles::class))), "\x6a\157\151\156\163" => array(array("\164\x79\x70\x65" => "\x49\116\116\x45\x52", "\x73\x6f\x75\162\143\145" => array("\162\x6f\x62\157\x74\163\x5f\160\141\162\164\163", null), "\143\157\x6e\x64\x69\x74\x69\157\156\x73" => array(array("\x74\x79\x70\145" => "\x62\x69\x6e\141\162\171\x2d\x6f\x70", "\157\x70" => "\x3d", "\154\145\x66\164" => array("\164\171\160\x65" => "\161\165\x61\154\x69\146\x69\x65\x64", "\x64\157\155\141\x69\x6e" => "\x72\x6f\142\157\x74\163", "\x6e\141\x6d\145" => "\x69\x64", "\142\141\x6c\151\141\x73" => "\x63\x6f\x64\x65"), "\162\x69\x67\150\164" => array("\x74\171\160\x65" => "\x71\165\141\x6c\x69\x66\x69\145\144", "\x64\157\155\x61\x69\156" => "\162\157\x62\x6f\164\163\x5f\x70\141\x72\x74\x73", "\156\x61\x6d\145" => "\162\x6f\x62\157\x74\x73\137\x69\x64", "\x62\x61\154\x69\x61\163" => "\x72\157\142\157\164\164\145\x72\x73\103\x6f\144\x65"))))))), array("\160\x68\x71\x6c" => "\x53\105\114\105\103\x54\x20\x2a\x20\106\x52\x4f\115\x20" . Robotters::class . "\40\114\x45\106\124\40\x4f\x55\x54\x45\122\40\x4a\117\111\116\40" . RobottersDeles::class . "\x20\117\x4e\x20" . Robotters::class . "\56\x63\x6f\x64\x65\40\75\40" . RobottersDeles::class . "\x2e\162\x6f\142\157\x74\x74\145\162\163\103\157\x64\x65\40\x41\x4e\x44\x20" . RobottersDeles::class . "\56\x72\157\x62\157\x74\164\x65\162\x73\103\157\144\x65\x20\x3d\x20" . Robotters::class . "\56\x63\x6f\144\x65\x20\127\110\x45\x52\105\40" . Robotters::class . "\56\x63\157\x64\x65\x20\x49\123\x20\116\x55\x4c\114", "\x65\x78\x70\145\143\164\145\x64" => array("\155\x6f\x64\x65\154\x73" => array(Robotters::class), "\x74\x61\142\x6c\145\x73" => array("\x72\157\x62\x6f\x74\x73"), "\143\157\x6c\x75\155\x6e\x73" => array(lcfirst(Robotters::class) => array("\x74\171\160\145" => "\x6f\x62\152\x65\143\164", "\155\x6f\144\x65\x6c" => Robotters::class, "\x63\157\154\165\x6d\x6e" => "\x72\157\142\157\x74\163", "\x62\x61\x6c\151\x61\x73" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\x74\x79\x70\x65" => "\157\x62\152\145\143\x74", "\x6d\x6f\144\145\x6c" => RobottersDeles::class, "\143\157\x6c\x75\x6d\x6e" => "\x72\157\x62\x6f\x74\163\x5f\x70\141\x72\x74\163", "\x62\x61\154\151\141\163" => lcfirst(RobottersDeles::class))), "\x6a\x6f\x69\x6e\x73" => array(array("\164\x79\x70\x65" => "\114\x45\106\124", "\x73\157\165\x72\143\145" => array("\x72\x6f\x62\x6f\x74\163\137\160\141\162\164\163", null), "\x63\157\x6e\144\151\x74\x69\157\156\163" => array(array("\x74\x79\160\145" => "\142\151\156\141\x72\x79\55\x6f\x70", "\x6f\x70" => "\75", "\154\x65\x66\x74" => array("\x74\x79\x70\x65" => "\142\151\156\141\x72\171\x2d\157\160", "\157\x70" => "\75", "\x6c\x65\x66\164" => array("\x74\171\x70\145" => "\161\165\141\x6c\151\x66\151\x65\144", "\144\x6f\155\x61\151\x6e" => "\x72\157\x62\157\164\163", "\156\x61\x6d\x65" => "\x69\144", "\x62\141\x6c\151\141\163" => "\x63\157\144\x65"), "\162\151\x67\x68\x74" => array("\164\x79\x70\145" => "\142\x69\156\141\x72\x79\x2d\157\x70", "\157\x70" => "\101\x4e\104", "\154\145\x66\164" => array("\164\x79\x70\x65" => "\x71\x75\141\154\151\x66\151\x65\144", "\144\x6f\155\x61\151\156" => "\x72\x6f\142\x6f\164\x73\137\160\141\x72\164\163", "\x6e\141\155\x65" => "\x72\157\142\x6f\x74\x73\137\151\x64", "\142\141\154\151\x61\x73" => "\162\x6f\x62\x6f\x74\164\x65\162\163\x43\157\x64\145"), "\162\x69\x67\x68\x74" => array("\164\x79\x70\145" => "\x71\165\x61\x6c\151\146\x69\145\x64", "\144\x6f\x6d\141\x69\x6e" => "\162\x6f\x62\157\164\x73\137\x70\x61\x72\164\x73", "\156\141\155\145" => "\x72\157\142\157\x74\x73\x5f\151\x64", "\x62\141\x6c\x69\x61\x73" => "\x72\157\142\x6f\x74\164\x65\x72\x73\x43\157\144\x65"))), "\162\151\x67\x68\164" => array("\x74\171\x70\x65" => "\161\165\x61\154\151\x66\x69\145\144", "\144\x6f\x6d\141\151\156" => "\162\x6f\142\x6f\164\x73", "\x6e\141\155\145" => "\x69\144", "\x62\x61\154\x69\141\163" => "\143\x6f\x64\145"))))), "\167\x68\x65\162\145" => array("\164\x79\x70\145" => "\165\x6e\141\x72\171\55\157\x70", "\157\160" => "\40\111\123\x20\x4e\125\x4c\114", "\x6c\x65\x66\164" => array("\x74\171\x70\x65" => "\x71\x75\141\x6c\x69\146\151\145\144", "\x64\157\155\x61\151\x6e" => "\162\157\x62\157\x74\163", "\x6e\x61\x6d\x65" => "\151\x64", "\x62\141\x6c\151\141\x73" => "\143\157\144\x65")))), array("\x70\x68\161\154" => "\x53\x45\x4c\105\x43\x54\40\52\x20\106\x52\x4f\x4d\40" . Robotters::class . "\40\x52\111\x47\110\124\x20\117\x55\x54\x45\x52\40\x4a\117\111\116\x20" . RobottersDeles::class . "\x20\x4f\x4e\x20" . Robotters::class . "\56\x63\157\x64\x65\x20\75\40" . RobottersDeles::class . "\x2e\162\157\x62\157\x74\x74\145\162\163\103\157\144\145\x20\x41\116\104\40" . RobottersDeles::class . "\x2e\x72\157\142\x6f\x74\164\x65\x72\163\103\157\144\145\40\x3d\x20" . Robotters::class . "\x2e\143\157\x64\145\40\x57\110\105\122\105\40" . RobottersDeles::class . "\x2e\162\157\x62\157\x74\x74\145\x72\x73\x43\x6f\144\145\x20\x49\123\x20\116\117\x54\x20\x4e\x55\114\114", "\x65\170\160\145\x63\164\x65\144" => array("\155\x6f\144\x65\154\x73" => array(Robotters::class), "\164\x61\x62\154\145\x73" => array("\162\x6f\x62\157\x74\x73"), "\x63\157\x6c\165\x6d\x6e\x73" => array(lcfirst(Robotters::class) => array("\x74\171\160\145" => "\157\142\x6a\145\143\164", "\x6d\x6f\144\x65\x6c" => Robotters::class, "\143\x6f\154\x75\155\x6e" => "\162\x6f\142\x6f\164\163", "\142\141\154\x69\141\163" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\x74\171\160\x65" => "\x6f\x62\152\x65\x63\164", "\155\157\x64\145\154" => RobottersDeles::class, "\x63\157\154\x75\x6d\x6e" => "\x72\157\x62\x6f\164\x73\137\160\141\162\164\x73", "\x62\141\154\151\141\163" => lcfirst(RobottersDeles::class))), "\x6a\157\151\156\163" => array(array("\x74\171\x70\145" => "\122\111\x47\x48\x54", "\x73\157\x75\x72\x63\x65" => array("\x72\157\x62\x6f\x74\x73\137\160\x61\162\164\163", null), "\x63\x6f\156\x64\151\164\x69\x6f\156\x73" => array(array("\164\x79\x70\145" => "\142\151\x6e\141\x72\171\55\x6f\160", "\x6f\160" => "\75", "\154\145\146\x74" => array("\x74\x79\x70\x65" => "\x62\x69\156\141\x72\x79\55\x6f\160", "\x6f\160" => "\75", "\154\145\146\164" => array("\164\x79\160\x65" => "\161\x75\141\x6c\151\146\x69\145\x64", "\x64\x6f\155\141\151\x6e" => "\x72\x6f\142\x6f\x74\163", "\156\141\155\x65" => "\151\x64", "\x62\x61\x6c\151\x61\163" => "\143\157\144\x65"), "\162\151\147\x68\164" => array("\x74\171\160\145" => "\x62\x69\156\141\x72\171\x2d\157\160", "\157\160" => "\101\116\x44", "\x6c\x65\x66\164" => array("\164\x79\160\145" => "\161\165\141\x6c\151\146\x69\x65\x64", "\x64\157\155\x61\151\156" => "\162\157\142\157\164\x73\137\x70\x61\x72\x74\x73", "\156\141\x6d\145" => "\162\x6f\x62\x6f\x74\163\137\x69\x64", "\x62\141\x6c\151\141\x73" => "\x72\157\x62\x6f\x74\164\145\162\x73\103\x6f\144\x65"), "\162\x69\147\x68\x74" => array("\x74\x79\160\145" => "\161\x75\141\154\151\146\x69\145\x64", "\x64\157\x6d\141\x69\x6e" => "\162\157\142\x6f\x74\163\x5f\x70\x61\162\x74\163", "\156\x61\x6d\145" => "\x72\157\x62\157\x74\x73\x5f\151\x64", "\x62\x61\x6c\151\141\x73" => "\x72\x6f\x62\x6f\x74\164\x65\x72\163\x43\157\144\x65"))), "\162\x69\x67\150\x74" => array("\164\x79\160\145" => "\x71\165\141\x6c\151\146\151\x65\x64", "\x64\157\155\141\151\x6e" => "\162\x6f\142\157\x74\163", "\156\141\155\x65" => "\x69\x64", "\x62\x61\x6c\x69\141\163" => "\x63\157\x64\145"))))), "\x77\150\x65\162\x65" => array("\x74\x79\160\145" => "\x75\x6e\141\162\x79\55\157\x70", "\x6f\x70" => "\x20\x49\x53\x20\x4e\117\124\x20\x4e\125\114\114", "\154\x65\146\164" => array("\x74\171\x70\145" => "\161\165\141\154\151\x66\151\145\144", "\x64\x6f\x6d\141\151\x6e" => "\x72\x6f\x62\x6f\164\x73\137\160\x61\162\x74\x73", "\156\141\x6d\145" => "\162\x6f\142\x6f\x74\x73\x5f\151\144", "\x62\141\154\x69\x61\163" => "\x72\157\142\157\164\164\x65\162\163\103\157\144\x65")))), array("\x70\150\161\154" => "\123\105\x4c\105\103\x54\40\52\40\106\122\117\115\x20" . Robotters::class . "\x20\x46\x55\114\114\x20\x4f\125\124\x45\122\x20\x4a\117\111\116\x20" . RobottersDeles::class, "\145\x78\160\x65\x63\164\x65\144" => array("\x6d\157\144\145\x6c\163" => array(Robotters::class), "\x74\141\142\x6c\x65\x73" => array("\162\x6f\142\x6f\164\163"), "\143\x6f\x6c\165\155\x6e\x73" => array(lcfirst(Robotters::class) => array("\164\171\x70\145" => "\157\x62\x6a\x65\143\164", "\x6d\157\144\145\154" => Robotters::class, "\x63\x6f\154\x75\x6d\x6e" => "\x72\x6f\142\x6f\164\163", "\x62\x61\154\x69\141\x73" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\164\171\x70\145" => "\157\x62\x6a\145\x63\164", "\x6d\157\144\145\154" => RobottersDeles::class, "\x63\x6f\154\x75\155\156" => "\162\x6f\142\x6f\x74\x73\x5f\x70\x61\x72\x74\163", "\x62\141\x6c\151\141\163" => lcfirst(RobottersDeles::class))), "\152\157\151\156\x73" => array(array("\x74\171\x70\145" => "\x46\x55\114\114\40\x4f\125\124\105\x52", "\163\x6f\165\162\143\x65" => array("\x72\157\142\157\164\163\x5f\x70\141\162\x74\163", null), "\143\157\x6e\x64\151\x74\x69\157\156\163" => array(array("\x74\x79\x70\x65" => "\x62\151\x6e\141\x72\x79\x2d\157\x70", "\x6f\160" => "\x3d", "\154\x65\x66\164" => array("\164\171\160\x65" => "\161\165\x61\154\151\x66\151\x65\144", "\x64\x6f\x6d\x61\x69\156" => "\162\x6f\142\157\x74\x73", "\x6e\141\x6d\145" => "\151\144", "\x62\141\x6c\151\x61\163" => "\x63\x6f\144\145"), "\162\x69\x67\150\x74" => array("\x74\171\x70\145" => "\161\165\141\154\x69\x66\x69\x65\x64", "\x64\x6f\155\141\151\156" => "\x72\157\x62\x6f\x74\x73\x5f\x70\141\162\164\163", "\x6e\x61\x6d\145" => "\x72\x6f\142\157\164\x73\x5f\x69\x64", "\142\141\154\x69\141\x73" => "\x72\157\142\157\164\164\145\x72\163\x43\x6f\x64\145"))))))), array("\160\x68\x71\154" => "\123\x45\114\105\x43\x54\40\52\x20\106\x52\x4f\115\x20" . RobottersDeles::class . "\x20\112\x4f\111\116\x20" . Robotters::class, "\x65\170\160\x65\x63\x74\145\144" => array("\x6d\157\x64\x65\154\x73" => array(RobottersDeles::class), "\x74\141\142\154\x65\163" => array("\162\157\142\157\x74\163\137\160\x61\x72\164\163"), "\x63\x6f\x6c\x75\155\156\163" => array(lcfirst(RobottersDeles::class) => array("\164\x79\160\145" => "\x6f\x62\152\x65\x63\164", "\x6d\x6f\x64\x65\154" => RobottersDeles::class, "\143\x6f\x6c\165\x6d\x6e" => "\162\157\142\157\x74\x73\x5f\160\141\162\164\x73", "\142\141\154\151\x61\163" => lcfirst(RobottersDeles::class)), lcfirst(Robotters::class) => array("\x74\171\160\x65" => "\x6f\142\152\x65\x63\164", "\x6d\157\x64\145\x6c" => Robotters::class, "\143\x6f\154\x75\x6d\x6e" => "\162\x6f\x62\x6f\164\163", "\142\x61\154\151\141\x73" => lcfirst(Robotters::class))), "\x6a\x6f\x69\x6e\163" => array(array("\x74\171\160\x65" => "\x49\x4e\x4e\x45\x52", "\163\157\x75\x72\x63\145" => array("\x72\157\142\157\164\x73", null), "\x63\157\156\144\151\164\x69\157\x6e\x73" => array(array("\x74\x79\x70\145" => "\x62\151\156\x61\162\x79\55\157\160", "\x6f\160" => "\75", "\x6c\x65\x66\164" => array("\164\x79\160\145" => "\x71\165\x61\154\151\146\151\x65\144", "\144\x6f\x6d\x61\x69\156" => "\x72\x6f\142\157\164\163\x5f\x70\141\162\x74\163", "\156\x61\x6d\x65" => "\162\157\x62\157\x74\x73\x5f\x69\144", "\x62\x61\154\x69\141\163" => "\x72\157\x62\x6f\164\164\x65\x72\163\103\x6f\144\145"), "\x72\151\147\x68\164" => array("\164\x79\160\145" => "\x71\x75\141\x6c\x69\146\x69\x65\x64", "\144\157\x6d\x61\x69\156" => "\x72\157\x62\x6f\x74\x73", "\x6e\x61\155\145" => "\151\144", "\142\141\x6c\151\x61\163" => "\143\x6f\144\145"))))))), array("\160\150\161\154" => "\x53\x45\x4c\105\x43\x54\x20\162\56\52\x2c\40\x70\56\52\40\x46\x52\x4f\x4d\x20" . Robotters::class . "\x20\x41\123\x20\162\x20\x4a\117\x49\116\40" . RobottersDeles::class . "\x20\101\x53\x20\x70", "\x65\170\x70\145\x63\164\x65\144" => array("\155\x6f\144\145\x6c\x73" => array(Robotters::class), "\x74\141\142\154\145\163" => array(array("\162\x6f\142\157\x74\163", null, "\x72")), "\143\x6f\x6c\165\155\x6e\163" => array("\x72" => array("\x74\x79\x70\x65" => "\x6f\x62\x6a\x65\x63\x74", "\x6d\x6f\x64\x65\154" => Robotters::class, "\143\x6f\x6c\165\155\156" => "\x72", "\x62\141\x6c\151\141\163" => "\162"), "\x70" => array("\164\x79\x70\x65" => "\157\x62\x6a\145\143\164", "\155\157\x64\145\154" => RobottersDeles::class, "\143\x6f\x6c\165\155\x6e" => "\160", "\142\141\154\151\x61\163" => "\160")), "\x6a\x6f\x69\156\x73" => array(array("\x74\x79\x70\145" => "\x49\x4e\x4e\x45\122", "\x73\157\x75\x72\143\145" => array("\162\x6f\142\x6f\x74\x73\137\160\141\162\x74\163", null, "\160"), "\x63\x6f\156\144\151\x74\x69\157\x6e\x73" => array(array("\164\171\x70\145" => "\x62\x69\x6e\x61\162\x79\x2d\157\x70", "\x6f\160" => "\x3d", "\154\x65\x66\x74" => array("\x74\x79\x70\x65" => "\x71\x75\141\x6c\x69\x66\151\145\144", "\x64\x6f\155\141\x69\156" => "\x72", "\x6e\x61\155\x65" => "\x69\x64", "\142\141\x6c\x69\x61\163" => "\143\157\144\145"), "\x72\151\x67\150\164" => array("\x74\171\160\x65" => "\161\x75\x61\x6c\x69\146\x69\x65\x64", "\144\x6f\x6d\141\151\x6e" => "\x70", "\156\141\155\x65" => "\x72\x6f\x62\157\164\163\137\151\144", "\142\141\x6c\x69\x61\163" => "\x72\157\142\x6f\x74\164\x65\162\163\103\157\x64\x65"))))))), array("\x70\150\x71\154" => "\123\x45\114\x45\103\124\40\52\x20\x46\x52\x4f\x4d\40" . Robotters::class . "\40\x41\x53\40\162\x20\x4a\x4f\111\116\40" . RobottersDeles::class . "\40\x41\x53\x20\x70", "\145\x78\x70\145\x63\x74\x65\144" => array("\x6d\x6f\144\x65\154\x73" => array(Robotters::class), "\164\x61\142\x6c\145\x73" => array(array("\162\157\x62\x6f\164\163", null, "\x72")), "\143\157\x6c\165\155\x6e\163" => array(lcfirst(Robotters::class) => array("\x74\x79\x70\x65" => "\157\x62\152\x65\143\x74", "\155\x6f\x64\145\154" => Robotters::class, "\x63\x6f\x6c\165\x6d\156" => "\x72", "\x62\141\154\x69\141\x73" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\x74\171\x70\x65" => "\x6f\x62\152\x65\x63\164", "\155\x6f\144\x65\x6c" => RobottersDeles::class, "\143\157\x6c\165\155\156" => "\x70", "\x62\x61\154\151\x61\163" => lcfirst(RobottersDeles::class))), "\x6a\x6f\x69\x6e\x73" => array(array("\164\x79\x70\x65" => "\111\116\x4e\105\x52", "\163\157\165\162\143\145" => array("\x72\x6f\142\157\x74\x73\137\160\141\x72\164\x73", null, "\160"), "\143\157\x6e\144\151\164\151\157\x6e\163" => array(array("\164\171\x70\x65" => "\x62\151\156\141\162\171\55\157\160", "\x6f\160" => "\x3d", "\x6c\145\x66\164" => array("\164\x79\x70\x65" => "\x71\x75\141\154\151\146\151\145\144", "\144\x6f\155\141\151\x6e" => "\x72", "\156\141\155\x65" => "\x69\144", "\x62\x61\x6c\151\x61\x73" => "\143\157\144\145"), "\162\x69\x67\150\164" => array("\164\x79\x70\x65" => "\x71\x75\141\x6c\151\146\x69\145\144", "\x64\x6f\155\141\151\156" => "\x70", "\156\x61\x6d\x65" => "\162\x6f\142\157\x74\163\137\151\x64", "\142\x61\154\151\141\x73" => "\x72\157\x62\157\x74\x74\x65\x72\x73\x43\x6f\144\145"))))))), array("\x70\150\x71\x6c" => "\123\105\x4c\105\103\124\x20\162\56\x2a\40\106\x52\x4f\115\x20" . Robotters::class . "\x20\162\x20\x49\x4e\x4e\x45\122\40\x4a\x4f\111\116\x20" . RobottersDeles::class, "\145\170\160\x65\143\x74\145\144" => array("\x6d\157\x64\x65\154\x73" => array(Robotters::class), "\164\141\142\x6c\145\163" => array(array("\x72\157\142\x6f\164\163", null, "\162")), "\x63\x6f\x6c\165\155\156\163" => array("\x72" => array("\x74\171\160\x65" => "\157\142\x6a\x65\143\164", "\x6d\157\144\145\154" => Robotters::class, "\x63\157\154\x75\155\x6e" => "\162", "\142\x61\x6c\x69\x61\x73" => "\x72")), "\x6a\157\x69\x6e\x73" => array(array("\x74\x79\160\x65" => "\111\x4e\x4e\105\122", "\163\157\165\162\143\145" => array("\x72\157\x62\157\x74\x73\137\160\x61\162\164\x73", null), "\x63\157\x6e\144\x69\x74\x69\x6f\x6e\x73" => array(array("\x74\171\x70\x65" => "\x62\x69\x6e\x61\x72\171\x2d\x6f\x70", "\157\x70" => "\x3d", "\154\145\146\x74" => array("\x74\171\x70\145" => "\x71\165\141\154\151\x66\x69\x65\144", "\x64\x6f\x6d\x61\x69\x6e" => "\x72", "\x6e\x61\x6d\145" => "\151\x64", "\x62\x61\x6c\x69\x61\x73" => "\x63\157\x64\x65"), "\162\151\x67\x68\164" => array("\x74\171\x70\x65" => "\161\165\141\154\x69\146\151\145\144", "\144\x6f\x6d\141\x69\156" => "\x72\157\x62\157\x74\x73\x5f\160\141\162\164\163", "\156\141\x6d\145" => "\x72\157\x62\x6f\x74\163\x5f\151\144", "\x62\141\154\x69\x61\163" => "\162\x6f\x62\157\x74\164\x65\162\x73\x43\x6f\144\145"))))))), array("\160\150\161\154" => "\123\x45\114\x45\x43\x54\40\x2a\40\106\122\117\115\x20" . RobottersDeles::class . "\40\112\x4f\111\116\40" . Robotters::class, "\145\x78\x70\145\x63\164\145\x64" => array("\x6d\x6f\144\x65\154\163" => array(RobottersDeles::class), "\164\141\x62\x6c\145\163" => array("\x72\x6f\142\x6f\164\163\137\160\x61\162\x74\x73"), "\x63\x6f\154\x75\155\x6e\163" => array(lcfirst(RobottersDeles::class) => array("\164\x79\x70\145" => "\x6f\142\x6a\x65\143\164", "\155\x6f\x64\145\x6c" => RobottersDeles::class, "\x63\x6f\154\165\155\156" => "\x72\x6f\142\157\x74\163\137\160\141\x72\164\163", "\x62\141\154\x69\x61\163" => lcfirst(RobottersDeles::class)), lcfirst(Robotters::class) => array("\x74\171\160\145" => "\x6f\142\x6a\x65\x63\164", "\155\157\144\145\154" => Robotters::class, "\143\157\154\x75\155\x6e" => "\162\157\x62\x6f\x74\163", "\142\x61\154\x69\x61\163" => lcfirst(Robotters::class))), "\152\157\151\156\x73" => array(array("\x74\x79\x70\145" => "\x49\x4e\116\x45\122", "\x73\157\x75\162\143\x65" => array("\162\x6f\x62\x6f\x74\163", null), "\143\157\x6e\x64\151\164\x69\157\x6e\163" => array(array("\x74\x79\160\145" => "\142\x69\x6e\x61\x72\171\55\157\160", "\157\160" => "\75", "\154\145\146\164" => array("\164\171\x70\145" => "\x71\x75\141\x6c\x69\x66\151\145\x64", "\144\157\x6d\x61\x69\x6e" => "\x72\157\x62\157\164\x73\137\x70\141\162\x74\163", "\x6e\x61\155\x65" => "\x72\157\x62\x6f\164\163\137\x69\x64", "\142\141\x6c\151\141\163" => "\162\x6f\x62\x6f\164\164\x65\x72\163\103\x6f\x64\145"), "\x72\151\x67\x68\x74" => array("\x74\171\x70\x65" => "\x71\165\x61\154\x69\146\151\145\x64", "\144\x6f\x6d\141\151\156" => "\x72\x6f\x62\157\x74\163", "\x6e\x61\155\x65" => "\151\144", "\x62\141\154\x69\141\163" => "\x63\x6f\x64\x65"))))))), array("\160\x68\161\x6c" => "\x53\x45\114\105\103\124\40\x72\56\52\x2c\x20\x70\56\52\40\x46\x52\x4f\x4d\x20" . Robotters::class . "\x20\x41\123\40\x72\40\x4a\117\x49\116\x20" . RobottersDeles::class . "\x20\101\123\x20\x70", "\x65\170\x70\145\143\x74\145\144" => array("\x6d\x6f\144\x65\x6c\163" => array(Robotters::class), "\x74\x61\x62\x6c\145\163" => array(array("\x72\157\x62\157\x74\163", null, "\x72")), "\x63\x6f\154\x75\155\156\163" => array("\x72" => array("\x74\x79\160\x65" => "\157\x62\x6a\145\x63\x74", "\x6d\x6f\x64\x65\x6c" => Robotters::class, "\x63\x6f\x6c\x75\155\156" => "\162", "\142\141\154\x69\141\163" => "\x72"), "\160" => array("\164\x79\160\x65" => "\157\142\152\x65\143\x74", "\155\157\x64\x65\x6c" => RobottersDeles::class, "\x63\157\154\165\x6d\x6e" => "\160", "\x62\141\154\151\x61\x73" => "\x70")), "\x6a\x6f\151\156\x73" => array(array("\x74\x79\x70\145" => "\x49\x4e\x4e\105\122", "\163\x6f\x75\162\x63\145" => array("\162\x6f\x62\x6f\x74\x73\137\x70\x61\162\164\x73", null, "\160"), "\x63\x6f\156\144\151\164\151\157\156\163" => array(array("\164\171\160\145" => "\142\x69\x6e\141\162\x79\x2d\x6f\160", "\x6f\x70" => "\75", "\154\145\x66\164" => array("\164\171\160\145" => "\x71\165\141\154\151\146\151\145\144", "\x64\157\155\141\151\156" => "\162", "\x6e\141\155\145" => "\151\x64", "\x62\141\154\x69\x61\x73" => "\143\x6f\144\x65"), "\162\151\x67\150\x74" => array("\x74\x79\x70\x65" => "\161\x75\x61\x6c\151\146\x69\x65\144", "\x64\x6f\x6d\x61\x69\x6e" => "\x70", "\156\x61\155\x65" => "\x72\157\142\157\164\163\137\151\x64", "\142\x61\154\x69\141\x73" => "\162\x6f\142\x6f\164\164\145\x72\x73\x43\157\144\x65"))))))), array("\x70\150\x71\x6c" => "\x53\x45\114\105\103\124\x20\x2a\x20\x46\122\x4f\115\40" . Robotters::class . "\40\x41\x53\x20\x72\x20\x4a\117\x49\116\x20" . RobottersDeles::class . "\x20\101\123\40\x70", "\x65\x78\160\145\x63\x74\x65\144" => array("\x6d\157\144\145\x6c\x73" => array(Robotters::class), "\164\141\142\x6c\145\163" => array(array("\x72\157\142\157\164\163", null, "\x72")), "\143\157\x6c\x75\155\156\163" => array(lcfirst(Robotters::class) => array("\164\171\160\145" => "\157\x62\152\x65\143\164", "\155\x6f\x64\x65\x6c" => Robotters::class, "\x63\x6f\154\x75\155\x6e" => "\x72", "\142\141\x6c\x69\141\163" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\x74\171\160\145" => "\157\142\x6a\x65\x63\x74", "\155\157\x64\145\154" => RobottersDeles::class, "\x63\157\154\165\x6d\x6e" => "\160", "\x62\x61\x6c\x69\x61\163" => lcfirst(RobottersDeles::class))), "\x6a\x6f\x69\156\x73" => array(array("\x74\x79\160\145" => "\111\x4e\x4e\105\x52", "\x73\157\x75\162\143\x65" => array("\162\157\x62\x6f\164\x73\137\x70\141\x72\x74\x73", null, "\x70"), "\143\x6f\x6e\144\x69\164\x69\157\x6e\163" => array(array("\164\171\160\145" => "\142\151\x6e\141\162\171\x2d\x6f\x70", "\x6f\160" => "\x3d", "\154\145\x66\164" => array("\164\171\x70\145" => "\161\165\141\x6c\151\146\151\x65\144", "\x64\157\x6d\141\151\x6e" => "\162", "\156\141\155\145" => "\x69\144", "\142\x61\x6c\151\x61\x73" => "\x63\157\144\x65"), "\x72\151\147\x68\164" => array("\164\x79\160\x65" => "\x71\165\141\154\151\146\151\x65\x64", "\x64\x6f\155\141\x69\156" => "\160", "\x6e\x61\155\145" => "\162\157\x62\x6f\164\x73\137\x69\144", "\x62\x61\x6c\x69\141\x73" => "\162\157\x62\157\164\x74\145\162\x73\x43\157\144\x65"))))))), array("\160\150\x71\154" => "\x53\105\x4c\105\x43\124\x20\x72\56\52\x20\106\122\x4f\115\40" . Robotters::class . "\x20\162\40\x49\x4e\x4e\105\x52\x20\112\x4f\111\116\x20" . RobottersDeles::class, "\x65\x78\x70\x65\143\164\145\144" => array("\155\157\x64\x65\x6c\163" => array(Robotters::class), "\x74\141\x62\154\145\163" => array(array("\x72\x6f\142\x6f\x74\x73", null, "\162")), "\143\157\154\165\x6d\156\163" => array("\162" => array("\x74\x79\x70\x65" => "\x6f\142\152\x65\143\x74", "\x6d\157\x64\x65\154" => Robotters::class, "\143\x6f\154\x75\x6d\x6e" => "\x72", "\142\x61\154\151\x61\x73" => "\162")), "\152\x6f\x69\156\x73" => array(array("\164\171\x70\145" => "\x49\116\x4e\x45\x52", "\x73\157\x75\162\x63\x65" => array("\162\157\x62\x6f\164\x73\137\x70\141\x72\x74\x73", null), "\143\157\156\x64\151\x74\x69\157\x6e\163" => array(array("\164\171\160\x65" => "\142\151\x6e\x61\162\x79\55\157\x70", "\x6f\x70" => "\x3d", "\154\x65\146\164" => array("\164\x79\x70\x65" => "\x71\165\141\x6c\151\146\x69\145\x64", "\x64\x6f\x6d\x61\151\156" => "\x72", "\x6e\141\155\145" => "\151\144", "\x62\x61\x6c\x69\141\x73" => "\143\x6f\144\145"), "\162\151\147\x68\164" => array("\164\x79\x70\145" => "\161\165\141\x6c\x69\146\x69\145\144", "\144\x6f\155\x61\x69\x6e" => "\x72\157\x62\157\x74\163\x5f\160\141\x72\164\x73", "\x6e\x61\155\145" => "\x72\157\142\x6f\164\163\137\x69\x64", "\x62\x61\x6c\x69\141\x73" => "\162\157\142\157\164\164\145\162\163\103\x6f\x64\145"))))))), array("\x70\x68\161\x6c" => "\x53\x45\114\x45\x43\124\x20\x28\x20" . Personers::class . "\56\x6b\x72\145\144\151\164\40\53\x20\61\x30\x30\51\x20\x2f\40\x28" . Products::class . "\x2e\x70\x72\x69\143\145\x20\52\x20\60\56\61\x35\51\40\x46\x52\117\115\x20" . Personers::class . "\40\x4a\x4f\111\x4e\x20" . Products::class, "\145\x78\x70\145\x63\x74\x65\144" => array("\155\157\x64\145\154\163" => array(Personers::class), "\164\x61\x62\x6c\x65\x73" => array("\160\x65\162\x73\157\156\141\163"), "\x63\x6f\x6c\165\x6d\x6e\163" => array("\137\60" => array("\164\171\x70\x65" => "\163\143\141\x6c\141\x72", "\143\x6f\x6c\x75\155\156" => array("\164\171\x70\x65" => "\x62\x69\156\x61\x72\171\55\157\x70", "\x6f\160" => "\57", "\154\x65\x66\164" => array("\x74\171\x70\x65" => "\x70\x61\162\145\x6e\164\150\145\x73\x65\163", "\154\x65\x66\x74" => array("\x74\x79\160\145" => "\x62\151\x6e\141\162\171\x2d\x6f\x70", "\x6f\160" => "\53", "\x6c\145\146\x74" => array("\164\x79\x70\145" => "\x71\x75\x61\154\x69\146\151\145\x64", "\144\157\155\141\151\156" => "\160\145\162\x73\x6f\156\x61\x73", "\x6e\x61\x6d\x65" => "\143\165\x70\157", "\142\141\x6c\151\x61\163" => "\x6b\x72\x65\x64\x69\164"), "\x72\151\147\x68\164" => array("\164\x79\x70\x65" => "\x6c\151\164\x65\x72\141\154", "\166\141\x6c\x75\x65" => "\61\60\x30"))), "\x72\x69\x67\x68\164" => array("\164\171\160\145" => "\160\x61\x72\x65\156\164\150\x65\163\x65\x73", "\154\145\146\x74" => array("\x74\x79\x70\x65" => "\x62\151\x6e\141\x72\171\x2d\x6f\x70", "\x6f\x70" => "\52", "\154\145\x66\164" => array("\x74\171\x70\x65" => "\161\x75\141\x6c\151\x66\x69\145\x64", "\x64\x6f\155\141\151\156" => "\160\x72\x6f\144\x75\143\164\163", "\x6e\141\155\145" => "\160\162\x69\143\x65", "\x62\x61\x6c\151\x61\163" => "\160\x72\151\x63\145"), "\162\x69\x67\150\x74" => array("\x74\171\x70\145" => "\154\x69\164\145\162\x61\154", "\166\x61\154\165\x65" => "\x30\x2e\61\65")))))), "\x6a\x6f\x69\x6e\163" => array(array("\164\x79\x70\145" => "\x49\x4e\x4e\105\122", "\x73\157\x75\x72\143\145" => array("\160\162\157\144\165\x63\x74\163", null), "\x63\157\156\144\x69\x74\151\157\156\163" => array())))), array("\x70\150\161\x6c" => "\123\105\114\105\x43\124\40\50\40" . Personers::class . "\56\153\x72\x65\x64\x69\x74\40\53\x20\x31\60\x30\x29\40\57\x20\x28" . SomeProducts::class . "\x2e\160\x72\x69\x63\x65\40\x2a\x20\60\x2e\x31\65\51\x20\101\123\x20\160\162\x69\143\145\x20\106\x52\x4f\115\x20" . Personers::class . "\x20\x4a\117\111\116\x20" . SomeProducts::class, "\x65\x78\160\x65\x63\x74\x65\x64" => array("\x6d\x6f\x64\145\x6c\x73" => array(Personers::class), "\x74\141\142\154\145\163" => array("\160\145\x72\163\x6f\x6e\x61\163"), "\x63\157\154\165\155\156\163" => array("\x70\x72\151\143\x65" => array("\x74\x79\160\145" => "\x73\x63\141\154\x61\x72", "\x63\157\154\x75\155\x6e" => array("\x74\171\160\x65" => "\142\151\156\x61\x72\171\55\157\x70", "\157\x70" => "\x2f", "\x6c\x65\146\x74" => array("\x74\x79\x70\145" => "\160\x61\x72\145\x6e\164\150\145\163\x65\x73", "\x6c\145\146\164" => array("\x74\x79\160\x65" => "\x62\x69\156\141\162\x79\x2d\x6f\x70", "\157\x70" => "\x2b", "\x6c\x65\146\x74" => array("\164\171\x70\x65" => "\x71\165\x61\x6c\151\x66\x69\145\144", "\x64\157\x6d\x61\151\x6e" => "\x70\145\x72\163\157\x6e\141\x73", "\x6e\x61\x6d\145" => "\143\165\160\x6f", "\142\141\x6c\151\x61\x73" => "\x6b\x72\145\144\151\x74"), "\162\x69\147\150\164" => array("\x74\171\160\x65" => "\x6c\151\164\x65\x72\141\x6c", "\166\x61\x6c\x75\145" => "\61\x30\60"))), "\x72\151\147\x68\164" => array("\164\171\x70\x65" => "\x70\x61\162\x65\156\x74\x68\x65\x73\145\163", "\154\145\146\x74" => array("\164\171\x70\145" => "\142\x69\156\141\x72\x79\x2d\x6f\x70", "\157\x70" => "\52", "\154\x65\146\164" => array("\x74\x79\x70\145" => "\161\165\141\154\151\x66\x69\x65\x64", "\x64\x6f\155\x61\151\156" => "\x6c\x65\137\x70\x72\157\144\165\143\x74\163", "\x6e\141\x6d\145" => "\x70\x72\151\x63\x65", "\x62\x61\x6c\x69\141\163" => "\x70\x72\x69\x63\145"), "\x72\151\x67\x68\164" => array("\x74\x79\x70\x65" => "\154\151\164\145\x72\141\x6c", "\x76\x61\154\x75\x65" => "\60\56\x31\x35")))), "\142\141\154\x69\141\x73" => "\160\x72\151\x63\x65", "\x73\161\154\x41\154\x69\x61\163" => "\160\x72\x69\143\145")), "\152\157\151\x6e\163" => array(array("\x74\171\x70\x65" => "\111\116\116\x45\122", "\163\157\x75\162\x63\145" => array("\154\x65\x5f\160\162\157\x64\165\143\164\163", null), "\x63\157\x6e\144\151\164\x69\x6f\156\163" => array())))), array("\160\150\x71\154" => "\123\105\114\x45\x43\x54\x20\50\x70\56\x6b\162\145\144\x69\164\x20\x2b\40\61\60\60\51\40\x2f\x20\50\163\56\x70\162\151\143\x65\40\52\40\x30\x2e\61\65\51\x20\x41\x53\x20\160\x72\151\x63\x65\x20\106\x52\117\115\40" . Personers::class . "\x20\101\123\40\x70\x20\x4a\117\x49\116\x20" . SomeProducts::class . "\x20\x41\123\x20\x73", "\145\x78\x70\x65\143\x74\145\x64" => array("\x6d\x6f\144\x65\154\163" => array(Personers::class), "\x74\x61\x62\154\145\163" => array(array("\160\x65\x72\x73\157\x6e\141\163", null, "\x70")), "\x63\x6f\x6c\x75\155\x6e\x73" => array("\x70\x72\x69\143\145" => array("\164\x79\x70\x65" => "\x73\x63\141\x6c\141\x72", "\x63\x6f\154\165\155\156" => array("\164\x79\160\x65" => "\x62\x69\156\141\x72\171\55\157\x70", "\x6f\160" => "\57", "\x6c\x65\146\164" => array("\x74\x79\x70\x65" => "\160\141\x72\x65\156\164\x68\x65\x73\x65\x73", "\154\x65\x66\x74" => array("\x74\x79\x70\145" => "\142\151\156\141\162\171\x2d\157\x70", "\x6f\160" => "\x2b", "\154\145\x66\164" => array("\x74\171\x70\x65" => "\x71\x75\x61\x6c\x69\146\151\x65\144", "\x64\157\155\141\151\x6e" => "\160", "\x6e\141\155\x65" => "\143\x75\160\x6f", "\142\141\154\x69\x61\x73" => "\153\162\x65\144\x69\x74"), "\162\151\x67\x68\164" => array("\x74\171\160\x65" => "\154\x69\164\145\x72\141\154", "\166\141\x6c\x75\x65" => "\x31\x30\60"))), "\x72\x69\x67\150\164" => array("\x74\x79\160\145" => "\x70\x61\162\145\156\164\150\145\x73\x65\163", "\x6c\145\x66\164" => array("\164\171\x70\x65" => "\142\151\156\x61\x72\171\55\157\160", "\157\x70" => "\52", "\x6c\x65\x66\164" => array("\164\x79\160\x65" => "\161\x75\141\154\x69\x66\x69\x65\x64", "\x64\x6f\x6d\141\151\156" => "\x73", "\x6e\x61\x6d\x65" => "\160\162\151\143\x65", "\x62\141\154\x69\141\163" => "\x70\x72\x69\143\145"), "\x72\x69\x67\150\x74" => array("\x74\171\x70\145" => "\154\151\164\145\x72\x61\154", "\x76\x61\x6c\165\x65" => "\60\x2e\x31\x35")))), "\x62\x61\x6c\151\x61\163" => "\x70\x72\151\143\x65", "\x73\161\x6c\101\x6c\151\141\x73" => "\160\x72\x69\143\145")), "\152\157\x69\156\163" => array(array("\x74\x79\x70\x65" => "\x49\x4e\x4e\105\x52", "\x73\x6f\x75\x72\143\x65" => array("\154\x65\137\160\x72\x6f\144\x75\x63\x74\x73", null, "\x73"), "\143\x6f\x6e\144\151\164\151\x6f\156\163" => array())))), array("\160\x68\x71\x6c" => "\x53\x45\x4c\x45\103\124\40\x2a\x20\x46\122\117\115\40" . Robotters::class . "\x2c\x20" . RobottersDeles::class, "\145\170\x70\x65\x63\164\145\144" => array("\155\x6f\x64\145\154\x73" => array(Robotters::class, RobottersDeles::class), "\164\x61\x62\154\145\x73" => array("\162\157\142\157\x74\x73", "\x72\x6f\x62\157\x74\x73\x5f\x70\141\x72\164\x73"), "\143\x6f\x6c\x75\x6d\x6e\163" => array(lcfirst(Robotters::class) => array("\x74\171\x70\145" => "\157\x62\152\145\143\x74", "\x6d\157\144\145\x6c" => Robotters::class, "\143\157\154\165\155\x6e" => "\162\157\142\x6f\x74\163", "\x62\x61\x6c\x69\141\163" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\164\x79\160\x65" => "\157\142\152\x65\x63\x74", "\155\157\x64\x65\154" => RobottersDeles::class, "\143\157\x6c\x75\x6d\156" => "\x72\157\142\x6f\164\163\x5f\x70\x61\x72\164\163", "\x62\x61\x6c\x69\141\x73" => lcfirst(RobottersDeles::class))))), array("\160\x68\161\x6c" => "\123\105\114\x45\103\x54\40\x2a\x20\106\122\x4f\x4d\x20" . Robotters::class . "\40\162\x2c\40" . RobottersDeles::class . "\x20\160", "\x65\x78\x70\x65\x63\164\145\x64" => array("\155\x6f\x64\145\x6c\163" => array(Robotters::class, RobottersDeles::class), "\164\141\x62\154\145\x73" => array(array("\x72\157\142\x6f\164\163", null, "\162"), array("\162\157\142\x6f\164\163\x5f\160\x61\x72\164\x73", null, "\160")), "\x63\x6f\154\165\155\156\x73" => array(lcfirst(Robotters::class) => array("\x74\171\x70\x65" => "\157\142\x6a\x65\143\x74", "\x6d\157\144\145\x6c" => Robotters::class, "\143\157\x6c\x75\155\x6e" => "\x72", "\x62\x61\154\x69\x61\163" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\164\171\160\145" => "\x6f\142\x6a\145\143\x74", "\155\157\144\x65\154" => RobottersDeles::class, "\x63\157\x6c\x75\155\156" => "\160", "\142\x61\154\x69\x61\163" => lcfirst(RobottersDeles::class))))), array("\160\x68\161\154" => "\x53\x45\x4c\x45\103\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20" . Robotters::class . "\x20\101\123\40\162\54\x20" . RobottersDeles::class . "\40\101\x53\x20\160", "\145\170\x70\x65\x63\x74\145\x64" => array("\x6d\157\144\145\x6c\163" => array(Robotters::class, RobottersDeles::class), "\164\141\142\154\145\x73" => array(array("\162\157\x62\x6f\164\163", null, "\x72"), array("\162\x6f\x62\157\x74\x73\x5f\x70\141\162\x74\x73", null, "\x70")), "\143\x6f\x6c\165\x6d\156\163" => array(lcfirst(Robotters::class) => array("\164\171\x70\145" => "\x6f\x62\x6a\x65\x63\x74", "\155\157\144\x65\x6c" => Robotters::class, "\x63\157\x6c\x75\x6d\x6e" => "\162", "\142\x61\154\x69\141\x73" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\x74\x79\x70\145" => "\x6f\x62\152\145\x63\x74", "\x6d\x6f\x64\145\x6c" => RobottersDeles::class, "\143\x6f\x6c\165\155\156" => "\x70", "\x62\x61\154\151\x61\163" => lcfirst(RobottersDeles::class))))), array("\x70\150\x71\154" => "\123\x45\x4c\105\x43\124\x20\164\x68\x65\116\x61\x6d\x65\x2c\40\x64\145\154\145\x73\x43\157\144\x65\40\x46\122\x4f\115\x20" . Robotters::class . "\40\x41\x53\40\x72\54\x20" . RobottersDeles::class . "\40\x41\123\x20\x70", "\x65\170\x70\x65\143\x74\x65\144" => array("\155\157\x64\145\154\163" => array(Robotters::class, RobottersDeles::class), "\164\x61\142\154\x65\x73" => array(array("\162\x6f\x62\x6f\x74\163", null, "\162"), array("\x72\x6f\142\x6f\164\x73\137\x70\141\162\164\163", null, "\x70")), "\143\157\x6c\165\x6d\156\163" => array("\164\150\x65\x4e\141\155\x65" => array("\164\171\160\x65" => "\x73\143\141\x6c\x61\x72", "\142\x61\x6c\151\x61\163" => "\x74\x68\145\116\141\155\145", "\x73\x71\154\x41\x6c\x69\141\x73" => "\x74\150\145\x4e\x61\155\x65", "\143\157\x6c\x75\155\x6e" => array("\x74\x79\160\x65" => "\161\165\x61\154\151\x66\x69\x65\144", "\144\x6f\155\141\151\x6e" => "\162", "\156\141\155\x65" => "\x6e\141\x6d\145", "\x62\141\x6c\151\x61\x73" => "\x74\x68\145\116\x61\x6d\145")), "\144\x65\154\x65\163\103\157\x64\x65" => array("\164\171\x70\x65" => "\163\x63\141\x6c\141\x72", "\x62\x61\154\x69\x61\x73" => "\144\145\x6c\145\163\103\157\x64\x65", "\163\x71\154\x41\x6c\x69\x61\163" => "\x64\145\154\145\x73\103\157\x64\x65", "\x63\x6f\x6c\165\x6d\156" => array("\x74\171\160\145" => "\161\x75\x61\x6c\x69\146\x69\x65\x64", "\144\x6f\155\x61\x69\156" => "\160", "\156\141\155\x65" => "\x70\x61\x72\x74\163\137\151\x64", "\x62\x61\x6c\151\x61\x73" => "\144\145\154\145\163\103\x6f\x64\x65"))))), array("\160\x68\x71\x6c" => "\x53\105\x4c\105\103\x54\x20\x2a\40\106\122\117\x4d\x20" . Robotters::class . "\x20\101\x53\x20\x72\54\40" . RobottersDeles::class . "\x20\101\123\x20\160\x20\127\110\105\122\x45\x20\162\x2e\143\x6f\144\x65\40\x3d\40\160\56\162\157\x62\x6f\164\164\145\162\163\x43\157\144\x65", "\x65\170\x70\x65\x63\164\x65\x64" => array("\155\x6f\144\x65\154\163" => array(Robotters::class, RobottersDeles::class), "\x74\x61\142\154\x65\163" => array(array("\x72\157\142\x6f\x74\163", null, "\162"), array("\162\x6f\x62\157\164\163\137\160\x61\x72\164\x73", null, "\x70")), "\x63\157\154\165\155\x6e\163" => array(lcfirst(Robotters::class) => array("\164\171\x70\x65" => "\x6f\x62\152\145\x63\x74", "\155\157\144\x65\154" => Robotters::class, "\x63\x6f\x6c\165\x6d\x6e" => "\x72", "\x62\141\154\x69\x61\163" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\164\171\x70\145" => "\157\x62\152\x65\x63\x74", "\x6d\x6f\x64\145\x6c" => RobottersDeles::class, "\143\x6f\154\x75\x6d\x6e" => "\x70", "\x62\141\x6c\x69\141\x73" => lcfirst(RobottersDeles::class))), "\x77\x68\145\162\145" => array("\x74\x79\160\145" => "\x62\151\156\x61\162\171\55\x6f\x70", "\x6f\x70" => "\75", "\154\x65\x66\x74" => array("\x74\171\x70\x65" => "\161\165\x61\x6c\x69\x66\x69\x65\144", "\144\x6f\x6d\x61\151\x6e" => "\x72", "\x6e\x61\x6d\x65" => "\x69\x64", "\x62\141\x6c\151\141\x73" => "\x63\157\x64\x65"), "\162\x69\x67\x68\x74" => array("\x74\171\160\145" => "\161\165\x61\x6c\151\146\151\x65\x64", "\x64\157\x6d\141\151\156" => "\x70", "\x6e\141\x6d\x65" => "\162\157\142\x6f\164\163\x5f\x69\x64", "\142\141\x6c\x69\x61\163" => "\162\x6f\x62\x6f\x74\x74\145\x72\163\x43\x6f\x64\x65")))), array("\x70\x68\161\x6c" => "\123\105\x4c\105\103\124\40\x2a\x20\106\x52\x4f\115\x20" . Robotters::class . "\x2c\40" . RobottersDeles::class . "\40\x57\110\x45\x52\x45\x20" . Robotters::class . "\56\143\x6f\x64\x65\40\75\x20" . RobottersDeles::class . "\56\x72\157\142\x6f\164\x74\x65\162\163\x43\x6f\144\x65", "\145\x78\x70\145\143\164\x65\x64" => array("\x6d\157\x64\145\154\x73" => array(Robotters::class, RobottersDeles::class), "\164\x61\x62\x6c\145\163" => array("\x72\x6f\x62\x6f\x74\163", "\x72\x6f\142\x6f\164\163\x5f\x70\x61\162\x74\x73"), "\x63\x6f\154\165\x6d\156\x73" => array(lcfirst(Robotters::class) => array("\164\x79\x70\145" => "\157\x62\x6a\x65\x63\x74", "\x6d\x6f\144\145\154" => Robotters::class, "\x63\x6f\x6c\165\155\x6e" => "\162\157\x62\x6f\x74\163", "\x62\141\x6c\x69\x61\163" => lcfirst(Robotters::class)), lcfirst(RobottersDeles::class) => array("\164\x79\x70\145" => "\157\x62\152\x65\x63\164", "\x6d\157\x64\x65\x6c" => RobottersDeles::class, "\143\157\x6c\x75\x6d\156" => "\162\x6f\142\x6f\x74\163\137\x70\x61\162\x74\163", "\x62\x61\154\x69\x61\163" => lcfirst(RobottersDeles::class))), "\167\x68\x65\x72\x65" => array("\164\171\x70\x65" => "\142\151\x6e\x61\x72\x79\55\157\x70", "\157\x70" => "\x3d", "\154\145\x66\x74" => array("\164\171\160\145" => "\161\x75\141\154\151\146\151\x65\144", "\144\x6f\155\141\x69\x6e" => "\162\157\142\x6f\164\163", "\x6e\x61\x6d\x65" => "\151\144", "\x62\x61\154\151\x61\163" => "\143\157\144\x65"), "\162\151\147\150\164" => array("\164\x79\x70\145" => "\x71\165\x61\154\x69\x66\x69\x65\x64", "\x64\157\x6d\x61\151\156" => "\162\157\142\157\164\x73\137\160\141\x72\x74\163", "\156\141\x6d\145" => "\x72\157\142\157\x74\163\137\151\144", "\142\x61\154\x69\x61\163" => "\162\x6f\x62\x6f\164\164\145\x72\163\x43\x6f\144\145")))), array("\160\150\161\154" => "\123\x45\x4c\105\103\x54\40\52\x20\106\122\x4f\115\40" . Robotters::class . "\40\x72\x20\127\x48\x45\122\x45\40\x4e\x4f\124\40\50\x72\56\164\x68\145\116\141\x6d\x65\x20\75\x20\x22\163\150\141\x67\x67\171\42\x29\x20\x4f\122\104\105\122\x20\102\x59\40\x31\x2c\x20\162\x2e\164\150\x65\x4e\141\155\145", "\x65\x78\x70\145\143\x74\145\144" => array("\x6d\157\144\x65\154\163" => array(Robotters::class), "\x74\141\142\x6c\x65\163" => array(array("\x72\157\142\157\x74\x73", null, "\x72")), "\143\x6f\154\165\155\x6e\163" => array(lcfirst(Robotters::class) => array("\x74\171\160\145" => "\x6f\142\152\x65\143\164", "\x6d\157\144\x65\154" => Robotters::class, "\143\157\x6c\x75\155\x6e" => "\x72", "\x62\141\154\x69\141\163" => lcfirst(Robotters::class))), "\167\x68\145\162\145" => array("\164\x79\x70\x65" => "\165\156\141\x72\x79\x2d\x6f\160", "\157\x70" => "\x4e\117\x54\40", "\x72\x69\x67\x68\x74" => array("\164\x79\x70\x65" => "\x70\x61\x72\x65\x6e\164\150\145\163\x65\x73", "\x6c\145\146\x74" => array("\x74\171\160\x65" => "\142\x69\156\x61\162\171\55\x6f\x70", "\x6f\x70" => "\75", "\154\x65\x66\164" => array("\x74\171\160\145" => "\161\165\141\154\151\146\151\x65\x64", "\x64\157\155\141\x69\156" => "\x72", "\156\141\155\x65" => "\156\x61\155\145", "\142\141\x6c\151\141\x73" => "\164\150\x65\x4e\141\x6d\145"), "\x72\151\x67\150\164" => array("\x74\x79\160\x65" => "\x6c\151\x74\x65\162\x61\x6c", "\166\141\x6c\x75\x65" => "\47\x73\x68\141\x67\147\171\47")))), "\x6f\162\x64\145\162" => array(array(array("\x74\x79\160\145" => "\154\x69\x74\145\162\x61\154", "\x76\141\154\x75\145" => "\x31")), array(array("\164\x79\x70\x65" => "\x71\165\x61\154\x69\x66\x69\x65\x64", "\144\157\x6d\141\151\x6e" => "\x72", "\156\141\x6d\x65" => "\x6e\141\x6d\145", "\142\x61\154\x69\141\x73" => "\164\150\x65\116\x61\x6d\145"))))), array("\160\150\161\x6c" => "\123\x45\x4c\105\x43\124\x20\52\x20\x46\122\117\115\x20" . Robotters::class . "\x20\x72\40\127\x48\105\122\105\x20\116\117\x54\40\50\162\56\x74\x68\145\116\x61\155\x65\40\75\x20\42\163\150\141\147\147\171\x22\x29\x20\x4f\x52\104\x45\x52\x20\102\131\x20\61\40\x44\105\123\103\54\x20\162\56\164\x68\x65\116\141\155\145", "\x65\x78\x70\x65\x63\164\145\144" => array("\155\157\144\145\154\163" => array(Robotters::class), "\x74\141\x62\x6c\145\163" => array(array("\162\x6f\142\x6f\x74\x73", null, "\x72")), "\143\x6f\x6c\165\x6d\156\x73" => array(lcfirst(Robotters::class) => array("\164\x79\160\145" => "\157\142\152\145\x63\164", "\155\157\144\x65\x6c" => Robotters::class, "\x63\157\154\165\155\x6e" => "\x72", "\142\x61\154\151\141\163" => lcfirst(Robotters::class))), "\x77\x68\145\162\x65" => array("\164\171\x70\x65" => "\165\156\x61\162\171\55\x6f\x70", "\157\x70" => "\x4e\x4f\x54\x20", "\162\x69\x67\150\164" => array("\164\171\x70\145" => "\x70\141\x72\x65\x6e\x74\150\x65\x73\x65\163", "\154\x65\x66\x74" => array("\x74\x79\x70\145" => "\142\151\156\x61\162\x79\x2d\157\160", "\157\160" => "\75", "\154\145\x66\x74" => array("\x74\171\x70\145" => "\161\165\x61\x6c\x69\x66\151\145\x64", "\x64\157\155\141\x69\156" => "\x72", "\x6e\141\x6d\x65" => "\x6e\x61\155\x65", "\142\141\154\x69\x61\163" => "\164\x68\x65\116\141\x6d\145"), "\162\151\x67\150\x74" => array("\x74\171\x70\145" => "\154\151\164\145\x72\141\154", "\x76\141\154\x75\x65" => "\47\x73\150\141\x67\147\x79\x27")))), "\x6f\162\x64\x65\x72" => array(array(array("\x74\171\x70\145" => "\154\151\x74\x65\x72\141\x6c", "\x76\141\154\165\x65" => "\x31"), "\x44\105\123\x43"), array(array("\x74\171\160\145" => "\x71\165\141\154\151\x66\x69\x65\144", "\144\157\x6d\141\x69\x6e" => "\x72", "\156\141\155\x65" => "\x6e\141\x6d\145", "\x62\141\154\151\x61\163" => "\164\150\145\116\x61\x6d\145"))))), array("\160\150\161\154" => "\123\105\x4c\105\103\x54\40\52\40\106\x52\117\x4d\40" . Robotters::class . "\40\162\x20\127\110\105\x52\105\40\x4e\x4f\x54\x20\50\162\56\164\150\145\x4e\141\155\145\x20\x3d\40\42\163\150\x61\x67\x67\x79\x22\x29\x20\117\x52\x44\105\x52\40\102\131\x20\61\x2c\40\x72\x2e\x74\x68\x65\x4e\x61\x6d\145", "\145\x78\160\x65\x63\x74\x65\x64" => array("\155\157\x64\x65\154\163" => array(Robotters::class), "\164\x61\142\154\x65\x73" => array(array("\x72\x6f\142\157\164\163", null, "\x72")), "\x63\x6f\154\x75\155\156\163" => array(lcfirst(Robotters::class) => array("\x74\x79\160\x65" => "\157\142\x6a\x65\143\164", "\x6d\157\144\x65\154" => Robotters::class, "\x63\157\154\x75\x6d\x6e" => "\162", "\x62\141\154\x69\x61\163" => lcfirst(Robotters::class))), "\x77\x68\x65\x72\x65" => array("\x74\x79\x70\x65" => "\x75\x6e\x61\162\171\x2d\157\x70", "\157\160" => "\116\x4f\x54\x20", "\x72\x69\147\150\x74" => array("\x74\x79\160\x65" => "\160\x61\x72\145\156\x74\150\x65\163\x65\x73", "\154\145\x66\164" => array("\x74\171\160\x65" => "\142\151\156\141\162\171\55\157\x70", "\157\160" => "\75", "\154\x65\146\x74" => array("\x74\171\160\x65" => "\161\165\x61\x6c\151\x66\151\145\x64", "\144\x6f\x6d\x61\151\156" => "\162", "\x6e\x61\155\x65" => "\156\x61\155\x65", "\x62\141\x6c\x69\141\x73" => "\x74\150\145\x4e\141\x6d\x65"), "\x72\x69\147\150\164" => array("\164\x79\x70\145" => "\154\151\164\145\x72\141\x6c", "\x76\141\x6c\165\145" => "\47\163\150\x61\147\x67\x79\x27")))), "\x6f\162\x64\145\162" => array(array(array("\164\x79\x70\x65" => "\x6c\x69\x74\x65\162\x61\154", "\x76\x61\154\165\145" => "\x31")), array(array("\164\171\160\145" => "\x71\x75\141\x6c\x69\146\151\x65\x64", "\144\x6f\x6d\x61\x69\x6e" => "\162", "\156\141\x6d\x65" => "\156\x61\x6d\145", "\142\141\x6c\x69\141\x73" => "\164\150\145\116\141\x6d\145"))))), array("\160\x68\161\154" => "\x53\105\x4c\x45\x43\124\x20\52\x20\106\x52\x4f\115\x20" . Robotters::class . "\40\x72\40\127\110\105\122\x45\x20\x72\x2e\164\150\x65\x4e\141\x6d\145\40\74\76\x20\x22\x73\150\x61\147\x67\x79\42\40\x4f\122\104\105\122\x20\102\131\x20\61\54\x20\x32\x20\114\111\x4d\111\x54\40\x35", "\x65\x78\160\x65\x63\164\x65\x64" => array("\155\x6f\x64\145\154\x73" => array(Robotters::class), "\x74\141\142\154\145\163" => array(array("\162\x6f\142\157\164\163", null, "\x72")), "\x63\157\x6c\x75\x6d\x6e\x73" => array(lcfirst(Robotters::class) => array("\x74\x79\160\x65" => "\x6f\142\152\x65\143\x74", "\155\157\x64\145\154" => Robotters::class, "\x63\157\x6c\165\x6d\156" => "\x72", "\142\x61\154\151\141\163" => lcfirst(Robotters::class))), "\167\x68\x65\x72\x65" => array("\164\171\x70\145" => "\x62\x69\x6e\x61\162\171\x2d\x6f\x70", "\x6f\x70" => "\x3c\76", "\x6c\x65\x66\164" => array("\x74\171\x70\145" => "\161\x75\141\154\151\146\151\x65\144", "\x64\x6f\155\x61\151\156" => "\162", "\156\x61\x6d\x65" => "\x6e\141\155\x65", "\142\141\x6c\151\x61\x73" => "\164\150\145\x4e\x61\155\x65"), "\162\151\x67\150\164" => array("\x74\171\160\x65" => "\x6c\151\x74\145\162\x61\x6c", "\x76\x61\x6c\165\145" => "\x27\x73\150\141\147\x67\171\x27")), "\157\162\x64\x65\x72" => array(array(array("\x74\x79\160\x65" => "\154\151\164\x65\x72\141\x6c", "\166\141\154\x75\145" => "\61")), array(array("\x74\171\x70\x65" => "\154\x69\x74\x65\162\141\154", "\x76\x61\154\165\x65" => "\62"))), "\154\151\x6d\x69\164" => array("\156\165\155\x62\x65\x72" => array("\164\171\160\x65" => "\x6c\x69\164\x65\x72\x61\x6c", "\x76\x61\154\x75\145" => "\x35")))), array("\160\150\x71\154" => "\x53\105\114\x45\x43\124\x20\52\40\x46\122\x4f\x4d\40" . Robotters::class . "\40\x72\x20\x57\x48\x45\x52\105\40\x72\56\164\x68\x65\116\141\x6d\145\x20\74\x3e\x20\42\x73\150\141\147\147\x79\42\x20\x4f\x52\104\x45\122\x20\102\131\x20\x31\40\101\x53\103\x2c\40\x32\x20\104\x45\x53\x43\40\x4c\x49\115\111\x54\40\x35", "\x65\x78\160\x65\x63\x74\145\144" => array("\155\x6f\x64\x65\154\163" => array(Robotters::class), "\x74\141\142\x6c\x65\x73" => array(array("\162\157\x62\x6f\x74\x73", null, "\162")), "\143\157\154\165\155\x6e\x73" => array(lcfirst(Robotters::class) => array("\164\171\x70\145" => "\157\x62\x6a\145\143\x74", "\155\x6f\144\x65\x6c" => Robotters::class, "\x63\x6f\x6c\165\155\156" => "\162", "\x62\x61\154\151\141\x73" => lcfirst(Robotters::class))), "\167\150\x65\x72\145" => array("\x74\x79\160\145" => "\142\x69\x6e\141\x72\x79\x2d\x6f\x70", "\157\x70" => "\74\76", "\154\145\146\x74" => array("\164\171\160\145" => "\161\x75\141\154\x69\x66\x69\145\144", "\144\x6f\x6d\x61\151\156" => "\x72", "\x6e\141\x6d\145" => "\x6e\x61\x6d\145", "\142\141\154\x69\141\163" => "\164\150\145\116\141\155\x65"), "\x72\151\x67\x68\164" => array("\x74\x79\160\x65" => "\x6c\151\164\145\x72\x61\x6c", "\166\141\154\165\145" => "\47\x73\150\x61\147\147\171\47")), "\x6f\x72\144\x65\162" => array(array(array("\164\171\x70\145" => "\x6c\x69\x74\145\x72\141\154", "\x76\141\154\165\x65" => "\61"), "\101\123\103"), array(array("\164\171\x70\x65" => "\154\x69\x74\x65\x72\x61\154", "\x76\x61\154\x75\145" => "\62"), "\104\105\x53\103")), "\x6c\x69\x6d\151\x74" => array("\x6e\x75\155\142\x65\x72" => array("\164\x79\160\145" => "\x6c\x69\164\145\162\x61\x6c", "\166\141\154\x75\145" => "\x35")))), array("\x70\x68\161\154" => "\123\x45\x4c\105\103\x54\40\52\x20\106\122\117\x4d\x20" . Robotters::class . "\40\x47\122\117\125\120\40\x42\131\x20" . Robotters::class . "\x2e\x74\x68\x65\x4e\141\x6d\x65", "\145\170\x70\x65\x63\164\145\144" => array("\x6d\157\144\x65\x6c\163" => array(Robotters::class), "\164\141\x62\154\145\163" => array("\x72\x6f\142\157\x74\x73"), "\143\x6f\154\x75\x6d\x6e\x73" => array(lcfirst(Robotters::class) => array("\x74\171\x70\145" => "\x6f\142\x6a\145\143\164", "\155\x6f\144\145\x6c" => Robotters::class, "\143\x6f\154\x75\155\156" => "\x72\x6f\x62\x6f\x74\163", "\x62\141\x6c\151\x61\163" => lcfirst(Robotters::class))), "\x67\x72\x6f\x75\160" => array(array("\164\x79\x70\145" => "\161\x75\x61\154\x69\x66\151\x65\x64", "\x64\x6f\155\141\151\156" => "\x72\157\x62\x6f\164\x73", "\156\141\155\x65" => "\156\x61\155\145", "\142\141\x6c\151\x61\x73" => "\164\150\145\x4e\141\155\x65")))), array("\160\150\161\x6c" => "\x53\x45\114\105\103\x54\40\x2a\x20\x46\x52\x4f\115\x20" . Robotters::class . "\x20\107\x52\117\125\x50\x20\102\131\x20" . Robotters::class . "\56\x74\150\145\116\141\x6d\145\x2c\x20" . Robotters::class . "\x2e\143\x6f\x64\x65", "\145\170\x70\x65\x63\x74\x65\x64" => array("\x6d\157\x64\x65\154\163" => array(Robotters::class), "\x74\x61\142\154\x65\163" => array("\162\x6f\142\x6f\164\x73"), "\x63\157\x6c\x75\x6d\156\163" => array(lcfirst(Robotters::class) => array("\164\171\160\x65" => "\157\142\152\x65\143\164", "\x6d\157\144\145\x6c" => Robotters::class, "\143\x6f\x6c\165\155\x6e" => "\162\x6f\142\157\x74\163", "\142\141\154\151\x61\163" => lcfirst(Robotters::class))), "\x67\x72\157\x75\x70" => array(array("\x74\171\160\x65" => "\161\165\x61\x6c\151\x66\151\x65\x64", "\x64\x6f\x6d\141\151\156" => "\162\x6f\x62\x6f\x74\x73", "\156\x61\x6d\x65" => "\156\x61\155\x65", "\142\141\x6c\x69\141\x73" => "\164\150\x65\116\141\x6d\x65"), array("\164\x79\x70\x65" => "\161\x75\x61\154\151\146\151\145\144", "\144\x6f\155\141\x69\156" => "\162\x6f\142\x6f\x74\163", "\156\141\x6d\145" => "\151\144", "\142\x61\154\151\x61\163" => "\x63\157\144\145")))), array("\160\x68\161\x6c" => "\x53\x45\114\105\103\x54\40\52\x20\x46\122\117\115\40" . Robots::class . "\40\162\x20\114\x49\115\111\124\40\77\61\x2c\72\x6c\x69\155\151\164\x3a", "\x65\170\160\x65\143\x74\x65\144" => array("\x6d\157\x64\x65\x6c\163" => array(Robots::class), "\164\x61\142\x6c\x65\x73" => array(array("\x72\x6f\142\x6f\x74\x73", null, "\162")), "\143\x6f\x6c\165\155\x6e\x73" => array(lcfirst(Robots::class) => array("\164\171\x70\145" => "\157\142\152\x65\x63\x74", "\x6d\157\x64\x65\154" => Robots::class, "\x63\x6f\154\x75\x6d\x6e" => "\162", "\x62\141\154\151\x61\x73" => lcfirst(Robots::class))), "\154\x69\x6d\x69\x74" => array("\156\165\155\142\145\x72" => array("\x74\171\160\x65" => "\160\154\x61\143\145\150\x6f\x6c\144\145\x72", "\166\x61\154\x75\145" => "\x3a\x6c\x69\155\x69\164"), "\157\x66\146\163\x65\x74" => array("\x74\x79\x70\x65" => "\160\x6c\141\143\x65\x68\x6f\154\144\145\162", "\166\141\x6c\x75\x65" => "\x3a\61")))), array("\160\x68\x71\154" => "\123\x45\x4c\x45\103\x54\x20\x44\x49\x53\124\x49\116\103\124\40\x69\x64\x2c\x20\156\x61\x6d\x65\40\x46\122\117\x4d\40" . Robots::class, "\x65\x78\160\145\143\164\145\x64" => array("\144\151\x73\164\x69\156\143\x74" => 1, "\155\x6f\144\145\154\163" => array(Robots::class), "\164\x61\142\154\x65\163" => array("\162\x6f\x62\x6f\x74\163"), "\x63\157\x6c\x75\155\156\x73" => array("\x69\144" => array("\x74\x79\x70\145" => "\163\143\x61\x6c\x61\162", "\142\141\x6c\151\x61\x73" => "\x69\144", "\x73\161\154\101\x6c\151\141\x73" => "\x69\144", "\x63\x6f\154\165\155\x6e" => array("\x74\x79\x70\145" => "\x71\x75\141\154\x69\x66\x69\x65\144", "\x64\157\155\141\x69\x6e" => "\x72\x6f\142\x6f\x74\163", "\x6e\141\x6d\145" => "\x69\x64", "\142\141\154\151\141\x73" => "\x69\144")), "\x6e\141\x6d\x65" => array("\x74\x79\x70\x65" => "\163\143\x61\154\x61\x72", "\x62\x61\x6c\x69\x61\163" => "\x6e\141\x6d\x65", "\x73\161\154\101\x6c\151\x61\163" => "\x6e\141\x6d\145", "\143\x6f\x6c\x75\x6d\x6e" => array("\164\171\160\145" => "\x71\x75\141\154\151\146\151\x65\x64", "\x64\157\x6d\x61\x69\x6e" => "\x72\x6f\x62\157\164\x73", "\x6e\141\155\145" => "\156\141\155\145", "\x62\x61\154\151\141\x73" => "\x6e\x61\155\145"))))), array("\x70\150\x71\x6c" => "\x53\x45\114\105\103\124\40\101\x4c\x4c\x20\x69\x64\x2c\40\156\141\155\145\40\106\122\x4f\115\40" . Robots::class, "\x65\170\160\x65\143\164\x65\x64" => array("\144\x69\163\x74\x69\156\143\164" => 0, "\155\x6f\144\145\x6c\x73" => array(Robots::class), "\164\141\142\154\x65\x73" => array("\x72\x6f\x62\157\164\x73"), "\143\157\154\x75\155\156\163" => array("\151\x64" => array("\164\171\160\x65" => "\x73\143\141\154\x61\162", "\142\141\x6c\x69\x61\x73" => "\x69\x64", "\x73\x71\154\x41\154\x69\141\x73" => "\151\x64", "\143\157\x6c\165\x6d\156" => array("\x74\171\x70\x65" => "\161\x75\141\x6c\151\x66\x69\145\144", "\x64\x6f\x6d\x61\x69\x6e" => "\x72\x6f\142\x6f\164\163", "\156\141\155\145" => "\151\x64", "\142\141\154\x69\x61\163" => "\151\144")), "\x6e\141\155\x65" => array("\x74\171\160\145" => "\163\x63\141\154\x61\x72", "\x62\141\x6c\x69\141\163" => "\156\x61\155\145", "\x73\161\x6c\x41\x6c\x69\141\x73" => "\x6e\x61\155\145", "\143\157\154\165\155\x6e" => array("\164\171\x70\x65" => "\161\165\141\154\151\146\151\145\x64", "\144\x6f\x6d\x61\x69\156" => "\162\x6f\x62\157\x74\x73", "\156\141\x6d\145" => "\x6e\141\155\145", "\x62\141\x6c\151\x61\x73" => "\156\141\155\x65"))))), array("\x70\150\x71\154" => "\x53\x45\x4c\x45\103\124\x20\52\40\x46\122\117\x4d\x20" . Robots::class . "\x20\x57\110\x45\122\105\40\x69\x64\40\x49\116\x20\50\x53\x45\114\x45\x43\x54\x20\162\x6f\x62\x6f\x74\163\x5f\x69\144\40\106\x52\x4f\x4d\x20" . RobotsParts::class . "\x29", "\x65\x78\160\145\x63\x74\145\144" => array("\x6d\157\144\145\x6c\x73" => array(Robots::class), "\x74\x61\142\x6c\145\x73" => array("\162\x6f\x62\x6f\164\x73"), "\x63\157\x6c\x75\x6d\156\x73" => array(lcfirst(Robots::class) => array("\x74\x79\x70\x65" => "\157\x62\x6a\x65\x63\x74", "\x6d\157\144\x65\154" => Robots::class, "\143\157\154\165\x6d\156" => "\162\157\142\157\164\163", "\x62\141\x6c\x69\x61\x73" => lcfirst(Robots::class))), "\167\150\x65\x72\x65" => array("\x74\171\160\x65" => "\142\151\156\141\162\x79\x2d\x6f\160", "\157\x70" => "\111\x4e", "\x6c\145\146\x74" => array("\164\x79\160\145" => "\161\x75\x61\154\151\x66\x69\x65\144", "\144\157\155\141\151\156" => "\162\x6f\142\x6f\164\x73", "\x6e\141\155\145" => "\x69\x64", "\x62\141\x6c\x69\141\163" => "\x69\144"), "\162\151\147\150\x74" => array("\x74\x79\160\145" => "\x73\x65\x6c\145\143\x74", "\x76\141\154\165\145" => array("\x6d\157\x64\x65\154\163" => array(RobotsParts::class), "\164\x61\142\x6c\x65\163" => array("\162\157\142\157\164\163\137\x70\141\x72\164\163"), "\143\157\154\165\x6d\156\163" => array("\162\157\142\157\x74\163\137\151\144" => array("\164\x79\160\x65" => "\x73\x63\141\154\141\x72", "\142\x61\x6c\x69\141\x73" => "\x72\x6f\142\x6f\x74\163\137\x69\144", "\163\161\x6c\x41\x6c\x69\x61\x73" => "\162\157\x62\157\x74\163\137\x69\144", "\x63\x6f\154\165\155\156" => array("\x74\x79\x70\145" => "\x71\x75\141\x6c\x69\146\151\x65\144", "\x64\157\x6d\x61\151\156" => "\162\x6f\x62\x6f\164\x73\137\160\x61\162\x74\x73", "\156\141\155\145" => "\162\x6f\142\157\x74\x73\x5f\151\x64", "\142\141\x6c\151\141\163" => "\162\x6f\142\157\164\163\137\x69\x64")))))))), array("\x70\150\161\x6c" => "\123\x45\114\105\x43\x54\40\x55\x50\x50\105\x52\50" . Robots::class . "\56\x6e\x61\155\x65\x29\40\101\123\40\156\x61\x6d\x65\40\106\x52\117\115\x20" . Robots::class . "\40\x57\x48\x45\x52\x45\40" . Robots::class . "\x2e\156\x61\x6d\x65\40\75\x20\x22\122\x6f\x62\157\x74\151\156\141\42", "\x65\170\160\145\143\164\x65\x64" => array("\155\157\144\x65\154\x73" => array(Robots::class), "\x74\141\x62\x6c\145\x73" => array("\x72\x6f\x62\157\x74\163"), "\143\157\154\x75\x6d\x6e\x73" => array("\156\141\155\145" => array("\x74\x79\160\145" => "\x73\143\141\154\141\x72", "\142\x61\x6c\x69\x61\163" => "\156\x61\x6d\x65", "\163\161\x6c\101\154\151\141\163" => "\156\141\x6d\145", "\x63\x6f\x6c\165\155\156" => array("\x74\171\x70\145" => "\146\165\x6e\143\164\x69\x6f\156\x43\x61\x6c\x6c", "\156\x61\155\x65" => "\x55\x50\120\105\122", "\141\x72\x67\165\155\145\x6e\164\x73" => array(array("\164\x79\160\x65" => "\x71\165\141\154\x69\x66\x69\x65\144", "\x64\157\155\141\x69\156" => "\162\x6f\142\157\164\x73", "\156\141\155\145" => "\x6e\x61\155\x65", "\142\x61\154\x69\x61\163" => "\156\141\155\x65"))))), "\167\150\x65\x72\145" => array("\164\171\x70\145" => "\x62\x69\x6e\141\x72\171\x2d\x6f\160", "\157\x70" => "\75", "\154\x65\x66\x74" => array("\164\x79\x70\145" => "\x71\x75\141\x6c\x69\x66\151\145\144", "\x64\157\155\141\x69\156" => "\x72\157\142\157\x74\163", "\x6e\141\155\145" => "\x6e\141\155\x65", "\x62\141\154\x69\x61\163" => "\156\x61\x6d\x65"), "\162\151\x67\150\164" => array("\x74\x79\x70\145" => "\x6c\x69\x74\145\162\x61\154", "\166\141\154\x75\145" => "\x27\x52\x6f\142\157\x74\x69\x6e\141\x27"))))); } private function getExamplesInsert() : array { return array(array(array("\161\x75\145\162\x79" => "\111\x4e\123\105\122\124\x20\x49\116\x54\117\40" . Robots::class . "\x20\126\101\x4c\x55\105\123\40\50\x4e\125\114\114\x2c\x20\47\163\157\x6d\145\x20\x72\157\x62\157\x74\47\54\x20\61\x39\64\65\x29"), array("\x6d\x6f\144\145\154" => Robots::class, "\164\x61\x62\x6c\145" => "\x72\157\142\x6f\164\163", "\x76\141\154\x75\x65\163" => array(array("\164\171\x70\145" => 322, "\166\x61\154\x75\145" => array("\164\171\x70\145" => "\154\151\164\145\x72\141\x6c", "\166\141\x6c\x75\x65" => "\116\125\114\114")), array("\x74\x79\160\145" => 260, "\x76\x61\x6c\165\x65" => array("\x74\171\x70\145" => "\x6c\151\164\145\x72\x61\154", "\166\x61\154\x75\x65" => "\163\x6f\155\145\x20\162\x6f\x62\x6f\x74")), array("\164\x79\x70\145" => 258, "\x76\141\154\165\x65" => array("\x74\171\x70\x65" => "\154\151\164\145\x72\141\x6c", "\x76\x61\x6c\x75\x65" => "\61\x39\x34\65"))))), array(array("\x71\165\x65\x72\x79" => "\x69\x6e\163\x65\x72\x74\40\151\x6e\x74\157\x20" . strtolower(Robots::class) . "\40\x76\x61\154\165\145\x73\40\50\156\x75\154\x6c\54\x20\47\x73\x6f\155\x65\40\162\x6f\x62\x6f\x74\x27\54\40\61\71\64\x35\x29"), array("\155\157\144\145\x6c" => strtolower(Robots::class), "\164\141\x62\154\145" => "\162\x6f\142\157\164\163", "\166\x61\x6c\x75\x65\x73" => array(array("\164\x79\160\x65" => 322, "\x76\x61\x6c\x75\x65" => array("\x74\x79\x70\x65" => "\154\151\x74\145\x72\141\x6c", "\166\141\x6c\x75\145" => "\116\x55\114\x4c")), array("\164\x79\x70\145" => 260, "\166\141\x6c\x75\x65" => array("\x74\171\x70\145" => "\154\x69\164\145\162\141\x6c", "\x76\141\154\x75\x65" => "\x73\x6f\155\145\40\x72\x6f\142\x6f\x74")), array("\x74\171\x70\145" => 258, "\166\x61\x6c\165\x65" => array("\164\x79\160\x65" => "\x6c\x69\164\145\162\x61\x6c", "\x76\x61\x6c\165\145" => "\x31\x39\x34\65"))))), array(array("\161\165\145\162\171" => "\x49\x4e\x53\x45\x52\124\x20\x49\x4e\124\117\40" . SomeProducts::class . "\40\x56\x41\114\x55\x45\123\x20\x28\x22\123\157\x6d\x65\40\156\141\155\x65\x22\54\40\x31\x30\x30\x2e\61\x35\x2c\x20\143\165\162\162\145\156\x74\x5f\x64\x61\x74\145\50\x29\x2c\x20\156\x6f\167\x28\x29\51"), array("\x6d\x6f\144\145\x6c" => SomeProducts::class, "\x74\x61\x62\154\145" => "\x6c\145\137\160\162\x6f\144\x75\x63\x74\163", "\x76\x61\154\165\x65\163" => array(array("\164\x79\x70\x65" => 260, "\166\x61\x6c\165\145" => array("\164\171\160\x65" => "\x6c\x69\x74\145\162\141\154", "\x76\x61\x6c\x75\145" => "\x53\157\155\145\40\156\x61\x6d\145")), array("\164\x79\160\145" => 259, "\166\141\x6c\x75\145" => array("\164\171\160\145" => "\x6c\151\164\x65\162\141\154", "\166\x61\154\x75\145" => "\x31\x30\60\56\x31\x35")), array("\164\x79\160\145" => 350, "\166\x61\154\x75\145" => array("\164\171\160\x65" => "\146\x75\156\x63\x74\151\157\x6e\x43\x61\x6c\x6c", "\156\141\x6d\x65" => "\143\x75\x72\162\145\156\x74\137\x64\x61\164\145")), array("\164\171\160\145" => 350, "\166\x61\x6c\165\145" => array("\164\x79\160\x65" => "\x66\165\x6e\143\x74\151\157\156\103\141\x6c\x6c", "\156\141\x6d\x65" => "\x6e\x6f\167"))))), array(array("\161\x75\145\162\x79" => "\111\x4e\123\105\x52\x54\40\x49\x4e\124\117\40" . Robots::class . "\40\126\101\114\125\x45\123\x20\50\x28\61\x2b\x31\x30\60\60\x2a\x3a\154\x65\x5f\151\x64\72\x29\x2c\40\x43\117\x4e\103\101\124\50\x27\x73\157\155\x65\47\54\x20\x27\x72\157\x62\x6f\x74\x27\x29\54\40\62\x30\61\61\x29"), array("\x6d\x6f\144\x65\x6c" => Robots::class, "\x74\141\x62\x6c\x65" => "\162\157\142\x6f\x74\x73", "\166\141\x6c\x75\145\x73" => array(array("\x74\x79\160\145" => 356, "\x76\x61\154\165\145" => array("\x74\x79\x70\145" => "\160\x61\x72\x65\x6e\164\x68\145\163\x65\x73", "\154\145\146\x74" => array("\x74\171\x70\x65" => "\x62\151\156\141\x72\x79\55\157\160", "\x6f\x70" => "\52", "\154\145\146\x74" => array("\x74\x79\x70\145" => "\142\151\x6e\141\x72\x79\x2d\x6f\160", "\x6f\160" => "\x2b", "\154\x65\146\164" => array("\164\x79\160\145" => "\154\151\164\145\x72\141\154", "\166\141\x6c\x75\x65" => "\x31"), "\x72\x69\x67\x68\164" => array("\164\x79\160\145" => "\154\151\x74\x65\x72\141\x6c", "\166\141\x6c\165\145" => "\61\x30\x30\60")), "\x72\151\x67\150\164" => array("\x74\171\160\145" => "\160\154\141\x63\145\150\x6f\x6c\x64\x65\162", "\x76\141\x6c\x75\145" => "\72\154\x65\137\x69\x64")))), array("\x74\x79\160\x65" => 350, "\166\141\x6c\x75\145" => array("\164\x79\160\145" => "\x66\x75\156\143\164\x69\157\x6e\x43\x61\154\x6c", "\156\141\x6d\x65" => "\x43\x4f\x4e\x43\x41\x54", "\x61\x72\147\x75\x6d\145\x6e\164\x73" => array(array("\x74\x79\x70\145" => "\154\x69\164\x65\162\141\x6c", "\166\141\x6c\x75\x65" => "\47\x73\157\x6d\145\47"), array("\164\171\160\x65" => "\154\151\164\x65\162\x61\154", "\x76\x61\x6c\165\x65" => "\47\162\x6f\x62\157\164\x27")))), array("\164\x79\x70\x65" => 258, "\166\x61\x6c\x75\145" => array("\164\171\x70\145" => "\154\151\x74\145\162\141\154", "\166\x61\154\x75\145" => "\62\60\x31\61"))))), array(array("\161\165\x65\162\x79" => "\111\116\x53\105\122\124\x20\x49\x4e\124\x4f\40" . Robots::class . "\x20\50\156\x61\155\145\x2c\40\x74\x79\160\145\x2c\40\171\145\141\162\x29\x20\x56\x41\x4c\x55\105\123\x20\50\47\x61\x20\x6e\141\155\x65\x27\54\40\47\x76\x69\162\164\x75\x61\154\x27\x2c\x20\x3f\x30\51"), array("\x6d\x6f\x64\x65\154" => Robots::class, "\164\x61\x62\x6c\145" => "\x72\157\142\157\x74\163", "\x66\x69\x65\154\x64\x73" => array("\x6e\141\x6d\x65", "\x74\x79\x70\x65", "\x79\x65\141\x72"), "\166\x61\x6c\x75\x65\163" => array(array("\164\x79\x70\x65" => 260, "\x76\141\x6c\165\145" => array("\x74\171\160\145" => "\x6c\x69\164\145\162\x61\x6c", "\166\x61\x6c\165\145" => "\x61\40\156\141\155\x65")), array("\x74\x79\x70\x65" => 260, "\x76\x61\x6c\x75\145" => array("\164\x79\160\x65" => "\x6c\151\164\x65\162\x61\154", "\166\x61\154\165\145" => "\x76\x69\162\x74\165\141\154")), array("\x74\x79\x70\145" => 273, "\166\x61\x6c\x75\x65" => array("\x74\171\x70\145" => "\x70\154\x61\143\x65\150\157\154\x64\x65\162", "\x76\141\x6c\x75\145" => "\72\x30"))))), array(array("\161\165\x65\162\171" => "\111\x4e\x53\105\122\124\x20\x49\116\x54\x4f\40" . Robotters::class . "\40\126\101\x4c\125\105\x53\x20\50\x4e\x55\114\x4c\x2c\40\47\x73\x6f\155\x65\40\x72\x6f\x62\157\164\x27\54\40\61\x39\64\x35\51"), array("\155\157\144\x65\x6c" => Robotters::class, "\x74\x61\x62\x6c\145" => "\162\x6f\x62\157\x74\x73", "\x76\x61\x6c\x75\x65\x73" => array(array("\164\x79\x70\145" => 322, "\x76\x61\x6c\x75\x65" => array("\x74\x79\160\x65" => "\154\151\x74\145\x72\x61\154", "\x76\141\154\165\x65" => "\116\125\x4c\x4c")), array("\x74\x79\160\x65" => 260, "\x76\x61\154\x75\x65" => array("\x74\171\x70\145" => "\x6c\151\164\145\162\x61\x6c", "\x76\141\154\x75\x65" => "\163\x6f\x6d\x65\x20\162\x6f\142\x6f\x74")), array("\x74\171\x70\x65" => 258, "\x76\x61\154\165\x65" => array("\164\x79\x70\145" => "\154\x69\164\145\162\141\x6c", "\166\x61\154\x75\145" => "\x31\71\64\x35"))))), array(array("\x71\165\145\162\171" => "\x69\x6e\x73\145\162\164\40\151\156\x74\157\40" . strtolower(Robotters::class) . "\40\x76\x61\154\x75\145\x73\40\50\156\165\154\x6c\x2c\x20\x27\x73\x6f\155\145\x20\x72\157\x62\x6f\x74\47\54\x20\61\x39\x34\65\x29"), array("\155\157\x64\x65\154" => strtolower(Robotters::class), "\164\141\142\x6c\145" => "\x72\x6f\x62\x6f\x74\163", "\166\141\154\165\145\163" => array(array("\164\171\160\145" => 322, "\166\x61\154\165\x65" => array("\x74\x79\x70\x65" => "\154\151\164\x65\x72\x61\154", "\166\141\154\165\145" => "\116\125\114\x4c")), array("\x74\171\x70\x65" => 260, "\x76\141\154\165\145" => array("\164\x79\160\145" => "\x6c\151\x74\145\162\141\x6c", "\x76\x61\154\165\145" => "\163\157\155\x65\40\x72\x6f\x62\x6f\x74")), array("\x74\x79\x70\x65" => 258, "\166\141\154\x75\145" => array("\164\171\160\x65" => "\x6c\151\x74\x65\x72\141\154", "\166\x61\154\165\145" => "\61\x39\64\x35"))))), array(array("\x71\x75\145\162\x79" => "\111\x4e\x53\105\122\124\40\x49\x4e\x54\117\40" . Robotters::class . "\40\126\x41\114\x55\x45\x53\40\x28\50\x31\x2b\61\60\x30\60\x2a\72\154\x65\137\151\144\x3a\x29\54\x20\x43\117\116\x43\x41\x54\x28\x27\x73\157\x6d\x65\x27\x2c\x20\47\x72\157\x62\x6f\164\x27\x29\54\40\x32\x30\x31\x31\x29"), array("\x6d\157\x64\145\154" => Robotters::class, "\164\x61\142\154\x65" => "\162\x6f\142\157\x74\x73", "\166\x61\x6c\165\x65\163" => array(array("\x74\171\160\x65" => 356, "\166\141\x6c\165\145" => array("\x74\171\x70\x65" => "\x70\x61\162\x65\x6e\x74\150\145\163\145\163", "\x6c\x65\x66\x74" => array("\x74\171\160\145" => "\x62\x69\156\x61\162\171\x2d\x6f\x70", "\x6f\x70" => "\52", "\x6c\145\x66\164" => array("\x74\x79\x70\145" => "\142\x69\156\141\162\171\x2d\157\x70", "\157\160" => "\53", "\x6c\x65\x66\164" => array("\164\171\x70\x65" => "\x6c\x69\x74\145\162\141\154", "\166\141\x6c\x75\145" => "\61"), "\162\x69\147\150\x74" => array("\x74\171\x70\x65" => "\x6c\151\x74\145\162\141\154", "\x76\141\154\165\145" => "\x31\60\60\60")), "\x72\151\147\x68\164" => array("\164\171\x70\145" => "\x70\x6c\141\143\x65\150\x6f\154\144\x65\x72", "\x76\141\154\165\x65" => "\x3a\154\145\x5f\x69\x64")))), array("\164\171\x70\x65" => 350, "\166\141\x6c\x75\145" => array("\x74\x79\x70\145" => "\146\x75\x6e\x63\x74\151\x6f\156\x43\141\x6c\154", "\156\141\x6d\x65" => "\x43\x4f\x4e\x43\101\x54", "\141\162\x67\165\x6d\145\156\x74\x73" => array(array("\164\171\x70\x65" => "\x6c\151\x74\x65\162\x61\x6c", "\166\x61\x6c\165\x65" => "\47\163\157\155\145\x27"), array("\164\x79\160\145" => "\154\x69\x74\x65\x72\x61\x6c", "\166\x61\x6c\165\x65" => "\47\162\157\x62\x6f\x74\x27")))), array("\164\171\x70\x65" => 258, "\166\x61\x6c\x75\x65" => array("\164\x79\x70\145" => "\x6c\151\x74\x65\162\141\154", "\x76\x61\154\x75\x65" => "\62\60\x31\61"))))), array(array("\x71\x75\145\162\171" => "\111\116\x53\105\122\x54\x20\x49\116\x54\x4f\x20" . Robotters::class . "\40\50\164\x68\145\x4e\x61\155\145\x2c\x20\164\150\145\x54\171\160\145\x2c\40\x74\x68\145\131\145\141\x72\51\x20\126\101\x4c\x55\x45\x53\x20\x28\x27\x61\x20\x6e\141\x6d\145\47\x2c\40\47\166\x69\162\x74\165\x61\x6c\x27\x2c\x20\77\x30\x29"), array("\x6d\x6f\144\x65\x6c" => Robotters::class, "\164\141\142\x6c\x65" => "\x72\157\142\157\x74\x73", "\x66\x69\145\154\x64\x73" => array("\x74\150\145\x4e\x61\155\x65", "\164\150\x65\x54\171\160\x65", "\x74\x68\145\131\x65\x61\162"), "\166\141\x6c\x75\145\163" => array(array("\164\171\x70\x65" => 260, "\166\x61\x6c\x75\x65" => array("\164\x79\x70\145" => "\x6c\x69\164\145\162\x61\154", "\166\141\154\165\x65" => "\141\40\x6e\x61\155\145")), array("\x74\x79\160\145" => 260, "\x76\x61\154\x75\145" => array("\x74\x79\160\x65" => "\154\151\164\145\x72\141\x6c", "\166\141\x6c\x75\145" => "\x76\151\x72\164\165\x61\154")), array("\164\x79\160\145" => 273, "\166\x61\154\165\145" => array("\164\x79\x70\x65" => "\160\154\141\x63\x65\x68\157\154\x64\x65\162", "\166\141\x6c\x75\145" => "\x3a\60")))))); } private function getExamplesUpdate() : array { return array(array(array("\161\x75\x65\x72\x79" => "\125\120\104\x41\124\x45\x20" . Robots::class . "\x20\x53\105\x54\40\x6e\141\x6d\x65\x20\75\40\47\x73\157\x6d\x65\40\x6e\x61\155\145\47"), array("\x74\x61\142\x6c\x65\x73" => array("\x72\x6f\x62\x6f\164\163"), "\155\157\144\145\x6c\163" => array(Robots::class), "\x66\x69\145\154\x64\163" => array(array("\x74\171\160\x65" => "\161\x75\x61\154\x69\x66\151\145\144", "\144\157\155\x61\151\156" => "\x72\157\142\x6f\x74\x73", "\x6e\141\x6d\x65" => "\156\141\155\x65", "\x62\x61\x6c\151\x61\163" => "\156\x61\155\x65")), "\x76\141\154\x75\x65\x73" => array(array("\x74\x79\x70\x65" => 260, "\166\x61\x6c\165\145" => array("\x74\x79\160\x65" => "\x6c\151\164\x65\162\141\154", "\x76\x61\x6c\x75\x65" => "\x73\157\155\145\40\156\x61\x6d\x65"))))), array(array("\161\x75\145\x72\171" => "\x55\120\104\101\124\x45\40" . Robots::class . "\40\x53\105\x54\40" . Robots::class . "\x2e\x6e\x61\155\x65\40\75\40\x27\163\x6f\x6d\145\40\156\x61\155\145\47"), array("\x74\141\x62\154\145\x73" => array("\162\157\x62\157\x74\x73"), "\155\x6f\x64\x65\x6c\x73" => array(Robots::class), "\x66\151\x65\x6c\x64\163" => array(array("\x74\171\x70\145" => "\161\165\141\154\x69\146\x69\x65\144", "\144\157\155\x61\151\156" => "\162\157\x62\157\164\163", "\156\141\x6d\145" => "\156\141\x6d\x65", "\x62\141\x6c\151\141\x73" => "\x6e\x61\x6d\145")), "\x76\141\x6c\165\x65\163" => array(array("\164\x79\160\x65" => 260, "\x76\x61\154\165\145" => array("\164\171\x70\x65" => "\x6c\x69\x74\145\162\x61\154", "\166\x61\154\x75\x65" => "\x73\157\155\x65\x20\156\141\x6d\145"))))), array(array("\161\x75\145\162\x79" => "\125\120\x44\101\124\105\x20" . SomeProducts::class . "\40\123\x45\124\x20" . SomeProducts::class . "\x2e\156\x61\x6d\x65\40\75\x20\42\163\x6f\x6d\x65\40\156\141\155\x65\x22"), array("\164\141\x62\154\x65\x73" => array("\154\145\137\160\162\x6f\144\165\x63\x74\163"), "\155\x6f\144\x65\x6c\x73" => array(SomeProducts::class), "\x66\x69\145\x6c\144\x73" => array(array("\x74\x79\160\x65" => "\161\x75\x61\x6c\151\146\151\x65\x64", "\144\x6f\x6d\141\x69\x6e" => "\154\145\x5f\160\x72\157\144\165\x63\x74\163", "\156\x61\155\145" => "\x6e\141\155\145", "\x62\x61\154\x69\141\x73" => "\156\x61\155\x65")), "\x76\141\x6c\165\145\163" => array(array("\164\x79\160\x65" => 260, "\166\x61\154\165\x65" => array("\x74\171\160\x65" => "\x6c\x69\x74\145\x72\x61\154", "\166\141\x6c\165\x65" => "\163\157\x6d\145\40\x6e\141\155\145"))))), array(array("\x71\x75\145\x72\x79" => "\x55\x50\x44\x41\x54\x45\x20" . SomeProducts::class . "\40\160\40\123\x45\124\x20\x70\56\x6e\x61\155\x65\40\75\40\x22\x73\x6f\155\145\40\156\x61\155\145\x22"), array("\x74\141\142\154\x65\x73" => array(array("\154\x65\137\160\x72\157\x64\x75\143\x74\x73", null, "\x70")), "\x6d\157\144\x65\x6c\x73" => array(SomeProducts::class), "\x66\151\145\154\x64\163" => array(array("\x74\171\x70\145" => "\161\165\141\154\151\146\151\145\144", "\x64\157\x6d\x61\151\x6e" => "\160", "\x6e\x61\155\x65" => "\x6e\141\x6d\x65", "\x62\x61\154\x69\x61\163" => "\x6e\x61\155\x65")), "\166\x61\154\165\x65\163" => array(array("\x74\171\x70\x65" => 260, "\x76\141\x6c\x75\x65" => array("\x74\171\x70\x65" => "\154\x69\x74\145\x72\x61\154", "\166\x61\x6c\x75\x65" => "\x73\x6f\155\145\x20\x6e\x61\155\x65"))))), array(array("\x71\165\145\162\x79" => "\x55\x50\x44\101\x54\x45\x20" . Robots::class . "\x20\123\105\x54\x20" . Robots::class . "\56\156\x61\155\x65\40\75\40\x27\x73\x6f\155\x65\40\x6e\x61\x6d\x65\47\x2c\x20" . Robots::class . "\56\x79\x65\x61\x72\x20\x3d\40\61\71\71\60"), array("\x74\141\x62\x6c\x65\163" => array("\x72\x6f\x62\157\164\x73"), "\155\157\x64\145\x6c\163" => array(Robots::class), "\146\x69\x65\154\144\x73" => array(array("\x74\x79\160\x65" => "\x71\165\x61\x6c\151\146\151\145\144", "\144\157\155\x61\x69\x6e" => "\x72\x6f\x62\157\x74\163", "\x6e\x61\x6d\x65" => "\x6e\141\155\145", "\142\x61\154\151\x61\x73" => "\156\x61\x6d\x65"), array("\x74\171\160\145" => "\x71\x75\141\154\151\x66\x69\x65\144", "\144\157\x6d\x61\151\x6e" => "\x72\x6f\142\157\164\163", "\156\x61\x6d\145" => "\x79\x65\141\162", "\x62\141\154\x69\x61\x73" => "\171\145\141\162")), "\166\141\154\x75\145\163" => array(array("\164\x79\160\x65" => 260, "\166\141\154\165\145" => array("\x74\x79\x70\x65" => "\154\151\x74\x65\x72\x61\154", "\166\141\154\165\x65" => "\163\x6f\x6d\x65\40\x6e\141\x6d\x65")), array("\164\171\x70\145" => 258, "\x76\141\154\x75\145" => array("\x74\x79\x70\x65" => "\x6c\151\x74\x65\x72\x61\x6c", "\166\x61\154\165\145" => "\x31\71\x39\x30"))))), array(array("\161\x75\x65\x72\171" => "\x55\x50\x44\101\x54\105\x20" . SomeProducts::class . "\40\160\40\123\105\124\x20\160\x2e\156\141\155\x65\40\x3d\40\x22\x73\157\155\x65\40\156\x61\x6d\145\42\x2c\40\160\x2e\x79\x65\141\162\x20\75\x20\61\x39\x39\60"), array("\x74\141\142\x6c\145\x73" => array(array("\x6c\145\x5f\160\162\157\x64\x75\143\164\x73", null, "\160")), "\155\x6f\x64\x65\x6c\x73" => array(SomeProducts::class), "\x66\x69\145\x6c\144\163" => array(array("\164\x79\160\145" => "\161\x75\141\x6c\151\x66\x69\x65\144", "\144\157\155\141\x69\156" => "\x70", "\x6e\141\x6d\145" => "\x6e\x61\155\x65", "\x62\x61\154\x69\x61\x73" => "\156\x61\155\x65"), array("\164\171\x70\x65" => "\161\x75\141\154\x69\146\151\x65\x64", "\x64\x6f\155\x61\x69\156" => "\160", "\156\x61\x6d\145" => "\x79\145\141\162", "\142\x61\x6c\151\x61\163" => "\x79\145\x61\x72")), "\166\x61\x6c\165\145\163" => array(array("\164\x79\x70\145" => 260, "\166\141\154\x75\x65" => array("\x74\171\x70\x65" => "\154\x69\x74\x65\x72\141\x6c", "\166\141\154\165\145" => "\x73\x6f\x6d\x65\x20\156\141\155\x65")), array("\164\x79\x70\x65" => 258, "\x76\141\x6c\165\145" => array("\164\x79\x70\x65" => "\154\151\x74\145\162\141\154", "\x76\x61\154\x75\x65" => "\61\x39\x39\x30"))))), array(array("\x71\x75\x65\162\x79" => "\125\120\x44\101\x54\105\40" . Robots::class . "\40\x53\105\x54\x20" . Robots::class . "\x2e\156\141\155\x65\40\x3d\x20\47\x73\157\155\145\40\156\141\x6d\x65\x27\54\x20" . Robots::class . "\x2e\x79\x65\141\162\40\75\40\131\105\x41\x52\50\x63\x75\162\x72\145\x6e\164\x5f\144\x61\x74\145\x28\51\51\40\53\40" . Robots::class . "\x2e\x79\x65\x61\x72"), array("\x74\x61\142\154\145\163" => array("\162\157\142\157\164\163"), "\155\157\x64\145\x6c\163" => array(Robots::class), "\146\151\145\x6c\144\x73" => array(array("\x74\171\160\145" => "\x71\x75\x61\x6c\x69\146\x69\145\x64", "\144\x6f\155\141\151\156" => "\x72\157\x62\157\x74\x73", "\x6e\x61\155\x65" => "\156\x61\x6d\x65", "\142\x61\154\151\141\x73" => "\x6e\x61\x6d\x65"), array("\x74\171\160\145" => "\161\x75\x61\x6c\151\x66\151\x65\144", "\144\x6f\x6d\141\151\x6e" => "\162\x6f\142\x6f\164\x73", "\x6e\141\x6d\145" => "\x79\x65\141\x72", "\x62\x61\x6c\151\141\163" => "\171\x65\x61\x72")), "\166\141\154\165\x65\x73" => array(array("\164\x79\x70\145" => 260, "\166\x61\x6c\x75\145" => array("\x74\171\160\x65" => "\154\x69\164\x65\x72\141\x6c", "\166\141\x6c\x75\145" => "\163\x6f\x6d\145\x20\x6e\141\155\145")), array("\x74\x79\x70\145" => 43, "\x76\141\154\165\x65" => array("\x74\171\x70\145" => "\142\151\156\141\x72\x79\x2d\x6f\160", "\x6f\160" => "\x2b", "\x6c\x65\146\x74" => array("\164\171\160\145" => "\146\x75\x6e\x63\x74\151\x6f\x6e\x43\141\154\154", "\x6e\141\155\145" => "\x59\105\101\x52", "\x61\162\x67\165\x6d\145\x6e\x74\163" => array(array("\x74\171\160\x65" => "\146\x75\x6e\x63\164\151\157\x6e\103\141\154\x6c", "\156\141\155\x65" => "\143\165\x72\162\x65\x6e\x74\x5f\x64\x61\x74\x65"))), "\x72\151\147\x68\x74" => array("\x74\171\160\x65" => "\x71\165\x61\154\151\x66\151\145\x64", "\144\157\155\x61\x69\x6e" => "\x72\157\x62\157\164\x73", "\x6e\x61\x6d\x65" => "\x79\x65\141\162", "\142\x61\x6c\151\x61\x73" => "\171\145\141\162")))))), array(array("\161\x75\x65\162\171" => "\x55\120\x44\101\124\105\40" . Robots::class . "\x20\x41\x53\40\x72\x20\123\x45\124\x20\x72\56\156\x61\155\145\40\x3d\40\47\x73\x6f\155\x65\x20\x6e\141\155\x65\47\54\40\162\x2e\x79\145\x61\x72\x20\x3d\x20\131\105\101\122\50\143\x75\162\162\145\156\x74\137\x64\141\x74\x65\x28\x29\51\40\53\40\162\56\171\145\141\x72"), array("\x74\x61\x62\x6c\x65\x73" => array(array("\x72\x6f\x62\157\x74\x73", null, "\x72")), "\155\x6f\x64\145\x6c\x73" => array(Robots::class), "\x66\x69\x65\x6c\x64\x73" => array(array("\x74\x79\160\145" => "\161\165\x61\x6c\x69\x66\x69\x65\144", "\144\x6f\x6d\x61\x69\x6e" => "\x72", "\x6e\141\x6d\x65" => "\156\x61\x6d\x65", "\x62\x61\x6c\151\x61\163" => "\x6e\x61\x6d\x65"), array("\x74\171\160\145" => "\161\165\141\x6c\151\x66\x69\x65\x64", "\144\x6f\x6d\141\x69\x6e" => "\162", "\x6e\x61\155\x65" => "\x79\x65\141\162", "\x62\141\154\x69\141\163" => "\171\x65\141\x72")), "\166\x61\x6c\x75\145\x73" => array(array("\x74\171\x70\145" => 260, "\166\x61\154\165\x65" => array("\x74\x79\x70\x65" => "\x6c\x69\164\145\x72\x61\154", "\166\141\154\x75\145" => "\x73\x6f\155\145\40\x6e\x61\x6d\x65")), array("\x74\171\160\145" => 43, "\x76\x61\154\x75\x65" => array("\164\171\x70\x65" => "\142\151\156\141\162\x79\x2d\x6f\160", "\157\x70" => "\x2b", "\x6c\145\x66\x74" => array("\x74\x79\160\x65" => "\146\165\156\x63\x74\151\157\x6e\103\x61\154\154", "\156\x61\155\x65" => "\131\x45\101\x52", "\x61\162\x67\165\x6d\145\156\164\x73" => array(array("\x74\171\x70\x65" => "\x66\165\156\x63\164\151\157\x6e\103\141\154\x6c", "\x6e\141\x6d\x65" => "\x63\165\162\162\145\x6e\x74\x5f\144\141\x74\145"))), "\162\x69\x67\x68\164" => array("\x74\171\x70\145" => "\161\x75\x61\154\x69\x66\x69\145\144", "\x64\157\155\141\151\156" => "\x72", "\156\x61\x6d\x65" => "\x79\x65\x61\x72", "\142\141\154\x69\x61\163" => "\171\x65\141\x72")))))), array(array("\x71\165\x65\162\x79" => "\125\120\104\101\x54\x45\40" . Robots::class . "\x20\x41\x53\x20\162\40\123\x45\124\40\162\56\x6e\141\x6d\145\40\75\x20\x27\163\157\x6d\145\x20\x6e\141\155\x65\47\40\127\110\x45\x52\x45\40\162\56\151\x64\x20\76\40\61\60\x30"), array("\x74\x61\142\x6c\x65\163" => array(array("\162\x6f\x62\x6f\x74\x73", null, "\162")), "\x6d\x6f\144\145\154\163" => array(Robots::class), "\146\151\x65\154\x64\163" => array(array("\x74\171\160\x65" => "\x71\165\141\154\x69\146\151\x65\144", "\x64\157\x6d\x61\151\x6e" => "\x72", "\156\x61\155\145" => "\156\141\155\145", "\142\x61\x6c\x69\141\163" => "\x6e\x61\x6d\145")), "\166\x61\154\x75\145\x73" => array(array("\164\x79\160\x65" => 260, "\166\x61\x6c\165\x65" => array("\164\171\160\145" => "\x6c\151\x74\145\162\141\x6c", "\x76\x61\x6c\x75\145" => "\x73\x6f\x6d\145\x20\x6e\141\x6d\x65"))), "\x77\x68\x65\x72\145" => array("\x74\171\x70\145" => "\x62\x69\x6e\x61\162\171\x2d\157\x70", "\x6f\x70" => "\76", "\x6c\x65\146\164" => array("\x74\x79\160\x65" => "\161\165\x61\x6c\151\146\151\145\x64", "\x64\157\155\x61\x69\156" => "\162", "\x6e\141\x6d\x65" => "\151\144", "\142\141\154\x69\141\x73" => "\151\x64"), "\x72\x69\147\150\164" => array("\164\x79\x70\145" => "\154\x69\164\x65\162\x61\x6c", "\166\141\154\165\145" => "\61\60\x30")))), array(array("\x71\x75\x65\162\171" => "\125\x50\104\101\124\x45\40" . Robots::class . "\40\141\x73\40\162\x20\x73\145\164\x20\x72\56\156\141\x6d\145\x20\x3d\40\x27\163\157\155\x65\x20\156\141\155\x65\x27\x2c\x20\162\x2e\x79\x65\141\x72\40\75\40\162\56\x79\x65\x61\162\52\x32\40\x77\x68\x65\162\145\x20\162\x2e\x69\144\x20\76\x20\x31\60\60\40\x61\156\144\x20\x72\x2e\151\x64\x20\74\75\40\x32\60\60"), array("\x74\141\x62\154\145\163" => array(array("\x72\x6f\x62\x6f\x74\x73", null, "\162")), "\x6d\157\x64\x65\154\163" => array(Robots::class), "\146\x69\145\x6c\x64\x73" => array(array("\164\171\x70\x65" => "\x71\x75\x61\x6c\x69\x66\151\x65\x64", "\x64\x6f\x6d\141\151\x6e" => "\x72", "\156\141\x6d\145" => "\x6e\x61\155\x65", "\142\x61\x6c\151\x61\163" => "\x6e\x61\155\145"), array("\164\171\x70\x65" => "\161\165\141\154\151\146\x69\145\x64", "\x64\x6f\x6d\141\x69\156" => "\162", "\x6e\x61\155\145" => "\171\x65\141\162", "\142\141\x6c\x69\x61\163" => "\x79\145\141\x72")), "\x76\x61\x6c\x75\145\163" => array(array("\x74\x79\160\145" => 260, "\x76\x61\154\165\145" => array("\164\x79\x70\x65" => "\x6c\151\x74\145\x72\141\154", "\x76\x61\154\x75\x65" => "\163\x6f\155\x65\x20\x6e\x61\x6d\145")), array("\164\171\x70\x65" => 42, "\166\141\x6c\165\145" => array("\164\x79\160\x65" => "\x62\x69\156\141\x72\171\x2d\157\160", "\157\x70" => "\52", "\x6c\x65\146\x74" => array("\164\171\x70\x65" => "\x71\165\141\x6c\151\146\151\x65\144", "\144\x6f\x6d\x61\151\156" => "\x72", "\156\141\155\x65" => "\x79\x65\x61\x72", "\x62\x61\x6c\151\x61\x73" => "\171\145\x61\x72"), "\x72\151\147\x68\164" => array("\164\x79\x70\145" => "\154\x69\164\x65\162\x61\154", "\x76\141\154\x75\145" => "\62")))), "\167\150\x65\x72\x65" => array("\164\171\x70\x65" => "\142\x69\156\x61\x72\x79\55\x6f\x70", "\157\160" => "\x3c\75", "\154\x65\x66\164" => array("\x74\x79\x70\145" => "\142\151\x6e\x61\162\x79\55\x6f\160", "\157\160" => "\76", "\x6c\145\x66\164" => array("\164\171\x70\145" => "\x71\165\141\x6c\x69\146\x69\145\x64", "\144\x6f\x6d\141\151\156" => "\162", "\156\141\155\x65" => "\151\144", "\142\x61\x6c\x69\x61\163" => "\151\144"), "\x72\x69\147\x68\x74" => array("\164\x79\160\145" => "\x62\x69\156\141\162\x79\55\x6f\x70", "\157\x70" => "\x41\x4e\104", "\154\145\146\164" => array("\x74\171\160\x65" => "\x6c\x69\164\145\162\x61\x6c", "\166\x61\x6c\x75\145" => "\61\x30\x30"), "\x72\x69\x67\x68\x74" => array("\164\171\x70\x65" => "\161\165\141\154\x69\146\151\145\x64", "\x64\x6f\x6d\x61\151\x6e" => "\162", "\x6e\141\155\145" => "\151\x64", "\142\141\x6c\x69\x61\163" => "\x69\144"))), "\x72\x69\147\x68\x74" => array("\x74\171\160\145" => "\154\x69\164\145\162\x61\x6c", "\x76\141\x6c\165\x65" => "\62\60\x30")))), array(array("\161\165\x65\162\171" => "\x75\160\144\141\x74\x65\x20" . strtolower(Robots::class) . "\40\x61\x73\x20\x72\40\x73\145\164\40\x72\x2e\156\x61\155\145\40\75\x20\x27\163\x6f\155\x65\40\156\x61\155\145\47\40\114\x49\x4d\x49\124\40\61\x30"), array("\164\x61\142\154\x65\x73" => array(array("\162\x6f\142\157\164\x73", null, "\x72")), "\155\157\144\x65\154\163" => array(strtolower(Robots::class)), "\146\151\145\154\x64\x73" => array(array("\x74\171\160\145" => "\x71\165\141\154\x69\x66\x69\145\144", "\144\x6f\x6d\x61\x69\x6e" => "\162", "\156\x61\x6d\x65" => "\156\x61\x6d\145", "\142\141\x6c\x69\141\163" => "\156\141\155\145")), "\x76\141\154\x75\x65\x73" => array(array("\x74\171\160\x65" => 260, "\166\141\x6c\165\x65" => array("\164\171\x70\x65" => "\x6c\151\164\145\x72\141\154", "\166\x61\154\x75\x65" => "\x73\157\155\145\x20\156\141\x6d\145"))), "\154\x69\155\x69\x74" => array("\x6e\165\155\142\x65\162" => array("\x74\x79\x70\145" => "\x6c\151\164\145\162\141\154", "\166\x61\154\x75\145" => "\61\x30")))), array(array("\x71\x75\145\x72\171" => "\125\120\104\101\124\x45\40" . Robots::class . "\x20\x72\40\123\105\124\x20\162\56\x6e\141\x6d\145\x20\x3d\40\47\x73\x6f\155\145\40\x6e\141\x6d\x65\47\40\114\111\115\x49\124\40\x31\x30"), array("\x74\141\142\x6c\145\x73" => array(array("\162\157\142\157\x74\163", null, "\162")), "\155\157\x64\x65\154\163" => array(Robots::class), "\x66\x69\x65\x6c\x64\163" => array(array("\164\171\x70\145" => "\161\x75\141\x6c\151\146\151\145\x64", "\x64\157\155\141\x69\156" => "\x72", "\x6e\x61\155\x65" => "\x6e\141\x6d\145", "\142\x61\x6c\x69\x61\163" => "\156\141\x6d\145")), "\166\141\154\165\x65\163" => array(array("\164\171\x70\x65" => 260, "\166\x61\154\165\145" => array("\x74\171\x70\145" => "\154\151\164\x65\x72\x61\x6c", "\x76\141\x6c\165\x65" => "\x73\x6f\x6d\x65\40\x6e\141\x6d\x65"))), "\154\x69\x6d\151\x74" => array("\x6e\x75\155\x62\x65\162" => array("\x74\x79\160\145" => "\154\x69\x74\x65\x72\141\x6c", "\x76\141\x6c\165\145" => "\x31\60")))), array(array("\161\x75\x65\x72\171" => "\125\x50\x44\x41\124\105\40" . Robots::class . "\40\101\123\40\162\x20\x53\x45\x54\40\x72\56\156\141\x6d\145\40\75\x20\47\163\157\x6d\145\x20\x6e\x61\x6d\x65\x27\40\127\x48\105\x52\x45\40\x72\x2e\151\144\40\x3e\40\x31\60\x30\x20\x4c\111\x4d\x49\x54\40\61\x30"), array("\164\x61\x62\154\x65\163" => array(array("\162\x6f\142\157\x74\163", null, "\162")), "\155\x6f\x64\145\154\x73" => array(Robots::class), "\x66\151\145\x6c\144\x73" => array(array("\164\171\x70\145" => "\161\165\141\154\x69\146\x69\x65\x64", "\144\x6f\155\x61\151\156" => "\x72", "\156\141\x6d\145" => "\156\141\x6d\145", "\142\x61\x6c\151\141\163" => "\x6e\141\155\145")), "\x76\x61\x6c\x75\145\x73" => array(array("\164\x79\x70\x65" => 260, "\x76\141\x6c\165\x65" => array("\x74\171\x70\145" => "\154\x69\x74\145\162\141\154", "\166\141\154\165\145" => "\x73\157\155\x65\x20\x6e\x61\x6d\145"))), "\x77\x68\145\x72\145" => array("\164\171\160\145" => "\142\x69\156\x61\162\171\x2d\x6f\160", "\x6f\160" => "\76", "\154\x65\x66\x74" => array("\164\x79\160\145" => "\161\x75\141\x6c\x69\146\x69\x65\x64", "\144\157\155\x61\x69\x6e" => "\162", "\x6e\x61\x6d\x65" => "\x69\x64", "\x62\141\154\x69\x61\x73" => "\151\x64"), "\x72\x69\147\x68\164" => array("\x74\171\x70\145" => "\x6c\x69\164\145\x72\141\154", "\x76\x61\154\165\x65" => "\61\60\60")), "\x6c\151\155\151\x74" => array("\x6e\165\x6d\142\145\162" => array("\x74\x79\x70\x65" => "\x6c\x69\164\145\162\141\154", "\x76\141\154\x75\145" => "\61\x30")))), array(array("\x71\x75\x65\x72\171" => "\125\120\x44\101\x54\x45\40" . Robots::class . "\x20\162\x20\x53\x45\124\40\x72\x2e\x6e\141\155\145\40\x3d\x20\47\x73\x6f\x6d\x65\x20\156\141\x6d\x65\x27\40\x4c\x49\115\111\x54\40\x3f\61"), array("\x74\x61\x62\154\x65\163" => array(array("\162\x6f\142\157\x74\x73", null, "\x72")), "\155\x6f\x64\x65\154\x73" => array(Robots::class), "\146\x69\x65\x6c\144\x73" => array(array("\164\171\x70\145" => "\x71\165\x61\154\151\146\151\x65\144", "\144\x6f\x6d\141\x69\156" => "\162", "\156\141\155\145" => "\156\x61\x6d\145", "\142\x61\x6c\x69\x61\163" => "\156\141\155\x65")), "\166\x61\154\x75\145\163" => array(array("\164\x79\x70\x65" => 260, "\x76\x61\x6c\165\x65" => array("\x74\x79\160\x65" => "\154\151\164\145\x72\141\154", "\166\141\x6c\165\145" => "\x73\157\x6d\x65\x20\x6e\x61\x6d\x65"))), "\154\x69\155\151\164" => array("\156\165\155\x62\x65\162" => array("\164\x79\160\145" => "\x70\x6c\x61\x63\145\x68\x6f\x6c\x64\x65\x72", "\166\141\x6c\x75\x65" => "\72\x31"))))); } private function getExamplesDelete() : array { return array(array(array("\161\165\145\162\171" => "\104\105\x4c\x45\x54\105\40\106\122\x4f\x4d\40" . Robots::class), array("\164\141\x62\154\x65\163" => array("\x72\x6f\x62\157\164\x73"), "\155\x6f\x64\x65\x6c\163" => array(Robots::class))), array(array("\x71\x75\145\162\171" => "\104\x45\114\x45\x54\x45\x20\106\122\x4f\115\x20" . Robots::class . "\x20\x41\123\x20\162\40\127\x48\105\x52\x45\40\x72\x2e\151\x64\40\x3e\x20\x31\60\x30"), array("\x74\141\x62\x6c\145\x73" => array(array("\162\x6f\x62\x6f\x74\163", null, "\x72")), "\x6d\157\x64\x65\154\163" => array(Robots::class), "\167\150\x65\x72\145" => array("\164\x79\160\x65" => "\142\x69\156\x61\x72\171\x2d\157\x70", "\x6f\160" => "\76", "\154\145\146\x74" => array("\164\171\160\x65" => "\x71\x75\141\154\151\x66\151\145\144", "\144\157\155\x61\x69\156" => "\x72", "\x6e\141\x6d\145" => "\151\144", "\142\141\x6c\151\x61\163" => "\151\x64"), "\162\x69\147\150\164" => array("\x74\x79\160\145" => "\x6c\x69\x74\145\162\141\154", "\166\141\x6c\x75\x65" => "\61\60\x30")))), array(array("\161\x75\145\x72\x79" => "\x44\x45\114\x45\x54\105\40\106\122\117\x4d\40" . Robots::class . "\x20\141\163\40\162\x20\x57\110\105\x52\x45\x20\x72\x2e\151\x64\40\76\40\61\60\x30"), array("\x74\x61\142\154\145\163" => array(array("\162\157\142\157\x74\x73", null, "\x72")), "\155\157\x64\x65\x6c\x73" => array(Robots::class), "\167\x68\x65\162\x65" => array("\x74\171\160\x65" => "\x62\x69\x6e\x61\162\171\55\157\x70", "\x6f\160" => "\x3e", "\154\145\x66\164" => array("\164\x79\x70\x65" => "\161\165\141\154\151\x66\151\145\144", "\x64\157\x6d\x61\x69\156" => "\162", "\x6e\x61\x6d\145" => "\x69\144", "\x62\x61\154\x69\141\x73" => "\151\x64"), "\x72\151\147\x68\x74" => array("\x74\171\160\x65" => "\x6c\151\x74\x65\162\141\154", "\166\x61\x6c\165\145" => "\61\60\x30")))), array(array("\x71\165\145\x72\x79" => "\104\105\114\x45\x54\x45\40\106\x52\x4f\115\40" . Robots::class . "\x20\x72\40\x4c\x49\115\111\x54\x20\x31\x30"), array("\164\x61\x62\x6c\145\x73" => array(array("\162\x6f\x62\157\x74\x73", null, "\162")), "\155\x6f\144\x65\154\163" => array(Robots::class), "\x6c\151\x6d\151\164" => array("\156\x75\155\142\145\162" => array("\x74\171\160\x65" => "\154\151\164\x65\x72\x61\x6c", "\x76\x61\154\x75\145" => "\x31\x30")))), array(array("\x71\165\145\x72\x79" => "\104\x45\x4c\105\124\x45\x20\x46\122\117\x4d\40" . Robots::class . "\x20\162\x20\127\x48\x45\122\105\40\162\56\x69\144\x20\76\40\x31\60\x30\40\x4c\x49\x4d\111\124\x20\61\60"), array("\164\x61\x62\x6c\x65\x73" => array(array("\162\x6f\x62\157\164\163", null, "\x72")), "\155\x6f\x64\145\154\x73" => array(Robots::class), "\167\150\x65\162\x65" => array("\x74\171\x70\145" => "\x62\x69\156\x61\162\x79\x2d\x6f\160", "\x6f\x70" => "\x3e", "\x6c\145\x66\164" => array("\164\x79\x70\x65" => "\x71\x75\141\154\x69\x66\151\x65\144", "\144\157\x6d\141\x69\156" => "\x72", "\x6e\x61\x6d\145" => "\x69\144", "\142\141\x6c\x69\141\163" => "\151\144"), "\162\x69\147\150\x74" => array("\x74\x79\x70\145" => "\154\x69\x74\x65\162\x61\x6c", "\x76\x61\x6c\x75\145" => "\x31\60\x30")), "\154\151\155\151\x74" => array("\x6e\165\x6d\x62\x65\x72" => array("\164\x79\160\145" => "\154\151\164\x65\x72\x61\x6c", "\x76\141\154\165\145" => "\61\x30")))), array(array("\161\165\145\x72\x79" => "\104\x45\114\x45\124\x45\40\106\x52\117\115\40" . Robots::class . "\x20\x72\x20\x57\110\x45\x52\x45\40\x72\x2e\151\144\x20\x3e\x20\61\x30\60\x20\114\111\115\x49\124\x20\72\x6c\151\155\151\x74\72"), array("\164\141\x62\154\145\163" => array(array("\x72\157\142\157\x74\x73", null, "\162")), "\x6d\x6f\144\x65\154\163" => array(Robots::class), "\167\x68\x65\162\x65" => array("\164\171\160\x65" => "\x62\x69\x6e\141\x72\x79\x2d\157\160", "\x6f\x70" => "\x3e", "\x6c\145\146\x74" => array("\x74\x79\x70\x65" => "\161\x75\x61\154\151\146\x69\x65\144", "\x64\x6f\155\141\x69\x6e" => "\x72", "\156\x61\x6d\x65" => "\x69\x64", "\142\141\x6c\151\x61\163" => "\x69\144"), "\162\x69\x67\150\x74" => array("\164\171\160\145" => "\154\x69\x74\145\162\141\154", "\166\x61\154\165\x65" => "\x31\60\x30")), "\154\151\x6d\151\x74" => array("\156\x75\155\142\145\x72" => array("\x74\x79\x70\x65" => "\x70\154\x61\x63\145\150\157\154\x64\145\x72", "\166\x61\x6c\x75\145" => "\72\154\151\155\x69\x74"))))); } }

Function Calls

None

Variables

None

Stats

MD5 59b8b255516d21bf8089d7fc3b2419b2
Eval Count 0
Decode Time 235 ms