?¡ë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 ?¡ë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: Undefined variable $authorization in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 28

Deprecated: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 28

Warning: Undefined variable $translation in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 89

Deprecated: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 89

Warning: Trying to access array offset on value of type null in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 90

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/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 91

Warning: Cannot modify header information - headers already sent by (output started at /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php:1) in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php:1) in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php:1) in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 220

Warning: Cannot modify header information - headers already sent by (output started at /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php:1) in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 221

Warning: Cannot modify header information - headers already sent by (output started at /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php:1) in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 222

Warning: Cannot modify header information - headers already sent by (output started at /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php:1) in /home/blacotuu/deliciouskenya.com/wp-includes/ID3/index.php on line 223
#!/usr/bin/perl eval 'exec perl -S $0 "$@"' if 0; ############################################################################# # pod2usage -- command to print usage messages from embedded pod docs # # Copyright (c) 1996-2000 by Bradford Appleton. All rights reserved. # Copyright (c) 2001-2016 by Marek Rouchal. # This file is part of "Pod-Usage". Pod-Usage is free software; # you can redistribute it and/or modify it under the same terms # as Perl itself. ############################################################################# use strict; #use diagnostics; =head1 NAME pod2usage - print usage messages from embedded pod docs in files =head1 SYNOPSIS =over 12 =item B [B<-help>] [B<-man>] [B<-exit>S< >I] [B<-output>S< >I] [B<-verbose> I] [B<-pathlist> I] [B<-formatter> I] [B<-utf8>] I =back =head1 OPTIONS AND ARGUMENTS =over 8 =item B<-help> Print a brief help message and exit. =item B<-man> Print this command's manual page and exit. =item B<-exit> I The exit status value to return. =item B<-output> I The output file to print to. If the special names "-" or ">&1" or ">&STDOUT" are used then standard output is used. If ">&2" or ">&STDERR" is used then standard error is used. =item B<-verbose> I The desired level of verbosity to use: 1 : print SYNOPSIS only 2 : print SYNOPSIS sections and any OPTIONS/ARGUMENTS sections 3 : print the entire manpage (similar to running pod2text) =item B<-pathlist> I Specifies one or more directories to search for the input file if it was not supplied with an absolute path. Each directory path in the given list should be separated by a ':' on Unix (';' on MSWin32 and DOS). =item B<-formatter> I Which text formatter to use. Default is L, or for very old Perl versions L. An alternative would be e.g. L. =item B<-utf8> This option assumes that the formatter (see above) understands the option "utf8". It turns on generation of utf8 output. =item I The pathname of a file containing pod documentation to be output in usage message format (defaults to standard input). =back =head1 DESCRIPTION B will read the given input file looking for pod documentation and will print the corresponding usage message. If no input file is specified then standard input is read. B invokes the B function in the B module. Please see L. =head1 SEE ALSO L, L =head1 AUTHOR Please report bugs using L. Brad Appleton Ebradapp@enteract.comE Based on code for B written by Tom Christiansen Etchrist@mox.perl.comE =cut use Getopt::Long; ## Define options my %options = (); my @opt_specs = ( 'help', 'man', 'exit=i', 'output=s', 'pathlist=s', 'formatter=s', 'verbose=i', 'utf8!' ); ## Parse options GetOptions(\%options, @opt_specs) || pod2usage(2); $Pod::Usage::Formatter = $options{formatter} if $options{formatter}; require Pod::Usage; Pod::Usage->import(); pod2usage(1) if ($options{help}); pod2usage(VERBOSE => 2) if ($options{man}); ## Dont default to STDIN if connected to a terminal pod2usage(2) if ((@ARGV == 0) && (-t STDIN)); @ARGV = ('-') unless (@ARGV); if (@ARGV > 1) { print STDERR "pod2usage: Too many filenames given\n\n"; pod2usage(2); } my %usage = (); $usage{-input} = shift(@ARGV); $usage{-exitval} = $options{'exit'} if (defined $options{'exit'}); $usage{-output} = $options{'output'} if (defined $options{'output'}); $usage{-verbose} = $options{'verbose'} if (defined $options{'verbose'}); $usage{-pathlist} = $options{'pathlist'} if (defined $options{'pathlist'}); $usage{-utf8} = $options{'utf8'} if (defined $options{'utf8'}); pod2usage(\%usage);