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_IMPL_CHANNEL_HPP #define BOOST_COBALT_IMPL_CHANNEL_HPP #include #include #include namespace boost::cobalt { #if !defined(BOOST_COBALT_NO_PMR) template inline channel::channel( std::size_t limit, executor executor, pmr::memory_resource * resource) : buffer_(limit, pmr::polymorphic_allocator(resource)), executor_(executor) {} #else template inline channel::channel( std::size_t limit, executor executor) : buffer_(limit), executor_(executor) {} #endif template auto channel::get_executor() -> const executor_type & {return executor_;} template bool channel::is_open() const {return !is_closed_;} template channel::~channel() { while (!read_queue_.empty()) read_queue_.front().awaited_from.reset(); while (!write_queue_.empty()) write_queue_.front().awaited_from.reset(); } template void channel::close() { is_closed_ = true; while (!read_queue_.empty()) { auto & op = read_queue_.front(); op.unlink(); op.cancelled = true; op.cancel_slot.clear(); if (op.awaited_from) asio::post(executor_, std::move(op.awaited_from)); } while (!write_queue_.empty()) { auto & op = write_queue_.front(); op.unlink(); op.cancelled = true; op.closed = true; op.cancel_slot.clear(); if (op.awaited_from) asio::post(executor_, std::move(op.awaited_from)); } } template struct channel::read_op::cancel_impl { read_op * op; cancel_impl(read_op * op) : op(op) {} void operator()(asio::cancellation_type) { op->cancelled = true; op->unlink(); if (op->awaited_from) asio::post( op->chn->executor_, std::move(op->awaited_from)); op->cancel_slot.clear(); } }; template template std::coroutine_handle channel::read_op::await_suspend(std::coroutine_handle h) { if (cancelled) return h; // already interrupted. if constexpr (requires {h.promise().get_cancellation_slot();}) if ((cancel_slot = h.promise().get_cancellation_slot()).is_connected()) cancel_slot.emplace(this); if (awaited_from) boost::throw_exception(std::runtime_error("already-awaited"), loc); awaited_from.reset(h.address()); // currently nothing to read if constexpr (requires {h.promise().begin_transaction();}) begin_transaction = +[](void * p){std::coroutine_handle::from_address(p).promise().begin_transaction();}; if (chn->write_queue_.empty()) { chn->read_queue_.push_back(*this); return std::noop_coroutine(); } else { cancel_slot.clear(); auto & op = chn->write_queue_.front(); // transactional_unlink can interrupt or cancel `op` through `race`, so we need to check. op.direct = true; if constexpr (std::is_copy_constructible_v) { if (op.ref.index() == 0) direct = std::move(*variant2::get<0>(op.ref)); else direct = *variant2::get<1>(op.ref); } else direct = std::move(*op.ref); op.transactional_unlink(); BOOST_ASSERT(op.awaited_from); BOOST_ASSERT(awaited_from); asio::post(chn->executor_, std::move(awaited_from)); return op.awaited_from.release(); } } template T channel::read_op::await_resume() { return await_resume(as_result_tag{}).value(loc); } template std::tuple channel::read_op::await_resume(const struct as_tuple_tag &) { auto res = await_resume(as_result_tag{}); if (res.has_error()) return {res.error(), T{}}; else return {system::error_code{}, std::move(*res)}; } template system::result channel::read_op::await_resume(const struct as_result_tag &) { if (cancel_slot.is_connected()) cancel_slot.clear(); if (chn->is_closed_ && chn->buffer_.empty() && !direct) { constexpr static boost::source_location loc{BOOST_CURRENT_LOCATION}; return {system::in_place_error, asio::error::broken_pipe, &loc}; } if (cancelled) { constexpr static boost::source_location loc{BOOST_CURRENT_LOCATION}; return {system::in_place_error, asio::error::operation_aborted, &loc}; } T value = chn->buffer_.empty() ? std::move(*direct) : std::move(chn->buffer_.front()); if (!chn->buffer_.empty()) { chn->buffer_.pop_front(); if (direct) chn->buffer_.push_back(std::move(*direct)); } if (!chn->write_queue_.empty()) { auto &op = chn->write_queue_.front(); BOOST_ASSERT(chn->read_queue_.empty()); if (op.await_ready()) { op.unlink(); if (!op.cancelled && !op.closed) { op.direct = true; if constexpr (std::is_copy_constructible_v) { if (op.ref.index() == 0) chn->buffer_.push_back(std::move(*variant2::get<0>(op.ref))); else chn->buffer_.push_back(*variant2::get<1>(op.ref)); } else chn->buffer_.push_back(std::move(*op.ref)); } BOOST_ASSERT(op.awaited_from); asio::post(chn->executor_, std::move(op.awaited_from)); } } return {system::in_place_value, std::move(value)}; } template struct channel::write_op::cancel_impl { write_op * op; cancel_impl(write_op * op) : op(op) {} void operator()(asio::cancellation_type) { op->cancelled = true; op->unlink(); if (op->awaited_from) asio::post( op->chn->executor_, std::move(op->awaited_from)); op->cancel_slot.clear(); } }; template template std::coroutine_handle channel::write_op::await_suspend(std::coroutine_handle h) { if (cancelled) return h; // already interrupted. if constexpr (requires {h.promise().get_cancellation_slot();}) if ((cancel_slot = h.promise().get_cancellation_slot()).is_connected()) cancel_slot.emplace(this); awaited_from.reset(h.address()); if constexpr (requires {h.promise().begin_transaction();}) begin_transaction = +[](void * p){std::coroutine_handle::from_address(p).promise().begin_transaction();}; BOOST_ASSERT(this->chn->buffer_.full()); if (chn->read_queue_.empty()) { chn->write_queue_.push_back(*this); return std::noop_coroutine(); } else { cancel_slot.clear(); auto & op = chn->read_queue_.front(); if constexpr (std::is_copy_constructible_v) { if (ref.index() == 0) op.direct.emplace(std::move(*variant2::get<0>(ref))); else op.direct.emplace(*variant2::get<1>(ref)); } else op.direct.emplace(std::move(*ref)); direct = true; op.transactional_unlink(); BOOST_ASSERT(op.awaited_from); BOOST_ASSERT(awaited_from); asio::post(chn->executor_, std::move(awaited_from)); return op.awaited_from.release(); } } template std::tuple channel::write_op::await_resume(const struct as_tuple_tag &) { return await_resume(as_result_tag{}).error(); } template void channel::write_op::await_resume() { await_resume(as_result_tag{}).value(loc); } template system::result channel::write_op::await_resume(const struct as_result_tag &) { if (cancel_slot.is_connected()) cancel_slot.clear(); if (closed) { constexpr static boost::source_location loc{BOOST_CURRENT_LOCATION}; return {system::in_place_error, asio::error::broken_pipe, &loc}; } if (cancelled) { constexpr static boost::source_location loc{BOOST_CURRENT_LOCATION}; return {system::in_place_error, asio::error::operation_aborted, &loc}; } if (!direct) { BOOST_ASSERT(!chn->buffer_.full()); if constexpr (std::is_copy_constructible_v) { if (ref.index() == 0) chn->buffer_.push_back(std::move(*variant2::get<0>(ref))); else chn->buffer_.push_back(*variant2::get<1>(ref)); } else chn->buffer_.push_back(std::move(*ref)); } if (!chn->read_queue_.empty()) { auto & op = chn->read_queue_.front(); BOOST_ASSERT(chn->write_queue_.empty()); if (op.await_ready()) { // unlink? op.unlink(); BOOST_ASSERT(op.awaited_from); asio::post(chn->executor_, std::move(op.awaited_from)); } } return system::in_place_value; } struct channel::read_op::cancel_impl { read_op * op; cancel_impl(read_op * op) : op(op) {} void operator()(asio::cancellation_type) { op->cancelled = true; op->unlink(); if (op->awaited_from) asio::post(op->chn->executor_, std::move(op->awaited_from)); op->cancel_slot.clear(); } }; struct channel::write_op::cancel_impl { write_op * op; cancel_impl(write_op * op) : op(op) {} void operator()(asio::cancellation_type) { op->cancelled = true; op->unlink(); if (op->awaited_from) asio::post(op->chn->executor_, std::move(op->awaited_from)); op->cancel_slot.clear(); } }; template std::coroutine_handle channel::read_op::await_suspend(std::coroutine_handle h) { if (cancelled) return h; // already interrupted. if constexpr (requires {h.promise().get_cancellation_slot();}) if ((cancel_slot = h.promise().get_cancellation_slot()).is_connected()) cancel_slot.emplace(this); if (awaited_from) boost::throw_exception(std::runtime_error("already-awaited"), loc); awaited_from.reset(h.address()); if constexpr (requires {h.promise().begin_transaction();}) begin_transaction = +[](void * p){std::coroutine_handle::from_address(p).promise().begin_transaction();}; // nothing to read currently, enqueue if (chn->write_queue_.empty()) { chn->read_queue_.push_back(*this); return std::noop_coroutine(); } else // we're good, we can read, so we'll do that, but we need to post, so we need to initialize a transactin. { cancel_slot.clear(); auto & op = chn->write_queue_.front(); op.direct = true; direct = true; op.transactional_unlink(); BOOST_ASSERT(op.awaited_from); BOOST_ASSERT(awaited_from); asio::post(chn->executor_, std::move(awaited_from)); return op.awaited_from.release(); } } template std::coroutine_handle channel::write_op::await_suspend(std::coroutine_handle h) { if (cancelled) return h; // already interrupted. if constexpr (requires {h.promise().get_cancellation_slot();}) if ((cancel_slot = h.promise().get_cancellation_slot()).is_connected()) cancel_slot.emplace(this); awaited_from.reset(h.address()); // currently nothing to read if constexpr (requires {h.promise().begin_transaction();}) begin_transaction = +[](void * p){std::coroutine_handle::from_address(p).promise().begin_transaction();}; if (chn->read_queue_.empty()) { chn->write_queue_.push_back(*this); return std::noop_coroutine(); } else { cancel_slot.clear(); auto & op = chn->read_queue_.front(); op.direct = true; // let interrupt_await know that we'll be resuming it! direct = true; op.transactional_unlink(); BOOST_ASSERT(op.awaited_from); BOOST_ASSERT(awaited_from); asio::post(chn->executor_, std::move(awaited_from)); return op.awaited_from.release(); } } } #endif //BOOST_COBALT_IMPL_CHANNEL_HPP