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) 2022 Klemens Morgenstern (klemens.morgenstern@gmx.net) // // 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_COBALT_OP_HPP #define BOOST_COBALT_OP_HPP #include #include #include #include #include #include namespace boost::cobalt { template struct BOOST_SYMBOL_VISIBLE op { virtual void ready(cobalt::handler) {}; virtual void initiate(cobalt::completion_handler complete) = 0 ; virtual ~op() = default; struct awaitable_base { op &op_; std::optional> result; #if !defined(BOOST_COBALT_NO_PMR) using resource_type = pmr::memory_resource; #else using resource_type = detail::sbo_resource; #endif awaitable_base(op * op_, resource_type *resource) : op_(*op_), resource(resource) {} awaitable_base(awaitable_base && lhs) noexcept = default; #if defined(_MSC_VER) BOOST_NOINLINE ~awaitable_base() {} #endif bool await_ready() { op_.ready(handler(result)); return result.has_value(); } detail::completed_immediately_t completed_immediately = detail::completed_immediately_t::no; std::exception_ptr init_ep; resource_type *resource; template bool await_suspend(std::coroutine_handle h #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) , const boost::source_location & loc = BOOST_CURRENT_LOCATION #endif ) noexcept { BOOST_TRY { completed_immediately = detail::completed_immediately_t::initiating; #if defined(BOOST_ASIO_ENABLE_HANDLER_TRACKING) op_.initiate(completion_handler{h, result, resource, &completed_immediately, loc}); #else op_.initiate(completion_handler{h, result, resource, &completed_immediately}); #endif if (completed_immediately == detail::completed_immediately_t::initiating) completed_immediately = detail::completed_immediately_t::no; return completed_immediately != detail::completed_immediately_t::yes; } BOOST_CATCH(...) { init_ep = std::current_exception(); return false; } BOOST_CATCH_END } BOOST_COBALT_MSVC_NOINLINE auto await_resume(const boost::source_location & loc = BOOST_CURRENT_LOCATION) { if (init_ep) std::rethrow_exception(init_ep); return await_resume(as_result_tag{}).value(loc); } #if defined(_MSC_VER) BOOST_NOINLINE #endif auto await_resume(const struct as_tuple_tag &) { if (init_ep) std::rethrow_exception(init_ep); return *std::move(result); } #if defined(_MSC_VER) BOOST_NOINLINE #endif auto await_resume(const struct as_result_tag &) { if (init_ep) std::rethrow_exception(init_ep); return interpret_as_result(*std::move(result)); } }; struct awaitable : awaitable_base { char buffer[BOOST_COBALT_SBO_BUFFER_SIZE]; detail::sbo_resource resource{buffer, sizeof(buffer)}; awaitable(op * op_) : awaitable_base(op_, &resource) {} awaitable(awaitable && rhs) : awaitable_base(std::move(rhs)) { this->awaitable_base::resource = &resource; } awaitable_base replace_resource(typename awaitable_base::resource_type * resource) && { awaitable_base nw = std::move(*this); nw.resource = resource; return nw; } }; awaitable operator co_await() { return awaitable{this}; } }; struct use_op_t { /// Default constructor. constexpr use_op_t() { } /// Adapts an executor to add the @c use_op_t completion token as the /// default. template struct executor_with_default : InnerExecutor { /// Specify @c use_op_t as the default completion token type. typedef use_op_t default_completion_token_type; executor_with_default(const InnerExecutor& ex) noexcept : InnerExecutor(ex) { } /// Construct the adapted executor from the inner executor type. template executor_with_default(const InnerExecutor1& ex, typename std::enable_if< std::conditional< !std::is_same::value, std::is_convertible, std::false_type >::type::value>::type = 0) noexcept : InnerExecutor(ex) { } }; /// Type alias to adapt an I/O object to use @c use_op_t as its /// default completion token type. template using as_default_on_t = typename T::template rebind_executor< executor_with_default >::other; /// Function helper to adapt an I/O object to use @c use_op_t as its /// default completion token type. template static typename std::decay_t::template rebind_executor< executor_with_default::executor_type> >::other as_default_on(T && object) { return typename std::decay_t::template rebind_executor< executor_with_default::executor_type> >::other(std::forward(object)); } }; constexpr use_op_t use_op{}; struct enable_await_deferred { template auto await_transform(asio::deferred_async_operation op_) { struct deferred_op : op { asio::deferred_async_operation op_; deferred_op(asio::deferred_async_operation op_) : op_(std::move(op_)) {} void initiate(cobalt::completion_handler complete) override { std::move(op_)(std::move(complete)); } }; return deferred_op{std::move(op_)}; } }; } namespace boost::asio { template struct async_result { using return_type = boost::cobalt::op; template struct op_impl final : boost::cobalt::op { Initiation initiation; std::tuple args; template op_impl(Initiation_ initiation, InitArgs_ && ... args) : initiation(std::forward(initiation)) , args(std::forward(args)...) {} void initiate(cobalt::completion_handler complete) final override { std::apply( [&](InitArgs && ... args) { std::move(initiation)(std::move(complete), std::move(args)...); }, std::move(args)); } }; template static auto initiate(Initiation && initiation, boost::cobalt::use_op_t, InitArgs &&... args) -> op_impl, std::decay_t...> { return op_impl, std::decay_t...>( std::forward(initiation), std::forward(args)...); } }; } #endif //BOOST_COBALT_OP_HPP