1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types=1); namespace League\Uri\UriTemplate; use League\Uri\Exceptions\SyntaxError; use League\Uri\Exceptions\TemplateCanNotBeExpanded; use function array_filter; use function array_keys; use function array_map; use function array_unique; use function explode; use function implode; use function preg_match; use function rawurlencode; use function str_replace; use function strpos; use function substr; final class Expression { /** * Expression regular expression pattern. * * @link https://tools.ietf.org/html/rfc6570#section-2.2 */ private const REGEXP_EXPRESSION = '/^\{ (?: (?[\.\/;\?&\=,\!@\|\+#])? (?[^\}]*) ) \}$/x'; /** * Reserved Operator characters. * * @link https://tools.ietf.org/html/rfc6570#section-2.2 */ private const RESERVED_OPERATOR = '=,!@|'; /** * Processing behavior according to the expression type operator. * * @link https://tools.ietf.org/html/rfc6570#appendix-A */ private const OPERATOR_HASH_LOOKUP = [ '' => ['prefix' => '', 'joiner' => ',', 'query' => false], '+' => ['prefix' => '', 'joiner' => ',', 'query' => false], '#' => ['prefix' => '#', 'joiner' => ',', 'query' => false], '.' => ['prefix' => '.', 'joiner' => '.', 'query' => false], '/' => ['prefix' => '/', 'joiner' => '/', 'query' => false], ';' => ['prefix' => ';', 'joiner' => ';', 'query' => true], '?' => ['prefix' => '?', 'joiner' => '&', 'query' => true], '&' => ['prefix' => '&', 'joiner' => '&', 'query' => true], ]; /** * @var string */ private $operator; /** * @var string */ private $joiner; /** * @var array */ private $varSpecifiers; /** * @var array */ private $variableNames; /** * @var string */ private $expressionString; private function __construct(string $operator, VarSpecifier ...$varSpecifiers) { $this->operator = $operator; $this->varSpecifiers = $varSpecifiers; $this->joiner = self::OPERATOR_HASH_LOOKUP[$operator]['joiner']; $this->variableNames = $this->setVariableNames(); $this->expressionString = $this->setExpressionString(); } /** * @return array */ private function setVariableNames(): array { $mapper = static function (VarSpecifier $varSpecifier): string { return $varSpecifier->name(); }; return array_unique(array_map($mapper, $this->varSpecifiers)); } private function setExpressionString(): string { $mapper = static function (VarSpecifier $variable): string { return $variable->toString(); }; $varSpecifierString = implode(',', array_map($mapper, $this->varSpecifiers)); return '{'.$this->operator.$varSpecifierString.'}'; } /** * {@inheritDoc} */ public static function __set_state(array $properties): self { return new self($properties['operator'], ...$properties['varSpecifiers']); } /** * @throws SyntaxError if the expression is invalid * @throws SyntaxError if the operator used in the expression is invalid * @throws SyntaxError if the variable specifiers is invalid */ public static function createFromString(string $expression): self { if (1 !== preg_match(self::REGEXP_EXPRESSION, $expression, $parts)) { throw new SyntaxError('The expression "'.$expression.'" is invalid.'); } /** @var array{operator:string, variables:string} $parts */ $parts = $parts + ['operator' => '']; if ('' !== $parts['operator'] && false !== strpos(self::RESERVED_OPERATOR, $parts['operator'])) { throw new SyntaxError('The operator used in the expression "'.$expression.'" is reserved.'); } $mapper = static function (string $varSpec): VarSpecifier { return VarSpecifier::createFromString($varSpec); }; return new Expression($parts['operator'], ...array_map($mapper, explode(',', $parts['variables']))); } /** * Returns the expression string representation. * */ public function toString(): string { return $this->expressionString; } /** * @return array */ public function variableNames(): array { return $this->variableNames; } public function expand(VariableBag $variables): string { $parts = []; foreach ($this->varSpecifiers as $varSpecifier) { $parts[] = $this->replace($varSpecifier, $variables); } $nullFilter = static function ($value): bool { return '' !== $value; }; $expanded = implode($this->joiner, array_filter($parts, $nullFilter)); if ('' === $expanded) { return $expanded; } $prefix = self::OPERATOR_HASH_LOOKUP[$this->operator]['prefix']; if ('' === $prefix) { return $expanded; } return $prefix.$expanded; } /** * Replaces an expression with the given variables. * * @throws TemplateCanNotBeExpanded if the variables is an array and a ":" modifier needs to be applied * @throws TemplateCanNotBeExpanded if the variables contains nested array values */ private function replace(VarSpecifier $varSpec, VariableBag $variables): string { $value = $variables->fetch($varSpec->name()); if (null === $value) { return ''; } $useQuery = self::OPERATOR_HASH_LOOKUP[$this->operator]['query']; [$expanded, $actualQuery] = $this->inject($value, $varSpec, $useQuery); if (!$actualQuery) { return $expanded; } if ('&' !== $this->joiner && '' === $expanded) { return $varSpec->name(); } return $varSpec->name().'='.$expanded; } /** * @param string|array $value * * @return array{0:string, 1:bool} */ private function inject($value, VarSpecifier $varSpec, bool $useQuery): array { if (is_string($value)) { return $this->replaceString($value, $varSpec, $useQuery); } return $this->replaceList($value, $varSpec, $useQuery); } /** * Expands an expression using a string value. * * @return array{0:string, 1:bool} */ private function replaceString(string $value, VarSpecifier $varSpec, bool $useQuery): array { if (':' === $varSpec->modifier()) { $value = substr($value, 0, $varSpec->position()); } $expanded = rawurlencode($value); if ('+' === $this->operator || '#' === $this->operator) { return [$this->decodeReserved($expanded), $useQuery]; } return [$expanded, $useQuery]; } /** * Expands an expression using a list of values. * * @param array $value * * @throws TemplateCanNotBeExpanded if the variables is an array and a ":" modifier needs to be applied * * @return array{0:string, 1:bool} */ private function replaceList(array $value, VarSpecifier $varSpec, bool $useQuery): array { if ([] === $value) { return ['', false]; } if (':' === $varSpec->modifier()) { throw TemplateCanNotBeExpanded::dueToUnableToProcessValueListWithPrefix($varSpec->name()); } $pairs = []; $isAssoc = $this->isAssoc($value); foreach ($value as $key => $var) { if ($isAssoc) { $key = rawurlencode((string) $key); } $var = rawurlencode($var); if ('+' === $this->operator || '#' === $this->operator) { $var = $this->decodeReserved($var); } if ('*' === $varSpec->modifier()) { if ($isAssoc) { $var = $key.'='.$var; } elseif ($key > 0 && $useQuery) { $var = $varSpec->name().'='.$var; } } $pairs[$key] = $var; } if ('*' === $varSpec->modifier()) { if ($isAssoc) { // Don't prepend the value name when using the explode // modifier with an associative array. $useQuery = false; } return [implode($this->joiner, $pairs), $useQuery]; } if ($isAssoc) { // When an associative array is encountered and the // explode modifier is not set, then the result must be // a comma separated list of keys followed by their // respective values. foreach ($pairs as $offset => &$data) { $data = $offset.','.$data; } unset($data); } return [implode(',', $pairs), $useQuery]; } /** * Determines if an array is associative. * * This makes the assumption that input arrays are sequences or hashes. * This assumption is a trade-off for accuracy in favor of speed, but it * should work in almost every case where input is supplied for a URI * template. */ private function isAssoc(array $array): bool { return [] !== $array && 0 !== array_keys($array)[0]; } /** * Removes percent encoding on reserved characters (used with + and # modifiers). */ private function decodeReserved(string $str): string { static $delimiters = [ ':', '/', '?', '#', '[', ']', '@', '!', '$', '&', '\'', '(', ')', '*', '+', ',', ';', '=', ]; static $delimitersEncoded = [ '%3A', '%2F', '%3F', '%23', '%5B', '%5D', '%40', '%21', '%24', '%26', '%27', '%28', '%29', '%2A', '%2B', '%2C', '%3B', '%3D', ]; return str_replace($delimitersEncoded, $delimiters, $str); } }