?¡ëPNG  IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À? ¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
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 /home/user1137782/www/china1.by/classwithtostring.php on line 86

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
#compdef -zcalc-line- # This handles completion of a zcalc command line read via vared. _zcalc_line_escapes() { local -a cmds cmds=( "!:shell escape" "q:quit" "norm:normal output format" "sci:scientific output format" "fix:fixed point output format" "eng:engineering (power of 1000) output format" "raw:raw output format" "local:make variables local" "function:define math function" ) cmds=("\:"${^cmds}) _describe -t command-escapes "command escapes" cmds -Q } _zcalc_line() { local expl if [[ CURRENT -eq 1 && $words[1] != ":"(\\|)"!"* ]]; then local -a alts if [[ $words[1] = (|:*) ]]; then alts=("command-escapes:command escape:_zcalc_line_escapes") fi if [[ $words[1] = (|[^:]*) ]]; then alts+=("math:math formula:_math") fi _alternative $alts return fi case $words[1] in (":"(\\|)"!"*) if [[ $words[1] = ":"(\\|)"!" && CURRENT -gt 1 ]]; then shift words (( CURRENT-- )) else words[1]=${words[1]##:(\\|)\!} compset -P ':(\\|)!' fi _normal ;; (:function) # completing already defined user math functions is in fact exactly # the wrong thing to do since currently zmathfuncdef won't overwrite, # but it may jog the user's memory... if (( CURRENT == 2 )); then _wanted math-functions expl 'math function' \ compadd -- ${${(k)functions:#^zsh_math_func_*}##zsh_math_func_} else _math fi ;; (:local) _parameter ;; (:(fix|sci|eng)) if (( CURRENT == 2 )); then _message "precision" fi ;& (:*) _message "no more arguments" ;; ([^:]*) _math ;; esac } _zcalc_line "$@"