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_DETAIL_THREAD_HPP #define BOOST_COBALT_DETAIL_THREAD_HPP #include #include #include #include #include #include #include #include namespace boost::cobalt { struct as_tuple_tag; struct as_result_tag; namespace detail { struct thread_promise; } struct thread; namespace detail { struct signal_helper_2 { asio::cancellation_signal signal; }; struct thread_state { asio::io_context ctx{1u}; asio::cancellation_signal signal; std::mutex mtx; std::optional> waitor; std::atomic done = false; }; struct thread_promise : signal_helper_2, promise_cancellation_base, promise_throw_if_cancelled_base, enable_awaitables, enable_await_allocator, enable_await_executor, enable_await_deferred { BOOST_COBALT_DECL thread_promise(); struct initial_awaitable { bool await_ready() const {return false;} void await_suspend(std::coroutine_handle h) { h.promise().mtx.unlock(); } void await_resume() {} }; auto initial_suspend() noexcept { return initial_awaitable{}; } std::suspend_never final_suspend() noexcept { wexec_.reset(); return {}; } #if !defined(BOOST_NO_EXCEPTIONS) void unhandled_exception() { throw; } #endif void return_void() { } using executor_type = typename cobalt::executor; const executor_type & get_executor() const {return *exec_;} #if !defined(BOOST_COBALT_NO_PMR) using allocator_type = pmr::polymorphic_allocator; using resource_type = pmr::unsynchronized_pool_resource; resource_type * resource; allocator_type get_allocator() const { return allocator_type(resource); } #endif using promise_cancellation_base::await_transform; using promise_throw_if_cancelled_base::await_transform; using enable_awaitables::await_transform; using enable_await_allocator::await_transform; using enable_await_executor::await_transform; using enable_await_deferred::await_transform; BOOST_COBALT_DECL boost::cobalt::thread get_return_object(); void set_executor(asio::io_context::executor_type exec) { wexec_.emplace(exec); exec_.emplace(exec); } std::mutex mtx; private: std::optional> wexec_; std::optional exec_; }; struct thread_awaitable { asio::cancellation_slot cl; std::optional> res; bool await_ready(const boost::source_location & loc = BOOST_CURRENT_LOCATION) const { if (state_ == nullptr) boost::throw_exception(std::invalid_argument("Thread expired"), loc); std::lock_guard lock{state_->mtx}; return state_->done; } template bool await_suspend(std::coroutine_handle h) { BOOST_ASSERT(state_); std::lock_guard lock{state_->mtx}; if (state_->done) return false; if constexpr (requires {h.promise().get_cancellation_slot();}) if ((cl = h.promise().get_cancellation_slot()).is_connected()) { cl.assign( [st = state_](asio::cancellation_type type) { std::lock_guard lock{st->mtx}; asio::post(st->ctx, [st, type] { BOOST_ASIO_HANDLER_LOCATION((__FILE__, __LINE__, __func__)); st->signal.emit(type); }); }); } state_->waitor.emplace(h, res); return true; } void await_resume() { if (cl.is_connected()) cl.clear(); if (thread_) thread_->join(); if (!res) // await_ready return; if (auto ee = std::get<0>(*res)) std::rethrow_exception(ee); } system::result await_resume(const as_result_tag &) { if (cl.is_connected()) cl.clear(); if (thread_) thread_->join(); if (!res) // await_ready return {system::in_place_value}; if (auto ee = std::get<0>(*res)) return {system::in_place_error, std::move(ee)}; return {system::in_place_value}; } std::tuple await_resume(const as_tuple_tag &) { if (cl.is_connected()) cl.clear(); if (thread_) thread_->join(); return std::get<0>(*res); } explicit thread_awaitable(std::shared_ptr state) : state_(std::move(state)) {} explicit thread_awaitable(std::thread thread, std::shared_ptr state) : thread_(std::move(thread)), state_(std::move(state)) {} private: std::optional thread_; std::shared_ptr state_; }; } } #endif //BOOST_COBALT_DETAIL_THREAD_HPP