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
#ifndef BOOST_HASH2_DIGEST_HPP_INCLUDED #define BOOST_HASH2_DIGEST_HPP_INCLUDED // Copyright 2024 Peter Dimov // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include #include #include #include #include #include namespace boost { namespace hash2 { template class digest { private: unsigned char data_[ N ] = {}; public: // constructors digest() = default; BOOST_CXX14_CONSTEXPR digest( unsigned char const (&v)[ N ] ) noexcept { detail::memcpy( data_, v, N ); } // iteration using value_type = unsigned char; using reference = unsigned char&; using const_reference = unsigned char const&; using iterator = unsigned char*; using const_iterator = unsigned char const*; using size_type = std::size_t; using difference_type = std::ptrdiff_t; BOOST_CXX14_CONSTEXPR iterator begin() noexcept { return data_; } constexpr const_iterator begin() const noexcept { return data_; } BOOST_CXX14_CONSTEXPR iterator end() noexcept { return data_ + N; } constexpr const_iterator end() const noexcept { return data_ + N; } // data, size BOOST_CXX14_CONSTEXPR unsigned char* data() noexcept { return data_; } constexpr unsigned char const* data() const noexcept { return data_; } constexpr size_type size() const noexcept { return N; } constexpr size_type max_size() const noexcept { return N; } // element access BOOST_CXX14_CONSTEXPR reference operator[]( std::size_t i ) { BOOST_ASSERT( i < N ); return data_[ i ]; } BOOST_CXX14_CONSTEXPR const_reference operator[]( std::size_t i ) const { BOOST_ASSERT( i < N ); return data_[ i ]; } BOOST_CXX14_CONSTEXPR reference front() noexcept { return data_[ 0 ]; } constexpr const_reference front() const noexcept { return data_[ 0 ]; } BOOST_CXX14_CONSTEXPR reference back() noexcept { return data_[ N-1 ]; } constexpr const_reference back() const noexcept { return data_[ N-1 ]; } }; // comparisons template BOOST_CXX14_CONSTEXPR bool operator==( digest const& a, digest const& b ) noexcept { return detail::memcmp( a.data(), b.data(), N ) == 0; } template BOOST_CXX14_CONSTEXPR bool operator!=( digest const& a, digest const& b ) noexcept { return !( a == b ); } // to_chars template BOOST_CXX14_CONSTEXPR char* to_chars( digest const& v, char* first, char* last ) noexcept { if( last - first < static_cast( 2 * N ) ) { return nullptr; } constexpr char digits[] = "0123456789abcdef"; for( std::size_t i = 0; i < N; ++i ) { first[ i*2 + 0 ] = digits[ v[i] >> 4 ]; first[ i*2 + 1 ] = digits[ v[i] & 0x0F ]; } return first + N * 2; } template BOOST_CXX14_CONSTEXPR void to_chars( digest const& v, char (&w)[ M ] ) noexcept { static_assert( M >= 2 * N + 1, "Output buffer not large enough" ); *to_chars( v, w, w + M ) = 0; } // operator<< template std::ostream& operator<<( std::ostream& os, digest const& v ) { char tmp[ 2*N+1 ]; to_chars( v, tmp ); os << tmp; return os; } // to_string template std::string to_string( digest const& v ) { char tmp[ 2*N+1 ]; to_chars( v, tmp ); return std::string( tmp, 2*N ); } } // namespace hash2 } // namespace boost #endif // #ifndef BOOST_HASH2_DIGEST_HPP_INCLUDED