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
// SPDX-License-Identifier: 0BSD /////////////////////////////////////////////////////////////////////////////// // /// \file 11_file_info.c /// \brief Get uncompressed size of .xz file(s) /// /// Usage: ./11_file_info INFILE1.xz [INFILEn.xz]... /// /// Example: ./11_file_info foo.xz // // Author: Lasse Collin // /////////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include static bool print_file_size(lzma_stream *strm, FILE *infile, const char *filename) { // Get the file size. In standard C it can be done by seeking to // the end of the file and then getting the file position. // In POSIX one can use fstat() and then st_size from struct stat. // Also note that fseek() and ftell() use long and thus don't support // large files on 32-bit systems (POSIX versions fseeko() and // ftello() can support large files). if (fseek(infile, 0, SEEK_END)) { fprintf(stderr, "Error seeking the file '%s': %s\n", filename, strerror(errno)); return false; } const long file_size = ftell(infile); // The decoder wants to start from the beginning of the .xz file. rewind(infile); // Initialize the decoder. lzma_index *i; lzma_ret ret = lzma_file_info_decoder(strm, &i, UINT64_MAX, (uint64_t)file_size); switch (ret) { case LZMA_OK: // Initialization succeeded. break; case LZMA_MEM_ERROR: fprintf(stderr, "Out of memory when initializing " "the .xz file info decoder\n"); return false; case LZMA_PROG_ERROR: default: fprintf(stderr, "Unknown error, possibly a bug\n"); return false; } // This example program reuses the same lzma_stream structure // for multiple files, so we need to reset this when starting // a new file. strm->avail_in = 0; // Buffer for input data. uint8_t inbuf[BUFSIZ]; // Pass data to the decoder and seek when needed. while (true) { if (strm->avail_in == 0) { strm->next_in = inbuf; strm->avail_in = fread(inbuf, 1, sizeof(inbuf), infile); if (ferror(infile)) { fprintf(stderr, "Error reading from '%s': %s\n", filename, strerror(errno)); return false; } // We don't need to care about hitting the end of // the file so no need to check for feof(). } ret = lzma_code(strm, LZMA_RUN); switch (ret) { case LZMA_OK: break; case LZMA_SEEK_NEEDED: // The cast is safe because liblzma won't ask us to // seek past the known size of the input file which // did fit into a long. // // NOTE: Remember to change these to off_t if you // switch fseeko() or lseek(). if (fseek(infile, (long)(strm->seek_pos), SEEK_SET)) { fprintf(stderr, "Error seeking the " "file '%s': %s\n", filename, strerror(errno)); return false; } // The old data in the inbuf is useless now. Set // avail_in to zero so that we will read new input // from the new file position on the next iteration // of this loop. strm->avail_in = 0; break; case LZMA_STREAM_END: // File information was successfully decoded. // See for functions that can be // used on it. In this example we just print // the uncompressed size (in bytes) of // the .xz file followed by its file name. printf("%10" PRIu64 " %s\n", lzma_index_uncompressed_size(i), filename); // Free the memory of the lzma_index structure. lzma_index_end(i, NULL); return true; case LZMA_FORMAT_ERROR: // .xz magic bytes weren't found. fprintf(stderr, "The file '%s' is not " "in the .xz format\n", filename); return false; case LZMA_OPTIONS_ERROR: fprintf(stderr, "The file '%s' has .xz headers that " "are not supported by this liblzma " "version\n", filename); return false; case LZMA_DATA_ERROR: fprintf(stderr, "The file '%s' is corrupt\n", filename); return false; case LZMA_MEM_ERROR: fprintf(stderr, "Memory allocation failed when " "decoding the file '%s'\n", filename); return false; // LZMA_MEMLIMIT_ERROR shouldn't happen because we used // UINT64_MAX as the limit. // // LZMA_BUF_ERROR shouldn't happen because we always provide // new input when the input buffer is empty. The decoder // knows the input file size and thus won't try to read past // the end of the file. case LZMA_MEMLIMIT_ERROR: case LZMA_BUF_ERROR: case LZMA_PROG_ERROR: default: fprintf(stderr, "Unknown error, possibly a bug\n"); return false; } } // This line is never reached. } extern int main(int argc, char **argv) { bool success = true; lzma_stream strm = LZMA_STREAM_INIT; for (int i = 1; i < argc; ++i) { FILE *infile = fopen(argv[i], "rb"); if (infile == NULL) { fprintf(stderr, "Cannot open the file '%s': %s\n", argv[i], strerror(errno)); success = false; } success &= print_file_size(&strm, infile, argv[i]); (void)fclose(infile); } lzma_end(&strm); // Close stdout to catch possible write errors that can occur // when pending data is flushed from the stdio buffers. if (fclose(stdout)) { fprintf(stderr, "Write error: %s\n", strerror(errno)); success = false; } return success ? EXIT_SUCCESS : EXIT_FAILURE; }