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
// Copyright (C) 2020 T. Zachary Laine // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_PARSER_DETAIL_HL_HPP #define BOOST_PARSER_DETAIL_HL_HPP #include #include #include #include #include namespace boost { namespace parser { namespace detail::hl { // Boost.Hana lite. These functions work with boost::hana::tuple and // std::tuple. struct forward { template decltype(auto) operator()(T && t) { return (T &&) t; } }; template constexpr auto make_tuple(Args &&... args) { #if BOOST_PARSER_USE_STD_TUPLE return std::make_tuple((Args &&) args...); #else return hana::make_tuple((Args &&) args...); #endif } template constexpr auto make_pair(T && t, U && u) { return hl::make_tuple((T &&) t, (U &&) u); } template constexpr auto concat(Tuple1 const & t1, Tuple2 const & t2) { #if BOOST_PARSER_USE_STD_TUPLE return std::tuple_cat(t1, t2); #else // Hana's concat does not seem to do what it says on the tin. // Concatenating (int, string) with (double, int) yields (int, string, // double). I maybe don't understand it well enough. return hana::insert_range(t1, hana::size(t1), t2); #endif } // apply template constexpr auto apply_impl(F && f, Tuple && t, std::integer_sequence) -> decltype(((F &&) f)(parser::get((Tuple &&) t, llong{})...)) { return ((F &&) f)(parser::get((Tuple &&) t, llong{})...); } template< typename F, typename Tuple, typename Enable = std::enable_if_t>>{}>> constexpr auto apply(F && f, Tuple && t) -> decltype(hl::apply_impl( (F &&) f, (Tuple &&) t, std::make_integer_sequence>{})) { return hl::apply_impl( (F &&) f, (Tuple &&) t, std::make_integer_sequence>{}); } // for_each template constexpr void for_each_impl( Tuple const & t, F && f, std::integer_sequence) { int _[] = {0, (f(parser::get(t, llong{})), 0)...}; (void)_; } template< typename F, typename Tuple, std::size_t... I, typename Enable = std::enable_if_t>> constexpr void for_each_impl(Tuple && t, F && f, std::integer_sequence) { int _[] = {0, (f(std::move(parser::get(t, llong{}))), 0)...}; (void)_; } template constexpr void for_each(tuple && t, F && f) { hl::for_each_impl( std::move(t), (F &&) f, std::make_integer_sequence()); } template constexpr void for_each(tuple const & t, F && f) { hl::for_each_impl( t, (F &&) f, std::make_integer_sequence()); } // transform template constexpr auto transform_impl( Tuple const & t, F && f, std::integer_sequence) { return tuple< std::decay_t{})))>...>{ f(parser::get(t, llong{}))...}; } template< int offset, typename F, typename Tuple, std::size_t... I, typename Enable = std::enable_if_t>> auto constexpr transform_impl( Tuple && t, F && f, std::integer_sequence) { return tuple{}))))>...>{ f(std::move(parser::get(t, llong{})))...}; } template constexpr auto transform(tuple && t, F && f) { return hl::transform_impl<0>( std::move(t), (F &&) f, std::make_integer_sequence()); } template constexpr auto transform(tuple const & t, F && f) { return hl::transform_impl<0>( t, (F &&) f, std::make_integer_sequence()); } // fold_left template struct fold_left_dispatch { template constexpr static auto call(tuple const & t, State && s, F const & f) { return fold_left_dispatch::call( t, f((State &&) s, parser::get(t, llong{})), f); } }; template struct fold_left_dispatch { template constexpr static auto call(tuple const & t, State && s, F const & f) { return (State &&) s; } }; template constexpr auto fold_left(tuple const & t, State && s, F const & f) { return hl::fold_left_dispatch<0, sizeof...(Args)>::call( t, (State &&) s, (F &&) f); } // size template constexpr auto size(tuple const & t) { return llong{}; } template constexpr auto size_minus_one(tuple const & t) { return llong{}; } // contains template using comparable = decltype(std::declval() == std::declval()); struct typesafe_equals { template constexpr bool operator()(T const & t, U const & u) { if constexpr (detail::is_detected_v) { return t == u; } else { return false; } } }; template constexpr bool contains_impl( Tuple const & t, T const & x, std::integer_sequence) { typesafe_equals eq; (void)eq; return (eq(parser::get(t, llong{}), x) || ...); } template constexpr bool contains(tuple const & t, T const & x) { return contains_impl( t, x, std::make_integer_sequence()); } // front, back template constexpr decltype(auto) front(tuple const & t) { return parser::get(t, llong<0>{}); } template constexpr decltype(auto) back(tuple const & t) { return parser::get(t, llong{}); } // drop_front template constexpr auto drop_front(tuple && t) { return hl::transform_impl<1>( std::move(t), forward{}, std::make_integer_sequence()); } template constexpr auto drop_front(tuple const & t) { return hl::transform_impl<1>( t, forward{}, std::make_integer_sequence()); } // drop_back template constexpr auto drop_back(tuple && t) { return hl::transform_impl<0>( std::move(t), forward{}, std::make_integer_sequence()); } template constexpr auto drop_back(tuple const & t) { return hl::transform_impl<0>( t, forward{}, std::make_integer_sequence()); } // first, second template constexpr decltype(auto) first(tuple const & t) { return parser::get(t, llong<0>{}); } template constexpr decltype(auto) second(tuple const & t) { return parser::get(t, llong<1>{}); } // zip template constexpr decltype(auto) make_zip_elem(Tuples const &... ts) { return hl::make_tuple(parser::get(ts, llong{})...); } template constexpr auto zip_impl(std::index_sequence, Tuples const &... ts) { return hl::make_tuple(hl::make_zip_elem(ts...)...); } template struct tuplesize; template struct tuplesize> { constexpr static std::size_t value = sizeof...(Args); }; template constexpr auto zip(Tuple const & t, Tuples const &... ts) { return hl::zip_impl( std::make_integer_sequence< std::size_t, tuplesize>::value>(), t, ts...); } // append template constexpr auto append(tuple && t, T && x) { #if BOOST_PARSER_USE_STD_TUPLE return std::tuple_cat(std::move(t), std::make_tuple((T &&) x)); #else return hana::append(std::move(t), (T &&) x); #endif } template constexpr auto append(tuple const & t, T && x) { #if BOOST_PARSER_USE_STD_TUPLE return std::tuple_cat(t, std::make_tuple((T &&) x)); #else return hana::append(t, (T &&) x); #endif } // prepend template constexpr auto prepend(tuple && t, T && x) { #if BOOST_PARSER_USE_STD_TUPLE return std::tuple_cat(std::make_tuple((T &&) x), std::move(t)); #else return hana::prepend(std::move(t), (T &&) x); #endif } template constexpr auto prepend(tuple const & t, T && x) { #if BOOST_PARSER_USE_STD_TUPLE return std::tuple_cat(std::make_tuple((T &&) x), t); #else return hana::prepend(t, (T &&) x); #endif } }}} #endif