File manager - Edit - /home/newsbmcs.com/public_html/static/img/logo/arcade-two.zip
Back
PK ԝ�Z�o廡 � options.phpnu �[��� <?php if (!has_admin_access()) { exit; } $allow_mobile_version = get_option('arcade-two-mobile-version'); $allow_mobile_version = is_null($allow_mobile_version) ? true : ($allow_mobile_version === 'true'); if (isset($_POST['action'])) { switch ($_POST['action']) { case 'update-icons-data': file_put_contents(ABSPATH . TEMPLATE_PATH . '/includes/category-icons.json', $_POST['data']); show_alert('SAVED!', 'success'); break; case 'update-allow-mobile': $allow_mobile_version = isset($_POST['mobile-version']); update_option('arcade-two-mobile-version', $allow_mobile_version ? 'true' : 'false'); show_alert('SAVED!', 'success'); break; case 'update-background': update_option('arcade-two-background', $_POST['background']); show_alert('SAVED!', 'success'); break; case 'upload-frame': $targetDir = ABSPATH . TEMPLATE_PATH . '/images/frame/'; // Ensure the directory exists if (!file_exists($targetDir)) { mkdir($targetDir, 0777, true); } $file = $_FILES['frame_file']; if ($file['error'] === UPLOAD_ERR_OK) { $fileName = basename($file['name']); $targetFilePath = $targetDir . $fileName; $fileType = strtolower(pathinfo($targetFilePath, PATHINFO_EXTENSION)); $allowedTypes = ['jpg', 'jpeg', 'png', 'svg']; if (in_array($fileType, $allowedTypes)) { if (move_uploaded_file($file['tmp_name'], $targetFilePath)) { update_option('arcade-two-frame-image', TEMPLATE_PATH . '/images/frame/' . $fileName); show_alert('File uploaded successfully!', 'success'); } else { show_alert('Failed to move the file.', 'danger'); } } else { show_alert('Invalid file type. Allowed types: JPG, JPEG, PNG, SVG.', 'danger'); } } else { show_alert('Upload error code: ' . $file['error'], 'danger'); } break; } } $current_frame_image = get_option('arcade-two-frame-image'); ?> <br> <!-- Frame Upload --> <h4>Frame Upload</h4> <div class="mb-3"> <form method="post" enctype="multipart/form-data"> <input type="hidden" name="action" value="upload-frame" /> <div class="form-group"> <label for="frameFile">Upload Frame File:</label> <input type="file" class="form-control" id="frameFile" name="frame_file" accept=".png,.jpg,.jpeg,.svg" required onchange="previewImage(event)"> </div> <div id="preview-container" style="margin-top: 10px;"> <img id="framePreview" src="" alt="Preview" style="display: none; width: 150px; height: 150px; border: 1px solid #ccc;"> </div> <button type="submit" class="btn btn-primary btn-md">Upload</button> </form> </div> <br> <!-- Existing Frame Image --> <!-- <div class="frame-image-container"> <h5>Current Frame Image:</h5> <img src="<?php echo $current_frame_image; ?>" alt="Frame Image" style="width: 150px; height: 150px; border: 1px solid #ccc;"> </div> --> <!-- JavaScript for image preview --> <script> function previewImage(event) { const file = event.target.files[0]; const reader = new FileReader(); reader.onload = function() { const preview = document.getElementById('framePreview'); preview.style.display = 'block'; preview.src = reader.result; }; if (file) { reader.readAsDataURL(file); } } </script> <br> <?php $category_icons = json_decode(file_get_contents(ABSPATH . TEMPLATE_PATH . '/includes/category-icons.json'), true); echo '<h4>'._t('Allow mobile version').'</h4>'; echo '<br>'; echo '<form method="post">'; echo '<input type="hidden" name="action" value="update-allow-mobile"/>'; $checked = ''; if($allow_mobile_version){ $checked = 'checked'; } ?> <div class="form-check"> <input type="checkbox" class="form-check-input" name="mobile-version" id="check1" <?php echo $checked ?>> <label class="form-check-label" for="check1"><?php _e('Allow mobile version') ?></label> </div> <?php echo '<br>'; echo '<button type="submit" class="btn btn-primary btn-md">'._t('SAVE').'</button>'; echo '</form>'; ?> <br> <!-- Background --> <div class="mb-3"> <h4>Background</h4> <form method="post" enctype="multipart/form-data"> <input type="hidden" name="action" value="update-background"> <div class="mb-3"> <select class="form-select" name="background"> <?php $bg_list = array( 'Background 1' => 'background1.png', 'Background 2' => 'background2.png', 'None' => '' ); $selected_bg = get_option('arcade-two-background'); if(is_null($selected_bg)){ $selected_bg = reset($bg_list); } foreach ($bg_list as $key => $value) { $selected = ''; if($selected_bg == $value){ $selected = 'selected'; } echo '<option value="'.$value.'" '.$selected.'>'.$key.'</option>'; } ?> </select> </div> <button id="save-background-conf" class="btn btn-primary btn-md">Save</button> </form> </div> <br> <!-- Category --> <div class="mb-3"> <h4>Category Icons</h4> <form method="post" id="form-icons"> <input type="hidden" name="action" value="update-icons-data" /> <input type="hidden" id="data-target" name="data" value="" /> <div class="row"> <div class="col"> <label>ID:</label> </div> <div class="col"> <label>Category Slug (separated by comma):</label> </div> </div> <?php foreach ($category_icons as $key => $value) { ?> <div class="row"> <img src="<?php echo get_template_path(); ?>/images/icon/<?php echo $key; ?>.svg"> <div class="form-group col"> <input type="text" class="form-control t-key" name="val" value="<?php echo $key ?>" readonly required> </div> <div class="form-group col"> <input type="text" class="form-control t-value" name="val" value="<?php echo implode(',', $value); ?>" required> </div> </div> <?php } ?> </form> <button id="save-icon-conf" class="btn btn-primary btn-md">Save</button> </div> <!-- js --> <script type="text/javascript"> $(document).ready(()=>{ $('#save-icon-conf').click(()=>{ if(true){ let res = '{'; let error; let t1 = $('.t-key').serializeArray(); let t2 = $('.t-value').serializeArray(); let total = t1.length; for(let i=0; i<total; i++){ if(t1[i].value && t2[i].value){ res += '"'+t1[i].value+'"'+': '+JSON.stringify(t2[i].value.split(','))+','; } } if(res.slice(-1) === ','){ res = res.slice(0, -1); } res += '}'; let x = JSON.parse(res); if(res != '{}'){ $('#data-target').val(res); $('form#form-icons').submit(); } } }); }); </script> PK ԝ�Z5{�T�3 �3 functions.phpnu �[��� <?php function list_games($type, $amount, $count = false){ echo '<div class="row gamelist-widget">'; $data = get_game_list($type, $amount, 0, $count); $games = $data['results']; foreach ( $games as $game ) { ?> <div class="col-4 list-grid"> <a href="<?php echo get_permalink('game', $game->slug) ?>"> <div class="list-game"> <div class="list-thumbnail"><img src="<?php echo get_small_thumb($game) ?>" class="small-thumb img-rounded" alt="<?php echo esc_string($game->title) ?>"></div> </div> </a> </div> <?php } echo '</div>'; } function list_games_vertical($type, $amount, $count = false){ echo '<div class="row gamelist-vertical-widget">'; $data = get_game_list($type, $amount, 0, $count); $games = $data['results']; foreach ( $games as $game ) { $_game_title = get_content_title_translation('game', $game->id, $game->title); ?> <div class="list-vertical"> <a href="<?php echo get_permalink('game', $game->slug) ?>"> <div class="col-12 list-game"> <div class="list-thumbnail"><img src="<?php echo get_small_thumb($game) ?>" class="small-thumb img-rounded" alt="<?php echo esc_string($_game_title) ?>"></div> <div class="list-info"> <div class="list-title"><?php echo esc_string($_game_title) ?></div> <div class="list-category"><?php echo str_replace(',', ', ', esc_string($game->category)) ?></div> <div class="list-rating"> <i class="bi bi-star-fill"></i> <?php echo get_rating('5-decimal', $game) ?>/5 </div> </div> </div> </a> </div> <?php } echo '</div>'; } function list_games_by_category($cat, $amount){ echo '<div class="row">'; $data = get_game_list_category($cat, $amount); $games = $data['results']; foreach ( $games as $game ) { ?> <?php include TEMPLATE_PATH . "/includes/grid1.php" ?> <?php } echo '</div>'; } function list_games_by_categories($cat, $amount){ // Deprecated echo '<div class="row">'; $data = get_game_list_categories($cat, $amount); $games = $data['results']; foreach ( $games as $game ) { ?> <?php include TEMPLATE_PATH . "/includes/grid2.php" ?> <?php } echo '</div>'; } function show_user_profile_header(){ global $login_user; if($login_user){ ?> <div class="user-avatar"> <img src="<?php echo get_user_avatar() ?>"> </div> <ul class="user-links hidden"> <li> <strong> <?php echo $login_user->username ?> </strong> <div class="label-xp"><?php echo $login_user->xp ?>xp</div> </li> <hr> <a href="<?php echo get_permalink('user', $login_user->username) ?>"> <li><?php _e('My Profile') ?></li> </a> <a href="<?php echo get_permalink('user', $login_user->username, array('edit' => 'edit')) ?>"> <li><?php _e('Edit Profile') ?></li> </a> <hr> <a href="<?php echo DOMAIN ?>admin.php?action=logout"> <li class="text-danger"><?php _e('Log Out') ?></li> </a> </ul> <?php } } function the_body_background(){ $selected_bg = get_option('arcade-two-background'); if(is_null($selected_bg)){ $selected_bg = 'background1.png'; } if($selected_bg != ''){ // Not "none" $bg_size = ''; if($selected_bg == 'background1.png'){ $bg_size = 'background-size: cover;'; } echo 'style="background: url(\'/content/themes/arcade-two/images/backgrounds/'.$selected_bg.'\'); '.$bg_size.'"'; } } function wgt_list_games_grid($type, $amount){ echo '<div class="row">'; $data = fetch_games_by_type($type, $amount, 0, false); $games = $data['results']; foreach ( $games as $game ) { ?> <div class="col-4 p-0 wgt-list-game-grid list-tile"> <a href="<?php echo get_permalink('game', $game->slug) ?>"> <div class="wgt-list-game"> <div class="wgt-list-thumbnail"><img src="<?php echo get_small_thumb($game) ?>" class="small-thumb" alt="<?php echo esc_string($game->title) ?>"></div> </div> </a> </div> <?php } echo '</div>'; } function wgt_list_games_vertical($type, $amount){ echo '<div class="row">'; $data = fetch_games_by_type($type, $amount, 0, false); $games = $data['results']; foreach ( $games as $game ) { $_game_title = get_content_title_translation('game', $game->id, $game->title); $category = $game->category; $categories = explode(",", $category); foreach ($categories as $key => $cat){ $categories[$key] = _t($cat); } $category = implode(",", $categories); ?> <div class="wgt-list-game-vertical"> <a href="<?php echo get_permalink('game', $game->slug) ?>"> <div class="wgt-list-game"> <div class="col-4 p-0 wgt-list-thumbnail"> <img src="<?php echo get_small_thumb($game) ?>" class="small-thumb" alt="<?php echo esc_string($_game_title) ?>"> </div> <div class="col-8 p-0 wgt-list-content"> <div class="wgt-list-title"><?php echo esc_string($_game_title); ?></div> <div class="wgt-list-category"><?php echo _t(esc_string($category)); ?></div> </div> </div> </a> </div> <?php } echo '</div>'; } register_sidebar(array( 'name' => 'Head', 'id' => 'head', 'description' => 'HTML element before </head>', )); register_sidebar(array( 'name' => 'Header', 'id' => 'header', 'description' => 'Header placement for Header widget', )); register_sidebar(array( 'name' => 'Popup-Ads', 'id' => 'pop-ads', 'description' => 'popup ads', )); register_sidebar(array( 'name' => 'Top Content', 'id' => 'top-content', 'description' => 'Above main content element. Recommended for Ad banner placement.', )); register_sidebar(array( 'name' => 'Center Ads', 'id' => 'center-ads', 'description' => 'Display Ads at top.', )); register_sidebar(array( 'name' => 'Bottom Content', 'id' => 'bottom-content', 'description' => 'Under main content element. Recommended for Ad banner placement.', )); register_sidebar(array( 'name' => 'Sidebar 1', 'id' => 'sidebar-1', 'description' => 'Right sidebar', )); register_sidebar(array( 'name' => 'Footer 1', 'id' => 'footer-1', 'description' => 'Footer 1', )); // register_sidebar(array( // 'name' => 'Footer 2', // 'id' => 'footer-2', // 'description' => 'Footer 2', // )); // register_sidebar(array( // 'name' => 'Footer 3', // 'id' => 'footer-3', // 'description' => 'Footer 3', // )); // register_sidebar(array( // 'name' => 'Footer 4', // 'id' => 'footer-4', // 'description' => 'Footer 4', // )); register_sidebar(array( 'name' => 'Homepage Bottom', 'id' => 'homepage-bottom', 'description' => 'Bottom content on homepage. Can be used to show site description or explaining about your site.', )); register_sidebar(array( 'name' => 'Footer Copyright', 'id' => 'footer-copyright', 'description' => 'Copyright section.', )); class Widget_Game_List extends Widget { function __construct() { $this->name = 'Game List'; $this->id_base = 'game-list'; $this->description = 'Show game list ( Grid ). Is recommended to put this on sidebar.'; } public function widget( $instance, $args = array() ){ $label = isset($instance['label']) ? $instance['label'] : ''; $class = isset($instance['class']) ? $instance['class'] : 'widget'; $type = isset($instance['type']) ? $instance['type'] : 'new'; $amount = isset($instance['amount']) ? $instance['amount'] : 9; $layout = isset($instance['layout']) ? $instance['layout'] : 'grid'; echo '<div class="'.$class.'">'; if($label != ''){ echo '<h4 class="widget-title">'._t($label).'</h4>'; } if($layout == 'grid'){ wgt_list_games_grid($type, (int)$amount); } else if($layout == 'vertical'){ wgt_list_games_vertical($type, (int)$amount); } //list_games($type, (int)$amount); echo '</div>'; } public function form( $instance = array() ){ if(!isset( $instance['label'] )){ $instance['label'] = ''; } if(!isset( $instance['type'] )){ $instance['type'] = 'new'; } if(!isset( $instance['amount'] )){ $instance['amount'] = 9; } if(!isset( $instance['class'] )){ $instance['class'] = 'widget'; } if(!isset( $instance['layout'] )){ $instance['layout'] = 'grid'; // vertical, grid } ?> <div class="form-group"> <label><?php _e('Widget label/title (optional)') ?>:</label> <input type="text" class="form-control" name="label" placeholder="NEW GAMES" value="<?php echo $instance['label'] ?>"> </div> <div class="form-group"> <label><?php _e('Sort game list by') ?>:</label> <select class="form-control" name="type"> <?php $opts = array( 'new' => 'New', 'popular' => 'Popular', 'random' => 'Random', 'likes' => 'Likes', 'trending' => 'Trending' ); foreach ($opts as $key => $value) { $selected = ''; if($key == $instance['type']){ $selected = 'selected'; } echo '<option value="'.$key.'" '.$selected.'>'.$value.'</option>'; } ?> </select> </div> <div class="form-group"> <label><?php _e('Amount') ?>:</label> <input type="number" class="form-control" name="amount" placeholder="9" min="1" value="<?php echo $instance['amount'] ?>"> </div> <div class="mb-3"> <label class="form-label"><?php _e('Layout') ?>:</label> <select name="layout" class="form-control"> <option value="vertical" <?php echo $instance['layout'] == 'vertical' ? 'selected' : '' ?>>Vertical</option> <option value="grid" <?php echo $instance['layout'] == 'grid' ? 'selected' : '' ?>>Grid</option> </select> </div> <div class="form-group"> <label><?php _e('Div class (Optional)') ?>:</label> <input type="text" class="form-control" name="class" placeholder="widget" value="<?php echo $instance['class'] ?>"> </div> <?php } } register_widget( 'Widget_Game_List' ); class Widget_Header extends Widget { function __construct() { $this->name = 'Header'; $this->id_base = 'header'; $this->description = 'Put this widget on Header placement'; } public function widget( $instance, $args = array() ){ $_style = ''; if(isset($instance['bg-img']) && $instance['bg-img'] != ''){ $_style = 'style="background: url('.$instance['bg-img'].'); background-position: center;"'; } //Localization if(_t('_widget_header_title') !== '_widget_header_title'){ // Have a translation $instance['title'] = _t('_widget_header_title'); } if(_t('_widget_header_description') !== '_widget_header_description'){ // Have a translation $instance['content'] = _t('_widget_header_description'); } ?> <section class="section-header"> <div class="container"> <div class="header-area"> <div class="masthead-title"> <h1><?php echo htmlspecialchars($instance['title']) ?></h1> </div> <div class="masthead-description"> <h3><?php echo $instance['content'] ?></h3> </div> </div> </div> </section> <?php } public function form( $instance = array() ){ if(!isset( $instance['title'] )){ $instance['title'] = ''; } if(!isset( $instance['content'] )){ $instance['content'] = ''; } ?> <div class="form-group"> <label>Header Title:</label> <input type="text" class="form-control" name="title" value="<?php echo $instance['title'] ?>"> </div> <div class="form-group"> <label>Description (HTML Allowed):</label> <textarea class="form-control" rows="5" name="content"><?php echo $instance['content'] ?></textarea> </div> <?php } } register_widget( 'Widget_Header' ); class Widget_Category extends Widget { function __construct() { $this->name = 'Categories'; $this->id_base = 'categories'; $this->description = 'Show all categories'; } public function widget( $instance, $args = array() ){ $label = isset($instance['label']) ? $instance['label'] : ''; ?> <div class="widget"> <?php if($label != ''){ echo '<h4 class="widget-title">'.$label.'</h4>'; } ?> <div class="category-wrapper"> <?php global $category_icons; $categories = get_all_categories(); echo '<ul class="category-item">'; foreach ($categories as $cat) { $icon = get_category_icon($cat->slug, $category_icons); $count = Category::getCategoryCount($cat->id); if($count > 0){ echo '<a href="'. get_permalink('category', $cat->slug) .'"><li><span class="icon-category"><img src="'.get_template_path().'/images/icon/'.$icon.'.svg" alt="<?php echo $category_title ?>" width="40" height="40"></span>'. esc_string($cat->name) .'</li></a>'; } } echo '</ul>'; ?> </div> </div> <div class="clearfix"></div> <?php } public function form( $instance = array() ){ if(!isset( $instance['label'] )){ $instance['label'] = ''; } ?> <div class="form-group"> <label><?php _e('Widget label/title (optional)') ?>:</label> <input type="text" class="form-control" name="label" placeholder="Categories" value="<?php echo $instance['label'] ?>"> </div> <?php } } register_widget( 'Widget_Category' ); if(file_exists(ABSPATH . TEMPLATE_PATH . '/includes/custom.php')){ include(ABSPATH . TEMPLATE_PATH . '/includes/custom.php'); } ?>PK ԝ�Z;Ҕ�g g home.phpnu �[��� <?php // Include header include TEMPLATE_PATH . "/includes/header.php"; ?> <div id="popup-blur"> <?php widget_aside('header'); ?> <div class="container"> <!-- Category list --> <div class="category-list-global"> <?php $categories = fetch_all_categories(); echo '<ul class="category-list-wrapper">'; foreach ($categories as $cat) { $icon = get_category_icon($cat->slug, $category_icons); echo '<a href="' . get_permalink('category', $cat->slug) . '">'; echo '<li class="cat-item"> <span class="icon-category"> <img src="' . get_template_path() . '/images/icon/' . $icon . '.svg" alt="' . _t($cat->name) . '" width="40" height="40"> </span> <div class="cat-info text-ellipsis"> <span class="cat-name">' . _t(esc_string($cat->name)) . '</span> <div class="cat-game-amount">' . _t('%a games', Category::getCategoryCount($cat->id)) . '</div> </div> </li>'; echo '</a>'; } echo '</ul>'; ?> </div> <!-- Trending section --> <?php $games = fetch_games_by_type('trending', 25, 0, false)['results']; if (count($games) > 3) { ?> <h3 class="section-title"><?php _e('Trending'); ?></h3> <div class="row-list-1 grid-container"> <div class="list-1-wrapper"> <?php foreach ($games as $game) { ?> <?php include TEMPLATE_PATH . "/includes/list1.php"; ?> <?php } ?> </div> <button type="button" class="b-left btn btn-default btn-circle btn-lg" id="t-prev"> <i class="bi bi-caret-left-fill"></i> </button> <button type="button" class="b-right btn btn-default btn-circle btn-lg" id="t-next"> <i class="bi bi-caret-right-fill"></i> </button> </div> <?php } ?> <!-- New games section --> <h3 class="section-title"><?php _e('New games'); ?></h3> <div class="row grid-container" id="new-games-section"> <?php $games = fetch_games_by_type('new', 16, 0, false)['results']; foreach ($games as $game) { ?> <?php include TEMPLATE_PATH . "/includes/grid1.php"; ?> <?php } ?> </div> <!-- Popular games section --> <h3 class="section-title"><?php _e('Popular games'); ?></h3> <div class="row grid-container"> <?php $games = fetch_games_by_type('popular', 12, 0, false)['results']; foreach ($games as $game) { ?> <?php include TEMPLATE_PATH . "/includes/grid3.php"; ?> <?php } ?> </div> <?php widget_aside('center-ads'); ?> <!-- Random games section --> <h3 class="section-title"><?php _e('You may like'); ?></h3> <div class="row grid-container"> <?php $games = fetch_games_by_type('random', 16, 0, false)['results']; foreach ($games as $game) { ?> <?php include TEMPLATE_PATH . "/includes/grid1.php"; ?> <?php } ?> </div> </div> </div> <!-- Modal Popup --> <div id="popup-container" style="height: auto !important; display: flex;"> <div id="popup-content"> <?php widget_aside('pop-ads'); ?> <!-- Close Button --> <button id="close-popup">X</button> <div id="ads-txt-pop-up" style="position:absolute;top:3%;left:90%;width:35px;border:none;border-radius:0;background:#f4433600;color:#fff;white-space:nowrap;">Ad</div> </div> </div> <?php // Include footer include TEMPLATE_PATH . "/includes/footer.php"; ?> <script> $(document).ready(function () { const $popupContainer = $('#popup-container'); const $closePopupButton = $('#close-popup'); const $body = $('body'); // Show popup setTimeout(() => { $popupContainer.css('display', 'flex'); $body.addClass('popup-active'); }, 500); // clos popup $closePopupButton.on('click', function () { $popupContainer.css('display', 'none'); $body.removeClass('popup-active'); }); }); </script>PK ԝ�Z�_#K K search.phpnu �[��� <?php include TEMPLATE_PATH . "/includes/header.php" ?> <div class="container"> <div class="game-container"> <?php widget_aside('top-content') ?> <div class="content-wrapper"> <h3 class="item-title"><i class="bi bi-search b-icon"></i><?php _e('%a Games', htmlspecialchars($archive_title)) ?></h3> <p><?php _e('%a games in total.', esc_int($total_games)) ?> <?php _e('Page %a of %b', esc_int($cur_page), esc_int($total_page)) ?></p> <div class="game-container"> <div class="row"> <?php foreach ( $games as $game ) { ?> <?php include TEMPLATE_PATH . "/includes/grid3.php" ?> <?php } ?> </div> </div> <div class="pagination-wrapper"> <?php widget_aside('center-ads'); ?> <nav aria-label="Page navigation example"> <?php $cur_page = 1; if(isset($url_params[2])){ $cur_page = (int)$url_params[2]; } render_pagination($total_page, $cur_page, 6, 'search', $_GET['slug']); ?> </nav> </div> </div> <?php widget_aside('bottom-content') ?> </div> </div> <?php include TEMPLATE_PATH . "/includes/footer.php" ?>PK ԝ�Z��Y� 404.phpnu �[��� <?php include TEMPLATE_PATH . "/includes/header.php" ?> <div class="container"> <div class="game-container text-center"> <img src="<?php echo DOMAIN . TEMPLATE_PATH . "/images/404.png" ?>"> </div> </div> <?php include TEMPLATE_PATH . "/includes/footer.php" ?>PK ԝ�Z��[� � tag.phpnu �[��� <?php include TEMPLATE_PATH . "/includes/header.php" ?> <div class="container"> <div class="game-container"> <?php widget_aside('top-content') ?> <div class="content-wrapper"> <h3 class="item-title"> <?php $icon = get_category_icon('other', $category_icons); ?> <span class="g-icon"><img src="<?php echo get_template_path(); ?>/images/icon/<?php echo $icon; ?>.svg" alt=""></span> <?php _e('%a Games', esc_string($tag_name)) ?> </h3> <p><?php _e('%a games in total.', esc_int($total_games)) ?> <?php _e('Page %a of %b', esc_int($cur_page), esc_int($total_page)) ?></p> <div class="game-container"> <div class="row"> <?php foreach ( $games as $game ) { ?> <?php include TEMPLATE_PATH . "/includes/grid3.php" ?> <?php } ?> </div> </div> <div class="pagination-wrapper"> <nav aria-label="Page navigation"> <?php $cur_page = 1; if(isset($_GET['page'])){ $cur_page = esc_string($_GET['page']); } render_pagination($total_page, $cur_page, 8, 'tag', $_GET['slug']); ?> </nav> </div> </div> <?php widget_aside('bottom-content') ?> </div> </div> <?php include TEMPLATE_PATH . "/includes/footer.php" ?>PK ԝ�Z�'!�q q category.phpnu �[��� <?php /** * Category Template * * This template is used to display the category page. */ include TEMPLATE_PATH . "/includes/header.php"; ?> <div class="container"> <div class="game-container"> <?php widget_aside('header') ?> <div class="content-wrapper"> <h3 class="item-title"> <?php $icon = get_category_icon($active_category, $category_icons); ?> <span class="g-icon"><img src="<?php echo get_template_path(); ?>/images/icon/<?php echo $icon; ?>.svg" alt=""></span> <?php _e('%a Games', esc_string($archive_title)); ?> </h3> <div class="game-container"> <div class="row"> <?php foreach ($games as $game) { include TEMPLATE_PATH . "/includes/grid1.php"; // echo '<div class="game-unique-details">'; // echo '<p>Game ID: ' . $game->id . '</p>'; // echo '</div>'; } ?> </div> </div> <p><?php _e('%a games in total.', esc_int($total_games)); ?> <?php _e('Page %a of %b', esc_int($cur_page), esc_int($total_page)); ?></p> <?php if ($category->description != '') { echo '<p class="category-description">'; echo nl2br($category->description) . "</p>"; } ?> <div class="pagination-wrapper"> <nav aria-label="Page navigation"> <?php $cur_page = 1; if (isset($_GET['page'])) { $cur_page = esc_int($_GET['page']); } render_pagination($total_page, $cur_page, 8, 'category', $_GET['slug']); ?> </nav> </div> </div> <?php widget_aside('center-ads') ?> </div> </div> <?php include TEMPLATE_PATH . "/includes/footer.php"; ?>PK ԝ�Z�y��� � includes/grid3.phpnu �[��� <?php $_game_title = get_content_title_translation('game', $game->id, $game->title); ?> <div class="col-lg-2 col-md-4 col-6 grid-3"> <a href="<?php echo get_permalink('game', $game->slug) ?>"> <div class="game-item"> <div class="list-game"> <div class="list-thumbnail"><img src="<?php echo get_template_path(); ?>/images/thumb-placeholder2.png" data-src="<?php echo get_small_thumb($game) ?>" class="small-thumb lazyload" alt="<?php echo $_game_title ?>"></div> <div class="list-info"> <div class="list-title"><?php echo $_game_title ?></div> <span><?php _e('%a plays', $game->views) ?></span> </div> </div> </div> </a> </div>PK ԝ�Z\5{y y includes/custom.phpnu �[��� <?php /* Used for custom Widgets and custom Widget placements This file will not be overwritten by the updater */ ?>PK ԝ�ZaсZb b includes/grid1.phpnu �[��� <?php $_game_title = get_content_title_translation('game', $game->id, $game->title); ?> <div class="col-md-2 col-sm-3 col-4 grid-1"> <a href="<?php echo get_permalink('game', $game->slug) ?>"> <div class="game-item"> <div class="list-game"> <div class="list-thumbnail"><img src="<?php echo get_template_path(); ?>/images/thumb-placeholder1.png" data-src="<?php echo get_small_thumb($game) ?>" class="small-thumb img-rounded lazyload" alt="<?php echo $_game_title ?>"></div> <div class="list-info"> <div class="list-title"><?php echo $_game_title ?></div> </div> </div> </div> </a> </div>PK ԝ�Z��9� � includes/header.phpnu �[��� <?php $category_icons = json_decode( file_get_contents(ABSPATH . TEMPLATE_PATH . '/includes/category-icons.json'), true); $active_category = ''; if(isset($category)){ $active_category = $url_params[1]; } ?> <!DOCTYPE html> <html <?php the_html_attrs() ?>> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <title><?php echo apply_filters('site_title', get_page_title()) ?></title> <?php the_canonical_link() ?> <meta name="description" content="<?php echo apply_filters('meta_description',substr($meta_description, 0, 360)) ?>"> <?php the_head('top') ?> <?php if(is_game()){ //Game page ?> <meta property="og:type" content="game"> <meta property="og:url" content="<?php echo get_canonical_url() ?>"> <meta property="og:title" content="<?php echo apply_filters('site_title', get_page_title()) ?>"> <meta property="og:description" content="<?php echo substr(esc_string($meta_description), 0, 200) ?>"> <meta property="og:image" content="<?php echo (substr($game->thumb_1, 0, 1) == '/') ? home_url() . $game->thumb_1 : $game->thumb_1 ?>"> <?php } ?> <?php load_plugin_headers() ?> <link rel="stylesheet" type="text/css" href="<?php echo DOMAIN . TEMPLATE_PATH; ?>/css/bootstrap.min.css" /> <link rel="stylesheet" type="text/css" href="<?php echo DOMAIN . TEMPLATE_PATH; ?>/css/user.css" /> <link rel="stylesheet" type="text/css" href="<?php echo DOMAIN . TEMPLATE_PATH; ?>/css/style.css" /> <link rel="stylesheet" type="text/css" href="<?php echo DOMAIN . TEMPLATE_PATH; ?>/css/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css" /> <!-- Font Awesome icons (free version)--> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> <!-- Google fonts--> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet"> <?php the_head('bottom') ?> <?php widget_aside('head') ?> </head> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <body id="page-top" <?php the_body_background() ?>> <div class="andriod-body"> <!-- Navigation--> <nav class="navbar navbar-expand-lg navbar-dark top-nav" id="mainNav"> <div class="container"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#nav-menu" aria-controls="nav-menu" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <a class="navbar-brand js-scroll-trigger" href="<?php echo DOMAIN ?>"><img src="<?php echo DOMAIN .SITE_LOGO ?>" class="site-logo" alt="site-logo"></a> <div class="d-lg-none"> <?php if(is_null($login_user)){ if(get_setting_value('show_login')){ echo('<a class="nav-link" href="'.get_permalink('login').'"><div class="btn btn-circle b-white b-login"><i class="bi bi-person"></i></div></a>'); } } ?> <?php show_user_profile_header() ?> </div> <div class="navbar-collapse collapse" id="nav-menu"> <ul class="navbar-nav"> <?php render_nav_menu('top_nav', array( 'no_ul' => true, 'li_class' => 'nav-item', 'a_class' => 'nav-link', )); ?> </ul> <form class="form-inline my-2 my-lg-0 search-bar" action="/index.php"> <div class="input-group"> <input type="hidden" name="viewpage" value="search" /> <i class="bi bi-search"></i> <input type="text" class="form-control search" placeholder="<?php _e('Search game') ?>" name="slug" minlength="2" required /> </div> </form> </div> <div class="d-none d-lg-block"> <?php if(is_null($login_user)){ if(get_setting_value('show_login')){ echo('<a class="nav-link" href="'.get_permalink('login').'"><div class="btn btn-circle b-white b-login"><i class="bi bi-person"></i></div></a>'); } } ?> <?php //show_user_profile_header() ?> </div> </div> </nav>PK ԝ�Z�]6A includes/category-icons.jsonnu �[��� {"2-player": ["2-player"],"3d": ["3d"],"actions": ["action","actions"],"adventure": ["adventure","adventures"],"arcade": ["arcade"],"bejeweled": ["bejeweled"],"board": ["board"],"bubble-shooter": ["bubble-shooter"],"cards": ["card","cards"],"casual": ["casual","hypercasual"],"classic": ["classic","classics"],"clicker": ["clicker","clickers"],"cooking": ["cooking"],"girls": ["girl","girls"],"other": ["other"],"match-3": ["match-3"],"multiplayer": ["multiplayer"],"puzzle": ["puzzle","puzzles"],"quiz": ["quiz"],"racing": ["racing"],"rpg": ["rpg"],"simulation": ["simulation"],"sport": ["sport","sports"],"trivia": ["trivia"],"strategy": ["strategy"],"tower-defense": ["tower-defense"],"shooter": ["shooter"],"fps": ["fps"],"horror": ["horror"],"fighting": ["fighting"],"farming": ["farming"],"roguelike": ["roguelike"],"platformer": ["platformer"],"car": ["car"],"tycoon": ["tycoon"],"kids": ["kids"],"education": ["education"],"vr": ["vr","virtual-reality"],"music": ["music","rythm"],"battle-royale": ["battle-royale"],"survival": ["survival"]}PK ԝ�Z<͖�� � includes/grid2.phpnu �[��� <?php $_game_title = get_content_title_translation('game', $game->id, $game->title); ?> <div class="col-lg-4 col-md-6 grid-2"> <a href="<?php echo get_permalink('game', $game->slug) ?>"> <div class="game-item"> <div class="list-game"> <div class="list-thumbnail"><img src="<?php echo get_template_path(); ?>/images/thumb-placeholder3.png" data-src="<?php echo get_small_thumb($game) ?>" class="small-thumb img-rounded lazyload" alt="<?php echo $_game_title ?>"></div> <div class="list-info"> <div class="list-title"><?php echo $_game_title ?></div> <div class="list-category"> <?php $_arr_category = commas_to_array($game->category); $_categories = []; foreach ($_arr_category as $_category) { $_categories[] = _t($_category); } echo implode(', ', $_categories); ?> </div> <div class="list-rating"> <i class="bi bi-star-fill"></i> <?php echo get_rating('5-decimal', $game) ?>/5 </div> </div> </div> </div> </a> </div>PK ԝ�ZLN�� � includes/list1.phpnu �[��� <?php $_game_title = get_content_title_translation('game', $game->id, $game->title); ?> <div class="game-item list-1"> <a href="<?php echo get_permalink('game', $game->slug) ?>"> <div class="list-game"> <div class="list-thumbnail"><img src="<?php echo get_template_path(); ?>/images/thumb-placeholder3.png" data-src="<?php echo get_small_thumb($game) ?>" class="small-thumb img-rounded lazyload" alt="<?php echo $_game_title ?>"></div> </div> </a> </div>PK ԝ�Z�h�"� � includes/footer.phpnu �[��� <div class="container"> <div class="border-line mt-4"></div> </div> <footer class="footer"> <!-- <div class="container"> <div class="row"> <div class="col-lg-12 mb-5 mb-lg-0"> <ul class="footer-social"> <li><a href="https://www.instagram.com/atm_games_05/" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a></li> <li><a href="https://www.facebook.com/profile.php?id=61555114536404" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a></li> <li><a href="https://www.linkedin.com/in/atm-games-5840162a8/" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li> <li><a href="https://twitter.com/atmgame52" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a></li> <li><a href="https://www.youtube.com/channel/UCD8WXRlkKi50NO_bpB_CtJg" target="_blank"><i class="fa fa-youtube-play" aria-hidden="true"></i></a></li> </ul> </div> </div> </div> --> </footer> <div class="footer-copyright py-4"> <div class="container"> © <?php echo date('Y'); ?> by <?php echo SITE_TITLE; ?>. All Rights Reserved. </div> <!-- <div class="container"> <?php if(isset($stored_widgets['footer-copyright'])){ widget_aside('footer-copyright'); } else { echo SITE_TITLE . ' © '.date('Y').'. All rights reserved.'; } ?> <span class="dsb-panel"> <?php if(is_login() && USER_ADMIN ){ echo '<a href="'.DOMAIN.'admin.php">Admin Dashboard</a>'; } else { echo 'V-'.VERSION; } ?> </span> </div> --> </div> <script type="text/javascript" src="<?php echo DOMAIN . TEMPLATE_PATH ?>/js/jquery-3.6.2.min.js"></script> <script type="text/javascript" src="<?php echo DOMAIN . TEMPLATE_PATH ?>/js/lazysizes.min.js"></script> <script type="text/javascript" src="<?php echo DOMAIN . TEMPLATE_PATH ?>/js/popper.min.js"></script> <script type="text/javascript" src="<?php echo DOMAIN . TEMPLATE_PATH ?>/js/bootstrap.min.js"></script> <script type="text/javascript" src="<?php echo DOMAIN ?>js/comment-system.js"></script> <script type="text/javascript" src="<?php echo DOMAIN . TEMPLATE_PATH ?>/js/script.js"></script> <script type="text/javascript" src="<?php echo DOMAIN . TEMPLATE_PATH ?>/js/custom.js"></script> <script type="text/javascript" src="<?php echo DOMAIN ?>js/stats.js"></script> <?php run_hook('footer') ?> <?php load_plugin_footers() ?> </div> </body> </html>PK ԝ�ZE��A A archive.phpnu �[��� <?php // Deprecated since v1.0.5 , replaced with category.php ?>PK ԝ�Z�E]�� � post-list.phpnu �[��� <?php include TEMPLATE_PATH . "/includes/header.php" ?> <?php widget_aside('header'); ?> <!-------------- OLD -------------> <!-- <div class="container"> <div class="post-container"> <div class="content-wrapper"> <h3 class="page-title"><i class="bi bi-clock-history b-icon"></i><?php _e('Latest posts') ?></h3> <section class="blog-list"> <?php $cur_page = 1; if(isset($url_params[1])){ $_GET['page'] = $url_params[1]; if(!is_numeric($_GET['page'])){ $_GET['page'] = 1; } } if(isset($_GET['page'])){ $cur_page = htmlspecialchars($_GET['page']); if(!is_numeric($cur_page)){ $cur_page = 1; } } $items_per_page = get_setting_value('post_results_per_page'); $data = Post::getList($items_per_page, 'created_date DESC', $items_per_page*($cur_page-1)); $total_posts = $data['totalRows']; $total_page = $data['totalPages']; $posts = $data['results']; foreach($posts as $post){ ?> <div class="post-item"> <div class="post-media"> <div class="post-thumb"> <img src="<?php echo ($post->thumbnail_url) ? $post->thumbnail_url : DOMAIN . 'images/post-no-thumb.png' ?>" alt="<?php echo $post->title ?>"> </div> <div class="post-body"> <h3 class="post-title"> <a href="<?php echo get_permalink('post', $post->slug) ?>"><?php echo $post->title ?></a> </h3> <div class="post-meta"> <span class="date">Published on <?php echo gmdate("j M Y", $post->created_date) ?></span> </div> <div class="post-intro"> <?php echo mb_strimwidth(strip_tags($post->content), 0, 180, "...") ?> </div> <div class="mt-3"></div> <a href="<?php echo get_permalink('post', $post->slug) ?>"> <div class="btn btn-capsule"><?php _e('Read More') ?></div> </a> </div> </div> </div> <?php } ?> </section> <div class="pagination-wrapper"> <nav aria-label="Page navigation example"> <?php $cur_page = 1; if(isset($_GET['page'])){ $cur_page = esc_string($_GET['page']); } render_pagination($total_page, $cur_page, 8, 'post', ''); ?> </nav> </div> </div> </div> </div> --> <!-- ------------NEW------------------------> <div class="container ltst-blg-main"> <!-- Latest Post Section banner --> <div class="ltst-blg-banner"> <?php if (!empty($posts)): ?> <?php $latestPost = array_shift($posts); ?> <div class="banner-content"> <img src="<?php echo $latestPost->thumbnail_url ?: DOMAIN . 'images/post-no-thumb.png'; ?>" alt="<?php echo $latestPost->title; ?>"> <div class="banner-overlay"> <h2><?php echo $latestPost->title; ?></h2> <p><?php echo mb_strimwidth(strip_tags($latestPost->content), 0, 250, "..."); ?></p> <a href="<?php echo get_permalink('post', $latestPost->slug); ?>" class="btn btn-capsule">Read More</a> </div> </div> <?php endif; ?> </div> <?php widget_aside('center-ads'); ?> <!-- Top Lists Section --> <div class="ltst-blg-section"> <h3 class="section-title">Top Lists</h3> <div class="ltst-blg-grid-container"> <?php foreach ($posts as $post): ?> <div class="ltst-blg-grid"> <!-- Link wrapped around the entire content --> <a href="<?php echo get_permalink('post', $post->slug); ?>" class="ltst-blg-grid-link"> <div class="ltst-blg-grid-imgwrapp"> <img src="<?php echo $post->thumbnail_url ?: DOMAIN . 'images/post-no-thumb.png'; ?>" alt="<?php echo $post->title; ?>"> </div> <div class="ltst-blg-grid-btn-title"> <h4><?php echo $post->title; ?></h4> <span class="btn btn-capsule">Read More</span> </div> </a> </div> <?php endforeach; ?> </div> </div> <!-- Games Section --> <div class="ltst-blg-section"> <h3 class="section-title">Games</h3> <div class="ltst-blg-grid-container"> <?php shuffle($posts); $randomPosts = array_slice($posts, 0, 8); foreach ($randomPosts as $post): ?> <div class="ltst-blg-games"> <!-- Wrap the entire game post in an anchor tag --> <a href="<?php echo get_permalink('post', $post->slug); ?>" class="game-post-link"> <div class="game-post"> <img src="<?php echo $post->thumbnail_url ?: DOMAIN . 'images/post-no-thumb.png'; ?>" alt="<?php echo $post->title; ?>"> <div class="game-overlay"> <h4><?php echo $post->title; ?></h4> <span class="date"><?php echo gmdate("j M Y", $post->created_date); ?></span> </div> </div> </a> </div> <?php endforeach; ?> </div> </div> <!-- Pagination --> <div class="pagination-wrapper"> <nav> <?php render_pagination($total_page, $cur_page, 8, 'post', ''); ?> </nav> </div> <!-- Related Section --> <div class="ltst-blg-section related-post-sectn"> <h3 class="section-title related-post">Related Post</h3> <div class="ltst-blg-grid-container"> <?php shuffle($posts); $randomPosts = array_slice($posts, 0, 4); foreach ($randomPosts as $post): ?> <div class="ltst-blg-games"> <div class="game-post"> <img src="<?php echo $post->thumbnail_url ?: DOMAIN . 'images/post-no-thumb.png'; ?>" alt="<?php echo $post->title; ?>"> <div class="game-overlay"> <h4><?php echo $post->title; ?></h4> <span class="date"><?php echo gmdate("j M Y", $post->created_date); ?></span> </div> </div> </div> <?php endforeach; ?> </div> </div> </div> <?php widget_aside('bottom-content'); ?> <?php include TEMPLATE_PATH . "/includes/footer.php" ?> PK ԝ�ZyL��T �T thumbnail.pngnu �[��� �PNG IHDR , � �Fl� gAMA ���a PLTE�y�o\vp\x> IA MW>a~k�B N�z����M/X8!B= G~k�m\t���{k�[>eE0NL?SM?T���A0H������k\qp\w���q\y1!9������5!=?0F���K/U^Me2!:H/Q�z�F0OA0I�z�_Mf�������z�������G/P���4!<s\{���������y�������N/Y�y�U>^|k�n\uK/V���wk}7!@5!>3!;Q?Y���C0LC0KH/R���N?UQ?Xyk~���eMm���Y>c`MhcMkbMk���{k�}k����6!?��خ��xk~�����۾�����< F���S>\���I/S��˙��:!D���aMi���u[~���m\sO/[\>f���bMj�����ϖ����y��j����E0MdMl���C O��袗���·z�������R>Z7!A���zk�hMr�����_Mg�������� ''0!)2>%.$,)3 (.95B&(1/;1<+54@"*#+,7)25A&/'1%-3?2=,6/:-8���0<*46CJ�w4 IDATx�Žc#i���N��N�?y��=I��]�_�Vk��x�3=��~�����HI �K��L��{�E|_&h�HV�0��o��"�E�h�O���v���|_��y{R��v��u۶�E{V��mS/���ݦ��؞nO�v�n���l�ݮO�<?]o�<��:M��z��N���|:���z|<}y�>^�����)/�WӋ�z��Lq:�3V�8�N�����4M����j;�giz��L�G)�<��&�,�u�:*��H�OMZI��I��(��)ڶ�_[�M�Vm�4U�5M7<��Kq�n!�4��_#�s�*��pu�+\�y��n�t��x�T�qu�G���,�+�)1\�)�}S�pm��*N�2I��"9�)Ik�_&�8IJ����rQ�<�M ��M�̻���*������3~�,���S|� �D-JW�f����x!&�� k���ָO� |.z�O��:��k�G:揂�g��<H'��p5�eۣl��f���)~J���\��-�^mi�նM�jꦮ�YC��¯ �����!͚R��^��5��u���d|\|H�WP�5_E��_9�>�A���f����ٶKG˲h��O�n�I��/���y�h� �Դ�vSC�6���[l�Mwy%5�f0��j��p�\A�V+|7����x���+�!٢�Fj:��q�e:�8CHx�$� �3��l�u�k8�����1ˡ�3H6� �A^�0>��vBa%�e ��kղ���:�]Xբ����b�>V�����l��d���腕q1ANkA�2y���ᖰΊ %�|�]Ь��ˬ�\�>�g���<QV2�Vg��φ�O�m�qUp�p���!l;V`l;-e��T\�ݡ}�������z����r��4嫰i�����@��~v�V V���? ���ڎ����g-- ��N-7�/ۓV��,a�6�z^�� ?�D u/���,�o}��z� �N�`���﹞�c���p���:&��� �B�Ŋ���KmW3hV`*� ���v�(� �J���I�����~q��8� ">K�()��*솦Y�@�85m���mש��:7C� WZy*Q� ��?�ҧ�?xe*5 ����H�� ��nhѥ�4�A��q��� �??���@I��Q''�u���="�:� �q�T]��Yz�e��G��-� L���E�����ZS�(#�M�� ��BD��LR�vYt�cnƊ�u����V�}dΉ�����m�@����B���*��xT� ��U�Cs��w5<�u�ȵHCC}ʂ����L�; ���Zɢ�%�l�,U�Ԗ�a�TF���",: pEn�K��b ���rrʤ\�\-)1l��,�y{Y : 5,�16A��Ҭ�)� m�,Ŷ./Z2MWi ?��u��"~���C���$`X���\MRi��q_Y�1X٦�f�bw�a�ZV A�� �*���%�uR�牄U��k��a+����+y�Ii�Sj�vy|�Y.aec�Yk�i��ݛr RX9�D�@����R>�sm:����̰O3kBaM�W���� k���M�_K��V`ٯ@������!n����-��u���j⇕��<=ݡ۸��J���SY9.@b�`�h ��E�j�}Ȋ��V/�%�/αn����2ٛ܋e)aA� ,�bQc!b6�>�]X�e5D�٩���X8��S�I��~X�ɁV�>[I�`�y3d9ؠY?J�r:{8��4�fp��x�S-��� �e���l�7s:��T���,�����R�t6���ֆG;�-���R�vZS/W�Է��* ��(q�I2�hB.Ͳ�l-������PhP�4��mv�fi�����#|��Y�'pE�.X�y���{�?�Tx�|����'ɼi��@)�³ �NUo�<�@`Dٓ�S���<!�dk«���9y� �0A{@:��'�Wc�o���Ur�w3 Pا�ԍV�DKzY-��Z]R��e9�ظLXf��X��[�yI�F_�� �r���XYܯ�ΰZAX]}݇�\X��h�a�W\Cc������8D^r��h�W+����2�"�nVJA���QX���.b\��r%j-b��v9V�����݇H��d�u��;N�{�EͽЕ��̦��*$��z�Ų�@yu@���s��,��6�)���Y�ؘ���ѳ��6��a� Hk�������V�W�<���U���+��s�"ŵ�Ws�@L��u����g-���?�a����~ � ��fx�8��#��+�Y�\�)�0t�l-j�̈́��r�\�<�"�����M�ͮ� a�������08!>2�on|Q�o�/�_4���$v�o+� ��nf�x�PC� �La ����{ �}C�F<��o��o����♦O V�ߗ���m��B>�+l�K��t�M��ϢO�5�V���* |]C��b�;�&�,�b��H�A�p ʃ;��� w,�W&�x�tȊ+!�u&�^k'<�!9�.}"�˗!���q*��(.��!�#�5�N,Pc["O2W\w�K���`,7 FY�,>Jxi��o�w��� >������Y�;�~�R�e����#x�ХR��T.h �^�C�.�@�ES�82~(ã���uSuQ?A�K��J8Y� �eȂfe���v���2?0w�[p:B�E���&�0�F�1�S�����_�F�����/��ElmsE��xܳ,=*�H�h>�- )���-}Mse���Ч���j@0y���� ��ݙt����{A�:��ۇ�-�l:��#�I�f�iv�o)>�=�#�U�-�n�j�v���3���7���@q�?�I��^m#a�avCX�$1�`�����(4��_�d��B�=��&��+jV] �V�Ȼ>VECZ@,�s;zk� �����Bp�²�(}�-�g��Ju��J�"��L�+l�BN{auݍ.`MLUѢׄ5����7�$�Z,C�m�9%����/����\��=�,�$>D��b&1CXz�v�Wiy�uw5�g����QV�f <�:�6�/R>8]y��?��3��쮢us$��u��ϼ��hj�G���0j��,� 2]H�'��� "���}b�)�r;�= ���xH�,���cQC�Ҭ3j��3���,��A�l�L4��S���(��c����Ę�0�AR9�R -�O�դc�fF���cyeJ�z��[d�1L��[7�yWvn)����f�\j�v~J-1q����OBRP�C�"C R,)UaP�%7�����nj�n]m�'O�rB8 e��T`D��EϯE��>K��xlR�&�W�)�$V,���{_� �D�'V�UB>��쒡\�ӄ�`�g���T�����JA75�~ģ�U~Ⲝ�l�AKS��avo��pψ$�"(0�9c�A� 1C����ba�T��)s��x55?��\0�� �*�Ũ��kn� =���"AC�V7 �KN�u>71�hb+ك_i�y"�B7� ,�+�r��/)�n�O��y�t�|h�vH�I<~���(��ܐLz����V[b �&q��� !���N�>��\@y�5�մ�?3�����ȵa54�P7�G � �#7ׅ/Ƚ�����[_���h�A�@���`'C�P���M��Jܼt�4�����R�Zx�F�W.��N�UX�J`5@W��㧠$sNn�]�{���f5���%��h�ܠ�x8?����w�H$���W���w@�@�h�$�@m��9��Y�ł�Z����WW�;wC&�A�1�<l6}c�a�gT'�3��{�d|�e��\��'��@���E�2�z��u�,�&(�RINf��f�/�tpG�vOb��uYFT/h���Y}�E�+�~oSj�r�|�� ��4��wK���Ҙ-\r��Zb+X{�n�ޭ�mrG���p%R4K�?_Q[h�}���Qv���i��(K�Ԯ�d��;Z͢�%2��ZK|�DIJ4<�l.�z����T>�"��R�)+�7\�ۮ���B�XR-�eGG�Ы#'��4�&�SѸ�N�ظH�\� ��Q�qi2�����84X��_9��YMcN3��7�!L���'O ��M�He��+�,=pn�@�*�Ɏh�Z�W�aA��*��jh�/s4k�G-�!A$����2���APte��ܡ��c��?����K����0 ��\����e~�Q�ݐ�53y��##��5�`4&�&���B�3!���G�n�8��z�'1vubqd�,#s��xx�M刡>DYa7T(k�T�L���_��c�YnvL᭩�b�<ʍX�+�iN�`A�ٕ}�q�K*b�-M��O}"%�6�Y�s��8��F��n�c�o��*)��'!f��(4LrGB9���Ux�fPIMH��x�[�X&rނ|uf�%���8K���K=���S��W�*XG8ż� +�?��Q*PI~��#H'ؠ��@A�$<Z�/E���+�늩IBa��I�2lM��m�����l���/ð�[�kO�xD>&��I��c�a�;1٧�������Eb2aw�X��z֦qg��jn��+���+�XS�~�7D�Կ���L��]Xڏ0�v|Qj�1�W�5�� ԶQ;g�%j{�����Xt�h�a�����8S���#q8l����,��/�p@ ����oGJ0K���=1�hn�#� NChS˫�2�r̉~tX�x)4 ��4ayD@���U�e ��̵�{E����T�"X��d۟;��W�*5���"�]���z��@�~��X`n����%h��+ޠe#L�@ۦ_I��=��z�N���V.��[(Dz?)F-��@�l�y�<$ -����Q�di �bW'4M+�fS��V��S��X� �v��b�4�Jی���O���2M�P<"%tk��,��=��Jg�R�����4wl.*c������ߛ$ ӑ�Frhz2�C�ڂ��2��������cX,4���<�J�3�WiK��X ���-�%�Cau}C�vH�I�H�#�9W3뼺U�t�;n���u�d��/p- l��zTֲ�~����N�¢�m#�5�m�b3XS�Fο�k�0�Î�}��ʢ}����\��"Q�+L��b�=1$��O.�>����9#0!v��������!�a�Ck�2�D4&A�!$EoOF����茚0�G����� �{b�T8d�=a~\»/����d`�T �p� g�^_���O`���@�/;|� e2�d�-�md��!{�U�������dW�0�KWq�����|��q�-�b'�N��OdH�p"G�ES���+�~l���5m���KÂL��#�s�!I"��0[(Mp���&�܅+<R, _��V�>�ҍ7����q��-��u7�����R/#3�H7@�R6ƭ^��,%v|�EQ��K�J�s^�b�Be����ž,;��/b����k�S&O�t�D���#Ր�˟YB�>�p�v�� �wF�?�Z�zL|gX�����4gEH<�Y�j�n+o8�#9�^�Y�靷6ts�S�������@rwR�.�Nmv��F|7�I1�2���<�p1��yYو�D��3��u"��蝺/\�/#�Co��y��T�������)�TƤ���3�{m�b->�^y[ s�d۰����2t;vF��*jթC�,l����a����Yh_̕�m����CYow�p�����2"f�G����W �CjAaNJf��_�]IX�P),��^��T.H[^1��E<�R��<b��a ������2z(����8�����N��$���S���A��B���GME� K���%�g��!��5 �0g&���M�;�l����(�g����>�}��zm8��:X�˰u��ƀ�M��}��[�#]ZŪ�X(3��v+���^5�sQ��vl�Od�X�o��]�, ��8��PEjq%g�n�_��$xm��ӦYSx�:�7xF��=��k�� ��N��ꪜ��h;�� a�_fb�M��%�i����#{�*g�6��t`�7��x�M`.�_�3�S3<��D�m P��kԴQg�;�>�k����ʳʵs�۠^&�����1�\7a�V�����c�A��Y0�(�cd�dSg�Gx�C�^�KG�ܑf�\�S�ܶ�|���*��f��XU�2#��p]#�c1��c>�E e#<�e��������Sh��%��99!oH(���bX��w?}����p<��'>}�_��O�Hi�s�f���hьМ 58��H_�t�5�z�{�� IA�6Y6�#����j~����t-$`F,d��Y����� #��4�]j�qCa�q#��IS!��抰��������o��_3�.qYdOщqtӱqRX���vׅ���MҶ�5� K�3���4��5�� +h�S��v��/>wÒkS��W���na���ʬ�7�"����ێ��7M��N���F d��jy��և���Ae�](802��Ў�U�w2��d��BC2 �ݼ�-�\Ò,�r��Q�l#pd�8�t�����*� ��%=�������^y<��%p_Q�u��U��Ը�t.�(�K�P�bί>�|n�1B��RQ�v1_�4�K� |Jeh��1>h�AR��3Ca7��F� L�+��:~���Ǐ������$�@=D ��G ��"��r�6p_#��JT��fc����aڇp�������8���"V2\|isIJ���핫o(j���ݝ��1˭�{�l�|HH�3�}���+�74�C_&B ��"�%��z�=�ԷN� �F@���-�< ��Y������PX-m*}QU�Z?�@X�hw���?�b�77�4�;Ị�b�Da�-��oX�V�3l��ѐzoY� R����eX+�˚,C@���[��F��9^:`p�@���Jp���m���@��~���>ǧb�g�/���]Q����7Q��F����+bmJ�nb���O����A���j �&�b�ƅU���Ccε�%C�Q����67��m�iI�H� 귰�|ww��~�% �آ3*�Q���&a-LX <i#�G���K/1����)sKt���6IpM��}ئp�d1�z����`Y�� MV~w��{��X��[9�����U�]z0dȡu�I�����F¢��O��~��_;-�1\ŖDK�����bqun�@��HE��.���U] ��0X�Z®��=��g���A�ሴ��%� ?�T2|HTkHծ���Ӷ��(���WA �mUq�3x���Tb�K a�6�D$�<��sl{ N��a �׃��Q������d�]�?LcL"2�<C� 3*U��y�DUI�H�J,ܩtwt-R��1��m��T�]ZЙBi�Kt��.��x��l�"ʶ �2\����w(+H�c;��:�����ʖ��T��ܗ��>�F�>O���������vau�7}���˓�>h� SЇ�x-�Nh��LXt _�v������Z�|y�}� 9�zs|H��3�!D��-t8������D7�^54�� Ρ[�kְr��� J���{���8Jv�0�|ԃeh�{��ĉ�4g+&�����&etP:F�M�� ~�9NL��p;n#��v~n�Ù9��܂T��UU�� r��&��_O=�GS.�l�"��8����so��6b����� ��s���wOa�d���;5�|�C��U�0x�Pٓa]U B=�U�����x��o�x5Z��CǓB���<D�L���D�g��1:@Ռl5B��{���1~��r�Ԛ��� ��"�U_z �!;��e�.�q�q��_�[�� ۿ��~�v�>%�Ϙ�"��nj4����h}�bɍ�I(}_>XX�^��0a4)����/� IDATĩ)E��m'ua-����*�O_��1��Y������[�w~ �Qԩ ���ɕ� �?�h�'ta�ЇZ�Vª���kt�ޜ�R5�T�-�)���h�*i�n�"J�P�5P鬋�]���d���͌�v�L�/������Q�Y���=~�J^��B�d�O��Ͻ�]��u�3a�Ռ2�-4��HLCȭ},�!� '��iI���Y����v��: ~oo�λ�tWX����\�ž),�_Uet�zJ�z��̓r��^]d>��Y3�*����k˚ø_�ԟ��o���t�F ��_�?~���JwӞY� ��Δg �BADin�Z`ݷ]/,8���b�o����_N�ƴ�J�QX�0��pi F�i�(�mT4��F>t� m�u�-�����]�(�Y'���_���M�,�J�U$S�̆���-�ȰD�]s����� �^}�֕*���>&۶�@�3�Z�:�����*��3P�ӟ�%���}���ۿr��L�:��u�I �:�(X��}�Ðp)��X�� �+��;02��5?�,���% i���D� Q(�dU�^x��-6�RWxk���"Lނ���j�2�V��S'��_��ub�V��je�`��v��+�S���d���G��������r�&,V�+�^w�����������aQ����B��(�DH��̕�f-�Kay� +����v��=(���зn��I3�{" � ��t��ʝ���B��f� ��-�����ul��#�P��/$ ����U�xY����ud����_3�˼�V�ި:�L�M$F����eH�&9!�`�o1�߷Os�7ݞ�:� �vlK��-��ϔ?W��*ng���:��k��E�l [� ��|�2[��fЅ�9,�k�1���]i�U�Ҍ ��k�0u�>�żP�m�+[j,�.�E��f^�u��yȯ=@:`�:�0I�ݫot�8��A��r��� x3��uP+|�v��/�ݓ�hS�b��-�8� ��~�P��[`�)�5�P�Q�~t�����݁͂�Z�o ��Sm�{�QX� m�sOG tS;.�B��6G#а���ʅ�<xK�+r ���:>j|��v�7wmOrG�ӱ ����=�:��>1��xW__|�dp�cy�gwB�lc��"�3�P����JX�Av�E(�̶�9HO}�CK]�c� K�g%��!��|ð�2��1̠�,�٥;̈́�%�8ѻ4�-\XĶ1r`�%��66ie�u˷~�)����a��S̷ ��nv݃�/r]P��Ap��y�{�Xx@���`� ;���o�[Gz��h�i|�� ml�/�#��3w��mq���Ko�8���))��j��jM�A��}��&�E�n�h��p��@T�% ���N/\��Ŧ-5��*�\+���re�e$%��=��?n��&�[�=䅙���(�M�D d3UXӢ��U0i�����vÞ��m0Z�q1cGj���?���>�G�yJ n��tt��Ln�3�`r�6=hX���JpQ}��Q+)�r��Nd���qZ���A6#O�ю�z����CX=�OoO�_�oX�>�ر��Jc�e��� ��"��G���ֵ ��X���(�bЕ���S���Tc��{�zj]Ż�>�q�ۀ��5Lڨ���B�C�ҋ��6�ą5%�����F�V�g5�U���= �ԹGj�i� ��Bon9�l�K ���Ǧ'�50|���>mj�P��1$w���3��I4��RDggV<�,7#�֖KT�6�p�u�Ν�X&+����֬+q?1c���GW�|6B1B���l���h��y���=_�Y�%bHo6�ʇ�Pk�8��Š�]sW�zS�Y�*;w��Ze�.U��M�����?����0!Bj-���hh�4��<$�#ލy;�IF���9ϔ$�����þt���W��:�j�X+�]�ǵ�jN �j�|8t�XB����Ut|�#�=wf�*��S�L3�x��z7.�}�����݅%���`ܙ͋e�����`vZ}Ca�������pձO�?��K�@�n�F�>���p�`wga5]d6=J�ͦ�t�N�o�*݈KA��"v��֊�� ��;�h_� ������%����8�l�1F��^Mf~vXQ��� ����Rd?,���Z$'V�\>TXV%bn�ﻶ�}R��:)�&�(��1YAyC��?���~�5�@w���/{�r͏M��z/y��QLSȑބz�:fP����XH��ެ����4���,䔑z�������3�G��mӭ%���Gs�@i.��u���j�F6�q�0σA!0�ug�8(:���C�1�6��u�zY5w�B4׳�Mla4���C�G����x��X �0eX�`��B#��&J/�^�*�G `T��ͱgRZ9�ƪ�5L��{��n��Mm�9/�T~��#� ��'��(k��I_Ca��Al,�j U7^k���V��e�0z��J�I���_���#��a��v��!E��� �B�0��l��paő.}�T���D����B3��_*�K$�o=͏�'�4zjݡ����B��%��_;7x���G��ː{����wf�v�V�g�kn ��R_<��}���+%ѹ5H�C���+���E5;e%~��Ļ�����^�d�rg�Q�Q����a{�P�n�wz�z�i�iz*��˫=對]�W��U���d>�oB�4���/������#�����,*�i�7��-��ayiu ^ �/D��BG b�K�lޔm�%�C�pus�Unne��/��Za�>�w�(xv��f�l�U�nq���O���t���g�$a�a�Գ�"�L��ڎY�O��e�Eo@�Vd��9��*����?��f�$��¾v��{������.d�"�0ôV��2D��Vt���֛S4����פ��&�.�B,ˈ�cc������1�~dW�m܇7�����z�Xl��V�6-=y��ˑ��8R�fS{jU��8�iC;^�U����fRKoNZ�g5*�KS����&5�>}n��~�� j�G�xǨ�+����|��*�i{�� n�ۊ�k��A�!JP� �Y��cCD9�k0([E��JE�Sj�=�0����+ڶM�# ۛ*Q�=�9�������㬈q0��ۧŜS(�[�����k2�6��̙���z���3M��R��^75��g�2>�Q� �`��"4�,j�w��o�ҋ��� N}/�Y���0u��N Og�c���~�Jb .�+'�ى�Y�!��C��B���_���Nk�2PBo��,����� =�+ʫl� �t���o��&H��^�� c���s���|*���YL@ԑ� Ѿ(Ԡ6�0S�Pm&�\A]�u&c}�y=���d�hz-L���z�g��YL���3��J����)L�)���j�|9��~�v���mm�a7N�� �n.j�|�w�C�y-tAaq�J��9��uO��-��N{���]#��+%ODE�!�Jj�u��?}�����F9"�1���"���F�E[&\�I��8��7>�\��";�nY��[�ӆzG�U�>jم��aYO�s\]�&��ွ���d�.m�3���7��`�[�/h��N�wr�,��p>��J�1��F�'f�����a��'oVox5���S��lpF2�5M� [���LNlP\q��aӏ�dW�� äY�,��;�����V�eJ�#��6m����_o&��:¸���.ҟB%J��N��������*5��g�Q�*і;��>�N�}}n3�JMq��/9d�A@dk ��N��>�.-�����ٕ�P��Y;�PV����|�ų�w8�n8g��M���K;4aѱ���8��v� �����Z �)'�ټ��r9��ޞ��7(�����j�F���jMb�s�ۣ ��'6��[�~�RX;�k �/�+�E����qF��e{m��O4 x,�����e���m��m9��U*b�k�C� ��l���y ��9��-m(t�� �Lb�Ļ"i� m^e/�s�h<�Pu�'�'��>X��XV�e�ƙ�� 5f���:CB �]/m� �8;���n��Ш.t2�� �d�x�7�^�F �a�V����F�ߺ͗wY��ʪ/t��/�!�/���0�p�.&,������a��G�A!�����/^ZI;m�F�DGK#�YyL��%k~7:MԥcY��Fh��?�/���ͻ��K�|L�^�ڊݪ�r��ʨ�����{� � 1�hm͝꽩�C@eej9l rh�l����%�0%14������o���[=��N'��Ç�د�"o�o�~Fk��B�y��J��f&0�c˽"����do��lN(%gʧqF�I4�@� c��~��{�Z�?GS�c6ަ>`� ���̦��j=�Sߕ�f���w�U|WA��|cC+Z��+�JK����aL�.�QB��vu�[�9q/��&���J_���^|� ����,L��֬�HV��0��Ƥ�{_�Ѿ�t��h�o�_z��",���0�ܬ�¶=��b���_�##�+WB�C�C�c��b��{�U�!�FPN�/��G]�ݙY���~���66b�f��6Q�L3��J�k�a" �d��^��DĒ��,.���k����ϿmsZ�ǩ_ҠB��bm���srF�Ʃ�D�$N*���y�=�? Bx_#���dž�q �t�0�o㒇/j��nu�="Fml0�Ͻs}��=c�m��]h>s%���Q��|�Y��r�.ol&��]�\�k7����S�~/5��*@W�C�����Ŷ ��0y� �uh�[���_n5���/�Q����4�n^�b�Е�g ��JL�1�bc��0�|c�*`�7a ���щJ4�}[k�\�@`���R��(��m��s������E�>Jb���~�z��>�����Ⱥ��`���7=Q��(���Mcgva����{l"�!39�;��Ѣ�|�k�o�e���=l�7;aS�l Y�����/}��o�x���?���m�`�&�$���e�]ߟ�S<�Z�~�@�Y�lJY$wt��D1�'5-��.��'Cs�#���ȫm�r�s1/m7�6��fn�I9݈o��)9GכX�@A�n+ �S��.d��/��h���1���mlR�ٙͤ%1�w�7�tFx��v�8v'a�m�F���Kzz��h:n�mg�e� �.�'��c��.�|Ѣ<��\X3,l�i�p��Ц/��td �:-� bAX�T7�(_��M�0 aT�W���^���#���r$�cӰ冺~T����6Wse�nx3~��z���Ml���!ݤ]��@�sy�w�_���{_��*S2a��ڰ�G=HX� �~s<1��v��9� 8��vՃo6�Fr��M��n���[���E��RM��i�L|�s͖M��'ڃ^/���/�V1��gR�7�|@k��:$찘H�W��Hn'�iMb��X��c�Jͧ��;K�]Z���T7����t�N��E�=�#���:5��`FN��68���������-騁_i?�W)����|-b�x��I�e��G��CTH nl����"K�fa-���H0�0a��Hk�0W�&*AX{�^��C+���9��~VG ������09����i���Y���c�z8�4��-��V���!�PR�{��x���3UꜙG���s��*�RM9�����䓀E�fΫ<� }�U.ToTՠ^]���.i�f(r��QK$@#j�7"3�\D�9Ҝ����!_5�bT�ylJ7+@ǟ�f9�5��sY�����c�B�64*�C�n0(�9��!vi�o�� m���Ӥ��x9ye���'����D�c.d�2�r�����z�%�H�{$;PV�mso��E���s�8F{�^�j�YךQX���8�qNփ2|K���{J���",s1K�FI�IUs[ϓ�VP�ҁ=~}6��Յ�փ_=���M����G���S�(�ZmN��cC!y�'������kn²=���NU� a������Q2�� �Р��#w�Ko�5 �sJ������8��Z<L�bKף(!��kE�X����g-+�w�5���R�L<?��B�+�b��zY��L�KekqT�Ͳ�y�Uev+o�M�B͎gg ���=k��f>�S�-1��?�A�Ca�j�@��G�D�>���W���[@0Λ����ի�L�O VՏ_�ċ@"�;h�Đ���.텷W��k�S��K{0�@�Fq-�2&'D>LV_B$ꇯ�d�e;Z5b-"��ݷB����0?وOo����V�Ek&���[��^�]�H�\b�%80�c6��$�(�Q(�������)�ۆ�����VX��q�y��ᓢ ��ak�5V�E/vO�Xw�}�'$ai�hј���km��>�]JF���cD�������J��er�ㇻ�v�������O�dW~���v}���|o�o��N�=���~��|�R���o}�-kg�SI���-a��OU��}��e�O���ӷ�ʇ�d��Z��EՄ���c�� >ei�ni9��t�j����C� ,��.O� ���t�����w���}�����/=1�}��MX_���}����s$��3�����KX�忭�?�f'�T�h�4K��C��(��5�WԹ�o�+�us���E��WA��M��&��\ĪR�$�b�_ܗ*NL�#�z���>���;���υ�E����e(����}Y��W�������>���g�&�����?�ӻOhz���{�6��Ğ�� /v_��~w�!��j\�.��[�ݳ}�ڳg�o��a�i�-[�}�1b��$å"�=�G��Q�K�����"Ҫ����I�vO~bzG{��'��Y������g|w3U�O?y�{�ۻ�o�;�[�w�䔣�Fńu���H�-� �*S�wv�a���?�|���V3��,�0�aDcH*k��B�"��Ls�P����{�'śD�)�Od����zb㓠k_�����%?�rQ�s���B��N��d�+V�˻�}� �0��B�{Ш�������> �\�B�nLP����]�=f�U�eg�U$�:��n)��&���~o���Ͷ�vH�w�?�j�"�x�����ۻ�����"�,��7��m���b� �?�F=���X���rѸ�C��U�-A9lln�p[c��3ԃ��}��}:�s�|�jS�F���1�1�C��5�X������A������֠]�6���"}����淿 ��[� Q���(ϳ��>d�#������PMPA�/B¿n,$���;�@����<fn�,�/��zb|� ,���Gm�Ӈ:���X_6U�Q��+�����a�Z�=�@��4�A#�/zĦ�e�Ew߆F�2��J��:E ��)^��݄���`�B�:-�~���f���yg?&��<I�/Q�Kf���y�=�۶�a}w���G�QH->���i��� D��y����[�]o��/��[�v+k�^��/l��-�\��a� r����4�6��̼{�q��-�.v.���X��� �~T��RFz3�R���AX_�� L�g��f��?�{;�#<�f�V�8��W��ԃOa�$��w_��P�}�3Y4���}�����T$�b�&�AX�F^�7*�f9�ݙjo���{?�C����qX��@|-b��%ɿ��}W�U�|F�O�Ԇ���7w��5!]M�PsΫ'Ͽ"}e���MJ�ׯ�7C�̜&M�4&��ms�Bht�| [�������`K�"X�F����C�� �����G=�;�]��~���Z~}��S����GVQ�S�ݿ�]�k��_`+��Q -IDAT����.,����3+y�}�Y�ѧ��}~���"��*��Q"wc��͞�#�c2���>8j-N鑉7=�&h�aAx��?��m������� <�0ʁ��'�_}��a���;p^��� ����P4��d�Ʀ,�_�x+]�륛]�l�z� �E��KŎs�G��"�� <���|} ��;�Kߡ%��5�_������۽��!U��OD��èD;&�0��CY���������ǯ�HT�G��({8�Q������w�1;���j}c,n��}�l�0�5]�;*��_z��=�����_z����9=�<����#nQ��vaRG�g/Y|Pw�й}Ю�E�� (Yr�òx���լ0P�T�S 4GM���y?�U�3��;�J�� c��� հF36Td�1���-��P'MLP�6��.�}蕟m`�4KI��ӈu����D!��T�WOM���z��m��:")�Y�si�w� ���'�fX�u��YX�$�H6˦�:Jz�Q_gGhڛ�1B�]hpG��[�x��Jk@� ���s�+�I/,���'�!��k��sy-}k-�$,���mb�˦]b����]nc��u�^eVm4� ���C��v��0�1s�J�����N� ��=��SiF���'���G8��@9��Du�27Г��H$lDt��˳)D7l�6�|<m�+˯N�`��z�ؤ<cW^V6f�̊)�^�#5k`��H�,���j��=���Zگjb� "Ф�m���@��5��%�A���NBM��i��5������b�H6�1���}�hغ�Y��L�t-�d��7�O5�'�ȶ[tLNc׳#�S�"7������[ju���9��gZ�9O�5��t�C�o��MLX�md���~}�����E�M�Tm j�4j#�{_$�i�U���!�/߄~؎���u����P����m]zP��:�u��ě���-Q"�1֨;u�%�-��:�vg>�N`[)�nX�7�;�R��Y�4�<��S�Z�|������|7^�@��&�:�j.�} =�����<۾�T�~�<�Ѷ�`s�Dղ��q���+6>��27�,K�.��GC{�{�4Eu�Ib��`a�����Z��Yh��ᷤ>mg6$���m9��1��R�f�Q�l>�&{��@^Ӷ�ڠ^��W��e�7�`?���CP�Zj�9�J�5�(���&,��O���Q ����p(L���6�;vVa���7����vy��[M�Ɔm�A`8a�9�;2�~ߎ1��v͌���Ւ �U����zL�`��������z��[�峌f.,\�N4��3a�MXx ǙC:֩�RX�.��]ԋe���X�F#N�.�~ �ׇՇ���|����q0�-C�)�r���YX�yf�~�� ���8�D����c�R�(x<��E17B=79i�y��s��4�|;� �3�$���[ʄWǒ��h�m�9�f�SMA�ڞ�aD����ZX}{��1�C�� �Pǁ�4�}C��ju�T�'���g.�4�a�\�R��R�<�B�+q�MF�EX�e��#�;K#��! �qy�3�?R��fYā^����n��4��s����N��T�+�ꔟ����R8> �/�a1����4�R]���4�Z����aWn��06�ewJ5�*lk�C��8�)�7F���2鬱�$�5�4a=$M'3 �-��/���7P�7mxO�("�h�C���~��v�v_r�/9]�X�G���ti|���̜ˀ������e�x��D���u(5�n�u�t�X��>��V>� |�/�=�i����x*S���|�� �s�����,;:���Rc"}�;� c&��{�{�="��ǰr(s�n%%R��;���*�����uGW��N�,��������6�r�D��@����ґ��#���0��ͧ�1,6��2��H�̡�,���&آ4��n'+\]��d�����|&{�"��l Tq��z+���^��W�f۰/��o���\�q���f���j�m��݀��4�Nn "�u�m�OԢn[�f��^�S��*�[���E���V�l�cxu`YZ����6%�t 6&ڬT�:~���-p�6�7P�t5�>���|��9=Ɯz�J�.�ڎ�^�=Z9��R���B�0U~+� �ղ{�z.<�jY_ ��\���$�>�,\�����]X+��� ��Jr�Ķ�6������Fa�*�vD��w�㸮gr.Gm�5��+PͶ��i}7��B��P73��-� �z����b���HmAR����qq��3l_�r�-J��yDŢc���X4���9�AҪ�� �f[����::L�.�^�G���l������Ď�/䔏�4hگ#ݛ��ϐ����1^oFy��d����)�Q� �w%�|%;������eJ!h�je���+W4�ck��G� ��;(0" ��<�c�&�j)���?u��T��YWR����=�W�FQM����`���h�=�'+�vn�!��v��Ndꧼn�~���(/�+)�؟��ѧ��^����z��z�E�2H�[o]m�4����EX.�ɖ�Ȅ5�}�V��W_SX��Y6��s�Q�`�s ��ٹ��\�c�R�(�m�ս�g=n��ʅ� �S�o b�s���x,����9,��b7뾼�yF��l�]�+<t���MWW�I���e�/?jC�c�zG�m�=���u�o.z�U�>�ʡ�cLj^ c#��?��O�]j�"t8�!(�V��f.�5 ���c�}�&� ���3���t�_��ba�EQ��vp�-��Cе68���QW�ώ�h�DK��W�c��n����j���RC��,�P{u���,64� q��� �OD��a�ș�S%'�Ѭ���v>�?�n�Vv�x�֥ L�t�^��d���K=wxݜY��)_ �r=j�7�ƹ�r2[�M�YUu#j��(���ФB{a�VA���<�u�ZK��OR�5�1<�p淭�k� JK��cdI&ꩥو�eU�2U)�bc �7��R���Q��1���TF�%OZT��r@�K������xZ�/�P��:�Zg�z�>����4�x=5i��)5�r�T߀G���U�Cρ�� �m���*�J��Ss�Vt���A��)�5�y��e����SX�>'��c*ѱ���[�UV%��KY\���)M��V�;�Я ��:x�q�h��#v�օ�{;.�K mY��->�io�ڜNy5��.֫U�ֶpe�#(�� �>��2b���^/ذ��4?��ƚ^����bh.���� � ����[�XM(�Uj"� ��j2�;&/�c,A�&��̧S b[Gb��i��+�@Kk�fmZ�j�G�q��a�ѾHd�W�Lԓ� nX_H���.I&�T&�ᒥ�٥Ѽ�A���3�"��`��aF���Z)��j�� Ma� $���S�G���2�Z�V�HMs�!�p؟��z:���ƸB��^�Ǻ�{�W�q���\Z_ж�U_��X[M���J�9�@�K K�!�����K�@K�>��sB�qf���W��6a]P:.����<T���^N/(���%6{�0}kw��I��2�lҶ'�m�7���0��Ӱ,9��*�"N���� ��7�q^�o��Ox��B+P�s:�Cp���pR ݢ<��=~ �����%5���LR��X�0��/,�SR9Wz�B��ۡ\@�k�g�?�ђ�$��+.4}u,/<