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_UUID_DETAIL_SHA1_HPP_INCLUDED #define BOOST_UUID_DETAIL_SHA1_HPP_INCLUDED // Copyright 2007 Andy Tompkins. // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // https://www.boost.org/LICENSE_1_0.txt) #include #include #include // for version #include #include #include namespace boost { namespace uuids { namespace detail { BOOST_UUID_STATIC_ASSERT(sizeof(unsigned char)*8 == 8); BOOST_UUID_STATIC_ASSERT(sizeof(unsigned int)*8 == 32); inline unsigned int left_rotate(unsigned int x, std::size_t n) { return (x<> (32-n)); } class sha1 { public: typedef unsigned char digest_type[ 20 ]; public: sha1(); void reset(); void process_byte(unsigned char byte); void process_block(void const* bytes_begin, void const* bytes_end); void process_bytes(void const* buffer, std::size_t byte_count); void get_digest(digest_type& digest); unsigned char get_version() const; private: void process_block(); void process_byte_impl(unsigned char byte); private: unsigned int h_[5]; unsigned char block_[64]; std::size_t block_byte_index_; std::size_t bit_count_low; std::size_t bit_count_high; }; inline sha1::sha1() { reset(); } inline void sha1::reset() { h_[0] = 0x67452301; h_[1] = 0xEFCDAB89; h_[2] = 0x98BADCFE; h_[3] = 0x10325476; h_[4] = 0xC3D2E1F0; block_byte_index_ = 0; bit_count_low = 0; bit_count_high = 0; } inline void sha1::process_byte(unsigned char byte) { process_byte_impl(byte); // size_t max value = 0xFFFFFFFF //if (bit_count_low + 8 >= 0x100000000) { // would overflow //if (bit_count_low >= 0x100000000-8) { if (bit_count_low < 0xFFFFFFF8) { bit_count_low += 8; } else { bit_count_low = 0; ++bit_count_high; } } inline void sha1::process_byte_impl(unsigned char byte) { block_[block_byte_index_++] = byte; if (block_byte_index_ == 64) { block_byte_index_ = 0; process_block(); } } inline void sha1::process_block(void const* bytes_begin, void const* bytes_end) { unsigned char const* begin = static_cast(bytes_begin); unsigned char const* end = static_cast(bytes_end); for(; begin != end; ++begin) { process_byte(*begin); } } inline void sha1::process_bytes(void const* buffer, std::size_t byte_count) { unsigned char const* b = static_cast(buffer); process_block(b, b+byte_count); } inline void sha1::process_block() { unsigned int w[80]; for (std::size_t i=0; i<16; ++i) { w[i] = (block_[i*4 + 0] << 24); w[i] |= (block_[i*4 + 1] << 16); w[i] |= (block_[i*4 + 2] << 8); w[i] |= (block_[i*4 + 3]); } for (std::size_t i=16; i<80; ++i) { w[i] = left_rotate((w[i-3] ^ w[i-8] ^ w[i-14] ^ w[i-16]), 1); } unsigned int a = h_[0]; unsigned int b = h_[1]; unsigned int c = h_[2]; unsigned int d = h_[3]; unsigned int e = h_[4]; for (std::size_t i=0; i<80; ++i) { unsigned int f; unsigned int k; if (i<20) { f = (b & c) | (~b & d); k = 0x5A827999; } else if (i<40) { f = b ^ c ^ d; k = 0x6ED9EBA1; } else if (i<60) { f = (b & c) | (b & d) | (c & d); k = 0x8F1BBCDC; } else { f = b ^ c ^ d; k = 0xCA62C1D6; } unsigned temp = left_rotate(a, 5) + f + e + k + w[i]; e = d; d = c; c = left_rotate(b, 30); b = a; a = temp; } h_[0] += a; h_[1] += b; h_[2] += c; h_[3] += d; h_[4] += e; } inline unsigned char sha1::get_version() const { // RFC 4122 Section 4.1.3 return uuid::version_name_based_sha1; } inline void sha1::get_digest(digest_type& digest) { // append the bit '1' to the message process_byte_impl(0x80); // append k bits '0', where k is the minimum number >= 0 // such that the resulting message length is congruent to 56 (mod 64) // check if there is enough space for padding and bit_count if (block_byte_index_ > 56) { // finish this block while (block_byte_index_ != 0) { process_byte_impl(0); } // one more block while (block_byte_index_ < 56) { process_byte_impl(0); } } else { while (block_byte_index_ < 56) { process_byte_impl(0); } } // append length of message (before pre-processing) // as a 64-bit big-endian integer process_byte_impl( static_cast((bit_count_high>>24) & 0xFF) ); process_byte_impl( static_cast((bit_count_high>>16) & 0xFF) ); process_byte_impl( static_cast((bit_count_high>>8 ) & 0xFF) ); process_byte_impl( static_cast((bit_count_high) & 0xFF) ); process_byte_impl( static_cast((bit_count_low>>24) & 0xFF) ); process_byte_impl( static_cast((bit_count_low>>16) & 0xFF) ); process_byte_impl( static_cast((bit_count_low>>8 ) & 0xFF) ); process_byte_impl( static_cast((bit_count_low) & 0xFF) ); // get final digest detail::store_big_u32( digest + 0, h_[0] ); detail::store_big_u32( digest + 4, h_[1] ); detail::store_big_u32( digest + 8, h_[2] ); detail::store_big_u32( digest + 12, h_[3] ); detail::store_big_u32( digest + 16, h_[4] ); } }}} // namespace boost::uuids::detail #endif // #ifndef BOOST_UUID_DETAIL_SHA1_HPP_INCLUDED