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
# bash completion for GNU make -*- shell-script -*- # Extract the valid target names starting with PREFIX from the output of # `make -npq' # @param mode If this is `-d', the directory names already specified in # PREFIX are omitted in the output # @param prefix Prefix of the target names _comp_cmd_make__extract_targets() { local mode=$1 local -x prefix=$2 # display mode, only output current path component to the next slash local -x prefix_replace=$prefix [[ $mode == -d && $prefix == */* ]] && prefix_replace=${prefix##*/} _comp_awk -f "${BASH_SOURCE[0]%/*}/../helpers/make-extract-targets.awk" } # Truncate the non-unique filepaths in COMPREPLY to only generate unique # directories or files. This function discards the files under subdirectories # unless the path is unique under each subdirectory and instead generate the # subdirectory path. For example, when there are two candidates, "abc/def" and # "abc/xyz", we generate "abc/" instead of generating both candidates directly. # When there is only one candidate "abc/def", we generate the full path # "abc/def". # # @var[in] cur # @var[in] mode # @var[in,out] COMPREPLY _comp_cmd_make__truncate_non_unique_paths() { local prefix=$cur [[ $mode == -d ]] && prefix= if ((${#COMPREPLY[@]} > 0)); then # collect the possible completions including the directory names in # `paths' and count the number of children of each subdirectory in # `nchild'. local -A paths nchild local target for target in "${COMPREPLY[@]}"; do local path=${target%/} while [[ ! ${paths[$path]+set} ]] && paths[$path]=set && [[ $path == "$prefix"*/* ]]; do path=${path%/*} nchild[$path]=$((${nchild[$path]-0} + 1)) done done COMPREPLY=() local nreply=0 for target in "${!paths[@]}"; do # generate only the paths that do not have a unique child and whose # all parent and ancestor directories have a unique child. ((${nchild[$target]-0} == 1)) && continue local path=$target while [[ $path == "$prefix"*/* ]]; do path=${path%/*} ((${nchild[$path]-0} == 1)) || continue 2 done # suffix `/' when the target path is a subdiretory, which has # at least one child. COMPREPLY[nreply++]=$target${nchild[$target]+/} done fi } _comp_cmd_make() { local cur prev words cword was_split comp_args _comp_initialize -s -- "$@" || return local makef makef_dir=("-C" ".") i local noargopts='!(-*|*[foWICmEDVxj]*)' # shellcheck disable=SC2254 case $prev in --file | --makefile | --old-file | --assume-old | --what-if | --new-file | \ --assume-new | -${noargopts}[foW]) _comp_compgen_filedir return ;; --include-dir | --directory | -${noargopts}[ICm]) _comp_compgen_filedir -d return ;; -${noargopts}E) _comp_compgen -- -v return ;; --eval | -${noargopts}[DVx]) return ;; --jobs | -${noargopts}j) local REPLY _comp_get_ncpus _comp_compgen -- -W "{1..$((REPLY * 2))}" return ;; esac [[ $was_split ]] && return if [[ $cur == -* ]]; then _comp_compgen_help || _comp_compgen_usage [[ ${COMPREPLY-} == *= ]] && compopt -o nospace elif [[ $cur == *=* ]]; then prev=${cur%%=*} cur=${cur#*=} local diropt [[ ${prev,,} == *dir?(ectory) ]] && diropt=-d _comp_compgen_filedir $diropt else # before we check for makefiles, see if a path was specified # with -C/--directory for ((i = 1; i < ${#words[@]}; i++)); do if [[ ${words[i]} == @(-${noargopts}C|--directory) ]]; then # Expand tilde expansion local REPLY _comp_dequote "${words[i + 1]-}" && [[ -d ${REPLY-} ]] && makef_dir=(-C "$REPLY") break fi done # before we scan for targets, see if a Makefile name was # specified with -f/--file/--makefile for ((i = 1; i < ${#words[@]}; i++)); do if [[ ${words[i]} == @(-${noargopts}f|--?(make)file) ]]; then # Expand tilde expansion local REPLY _comp_dequote "${words[i + 1]-}" && [[ -f ${REPLY-} ]] && makef=(-f "$REPLY") break fi done # recognise that possible completions are only going to be displayed so # only the base name is shown. # # Note: This is currently turned off because the test suite of # bash-completion conflicts with it; it uses "set show-all-if-ambiguous # on" (causing COMP_TYPE == 37) to retrieve the action completion # results, and also the compact form with only the basenames is not # essentially needed. To re-enable it, please uncomment the following # if-statement. local mode=-- # if ((COMP_TYPE != 9 && COMP_TYPE != 37 && COMP_TYPE != 42)); then # mode=-d # display-only mode # fi _comp_split COMPREPLY "$(LC_ALL=C \ $1 -npq __BASH_MAKE_COMPLETION__=1 \ ${makef+"${makef[@]}"} "${makef_dir[@]}" .DEFAULT 2>/dev/null | _comp_cmd_make__extract_targets "$mode" "$cur")" _comp_cmd_make__truncate_non_unique_paths if [[ $mode != -d ]]; then # Completion will occur if there is only one suggestion # so set options for completion based on the first one [[ ${COMPREPLY-} == */ ]] && compopt -o nospace fi fi } && complete -F _comp_cmd_make make gmake gnumake pmake colormake bmake # ex: filetype=sh