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_CHANNEL_HPP #define BOOST_COBALT_CHANNEL_HPP #include #include #include #include #include #include #include #include #include #include namespace boost::cobalt { template struct channel_reader; // tag::outline[] template struct channel { // end::outline[] #if defined(BOOST_COBALT_NO_PMR) explicit channel(std::size_t limit = 0u, executor executor = this_thread::get_executor()); #else // tag::outline[] // create a channel with a buffer limit, executor & resource. explicit channel(std::size_t limit = 0u, executor executor = this_thread::get_executor(), pmr::memory_resource * resource = this_thread::get_default_resource()); // end::outline[] #endif // tag::outline[] // not movable. channel(channel && rhs) noexcept = delete; channel & operator=(channel && lhs) noexcept = delete; using executor_type = executor; const executor_type & get_executor(); // Closes the channel ~channel(); bool is_open() const; // close the operation, will cancel all pending ops, too void close(); // end::outline[] private: #if !defined(BOOST_COBALT_NO_PMR) boost::circular_buffer> buffer_; #else boost::circular_buffer buffer_; #endif executor_type executor_; bool is_closed_{false}; struct read_op : intrusive::list_base_hook > { channel * chn; boost::source_location loc; bool cancelled = false; std::optional direct{}; asio::cancellation_slot cancel_slot{}; unique_handle awaited_from{nullptr}; void (*begin_transaction)(void*) = nullptr; void transactional_unlink() { if (begin_transaction) begin_transaction(awaited_from.get()); this->unlink(); } void interrupt_await() { if (!direct) { this->cancelled = true; if (this->awaited_from) this->awaited_from.release().resume(); } } struct cancel_impl; bool await_ready() const noexcept{ return !chn->buffer_.empty() || chn->is_closed_; } template BOOST_COBALT_MSVC_NOINLINE std::coroutine_handle await_suspend(std::coroutine_handle h); T await_resume(); std::tuple await_resume(const struct as_tuple_tag & ); system::result await_resume(const struct as_result_tag &); explicit operator bool() const {return chn && chn->is_open();} }; struct write_op : intrusive::list_base_hook > { channel * chn; using ref_t = std::conditional_t< std::is_copy_constructible_v, variant2::variant, T*>; ref_t ref; boost::source_location loc; bool cancelled = false, direct = false, closed = !chn->is_open(); asio::cancellation_slot cancel_slot{}; unique_handle awaited_from{nullptr}; void (*begin_transaction)(void*) = nullptr; void transactional_unlink() { if (begin_transaction) begin_transaction(awaited_from.get()); this->unlink(); } void interrupt_await() { if (!direct) { this->cancelled = true; if (this->awaited_from) this->awaited_from.release().resume(); } } struct cancel_impl; bool await_ready() const noexcept { return !chn->buffer_.full() || chn->is_closed_; } template BOOST_COBALT_MSVC_NOINLINE std::coroutine_handle await_suspend(std::coroutine_handle h); void await_resume(); std::tuple await_resume(const struct as_tuple_tag & ); system::result await_resume(const struct as_result_tag &); explicit operator bool() const {return chn && chn->is_open();} }; boost::intrusive::list > read_queue_; boost::intrusive::list > write_queue_; public: BOOST_COBALT_MSVC_NOINLINE read_op read(const boost::source_location & loc = BOOST_CURRENT_LOCATION) {return read_op{{}, this, loc}; } BOOST_COBALT_MSVC_NOINLINE write_op write(const T && value, const boost::source_location & loc = BOOST_CURRENT_LOCATION) requires std::is_copy_constructible_v { return write_op{{}, this, &value, loc}; } BOOST_COBALT_MSVC_NOINLINE write_op write(const T & value, const boost::source_location & loc = BOOST_CURRENT_LOCATION) requires std::is_copy_constructible_v { return write_op{{}, this, &value, loc}; } BOOST_COBALT_MSVC_NOINLINE write_op write( T && value, const boost::source_location & loc = BOOST_CURRENT_LOCATION) { return write_op{{}, this, &value, loc}; } BOOST_COBALT_MSVC_NOINLINE write_op write( T & value, const boost::source_location & loc = BOOST_CURRENT_LOCATION) { return write_op{{}, this, &static_cast(value), loc}; } /* // tag::outline[] // an awaitable that yields T using __read_op__ = __unspecified__; // an awaitable that yields void using __write_op__ = __unspecified__; // read a value to a channel __read_op__ read(); // write a value to the channel __write_op__ write(const T && value); __write_op__ write(const T & value); __write_op__ write( T && value); __write_op__ write( T & value); // write a value to the channel if T is void __write_op__ write(); // end::outline[] */ // tag::outline[] }; // end::outline[] template<> struct channel { explicit channel(std::size_t limit = 0u, executor executor = this_thread::get_executor()) : limit_(limit), executor_(executor) {} channel(channel &&) noexcept = delete; channel & operator=(channel && lhs) noexcept = delete; using executor_type = executor; const executor_type & get_executor() {return executor_;} BOOST_COBALT_DECL ~channel(); bool is_open() const {return !is_closed_;} BOOST_COBALT_DECL void close(); private: std::size_t limit_; std::size_t n_{0u}; executor_type executor_; bool is_closed_{false}; struct read_op : intrusive::list_base_hook > { channel * chn; boost::source_location loc; bool cancelled = false, direct = false; asio::cancellation_slot cancel_slot{}; unique_handle awaited_from{nullptr}; void (*begin_transaction)(void*) = nullptr; void transactional_unlink() { if (begin_transaction) begin_transaction(awaited_from.get()); this->unlink(); } void interrupt_await() { if (!direct) { this->cancelled = true; if (this->awaited_from) this->awaited_from.release().resume(); } } struct cancel_impl; bool await_ready() const noexcept { return (chn->n_ > 0) || chn->is_closed_; } template BOOST_COBALT_MSVC_NOINLINE std::coroutine_handle await_suspend(std::coroutine_handle h); BOOST_COBALT_DECL void await_resume(); BOOST_COBALT_DECL std::tuple await_resume(const struct as_tuple_tag & ); BOOST_COBALT_DECL system::result await_resume(const struct as_result_tag &); explicit operator bool() const {return chn && chn->is_open();} }; struct write_op : intrusive::list_base_hook > { channel * chn; boost::source_location loc; bool cancelled = false, direct = false, closed = !chn->is_open(); asio::cancellation_slot cancel_slot{}; unique_handle awaited_from{nullptr}; void (*begin_transaction)(void*) = nullptr; void transactional_unlink() { if (begin_transaction) begin_transaction(awaited_from.get()); this->unlink(); } void interrupt_await() { if (!direct) { cancelled = true; if (this->awaited_from) this->awaited_from.release().resume(); } } struct cancel_impl; bool await_ready() const noexcept { return chn->n_ < chn->limit_ || chn->is_closed_; } template BOOST_COBALT_MSVC_NOINLINE std::coroutine_handle await_suspend(std::coroutine_handle h); BOOST_COBALT_DECL void await_resume(); BOOST_COBALT_DECL std::tuple await_resume(const struct as_tuple_tag & ); BOOST_COBALT_DECL system::result await_resume(const struct as_result_tag &); explicit operator bool() const {return chn && chn->is_open();} }; boost::intrusive::list > read_queue_; boost::intrusive::list > write_queue_; public: read_op read(const boost::source_location & loc = BOOST_CURRENT_LOCATION) {return read_op{{}, this, loc}; } write_op write(const boost::source_location & loc = BOOST_CURRENT_LOCATION) {return write_op{{}, this, loc}; } }; template struct channel_reader { channel_reader(channel & chan, const boost::source_location & loc = BOOST_CURRENT_LOCATION) : chan_(&chan), loc_(loc) {} auto operator co_await () { return chan_->read(loc_); } explicit operator bool () const {return chan_ && chan_->is_open();} private: channel * chan_; boost::source_location loc_; }; } #include #endif //BOOST_COBALT_CHANNEL_HPP