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
// (C) Copyright 2013 Ruslan Baratov // Copyright (C) 2014 Vicente J. Botet Escriba // // 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) // See www.boost.org/libs/thread for documentation. #ifndef BOOST_THREAD_WITH_LOCK_GUARD_HPP #define BOOST_THREAD_WITH_LOCK_GUARD_HPP #include #include //#include namespace boost { #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && \ !defined(BOOST_NO_CXX11_DECLTYPE) && \ !defined(BOOST_NO_CXX11_TRAILING_RESULT_TYPES) /** * Utility to run functions in scope protected by mutex. * * Examples: * * int func(int, int&); * boost::mutex m; * int a; * int result = boost::with_lock_guard(m, func, 1, boost::ref(a)); * * // using boost::bind * int result = boost::with_lock_guard( * m, boost::bind(func, 2, boost::ref(a)) * ); * * // using lambda * int a; * int result = boost::with_lock_guard( * m, * [&a](int x) { * a = 3; * return x + 4; * }, * 5 * ); */ template typename boost::result_of::type with_lock_guard( Lockable& m, BOOST_FWD_REF(Function) func, BOOST_FWD_REF(Args)... args ) //-> decltype(func(boost::forward(args)...)) { boost::lock_guard lock(m); return func(boost::forward(args)...); } #else // Workaround versions for compilers without c++11 variadic templates support. // (function arguments limit: 4) // (for lambda support define BOOST_RESULT_OF_USE_DECLTYPE may be needed) template typename boost::result_of::type with_lock_guard( Lockable& m, BOOST_FWD_REF(Func) func ) { boost::lock_guard lock(m); return func(); } template typename boost::result_of::type with_lock_guard( Lockable& m, BOOST_FWD_REF(Func) func, BOOST_FWD_REF(Arg) arg ) { boost::lock_guard lock(m); return func( boost::forward(arg) ); } template typename boost::result_of::type with_lock_guard( Lockable& m, BOOST_FWD_REF(Func) func, BOOST_FWD_REF(Arg1) arg1, BOOST_FWD_REF(Arg2) arg2 ) { boost::lock_guard lock(m); return func( boost::forward(arg1), boost::forward(arg2) ); } template typename boost::result_of::type with_lock_guard( Lockable& m, BOOST_FWD_REF(Func) func, BOOST_FWD_REF(Arg1) arg1, BOOST_FWD_REF(Arg2) arg2, BOOST_FWD_REF(Arg3) arg3 ) { boost::lock_guard lock(m); return func( boost::forward(arg1), boost::forward(arg2), boost::forward(arg3) ); } template < class Lockable, class Func, class Arg1, class Arg2, class Arg3, class Arg4 > typename boost::result_of::type with_lock_guard( Lockable& m, BOOST_FWD_REF(Func) func, BOOST_FWD_REF(Arg1) arg1, BOOST_FWD_REF(Arg2) arg2, BOOST_FWD_REF(Arg3) arg3, BOOST_FWD_REF(Arg4) arg4 ) { boost::lock_guard lock(m); return func( boost::forward(arg1), boost::forward(arg2), boost::forward(arg3), boost::forward(arg4) ); } // overloads for function pointer // (if argument is not function pointer, static assert will trigger) template typename boost::result_of< typename boost::add_pointer::type() >::type with_lock_guard( Lockable& m, Func* func ) { BOOST_STATIC_ASSERT(boost::is_function::value); boost::lock_guard lock(m); return func(); } template typename boost::result_of< typename boost::add_pointer::type(Arg) >::type with_lock_guard( Lockable& m, Func* func, BOOST_FWD_REF(Arg) arg ) { BOOST_STATIC_ASSERT(boost::is_function::value); boost::lock_guard lock(m); return func( boost::forward(arg) ); } template typename boost::result_of< typename boost::add_pointer::type(Arg1, Arg2) >::type with_lock_guard( Lockable& m, Func* func, BOOST_FWD_REF(Arg1) arg1, BOOST_FWD_REF(Arg2) arg2 ) { BOOST_STATIC_ASSERT(boost::is_function::value); boost::lock_guard lock(m); return func( boost::forward(arg1), boost::forward(arg2) ); } template typename boost::result_of< typename boost::add_pointer::type(Arg1, Arg2, Arg3) >::type with_lock_guard( Lockable& m, Func* func, BOOST_FWD_REF(Arg1) arg1, BOOST_FWD_REF(Arg2) arg2, BOOST_FWD_REF(Arg3) arg3 ) { BOOST_STATIC_ASSERT(boost::is_function::value); boost::lock_guard lock(m); return func( boost::forward(arg1), boost::forward(arg2), boost::forward(arg3) ); } template < class Lockable, class Func, class Arg1, class Arg2, class Arg3, class Arg4 > typename boost::result_of< typename boost::add_pointer::type(Arg1, Arg2, Arg3, Arg4) >::type with_lock_guard( Lockable& m, Func* func, BOOST_FWD_REF(Arg1) arg1, BOOST_FWD_REF(Arg2) arg2, BOOST_FWD_REF(Arg3) arg3, BOOST_FWD_REF(Arg4) arg4 ) { BOOST_STATIC_ASSERT(boost::is_function::value); boost::lock_guard lock(m); return func( boost::forward(arg1), boost::forward(arg2), boost::forward(arg3), boost::forward(arg4) ); } #endif } // namespace boost #endif // BOOST_THREAD_WITH_LOCK_GUARD_HPP