; /* Start:/bitrix/templates/index/showcase/jquery.aw-showcase.js*/ /* Awkward Showcase - jQuery plugin http://www.jquery.com http://www.awkwardgroup.com/sandbox/awkward-showcase-a-jquery-plugin http://demo.awkwardgroup.com/showcase Version: 1.1.1 Copyright (C) 2011 Awkward Group (http://www.awkwardgroup.com) Licensed under Attribution-ShareAlike 3.0 Unported http://creativecommons.org/licenses/by-sa/3.0/ Markup example for jQuery("#showcase").awShowcase();
01
The Caption
Content...
*/ (function(jQuery) { jQuery.fn.awShowcase = function(options) { // Default configuration properties var defaults = { content_width: 700, content_height: 470, fit_to_parent: false, auto: false, interval: 3000, continuous: false, loading: true, tooltip_width: 200, tooltip_icon_width: 32, tooltip_icon_height: 32, tooltip_offsetx: 18, tooltip_offsety: 0, arrows: true, buttons: true, btn_numbers: false, keybord_keys: false, mousetrace: false, /* Trace x and y coordinates for the mouse */ pauseonover: true, stoponclick: true, transition: 'hslide', /* hslide / vslide / fade */ transition_delay: 300, transition_speed: 500, show_caption: 'onload', /* onload / onhover / show */ thumbnails: false, thumbnails_position: 'outside-last', /* outside-last / outside-first / inside-last / inside-first */ thumbnails_direction: 'vertical', /* vertical / horizontal */ thumbnails_slidex: 0, /* 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc. */ dynamic_height: false, /* For dynamic height to work in webkit you need to set the width and height of images in the source. Usually works to only set the dimension of the first slide in the showcase. */ speed_change: false, /* This prevents user from swithing more then one slide at once */ viewline: false, /* If set to true content_width, thumbnails, transition and dynamic_height will be disabled. As for dynamic height you need to set the width and height of images in the source. */ fullscreen_width_x: 15, custom_function: null }; // ***************** // SET UP THE PLUGIN // ***************** // Declare and set up some important variables options = jQuery.extend(defaults, options); var current_id = 0; var previous_id = 0; var break_loop = false; var pause_loop = false; var myInterval = null; var showcase = jQuery(this); var showcase_width = options.content_width; var animating = false; // Viewline specific variables var content_viewline_width = 10000; var animation_distance = 0; var old_animation_distance = 0; var remaining_width = 0; // Set up the content wrapper var content_container = jQuery(document.createElement('div')) .css('overflow', 'hidden') .css('position', 'relative') .addClass('showcase-content-container') .prependTo(showcase); // Set up the showcase for hundred percent width if (options.fit_to_parent) { showcase_width = jQuery(showcase).width() + options.fullscreen_width_x; } // Set up the showcase for Viewline Mayhem if (options.viewline) { options.thumbnails = false; options.dynamic_height = false; content_container.css('width', content_viewline_width); showcase.css('overflow', 'hidden'); $('.showcase-arrow-previous').hide(); } // Set up content and create the content and thumbnail array var contentArray = []; var thumbnailArray = []; var content_count = 0; showcase.children('.showcase-slide').each(function() { // Get content var object = jQuery(this); content_count++; // If thumbnails are activated if (options.thumbnails) { // Get thumbnail and put in array var thumb = object.find('.showcase-thumbnail'); thumbnailArray.push(thumb); thumb.remove(); } // Set content width and height var object_width = object.find('.showcase-content').children().width(); var object_height = object.find('.showcase-content').children().height(); // Add content html in array and remove it from DOM contentArray.push(object.html()); object.remove(); // Get correct content var new_object = getContent(content_count-1); if (options.viewline || content_count === 1) { content_container.append(new_object); } // Viewline setup if (options.viewline) { new_object.css('position', 'relative'); new_object.css('float', 'left'); new_object.css('width', object_width); } // Set content and content container load height if (options.dynamic_height) { new_object.css('height', object_height); if (content_count === 1) { content_container.css('height', '399px'); } } else { new_object.css('height', options.content_height); if (content_count === 1) { content_container.css('height', '399px'); } } if (options.viewline || content_count === 1) { displayAnchors(new_object); displayCaption(new_object); if (options.show_caption === 'show') { jQuery(new_object).find('.showcase-caption').show(); } } }); // Declare and set up the thumbnail wrapper var thumb_wrapper; var thumbnailStretch = 0; var thumbnailsPerPage = 0; if (options.thumbnails) { // Create wrapper thumb_container = jQuery('
'); thumb_restriction = jQuery('
'); thumb_wrapper = jQuery('
'); // Add content to thumbnail wrapper for (i = thumbnailArray.length-1; i >= 0; --i) { var thumbnail = jQuery(thumbnailArray[i]).css({'overflow' : 'hidden'}); thumbnail.attr('id', 'showcase-thumbnail-' + i); thumbnail.addClass((i === 0) ? 'active' : ''); thumbnail.click(function(a, b) { // This function is used to extract the correct i value on click return function() { // Disable auto change on click if (myInterval) { pause_loop = true; clearInterval(myInterval); } changeContent(a, b); }; }(i, '')); thumb_wrapper.prepend(thumbnail); } // Style and position thumbnail container and content wrapper // + insert thumbnail container if (options.thumbnails_position === 'outside-first' || options.thumbnails_position === 'outside-last') { if (options.thumbnails_direction !== 'horizontal') { /* outside & vertical */ content_container.css('float', 'left'); content_container.css('width', options.content_width); thumb_container.css('float', 'left'); thumb_container.css('height', '399px'); } else { /* outside & horizontal */ jQuery(thumb_wrapper).find('.showcase-thumbnail').css('float', 'left'); //jQuery(thumb_wrapper).append(jQuery('
').addClass('clear')); } if (options.thumbnails_position === 'outside-last') { /* outside-last */ showcase.append(thumb_container); if (options.thumbnails_direction !== 'horizontal') { showcase.append(jQuery('
').addClass('clear')); } } else { /* outside-first */ showcase.prepend(thumb_container); if (options.thumbnails_direction !== 'horizontal') { showcase.append(jQuery('
').addClass('clear')); } } } else { thumb_container.css({'position' : 'absolute', 'z-index' : 20}); if (options.thumbnails_direction === 'horizontal') { /* inside & horizontal */ thumb_container.css({'left' : 0, 'right' : 0}); jQuery(thumb_wrapper).find('.showcase-thumbnail').css('float', 'left'); jQuery(thumb_wrapper).append(jQuery('
').addClass('clear')); /* inside first */ if (options.thumbnails_position === 'inside-first') { thumb_container.css('top', 0); } /* inside last */ else { thumb_container.css('bottom', 0); } } else { /* inside & vertical */ thumb_container.css({'top' : 0, 'bottom' : 0}); /* inside first */ if (options.thumbnails_position === 'inside-first') { thumb_container.css('left', 0); } /* inside last */ else { thumb_container.css('right', 0); } } content_container.prepend(thumb_container); } // Add class and style to thumbnail container thumb_container.addClass('showcase-thumbnail-container'); thumb_container.css('overflow', 'hidden'); // Add class and style to thumbnail restriction thumb_restriction.addClass('showcase-thumbnail-restriction'); thumb_restriction.css({'overflow' : 'hidden', 'position' : 'relative'}); if (options.thumbnails_direction === 'horizontal') { thumb_restriction.css({'float' : 'left'}); } // Add class and style to thumbnail wrapper thumb_wrapper.addClass('showcase-thumbnail-wrapper'); if (options.thumbnails_direction === 'horizontal') { thumb_wrapper.addClass('showcase-thumbnail-wrapper-horizontal'); } else { thumb_wrapper.addClass('showcase-thumbnail-wrapper-vertical'); } thumb_wrapper.css('position', 'relative'); // Append wrapper and restriction thumb_restriction.append(thumb_wrapper); thumb_container.append(thumb_restriction); // Add backward button var buttonBackward = jQuery('
'); if (options.thumbnails_direction !== 'horizontal') { buttonBackward.html('Up'); } else { buttonBackward.css({'float' : 'left'}); buttonBackward.html('Left'); } buttonBackward.click(function() { slideThumbnailWrapper('backward', false, true); }); thumb_container.prepend(buttonBackward); // Add forward button var buttonForward = jQuery('
'); if (options.thumbnails_direction !== 'horizontal') { buttonForward.html('Down'); } else { buttonForward.css({'float' : 'left'}); buttonForward.html('Right'); } buttonForward.click(function() { slideThumbnailWrapper('forward', false, true); }); thumb_container.append(buttonForward); // Set the number of thumbnails per page. var thumbnailVisibleStretch = 0; if (options.thumbnails_direction !== 'horizontal') { thumbnailVisibleStretch = getElementHeight(thumb_wrapper, false); thumbnailVisibleStretch += (getElementHeight(buttonBackward)) + (getElementHeight(buttonForward)); while (thumbnailVisibleStretch < options.content_height) { thumbnailVisibleStretch += getElementHeight(jQuery(thumbnailArray[0])); thumbnailsPerPage++; } } else { thumbnailVisibleStretch = getElementWidth(thumb_wrapper, false); thumbnailVisibleStretch += (getElementWidth(buttonBackward)) + (getElementWidth(buttonForward)); while (thumbnailVisibleStretch < showcase_width) { thumbnailVisibleStretch += getElementWidth(jQuery(thumbnailArray[0])); thumbnailsPerPage++; } } // Hide buttons if they're not necessary if (thumbnailsPerPage+1 > thumbnailArray.length) { if (options.thumbnails_direction !== 'horizontal') { thumb_restriction.css('margin-top', getElementHeight(buttonBackward)); } else { thumb_restriction.css('margin-left', getElementWidth(buttonBackward)); } buttonBackward.hide(); buttonForward.hide(); } // Set thumbnail restriction height or width if (options.thumbnails_direction !== 'horizontal') { var buttonsHeight = (getElementHeight(buttonBackward)) + (getElementHeight(buttonForward)); //thumb_restriction.css('height', options.content_height - buttonsHeight); thumb_restriction.css('height', '329px'); } else { var buttonsWidth = (getElementWidth(buttonBackward)) + (getElementWidth(buttonForward)); thumb_restriction.css('width', showcase_width-buttonsWidth); } // Set thumbnail wrapper width if (options.thumbnails_direction === 'horizontal') { jQuery('.showcase-thumbnail').each(function() { thumbnailStretch += getElementWidth(jQuery(this)); }); thumb_wrapper.css('width', thumbnailStretch); } else { jQuery('.showcase-thumbnail').each(function() { thumbnailStretch += getElementHeight(jQuery(this)); }); } } // Set showcase width and height if (options.thumbnails && options.thumbnails_position.indexOf("outside") !== -1 && options.thumbnails_direction !== 'horizontal' && !options.viewline) { showcase.css('width', showcase_width); } else if (!options.fit_to_parent) { showcase.css('width', showcase_width); } // Turn on/off auto slide if (content_count > 1 && options.auto) { myInterval = window.setInterval(autoChange, options.interval); } // Pause auto on mouse over if (options.auto && options.pauseonover) { showcase.mouseenter(function() { break_loop = true; clearInterval(myInterval); }); showcase.mouseleave(function() { if (!pause_loop) { break_loop = false; myInterval = window.setInterval(autoChange, options.interval); } }); } // Adding navigation arrows if (options.arrows && content_count > 1) { // Left arrow jQuery(document.createElement('div')) .addClass('showcase-arrow-previous') .prependTo(showcase) .click(function() { // Disable auto change on click if (myInterval) { if (options.stoponclick) { pause_loop = true; } clearInterval(myInterval); } changeContent((current_id === 0) ? content_count-1 : parseInt(current_id)-1, 'previous'); }); // Right arrow jQuery(document.createElement('div')) .addClass('showcase-arrow-next') .prependTo(showcase) .click(function() { // Disable auto change on click if (myInterval) { if (options.stoponclick) { pause_loop = true; } clearInterval(myInterval); } changeContent(current_id+1, 'next'); }); if (options.viewline) { $('.showcase-arrow-previous').hide(); } } // Adding navigation buttons if (options.buttons && content_count > 1) { // Create button wrapper jQuery(document.createElement('div')) .css('clear', 'both') .addClass('showcase-button-wrapper') .appendTo(showcase); i = 0; // Add button for each content while (i < content_count) { jQuery(document.createElement('span')) .attr('id', 'showcase-navigation-button-' + i) .addClass((i === 0) ? 'active' : '') // Add numbers or unicode .html((options.btn_numbers) ? parseInt(i)+1 : '●') .click(function(a, b) { // This function is used to extract the correct i value on click return function() { // Disable auto change on click if (myInterval) { if (options.stoponclick) { pause_loop = true; } clearInterval(myInterval); } changeContent(a, b); }; }(i, '')) .appendTo(jQuery(showcase).find('.showcase-button-wrapper')); i++; } } // Activating the keybord arrow keys if (options.keybord_keys) { jQuery(document).keydown(function(e) { // Disable auto change on click if (options.stoponclick) { pause_loop = true; } if (myInterval) clearInterval(myInterval); // Left arrow if (e.keyCode === 37) { changeContent((current_id === 0) ? content_count-1 : parseInt(current_id)-1, 'previous'); } // Right arrow if (e.keyCode === 39) { changeContent((current_id === content_count-1) ? 0 : parseInt(current_id)+1, 'next'); } }); } // ************* // THE FUNCTIONS // ************* // Returns the specified content (by array id) function getContent(id) { var new_content = jQuery(document.createElement('div')) .attr('id', 'showcase-content-' + id) .css('overflow', 'hidden') .css('position', 'absolute') .addClass('showcase-content') .html(contentArray[id]); // Set content width if (!options.viewline) { new_content.css('width', options.content_width); } // Position the content wrapper if showcase width is set to hundred percent if (options.fit_to_parent && !options.viewline) { new_content.css('left', (showcase_width/2)-options.content_width/2); } return new_content; } // Function that runs when content is set to change automatically function autoChange() { // Set next content id var nextID = parseInt(current_id)+1; // If the next id is outside the array and continuous is set to true set the id to 0 if (nextID === content_count && options.continuous) { nextID = 0; } // If continuous is set to false break the auto change else if (nextID === content_count && !options.continuous) { break_loop = true; clearInterval(myInterval); } // Don't change the content if the auto change is broken if (!break_loop) { changeContent(nextID, 'next'); } } // Changes the content (no explanation/comments needed :) function changeContent(id, direction) { // If the next content isn't the current content if (current_id !== id && !animating) { var obj; var obj2; var delay = 0; var i; // Set left/right position if showcase is set to full width var lrpos = (options.fit_to_parent) ? (showcase_width/2)-(options.content_width/2) : 0; // If we want to display the next content if ((id > current_id && direction !== 'previous') || direction === 'next') { if (options.viewline) { if (current_id < content_count-1) { // Prevent uggly transitions if (!options.speed_change) { animating = true; } // BugFix updateContentViewlineWidth(); // Pause Autoplay if (options.pauseonover) { window.clearInterval(myInterval); } // First we check if the content will fill the screen after animation. remaining_width = 0; // Loop trough the content array to find out // the total width for the content that remains. for (i=current_id+1, len=content_count; i showcase_width) { old_animation_distance = animation_distance; animation_distance -= addedContentArray[current_id].find('.showcase-content').children().width(); } else if ($('.showcase-arrow-next').is(':visible')) { old_animation_distance = animation_distance; animation_distance = -(content_viewline_width - (remaining_width + (showcase_width - remaining_width))); $('.showcase-arrow-next').fadeOut(300); } content_container.animate({left: animation_distance + 'px'}, options.transition_speed, function() { animating = false; }); // Change current content id (if content is finished) if ($('.showcase-arrow-next').is(':visible')) { current_id++; } $('.showcase-arrow-previous').fadeIn(300); } } else { // Prevent uggly transitions if (!options.speed_change) { animating = true; } // Get current and next content element obj = jQuery(showcase).find('#showcase-content-' + parseInt(current_id)); obj2 = getContent(id); // Append next element and set height content_container.append(obj2); if (options.dynamic_height) { obj2.css('height', obj2.find('.showcase-content').children().height()); } else { obj2.css('height', options.content_height); } // Animate height first if next content is not as high if (obj.find('.showcase-content').children().height() > obj2.find('.showcase-content').children().height() && options.dynamic_height) { content_container.stop(true, true).animate({ height: obj2.find('.showcase-content').children().height() }, 200); delay = 100; } // Animate current element if (options.transition === 'hslide') { jQuery(obj).delay(delay).animate({ left: -(options.content_width) }, options.transition_speed+options.transition_delay, function() { obj.remove(); }); } else if (options.transition === 'vslide') { jQuery(obj).delay(delay).animate({ top: -(options.content_height) }, options.transition_speed+options.transition_delay, function() { obj.remove(); }); } else { jQuery(obj).delay(delay).fadeOut(options.transition_speed, function() { obj.remove(); }); } // This will hide them, not display them :) displayAnchors(obj, true); displayCaption(obj, true); // Animate next element if (options.transition === 'hslide') { obj2.css('left', showcase_width); jQuery(obj2).delay(delay).animate({ left: lrpos }, options.transition_speed, function() { displayAnchors(obj2); displayCaption(obj2); afterAnimation(obj2); } ); } else if (options.transition === 'vslide') { obj2.css('top', showcase.height()); jQuery(obj2).delay(delay).animate({ top: '0px' }, options.transition_speed, function() { displayAnchors(obj2); displayCaption(obj2); afterAnimation(obj2); } ); } else { obj2.css('left', lrpos); obj2.css('display', 'none'); jQuery(obj2).delay(delay).fadeIn(options.transition_speed, function() { displayAnchors(obj2); displayCaption(obj2); afterAnimation(obj2); } ); } } } // If we want to display the previous content else if (id < current_id || direction === 'previous') { if (options.viewline) { if (current_id !== 0) { // Prevent uggly transitions if (!options.speed_change) { animating = true; } // BugFix updateContentViewlineWidth(); // Pause Autoplay if (options.pauseonover) { window.clearInterval(myInterval); } content_container.animate({left: old_animation_distance + 'px'}, options.transition_speed, function() { animating = false; }); // Set animation distance animation_distance = old_animation_distance; // Change current content id current_id--; if (current_id === 0) { $('.showcase-arrow-previous').fadeOut(300); } // Set old distance old_id = current_id - 1; sub_width = jQuery(addedContentArray[old_id]).width(); old_animation_distance = old_animation_distance + sub_width; } $('.showcase-arrow-next').fadeIn(300); } else { // Prevent uggly transitions if (!options.speed_change) { animating = true; } // Get current and next content element obj = jQuery(showcase).find('#showcase-content-' + parseInt(current_id)); obj2 = getContent(id); // Append next element and set height content_container.append(obj2); if (options.dynamic_height) { obj2.css('height', obj2.find('.showcase-content').children().height()); } else { obj2.css('height', options.content_height); } // Animate height first if next content is not as high if (obj.find('.showcase-content').children().height() > obj2.find('.showcase-content').children().height() && options.dynamic_height) { content_container.stop(true, true).animate({ height: obj2.find('.showcase-content').children().height()}, 200); delay = 100; } // Animate current element if (options.transition === 'hslide') { jQuery(obj).delay(delay).animate({ left: (showcase_width) + 'px' }, options.transition_speed+options.transition_delay, function() { displayAnchors(obj, true); displayCaption(obj, true); obj.remove(); }); } else if (options.transition === 'vslide') { jQuery(obj).delay(delay).animate({ top: (options.content_height) + 'px' }, options.transition_speed+options.transition_delay, function(){ displayAnchors(obj, true); displayCaption(obj, true); obj.remove(); }); } else { jQuery(obj).delay(delay).fadeOut(options.transition_speed, function() { displayAnchors(obj, true); displayCaption(obj, true); obj.remove(); }); } // Animate next element if (options.transition === 'hslide') { obj2.css('left', '-' + options.content_width + 'px'); jQuery(obj2).delay(delay).animate({ left: lrpos }, options.transition_speed, function() { displayAnchors(obj2); displayCaption(obj2); afterAnimation(obj2); }); } else if (options.transition === 'vslide') { obj2.css('top', '-' + showcase.height() + 'px'); jQuery(obj2).delay(delay).animate({ top: '0px' }, options.transition_speed, function() { displayAnchors(obj2); displayCaption(obj2); afterAnimation(obj2); }); } else { obj2.css('left', lrpos); obj2.css('display', 'none'); jQuery(obj2).delay(delay).fadeIn(options.transition_speed, function() { displayAnchors(obj2); displayCaption(obj2); afterAnimation(obj2); }); } content_container.append(obj2); } } if(!options.viewline) { // Change previous and current content id previous_id = current_id; current_id = id; // Slide thumbnail wrapper if (options.thumbnails) { if ((current_id > previous_id && direction !== 'previous') || direction === 'next') { slideThumbnailWrapper('forward', true); } else if (current_id < previous_id || direction === 'previous') { slideThumbnailWrapper('backward', true); } } // Change click handlers for arrows if (options.arrows) { jQuery(showcase).find('.showcase-arrow-previous') .unbind('click') .click(function() { if (myInterval) { if (options.stoponclick) { pause_loop = true; } clearInterval(myInterval); } changeContent((current_id === 0) ? content_count-1 : parseInt(current_id)-1, 'previous'); }); jQuery(showcase).find('.showcase-arrow-next') .unbind('click') .click(function() { if (myInterval) { if (options.stoponclick) { pause_loop = true; } clearInterval(myInterval); } changeContent((current_id === content_count-1) ? 0 : parseInt(current_id)+1, 'next'); }); } // Change active class for thumbnails if (options.thumbnails) { i = 0; showcase.find('.showcase-thumbnail').each(function() { var object = jQuery(this); object.removeClass('active'); if (i === current_id) { object.addClass('active'); } i++; }); } // If caption is set to 'show' if (options.show_caption === 'show') { jQuery(obj2).find('.showcase-caption').show(); } } // Change active class for buttons if (options.buttons) { i = 0; showcase.find('.showcase-button-wrapper span').each(function() { var object = jQuery(this); object.removeClass('active'); if (i === current_id) { object.addClass('active'); } i++; }); } // A function that runs on content change, if it exists. if (typeof options.custom_function == 'function') { options.custom_function(); } } } function afterAnimation(obj) { if (options.dynamic_height) { content_container.stop(true, true).animate({ height: obj.find('.showcase-content').children().height() }, 200); } animating = false; } // Slide thumbnail wrapper var thumbnailSlidePosition = 0; function slideThumbnailWrapper(direction, check, backwardforward) { var doTheSlide = true; var thumbnailHeightOrWidth = getElementHeight(jQuery(thumb_wrapper).find('.showcase-thumbnail')); if (options.thumbnails_direction === 'horizontal') { thumbnailHeightOrWidth = getElementWidth(jQuery(thumb_wrapper).find('.showcase-thumbnail')); } var multiplySlidePosition = 1; // Set slide x if (options.thumbnails_slidex === 0) { options.thumbnails_slidex = thumbnailsPerPage; } // Check if we need to do the slide if (check) { var thumbnailSlidePositionCopy = thumbnailSlidePosition; var thumbnailsScrolled = 0; while (thumbnailSlidePositionCopy < 0) { if (options.thumbnails_direction === 'horizontal') { thumbnailSlidePositionCopy += getElementWidth(jQuery(thumbnailArray[0])); } else { thumbnailSlidePositionCopy += getElementHeight(jQuery(thumbnailArray[0])); } thumbnailsScrolled++; } var firstVisible = thumbnailsScrolled; var lastVisible = thumbnailsPerPage + thumbnailsScrolled -1; // Check if the next active thumbnail is outside the visible area if (current_id >= firstVisible && current_id <= lastVisible) { doTheSlide = false; } // If the next active thumbnail is far away.. var distance; if ((current_id - lastVisible) > options.thumbnails_slidex) { distance = current_id - lastVisible; while (distance > options.thumbnails_slidex) { distance -= options.thumbnails_slidex; multiplySlidePosition++; } } else if ((firstVisible - current_id) > options.thumbnails_slidex) { distance = firstVisible - current_id; while (distance > options.thumbnails_slidex) { distance -= options.thumbnails_slidex; multiplySlidePosition++; } } else { multiplySlidePosition = 1; } } if (direction === 'forward' && doTheSlide) { if (options.thumbnails_direction === 'vertical' && options.content_height < (thumbnailStretch + thumbnailSlidePosition)) { thumbnailSlidePosition -= thumbnailHeightOrWidth * (options.thumbnails_slidex * multiplySlidePosition); } else if (options.thumbnails_direction === 'horizontal' && options.content_width < (thumbnailStretch + thumbnailSlidePosition)) { thumbnailSlidePosition -= thumbnailHeightOrWidth * (options.thumbnails_slidex * multiplySlidePosition); } else if (current_id === 0) { if (!backwardforward) { thumbnailSlidePosition = 0; } } if (options.thumbnails_direction === 'horizontal') { thumb_wrapper.animate({ left: thumbnailSlidePosition }, 300); } else { thumb_wrapper.animate({ top: thumbnailSlidePosition }, 300); } } else if (doTheSlide) { if (thumbnailSlidePosition < 0) { thumbnailSlidePosition += thumbnailHeightOrWidth * (options.thumbnails_slidex * multiplySlidePosition); } else if (current_id === content_count-1) { if (!backwardforward) { thumbnailSlidePosition -= thumbnailHeightOrWidth * (options.thumbnails_slidex * multiplySlidePosition); } } else { thumbnailSlidePosition = 0; } if (options.thumbnails_direction === 'horizontal') { thumb_wrapper.animate({ left: thumbnailSlidePosition }, 300); } else { thumb_wrapper.animate({ top: thumbnailSlidePosition }, 300); } } } // Displays the caption function displayCaption(container, fadeOut) { var caption = container.find('.showcase-caption'); if (!fadeOut) { if (options.show_caption === 'onload') { caption.show(); } else if (options.show_caption === 'onhover') { jQuery(container).mouseenter(function() { caption.fadeIn(300); }); jQuery(container).mouseleave(function() { caption.stop(true, true).fadeOut(100); }); } } else { caption.stop(true, true).hide(); } } // Displays the anchors in the current slide function displayAnchors(container, fadeOut) { // Get each anchor tooltip container.find('.showcase-tooltips a').each(function() { if (!fadeOut) { // Get coordinates var coords = jQuery(this).attr('coords'); coords = coords.split(','); // Style and position anchor jQuery(this).addClass('showcase-plus-anchor'); jQuery(this).css('position', 'absolute'); jQuery(this).css('display', 'none'); jQuery(this).css('width', options.tooltip_icon_width); jQuery(this).css('height', options.tooltip_icon_height); jQuery(this).css('left', parseInt(coords[0]) - (parseInt(options.tooltip_icon_width)/2)); jQuery(this).css('top', parseInt(coords[1]) - (parseInt(options.tooltip_icon_height)/2)); var content = jQuery(this).html(); jQuery(this).mouseenter(function() { animateTooltip(container, coords[0], coords[1], content); }); jQuery(this).mouseleave(function() { animateTooltip(container, coords[0], coords[1], content); }); jQuery(this).html(''); jQuery(this).fadeIn(300); } else { jQuery(this).stop(true, true).fadeOut(300); } }); } // Controls the animation for the tooltips var tooltip = null; function animateTooltip(container, x, y, content) { // if tooltip is null (doesn't exsist) if (tooltip === null) { // Create the tooltip tooltip = jQuery(document.createElement('div')) .addClass('showcase-tooltip') .css('display', 'none') .css('position', 'absolute') .css('max-width', options.tooltip_width) .html(content); container.append(tooltip); // Position the tooltip (this is where we try not to display the tooltip outside the content wrapper) var tooltip_paddingx = parseInt(tooltip.css('padding-right'))*2 + parseInt(tooltip.css('border-right-width'))*2; var tooltip_paddingy = parseInt(tooltip.css('padding-bottom'))*2 + parseInt(tooltip.css('border-bottom-width'))*2; lastx = parseInt(x) + tooltip.width() + tooltip_paddingx; lasty = parseInt(y) + tooltip.height() + tooltip_paddingy; if (lastx < options.content_width) { tooltip.css('left', parseInt(x) + parseInt(options.tooltip_offsetx)); } else { tooltip.css('left', (parseInt(x) - parseInt(options.tooltip_offsetx)) - (parseInt(tooltip.width()) + parseInt(options.tooltip_offsetx))); } if (lasty < options.content_height) { tooltip.css('top', parseInt(y) + parseInt(options.tooltip_offsety)); } else { tooltip.css('top', (parseInt(y) - parseInt(options.tooltip_offsety)) - (parseInt(tooltip.height()) + parseInt(tooltip_paddingy))); } // Fade in the tooltip tooltip.fadeIn(400); } else { // Fade out the tooltip tooltip.fadeOut(400); // Remove it from the DOM tooltip.remove(); // And set the variable to null tooltip = null; } } /* Returns the correct height for the element, including padding and borders. */ function getElementHeight(el, incHeight, incMargin, incPadding, incBorders) { incHeight = typeof(incHeight) !== 'undefined' ? incHeight : true; incMargin = typeof(incMargin) !== 'undefined' ? incMargin : true; incPadding = typeof(incPadding) !== 'undefined' ? incPadding : true; incBorders = typeof(incBorders) !== 'undefined' ? incBorders : true; var elHeight = (incHeight) ? jQuery((el)).height() : 0; var elMargin = (incMargin) ? parseFloat(jQuery((el)).css('margin-top')) + parseFloat(jQuery(el).css('margin-bottom')) : 0; var elPadding = (incPadding) ? parseFloat(jQuery((el)).css('padding-top')) + parseFloat(jQuery(el).css('padding-bottom')) : 0; var elBorder = (incBorders) ? parseFloat(jQuery((el)).css('border-top-width')) + parseFloat(jQuery((el)).css('border-bottom-width')) : 0; elHeight += elMargin + elPadding + elBorder; return elHeight; } /* Returns the correct width for the element, including width, margin, padding and borders. */ function getElementWidth(el, incWidth, incMargin, incPadding, incBorders) { incWidth = typeof(incWidth) !== 'undefined' ? incWidth : true; incMargin = typeof(incMargin) !== 'undefined' ? incMargin : true; incPadding = typeof(incPadding) !== 'undefined' ? incPadding : true; incBorders = typeof(incBorders) !== 'undefined' ? incBorders : true; var elWidth = (incWidth) ? jQuery((el)).width() : 0; var elMargin = (incMargin) ? parseFloat(jQuery((el)).css('margin-left')) + parseFloat(jQuery(el).css('margin-right')) : 0; var elPadding = (incPadding) ? parseFloat(jQuery((el)).css('padding-left')) + parseFloat(jQuery((el)).css('padding-right')) : 0; var elBorder = (incBorders) ? parseFloat(jQuery((el)).css('border-left-width')) + parseFloat(jQuery((el)).css('border-right-width')) : 0; elWidth += elMargin + elPadding + elBorder; return elWidth; } // Traces the mouse position (used for positioning anchors) if (options.mousetrace) { // Create the div tha displays the coordinates var mousetrace = jQuery(document.createElement('div')) .css('position', 'absolute') .css('top', '0') .css('background-color', '#fff') .css('color', '#000') .css('padding', '3px 5px') .css('x-index', '30') .html('X: 0 Y: 0'); showcase.append(mousetrace); var offset = showcase.offset(); // Print the coordinates content_container.mousemove(function(e){ mousetrace.html('X: ' + (e.pageX - offset.left) + ' Y: ' + (e.pageY - offset.top)); }); } // Show all content on one page $('#awOnePageButton').click(function showInOnePage() { if ($('.view-page').is(':visible')) { var temp_container = jQuery(document.createElement('div')); temp_container.addClass('showcase-onepage'); showcase.before(temp_container); // Disable auto change on click if (myInterval) { pause_loop = true; clearInterval(myInterval); } $(this).find('.view-page').hide(); $(this).find('.view-slide').show(); showcase.hide(); $.each(contentArray, function(index, value) { obj = getContent(index); obj.css('position', 'relative'); temp_container.append(obj); displayAnchors(obj); displayCaption(obj); if (options.dynamic_height) { obj.css('height', obj.find('.showcase-content').children().height()); } else { obj.css('height', options.content_height); } }); var clear = jQuery(document.createElement('div')); clear.addClass('clear'); temp_container.append(clear); } else { $('.showcase-onepage').remove(); $(this).find('.view-page').show(); $(this).find('.view-slide').hide(); showcase.show(); } return false; }); // The correct width is returned when all content is fully loaded. var addedContentArray = []; function updateContentViewlineWidth() { content_viewline_width = 0; content_container.children('div').each(function() { content_viewline_width += $(this).find('.showcase-content').children().width(); addedContentArray.push($(this)); }); } // Remove loading class showcase.removeClass('showcase-load'); }; })(jQuery); /* End */ ; ; /* Start:/bitrix/templates/index/js/common.js*/ // JavaScript Document $(document).ready(function(){ //ShowCAse slideshow on mainpage $("#showcase").awShowcase( { content_width: 690, content_height: 355, fit_to_parent: false, auto: true, interval: 4000, continuous: true, loading: true, tooltip_width: 200, tooltip_icon_width: 32, tooltip_icon_height: 32, tooltip_offsetx: 18, tooltip_offsety: 0, arrows: false, buttons: false, btn_numbers: false, keybord_keys: true, mousetrace: false, /* Trace x and y coordinates for the mouse */ pauseonover: true, stoponclick: true, transition: 'vslide', /* hslide/vslide/fade */ transition_delay: 300, transition_speed: 500, show_caption: 'onload', /* onload/onhover/show */ thumbnails: true, thumbnails_position: 'outside-last', /* outside-last/outside-first/inside-last/inside-first */ thumbnails_direction: 'vertical', /* vertical/horizontal */ thumbnails_slidex: 1, /* 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc. */ dynamic_height: false, /* For dynamic height to work in webkit you need to set the width and height of images in the source. Usually works to only set the dimension of the first slide in the showcase. */ speed_change: true, /* Set to true to prevent users from swithing more then one slide at once. */ viewline: false /* If set to true content_width, thumbnails, transition and dynamic_height will be disabled. As for dynamic height you need to set the width and height of images in the source. */ }); //$("#showcase").fadeIn(1000); // bye-bye CSS, hello JavaScript... var showmenu = false; $("body").bind("mousemove", function(){ showmenu = true; }) $(".navy_1 > li, .navy_2_wrapper .item_wrap").hover( function(){ if (showmenu) $(this).addClass("hover"); }, function(){ if (showmenu) $(this).removeClass("hover"); } ); // /bye-bye CSS, hello JavaScript... // Cycle scrollHorz fadeZoom if ($.fn.cycle) { $('.slider_list_b').cycle({ fx: 'scrollHorz', speed: 4000, timeout: 3000 }).each(function(){ if ($("li", this).length <= 1) $("#next_slide_b, #prev_slide_b").hide(); }); $('.g2_slider_list_b').cycle({ fx: 'scrollHorz', next: '#next_slide_b', prev: '#prev_slide_b', timeout: 0 }).each(function(){ if ($("li", this).length <= 1) $("#next_slide_b, #prev_slide_b").hide(); }); $('.slider_list_s').cycle({ fx: 'scrollHorz', next: '#next_slide_s', prev: '#prev_slide_s', timeout: 0, before: function(){ var country_name = $(this).children('.country').text(); var desc = $(this).children('.desc').html(); $('#slider_s_country').html(country_name); $('#slider_s_desc_text').html(desc); if (window.Cufon) Cufon.refresh(); } }).each(function(){ if ($("li", this).length <= 1) $("#next_slide_s, #prev_slide_s").hide(); }); } // Cufon if (window.Cufon) { Cufon.replace('.helios_thin_c', { fontFamily: 'HeliosThinC', hover: true}); Cufon.replace('.helios_cond_c', { fontFamily: 'HeliosCondC', hover: true}); Cufon.replace('.helios_light_c', { fontFamily: 'HeliosLightC', hover: true}); } // Fancybox if ( $('.show_popup').length > 0 ){ $('.show_popup').fancybox({ 'overlayColor' : '#f4f1e8', 'overlayOpacity': 0.9, 'margin' : 0, 'padding' : 0, 'titlePosition' : 'inside', 'titleFormat' : formatTitle }) } // Bottom gallery $('#img_s_list a').live('click', function(){ $('#img_b img').attr('src', $(this).attr('href')); $(this).siblings().removeClass('active').end().addClass('active'); return false; }) // Height var _height, galMaxHeight = 0; $("div.desc", "ul.slider_list_s").each(function(){ _height = $(this).height(); if (_height > galMaxHeight) galMaxHeight = _height; }); $('#slider_s_desc_text').height(galMaxHeight + 10); // Carousel if ( $('.l_gallery_carousel').length > 0 ){ $('.l_gallery_carousel').jcarousel({ scroll: 1 }); } }); function formatTitle(title, currentArray, currentIndex, currentOpts) { var title; $(currentArray[currentIndex]).children('div.custom_title').each(function(){ title = $(this).html(); }) return title; } /* End */ ; ; /* Start:/bitrix/templates/index/js/cufon-yui.js*/ /* * Copyright (c) 2009 Simo Kinnunen. * Licensed under the MIT license. * * @version 1.09i */ var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E0){E=" "+E}}else{if(B400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||JD){D=J}K.push(J)}if(ID){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?ML:(M<=I&&L<=I)?M>L:Mcufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;mO){O=K}if(I>N){N=I}if(K":{"d":"47,-197r209,85r0,7r-209,86r0,-13r189,-76r-189,-77r0,-12","w":302},"?":{"d":"157,-204v0,68,-77,66,-71,140r-12,0v-7,-78,71,-73,71,-139v0,-34,-22,-52,-61,-52v-40,0,-62,24,-61,68r-12,0v0,-51,28,-80,75,-80v43,0,71,25,71,63xm73,0r0,-31r14,0r0,31r-14,0","w":168},"@":{"d":"229,-129v-5,-24,-20,-37,-43,-37v-37,0,-65,38,-65,87v0,69,88,50,97,-3xm341,-138v1,59,-39,113,-96,115v-26,1,-38,-12,-33,-34v-21,52,-107,43,-107,-23v0,-55,37,-97,81,-97v23,0,39,11,46,32v7,-9,4,-28,23,-25r-29,119v0,11,8,17,22,17v46,-3,79,-53,79,-104v0,-63,-52,-108,-131,-108v-91,-1,-158,70,-157,156v0,77,56,128,144,128v39,0,79,-12,112,-34r4,6v-97,80,-281,29,-276,-103v4,-96,81,-163,175,-163v80,0,142,49,143,118","w":363},"A":{"d":"49,-100r113,0r-56,-147xm-2,0r101,-262r14,0r99,262r-12,0r-34,-89r-122,0r-34,89r-12,0","w":208,"k":{"\u0423":22,"\u0415":-7,"\u040e":22,"\u201d":47,"w":5,"v":5,"Y":22,"X":-7,"W":7,"V":7,"U":7,"T":13,"A":-7,";":-7,":":-7,".":-7,",":-7}},"B":{"d":"42,-11v73,0,156,12,156,-61v0,-65,-85,-60,-156,-59r0,120xm42,-141v66,2,150,4,143,-57v7,-62,-79,-53,-143,-53r0,110xm210,-70v2,81,-95,71,-180,70r0,-262v78,-1,169,-10,167,65v0,28,-16,50,-45,60v39,8,58,29,58,67","w":224,"k":{"\u0423":13,"\u0405":-7,"\u040e":13,"Y":13,"W":7,"V":7,"S":-7,"O":-7,"G":-7,"C":-7}},"C":{"d":"228,-87v-3,57,-42,92,-101,92v-68,0,-109,-49,-109,-135v0,-87,43,-137,111,-137v53,0,94,32,99,81r-13,0v-8,-45,-39,-70,-88,-70v-57,0,-96,46,-96,126v0,79,37,125,94,125v53,0,88,-32,91,-82r12,0","w":247,"k":{"\u0405":-7,"\u201d":-13,"S":-7,";":-7,":":-7}},"D":{"d":"232,-131v0,95,-44,134,-142,131r-60,0r0,-262r60,0v97,-4,142,38,142,131xm219,-131v-2,-82,-40,-124,-126,-119r-51,0r0,239v110,8,179,-13,177,-120","w":250,"k":{"\u0423":7,"\u0415":3,"\u040e":7,"Y":7,"W":-3,"V":3,"A":3,".":13,",":13}},"E":{"d":"30,0r0,-262r159,0r0,12r-147,0r0,108r135,0r0,11r-135,0r0,119r151,0r0,12r-163,0","w":206,"k":{".":-7,",":-7}},"F":{"d":"30,0r0,-262r153,0r0,12r-141,0r0,108r124,0r0,11r-124,0r0,131r-12,0","w":190,"k":{"\u0435":8,"\u0415":15,"\u201d":-7,"u":8,"r":7,"e":8,"a":8,"T":-7,"A":15,";":13,":":13,".":55,",":55}},"G":{"d":"228,0r0,-51v-19,39,-51,57,-96,57v-69,0,-113,-52,-113,-137v0,-85,43,-136,113,-136v58,0,95,29,102,79r-12,0v-9,-44,-41,-68,-90,-68v-61,0,-100,47,-100,125v0,78,39,126,100,126v62,0,97,-42,94,-109r-86,0r0,-11r98,0r0,125r-10,0","w":258,"k":{"\u0423":3,"\u040e":3,"Y":3,"T":7}},"H":{"d":"30,0r0,-262r12,0r0,117r165,0r0,-117r13,0r0,262r-13,0r0,-134r-165,0r0,134r-12,0","w":249},"I":{"d":"32,0r0,-262r12,0r0,262r-12,0","w":75},"J":{"d":"132,-262r13,0r0,186v0,55,-19,82,-67,82v-46,1,-68,-33,-64,-88r12,0v-5,46,13,77,53,77v43,0,53,-26,53,-75r0,-182","w":172,"k":{".":8,",":8}},"K":{"d":"30,0r0,-262r12,0r0,148r145,-148r16,0r-104,105r120,157r-15,0r-113,-148r-49,50r0,98r-12,0","w":211,"k":{"\u0435":7,"\u0423":3,"\u0415":-10,"\u040e":3,"u":7,"e":7,"a":-7,"Y":3,"W":7,"U":13,"O":10,"C":10,"A":-10,".":-7,",":-7}},"L":{"d":"30,0r0,-262r12,0r0,250r139,0r0,12r-151,0","w":185,"k":{"\u0423":37,"\u040e":37,"\u201d":80,"Y":37,"W":12,"V":23,"U":7,"T":30,"O":13,".":-10,",":-10}},"M":{"d":"30,0r0,-262r17,0r94,247r93,-247r17,0r0,262r-11,0r0,-246r-94,246r-11,0r-94,-246r0,246r-11,0","w":281},"N":{"d":"30,0r0,-262r12,0r164,241r0,-241r12,0r0,262r-12,0r-164,-240r0,240r-12,0","w":247,"k":{";":7,":":7}},"O":{"d":"19,-131v0,-85,44,-136,116,-136v72,0,116,51,116,136v0,85,-44,137,-116,137v-72,0,-116,-52,-116,-137xm32,-131v0,78,39,126,103,126v64,0,103,-48,103,-126v0,-78,-39,-125,-103,-125v-64,0,-103,47,-103,125","w":269,"k":{"\u0423":7,"\u040e":7,"Y":7,".":15,",":15}},"P":{"d":"183,-194v0,-63,-73,-58,-141,-57r0,119v71,1,141,8,141,-62xm195,-193v0,75,-74,76,-153,72r0,121r-12,0r0,-262v78,-2,165,-4,165,69","w":209,"k":{"\u0435":10,"\u0423":3,"\u0415":27,"\u0455":10,"\u040e":3,"\u201d":-7,"u":-3,"s":10,"e":10,"a":10,"Y":3,"W":-3,"A":27,";":7,":":7,".":87,",":87}},"Q":{"d":"161,-46r7,-8r33,26v23,-22,37,-57,37,-103v0,-78,-39,-126,-103,-126v-64,0,-103,48,-103,126v0,104,83,152,160,110xm238,17r-37,-30v-83,50,-182,-2,-182,-118v0,-86,44,-136,116,-136v71,0,116,50,116,133v0,49,-14,87,-41,114r35,29","w":269,"k":{".":12,",":12}},"R":{"d":"194,-192v0,-72,-81,-58,-152,-58r0,115v67,1,152,10,152,-57xm30,0r0,-262v80,0,176,-13,176,69v0,33,-15,54,-47,64v53,1,28,107,48,129v-41,6,-7,-83,-33,-109v-23,-23,-87,-12,-132,-15r0,124r-12,0","w":226},"S":{"d":"180,-66v1,-90,-159,-41,-157,-133v0,-40,30,-68,79,-68v49,0,83,31,83,76r-11,0v0,-41,-30,-66,-73,-66v-41,0,-66,23,-66,58v0,82,157,39,157,130v0,45,-33,75,-87,75v-51,0,-84,-32,-88,-86r11,0v3,46,34,75,78,75v45,0,74,-26,74,-61","w":208,"k":{"\u0405":-7,"S":-7}},"T":{"d":"87,0r0,-250r-82,0r0,-12r176,0r0,12r-81,0r0,250r-13,0","w":185,"k":{"\u0435":48,"\u0415":13,"\u0455":48,"w":47,"u":47,"s":48,"r":35,"i":5,"e":48,"a":48,"T":-8,"C":7,"A":13,";":47,":":47,".":53,",":53}},"U":{"d":"28,-262r12,0r0,165v0,60,29,92,82,92v53,0,82,-33,82,-92r0,-165r12,0r0,171v0,61,-36,97,-94,97v-59,0,-94,-35,-94,-97r0,-171","w":243,"k":{"\u0415":7,"A":7,";":7,":":7,".":13,",":13}},"V":{"d":"90,0r-91,-262r13,0r84,244r83,-244r13,0r-91,262r-11,0","w":191,"k":{"\u0435":13,"\u0415":7,"\u201d":-13,"u":7,"e":13,"a":13,"A":7,";":10,":":10,".":47,",":47}},"W":{"d":"73,0r-70,-262r12,0r64,240r64,-240r14,0r64,240r63,-240r13,0r-70,262r-12,0r-65,-244r-65,244r-12,0","w":299,"k":{"\u0435":7,"\u0415":7,"\u201d":-7,"u":-5,"i":-7,"e":7,"a":7,"A":7,";":5,":":5,".":30,",":30}},"X":{"d":"0,0r89,-134r-85,-128r15,0r77,118r78,-118r14,0r-84,128r89,134r-14,0r-83,-123r-82,123r-14,0","w":192,"k":{"\u0435":10,"\u0415":-7,"e":10,"C":7,"A":-7,";":7,":":7,".":-7,",":-7}},"Y":{"d":"90,0r0,-116r-90,-146r14,0r83,134r81,-134r14,0r-90,147r0,115r-12,0","w":192,"k":{"\u0435":33,"\u0415":22,"u":27,"e":33,"a":33,"O":7,"C":7,"A":22,";":32,":":32,".":60,",":60}},"Z":{"d":"3,0r0,-12r168,-238r-153,0r0,-12r166,0r0,13r-167,238r172,0r0,11r-186,0","w":192,"k":{";":-7,":":-7,".":-7,",":-7}},"[":{"d":"103,75r-61,0r0,-336r61,0r0,11r-48,0r0,314r48,0r0,11","w":109},"\\":{"d":"-5,-269r13,0r103,299r-13,0","w":105},"]":{"d":"8,75r0,-11r49,0r0,-314r-49,0r0,-11r61,0r0,336r-61,0","w":109},"^":{"d":"173,-258r17,0r98,97r-20,0r-86,-85r-87,85r-19,0","w":363},"_":{"d":"0,76r181,0r0,10r-181,0r0,-10","w":181},"`":{"d":"111,-212r-11,0r-45,-59r19,0","w":181},"a":{"d":"93,-194v43,0,63,19,63,61r0,92v0,27,5,36,24,32r0,10v-24,4,-36,-5,-35,-33v-23,46,-132,54,-132,-17v0,-36,24,-50,75,-57v48,-7,57,0,57,-38v0,-26,-18,-39,-51,-39v-38,0,-60,17,-62,47r-11,0v1,-35,28,-58,72,-58xm72,-7v54,-1,82,-36,73,-101v-5,7,-22,8,-49,11v-48,6,-72,16,-72,46v0,28,17,44,48,44","w":184},"b":{"d":"25,0r0,-261r12,0r0,115v13,-31,37,-47,71,-47v51,0,83,37,83,99v0,103,-118,133,-154,54r0,40r-12,0xm37,-94v0,56,28,89,71,89v43,0,72,-33,72,-89v0,-56,-29,-89,-72,-89v-43,0,-71,33,-71,89","w":208},"c":{"d":"172,-61v-4,41,-33,66,-74,66v-49,0,-82,-37,-82,-99v0,-62,32,-99,83,-99v40,0,67,22,72,59r-12,0v-5,-30,-28,-49,-60,-49v-43,0,-71,33,-71,89v0,100,121,118,134,33r10,0"},"d":{"d":"183,-261r0,261r-12,0r0,-42v-12,31,-36,47,-71,47v-51,0,-83,-37,-83,-99v0,-62,32,-99,83,-99v35,0,60,17,71,45r0,-113r12,0xm171,-94v0,-56,-28,-89,-71,-89v-43,0,-72,33,-72,89v0,56,29,89,72,89v43,0,71,-33,71,-89","w":208},"e":{"d":"171,-56v-8,37,-38,61,-75,61v-48,0,-80,-37,-80,-99v0,-62,32,-99,80,-99v51,0,81,37,79,99r-147,0v-9,97,109,118,132,38r11,0xm28,-104r135,0v0,-49,-28,-79,-65,-79v-40,0,-67,29,-70,79","w":190},"f":{"d":"81,-263v0,6,1,12,-7,10v-33,-5,-25,34,-26,64r32,0r0,11r-32,0r0,178r-11,0r0,-178r-26,0r0,-11r26,0v-1,-43,-2,-82,44,-74","w":88,"k":{"\u201d":-13,".":7,",":7}},"g":{"d":"98,65v59,1,80,-40,73,-106v-12,29,-38,46,-72,46v-50,0,-82,-38,-82,-100v0,-62,32,-99,83,-99v35,0,61,19,71,47r0,-42r12,0r0,178v3,55,-32,87,-88,86v-43,0,-71,-23,-71,-56r11,0v1,28,24,46,63,46xm171,-95v0,-56,-28,-88,-71,-88v-43,0,-72,32,-72,88v0,56,29,89,72,89v43,0,71,-33,71,-89","w":208},"h":{"d":"101,-183v-83,0,-62,101,-64,183r-12,0r0,-262r12,0r0,104v12,-22,33,-35,63,-35v91,0,60,112,65,193r-11,0v-7,-71,27,-183,-53,-183"},"i":{"d":"26,-231r0,-31r12,0r0,31r-12,0xm26,0r0,-189r12,0r0,189r-12,0","w":63},"j":{"d":"26,-189r12,0r0,219v1,36,-7,48,-41,46v1,-4,-3,-14,4,-12v24,0,25,-9,25,-38r0,-215xm26,-231r0,-30r12,0r0,30r-12,0","w":63},"k":{"d":"25,0r0,-262r12,0r0,181r108,-108r15,0r-69,69r80,120r-13,0r-75,-112r-46,45r0,67r-12,0","w":166},"l":{"d":"26,0r0,-262r12,0r0,262r-12,0","w":63},"m":{"d":"95,-183v-77,0,-55,105,-58,183r-12,0r0,-189r12,0r0,31v18,-46,104,-47,115,4v13,-25,33,-39,61,-39v84,0,56,116,60,193r-12,0v-7,-71,27,-183,-48,-183v-78,0,-57,104,-59,183r-11,0v-7,-71,27,-183,-48,-183","w":297},"n":{"d":"101,-183v-83,0,-62,101,-64,183r-12,0r0,-189r12,0r0,31v12,-22,33,-35,63,-35v91,0,60,112,65,193r-11,0v-7,-71,27,-183,-53,-183"},"o":{"d":"16,-94v0,-62,32,-99,83,-99v51,0,83,37,83,99v0,62,-32,99,-83,99v-51,0,-83,-37,-83,-99xm28,-94v0,56,28,88,71,88v43,0,72,-32,72,-88v0,-56,-29,-89,-72,-89v-43,0,-71,33,-71,89","w":198},"p":{"d":"25,75r0,-264r12,0r0,43v12,-31,36,-47,71,-47v51,0,83,37,83,99v0,104,-122,133,-154,53r0,116r-12,0xm37,-94v0,56,28,88,71,88v43,0,72,-32,72,-88v0,-56,-29,-89,-72,-89v-43,0,-71,33,-71,89","w":208,"k":{"\u0423":13}},"q":{"d":"171,-41v-12,30,-36,46,-71,46v-51,0,-83,-37,-83,-99v0,-105,123,-133,154,-51r0,-44r12,0r0,264r-12,0r0,-116xm28,-94v0,56,29,89,72,89v43,0,71,-33,71,-89v0,-56,-28,-89,-71,-89v-43,0,-72,33,-72,89","w":208},"r":{"d":"25,0r0,-189r12,0r0,34v10,-25,28,-38,56,-38r0,12v-73,-5,-53,107,-56,181r-12,0","w":95,"k":{".":33,",":33}},"s":{"d":"145,-49v0,-58,-122,-30,-122,-94v0,-28,25,-50,65,-50v36,0,61,21,64,54r-12,0v2,-57,-106,-56,-105,-6v1,59,122,32,122,96v0,31,-27,54,-67,54v-42,0,-68,-23,-72,-62r11,0v0,63,116,68,116,8","w":174},"t":{"d":"46,-41v-3,35,7,37,35,35r0,11v-30,2,-46,-1,-46,-35r0,-149r-33,0r0,-10r33,0r0,-51r11,0r0,51r35,0r0,10r-35,0r0,138","w":88},"u":{"d":"89,-6v85,0,61,-101,64,-183r11,0r0,189r-11,0r0,-30v-24,53,-129,48,-129,-33r0,-126r12,0v7,70,-28,183,53,183"},"v":{"d":"73,0r-70,-189r12,0r65,175r67,-175r12,0r-73,189r-13,0","w":161,"k":{".":30,",":30}},"w":{"d":"64,0r-59,-189r12,0r54,171r45,-171r10,0r46,171r55,-171r11,0r-60,189r-12,0r-45,-168r-45,168r-12,0","w":243,"k":{".":23,",":23}},"x":{"d":"12,0r-14,0r69,-98r-66,-91r14,0r60,82r58,-82r13,0r-65,91r70,98r-13,0r-64,-89","w":149},"y":{"d":"74,28v-14,37,-25,55,-56,45r0,-11v39,14,42,-37,54,-61r-70,-190r11,0r65,175r66,-175r12,0","w":158},"z":{"d":"6,0r0,-14r131,-164r-124,0r0,-11r136,0r0,14r-131,164r135,0r0,11r-147,0","w":158},"{":{"d":"144,-262v8,-2,6,6,6,12v-95,-19,-8,140,-83,156v42,9,34,58,34,107v0,39,10,49,49,48v0,6,2,14,-6,12v-65,7,-58,-49,-58,-109v1,-40,-14,-54,-54,-52r0,-13v105,26,1,-178,112,-161","w":181},"|":{"d":"84,-278r13,0r0,364r-13,0r0,-364","w":181},"}":{"d":"32,-250v0,0,-2,-15,7,-12v65,-7,56,51,56,110v0,40,18,56,55,51r0,13v-111,-22,5,181,-118,161r0,-12v95,20,8,-140,84,-155v-42,-9,-35,-58,-35,-107v0,-40,-10,-50,-49,-49","w":181},"~":{"d":"100,-127v34,1,71,26,103,26v21,0,42,-11,68,-29r0,13v-24,17,-47,27,-68,27v-38,0,-69,-25,-103,-26v-22,0,-42,11,-68,29r0,-13v24,-17,46,-27,68,-27","w":302},"\u0402":{"d":"97,-120r0,120r-12,0r0,-250r-83,0r0,-12r191,0r0,12r-96,0r0,118v61,-18,162,-25,159,64v-2,70,-56,86,-115,65r5,-10v48,20,95,4,98,-48v5,-85,-94,-79,-147,-59","w":280,"k":{"\u044f":21,"\u044e":26,"\u044d":31,"\u044c":24,"\u0449":24,"\u0448":24,"\u0447":24,"\u0446":24,"\u0444":24,"\u0443":31,"\u0441":35,"\u0440":24,"\u043f":24,"\u043e":35,"\u043d":24,"\u043c":24,"\u043b":19,"\u043a":24,"\u0438":24,"\u0437":30,"\u0436":24,"\u0434":32,"\u0433":24,"\u0432":24,"\u0431":27,"\u0430":35,"\u0424":16,"\u0414":30,"\u0410":27,"\u045e":31,"\u0453":24,"y":31,"p":24,"o":35,"c":35}},"\u0403":{"d":"30,-262r151,0r0,12r-139,0r0,250r-12,0r0,-262xm91,-275r38,-59r19,0r-45,59r-12,0","w":185},"\u0453":{"d":"25,0r0,-189r128,0r0,10r-116,0r0,179r-12,0xm80,-198r26,-33r20,0r-35,33r-11,0","w":155,"k":{"\u043b":19,"\u0437":8,"\u0434":30,"\u0430":8}},"\u2026":{"d":"54,0r0,-31r11,0r0,31r-11,0xm175,0r0,-31r11,0r0,31r-11,0xm296,0r0,-31r11,0r0,31r-11,0","w":363},"\u0409":{"d":"212,-141v81,-3,160,-5,160,72v0,75,-92,71,-172,69r0,-251r-141,0r0,124v-1,48,-2,141,-64,126r0,-13v55,18,52,-78,52,-123r0,-125r165,0r0,121xm359,-68v0,-72,-74,-63,-147,-62r0,119v0,0,147,10,147,-57","w":379},"\u040a":{"d":"380,-69v0,76,-93,71,-173,69r0,-134r-165,0r0,134r-12,0r0,-262r12,0r0,117r165,0r0,-117r13,0r0,117v80,-3,160,-2,160,76xm367,-68v0,-72,-74,-67,-147,-66r0,123v0,0,147,10,147,-57","w":393},"\u040c":{"d":"30,0r0,-262r12,0r0,148r145,-148r16,0r-104,105r120,157r-15,0r-113,-148r-49,50r0,98r-12,0xm95,-275r37,-59r20,0r-45,59r-12,0","w":211},"\u040b":{"d":"100,-120r0,120r-13,0r0,-250r-82,0r0,-12r190,0r0,12r-95,0r0,118v61,-19,160,-23,159,64r0,68r-12,0r0,-67v3,-79,-97,-72,-147,-53","w":280,"k":{"\u044f":21,"\u044e":26,"\u044d":31,"\u044c":24,"\u0449":24,"\u0448":24,"\u0447":24,"\u0446":24,"\u0444":24,"\u0443":31,"\u0441":35,"\u0440":24,"\u043f":24,"\u043e":35,"\u043d":24,"\u043c":24,"\u043b":19,"\u043a":24,"\u0438":24,"\u0437":30,"\u0436":24,"\u0434":32,"\u0433":24,"\u0432":24,"\u0431":27,"\u0430":35,"\u0424":16,"\u0414":30,"\u0410":27,"\u045e":31,"\u0453":24,"y":31,"p":24,"o":35,"c":35}},"\u040f":{"d":"30,0r0,-261r12,0r0,250r166,0r0,-250r12,0r0,261r-89,0r0,66r-11,0r0,-66r-90,0","w":249},"\u0452":{"d":"104,-182v-83,0,-62,101,-64,182r-11,0r0,-220r-20,0r0,-10r20,0r0,-32r11,0r0,32r63,0r0,10r-63,0r0,62v24,-53,129,-48,129,33r0,154v1,36,-7,48,-41,46v1,-4,-3,-13,4,-11v24,0,25,-10,25,-39r0,-147v0,-42,-15,-60,-53,-60","w":193},"\u2018":{"d":"62,-190r-13,0r-25,-71r12,0","w":86},"\u2019":{"d":"24,-190r25,-71r13,0r-26,71r-12,0","w":86},"\u201c":{"d":"62,-190r-13,0r-25,-71r12,0xm114,-190r-12,0r-26,-71r13,0","w":138,"k":{"\u0416":53,"\u0415":47,"J":80,"A":47}},"\u201d":{"d":"24,-190r25,-71r13,0r-26,71r-12,0xm76,-190r26,-71r12,0r-25,71r-13,0","w":138},"\u2013":{"d":"0,-90r0,-8r181,0r0,8r-181,0","w":181},"\u2014":{"d":"0,-98r364,0r0,8r-364,0r0,-8","w":363},"\u2122":{"d":"50,-258r73,0r0,7r-30,0r0,86r-11,0r0,-86r-32,0r0,-7xm147,-258r15,0r32,81r30,-81r16,0r0,93r-9,0r0,-86r-33,86r-8,0r-34,-86r0,86r-9,0r0,-93","w":302},"\u0459":{"d":"51,-178v-5,66,21,192,-49,179r0,-10v58,9,32,-116,38,-180r123,0r0,85v57,-2,119,-2,119,51v0,59,-69,55,-130,53r0,-178r-101,0xm163,-94r0,84v49,1,107,7,107,-43v0,-45,-58,-42,-107,-41","w":294},"\u045a":{"d":"165,-103v57,-2,119,-2,119,50v0,59,-69,55,-130,53r0,-93r-117,0r0,93r-12,0r0,-189r12,0r0,86r117,0r0,-86r11,0r0,86xm272,-53v0,-45,-59,-41,-107,-40r0,83v50,1,107,6,107,-43","w":295},"\u045c":{"d":"25,0r0,-189r12,0r0,108r108,-108r14,0r-68,69r80,120r-13,0r-75,-112r-46,45r0,67r-12,0xm73,-198r26,-32r20,0v-16,10,-20,32,-46,32","w":166},"\u045b":{"d":"104,-182v-83,0,-62,101,-64,182r-11,0r0,-220r-20,0r0,-10r20,0r0,-31r11,0r0,31r63,0r0,10r-63,0r0,62v24,-53,129,-48,129,33r0,125r-12,0v-7,-70,27,-182,-53,-182","w":193},"\u045f":{"d":"25,0r0,-189r12,0r0,179r116,0r0,-179r12,0r0,189r-64,0r0,48r-11,0r0,-48r-65,0"},"\u040e":{"d":"14,-262r90,203r74,-203r14,0r-90,236v-12,28,-25,35,-55,31r0,-11v32,8,42,-15,51,-40r-98,-216r14,0xm55,-324v2,26,16,38,40,38v23,0,38,-12,40,-38r10,0v0,28,-17,48,-50,48v-33,0,-50,-20,-50,-48r10,0","w":192,"k":{"\u0435":33,"\u0415":22,"u":27,"e":33,"a":33,"O":7,"C":7,"A":22,";":32,":":32,".":60,",":60}},"\u045e":{"d":"74,28v-15,37,-21,51,-56,48r0,-14v40,14,42,-37,54,-62r-70,-189r11,0r65,175r66,-175r12,0xm44,-261v2,26,16,38,40,38v23,0,37,-12,39,-38r11,0v0,31,-17,49,-50,49v-33,0,-51,-18,-51,-49r11,0","w":158},"\u0408":{"d":"14,-82r12,0v-5,46,13,77,53,77v43,0,53,-26,53,-75r0,-182r13,0r0,186v0,55,-19,82,-67,82v-46,1,-68,-33,-64,-88","w":172},"\u0490":{"d":"30,-262r140,0r0,-62r11,0r0,74r-139,0r0,250r-12,0r0,-262","w":185},"\u0401":{"d":"30,0r0,-261r159,0r0,12r-147,0r0,108r135,0r0,11r-135,0r0,118r151,0r0,12r-163,0xm76,-302r0,-20r16,0r0,20r-16,0xm132,-302r0,-20r16,0r0,20r-16,0","w":206},"\u0404":{"d":"158,-145r0,11r-126,0v-1,80,35,129,93,129v53,0,88,-32,91,-82r12,0v-3,57,-42,92,-101,92v-68,0,-109,-49,-109,-135v0,-87,43,-137,111,-137v53,0,94,32,99,81r-13,0v-8,-45,-39,-70,-88,-70v-53,0,-90,40,-95,111r126,0","w":247},"\u0407":{"d":"32,0r0,-262r12,0r0,262r-12,0xm12,-293r0,-31r12,0r0,31r-12,0xm51,-293r0,-31r12,0r0,31r-12,0","w":75},"\u0406":{"d":"32,0r0,-262r12,0r0,262r-12,0","w":75},"\u0456":{"d":"26,-231r0,-30r11,0r0,30r-11,0xm26,0r0,-189r11,0r0,189r-11,0","w":63},"\u0491":{"d":"25,0r0,-189r118,0r0,-41r10,0r0,51r-116,0r0,179r-12,0","w":155},"\u0451":{"d":"171,-55v-8,37,-38,60,-75,60v-48,0,-80,-37,-80,-99v0,-62,32,-99,80,-99v51,0,81,37,79,100r-147,0v-9,96,109,118,132,38r11,0xm28,-104r135,0v0,-49,-28,-79,-65,-79v-40,0,-67,30,-70,79xm60,-228r0,-20r17,0r0,20r-17,0xm117,-228r0,-20r16,0r0,20r-16,0","w":190},"\u0454":{"d":"118,-103r0,10r-90,0v-11,100,121,118,134,32r10,0v-4,41,-33,66,-74,66v-49,0,-82,-37,-82,-99v0,-62,32,-99,83,-99v40,0,67,22,72,59r-12,0v-5,-30,-28,-49,-60,-49v-40,0,-68,30,-71,80r90,0"},"\u0458":{"d":"26,-189r12,0r0,218v1,36,-7,48,-41,46v1,-4,-3,-13,4,-11v24,0,25,-10,25,-39r0,-214xm26,-231r0,-30r12,0r0,30r-12,0","w":63},"\u0405":{"d":"180,-66v1,-90,-159,-41,-157,-133v0,-40,30,-68,79,-68v49,0,83,31,83,76r-11,0v0,-41,-30,-66,-73,-66v-41,0,-66,23,-66,58v0,82,157,39,157,130v0,45,-33,75,-87,75v-51,0,-84,-32,-88,-86r11,0v3,46,34,75,78,75v45,0,74,-26,74,-61","w":208,"k":{"\u0405":-7,"S":-7}},"\u0455":{"d":"35,-144v3,61,122,28,122,95v0,31,-27,54,-67,54v-42,0,-68,-22,-72,-61r11,0v0,63,116,66,116,7v0,-57,-122,-28,-122,-94v0,-28,25,-50,65,-50v36,0,61,21,64,54r-12,0v2,-58,-107,-56,-105,-5","w":174},"\u0457":{"d":"26,0r0,-189r11,0r0,189r-11,0xm7,-231r0,-31r11,0r0,31r-11,0xm45,-231r0,-31r12,0r0,31r-12,0","w":63},"\u0410":{"d":"49,-100r113,0r-56,-147xm-2,0r101,-262r14,0r99,262r-12,0r-34,-89r-122,0r-34,89r-12,0","w":208,"k":{"\u0447":13,"\u0427":22,"\u0422":22,"\u040b":22,"\u0402":22}},"\u0411":{"d":"40,-11v69,0,148,9,148,-57v0,-79,-78,-59,-148,-62r0,119xm200,-69v0,75,-92,71,-172,69r0,-262r160,0r0,11r-148,0r0,110v78,0,160,-9,160,72","w":214},"\u0412":{"d":"42,-11v73,0,156,12,156,-61v0,-65,-85,-60,-156,-59r0,120xm42,-141v66,2,150,4,143,-57v7,-62,-79,-53,-143,-53r0,110xm210,-70v2,81,-95,71,-180,70r0,-262v78,-1,169,-10,167,65v0,28,-15,52,-50,60v43,4,63,29,63,67","w":224},"\u0413":{"d":"30,-262r151,0r0,12r-139,0r0,250r-12,0r0,-262","w":185,"k":{"\u044f":54,"\u044e":59,"\u044d":57,"\u044b":51,"\u0449":55,"\u0448":55,"\u0447":49,"\u0446":51,"\u0445":27,"\u0444":76,"\u0443":38,"\u0442":58,"\u0441":66,"\u0440":66,"\u043f":60,"\u043e":78,"\u043d":73,"\u043c":71,"\u043b":58,"\u043a":46,"\u0438":48,"\u0437":58,"\u0436":63,"\u0435":54,"\u0434":71,"\u0432":67,"\u0431":32,"\u0430":63,"\u042d":11,"\u0424":38,"\u0421":32,"\u041e":35,"\u041b":30,"\u0414":38,"\u0410":40,"\u045e":38,"y":38,"x":27,"p":46,"o":54,"c":49}},"\u0414":{"d":"207,-251r-137,0v-1,82,9,199,-26,240r163,0r0,-240xm9,-11r21,0v36,-30,27,-167,28,-250r162,0r0,250r25,0r0,74r-12,0r0,-63r-212,0r0,63r-12,0r0,-74","w":250},"\u0415":{"d":"30,0r0,-262r159,0r0,12r-147,0r0,108r135,0r0,11r-135,0r0,119r151,0r0,12r-163,0","w":206,"k":{"\u0423":22,"\u040e":22,"\u201d":47,"w":5,"v":5,"Y":22,"X":-7,"W":7,"V":7,"U":7,"T":13,"A":-7,":":-7,".":-7}},"\u0416":{"d":"217,-145r-43,47r0,98r-13,0r0,-98r-43,-47r-110,145r-15,0r117,-154r-101,-108r15,0r137,148r0,-148r13,0r0,148r137,-148r15,0r-101,108r117,154r-15,0","w":334,"k":{".":-7}},"\u0417":{"d":"88,-131r0,-10v59,4,95,-21,95,-58v0,-38,-34,-57,-72,-57v-42,0,-77,27,-79,65r-12,0v3,-43,39,-76,90,-76v95,0,116,116,31,130v40,5,65,33,65,68v0,54,-44,75,-94,75v-58,0,-95,-32,-98,-86r12,0v3,46,38,75,85,75v41,0,82,-15,82,-64v0,-43,-43,-65,-105,-62","w":219},"\u0418":{"d":"218,0r-12,0r0,-240r-164,240r-12,0r0,-262r12,0r0,241r164,-241r12,0r0,262","w":247},"\u0419":{"d":"218,0r-12,0r0,-240r-164,240r-12,0r0,-261r12,0r0,240r164,-240r12,0r0,261xm73,-324r12,0v0,25,13,38,39,38v24,0,39,-13,39,-38r12,0v0,26,-20,49,-51,49v-34,0,-51,-21,-51,-49","w":247},"\u041a":{"d":"30,0r0,-262r12,0r0,148r145,-148r16,0r-104,105r120,157r-15,0r-113,-148r-49,50r0,98r-12,0","w":211},"\u041b":{"d":"-5,-14v52,15,52,-59,52,-128r0,-120r165,0r0,262r-12,0r0,-251r-141,0r0,125v-2,58,-5,138,-64,125r0,-13","w":241},"\u041c":{"d":"30,0r0,-262r17,0r94,247r93,-247r17,0r0,262r-11,0r0,-246r-94,246r-11,0r-94,-246r0,246r-11,0","w":281},"\u041d":{"d":"30,0r0,-262r12,0r0,117r165,0r0,-117r13,0r0,262r-13,0r0,-134r-165,0r0,134r-12,0","w":249},"\u041e":{"d":"19,-131v0,-85,44,-136,116,-136v72,0,116,51,116,136v0,85,-44,137,-116,137v-72,0,-116,-52,-116,-137xm32,-131v0,78,39,126,103,126v64,0,103,-48,103,-126v0,-78,-39,-125,-103,-125v-64,0,-103,47,-103,125","w":269},"\u041f":{"d":"30,0r0,-262r190,0r0,262r-13,0r0,-251r-165,0r0,251r-12,0","w":249},"\u0420":{"d":"183,-194v0,-63,-73,-58,-141,-57r0,119v71,1,141,8,141,-62xm195,-193v0,75,-74,76,-153,72r0,121r-12,0r0,-262v78,-2,165,-4,165,69","w":209,"k":{"\u0423":7,"\u040e":7,"Y":7,"W":-3,"V":3,"A":3,".":13}},"\u0421":{"d":"228,-87v-3,57,-42,92,-101,92v-68,0,-109,-49,-109,-135v0,-87,43,-137,111,-137v53,0,94,32,99,81r-13,0v-8,-45,-39,-70,-88,-70v-57,0,-96,46,-96,126v0,79,37,125,94,125v53,0,88,-32,91,-82r12,0","w":247},"\u0422":{"d":"87,0r0,-250r-82,0r0,-12r176,0r0,12r-81,0r0,250r-13,0","w":185,"k":{"\u044f":21,"\u044e":26,"\u044d":31,"\u044c":24,"\u0449":24,"\u0448":24,"\u0447":24,"\u0446":24,"\u0444":24,"\u0443":31,"\u0441":35,"\u0440":24,"\u043f":24,"\u043e":35,"\u043d":24,"\u043c":24,"\u043b":19,"\u043a":24,"\u0438":24,"\u0437":30,"\u0436":24,"\u0434":32,"\u0433":24,"\u0432":24,"\u0431":27,"\u0430":35,"\u0424":16,"\u0414":30,"\u0410":27,"\u045e":31,"\u0453":24,"y":31,"p":24,"o":35,"c":35}},"\u0423":{"d":"14,-262r90,203r74,-203r14,0r-90,236v-12,28,-25,35,-55,31r0,-11v32,8,42,-15,51,-40r-98,-216r14,0","w":192,"k":{"\u044e":3,"\u044d":22,"\u0448":13,"\u0440":13,"\u043c":11,"\u043b":5,"\u0438":8,"\u0435":33,"\u0434":27,"\u0415":22,"u":27,"p":13,"e":33,"a":33,"O":7,"C":7,"A":22,";":32,":":32,".":60,",":60}},"\u0424":{"d":"143,0r0,-33v-70,0,-130,-30,-130,-103v0,-65,49,-102,130,-102r0,-29r12,0r0,29v81,0,129,37,129,102v0,73,-59,103,-129,103r0,33r-12,0xm143,-45r0,-182v-63,0,-117,26,-117,91v0,65,50,91,117,91xm155,-227r0,182v67,0,116,-26,116,-91v0,-65,-53,-91,-116,-91","w":298,"k":{"\u0422":24,"\u040b":24,"\u0402":24}},"\u0425":{"d":"0,0r89,-134r-85,-128r15,0r77,118r78,-118r14,0r-84,128r89,134r-14,0r-83,-123r-82,123r-14,0","w":192},"\u0426":{"d":"30,0r0,-261r12,0r0,250r166,0r0,-250r12,0r0,250r20,0r0,74r-11,0r0,-63r-199,0","w":249},"\u0427":{"d":"184,0r0,-129v-61,19,-160,22,-159,-65r0,-68r12,0r0,67v-3,80,97,73,147,53r0,-120r12,0r0,262r-12,0","w":223},"\u0428":{"d":"324,-262r0,262r-294,0r0,-262r12,0r0,251r129,0r0,-251r12,0r0,251r128,0r0,-251r13,0","w":354},"\u0429":{"d":"345,-12r0,75r-12,0r0,-63r-303,0r0,-262r12,0r0,251r129,0r0,-251r12,0r0,251r128,0r0,-251r13,0r0,250r21,0","w":356},"\u042a":{"d":"209,-68v0,-72,-74,-63,-148,-62r0,119v69,0,148,10,148,-57xm61,-141v80,-2,160,-6,160,72v0,75,-92,71,-172,69r0,-251r-61,0r0,-11r73,0r0,121","w":235},"\u042b":{"d":"192,-68v0,-72,-74,-63,-147,-62r0,119v0,0,147,10,147,-57xm45,-141v81,-3,160,-5,160,72v0,76,-93,71,-173,69r0,-262r13,0r0,121xm250,0r0,-262r12,0r0,262r-12,0","w":292},"\u042c":{"d":"194,-68v0,-72,-75,-63,-148,-62r0,119v69,0,148,10,148,-57xm46,-141v81,-3,161,-5,161,72v0,76,-93,71,-173,69r0,-262r12,0r0,121","w":220},"\u042d":{"d":"89,-134r0,-11r126,0v-5,-71,-43,-111,-96,-111v-49,0,-80,25,-88,70r-12,0v5,-49,45,-81,98,-81v68,0,111,50,111,137v0,86,-41,135,-109,135v-59,0,-98,-35,-101,-92r12,0v3,50,38,82,91,82v58,0,95,-48,94,-129r-126,0","w":247},"\u042e":{"d":"226,-267v72,0,116,51,116,136v0,85,-44,137,-116,137v-73,0,-117,-53,-116,-140r-65,0r0,134r-13,0r0,-262r13,0r0,117r65,0v5,-77,48,-122,116,-122xm123,-131v0,78,39,126,103,126v64,0,103,-48,103,-126v0,-78,-39,-125,-103,-125v-64,0,-103,47,-103,125","w":360},"\u042f":{"d":"163,-251v-65,1,-140,-11,-140,57v0,76,72,61,140,62r0,-119xm10,-193v0,-73,87,-72,165,-69r0,262r-12,0r0,-121r-78,0r-62,121r-15,0r65,-122v-37,-6,-63,-26,-63,-71","w":209},"\u0430":{"d":"93,-193v43,0,63,18,63,61r0,92v-1,27,3,31,24,30r0,10v-25,2,-36,-4,-35,-32v-22,46,-132,55,-132,-16v0,-36,24,-50,75,-57v48,-7,57,0,57,-38v0,-26,-18,-40,-51,-40v-38,0,-60,17,-62,47r-11,0v1,-35,28,-57,72,-57xm72,-6v55,-1,82,-37,73,-102v-5,7,-22,9,-49,12v-48,6,-72,16,-72,46v0,28,17,44,48,44","w":184,"k":{"\u0447":13,"\u0422":29}},"\u0431":{"d":"25,-136v9,-28,44,-48,72,-48v48,0,80,34,80,90v0,62,-32,99,-83,99v-45,0,-82,-32,-82,-103v0,-81,18,-133,84,-144v34,-6,52,-2,56,-19r10,0v-6,23,-19,22,-64,28v-50,7,-71,39,-76,97r3,0xm94,-6v43,0,72,-32,72,-88v0,-51,-30,-81,-69,-81v-33,0,-74,21,-74,81v0,61,33,88,71,88","w":185},"\u0432":{"d":"22,-189v55,0,126,-9,125,46v0,21,-12,39,-44,44v31,3,54,21,54,47v2,61,-74,53,-135,52r0,-189xm33,-10v50,0,117,7,112,-43v-5,-45,-62,-43,-112,-42r0,85xm33,-179r0,74v45,0,102,6,102,-38v0,-37,-58,-39,-102,-36","w":168},"\u0433":{"d":"25,0r0,-189r128,0r0,10r-116,0r0,179r-12,0","w":155,"k":{"\u044d":13,"\u0441":17,"\u043e":17,"\u043b":19,"\u0437":8,"\u0434":30,"\u0430":8}},"\u0434":{"d":"5,-10r17,0v29,-31,24,-114,24,-179r120,0r0,179r20,0r0,58r-11,0r0,-48r-158,0r0,49r-12,0r0,-59xm155,-179r-98,0v0,61,4,143,-23,169r121,0r0,-169","w":190},"\u0435":{"d":"171,-56v-8,37,-38,61,-75,61v-48,0,-80,-37,-80,-99v0,-62,32,-99,80,-99v51,0,81,37,79,99r-147,0v-9,97,109,118,132,38r11,0xm28,-104r135,0v0,-49,-28,-79,-65,-79v-40,0,-67,29,-70,79","w":183},"\u0436":{"d":"123,0r0,-68r-41,-43r-73,111r-13,0r79,-119r-67,-70r14,0r101,108r0,-108r11,0r0,108r101,-108r14,0r-66,70r78,119r-13,0r-73,-111r-41,43r0,68r-11,0","w":257},"\u0437":{"d":"63,-104v39,2,75,-2,74,-40v0,-22,-20,-39,-50,-39v-28,0,-48,15,-54,42r-12,0v5,-30,28,-52,65,-52v72,0,82,81,28,94v24,5,43,23,43,50v0,31,-30,54,-71,54v-42,0,-67,-23,-71,-62r11,0v1,32,27,51,60,51v34,0,59,-17,59,-43v0,-35,-39,-48,-82,-45r0,-10","w":168},"\u0438":{"d":"25,0r0,-189r12,0r0,170r122,-170r12,0r0,189r-12,0r0,-170r-122,170r-12,0","w":195},"\u0439":{"d":"25,0r0,-189r11,0r0,170r123,-170r12,0r0,189r-12,0r0,-170r-123,170r-11,0xm60,-261v2,26,16,37,40,37v23,0,37,-11,39,-37r11,0v0,29,-18,48,-51,48v-33,0,-50,-19,-50,-48r11,0","w":195},"\u043a":{"d":"25,0r0,-189r12,0r0,109r110,-109r14,0r-70,69r80,120r-14,0r-75,-112r-45,46r0,66r-12,0","w":166,"k":{"\u043b":-8}},"\u043b":{"d":"51,-178v-7,67,23,187,-49,181r0,-11v59,5,31,-116,38,-181r123,0r0,189r-11,0r0,-178r-101,0","w":188},"\u043c":{"d":"37,-189r83,170r83,-170r12,0r0,189r-12,0r0,-168r-77,162r-12,0r-77,-162r0,168r-12,0r0,-189r12,0","w":239},"\u043d":{"d":"25,0r0,-189r12,0r0,86r117,0r0,-86r11,0r0,189r-11,0r0,-93r-117,0r0,93r-12,0"},"\u043e":{"d":"16,-94v0,-62,32,-99,83,-99v51,0,83,37,83,99v0,62,-32,99,-83,99v-51,0,-83,-37,-83,-99xm28,-94v0,56,28,88,71,88v43,0,72,-32,72,-88v0,-56,-29,-89,-72,-89v-43,0,-71,33,-71,89","w":198},"\u043f":{"d":"25,0r0,-189r140,0r0,189r-11,0r0,-179r-117,0r0,179r-12,0"},"\u0440":{"d":"25,75r0,-264r12,0r0,43v12,-31,36,-47,71,-47v51,0,83,37,83,99v0,104,-122,133,-154,53r0,116r-12,0xm37,-94v0,56,28,88,71,88v43,0,72,-32,72,-88v0,-56,-29,-89,-72,-89v-43,0,-71,33,-71,89","w":208,"k":{"\u0423":13}},"\u0441":{"d":"172,-61v-4,41,-33,66,-74,66v-49,0,-82,-37,-82,-99v0,-62,32,-99,83,-99v40,0,67,22,72,59r-12,0v-5,-30,-28,-49,-60,-49v-43,0,-71,33,-71,89v0,100,121,118,134,33r10,0"},"\u0442":{"d":"91,0r-12,0r0,-179r-77,0r0,-10r166,0r0,10r-77,0r0,179","w":169,"k":{"\u044f":-3,"\u0434":13}},"\u0443":{"d":"74,28v-15,37,-21,51,-56,48r0,-11v42,8,40,-39,54,-64r-70,-190r11,0r65,175r66,-175r12,0","w":158},"\u0444":{"d":"167,-261r0,111v34,-76,142,-46,142,56v0,102,-107,132,-142,56r0,113r-11,0r0,-113v-34,75,-141,47,-141,-56v0,-102,106,-132,141,-56r0,-111r11,0xm167,-94v0,51,19,90,65,89v39,0,65,-33,65,-89v0,-56,-26,-89,-65,-89v-39,0,-65,36,-65,89xm156,-94v0,-53,-25,-89,-65,-89v-39,0,-65,33,-65,89v0,56,26,89,65,89v45,1,65,-37,65,-89","w":322},"\u0445":{"d":"12,0r-14,0r69,-98r-66,-91r14,0r60,82r58,-82r13,0r-65,91r70,98r-13,0r-64,-89","w":149},"\u0446":{"d":"25,0r0,-189r12,0r0,179r116,0r0,-179r12,0r0,179r20,0r0,59r-11,0r0,-49r-149,0","w":190},"\u0447":{"d":"156,-189r0,189r-12,0r0,-93v-42,27,-122,27,-119,-51r0,-45r11,0v-1,55,-6,101,56,101v28,0,37,-6,52,-16r0,-85r12,0","w":180},"\u0448":{"d":"241,-189r12,0r0,189r-228,0r0,-189r12,0r0,179r96,0r0,-179r12,0r0,179r96,0r0,-179","w":278},"\u0449":{"d":"241,-189r12,0r0,179r20,0r0,59r-12,0r0,-49r-236,0r0,-189r12,0r0,179r96,0r0,-179r12,0r0,179r96,0r0,-179","w":278},"\u044a":{"d":"50,-104v58,-2,119,-1,119,51v0,59,-69,55,-130,53r0,-179r-40,0r0,-10r51,0r0,85xm50,-94r0,84v49,1,107,7,107,-43v0,-44,-58,-42,-107,-41","w":181},"\u044b":{"d":"194,0r0,-189r12,0r0,189r-12,0xm34,-104v58,-2,119,-1,119,51v0,59,-70,55,-131,53r0,-189r12,0r0,85xm34,-94r0,84v50,1,107,6,107,-43v0,-44,-58,-42,-107,-41","w":229},"\u044c":{"d":"34,-104v58,-2,119,-1,119,51v0,59,-70,55,-131,53r0,-189r12,0r0,85xm34,-94r0,84v50,1,107,6,107,-43v0,-44,-58,-42,-107,-41","w":165},"\u044d":{"d":"70,-103r91,0v5,-89,-115,-108,-131,-31r-12,0v5,-37,33,-59,73,-59v51,0,81,37,81,99v0,62,-32,99,-81,99v-41,0,-71,-25,-75,-66r11,0v4,34,30,56,63,56v43,0,71,-32,71,-88r-91,0r0,-10"},"\u044e":{"d":"23,0r0,-189r12,0r0,85r43,0v4,-56,35,-89,83,-89v51,0,83,37,83,99v0,62,-32,99,-83,99v-51,0,-83,-37,-83,-99r-43,0r0,94r-12,0xm89,-94v0,56,29,88,72,88v43,0,72,-32,72,-88v0,-56,-29,-89,-72,-89v-43,0,-72,33,-72,89","w":259},"\u044f":{"d":"130,-85r-53,0r-57,85r-13,0r57,-86v-37,-4,-54,-26,-54,-52v1,-63,71,-50,131,-51r0,189r-11,0r0,-85xm130,-95r0,-84v-48,0,-108,-8,-108,41v0,39,58,47,108,43","w":165}}}); /* End */ ; ; /* Start:/bitrix/templates/index/js/fonts/HeliosThinC_italic_100.font.js*/ /*! * The following copyright notice may not be removed under any circumstances. * * Copyright: * Copyright(C)1996; Type Market Ltd. Moscow, 119136, Box 20; phone:(095)2879693; * Created by S. Shanovich * * Trademark: * Please refer to the Copyright section for the font trademark attribution * notices. * * Full name: * HeliosThinC-Italic */ Cufon.registerFont({"w":189,"face":{"font-family":"HeliosThinC","font-weight":100,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 2 0 0 0 0 0 0 0","ascent":"275","descent":"-85","x-height":"5","bbox":"-39 -334 369 85","underline-thickness":"7.56","underline-position":"-29.88","slope":"-12","stemh":"10","stemv":"11","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":94},"\u00a0":{"w":94},"!":{"d":"38,-65r39,-196r13,0r-43,196r-9,0xm23,0r7,-32r12,0r-7,32r-12,0","w":111},"\"":{"d":"28,-255r13,0r-21,98r-12,0xm74,-255r12,0r-20,98r-13,0","w":93},"#":{"d":"173,-258r17,0r-51,90r49,0r51,-90r16,0r-50,90r57,0r-6,13r-59,0r-30,52r64,0r-7,13r-63,0r-51,90r-17,0r51,-90r-49,0r-51,90r-17,0r51,-90r-61,0r7,-13r61,0r29,-52r-66,0r7,-13r67,0xm131,-155r-29,52r48,0r30,-52r-49,0","w":279},"$":{"d":"114,-244v-63,-6,-97,95,-23,109xm36,-176v0,-48,36,-79,81,-80r3,-16r11,0r-4,16v43,1,65,24,56,63r-11,0v5,-33,-11,-52,-47,-51r-24,111v47,11,68,28,61,69v-8,42,-40,65,-90,69r-5,25r-11,0r5,-25v-46,-5,-64,-34,-55,-80r12,0v-8,39,8,64,46,68r24,-116v-35,-10,-52,-26,-52,-53xm75,-7v72,1,113,-101,24,-114"},"%":{"d":"96,-250v-48,-7,-83,85,-19,89v48,7,85,-85,19,-89xm30,-194v0,-41,35,-68,69,-68v27,0,45,19,45,44v0,39,-34,67,-69,68v-27,0,-45,-19,-45,-44xm25,6r202,-268r12,0r-202,268r-12,0xm121,-38v0,-41,35,-67,69,-67v27,0,45,18,45,43v0,39,-34,67,-69,68v-27,0,-45,-19,-45,-44xm187,-94v-49,-7,-82,85,-19,89v47,7,83,-85,19,-89","w":264},"&":{"d":"131,-251v-49,1,-63,59,-29,95v39,-17,62,-31,62,-65v0,-18,-13,-30,-33,-30xm96,-142v-48,18,-78,41,-78,87v0,73,101,59,136,10xm175,-224v0,41,-24,56,-67,76r54,93v13,-18,23,-39,28,-63r11,0v-6,29,-18,54,-33,73r27,45r-15,0r-21,-35v-28,27,-58,43,-87,43v-41,0,-66,-25,-66,-60v0,-53,30,-76,84,-100v-38,-46,-13,-109,44,-109v25,0,41,14,41,37","w":221},"'":{"d":"29,-255r12,0r-21,98r-12,0","w":48},"(":{"d":"136,-260v-79,82,-126,212,-69,340r-12,0v-55,-129,-10,-256,68,-340r13,0","w":104},")":{"d":"55,-260v54,133,4,251,-77,340r-12,0v81,-89,133,-210,76,-340r13,0","w":104},"*":{"d":"50,-159r-8,-7r40,-40r-43,-12r7,-13r41,17r8,-47r13,0r-12,47r48,-17r2,13r-49,12r23,40r-11,7r-21,-40","w":181},"+":{"d":"169,-217r11,0r-22,103r101,0r-2,11r-101,0r-22,103r-11,0r22,-103r-101,0r2,-11r101,0","w":302},",":{"d":"17,38r40,-69r13,0r-41,69r-12,0","w":94},"-":{"d":"13,-89r2,-10r97,0r-3,10r-96,0","w":124},"\u00ad":{"d":"13,-89r2,-10r97,0r-3,10r-96,0","w":124},".":{"d":"38,0r7,-31r11,0r-6,31r-12,0","w":94},"\/":{"d":"130,-268r12,0r-166,299r-13,0","w":105},"0":{"d":"122,-254v38,0,60,26,60,76v0,105,-56,186,-115,186v-38,0,-59,-27,-59,-77v0,-92,53,-185,114,-185xm121,-243v-54,0,-101,92,-101,173v0,44,17,66,49,66v52,0,101,-78,101,-174v0,-43,-17,-65,-49,-65","k":{"1":28}},"1":{"d":"73,0r46,-216v-20,18,-40,27,-69,26r3,-11v37,-1,62,-17,73,-46r12,0r-53,247r-12,0","k":{"9":33,"8":53,"7":51,"6":45,"5":44,"4":64,"3":35,"2":47,"1":71,"0":45}},"2":{"d":"185,-202v0,99,-184,108,-179,191r138,0r-2,11r-151,0v-1,-109,180,-94,180,-199v0,-27,-17,-43,-47,-43v-39,0,-68,25,-75,66r-13,0v9,-48,44,-77,90,-77v36,0,59,20,59,51","k":{"1":21}},"3":{"d":"65,6v-49,2,-70,-35,-58,-81v4,1,10,-2,12,1v-10,39,8,70,48,69v44,-1,82,-28,83,-77v1,-30,-28,-45,-73,-43r2,-10v54,2,90,-23,90,-69v0,-24,-18,-39,-49,-39v-38,-1,-63,25,-73,63v-3,-1,-9,1,-11,-1v10,-46,42,-73,89,-73v35,0,56,19,56,48v-1,41,-25,65,-56,75v25,6,38,22,38,46v-2,58,-46,89,-98,91","k":{"1":25}},"4":{"d":"124,-77r32,-149r-136,149r104,0xm107,0r14,-66r-116,0r3,-11r153,-170r10,0r-36,170r28,0r-2,11r-29,0r-14,66r-11,0","k":{"1":40}},"5":{"d":"165,-95v-4,61,-45,102,-100,102v-42,0,-65,-27,-59,-71r11,0v-3,39,14,60,50,60v48,0,83,-37,86,-90v3,-60,-87,-62,-117,-24r-10,0r48,-129r115,0r-2,11r-106,0r-37,99v41,-33,125,-20,121,42","k":{"1":41}},"6":{"d":"166,-101v0,63,-47,108,-94,108v-62,0,-70,-64,-56,-125v20,-91,57,-136,115,-136v37,0,59,24,53,61r-11,0v2,-33,-14,-49,-46,-49v-52,0,-90,58,-101,140v17,-37,46,-59,81,-59v37,0,59,23,59,60xm72,-5v43,0,81,-39,81,-94v0,-32,-19,-51,-49,-51v-42,-1,-80,41,-80,95v0,32,18,50,48,50","k":{"1":29}},"7":{"d":"30,0v31,-87,79,-166,147,-235r-132,0r3,-12r147,0r-3,12v-64,62,-114,140,-150,235r-12,0","k":{"1":48}},"8":{"d":"3,-51v0,-46,25,-71,64,-85v-63,-32,-7,-118,55,-118v36,0,57,18,57,48v0,37,-19,55,-51,70v24,9,36,25,36,48v0,58,-44,94,-98,95v-39,0,-63,-23,-63,-58xm120,-243v-63,-9,-101,101,-22,103v61,10,103,-101,22,-103xm96,-130v-46,1,-80,28,-80,75v0,30,20,49,53,49v43,-1,81,-29,82,-79v0,-28,-20,-45,-55,-45","k":{"1":19}},"9":{"d":"180,-182v0,96,-52,197,-122,190v-38,-4,-56,-23,-53,-62r12,0v-2,33,14,50,46,50v53,0,88,-60,102,-140v-17,37,-47,58,-82,58v-37,0,-59,-22,-59,-59v0,-63,47,-108,94,-108v41,0,62,23,62,71xm118,-242v-42,-1,-80,38,-81,95v0,32,18,51,48,51v42,1,81,-41,81,-95v0,-32,-18,-51,-48,-51","k":{"1":25}},":":{"d":"27,0r6,-31r12,0r-6,31r-12,0xm58,-145r6,-32r12,0r-7,32r-11,0","w":102},";":{"d":"0,38r40,-69r13,0r-41,69r-12,0xm66,-145r6,-32r12,0r-7,32r-11,0","w":103},"<":{"d":"275,-197r-3,12r-206,77r174,76r-3,13r-191,-86r2,-7","w":302},"=":{"d":"53,-145r213,0r-2,10r-213,0xm40,-82r212,0r-2,10r-213,0","w":302},">":{"d":"66,-197r191,85r-2,7r-227,86r3,-13r205,-76r-173,-77","w":302},"?":{"d":"174,-219v0,82,-95,78,-103,155r-12,0v7,-79,102,-73,102,-152v0,-25,-18,-39,-51,-39v-39,0,-68,23,-75,68r-12,0v11,-51,45,-80,92,-80v37,0,59,18,59,48xm45,0r6,-31r15,0r-7,31r-14,0","w":168},"@":{"d":"199,-166v-40,0,-85,45,-85,100v0,20,12,32,32,32v47,2,73,-55,88,-95v0,-24,-12,-37,-35,-37xm351,-161v0,73,-54,131,-123,138v-27,3,-35,-15,-26,-34v-16,21,-38,34,-59,34v-30,0,-45,-13,-45,-39v0,-66,56,-114,104,-115v23,0,36,11,39,32v9,-9,8,-28,28,-25r-54,119v-3,11,5,17,19,17v56,0,102,-61,102,-127v0,-51,-41,-85,-110,-85v-109,0,-188,81,-194,186v-6,108,161,121,240,64r3,6v-88,65,-258,50,-258,-70v0,-115,104,-194,213,-196v69,-1,121,35,121,95","w":363},"A":{"d":"42,-100r114,0r-25,-147xm-30,0r157,-262r13,0r44,262r-12,0r-14,-89r-122,0r-54,89r-12,0","w":208,"k":{"y":5,"w":5,"v":5,"Y":22,"X":-7,"W":7,"V":7,"U":7,"T":13,"A":-7,";":-7,":":-7,".":-7,",":-7}},"B":{"d":"17,-11v87,3,166,5,170,-77v3,-50,-87,-43,-145,-43xm44,-141v79,3,153,1,157,-71v2,-48,-80,-38,-133,-39xm199,-89v0,63,-46,89,-117,89r-80,0r56,-262v66,2,157,-15,155,50v-1,40,-23,62,-59,75v31,6,45,22,45,48","w":224,"k":{"Y":13,"W":7,"V":7,"S":-7,"O":-7,"G":-7,"C":-7}},"C":{"d":"154,-256v-68,0,-128,74,-128,169v0,53,27,82,73,82v53,0,94,-32,108,-82r12,0v-15,57,-62,92,-121,92v-55,0,-85,-32,-85,-90v0,-104,66,-185,145,-182v52,2,87,31,81,81r-12,0v2,-45,-24,-70,-73,-70","w":247,"k":{"S":-7,";":-7,":":-7}},"D":{"d":"237,-173v-8,112,-55,179,-175,173r-60,0r56,-262v95,-4,186,-2,179,89xm224,-171v6,-80,-72,-83,-156,-79r-51,239r50,0v108,6,150,-59,157,-160","w":250,"k":{"Y":7,"W":-3,"V":3,"A":3,".":13,",":13}},"E":{"d":"2,0r56,-262r159,0r-2,12r-148,0r-22,108r134,0r-2,11r-135,0r-25,119r151,0r-3,12r-163,0","w":206,"k":{".":-7,",":-7}},"F":{"d":"2,0r56,-262r152,0r-2,12r-141,0r-22,108r124,0r-3,11r-124,0r-28,131r-12,0","w":190,"k":{"u":8,"r":7,"o":8,"e":8,"a":8,"T":-7,"A":15,";":13,":":13,".":55,",":55}},"G":{"d":"159,-256v-71,0,-132,71,-132,165v0,54,29,86,79,86v62,0,107,-43,117,-109r-87,0r3,-11r98,0r-27,125r-10,0r11,-51v-45,81,-202,80,-197,-37v4,-103,67,-179,148,-179v58,0,88,29,85,79r-13,0v1,-44,-26,-68,-75,-68","w":258,"k":{"Y":3,"T":7}},"H":{"d":"2,0r55,-262r13,0r-25,117r166,0r24,-117r12,0r-55,262r-12,0r28,-134r-165,0r-29,134r-12,0","w":249},"I":{"d":"4,0r55,-262r12,0r-55,262r-12,0","w":75},"J":{"d":"16,-82v-12,35,-8,77,37,77v43,0,59,-26,69,-75r39,-182r12,0r-39,186v-12,55,-37,82,-85,82v-51,0,-58,-45,-45,-88r12,0","w":172,"k":{".":8,",":8}},"K":{"d":"2,0r55,-262r13,0r-31,148r176,-148r15,0r-125,105r86,157r-15,0r-81,-148r-60,50r-21,98r-12,0","w":211,"k":{"y":3,"u":7,"o":7,"e":7,"a":-7,"Y":3,"W":7,"U":13,"O":10,"C":10,"A":-10,".":-7,",":-7}},"L":{"d":"3,0r55,-262r12,0r-53,250r139,0r-3,12r-150,0","w":185,"k":{"y":13,"Y":37,"W":12,"V":23,"U":7,"T":30,"O":13,".":-10,",":-10}},"M":{"d":"2,0r56,-262r17,0r41,247r146,-247r17,0r-55,262r-11,0r52,-246r-147,246r-11,0r-42,-246r-52,246r-11,0","w":281},"N":{"d":"2,0r55,-262r13,0r113,241r51,-241r12,0r-56,262r-12,0r-113,-240r-51,240r-12,0","w":247,"k":{";":7,":":7}},"O":{"d":"14,-88v0,-103,66,-179,150,-179v59,0,91,34,91,93v-1,105,-67,180,-150,180v-59,0,-91,-35,-91,-94xm161,-256v-75,0,-134,71,-134,166v0,54,29,85,81,85v75,0,135,-71,135,-166v0,-54,-30,-85,-82,-85","w":269,"k":{"Y":7,".":15,",":15}},"P":{"d":"198,-208v0,-54,-73,-42,-130,-43r-26,119v85,4,156,0,156,-76xm211,-211v-6,82,-76,98,-171,90r-26,121r-12,0r56,-262v64,-1,157,-7,153,51","w":209,"k":{"y":-7,"u":-3,"s":10,"o":10,"e":10,"a":10,"Y":3,"W":-3,"A":27,";":7,":":7,".":87,",":87}},"Q":{"d":"163,-257v-75,0,-128,72,-135,167v-6,80,83,103,141,69r-25,-25r9,-8r28,26v62,-35,107,-229,-18,-229xm257,-174v0,69,-28,121,-69,154r29,29r-10,8r-30,-30v-19,12,-44,19,-73,19v-57,0,-89,-35,-89,-94v0,-104,66,-179,150,-179v59,0,92,34,92,93","w":269,"k":{".":12,",":12}},"R":{"d":"208,-208v0,-61,-83,-38,-140,-42r-25,115v80,2,165,7,165,-73xm174,-89v1,-54,-83,-30,-133,-35r-27,124r-12,0r56,-262v64,2,169,-14,164,48v-3,45,-24,73,-64,85v55,9,6,94,22,129v-11,1,-19,0,-16,-12v0,-17,10,-57,10,-77","w":226,"k":{"y":-3}},"S":{"d":"168,-81v5,-59,-135,-37,-132,-104v3,-52,42,-82,95,-82v49,0,74,29,67,76r-12,0v9,-40,-16,-66,-58,-66v-44,1,-78,25,-80,67v-3,64,140,42,133,105v-6,57,-45,90,-105,91v-51,0,-77,-33,-70,-86r12,0v-7,45,17,76,61,75v50,-1,85,-29,89,-76","w":208,"k":{"S":-7}},"T":{"d":"60,0r53,-250r-83,0r2,-12r177,0r-2,12r-82,0r-53,250r-12,0","w":185,"k":{"y":47,"w":47,"u":47,"s":48,"r":35,"o":48,"i":5,"e":48,"c":48,"a":48,"T":-8,"C":7,"A":13,";":47,":":47,".":53,",":53}},"U":{"d":"56,-262r12,0v-12,65,-38,125,-38,195v0,40,22,62,66,62v53,0,89,-33,102,-92r35,-165r12,0r-36,171v-13,61,-57,97,-115,97v-60,0,-87,-40,-74,-97","w":243,"k":{"A":7,";":7,":":7,".":13,",":13}},"V":{"d":"62,0r-35,-262r13,0r32,244r135,-244r13,0r-147,262r-11,0","w":191,"k":{"y":-3,"u":7,"o":13,"e":13,"a":13,"A":7,";":10,":":10,".":47,",":47}},"W":{"d":"45,0r-14,-262r12,0r13,240r114,-240r15,0r13,240r114,-240r12,0r-125,262r-12,0r-13,-244r-117,244r-12,0","w":299,"k":{"y":-5,"u":-5,"o":7,"i":-7,"e":7,"a":7,"A":7,";":5,":":5,".":30,",":30}},"X":{"d":"-27,0r117,-134r-58,-128r14,0r53,118r103,-118r13,0r-111,128r61,134r-14,0r-57,-123r-108,123r-13,0","w":192,"k":{"e":10,"C":7,"A":-7,";":7,":":7,".":-7,",":-7}},"Y":{"d":"63,0r24,-116r-59,-146r14,0r54,134r110,-134r14,0r-121,147r-24,115r-12,0","w":192,"k":{"u":27,"o":33,"e":33,"a":33,"O":7,"C":7,"A":22,";":32,":":32,".":60,",":60}},"Z":{"d":"-24,0r2,-12r219,-238r-154,0r2,-12r167,0r-2,13r-219,238r172,0r-2,11r-185,0","w":192,"k":{";":-7,":":-7,".":-7,",":-7}},"[":{"d":"68,75r-62,0r71,-337r62,0r-2,11r-49,0r-67,314r49,0","w":109},"\\":{"d":"27,-269r12,0r40,299r-13,0","w":105},"]":{"d":"-28,75r2,-12r49,0r67,-314r-49,0r3,-11r61,0r-71,337r-62,0","w":109},"^":{"d":"183,-258r18,0r76,98r-19,0r-68,-86r-105,86r-20,0","w":363},"_":{"d":"1,73r182,0r-3,11r-181,0","w":181},"`":{"d":"105,-211r-11,0r-33,-59r19,0","w":181},"a":{"d":"114,-194v98,1,30,108,28,173v-1,12,8,15,19,12r-2,10v-23,5,-33,-9,-28,-33v-19,23,-49,36,-83,36v-34,0,-53,-22,-45,-53v9,-36,34,-51,87,-57v55,-6,66,-5,66,-47v0,-19,-14,-30,-43,-30v-38,0,-64,17,-72,47r-11,0v9,-35,40,-58,84,-58xm148,-108v-6,7,-24,7,-52,11v-54,7,-80,15,-82,58v-1,46,72,32,97,13v25,-19,29,-48,37,-82","w":184},"b":{"d":"188,-125v-3,74,-48,130,-108,130v-33,0,-54,-15,-62,-45r-9,40r-11,0r56,-261r11,0r-25,115v31,-63,151,-68,148,21xm120,-183v-51,0,-94,51,-94,117v0,38,21,61,56,61v51,0,94,-51,94,-117v0,-39,-21,-61,-56,-61","w":208},"c":{"d":"118,-183v-51,0,-94,51,-94,117v0,39,21,60,56,60v33,0,62,-21,74,-55r11,0v-14,77,-153,97,-152,-2v1,-76,48,-130,107,-130v40,0,62,22,59,59r-12,0v1,-30,-17,-49,-49,-49"},"d":{"d":"6,-63v3,-74,49,-130,108,-130v35,0,56,17,61,45r25,-113r11,0r-56,261r-11,0r9,-42v-28,64,-150,67,-147,-21xm74,-5v50,0,92,-50,93,-118v0,-39,-20,-60,-55,-60v-50,0,-92,49,-94,117v0,39,21,61,56,61","w":208},"e":{"d":"28,-94v-13,43,7,88,49,88v31,0,60,-19,75,-50r11,0v-22,71,-151,91,-151,-7v0,-73,49,-130,105,-130v54,0,73,47,58,99r-147,0xm30,-104r135,0v9,-43,-9,-79,-48,-79v-40,0,-74,29,-87,79","w":190},"f":{"d":"109,-263v-1,5,0,12,-9,10v-32,-5,-32,37,-40,64r32,0r-2,11r-32,0r-38,178r-11,0r38,-178r-26,0r2,-11r26,0v9,-38,13,-83,60,-74","w":88,"k":{".":7,",":7}},"g":{"d":"21,-63v2,-77,49,-133,108,-131v35,0,57,19,61,47r9,-43r11,0r-38,179v-6,50,-48,88,-105,86v-43,-1,-65,-20,-59,-56r11,0v-5,30,15,45,53,46v63,2,89,-49,96,-106v-30,60,-149,67,-147,-22xm89,-6v50,0,93,-50,93,-117v0,-39,-21,-60,-56,-60v-50,0,-92,49,-93,117v0,39,21,60,56,60","w":208},"h":{"d":"-3,0r56,-261r11,0r-22,103v22,-42,129,-55,125,10v-3,52,-20,99,-29,148r-12,0r29,-145v4,-48,-72,-44,-96,-18v-36,39,-33,107,-50,163r-12,0"},"i":{"d":"48,-231r6,-30r11,0r-6,30r-11,0xm-1,0r40,-189r11,0r-40,189r-11,0","w":63},"j":{"d":"47,-189r11,0r-46,218v-7,36,-16,48,-51,46v2,-4,0,-11,7,-11v24,0,27,-10,33,-39xm55,-231r7,-31r11,0r-6,31r-12,0","w":63},"k":{"d":"-3,0r56,-261r11,0r-38,180r132,-108r14,0r-83,69r54,120r-13,0r-51,-112r-56,45r-14,67r-12,0","w":166},"l":{"d":"-1,0r55,-261r11,0r-55,261r-11,0","w":63},"m":{"d":"147,-113v10,-36,7,-72,-34,-70v-85,4,-76,113,-97,183r-11,0r40,-189r12,0r-7,31v22,-41,109,-52,114,4v18,-25,42,-39,70,-39v42,0,53,29,45,68r-27,125r-12,0r25,-113v10,-36,7,-72,-34,-70v-85,4,-76,113,-97,183r-11,0","w":297},"n":{"d":"5,0r40,-189r12,0r-7,31v22,-42,128,-54,124,10v-4,52,-20,99,-29,148r-12,0r29,-146v4,-49,-71,-43,-95,-17v-36,39,-34,107,-51,163r-11,0"},"o":{"d":"13,-63v1,-76,48,-130,107,-130v42,0,66,25,66,68v0,74,-49,130,-108,130v-41,0,-65,-25,-65,-68xm118,-183v-51,0,-94,51,-94,118v0,39,21,60,56,60v50,0,92,-49,94,-117v0,-39,-21,-61,-56,-61","w":198},"p":{"d":"202,-126v-2,76,-49,131,-108,131v-35,0,-56,-17,-61,-47r-25,117r-11,0r56,-264r11,0r-9,43v28,-63,149,-68,147,20xm134,-183v-50,0,-92,49,-93,117v0,39,20,61,55,61v50,0,92,-50,94,-118v0,-38,-21,-60,-56,-60","w":208},"q":{"d":"21,-63v2,-76,49,-130,108,-130v35,0,56,17,61,48r9,-44r11,0r-56,264r-11,0r24,-116v-28,62,-148,66,-146,-22xm126,-183v-50,0,-92,50,-93,118v0,38,21,60,56,60v50,0,91,-50,93,-117v0,-38,-21,-61,-56,-61","w":208},"r":{"d":"5,0r40,-189r12,0r-8,34v15,-25,37,-38,65,-38r-3,12v-74,-5,-77,114,-95,181r-11,0","w":95,"k":{".":33,",":33}},"s":{"d":"136,-57v-4,-46,-106,-24,-104,-76v2,-38,34,-60,77,-60v36,0,54,19,52,54r-12,0v2,-29,-13,-44,-44,-44v-34,0,-57,18,-60,48v-3,40,109,30,104,75v-5,41,-36,64,-80,65v-41,1,-64,-23,-59,-61r11,0v-1,33,17,50,50,50v36,-1,68,-18,65,-51","w":174},"t":{"d":"59,-178r-32,159v-1,17,17,15,30,11r-2,10v-26,9,-46,0,-39,-31r32,-149r-24,0r2,-10r24,0r10,-51r12,0r-11,51r34,0r-2,10r-34,0","w":88},"u":{"d":"185,-189r-40,189r-11,0r6,-30v-22,42,-127,54,-124,-10v3,-54,20,-99,29,-149r11,0r-29,147v-4,47,73,43,96,18v37,-39,34,-108,51,-165r11,0"},"v":{"d":"53,0r-30,-189r12,0r27,175r105,-175r12,0r-113,189r-13,0","w":161,"k":{".":30,",":30}},"w":{"d":"44,0r-19,-189r12,0r17,171r82,-171r10,0r10,171r91,-171r11,0r-100,189r-12,0r-10,-168r-80,168r-12,0","w":243,"k":{".":23,",":23}},"x":{"d":"-9,0r-13,0r90,-98r-47,-91r14,0r42,82r76,-82r13,0r-84,91r49,98r-14,0r-44,-89","w":149},"y":{"d":"56,28v-23,36,-32,53,-66,45r3,-11v39,12,49,-39,67,-61r-30,-191r11,0r28,176r103,-176r12,0","w":158,"k":{".":28,",":28}},"z":{"d":"-14,0r3,-14r165,-163r-123,0r2,-12r136,0r-3,14r-165,163r134,0r-3,12r-146,0","w":158},"{":{"d":"179,-263v10,-2,4,12,4,13v-96,-15,-38,142,-116,155v43,9,18,72,11,107v-8,39,0,51,39,49v-2,5,0,14,-9,12v-71,9,-44,-66,-34,-110v9,-41,-6,-56,-44,-51r3,-13v106,19,38,-177,146,-162","w":181},"|":{"d":"123,-278r13,0r-77,363r-13,0","w":181},"}":{"d":"66,-250v2,-5,-1,-14,8,-12v71,-9,44,65,34,110v-9,41,7,56,44,51v-2,6,0,14,-11,13v-52,-7,-58,50,-67,94v-10,52,-25,68,-77,67v1,-6,-1,-13,9,-12v85,9,33,-146,110,-155v-44,-9,-19,-72,-12,-107v8,-40,1,-50,-38,-49","w":181},"~":{"d":"104,-127v34,1,65,27,97,26v21,0,45,-11,75,-29r-3,13v-28,17,-53,27,-74,27v-38,0,-63,-25,-97,-26v-22,0,-45,11,-75,29r3,-13v28,-17,52,-27,74,-27","w":302},"\u0402":{"d":"95,-120r-25,120r-12,0r53,-250r-83,0r3,-12r190,0r-2,12r-96,0r-25,118v51,-16,149,-25,148,46v-1,73,-64,109,-132,83r6,-11v56,26,110,-9,112,-67v3,-68,-95,-55,-137,-39","w":280},"\u0403":{"d":"50,-262r-55,262r12,0r53,-250r139,0r2,-12r-151,0xm114,-275r50,-59r20,0r-58,59r-12,0","w":185},"\u0453":{"d":"0,0r41,-189r128,0r-2,10r-117,0r-38,179r-12,0xm98,-198r32,-33r20,0v-18,10,-25,32,-52,33","w":155},"\u2026":{"d":"50,0r7,-31r11,0r-6,31r-12,0xm171,0r7,-31r11,0r-6,31r-12,0xm293,0r6,-31r12,0r-7,31r-11,0","w":363},"\u0409":{"d":"75,-262r164,0r-25,121v65,2,147,-14,147,54v0,88,-95,91,-189,87r53,-251r-140,0r-27,124v-13,47,-27,140,-91,126r3,-13v56,17,68,-78,78,-123xm212,-130r-26,119v79,1,162,7,162,-74v0,-64,-79,-40,-136,-45","w":379},"\u040a":{"d":"369,-88v0,87,-95,93,-189,88r28,-134r-165,0r-29,134r-12,0r55,-262r13,0r-25,117r166,0r24,-117r12,0r-24,117v67,-2,146,-5,146,57xm194,-11v79,2,162,3,162,-74v-1,-59,-76,-48,-136,-49","w":393},"\u040c":{"d":"-6,0r56,-262r12,0r-31,148r176,-148r16,0r-126,105r86,157r-15,0r-81,-148r-59,50r-21,98r-13,0xm118,-275r50,-59r20,0r-58,59r-12,0","w":211},"\u040b":{"d":"98,-120r-26,120r-12,0r53,-250r-83,0r2,-12r191,0r-2,12r-96,0r-25,118v56,-19,167,-22,146,64r-15,68r-12,0v5,-28,15,-55,16,-85v3,-62,-97,-51,-137,-35","w":280},"\u040f":{"d":"9,0r56,-261r12,0r-53,250r165,0r54,-250r12,0r-56,261r-88,0r-15,66r-11,0r14,-66r-90,0","w":249},"\u0452":{"d":"9,0r47,-220r-20,0r2,-10r20,0r6,-32r12,0r-7,32r63,0r-2,10r-63,0r-13,62v22,-42,128,-54,124,10v-4,64,-24,117,-35,177v-7,35,-15,47,-50,46v2,-4,-1,-11,6,-11v24,0,27,-10,33,-39r34,-170v4,-48,-71,-43,-95,-18v-36,38,-33,106,-50,163r-12,0","w":193},"\u2018":{"d":"55,-190r-13,0r-11,-71r13,0","w":86},"\u2019":{"d":"16,-190r41,-71r12,0r-40,71r-13,0","w":86},"\u201c":{"d":"55,-190r-13,0r-10,-71r12,0xm107,-190r-13,0r-10,-71r12,0","w":138},"\u201d":{"d":"17,-190r40,-71r12,0r-40,71r-12,0xm68,-190r41,-71r13,0r-41,71r-13,0","w":138},"\u2013":{"d":"-1,-90r2,-8r181,0r-1,8r-182,0","w":181},"\u2014":{"d":"1,-98r363,0r-1,8r-364,0","w":363},"\u2122":{"d":"60,-257r73,0v0,13,-21,5,-32,7r-18,86r-11,0r18,-86r-31,0xm157,-257r15,0r15,81r47,-81r16,0r-20,93r-9,0r19,-87r-51,87r-8,0r-17,-87r-18,87r-9,0","w":302},"\u0459":{"d":"69,-178v-19,62,-17,191,-87,179r2,-10v39,8,47,-39,57,-88r19,-92r124,0r-18,85v47,-1,109,-4,109,37v0,39,-32,67,-71,67r-72,0r38,-178r-101,0xm164,-94r-18,84v58,2,113,3,117,-54v2,-35,-59,-30,-99,-30","w":294},"\u045a":{"d":"167,-103v46,-1,110,-4,110,36v0,38,-33,67,-71,67r-72,0r19,-93r-117,0r-19,93r-12,0r40,-189r12,0r-18,86r117,0r18,-86r11,0xm265,-63v2,-35,-60,-30,-100,-30r-18,83v58,2,114,2,118,-53","w":295},"\u045c":{"d":"1,0r40,-189r12,0r-23,108r131,-108r14,0r-83,69r54,120r-13,0r-51,-112r-55,45r-15,67r-11,0xm91,-198r32,-32r20,0v-18,10,-25,31,-52,32","w":166},"\u045b":{"d":"1,0r47,-220r-20,0r2,-10r20,0r7,-31r11,0r-6,31r63,0r-3,10r-63,0r-13,62v22,-42,127,-54,124,10v-3,54,-20,98,-29,148r-11,0v9,-48,24,-93,28,-145v4,-48,-71,-43,-95,-18v-36,38,-33,106,-50,163r-12,0","w":193},"\u045f":{"d":"10,0r40,-189r12,0r-38,179r117,0r38,-179r11,0r-40,189r-64,0r-10,48r-12,0r11,-48r-65,0"},"\u040e":{"d":"36,-262r47,203r117,-203r14,0r-141,236v-18,27,-30,35,-61,31r3,-11v32,9,45,-17,59,-40r-52,-216r14,0xm90,-324v-2,25,7,38,32,38v23,0,40,-12,48,-38r10,0v-6,28,-27,48,-60,48v-33,0,-47,-20,-40,-48r10,0","w":192},"\u045e":{"d":"48,28v-24,37,-29,50,-66,47r3,-13v40,12,49,-40,68,-62r-30,-190r11,0r28,176r102,-176r12,0xm80,-261v-4,24,8,37,32,37v23,0,39,-11,47,-37r11,0v-7,31,-28,48,-61,48v-33,0,-47,-19,-40,-48r11,0","w":158},"\u0408":{"d":"49,6v-51,0,-58,-45,-45,-88r12,0v-12,35,-8,77,37,77v43,0,59,-26,69,-75r39,-182r12,0r-39,186v-12,55,-37,82,-85,82","w":172},"\u0490":{"d":"51,-262r-55,262r12,0r53,-250r139,0r16,-74r-12,0r-13,62r-140,0","w":185},"\u0401":{"d":"-4,0r55,-261r160,0r-3,12r-147,0r-23,108r135,0r-3,11r-134,0r-26,118r151,0r-2,12r-163,0xm105,-302r5,-20r16,0r-4,20r-17,0xm162,-302r4,-20r17,0r-5,20r-16,0","w":206},"\u0404":{"d":"13,-85v0,-104,66,-185,145,-182v52,2,87,31,81,81r-12,0v2,-45,-24,-70,-73,-70v-53,0,-99,40,-119,111r126,0r-3,11r-126,0v-18,63,3,129,67,129v53,0,94,-32,108,-82r12,0v-15,57,-62,92,-121,92v-55,0,-85,-32,-85,-90","w":247},"\u0407":{"d":"-3,0r56,-262r12,0r-55,262r-13,0xm40,-293r7,-31r12,0r-6,31r-13,0xm79,-293r7,-31r12,0r-7,31r-12,0","w":75},"\u0406":{"d":"4,0r55,-262r12,0r-55,262r-12,0","w":75},"\u0456":{"d":"48,-231r6,-30r11,0r-6,30r-11,0xm-1,0r40,-189r11,0r-40,189r-11,0","w":63},"\u0491":{"d":"0,0r41,-189r118,0r8,-41r11,0r-11,51r-117,0r-38,179r-12,0","w":155},"\u0451":{"d":"22,-93v-13,43,7,88,49,88v31,0,60,-19,75,-50r11,0v-22,71,-151,89,-151,-7v0,-76,50,-131,105,-131v54,0,73,48,58,100r-147,0xm24,-104r135,0v11,-41,-9,-79,-48,-79v-40,0,-74,30,-87,79xm83,-228r4,-20r17,0r-5,20r-16,0xm139,-228r5,-20r16,0r-4,20r-17,0","w":190},"\u0454":{"d":"121,-103r-3,10r-90,0v-13,46,7,88,52,88v33,0,62,-22,74,-56r11,0v-14,77,-153,97,-152,-2v0,-77,50,-130,107,-130v40,0,62,22,59,59r-12,0v1,-30,-17,-49,-49,-49v-40,0,-74,30,-88,80r91,0"},"\u0458":{"d":"47,-189r11,0r-46,218v-7,36,-16,48,-51,46v2,-4,0,-11,7,-11v24,0,27,-10,33,-39xm55,-231r7,-30r11,0r-6,30r-12,0","w":63},"\u0405":{"d":"168,-81v0,-66,-133,-35,-132,-104v0,-48,41,-82,95,-82v48,0,74,29,67,76r-12,0v9,-40,-15,-66,-58,-66v-42,0,-80,27,-80,67v0,66,133,37,133,105v0,53,-47,91,-105,91v-51,0,-77,-33,-70,-86r12,0v-7,45,17,75,61,75v50,0,89,-33,89,-76","w":208},"\u0455":{"d":"45,-136v0,46,104,25,104,76v0,36,-36,65,-80,65v-41,0,-64,-23,-59,-61r11,0v-1,33,17,50,50,50v36,0,65,-20,65,-51v0,-45,-104,-24,-104,-76v0,-33,34,-60,77,-60v36,0,54,19,52,54r-12,0v2,-29,-13,-44,-44,-44v-35,0,-60,20,-60,47","w":174},"\u0457":{"d":"-2,0r40,-189r12,0r-40,189r-12,0xm28,-231r7,-31r11,0r-6,31r-12,0xm66,-231r7,-31r11,0r-6,31r-12,0","w":63},"\u0410":{"d":"42,-100r114,0r-25,-147xm-30,0r157,-262r13,0r44,262r-12,0r-14,-89r-122,0r-54,89r-12,0","w":208},"\u0411":{"d":"176,-87v0,76,-81,79,-162,76r26,-119v56,3,136,-14,136,43xm78,0v69,1,111,-29,111,-89v0,-61,-83,-52,-147,-52r24,-110r147,0r2,-11r-160,0r-55,262r78,0","w":214},"\u0412":{"d":"17,-11v85,3,170,4,170,-77v0,-50,-87,-43,-145,-43xm44,-141v77,4,157,0,157,-71v0,-48,-80,-38,-133,-39xm199,-88v-1,57,-47,88,-117,88r-80,0r56,-262v66,2,155,-15,155,50v0,35,-23,66,-65,75v35,3,51,21,51,49","w":224},"\u0413":{"d":"58,-262r-55,262r12,0r53,-250r138,0r3,-12r-151,0","w":185},"\u0414":{"d":"239,-251r-137,0v-18,80,-33,198,-77,240r164,0xm-9,-11r20,0v44,-32,63,-171,82,-250r161,0r-53,250r25,0r-16,74r-11,0r13,-63r-212,0r-13,63r-12,0","w":250},"\u0415":{"d":"2,0r56,-262r159,0r-2,12r-148,0r-22,108r134,0r-2,11r-135,0r-25,119r151,0r-3,12r-163,0","w":206},"\u0416":{"d":"220,-145r-53,47r-21,98r-12,0r20,-98r-33,-47r-141,145r-15,0r150,-154r-79,-108r16,0r106,148r31,-148r12,0r-31,148r168,-148r16,0r-124,108r84,154r-14,0","w":334},"\u0417":{"d":"88,-131r2,-10v65,4,109,-27,109,-70v0,-30,-28,-45,-62,-45v-42,0,-83,27,-93,65r-11,0v12,-43,55,-76,106,-76v45,0,72,18,72,52v0,36,-26,73,-68,78v33,5,51,25,51,53v0,107,-193,125,-193,21v0,-5,1,-11,2,-17r12,0v-7,47,23,75,69,75v40,0,97,-20,97,-77v0,-35,-40,-52,-93,-49","w":219},"\u0418":{"d":"190,0r56,-262r-13,0r-215,241r51,-241r-12,0r-55,262r12,0r215,-240r-51,240r12,0","w":247},"\u0419":{"d":"184,0r55,-261r-12,0r-215,240r51,-240r-12,0r-56,261r13,0r214,-240r-50,240r12,0xm108,-324r12,0v-7,22,3,38,30,38v24,0,42,-13,47,-38r13,0v0,47,-102,73,-104,13v0,-4,1,-8,2,-13","w":247},"\u041a":{"d":"2,0r55,-262r13,0r-31,148r176,-148r15,0r-125,105r86,157r-15,0r-81,-148r-60,50r-21,98r-12,0","w":211},"\u041b":{"d":"-30,-14v53,14,66,-60,80,-128r25,-120r164,0r-55,262r-12,0r53,-251r-140,0r-27,125v-15,58,-30,138,-91,125","w":241},"\u041c":{"d":"2,0r56,-262r17,0r41,247r146,-247r17,0r-55,262r-11,0r52,-246r-147,246r-11,0r-42,-246r-52,246r-11,0","w":281},"\u041d":{"d":"2,0r55,-262r12,0r-24,117r166,0r24,-117r12,0r-55,262r-12,0r28,-134r-166,0r-28,134r-12,0","w":249},"\u041e":{"d":"164,-267v59,0,91,34,91,93v0,106,-69,180,-150,180v-59,0,-91,-35,-91,-94v0,-101,68,-179,150,-179xm161,-256v-70,0,-134,73,-134,166v0,54,29,85,81,85v72,0,135,-70,135,-166v0,-54,-30,-85,-82,-85","w":269},"\u041f":{"d":"2,0r55,-262r190,0r-55,262r-13,0r54,-251r-166,0r-53,251r-12,0","w":249},"\u0420":{"d":"198,-208v0,-54,-73,-42,-130,-43r-26,119v77,0,156,9,156,-76xm58,-262v64,-1,156,-7,153,51v-4,86,-82,95,-171,90r-26,121r-12,0","w":209},"\u0421":{"d":"219,-87v-15,57,-62,92,-121,92v-55,0,-85,-32,-85,-90v0,-109,67,-182,145,-182v52,0,87,31,81,81r-12,0v2,-45,-24,-70,-73,-70v-66,0,-128,70,-128,169v0,53,27,82,73,82v53,0,94,-32,108,-82r12,0","w":247},"\u0422":{"d":"60,0r53,-250r-83,0r2,-12r177,0r-2,12r-82,0r-53,250r-12,0","w":185},"\u0423":{"d":"43,-262r46,203r118,-203r14,0r-141,236v-19,27,-30,35,-61,31r2,-11v33,9,46,-17,60,-40r-52,-216r14,0","w":192},"\u0424":{"d":"114,0r7,-33v-62,0,-110,-24,-110,-79v0,-79,66,-126,154,-126r6,-29r12,0r-6,29v70,0,110,28,110,78v0,88,-78,128,-153,127r-8,33r-12,0xm123,-45r39,-182v-69,-1,-138,33,-138,114v0,48,40,68,99,68xm175,-227r-39,182v71,1,138,-35,138,-113v0,-50,-43,-69,-99,-69","w":298},"\u0425":{"d":"-27,0r117,-134r-58,-128r14,0r53,118r103,-118r13,0r-111,128r61,134r-14,0r-57,-123r-108,123r-13,0","w":192},"\u0426":{"d":"9,0r55,-261r13,0r-54,250r166,0r53,-250r12,0r-53,250r21,0r-16,74r-12,0r14,-63r-199,0","w":249},"\u0427":{"d":"156,0r28,-129v-56,20,-167,22,-146,-65r15,-68r11,0v-5,28,-15,55,-16,85v-3,62,98,53,138,35r26,-120r12,0r-56,262r-12,0","w":223},"\u0428":{"d":"352,-262r-56,262r-294,0r56,-262r12,0r-53,251r128,0r53,-251r13,0r-54,251r129,0r53,-251r13,0","w":354},"\u0429":{"d":"326,-12r-16,75r-12,0r14,-63r-303,0r55,-262r13,0r-53,251r128,0r53,-251r12,0r-53,251r129,0r53,-251r13,0r-54,250r21,0","w":356},"\u042a":{"d":"197,-85v0,76,-82,76,-161,74r25,-119v57,4,136,-19,136,45xm21,0v94,4,189,2,189,-87v0,-69,-82,-52,-147,-54r26,-121r-74,0r-2,11r61,0","w":235},"\u042b":{"d":"181,-85v0,76,-84,76,-162,74r26,-119v57,4,136,-19,136,45xm5,0v93,4,189,1,189,-87v0,-68,-82,-52,-147,-54r25,-121r-12,0xm222,0r56,-262r11,0r-55,262r-12,0","w":292},"\u042c":{"d":"183,-85v-1,75,-83,77,-162,74r25,-119v58,5,137,-19,137,45xm6,0v94,4,189,2,189,-87v0,-69,-81,-52,-146,-54r25,-121r-12,0","w":220},"\u042d":{"d":"233,-176v0,98,-53,179,-143,181v-58,1,-91,-36,-81,-92r12,0v-23,87,105,103,151,47v19,-23,36,-55,44,-95r-127,0r2,-10r126,0v12,-61,-16,-112,-71,-112v-49,0,-87,26,-104,71r-12,0v15,-49,63,-82,116,-82v55,0,87,33,87,92","w":247},"\u042e":{"d":"255,-268v59,0,91,35,91,94v0,106,-68,179,-149,179v-76,0,-106,-66,-86,-140r-66,0r-28,134r-12,0r55,-261r12,0r-24,116r65,0v21,-77,74,-122,142,-122xm252,-257v-75,0,-134,72,-134,166v0,54,29,85,81,85v73,0,135,-69,135,-166v0,-54,-30,-85,-82,-85","w":360},"\u042f":{"d":"189,-251v-78,-1,-153,-9,-155,74v-1,57,73,43,129,45xm21,-175v0,-87,89,-92,182,-87r-55,262r-13,0r26,-121r-78,0r-88,121r-14,0r90,-122v-30,-5,-50,-22,-50,-53","w":209},"\u0430":{"d":"41,-136r-11,0v9,-35,39,-57,83,-57v100,0,32,107,29,172v-1,11,9,11,20,11r-2,10v-25,3,-35,-7,-29,-32v-19,23,-49,37,-83,37v-29,0,-45,-17,-45,-41v0,-45,30,-62,87,-69v40,-5,58,-3,62,-22v11,-43,2,-56,-39,-56v-39,0,-64,17,-72,47xm148,-108v-6,7,-24,9,-52,12v-54,6,-82,19,-82,58v-1,46,72,32,97,13v25,-19,29,-49,37,-83","w":184},"\u0431":{"d":"27,-135v24,-60,146,-73,146,15v0,72,-52,125,-107,125v-37,0,-65,-21,-65,-69v0,-86,38,-166,119,-177v36,-5,52,-3,60,-20r11,0v-11,23,-25,23,-71,29v-51,7,-79,39,-97,97r4,0xm68,-5v46,0,93,-47,93,-112v0,-36,-21,-58,-54,-58v-39,0,-94,33,-94,110v0,41,23,60,55,60","w":185},"\u0432":{"d":"42,-189r-40,189v70,3,144,3,147,-61v0,-21,-18,-35,-45,-38v37,-6,54,-28,54,-54v1,-45,-69,-35,-116,-36xm15,-10r18,-85v45,0,104,-5,104,35v0,54,-65,52,-122,50xm51,-179v37,-1,97,-3,95,27v-4,49,-59,49,-111,47","w":168},"\u0433":{"d":"5,0r40,-189r129,0r-3,10r-116,0r-38,179r-12,0","w":155},"\u0434":{"d":"-7,-10r16,0v36,-32,48,-117,62,-179r121,0r-38,179r20,0r-13,58r-11,0r10,-48r-158,0r-10,49r-12,0xm178,-179r-98,0v-11,59,-27,143,-59,169r121,0","w":190},"\u0435":{"d":"28,-93v-13,43,7,88,49,88v31,0,60,-19,75,-50r11,0v-22,70,-151,90,-151,-7v0,-74,49,-131,105,-131v54,0,73,48,58,100r-147,0xm30,-104r135,0v9,-43,-9,-79,-48,-79v-40,0,-74,29,-87,79","w":183},"\u0436":{"d":"103,0r14,-68r-31,-43r-97,111r-13,0r104,-119r-52,-70r14,0r78,108r23,-108r11,0r-23,108r125,-108r14,0r-82,70r53,119r-13,0r-50,-111r-50,43r-14,68r-11,0","w":257},"\u0437":{"d":"66,-104v43,2,81,-4,83,-47v0,-18,-16,-32,-43,-32v-28,0,-51,15,-63,42r-11,0v12,-30,39,-52,76,-52v73,1,71,77,5,95v19,5,35,17,35,38v0,36,-36,65,-82,65v-41,0,-64,-23,-59,-61r12,0v-6,32,14,51,48,51v37,0,69,-22,69,-53v1,-28,-34,-38,-72,-36","w":168},"\u0438":{"d":"5,0r40,-189r12,0r-36,170r159,-170r11,0r-40,189r-12,0r37,-170r-159,170r-12,0","w":195},"\u0439":{"d":"-3,0r40,-189r12,0r-36,170r158,-170r12,0r-40,189r-12,0r36,-170r-158,170r-12,0xm87,-261v-2,26,9,38,33,37v23,0,39,-11,47,-37r10,0v1,51,-100,70,-102,12v0,-4,1,-8,2,-12r10,0","w":195},"\u043a":{"d":"5,0r40,-189r12,0r-23,109r133,-109r14,0r-85,69r55,120r-14,0r-51,-112r-55,46r-14,66r-12,0","w":166},"\u043b":{"d":"69,-178v-21,63,-15,186,-87,181r2,-11v40,5,47,-40,57,-89r19,-92r124,0r-40,189r-12,0r38,-178r-101,0","w":188},"\u043c":{"d":"57,-189r47,170r119,-170r12,0r-40,189r-12,0r36,-168r-112,162r-11,0r-44,-162r-35,168r-12,0r40,-189r12,0","w":239},"\u043d":{"d":"5,0r40,-189r12,0r-18,86r117,0r18,-86r11,0r-40,189r-11,0r19,-93r-117,0r-19,93r-12,0"},"\u043e":{"d":"13,-63v1,-76,48,-130,107,-130v42,0,66,25,66,68v0,74,-49,130,-108,130v-41,0,-65,-25,-65,-68xm118,-183v-51,0,-94,51,-94,118v0,39,21,60,56,60v50,0,92,-49,94,-117v0,-39,-21,-61,-56,-61","w":198},"\u043f":{"d":"5,0r40,-189r140,0r-40,189r-11,0r38,-179r-117,0r-38,179r-12,0"},"\u0440":{"d":"202,-125v-2,76,-49,130,-108,130v-35,0,-56,-16,-61,-46r-25,116r-11,0r56,-264r11,0r-9,44v28,-64,149,-69,147,20xm134,-183v-50,0,-92,50,-93,118v0,39,21,60,56,60v50,0,93,-50,93,-117v0,-39,-21,-61,-56,-61","w":208},"\u0441":{"d":"165,-61v-14,77,-153,97,-152,-2v0,-77,50,-130,107,-130v40,0,62,22,59,59r-12,0v1,-30,-17,-49,-49,-49v-49,0,-94,49,-94,118v0,39,21,60,56,60v33,0,62,-22,74,-56r11,0"},"\u0442":{"d":"71,0r-12,0r38,-179r-77,0r2,-10r166,0r-2,10r-77,0","w":169},"\u0443":{"d":"56,28v-24,37,-30,51,-66,48r2,-11v43,7,49,-41,68,-64r-30,-190r11,0r28,175r103,-175r12,0","w":158},"\u0444":{"d":"203,-261r-23,111v30,-58,132,-62,132,24v0,76,-49,131,-101,131v-30,0,-49,-16,-55,-43r-24,113r-12,0r24,-113v-30,58,-133,62,-133,-24v0,-75,49,-131,101,-131v30,0,50,16,56,43r24,-111r11,0xm251,-183v-56,0,-88,70,-88,126v0,30,13,52,50,52v43,0,88,-52,88,-120v0,-37,-19,-58,-50,-58xm72,-5v59,0,88,-64,88,-122v0,-32,-14,-56,-50,-56v-45,0,-87,56,-87,120v0,37,18,58,49,58","w":322},"\u0445":{"d":"-9,0r-13,0r90,-98r-47,-91r14,0r42,82r76,-82r13,0r-84,91r49,98r-14,0r-44,-89","w":149},"\u0446":{"d":"10,0r40,-189r12,0r-38,179r117,0r38,-179r11,0r-38,179r21,0r-13,59r-11,0r10,-49r-149,0","w":190},"\u0447":{"d":"176,-189r-41,189r-11,0r19,-86v-45,18,-131,14,-107,-58r9,-45r12,0v-8,40,-34,101,34,101v28,0,36,-4,54,-10r19,-91r12,0","w":180},"\u0448":{"d":"261,-189r12,0r-40,189r-228,0r40,-189r12,0r-38,179r96,0r38,-179r12,0r-38,179r96,0","w":278},"\u0449":{"d":"266,-189r12,0r-38,179r20,0r-12,59r-12,0r11,-49r-237,0r40,-189r12,0r-38,179r97,0r37,-179r12,0r-38,179r97,0","w":278},"\u044a":{"d":"162,-67v0,-40,-62,-38,-109,-37r18,-85r-52,0r-2,10r40,0r-38,179r72,0v39,0,71,-28,71,-67xm50,-94v40,0,102,-5,100,30v-4,56,-60,57,-118,54","w":181},"\u044b":{"d":"174,0r41,-189r11,0r-40,189r-12,0xm145,-67v0,-40,-62,-38,-109,-37r18,-85r-12,0r-40,189r72,0v39,0,71,-28,71,-67xm34,-94v40,0,101,-5,99,30v-4,54,-59,58,-117,54","w":229},"\u044c":{"d":"145,-67v0,-40,-62,-38,-109,-37r18,-85r-12,0r-40,189r72,0v39,0,71,-29,71,-67xm34,-94v40,0,101,-5,99,30v-4,55,-59,57,-117,54","w":165},"\u044d":{"d":"70,5v64,0,107,-61,106,-131v0,-42,-23,-67,-64,-67v-40,0,-73,22,-86,59r12,0v12,-30,40,-49,72,-49v41,0,62,36,53,80r-91,0r-2,10r91,0v-10,48,-39,88,-90,88v-33,0,-54,-22,-51,-56r-11,0v-3,42,19,66,61,66"},"\u044e":{"d":"3,0r41,-189r11,0r-18,86r43,0v15,-56,54,-90,102,-90v42,0,66,25,66,68v0,76,-52,130,-108,130v-53,0,-76,-45,-62,-98r-43,0r-20,93r-12,0xm180,-183v-50,0,-93,51,-94,119v0,38,21,59,56,59v49,0,94,-48,94,-117v0,-39,-21,-61,-56,-61","w":259},"\u044f":{"d":"127,-85r-52,0r-75,85r-13,0r76,-86v-31,-3,-45,-19,-45,-40v0,-71,74,-64,143,-63r-40,189r-12,0xm130,-95r18,-84v-56,-2,-113,-4,-117,50v-2,33,56,37,99,34","w":165}}}); /* End */ ; ; /* Start:/bitrix/templates/index/js/fonts/HeliosCondC_400.font.js*/ /*! * The following copyright notice may not be removed under any circumstances. * * Copyright: * Copyright (C) 1996; Type Market Ltd. Moscow, 119136, Box 20; (095) 142-77-12 * * Trademark: * Please refer to the Copyright section for the font trademark attribution * notices. */ Cufon.registerFont({"w":172,"face":{"font-family":"HeliosCondC","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 5 0 0 0 0 0 0 0","ascent":"285","descent":"-75","x-height":"5","bbox":"-11 -344 346 75","underline-thickness":"20.88","underline-position":"-11.52","stemh":"23","stemv":"27","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86},"\u00a0":{"w":86},"!":{"d":"42,-259r31,0v2,70,-3,133,-8,196r-15,0r-8,-117r0,-79xm42,-35r31,0r0,35r-31,0r0,-35","w":114},"\"":{"d":"15,-177r0,-79r18,0r0,79r-18,0xm54,-177r0,-79r18,0r0,79r-18,0","w":86},"#":{"d":"12,0r27,-88r-37,0r6,-20r37,0r13,-43r-37,0r6,-21r37,0r27,-87r19,0r-27,87r31,0r26,-87r20,0r-27,87r38,0r-6,21r-39,0r-12,43r38,0r-5,20r-40,0r-27,88r-19,0r27,-88r-30,0r-28,88r-18,0xm64,-108r30,0r14,-43r-31,0"},"$":{"d":"156,-190r-28,0v0,-34,-12,-43,-32,-43r0,88v45,20,68,34,68,79v0,45,-23,71,-68,71r0,35r-15,0r0,-35v-53,0,-66,-36,-66,-85r28,0v0,43,9,58,38,58r0,-96v-32,-15,-64,-33,-64,-74v0,-39,26,-67,64,-67r0,-23r15,0r0,23v44,0,60,32,60,69xm81,-151r0,-82v-14,0,-34,10,-34,39v0,25,14,34,34,43xm96,-113r0,91v29,0,38,-16,38,-42v0,-30,-12,-38,-38,-49"},"%":{"d":"206,-259r-115,264r-19,0r116,-264r18,0xm214,-125v36,0,47,29,47,62v0,48,-19,63,-47,63v-29,0,-46,-15,-46,-64v0,-32,10,-61,46,-61xm214,-106v-32,0,-35,87,1,87v21,0,23,-23,23,-39v0,-23,-2,-48,-24,-48xm66,-255v36,0,46,30,46,63v0,48,-18,63,-46,63v-29,0,-47,-15,-47,-64v0,-32,11,-62,47,-62xm66,-235v-33,1,-36,86,0,86v21,0,23,-23,23,-39v0,-23,-1,-47,-23,-47","w":288},"&":{"d":"130,-208v0,-15,-9,-28,-25,-28v-39,0,-22,56,-4,74v15,-12,29,-25,29,-46xm180,-47r33,47r-34,0r-16,-23v-39,54,-137,29,-137,-46v0,-39,22,-59,53,-79v-38,-33,-35,-111,26,-111v31,0,53,19,53,51v0,28,-23,51,-45,65r50,73v5,-16,9,-33,10,-49r26,0v-2,24,-6,50,-19,72xm148,-44r-57,-84v-47,21,-49,109,14,108v18,0,32,-11,43,-24","w":230},"'":{"d":"34,-177r0,-79r18,0r0,79r-18,0","w":86},"(":{"d":"80,-259r18,0v-15,32,-43,77,-43,165v0,64,12,114,45,169r-20,0v-68,-100,-73,-233,0,-334","w":115},")":{"d":"15,-259r20,0v69,100,73,233,0,334r-18,0v15,-32,43,-78,43,-166v0,-64,-13,-113,-45,-168","w":115},"*":{"d":"78,-259r18,0r0,42r38,-14r6,16r-40,13r27,34r-14,11r-27,-35r-25,33r-15,-9r26,-33r-39,-15r6,-15r39,15r0,-43"},"+":{"d":"74,-175r25,0r0,75r59,0r0,24r-59,0r0,76r-25,0r0,-76r-59,0r0,-24r59,0r0,-75"},",":{"d":"28,-35r31,0v1,41,3,75,-31,85r0,-15v14,-4,17,-22,17,-35r-17,0r0,-35","w":86},"-":{"d":"15,-100r90,0r0,24r-90,0r0,-24","w":120},"\u00ad":{"d":"15,-100r90,0r0,24r-90,0r0,-24","w":120},".":{"d":"28,-35r31,0r0,35r-31,0r0,-35","w":86},"\/":{"d":"79,-260r21,0r-83,269r-22,0","w":95},"0":{"d":"46,-127v0,54,3,106,40,106v37,0,41,-52,41,-106v0,-46,-4,-106,-41,-106v-37,0,-40,60,-40,106xm86,5v-67,0,-70,-73,-70,-132v0,-51,4,-132,70,-132v66,0,71,81,71,132v0,59,-3,132,-71,132"},"1":{"d":"81,0r0,-189r-55,0r0,-23v37,0,57,-7,61,-47r22,0r0,259r-28,0"},"2":{"d":"152,-187v0,69,-116,122,-106,161r108,0r0,26r-139,0v0,-46,9,-69,65,-115v21,-18,42,-41,42,-73v0,-26,-8,-45,-38,-45v-34,0,-38,27,-38,62r-29,0v-3,-51,18,-87,68,-88v44,0,67,29,67,72"},"3":{"d":"66,-121r0,-26v33,0,54,-9,54,-44v0,-25,-10,-42,-37,-42v-27,0,-37,24,-37,50r-27,0v0,-43,23,-76,66,-76v72,0,88,108,24,124v31,7,47,30,47,65v0,43,-22,75,-71,75v-49,0,-71,-35,-71,-82r28,0v0,28,8,56,43,56v28,0,42,-19,42,-46v0,-45,-17,-54,-61,-54"},"4":{"d":"104,-214r-72,123r72,0r0,-123xm9,-91r97,-168r27,0r0,168r23,0r0,26r-23,0r0,65r-29,0r0,-65r-95,0r0,-26"},"5":{"d":"37,-254r110,0r0,26r-87,0r-12,76v12,-12,24,-18,42,-18v48,0,66,40,66,82v0,46,-16,93,-70,93v-46,0,-69,-26,-69,-73r30,0v0,27,8,47,38,47v31,0,41,-31,41,-63v0,-30,-6,-60,-43,-60v-17,0,-29,7,-36,23r-26,0"},"6":{"d":"87,-139v-34,0,-40,29,-40,53v0,49,16,65,42,65v34,0,40,-37,40,-63v0,-28,-9,-55,-42,-55xm90,5v-69,0,-75,-67,-75,-120v0,-54,1,-144,76,-144v34,0,60,26,60,62r-28,0v-1,-27,-14,-36,-36,-36v-35,-1,-45,75,-43,101v30,-67,114,-21,114,47v0,55,-29,90,-68,90"},"7":{"d":"15,-254r143,0r0,24v-50,67,-79,148,-86,230r-32,0v10,-82,43,-161,94,-228r-119,0r0,-26"},"8":{"d":"86,-126v-30,0,-40,27,-40,53v0,31,7,52,40,52v33,0,41,-21,41,-52v0,-27,-11,-53,-41,-53xm86,-233v-24,0,-32,16,-32,39v0,26,9,42,33,42v25,0,33,-19,33,-41v0,-22,-9,-40,-34,-40xm65,-140v-61,-13,-56,-119,21,-119v77,0,85,102,25,119v23,4,46,26,46,68v0,49,-25,77,-71,77v-48,0,-70,-27,-70,-77v0,-42,28,-64,49,-68"},"9":{"d":"127,-169v0,-28,-7,-64,-42,-64v-32,0,-40,33,-40,59v0,27,7,59,40,59v32,0,42,-27,42,-54xm84,-259v69,0,74,67,74,120v0,54,0,144,-75,144v-38,0,-62,-25,-62,-62r29,0v0,23,11,36,35,36v36,1,44,-64,44,-100v-31,65,-114,21,-114,-47v0,-55,30,-91,69,-91"},":":{"d":"28,-35r31,0r0,35r-31,0r0,-35xm28,-189r31,0r0,35r-31,0r0,-35","w":86},";":{"d":"28,-35r31,0v1,41,3,75,-31,85r0,-15v14,-4,17,-22,17,-35r-17,0r0,-35xm28,-189r31,0r0,35r-31,0r0,-35","w":86},"<":{"d":"41,-88r118,66r0,25r-145,-80r0,-22r145,-80r0,25"},"=":{"d":"15,-133r143,0r0,24r-143,0r0,-24xm15,-67r143,0r0,25r-143,0r0,-25"},">":{"d":"14,-22r118,-66r-118,-66r0,-25r145,80r0,22r-145,80r0,-25"},"?":{"d":"70,-59v-13,-57,60,-86,60,-133v0,-20,-11,-41,-37,-41v-34,0,-40,26,-40,56r-31,0v0,-42,20,-82,69,-82v45,0,68,25,68,65v0,46,-25,60,-51,94v-5,7,-7,14,-7,41r-31,0xm70,-35r31,0r0,35r-31,0r0,-35"},"@":{"d":"149,-185v-37,0,-60,51,-60,83v0,17,9,33,27,33v31,0,58,-60,58,-91v0,-14,-11,-25,-25,-25xm188,-183r5,-16r24,0v-13,41,-30,79,-40,123v0,6,4,10,10,10v37,0,59,-52,59,-84v0,-57,-49,-92,-102,-92v-64,0,-114,53,-114,116v0,63,52,114,114,114v36,0,72,-18,93,-48r20,0v-22,41,-67,65,-113,65v-75,0,-131,-59,-131,-132v0,-73,60,-132,132,-132v65,0,119,45,119,110v0,43,-34,101,-82,101v-12,0,-26,-5,-30,-18v-29,35,-90,14,-90,-34v0,-62,79,-147,126,-83","w":276},"A":{"d":"5,0r74,-259r38,0r73,259r-32,0r-20,-75r-82,0r-19,75r-32,0xm131,-100r-34,-138r-34,138r68,0","w":195,"k":{"y":13,"w":13,"v":13,"t":8,"f":11,"Y":22,"W":19,"V":22,"T":16}},"B":{"d":"56,-233r0,84v43,1,80,4,80,-44v0,-45,-38,-40,-80,-40xm56,-123r0,97v48,2,88,4,88,-49v0,-52,-40,-49,-88,-48xm27,0r0,-259r68,0v81,-9,93,103,34,121v22,6,46,26,45,64v0,48,-27,74,-75,74r-72,0","w":191},"C":{"d":"175,-181r-28,0v0,-31,-11,-57,-47,-57v-50,0,-50,70,-50,104v0,53,2,114,50,114v37,0,44,-31,47,-74r28,0v-3,60,-18,100,-73,100v-76,0,-82,-78,-82,-139v0,-58,11,-131,82,-131v49,0,73,37,73,83","w":193},"D":{"d":"27,0r0,-259r71,0v81,0,90,65,90,129v0,63,-15,130,-85,130r-76,0xm56,-233r0,207v80,6,102,-7,102,-109v0,-60,-10,-98,-56,-98r-46,0","w":208},"E":{"d":"27,-259r130,0r0,26r-101,0r0,84r94,0r0,26r-94,0r0,97r101,0r0,26r-130,0r0,-259","w":174},"F":{"d":"27,-259r122,0r0,26r-93,0r0,84r86,0r0,26r-86,0r0,123r-29,0r0,-259","w":153,"k":{"T":-11,"A":16}},"G":{"d":"99,-107r0,-26r86,0r0,133r-22,0v-1,-12,2,-29,-1,-39v-8,30,-32,45,-61,45v-75,0,-81,-66,-81,-131v0,-63,11,-139,87,-139v49,0,74,30,76,80r-29,0v0,-32,-14,-54,-47,-54v-51,0,-57,53,-57,111v0,66,6,107,50,107v53,0,57,-47,57,-87r-58,0","w":203},"H":{"d":"56,-259r0,110r99,0r0,-110r29,0r0,259r-29,0r0,-123r-99,0r0,123r-29,0r0,-259r29,0","w":210},"I":{"d":"56,-259r0,259r-29,0r0,-259r29,0","w":82},"J":{"d":"100,-259r29,0r0,196v0,52,-24,69,-60,69v-51,1,-62,-34,-60,-86r29,0v1,30,-5,59,30,60v29,0,32,-21,32,-44r0,-195","w":155},"K":{"d":"56,-259r0,133r94,-133r36,0r-83,108r86,151r-34,0r-69,-128r-30,38r0,90r-29,0r0,-259r29,0","w":194,"k":{"w":11,"v":11,"q":8,"o":8,"g":8,"f":5,"e":8,"d":8,"c":8,"Q":8,"O":8,"G":8,"C":8}},"L":{"d":"56,-259r0,233r106,0r0,26r-135,0r0,-259r29,0","w":171,"k":{"y":16,"Y":32,"W":24,"V":27,"T":32}},"M":{"d":"27,-259r51,0v18,81,45,152,56,240v14,-78,40,-161,59,-240r50,0r0,259r-28,0r0,-246r-63,246r-35,0r-62,-246r1,246r-29,0r0,-259","w":270},"N":{"d":"27,-259r47,0r83,240r-1,-240r29,0r0,259r-47,0r-72,-207v-5,-11,-5,-26,-11,-39r1,246r-29,0r0,-259","w":212},"O":{"d":"105,6v-76,0,-85,-64,-85,-136v0,-59,9,-134,85,-134v76,0,86,75,86,134v0,72,-10,136,-86,136xm161,-134v0,-58,-11,-104,-57,-104v-44,0,-54,45,-54,103v0,75,7,115,55,115v48,0,56,-39,56,-114","w":210,"k":{"Y":11,"X":8}},"P":{"d":"56,-233r0,97v50,0,91,5,91,-50v0,-51,-43,-48,-91,-47xm56,-110r0,110r-29,0r0,-259v77,-2,152,-7,150,73v-2,75,-53,78,-121,76","w":196,"k":{"A":24}},"Q":{"d":"171,-31r30,25r-15,18r-29,-24v-11,11,-33,18,-52,18v-76,0,-85,-66,-85,-138v0,-59,9,-132,85,-132v77,0,86,71,86,130v0,18,-2,80,-20,103xm136,-29r-26,-21r15,-19r24,20v6,-10,12,-48,12,-75v0,-72,-8,-114,-57,-114v-48,0,-54,43,-54,115v0,73,27,125,86,94","w":210,"k":{"Y":11}},"R":{"d":"56,-114r0,114r-29,0r0,-259v76,-1,154,-11,154,70v0,31,-19,55,-47,61v27,3,45,27,45,59v-1,61,6,49,8,69r-29,0v-15,-37,5,-121,-55,-114r-47,0xm56,-233r0,93v50,-1,95,12,95,-48v0,-58,-47,-43,-95,-45","w":204},"S":{"d":"18,-82r28,0v0,38,11,62,49,62v29,0,50,-12,50,-43v-2,-84,-122,-33,-122,-134v0,-41,28,-67,70,-67v45,0,72,25,74,73r-29,0v0,-28,-14,-47,-43,-47v-53,0,-54,70,-20,81v45,14,100,39,100,90v0,49,-30,73,-80,73v-50,0,-77,-32,-77,-88","w":192},"T":{"d":"101,-233r0,233r-29,0r0,-233r-67,0r0,-26r163,0r0,26r-67,0","w":173,"k":{"z":13,"y":13,"w":13,"v":13,"u":22,"s":22,"r":22,"q":22,"p":22,"o":22,"n":22,"m":22,"g":22,"f":8,"e":22,"d":22,"c":22,"a":22,"Y":-8,"T":-8,"J":24,"A":16}},"U":{"d":"27,-259r29,0r0,186v0,20,3,53,49,53v46,0,49,-33,49,-53r0,-186r29,0r0,197v0,46,-31,68,-78,68v-47,0,-78,-22,-78,-68r0,-197","w":209},"V":{"d":"4,-259r32,0r60,238r61,-238r31,0r-74,259r-36,0","w":192,"k":{"u":11,"s":11,"r":11,"q":11,"p":11,"o":11,"n":11,"m":11,"g":11,"e":11,"d":11,"c":11,"a":11,"A":22}},"W":{"d":"6,-259r31,0r34,178v4,17,4,39,9,60v10,-85,31,-158,46,-238r36,0r34,178v4,16,2,38,8,60v10,-85,31,-158,46,-238r32,0r-61,259r-36,0v-14,-82,-34,-149,-41,-240r-2,0v-8,91,-30,158,-46,240r-35,0","w":287,"k":{"u":11,"s":11,"r":11,"q":11,"p":11,"o":11,"n":11,"m":11,"g":11,"e":11,"d":11,"c":11,"a":11,"A":19}},"X":{"d":"9,-259r32,0r54,101r55,-101r32,0r-70,126r71,133r-33,0r-55,-108r-56,108r-32,0r72,-133","w":190,"k":{"y":8,"w":11,"v":11,"o":5,"e":5,"Q":8,"O":8,"G":8,"C":8}},"Y":{"d":"2,-259r32,0r60,130r61,-130r32,0r-78,159r0,100r-29,0r0,-100","w":189,"k":{"u":22,"s":22,"r":22,"q":22,"p":22,"o":22,"n":22,"m":22,"g":22,"e":22,"d":22,"c":22,"a":22,"Q":11,"O":11,"G":11,"C":11,"A":22}},"Z":{"d":"20,-259r149,0r0,25r-123,208r125,0r0,26r-154,0r0,-25r122,-208r-119,0r0,-26","w":187},"[":{"d":"35,-259r60,0r0,21r-33,0r0,289r33,0r0,21r-60,0r0,-331","w":115},"\\":{"d":"77,0r-88,-259r20,0r88,259r-20,0","w":86},"]":{"d":"20,-259r61,0r0,331r-61,0r0,-21r34,0r0,-289r-34,0r0,-21","w":114},"^":{"d":"78,-259r17,0r54,144r-19,0r-44,-117r-44,117r-18,0"},"_":{"d":"173,41r-173,0r0,-20r173,0r0,20"},"`":{"d":"12,-264r38,0r31,48r-23,0","w":115},"a":{"d":"104,-105v-28,17,-61,19,-61,56v0,17,7,30,25,30v47,-1,34,-45,36,-86xm46,-140r-24,0v0,-40,19,-57,55,-57v83,0,54,92,54,162v0,12,6,19,17,15v0,12,4,25,-12,22v-18,1,-24,-5,-30,-28v-6,17,-24,31,-42,31v-33,0,-50,-18,-50,-53v0,-48,53,-59,82,-74v16,-14,10,-59,-21,-52v-21,0,-29,12,-29,34","w":156},"b":{"d":"53,-259r0,87v11,-17,24,-25,41,-25v49,0,60,47,60,98v0,54,-10,104,-59,104v-17,0,-30,-2,-42,-24r0,19r-28,0r0,-259r28,0xm88,-174v-33,0,-35,44,-35,77v0,37,0,79,35,79v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75"},"c":{"d":"84,-174v-33,0,-38,40,-38,80v0,31,2,76,37,76v30,0,33,-26,34,-49r26,0v0,36,-15,72,-58,72v-59,0,-67,-49,-67,-99v0,-51,12,-103,67,-103v39,0,58,29,58,65r-26,0v0,-21,-7,-42,-33,-42","w":156},"d":{"d":"83,-174v-33,0,-37,45,-37,78v0,37,2,78,37,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm121,-259r27,0r0,259r-27,0v-1,-7,2,-18,-1,-24v-12,23,-23,29,-46,29v-48,0,-56,-50,-56,-106v0,-83,59,-126,103,-71r0,-87","w":173},"e":{"d":"46,-113r65,0v0,-29,-4,-61,-31,-61v-30,0,-34,35,-34,61xm112,-64r28,0v0,38,-18,69,-58,69v-40,0,-64,-24,-64,-101v0,-48,11,-101,62,-101v54,0,60,56,60,107r-94,0v0,44,3,72,35,72v26,0,31,-24,31,-46","w":157},"f":{"d":"4,-192r28,0v-4,-45,6,-75,58,-67r0,23v-28,-8,-32,15,-30,44r30,0r0,23r-30,0r0,169r-28,0r0,-169r-28,0r0,-23","w":96,"k":{"y":-5,"t":-5,"f":-5}},"g":{"d":"83,-174v-33,0,-37,45,-37,78v0,37,2,78,37,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm120,-170v3,-5,0,-15,1,-22r27,0r0,191v9,80,-118,92,-125,19r27,0v2,17,13,24,29,24v38,0,44,-23,42,-64r-3,0v-12,20,-23,27,-41,27v-43,0,-59,-32,-59,-101v0,-45,8,-101,59,-101v18,0,34,9,43,27","w":173},"h":{"d":"53,-259r0,88v21,-38,95,-37,95,23r0,148r-27,0r0,-141v0,-20,-7,-33,-29,-33v-66,0,-31,112,-39,174r-28,0r0,-259r28,0","w":173},"i":{"d":"53,-192r0,192r-28,0r0,-192r28,0xm53,-225r-28,0r0,-34r28,0r0,34","w":77},"j":{"d":"25,-192r28,0r0,200v0,45,-12,58,-49,58r0,-26v17,5,21,-11,21,-28r0,-204xm53,-225r-28,0r0,-34r28,0r0,34","w":77},"k":{"d":"53,-259r0,156r66,-89r33,0r-60,75r61,117r-32,0r-48,-96r-20,28r0,68r-28,0r0,-259r28,0","w":158,"k":{"q":5,"o":5,"g":5,"e":5,"d":5,"c":5}},"l":{"d":"53,-259r0,259r-28,0r0,-259r28,0","w":77},"m":{"d":"53,-192r0,21v14,-29,81,-40,92,3v25,-42,98,-43,98,20r0,148r-27,0r0,-138v0,-22,-6,-36,-29,-36v-21,0,-39,14,-39,44r0,130r-27,0r0,-141v0,-20,-7,-33,-30,-33v-19,0,-38,14,-38,44r0,130r-28,0r0,-192r28,0","w":268},"n":{"d":"53,-192r0,21v21,-38,95,-37,95,23r0,148r-27,0r0,-141v0,-20,-7,-33,-29,-33v-66,0,-31,112,-39,174r-28,0r0,-192r28,0","w":173},"o":{"d":"87,-197v48,0,69,37,69,101v0,78,-27,101,-69,101v-41,0,-69,-23,-69,-102v0,-64,21,-100,69,-100xm87,-174v-29,0,-41,22,-41,80v0,45,9,76,41,76v32,0,40,-31,40,-76v0,-58,-11,-80,-40,-80","w":173},"p":{"d":"89,-174v-33,0,-36,45,-36,78v0,37,1,78,36,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm53,-192r0,21v9,-18,26,-26,39,-26v49,0,63,44,63,98v0,58,-13,104,-61,104v-19,0,-31,-10,-41,-25r0,87r-28,0r0,-259r28,0","w":173},"q":{"d":"121,-192r27,0r0,259r-27,0r-1,-88v-42,58,-102,15,-102,-72v0,-57,16,-104,59,-104v18,-1,31,9,44,25r0,-20xm83,-174v-33,0,-37,45,-37,78v0,37,2,78,37,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75","w":173},"r":{"d":"53,-192r0,31v11,-25,27,-37,55,-33r0,27v-78,-13,-50,98,-55,167r-28,0r0,-192r28,0","w":112,"k":{"v":-5,"t":-8}},"s":{"d":"111,-50v0,-49,-91,-35,-91,-94v0,-33,21,-53,54,-53v36,0,58,19,58,56r-27,0v0,-23,-8,-33,-30,-33v-19,0,-27,12,-27,29v0,51,91,32,91,93v0,37,-23,57,-64,57v-44,0,-60,-20,-60,-61r26,0v0,25,8,38,33,38v22,0,37,-9,37,-32","w":153},"t":{"d":"57,-244r0,52r32,0r0,23r-32,0r0,131v-3,19,15,15,31,15r0,23v-32,-2,-59,11,-58,-32r0,-137r-27,0r0,-23r27,0r0,-52r27,0","w":96,"k":{"y":-5,"t":-5,"f":-5}},"u":{"d":"25,-192r28,0r0,149v0,16,5,25,24,25v19,0,41,-11,41,-51r0,-123r27,0r0,192r-27,0v-1,-8,2,-19,-1,-25v-18,45,-92,41,-92,-19r0,-148","w":170},"v":{"d":"4,-192r29,0r44,169r44,-169r28,0r-58,192r-29,0","w":153},"w":{"d":"8,-192r27,0r36,169r30,-169r28,0r34,169r33,-169r26,0r-43,192r-32,0r-32,-164r-30,164r-32,0","w":230},"x":{"d":"7,-192r28,0r44,73r42,-73r28,0r-55,93r57,99r-28,0r-45,-79r-46,79r-28,0r58,-99","w":154,"k":{"y":-5}},"y":{"d":"5,-192r29,0r46,153r42,-153r29,0r-60,193v-10,41,-30,77,-78,61r0,-24v30,13,47,-5,54,-35","w":152,"k":{"x":-5,"f":-5}},"z":{"d":"14,-192r114,0r0,22r-89,147r90,0r0,23r-118,0r0,-22r89,-147r-86,0r0,-23","w":139},"{":{"d":"34,-150v0,-60,-12,-118,58,-108v-72,9,12,126,-65,145v76,8,-9,121,64,145v-76,7,-57,-49,-57,-107v0,-20,-9,-33,-31,-39v24,-1,31,-19,31,-36","w":94},"|":{"d":"32,0r0,-259r22,0r0,259r-22,0","w":86},"}":{"d":"68,-112v-74,-18,4,-136,-65,-147v72,-7,59,49,59,108v0,19,9,33,31,39v-47,1,-31,58,-31,100v0,35,-16,44,-59,44v47,-9,31,-57,31,-103v0,-22,5,-36,34,-41","w":95},"~":{"d":"27,-58r-12,-16v9,-19,20,-40,40,-40v19,0,49,23,63,23v13,0,23,-16,28,-28r12,16v-8,19,-21,38,-40,38v-19,0,-44,-24,-62,-24v-16,0,-21,17,-29,31"},"\u0402":{"d":"101,-233r0,87v61,-9,120,-1,119,73v0,58,-37,77,-95,73r0,-26v40,1,65,-6,65,-47v0,-51,-47,-54,-89,-47r0,120r-29,0r0,-233r-67,0r0,-26r163,0r0,26r-67,0","w":240},"\u0403":{"d":"27,-259r122,0r0,26r-93,0r0,233r-29,0r0,-259xm65,-283r38,-61r44,0r-54,61r-28,0","w":153,"k":{"\u0443":13,"\u0441":22,"\u0440":22,"\u043f":22,"\u043e":22,"\u043d":22,"\u043c":22,"\u043b":27,"\u043a":22,"\u0438":22,"\u0437":22,"\u0435":22,"\u0434":27,"\u0432":22,"\u0431":13,"\u0430":22,"\u0424":22,"\u0423":-5,"\u0422":-11,"\u041b":16,"\u0414":16,"\u0410":22,"\u040e":-5,"\u045c":22}},"\u0453":{"d":"25,-192r102,0r0,23r-74,0r0,169r-28,0r0,-192xm54,-216r31,-48r38,0r-46,48r-23,0","w":131,"k":{"\u043b":11,"\u0434":19}},"\u2026":{"d":"42,-35r31,0r0,35r-31,0r0,-35xm157,-35r31,0r0,35r-31,0r0,-35xm272,-35r31,0r0,35r-31,0r0,-35","w":345},"\u0409":{"d":"45,-259r145,0r0,110v67,-2,117,2,118,76v2,78,-71,76,-147,73r0,-233r-87,0r0,102v0,65,-1,150,-69,132r0,-25v46,8,40,-32,40,-122r0,-113xm190,-123r0,97v47,1,88,3,88,-47v0,-51,-39,-51,-88,-50","w":326},"\u040a":{"d":"56,-259r0,110r99,0r0,-110r29,0r0,110v66,-2,115,2,117,76v2,79,-70,76,-146,73r0,-123r-99,0r0,123r-29,0r0,-259r29,0xm184,-123r0,97v47,1,87,3,87,-47v0,-50,-38,-51,-87,-50","w":319},"\u040c":{"d":"56,-259r0,133r94,-133r36,0r-83,108r86,151r-34,0r-69,-128r-30,38r0,90r-29,0r0,-259r29,0xm79,-283r37,-61r45,0r-54,61r-28,0","w":194,"k":{"\u0447":19,"\u0444":8,"\u0443":8,"\u0442":13,"\u0441":8,"\u043e":8,"\u0435":8,"\u0421":8,"\u041e":8}},"\u040b":{"d":"101,-233r0,87v61,-9,120,-1,119,73r0,73r-28,0r0,-72v5,-51,-47,-56,-91,-48r0,120r-29,0r0,-233r-67,0r0,-26r163,0r0,26r-67,0","w":240},"\u040f":{"d":"56,-259r0,233r98,0r0,-233r29,0r0,259r-64,0r0,60r-28,0r0,-60r-64,0r0,-259r29,0","w":210},"\u0452":{"d":"25,-259r28,0r0,21r49,0r0,20r-49,0r0,47v32,-45,102,-34,95,49r0,46v0,119,-18,138,-71,142r0,-24v38,-4,44,-29,44,-138v1,-36,1,-81,-29,-78v-65,6,-31,112,-39,174r-28,0r0,-218r-24,0r0,-20r24,0r0,-21","w":173},"\u2018":{"d":"54,-180r-32,0v-1,-41,-2,-75,32,-85r0,16v-14,4,-17,21,-17,34r17,0r0,35","w":77},"\u2019":{"d":"23,-259r32,0v1,41,2,74,-32,85r0,-16v14,-4,17,-22,17,-35r-17,0r0,-34","w":77},"\u201c":{"d":"111,-180r-31,0v-1,-41,-3,-75,31,-85r0,16v-14,4,-17,21,-17,34r17,0r0,35xm53,-180r-32,0v-1,-41,-2,-75,32,-85r0,16v-14,4,-17,21,-17,34r17,0r0,35","w":134},"\u201d":{"d":"22,-259r32,0v1,41,2,74,-32,85r0,-16v14,-4,17,-22,17,-35r-17,0r0,-34xm81,-259r31,0v1,40,2,74,-31,85r0,-16v14,-4,17,-22,17,-35r-17,0r0,-34","w":134},"\u2013":{"d":"0,-100r173,0r0,24r-173,0r0,-24"},"\u2014":{"d":"0,-100r346,0r0,24r-346,0r0,-24","w":345},"\u2122":{"d":"118,-259r30,0r35,103r35,-103r31,0r0,146r-19,0r-1,-125r-41,125r-11,0r-40,-125r0,125r-19,0r0,-146xm0,-259r97,0r0,21r-38,0r0,125r-21,0r0,-125r-38,0r0,-21","w":259},"\u0459":{"d":"36,-192r113,0r0,79v53,-6,92,9,92,58v0,60,-59,57,-119,55r0,-169r-60,0v-4,68,18,192,-58,168r0,-21v32,4,32,-3,32,-73r0,-97xm149,-90r0,67v34,2,68,1,64,-33v3,-33,-29,-37,-64,-34","w":259},"\u045a":{"d":"53,-192r0,79r68,0r0,-79r27,0r0,79v53,-6,92,9,92,58v1,59,-59,58,-119,55r0,-90r-68,0r0,90r-28,0r0,-192r28,0xm148,-90r0,67v34,2,68,1,63,-33v4,-34,-29,-36,-63,-34","w":257},"\u045c":{"d":"53,-192r0,89r66,-89r33,0r-60,75r61,117r-32,0r-48,-96r-20,28r0,68r-28,0r0,-192r28,0xm68,-216r31,-48r37,0r-45,48r-23,0","w":158,"k":{"\u0444":5,"\u0441":5,"\u043e":5,"\u043b":-5,"\u0435":5,"\u0431":5}},"\u045b":{"d":"25,-259r28,0r0,21r49,0r0,20r-49,0r0,47v21,-38,95,-37,95,23r0,148r-27,0r0,-141v0,-20,-7,-33,-29,-33v-66,0,-31,112,-39,174r-28,0r0,-218r-24,0r0,-20r24,0r0,-21","w":173},"\u045f":{"d":"53,-192r0,169r67,0r0,-169r28,0r0,192r-49,0r0,52r-25,0r0,-52r-49,0r0,-192r28,0"},"\u040e":{"d":"5,-259r31,0r60,180r56,-180r30,0r-71,216v-16,48,-33,54,-70,46r0,-26v22,6,33,7,41,-21xm47,-319r15,0v5,33,61,35,65,0r15,0v0,31,-21,44,-49,44v-25,0,-46,-13,-46,-44","w":181,"k":{"\u044f":13,"\u044e":13,"\u044d":13,"\u0449":13,"\u0448":13,"\u0447":13,"\u0446":13,"\u0444":13,"\u0441":13,"\u0440":13,"\u043f":13,"\u043e":13,"\u043d":13,"\u043c":13,"\u043b":19,"\u043a":13,"\u0439":13,"\u0438":13,"\u0437":13,"\u0435":13,"\u0434":32,"\u0433":13,"\u0432":13,"\u0431":11,"\u0430":13,"\u0424":16,"\u041b":16,"\u0414":16,"\u0410":27,"\u045c":13,"\u0453":13}},"\u045e":{"d":"5,-192r29,0r46,153r42,-153r29,0r-60,193v-10,41,-30,77,-78,61r0,-24v30,13,47,-5,54,-35xm36,-255r14,0v6,33,54,35,59,0r15,0v-1,30,-20,43,-45,43v-23,0,-42,-13,-43,-43","w":152,"k":{"\u0445":-5,"\u0442":-5,"\u043b":5,"\u0434":11}},"\u0408":{"d":"100,-259r29,0r0,196v0,52,-24,69,-60,69v-51,1,-62,-34,-60,-86r29,0v1,30,-5,59,30,60v29,0,32,-21,32,-44r0,-195","w":155},"\u0490":{"d":"27,-259r97,0r0,-33r25,0r0,59r-93,0r0,233r-29,0r0,-259","w":153,"k":{"\u044f":16,"\u044e":22,"\u0443":13,"\u0441":22,"\u0440":22,"\u043f":22,"\u043e":22,"\u043d":22,"\u043c":22,"\u043b":27,"\u043a":22,"\u0438":22,"\u0437":22,"\u0435":22,"\u0434":27,"\u0432":22,"\u0431":13,"\u0430":22,"\u0424":22,"\u0423":-5,"\u0422":-11,"\u041b":16,"\u0414":16,"\u0410":22,"\u040e":-5,"\u045c":22}},"\u0401":{"d":"27,-259r130,0r0,26r-101,0r0,84r94,0r0,26r-94,0r0,97r101,0r0,26r-130,0r0,-259xm76,-292r-27,0r0,-34r27,0r0,34xm128,-292r-28,0r0,-34r28,0r0,34","w":174},"\u0404":{"d":"175,-181r-28,0v0,-32,-11,-57,-47,-57v-39,0,-50,51,-50,89r68,0r0,26r-68,0v0,39,6,103,50,103v37,0,47,-32,47,-74r28,0v0,58,-18,100,-73,100v-76,0,-82,-83,-82,-139v0,-57,14,-131,81,-131v46,0,74,31,74,83","w":193},"\u0407":{"d":"56,-259r0,259r-29,0r0,-259r29,0xm29,-292r-27,0r0,-34r27,0r0,34xm81,-292r-27,0r0,-34r27,0r0,34","w":82},"\u0406":{"d":"56,-259r0,259r-29,0r0,-259r29,0","w":82},"\u0456":{"d":"53,-192r0,192r-28,0r0,-192r28,0xm53,-225r-28,0r0,-34r28,0r0,34","w":77},"\u0491":{"d":"25,-192r77,0r0,-33r25,0r0,56r-74,0r0,169r-28,0r0,-192","w":131,"k":{"\u043b":11,"\u0434":19}},"\u0451":{"d":"46,-113r65,0v0,-29,-4,-61,-31,-61v-30,0,-34,35,-34,61xm112,-64r28,0v0,38,-18,69,-58,69v-40,0,-64,-24,-64,-101v0,-48,11,-101,62,-101v54,0,60,56,60,107r-94,0v0,44,3,72,35,72v26,0,31,-24,31,-46xm69,-225r-27,0r0,-34r27,0r0,34xm121,-225r-27,0r0,-34r27,0r0,34","w":157},"\u0454":{"d":"143,-132r-26,0v0,-22,-7,-42,-33,-42v-27,0,-38,31,-38,61r49,0r0,23r-49,0v0,30,4,72,37,72v30,0,33,-26,34,-49r26,0v0,36,-15,72,-58,72v-59,0,-67,-49,-67,-99v0,-47,8,-103,67,-103v39,0,58,29,58,65","w":156},"\u0458":{"d":"4,66r0,-26v17,5,21,-11,21,-28r0,-204r28,0r0,200v0,45,-12,58,-49,58xm53,-225r-28,0r0,-34r28,0r0,34","w":77},"\u0405":{"d":"18,-82r28,0v0,38,11,62,49,62v29,0,50,-12,50,-43v-2,-84,-122,-33,-122,-134v0,-41,28,-67,70,-67v45,0,72,25,74,73r-29,0v0,-28,-14,-47,-43,-47v-53,0,-54,70,-20,81v45,14,100,39,100,90v0,49,-30,73,-80,73v-50,0,-77,-32,-77,-88","w":192},"\u0455":{"d":"111,-50v0,-49,-91,-35,-91,-94v0,-33,21,-53,54,-53v36,0,58,19,58,56r-27,0v0,-23,-8,-33,-30,-33v-19,0,-27,12,-27,29v0,51,91,32,91,93v0,37,-23,57,-64,57v-44,0,-60,-20,-60,-61r26,0v0,25,8,38,33,38v22,0,37,-9,37,-32","w":153},"\u0457":{"d":"53,-192r0,192r-28,0r0,-192r28,0xm27,-225r-28,0r0,-34r28,0r0,34xm78,-225r-27,0r0,-34r27,0r0,34","w":77},"\u0410":{"d":"5,0r74,-259r38,0r73,259r-32,0r-20,-75r-82,0r-19,75r-32,0xm131,-100r-34,-138r-34,138r68,0","w":195,"k":{"\u0447":19,"\u0443":13,"\u0442":16,"\u0427":22,"\u0424":16,"\u0423":19,"\u0422":16,"\u045e":13,"\u040e":19}},"\u0411":{"d":"56,-123r0,97v47,1,88,3,88,-47v0,-50,-39,-51,-88,-50xm27,-259r129,0r0,26r-100,0r0,84v67,-2,117,2,118,76v2,78,-71,76,-147,73r0,-259","w":191},"\u0412":{"d":"56,-233r0,84v43,1,80,4,80,-44v0,-45,-38,-40,-80,-40xm56,-123r0,97v48,2,88,4,88,-49v0,-52,-40,-49,-88,-48xm27,0r0,-259r68,0v81,-9,93,103,34,121v22,6,46,26,45,64v0,48,-27,74,-75,74r-72,0","w":191},"\u0413":{"d":"27,-259r122,0r0,26r-93,0r0,233r-29,0r0,-259","w":153,"k":{"\u044f":16,"\u044e":22,"\u044d":22,"\u0443":22,"\u0441":22,"\u0440":22,"\u043e":22,"\u043d":22,"\u043c":22,"\u043b":27,"\u043a":22,"\u0438":22,"\u0435":22,"\u0434":27,"\u0432":22,"\u0431":13,"\u0430":22,"\u0424":22,"\u0423":-5,"\u0422":-11,"\u041b":16,"\u0414":16,"\u0410":22,"\u0451":22,"\u045e":13,"\u040e":-5,"\u045c":22}},"\u0414":{"d":"52,-259r138,0r0,233r20,0r0,86r-27,0r0,-60r-148,0r0,60r-27,0r0,-86r17,0v32,-49,26,-144,27,-233xm161,-233r-80,0v1,77,0,164,-25,207r105,0r0,-207","w":217},"\u0415":{"d":"27,-259r130,0r0,26r-101,0r0,84r94,0r0,26r-94,0r0,97r101,0r0,26r-130,0r0,-259","w":174},"\u0416":{"d":"138,-259r29,0r0,133r94,-133r36,0r-82,108r85,151r-34,0r-69,-128r-30,38r0,90r-29,0r0,-90r-30,-38r-69,128r-34,0r86,-151r-83,-108r36,0r94,133r0,-133","w":305,"k":{"\u0447":19,"\u0444":8,"\u0443":8,"\u0442":13,"\u0441":8,"\u043e":8,"\u0435":8,"\u0424":22,"\u0421":8,"\u041e":8,"\u0451":8,"\u045e":8}},"\u0417":{"d":"50,-191r-29,0v6,-45,33,-73,77,-73v41,0,70,27,70,64v0,35,-19,54,-40,62v69,16,77,142,-30,144v-57,0,-76,-35,-80,-87r29,0v2,39,13,61,52,61v71,-1,62,-101,2,-103r-25,0r0,-26v38,3,63,-8,62,-45v0,-28,-16,-44,-43,-44v-24,0,-42,18,-45,47","w":196},"\u0418":{"d":"27,-259r29,0r0,240v24,-85,62,-160,91,-240r42,0r0,259r-29,0r0,-246v-21,92,-62,162,-91,246r-42,0r0,-259","w":215},"\u0419":{"d":"27,-259r29,0r0,240v24,-85,62,-160,91,-240r42,0r0,259r-29,0r0,-246v-21,92,-62,162,-91,246r-42,0r0,-259xm58,-319r15,0v5,33,61,35,65,0r15,0v0,31,-21,44,-49,44v-25,0,-46,-13,-46,-44","w":215},"\u041a":{"d":"56,-259r0,133r94,-133r36,0r-83,108r86,151r-34,0r-69,-128r-30,38r0,90r-29,0r0,-259r29,0","w":194,"k":{"\u0447":19,"\u0444":8,"\u0443":8,"\u0442":13,"\u0441":8,"\u043e":8,"\u0435":8,"\u0421":8,"\u041e":8,"\u0451":8,"\u045e":8}},"\u041b":{"d":"45,-259r145,0r0,259r-29,0r0,-233r-87,0r0,102v0,65,-1,150,-69,132r0,-25v46,8,40,-32,40,-122r0,-113","w":217},"\u041c":{"d":"27,-259r51,0v18,81,45,152,56,240v14,-78,40,-161,59,-240r50,0r0,259r-28,0r0,-246r-63,246r-35,0r-62,-246r1,246r-29,0r0,-259","w":270},"\u041d":{"d":"56,-259r0,110r99,0r0,-110r29,0r0,259r-29,0r0,-123r-99,0r0,123r-29,0r0,-259r29,0","w":210},"\u041e":{"d":"105,6v-76,0,-85,-64,-85,-136v0,-59,9,-134,85,-134v76,0,86,75,86,134v0,72,-10,136,-86,136xm161,-134v0,-58,-11,-104,-57,-104v-44,0,-54,45,-54,103v0,75,7,115,55,115v48,0,56,-39,56,-114","w":210,"k":{"\u0434":11,"\u0425":8,"\u0416":8}},"\u041f":{"d":"27,-259r157,0r0,259r-29,0r0,-233r-99,0r0,233r-29,0r0,-259","w":210},"\u0420":{"d":"56,-233r0,97v50,0,91,5,91,-50v0,-51,-43,-48,-91,-47xm56,-110r0,110r-29,0r0,-259v77,-2,152,-7,150,73v-2,75,-53,78,-121,76","w":196,"k":{"\u041b":22,"\u0414":22,"\u0410":24}},"\u0421":{"d":"175,-181r-28,0v0,-31,-11,-57,-47,-57v-50,0,-50,70,-50,104v0,53,2,114,50,114v37,0,44,-31,47,-74r28,0v-3,60,-18,100,-73,100v-76,0,-82,-78,-82,-139v0,-58,11,-131,82,-131v49,0,73,37,73,83","w":193},"\u0422":{"d":"101,-233r0,233r-29,0r0,-233r-67,0r0,-26r163,0r0,26r-67,0","w":173,"k":{"\u044f":16,"\u044e":22,"\u044d":19,"\u044c":22,"\u044b":22,"\u0449":22,"\u0448":22,"\u0447":22,"\u0446":22,"\u0444":22,"\u0443":13,"\u0441":22,"\u0440":22,"\u043f":22,"\u043e":22,"\u043d":22,"\u043c":22,"\u043b":27,"\u043a":22,"\u0438":22,"\u0437":19,"\u0435":22,"\u0434":27,"\u0433":22,"\u0432":22,"\u0431":13,"\u0430":22,"\u0424":16,"\u0423":-8,"\u0422":-8,"\u041b":13,"\u0414":16,"\u0410":16,"\u0451":22,"\u0491":22,"\u045e":13,"\u040e":-8,"\u045c":22,"\u0453":22}},"\u0423":{"d":"5,-259r31,0r60,180r56,-180r30,0r-71,216v-16,48,-33,54,-70,46r0,-26v22,6,33,7,41,-21","w":181,"k":{"\u044f":13,"\u044e":13,"\u044d":13,"\u0449":13,"\u0448":13,"\u0447":13,"\u0446":13,"\u0444":13,"\u0441":13,"\u0440":13,"\u043f":13,"\u043e":13,"\u043d":13,"\u043c":13,"\u043b":19,"\u043a":13,"\u0439":13,"\u0438":13,"\u0437":13,"\u0435":13,"\u0434":32,"\u0433":13,"\u0432":13,"\u0431":11,"\u0430":13,"\u0424":16,"\u041b":16,"\u0414":16,"\u0410":27,"\u0451":13,"\u0491":13,"\u045c":13,"\u0453":13}},"\u0424":{"d":"119,-259r29,0r0,26v54,-2,100,27,100,101v0,73,-45,103,-100,101r0,31r-29,0r0,-31v-56,2,-101,-27,-101,-101v0,-74,47,-103,101,-101r0,-26xm148,-207r0,150v43,2,70,-22,70,-76v0,-53,-27,-76,-70,-74xm119,-57r0,-150v-43,-2,-71,21,-71,74v0,54,27,78,71,76","w":266,"k":{"\u0425":22,"\u0423":11,"\u0422":16,"\u0416":22,"\u0410":16,"\u040e":11}},"\u0425":{"d":"9,-259r32,0r54,101r55,-101r32,0r-70,126r71,133r-33,0r-55,-108r-56,108r-32,0r72,-133","w":190,"k":{"\u0443":8,"\u043e":5,"\u0435":5,"\u0424":22,"\u0421":8,"\u041e":8,"\u0451":5}},"\u0426":{"d":"56,-259r0,233r99,0r0,-233r29,0r0,233r20,0r0,86r-27,0r0,-60r-150,0r0,-259r29,0","w":211},"\u0427":{"d":"25,-259r29,0v3,52,-17,110,48,110v11,0,28,0,42,-3r0,-107r29,0r0,259r-29,0r0,-126v-62,8,-122,6,-119,-64r0,-69","w":200},"\u0428":{"d":"56,-259r0,233r80,0r0,-233r29,0r0,233r81,0r0,-233r29,0r0,259r-248,0r0,-259r29,0","w":301},"\u0429":{"d":"56,-259r0,233r80,0r0,-233r29,0r0,233r81,0r0,-233r29,0r0,233r21,0r0,86r-28,0r0,-60r-241,0r0,-259r29,0","w":302},"\u042a":{"d":"80,-123r0,97v47,1,88,3,88,-47v0,-50,-39,-51,-88,-50xm80,-259r0,110v67,-2,117,2,118,76v2,78,-71,76,-147,73r0,-233r-53,0r0,-26r82,0","w":216},"\u042b":{"d":"56,-123r0,97v47,1,88,3,88,-47v0,-50,-39,-51,-88,-50xm56,-259r0,110v67,-2,117,2,118,76v2,78,-71,76,-147,73r0,-259r29,0xm242,-259r0,259r-29,0r0,-259r29,0","w":268},"\u042c":{"d":"56,-123r0,97v47,1,88,3,88,-47v0,-50,-39,-51,-88,-50xm56,-259r0,110v67,-2,117,2,118,76v2,78,-71,76,-147,73r0,-259r29,0","w":191,"k":{"\u0422":32}},"\u042d":{"d":"17,-181v2,-50,29,-83,76,-83v69,0,80,72,80,131v0,60,-4,139,-79,139v-53,0,-76,-37,-76,-100r28,0v2,42,10,74,47,74v44,0,50,-48,50,-103r-68,0r0,-26r68,0v0,-36,-6,-89,-50,-89v-33,0,-45,26,-47,57r-29,0","w":192,"k":{"\u0434":11}},"\u042e":{"d":"56,-259r0,110r45,0v0,-55,17,-115,85,-115v76,0,85,75,85,134v0,72,-9,136,-85,136v-73,0,-85,-60,-85,-129r-45,0r0,123r-29,0r0,-259r29,0xm185,-238v-44,0,-54,46,-54,104v0,75,7,114,55,114v48,0,56,-39,56,-114v0,-58,-11,-104,-57,-104","w":291,"k":{"\u0434":11}},"\u042f":{"d":"136,-136r0,-97v-47,-1,-88,-3,-88,47v0,51,39,51,88,50xm136,0r0,-110r-38,0r-56,110r-32,0r58,-114v-30,-9,-50,-28,-50,-72v0,-78,71,-76,147,-73r0,259r-29,0","w":191},"\u0430":{"d":"104,-105v-28,17,-61,19,-61,56v0,17,7,30,25,30v47,-1,34,-45,36,-86xm46,-140r-24,0v0,-40,19,-57,55,-57v83,0,54,92,54,162v0,12,6,19,17,15v0,12,4,25,-12,22v-18,1,-24,-5,-30,-28v-6,17,-24,31,-42,31v-33,0,-50,-18,-50,-53v0,-48,53,-59,82,-74v16,-14,10,-59,-21,-52v-21,0,-29,12,-29,34","w":156,"k":{"\u0447":16}},"\u0431":{"d":"45,-158v37,-61,111,-23,111,62v0,68,-21,101,-69,101v-51,0,-69,-39,-69,-115v0,-84,22,-118,62,-128v23,-6,40,-10,43,-21r23,0v-6,26,-25,35,-55,41v-27,6,-43,27,-46,60xm87,-18v29,0,40,-27,40,-78v0,-39,-12,-69,-40,-69v-27,0,-41,29,-41,69v0,51,12,78,41,78","w":173},"\u0432":{"d":"53,-169r0,56v30,1,59,3,59,-29v0,-30,-30,-28,-59,-27xm53,-90r0,67v34,1,69,3,63,-34v2,-35,-29,-35,-63,-33xm25,0r0,-192v53,-1,114,-6,114,45v1,26,-15,40,-30,47v21,5,35,21,35,48v-1,62,-60,52,-119,52","w":162},"\u0433":{"d":"25,-192r102,0r0,23r-74,0r0,169r-28,0r0,-192","w":131,"k":{"\u0443":-5,"\u043b":11,"\u0434":19,"\u045e":-5}},"\u0434":{"d":"24,-23v26,-45,22,-101,22,-169r106,0r0,169r18,0r0,75r-25,0r0,-52r-113,0r0,52r-25,0r0,-75r17,0xm124,-23r0,-146r-51,0v0,60,3,105,-21,146r72,0","w":177,"k":{"\u0447":11}},"\u0435":{"d":"46,-113r65,0v0,-29,-4,-61,-31,-61v-30,0,-34,35,-34,61xm112,-64r28,0v0,38,-18,69,-58,69v-40,0,-64,-24,-64,-101v0,-48,11,-101,62,-101v54,0,60,56,60,107r-94,0v0,44,3,72,35,72v26,0,31,-24,31,-46","w":157},"\u0436":{"d":"104,-192r28,0r0,89r66,-89r33,0r-60,75r62,117r-32,0r-48,-96r-21,28r0,68r-28,0r0,-68r-20,-28r-48,96r-32,0r61,-117r-60,-75r33,0r66,89r0,-89","w":236,"k":{"\u043b":-5}},"\u0437":{"d":"39,-141r-25,0v1,-30,23,-56,58,-56v62,0,76,84,23,95v16,7,40,17,39,50v0,34,-24,57,-61,57v-40,0,-59,-20,-62,-65r25,0v-3,58,71,56,71,6v0,-27,-18,-40,-48,-36r0,-23v26,2,42,-5,43,-31v0,-15,-8,-30,-30,-30v-22,0,-32,14,-33,33","w":152},"\u0438":{"d":"25,-192r28,0r0,146v0,7,-2,16,-3,23v18,-63,47,-111,70,-169r33,0r0,192r-28,0r0,-146v0,-5,2,-18,3,-24v-17,64,-47,112,-70,170r-33,0r0,-192","w":177},"\u0439":{"d":"25,-192r28,0r0,146v0,7,-2,16,-3,23v18,-63,47,-111,70,-169r33,0r0,192r-28,0r0,-146v0,-5,2,-18,3,-24v-17,64,-47,112,-70,170r-33,0r0,-192xm46,-255r14,0v6,33,54,35,59,0r15,0v-1,30,-20,43,-45,43v-23,0,-42,-13,-43,-43","w":177},"\u043a":{"d":"53,-192r0,89r66,-89r33,0r-60,75r61,117r-32,0r-48,-96r-20,28r0,68r-28,0r0,-192r28,0","w":158,"k":{"\u0444":5,"\u0441":5,"\u043e":5,"\u043b":-5,"\u0435":5,"\u0431":5,"\u0451":5}},"\u043b":{"d":"36,-192r113,0r0,192r-27,0r0,-169r-60,0v-4,68,18,192,-58,168r0,-21v32,4,32,-3,32,-73r0,-97","w":174},"\u043c":{"d":"25,-192r43,0v14,56,34,103,41,165v9,-58,27,-110,42,-165r43,0r0,192r-27,0r0,-169r-49,169r-18,0r-49,-169r0,169r-26,0r0,-192","w":218},"\u043d":{"d":"53,-192r0,79r68,0r0,-79r27,0r0,192r-27,0r0,-90r-68,0r0,90r-28,0r0,-192r28,0","w":173},"\u043e":{"d":"87,-197v48,0,69,37,69,101v0,78,-27,101,-69,101v-41,0,-69,-23,-69,-102v0,-64,21,-100,69,-100xm87,-174v-29,0,-41,22,-41,80v0,45,9,76,41,76v32,0,40,-31,40,-76v0,-58,-11,-80,-40,-80","w":173},"\u043f":{"d":"25,-192r123,0r0,192r-27,0r0,-169r-68,0r0,169r-28,0r0,-192","w":173},"\u0440":{"d":"89,-174v-33,0,-36,45,-36,78v0,37,1,78,36,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm53,-192r0,21v9,-18,26,-26,39,-26v49,0,63,44,63,98v0,58,-13,104,-61,104v-19,0,-31,-10,-41,-25r0,87r-28,0r0,-259r28,0","w":173},"\u0441":{"d":"84,-174v-33,0,-38,40,-38,80v0,31,2,76,37,76v30,0,33,-26,34,-49r26,0v0,36,-15,72,-58,72v-59,0,-67,-49,-67,-99v0,-51,12,-103,67,-103v39,0,58,29,58,65r-26,0v0,-21,-7,-42,-33,-42","w":156},"\u0442":{"d":"83,0r-28,0r0,-169r-50,0r0,-23r128,0r0,23r-50,0r0,169","w":137,"k":{"\u0443":-5,"\u0442":-5,"\u043b":8,"\u0434":13,"\u045e":-5}},"\u0443":{"d":"5,-192r29,0r46,153r42,-153r29,0r-60,193v-10,41,-30,77,-78,61r0,-24v30,13,47,-5,54,-35","w":152,"k":{"\u0445":-5,"\u0442":-5,"\u043b":5,"\u0434":11}},"\u0444":{"d":"121,-259r27,0r0,88v9,-18,24,-26,39,-26v49,0,64,44,64,97v0,55,-13,105,-62,105v-19,0,-31,-10,-41,-25r0,86r-27,0r0,-86v-10,15,-22,25,-41,25v-51,0,-62,-50,-62,-105v0,-53,14,-97,63,-97v15,0,31,8,40,26r0,-88xm83,-174v-33,0,-37,45,-37,78v0,37,2,78,37,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm184,-174v-33,0,-36,45,-36,78v0,37,2,78,37,78v28,0,37,-29,37,-81v0,-25,-3,-75,-38,-75","w":268},"\u0445":{"d":"7,-192r28,0r44,73r42,-73r28,0r-55,93r57,99r-28,0r-45,-79r-46,79r-28,0r58,-99","w":154,"k":{"\u0443":-5,"\u043b":-5,"\u045e":-5}},"\u0446":{"d":"53,-192r0,169r68,0r0,-169r27,0r0,169r19,0r0,75r-26,0r0,-52r-116,0r0,-192r28,0","w":173},"\u0447":{"d":"18,-192r27,0v4,36,-15,83,30,83v19,0,27,-1,33,-2r0,-81r27,0r0,192r-27,0r0,-90v-40,13,-90,-1,-90,-45r0,-57","w":160},"\u0448":{"d":"53,-192r0,169r62,0r0,-169r28,0r0,169r62,0r0,-169r28,0r0,192r-208,0r0,-192r28,0","w":257},"\u0449":{"d":"53,-192r0,169r62,0r0,-169r28,0r0,169r62,0r0,-169r28,0r0,169r18,0r0,75r-25,0r0,-52r-201,0r0,-192r28,0","w":258},"\u044a":{"d":"63,-90r0,67v34,2,68,1,63,-33v4,-34,-29,-36,-63,-34xm-2,-192r65,0r0,79v53,-6,92,9,92,58v0,60,-59,57,-119,55r0,-169r-38,0r0,-23"},"\u044b":{"d":"53,-90r0,67v34,2,67,0,63,-33v3,-33,-29,-37,-63,-34xm53,-192r0,79v53,-6,91,9,91,58v0,60,-59,57,-119,55r0,-192r28,0xm203,-192r0,192r-27,0r0,-192r27,0","w":228},"\u044c":{"d":"53,-90r0,67v34,2,67,0,63,-33v3,-33,-29,-37,-63,-34xm53,-192r0,79v53,-6,91,9,91,58v0,60,-59,57,-119,55r0,-192r28,0","w":162,"k":{"\u0442":24}},"\u044d":{"d":"63,-113r48,0v0,-30,-8,-61,-35,-61v-26,0,-35,21,-35,42r-26,0v0,-36,22,-65,61,-65v55,0,64,56,64,103v0,50,-10,99,-63,99v-44,0,-62,-29,-62,-72r26,0v1,29,7,49,35,49v31,0,35,-33,35,-72r-48,0r0,-23","w":157},"\u044e":{"d":"53,-192r0,79r33,0v0,-51,24,-84,68,-84v48,0,70,36,70,94v0,83,-28,108,-70,108v-39,0,-68,-23,-68,-95r-33,0r0,90r-28,0r0,-192r28,0xm154,-174v-28,0,-40,22,-40,80v0,45,8,76,40,76v33,0,41,-31,41,-76v0,-58,-12,-80,-41,-80","w":241},"\u044f":{"d":"110,-104r0,-65v-34,-1,-69,-1,-64,33v-4,33,31,34,64,32xm110,-81r-29,0r-40,81r-29,0r41,-84v-21,-8,-35,-29,-35,-54v-1,-60,61,-56,120,-54r0,192r-28,0r0,-81","w":162}}}); /* End */ ; ; /* Start:/bitrix/templates/index/js/fonts/HeliosCondC_700.font.js*/ /*! * The following copyright notice may not be removed under any circumstances. * * Copyright: * Copyright (C) 1995; Type Market Ltd. Moscow, 119136, Box 20; * phone:(095)2071022; Created by A.Kustov * * Trademark: * Please refer to the Copyright section for the font trademark attribution * notices. * * Full name: * HeliosCondC-Bold */ Cufon.registerFont({"w":167,"face":{"font-family":"HeliosCondC","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 8 0 0 0 0 0 0 0","ascent":"292","descent":"-68","x-height":"6","bbox":"-12 -344 308 68","underline-thickness":"14.4","underline-position":"0","stemh":"35","stemv":"44","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86},"\u00a0":{"w":86},"!":{"d":"12,-46r43,0r0,46r-43,0r0,-46xm12,-260r43,0r0,108r-6,84r-29,0v-8,-59,-9,-124,-8,-192","w":68},"\"":{"d":"12,-162r0,-94r42,0r0,94r-42,0xm117,-162r-42,0r0,-94r42,0r0,94","w":130},"#":{"d":"87,-252r-11,77r25,0r12,-77r28,0r-9,77r24,0r0,33r-30,0r-2,30r23,0r0,33r-27,0r-11,79r-29,0r10,-79r-24,0r-11,79r-31,0r11,-79r-29,0r0,-33r33,0r4,-30r-30,0r0,-33r34,0r11,-77r29,0xm93,-112r4,-30r-24,0r-4,30r24,0","w":163},"$":{"d":"15,-91r47,0v-3,37,14,58,36,56v42,-4,33,-50,2,-67v-35,-19,-83,-46,-83,-95v0,-37,24,-62,60,-67r0,-31r32,0r0,31v42,5,64,34,62,86r-47,0v1,-32,-11,-47,-31,-47v-31,0,-33,42,-10,51v36,31,96,40,95,107v0,42,-24,67,-69,71r0,31r-32,0r0,-32v-44,-8,-64,-42,-62,-94","w":188},"%":{"d":"62,-260v50,0,54,30,54,63v0,33,-4,64,-54,64v-50,0,-53,-31,-53,-64v0,-33,3,-63,53,-63xm63,-234v-19,0,-20,14,-20,37v0,23,1,39,20,39v18,0,19,-16,19,-39v0,-23,-1,-37,-19,-37xm95,0r-24,0r116,-265r24,0xm223,-132v50,0,54,30,54,63v0,33,-4,64,-54,64v-50,0,-53,-31,-53,-64v0,-33,3,-63,53,-63xm224,-107v-19,0,-20,15,-20,38v0,23,1,38,20,38v18,0,19,-15,19,-38v0,-23,-1,-38,-19,-38","w":287},"&":{"d":"105,-180v20,-8,31,-48,3,-51v-27,1,-12,38,-3,51xm125,-148r33,56v5,-11,8,-31,8,-47r38,0v0,31,-8,60,-23,87r31,52r-51,0r-10,-17v-47,47,-129,16,-129,-56v0,-38,19,-60,49,-81v-10,-17,-21,-36,-21,-57v1,-76,114,-72,115,-2v0,28,-17,51,-40,65xm133,-48r-42,-72v-9,3,-24,22,-24,46v0,35,44,54,66,26","w":230},"'":{"d":"17,-162r0,-94r42,0r0,94r-42,0","w":75},"(":{"d":"96,-268v-41,67,-53,247,0,332r-31,0v-58,-93,-74,-230,0,-332r31,0","w":105},")":{"d":"5,-268r30,0v73,103,59,238,0,332r-30,0v53,-87,41,-264,0,-332","w":105},"*":{"d":"80,-258r0,41r35,-14r10,28r-38,11r25,30r-25,19r-22,-33r-22,33r-21,-17r21,-32r-38,-11r12,-28r35,14r0,-41r28,0","w":136},"+":{"d":"71,-174r31,0r0,66r61,0r0,32r-61,0r0,64r-31,0r0,-64r-61,0r0,-32r61,0r0,-66","w":175},",":{"d":"8,0r0,-46r45,0v1,45,5,92,-40,93r0,-17v8,0,22,-3,22,-30r-27,0","w":58},"-":{"d":"13,-108r91,0r0,32r-91,0r0,-32","w":117},"\u00ad":{"d":"13,-108r91,0r0,32r-91,0r0,-32","w":117},".":{"d":"8,0r0,-46r45,0r0,46r-45,0","w":59},"\/":{"d":"5,30r81,-290r33,0r-82,290r-32,0","w":123},"0":{"d":"92,-260v43,0,71,26,71,68r0,129v0,42,-28,69,-71,69v-40,0,-72,-28,-72,-69r0,-129v0,-41,32,-68,72,-68xm92,-220v-14,0,-26,8,-26,23r0,138v0,15,12,26,26,26v13,0,25,-12,25,-27r0,-137v0,-15,-12,-23,-25,-23","w":182},"1":{"d":"81,-255r33,0r0,255r-46,0r0,-176r-59,0r0,-35v42,2,66,-18,72,-44","w":170},"2":{"d":"15,0v-7,-110,101,-121,101,-188v0,-23,-10,-32,-26,-32v-21,0,-28,23,-26,53r-46,0v-5,-60,33,-93,72,-93v79,0,91,99,38,144v-29,24,-57,45,-61,76r89,0r0,40r-141,0","w":181},"3":{"d":"63,-117r0,-35v37,6,48,-21,48,-43v0,-17,-6,-26,-23,-26v-19,-1,-27,16,-25,39r-43,0v-3,-47,21,-73,68,-78v76,-8,92,106,33,122v27,6,40,29,40,66v0,56,-26,78,-74,78v-54,0,-70,-36,-67,-85r43,0v-1,25,4,47,25,47v23,0,26,-18,26,-42v1,-42,-15,-45,-51,-43","w":181},"4":{"d":"87,-255r54,0r0,164r24,0r0,40r-24,0r0,51r-46,0r0,-51r-80,0r0,-47xm95,-91r0,-106r-47,106r47,0","w":176},"5":{"d":"24,-255r125,0r0,38r-85,0r-2,55v42,-39,98,-4,98,59v0,66,-12,109,-70,109v-50,0,-78,-29,-74,-84r46,0v0,37,8,46,25,46v26,7,27,-37,27,-70v0,-40,-42,-49,-51,-18r-44,0","w":180},"6":{"d":"159,-199r-46,0v0,-15,-9,-22,-24,-22v-25,-5,-24,36,-23,64v31,-34,93,-17,93,40r0,61v0,43,-31,62,-71,62v-35,0,-68,-18,-68,-62v0,-87,-27,-204,68,-204v42,0,71,24,71,61xm89,-135v-30,-2,-22,47,-23,77v0,17,7,26,22,26v34,2,24,-46,25,-78v0,-16,-12,-25,-24,-25","w":178},"7":{"d":"12,-255r147,0r0,36v-27,53,-55,124,-61,219r-52,0v9,-79,36,-164,66,-216r-100,0r0,-39","w":169},"8":{"d":"91,-117v-22,-1,-25,23,-25,49v0,24,9,36,25,36v20,0,25,-24,25,-51v0,-22,-8,-34,-25,-34xm91,-221v-15,0,-22,9,-22,34v0,22,7,34,22,34v15,0,22,-12,22,-34v0,-24,-6,-34,-22,-34xm55,-137v-16,-9,-31,-25,-31,-60v0,-44,29,-63,67,-63v38,0,67,19,67,63v0,35,-13,51,-29,60v23,10,33,29,33,64v0,56,-21,79,-71,79v-49,0,-71,-23,-71,-79v0,-35,16,-53,35,-64","w":182},"9":{"d":"91,-260v35,0,68,18,68,62v0,87,26,204,-69,204v-42,0,-70,-23,-70,-60r46,0v0,15,8,22,23,22v25,0,25,-36,24,-65v-31,33,-93,18,-93,-40r0,-61v0,-43,31,-62,71,-62xm91,-221v-34,0,-24,46,-25,77v0,16,11,25,23,25v31,0,24,-46,24,-76v0,-17,-7,-26,-22,-26","w":178},":":{"d":"12,-148r0,-46r45,0r0,46r-45,0xm12,0r0,-46r45,0r0,46r-45,0","w":68},";":{"d":"12,-148r0,-46r45,0r0,46r-45,0xm12,0r0,-46r45,0v1,45,4,91,-40,93r0,-17v8,0,22,-3,22,-30r-27,0","w":68},"<":{"d":"9,-73r0,-34r148,-80r0,39r-103,58r103,58r0,36","w":165},"=":{"d":"9,-140r156,0r0,32r-156,0r0,-32xm9,-76r156,0r0,31r-156,0r0,-31","w":173},">":{"d":"15,-34r102,-60r-102,-56r0,-40r146,80r0,33r-146,81r0,-38","w":165},"?":{"d":"44,-70v-3,-85,57,-72,57,-132v0,-17,-11,-24,-24,-24v-15,0,-24,15,-22,38r-43,0v-3,-50,24,-77,67,-77v72,0,93,78,39,129v-21,20,-31,33,-29,66r-45,0xm44,0r0,-46r45,0r0,46r-45,0","w":158},"@":{"d":"166,-85v43,3,63,-78,14,-81v-41,-2,-62,78,-14,81xm216,-49v-11,1,-18,-8,-21,-20v-31,41,-96,10,-96,-43v0,-64,79,-124,121,-65r5,-20r31,0v-19,83,-23,102,-23,107v0,4,1,8,5,8v19,0,41,-24,41,-63v0,-59,-43,-92,-98,-92v-62,0,-103,47,-103,108v0,97,121,139,183,78r32,0v-64,107,-251,53,-251,-78v0,-77,63,-136,139,-136v65,0,127,44,127,111v0,77,-67,105,-92,105","w":351},"A":{"d":"2,0r66,-260r66,0r58,260r-54,0r-12,-68r-56,0r-15,68r-53,0xm76,-106r44,0r-20,-121","w":194,"k":{"w":8,"v":8,"Y":19,"W":13,"V":13,"T":13}},"B":{"d":"67,-223r0,69v33,3,57,-2,57,-36v0,-34,-25,-35,-57,-33xm67,-117r0,80v37,1,59,5,59,-40v0,-41,-22,-42,-59,-40xm18,0r0,-260r91,0v46,0,64,30,64,63v0,25,-13,53,-35,57v61,15,48,140,-21,140r-99,0","w":189},"C":{"d":"175,-175r-49,0v1,-33,-7,-50,-30,-50v-21,0,-29,11,-29,44r0,103v0,34,8,45,29,45v25,0,32,-26,30,-60r49,0v2,56,-12,99,-79,99v-103,0,-80,-92,-80,-181v0,-61,27,-90,81,-90v55,0,82,33,78,90","w":191},"D":{"d":"18,0r0,-260v109,-3,170,-14,168,130v0,58,-12,130,-78,130r-90,0xm67,-221r0,182v61,9,69,-23,68,-91v-1,-83,-7,-96,-68,-91","w":201},"E":{"d":"18,-260r139,0r0,40r-90,0r0,60r82,0r0,40r-82,0r0,80r90,0r0,40r-139,0r0,-260","w":169},"F":{"d":"18,-260r136,0r0,40r-87,0r0,60r83,0r0,40r-83,0r0,120r-49,0r0,-260","w":162,"k":{"A":11}},"G":{"d":"102,-139r82,0r0,139r-39,0r0,-29v-31,63,-137,40,-129,-58r0,-85v0,-61,29,-93,86,-93v64,0,84,41,82,89r-49,0v0,-35,-11,-49,-33,-49v-51,0,-35,84,-35,132v0,41,9,60,35,60v27,0,35,-31,33,-68r-33,0r0,-38","w":200},"H":{"d":"67,-260r0,100r65,0r0,-100r50,0r0,260r-50,0r0,-120r-65,0r0,120r-49,0r0,-260r49,0","w":199},"I":{"d":"67,-260r0,260r-49,0r0,-260r49,0","w":85},"J":{"d":"95,-260r49,0r0,204v0,38,-24,62,-68,62v-52,0,-70,-31,-66,-88r48,0v-1,21,0,53,18,49v11,0,19,-8,19,-26r0,-201","w":162},"K":{"d":"67,-260r0,113r60,-113r56,0r-66,113r68,147r-55,0r-43,-104r-20,26r0,78r-49,0r0,-260r49,0","w":192,"k":{"t":5,"o":5,"c":5,"a":5,"Q":5,"O":5,"G":5,"C":5}},"L":{"d":"67,-260r0,220r90,0r0,40r-139,0r0,-260r49,0","w":165,"k":{"Y":27,"W":16,"V":19,"T":24}},"M":{"d":"18,-260r79,0r34,169r35,-169r79,0r0,260r-46,0r-1,-235r-49,235r-35,0r-50,-235r0,235r-46,0r0,-260","w":262},"N":{"d":"18,-260r53,0r73,189v-9,-59,-5,-124,-6,-189r46,0r0,260r-54,0r-72,-189v9,58,5,125,6,189r-46,0r0,-260","w":201},"O":{"d":"16,-176v0,-66,36,-89,85,-89v50,0,83,23,83,89r0,95v0,66,-33,87,-83,87v-49,0,-85,-21,-85,-87r0,-95xm101,-225v-55,2,-34,97,-34,150v0,27,11,42,34,42v53,-2,33,-96,33,-148v0,-28,-12,-44,-33,-44","w":200},"P":{"d":"67,-106r0,106r-49,0r0,-260r93,0v42,0,69,34,69,76v0,61,-45,87,-113,78xm67,-221r0,77v36,3,62,-3,62,-39v0,-34,-26,-41,-62,-38","w":195,"k":{"A":16}},"Q":{"d":"198,-2r-23,23r-28,-25v-60,24,-131,8,-131,-78r0,-94v0,-66,36,-89,85,-89v50,0,83,23,83,89v0,51,6,118,-12,150xm101,-47r24,-24r8,8v-6,-56,23,-162,-32,-162v-56,0,-29,97,-34,150v-3,32,19,49,46,39","w":202},"R":{"d":"67,-110r0,110r-49,0r0,-260r103,0v40,0,65,30,65,67v0,39,-16,59,-39,62v41,11,35,39,35,80v0,24,0,43,12,43r0,8r-49,0v-29,-22,12,-108,-42,-110r-36,0xm67,-221r0,74v37,0,67,7,68,-38v1,-42,-32,-36,-68,-36","w":201},"S":{"d":"170,-178r-48,0v1,-32,-11,-47,-31,-47v-32,0,-32,42,-9,51v36,30,95,43,94,107v0,46,-28,73,-80,73v-59,0,-86,-35,-83,-95r47,0v-3,37,14,59,36,56v42,-4,35,-52,3,-69v-35,-18,-83,-46,-83,-95v0,-43,32,-68,77,-68v52,0,79,30,77,87","w":188},"T":{"d":"117,-220r0,220r-49,0r0,-220r-62,0r0,-40r172,0r0,40r-61,0","w":184,"k":{"z":8,"y":8,"w":8,"v":8,"u":13,"s":13,"r":13,"q":19,"p":13,"o":22,"n":13,"m":13,"g":19,"f":5,"e":22,"d":22,"c":22,"a":22,"J":24,"A":13}},"U":{"d":"18,-260r49,0r0,183v0,28,10,42,33,42v24,0,33,-13,33,-42r0,-183r50,0r0,190v0,47,-25,75,-83,75v-57,0,-82,-27,-82,-75r0,-190","w":200},"V":{"d":"4,-260r53,0r38,216r35,-216r51,0r-51,260r-71,0","w":187,"k":{"u":11,"s":8,"q":8,"p":5,"o":11,"n":5,"m":5,"g":8,"e":11,"d":11,"c":11,"a":11,"A":13}},"W":{"d":"7,-260r50,0r30,217r32,-217r53,0r32,217r30,-217r50,0r-42,260r-70,0r-27,-181r-27,181r-69,0","w":288,"k":{"s":5,"o":8,"a":8,"A":13}},"X":{"d":"8,-260r57,0r34,85r35,-85r55,0r-64,126r67,134r-56,0r-37,-96r-40,96r-54,0r63,-134","w":197,"k":{"t":5}},"Y":{"d":"4,-260r58,0r35,100r39,-100r56,0r-70,148r0,112r-50,0r0,-112","w":195,"k":{"u":16,"s":16,"r":16,"q":19,"p":16,"o":22,"n":16,"m":16,"g":19,"e":19,"d":22,"c":22,"a":22,"A":19}},"Z":{"d":"16,-260r142,0r0,39r-94,182r97,0r0,39r-150,0r0,-37r96,-184r-91,0r0,-39","w":176},"[":{"d":"17,-260r71,0r0,27r-30,0r0,238r33,0r0,27r-74,0r0,-292","w":97},"\\":{"d":"5,-260r33,0r81,290r-33,0","w":123},"]":{"d":"14,-260r71,0r0,292r-74,0r0,-27r33,0r0,-238r-30,0r0,-27","w":104},"^":{"d":"77,-261r38,0r62,132r-34,17r-47,-97r-50,97r-34,-17","w":185},"_":{"d":"5,18r175,0r0,21r-175,0r0,-21","w":185},"`":{"d":"73,-260r30,49r-35,0r-52,-49r57,0","w":114},"a":{"d":"107,-102v-16,11,-45,23,-44,47v0,15,5,27,19,27v32,0,25,-43,25,-74xm63,-136r-43,0v-3,-41,23,-66,66,-66v38,0,68,15,68,51v0,49,-6,110,5,151r-46,0v-3,-4,-4,-14,-4,-19v-18,41,-93,31,-93,-30v0,-34,16,-51,50,-65v22,-9,41,-17,41,-34v0,-12,-7,-17,-21,-17v-14,0,-24,9,-23,29","w":171},"b":{"d":"84,-165v-38,0,-19,74,-22,112v-3,31,44,32,43,1r0,-90v0,-15,-9,-23,-21,-23xm62,-260r0,78v22,-33,90,-26,90,35r0,97v2,60,-70,74,-90,30r0,20r-44,0r0,-260r44,0"},"c":{"d":"143,-125r-45,0v1,-19,1,-40,-17,-40v-11,0,-19,6,-19,20r0,94v-2,25,36,28,36,3r0,-28r45,0v8,52,-21,82,-62,82v-39,0,-65,-23,-65,-56r0,-96v0,-33,26,-56,65,-56v38,-1,70,27,62,77","w":157},"d":{"d":"84,-165v-38,0,-19,74,-22,112v-3,31,44,32,43,1r0,-90v0,-15,-9,-23,-21,-23xm105,-182r0,-78r45,0r0,260r-45,0r0,-20v-21,44,-89,29,-89,-30r0,-97v-4,-60,67,-69,89,-35"},"e":{"d":"152,-94r-92,0v1,29,-7,65,24,65v18,0,25,-13,23,-33r45,0v2,47,-27,68,-68,68v-39,0,-68,-18,-68,-63r0,-82v0,-45,29,-63,68,-63v57,0,75,44,68,108xm60,-126r47,0v2,-23,-1,-41,-23,-41v-22,0,-26,18,-24,41"},"f":{"d":"5,-197r18,0v-4,-42,5,-66,63,-63r0,35v-21,-2,-18,11,-18,28r20,0r0,33r-20,0r0,164r-45,0r0,-164r-18,0r0,-33","w":95},"g":{"d":"82,-165v-38,0,-19,74,-22,112v-3,31,44,32,43,1r0,-90v0,-15,-9,-23,-21,-23xm103,-182r0,-15r44,0r0,203v0,42,-17,62,-63,62v-42,0,-62,-15,-67,-46r43,0v5,16,43,15,43,-8r0,-34v-21,44,-89,30,-89,-30r0,-97v-4,-61,66,-68,89,-35","w":166},"h":{"d":"62,-260r0,80v21,-35,87,-29,87,34r0,146r-44,0r0,-141v0,-15,-8,-24,-22,-24v-12,0,-21,9,-21,24r0,141r-44,0r0,-260r44,0"},"i":{"d":"18,-216r0,-44r44,0r0,44r-44,0xm62,-197r0,197r-44,0r0,-197r44,0","w":80},"j":{"d":"18,-216r0,-44r44,0r0,44r-44,0xm18,-197r44,0r0,228v1,33,-30,37,-61,34r0,-34v12,0,16,0,17,-17r0,-211","w":80},"k":{"d":"62,-260r0,137r41,-74r46,0r-46,80r46,117r-49,0r-27,-76v-14,15,-11,47,-11,76r-44,0r0,-260r44,0","w":153},"l":{"d":"62,-260r0,260r-44,0r0,-260r44,0","w":80},"m":{"d":"18,-197r43,0r0,20v13,-29,70,-36,81,-2v16,-34,91,-31,91,18r0,161r-44,0r0,-140v0,-17,-7,-25,-22,-25v-12,0,-20,9,-20,25r0,140r-43,0r0,-140v0,-17,-8,-25,-23,-25v-12,0,-20,9,-20,25r0,140r-43,0r0,-197","w":250},"n":{"d":"62,-197r0,17v21,-35,87,-29,87,34r0,146r-44,0r0,-141v0,-15,-8,-24,-22,-24v-12,0,-21,9,-21,24r0,141r-44,0r0,-197r44,0"},"o":{"d":"86,-202v85,1,69,69,70,144v0,34,-19,64,-70,64v-87,-1,-68,-69,-70,-144v0,-34,17,-64,70,-64xm86,-167v-14,0,-24,6,-24,24r0,90v0,18,10,24,24,24v14,0,23,-6,23,-24r0,-90v0,-18,-9,-24,-23,-24","w":171},"p":{"d":"84,-165v-38,0,-19,74,-22,112v-3,31,44,32,43,1r0,-90v0,-15,-9,-23,-21,-23xm18,-197r44,0r0,22v20,-46,90,-33,90,28r0,97v2,59,-70,76,-90,29r0,87r-44,0r0,-263"},"q":{"d":"84,-165v-38,0,-19,74,-22,112v-3,31,44,32,43,1r0,-90v0,-15,-9,-23,-21,-23xm105,-197r45,0r0,263r-45,0r0,-87v-23,48,-89,29,-89,-29r0,-97v-2,-61,69,-74,89,-28r0,-22"},"r":{"d":"18,-197r42,0v1,12,-2,28,1,38v7,-26,22,-40,46,-40r0,49v-17,0,-45,0,-45,42r0,108r-44,0r0,-197","w":110,"k":{"y":-8}},"s":{"d":"14,-63r44,0v-2,20,6,35,22,34v30,-1,26,-36,1,-46v-26,-19,-66,-30,-66,-74v0,-35,29,-53,64,-53v39,0,65,24,64,67r-43,0v8,-33,-38,-45,-40,-14v0,19,33,31,47,41v18,12,39,29,39,61v0,49,-43,53,-68,53v-37,0,-68,-23,-64,-69","w":160},"t":{"d":"23,-249r45,0r0,52r20,0r0,35r-20,0r0,110v0,14,3,20,20,20r0,33v-31,6,-65,0,-65,-36r0,-127r-18,0r0,-35r18,0r0,-52","w":95},"u":{"d":"19,-197r44,0r0,142v0,15,7,24,21,24v14,0,21,-8,21,-23r0,-143r45,0r0,197r-42,0r0,-20v-21,43,-89,33,-89,-30r0,-147","w":168},"v":{"d":"3,-197r46,0r29,160r30,-160r46,0r-45,197r-61,0","w":156},"w":{"d":"2,-197r46,0r23,154r24,-154r32,0r25,154r23,-154r46,0r-38,197r-54,0r-18,-117r-18,117r-53,0","w":223},"x":{"d":"5,-197r49,0r23,55r22,-55r49,0r-49,99r51,98r-51,0r-22,-56r-23,56r-51,0r51,-98","w":152},"y":{"d":"3,-197r49,0r27,151r25,-151r47,0r-52,222v-8,43,-33,44,-71,39r0,-33v13,0,27,2,26,-13v0,-3,-10,-46,-51,-215","w":156},"z":{"d":"12,-197r116,0r0,35r-67,127r70,0r0,35r-119,0r0,-37r67,-125r-67,0r0,-35","w":139},"{":{"d":"6,-118v11,-3,27,-9,27,-33r0,-59v2,-54,26,-54,62,-51v-56,20,12,113,-45,143v50,12,-7,131,49,146v-40,7,-72,-13,-66,-40v-5,-47,17,-88,-27,-106","w":105},"|":{"d":"18,0r0,-260r31,0r0,260r-31,0","w":65},"}":{"d":"98,-118v-45,18,-21,59,-27,106v6,26,-25,48,-65,40v55,-10,-4,-125,48,-146v-36,-14,-19,-67,-23,-111v0,-11,-2,-26,-22,-32v35,-3,62,-3,62,51r0,59v0,24,16,30,27,33","w":105},"~":{"d":"24,-58r-19,-24v15,-30,27,-44,45,-44v53,0,64,51,91,-3r20,25v-13,31,-30,42,-47,42v-23,0,-46,-22,-63,-22v-15,0,-20,15,-27,26","w":168},"\u0402":{"d":"117,-220r0,64v9,-2,27,-4,45,-4v40,0,66,40,66,77v-2,60,-27,90,-86,83r0,-37v25,1,34,-8,36,-40v3,-42,-30,-48,-61,-40r0,117r-49,0r0,-220r-62,0r0,-40r172,0r0,40r-61,0","w":246},"\u0403":{"d":"18,-260r136,0r0,40r-87,0r0,220r-49,0r0,-260xm102,-344r49,0r-57,65r-32,0","w":162,"k":{"\u0443":8,"\u0441":24,"\u0440":13,"\u043e":24,"\u043d":13,"\u043c":13,"\u043b":24,"\u043a":13,"\u0438":13,"\u0437":27,"\u0436":8,"\u0435":24,"\u0434":24,"\u0432":13,"\u0431":11,"\u0430":24,"\u0424":13,"\u041b":13,"\u0414":16,"\u0410":19,"\u0451":24,"\u045e":8,"\u045c":13}},"\u0453":{"d":"18,-197r115,0r0,35r-71,0r0,162r-44,0r0,-197xm94,-267r39,0r-46,51r-25,0","w":138,"k":{"\u043b":8,"\u0434":11}},"\u2026":{"d":"230,0r0,-46r45,0r0,46r-45,0xm10,0r0,-46r45,0r0,46r-45,0xm120,0r0,-46r45,0r0,46r-45,0","w":288},"\u0409":{"d":"42,-260r151,0r0,100v66,-10,107,24,107,77v0,50,-23,83,-62,83r-95,0r0,-220r-52,0r0,99v-1,103,-17,139,-86,122r0,-36v40,5,37,7,37,-100r0,-125xm193,-120r0,83v35,1,57,3,57,-40v0,-39,-20,-47,-57,-43","w":316},"\u040a":{"d":"67,-260r0,100r65,0r0,-100r50,0r0,100v66,-10,107,24,107,77v0,50,-22,83,-61,83r-96,0r0,-120r-65,0r0,120r-49,0r0,-260r49,0xm182,-120r0,83v35,1,57,3,57,-40v0,-39,-20,-47,-57,-43","w":305},"\u040c":{"d":"67,-260r0,113r60,-113r56,0r-66,113r68,147r-55,0r-43,-104r-20,26r0,78r-49,0r0,-260r49,0xm116,-344r49,0r-58,65r-31,0","w":192,"k":{"\u0447":11,"\u0441":5,"\u043e":5,"\u0430":5,"\u042d":5,"\u0424":13,"\u0421":5,"\u041e":5}},"\u040b":{"d":"117,-220r0,64v55,-13,111,4,111,70r0,86r-49,0v-2,-58,17,-139,-62,-118r0,118r-49,0r0,-220r-62,0r0,-40r172,0r0,40r-61,0","w":246},"\u040f":{"d":"64,-260r0,220r72,0r0,-220r46,0r0,260r-60,0r0,53r-44,0r0,-53r-60,0r0,-260r46,0","w":199},"\u0452":{"d":"23,-276r45,0r0,23r39,0r0,29r-39,0r0,44v20,-35,86,-28,86,34r0,177v1,33,-30,37,-61,34r0,-34v12,0,16,0,17,-17r0,-155v0,-15,-8,-24,-22,-24v-12,0,-20,9,-20,24r0,141r-45,0r0,-224r-19,0r0,-29r19,0r0,-23","w":172},"\u2018":{"d":"65,-212r0,46r-45,0v-1,-45,-4,-91,40,-92r0,16v-8,0,-21,3,-21,30r26,0","w":86},"\u2019":{"d":"20,-214r0,-46r45,0v1,45,4,92,-41,93r0,-17v8,0,22,-3,22,-30r-26,0","w":83},"\u201c":{"d":"65,-212r0,46r-45,0v-1,-45,-4,-91,40,-92r0,16v-8,0,-21,3,-21,30r26,0xm136,-212r0,46r-45,0v-1,-45,-4,-92,41,-92r0,16v-8,0,-22,3,-22,30r26,0","w":154},"\u201d":{"d":"93,-214r0,-46r45,0v1,45,5,92,-40,93r0,-17v8,0,22,-3,22,-30r-27,0xm22,-214r0,-46r45,0v1,45,5,92,-40,93r0,-17v8,0,22,-3,22,-30r-27,0","w":154},"\u2013":{"d":"9,-108r125,0r0,32r-125,0r0,-32","w":143},"\u2014":{"d":"9,-108r231,0r0,32r-231,0r0,-32","w":248},"\u2122":{"d":"47,-122r0,-117r-42,0r0,-26r110,0r0,26r-42,0r0,117r-26,0xm129,-265r45,0r28,85r28,-85r44,0r0,143r-27,0r0,-113r-36,113r-17,0r-38,-113r0,113r-27,0r0,-143","w":280},"\u0459":{"d":"34,-197r124,0r0,75v50,-4,88,8,88,61v0,70,-65,62,-132,61r0,-162r-37,0r0,79v-2,84,-22,95,-71,83r0,-32v34,3,25,2,28,-90r0,-75xm158,-87r0,52v23,0,42,2,42,-26v0,-25,-19,-27,-42,-26","w":262},"\u045a":{"d":"62,-197r0,75r43,0r0,-75r44,0r0,75v50,-4,88,8,88,61v0,70,-65,62,-132,61r0,-87r-43,0r0,87r-44,0r0,-197r44,0xm149,-87r0,52v23,0,42,2,42,-26v0,-25,-19,-27,-42,-26","w":253},"\u045c":{"d":"62,-197r0,74r41,-74r46,0r-46,80r46,117r-49,0r-27,-76v-14,15,-11,47,-11,76r-44,0r0,-197r44,0xm97,-267r39,0r-46,51r-25,0","w":153,"k":{"\u0442":-5}},"\u045b":{"d":"23,-276r45,0r0,23r39,0r0,29r-39,0r0,44v20,-35,86,-28,86,34r0,146r-44,0r0,-141v0,-15,-8,-24,-22,-24v-12,0,-20,9,-20,24r0,141r-45,0r0,-224r-19,0r0,-29r19,0r0,-23","w":172},"\u045f":{"d":"61,-197r0,162r45,0r0,-162r43,0r0,197r-50,0r0,48r-31,0r0,-48r-50,0r0,-197r43,0"},"\u040e":{"d":"3,-260r55,0r40,138r40,-138r54,0r-70,210v-18,53,-39,64,-83,51r0,-37v16,6,29,3,35,-18xm54,-330r26,0v0,19,9,29,25,29v16,0,26,-10,26,-29r26,0v0,28,-10,54,-52,54v-40,0,-51,-26,-51,-54","w":195,"k":{"\u044f":13,"\u044e":11,"\u044d":16,"\u0449":11,"\u0448":11,"\u0447":13,"\u0446":11,"\u0444":16,"\u0441":16,"\u0440":11,"\u043f":11,"\u043e":16,"\u043d":11,"\u043c":11,"\u043b":19,"\u043a":11,"\u0439":11,"\u0438":11,"\u0437":16,"\u0435":16,"\u0434":19,"\u0433":11,"\u0432":11,"\u0431":8,"\u0430":19,"\u0424":13,"\u041b":13,"\u0414":16,"\u0410":22,"\u0451":16,"\u0491":11,"\u045c":11,"\u0453":11}},"\u045e":{"d":"3,-197r49,0r27,151r25,-151r47,0r-52,222v-8,43,-33,44,-71,39r0,-33v13,0,27,2,26,-13v0,-3,-10,-46,-51,-215xm34,-260r23,0v0,17,10,18,23,18v14,0,25,-2,25,-18r23,0v0,29,-15,44,-47,44v-33,0,-47,-20,-47,-44","w":156,"k":{"\u0442":-5,"\u043b":8,"\u0434":8}},"\u0408":{"d":"95,-260r49,0r0,204v0,38,-24,62,-68,62v-52,0,-70,-31,-66,-88r48,0v-1,21,0,53,18,49v11,0,19,-8,19,-26r0,-201","w":162},"\u0490":{"d":"18,-260r100,0r0,-50r36,0r0,90r-87,0r0,220r-49,0r0,-260","w":162,"k":{"\u044f":19,"\u044e":13,"\u0443":8,"\u0441":24,"\u0440":13,"\u043e":24,"\u043d":13,"\u043c":13,"\u043b":24,"\u043a":13,"\u0438":13,"\u0437":27,"\u0436":8,"\u0435":24,"\u0434":24,"\u0432":13,"\u0431":11,"\u0430":24,"\u0424":13,"\u041b":13,"\u0414":16,"\u0410":19,"\u0451":24,"\u045e":8,"\u045c":13}},"\u0401":{"d":"18,-260r139,0r0,40r-90,0r0,60r82,0r0,40r-82,0r0,80r90,0r0,40r-139,0r0,-260xm36,-282r0,-39r40,0r0,39r-40,0xm103,-282r0,-39r39,0r0,39r-39,0","w":169},"\u0404":{"d":"175,-181r-49,0v0,-27,-7,-44,-30,-44v-31,0,-29,33,-29,65r41,0r0,40r-41,0v0,36,-5,87,29,87v31,0,31,-27,30,-58r49,0v3,65,-21,97,-79,97v-51,0,-80,-27,-80,-87v0,-89,-20,-186,80,-184v56,1,82,32,79,84","w":191},"\u0407":{"d":"67,-260r0,260r-49,0r0,-260r49,0xm-10,-282r0,-39r39,0r0,39r-39,0xm56,-282r0,-39r39,0r0,39r-39,0","w":85},"\u0406":{"d":"67,-260r0,260r-49,0r0,-260r49,0","w":85},"\u0456":{"d":"18,-216r0,-44r44,0r0,44r-44,0xm62,-197r0,197r-44,0r0,-197r44,0","w":80},"\u0491":{"d":"18,-197r84,0r0,-41r31,0r0,76r-71,0r0,162r-44,0r0,-197","w":138,"k":{"\u043b":8,"\u0434":11}},"\u0451":{"d":"152,-94r-92,0v1,29,-7,65,24,65v18,0,25,-13,23,-33r45,0v2,47,-27,68,-68,68v-39,0,-68,-18,-68,-63r0,-82v0,-45,29,-63,68,-63v57,0,75,44,68,108xm60,-126r47,0v2,-23,-1,-41,-23,-41v-22,0,-26,18,-24,41xm33,-221r0,-39r39,0r0,39r-39,0xm97,-221r0,-39r39,0r0,39r-39,0"},"\u0454":{"d":"143,-131r-45,0v2,-18,-1,-36,-17,-34v-20,-2,-20,22,-19,43r28,0r0,35r-28,0v1,23,-6,58,19,56v18,2,18,-20,17,-39r45,0v8,50,-24,77,-62,76v-39,0,-65,-23,-65,-56r0,-96v0,-33,26,-56,65,-56v36,0,69,23,62,71","w":157},"\u0458":{"d":"18,-216r0,-44r44,0r0,44r-44,0xm18,-197r44,0r0,228v1,33,-30,37,-61,34r0,-34v12,0,16,0,17,-17r0,-211","w":80},"\u0405":{"d":"170,-178r-48,0v1,-32,-11,-47,-31,-47v-32,0,-32,42,-9,51v36,30,95,43,94,107v0,46,-28,73,-80,73v-59,0,-86,-35,-83,-95r47,0v-3,37,14,59,36,56v42,-4,35,-52,3,-69v-35,-18,-83,-46,-83,-95v0,-43,32,-68,77,-68v52,0,79,30,77,87","w":188},"\u0455":{"d":"14,-63r44,0v-2,20,6,35,22,34v30,-1,26,-36,1,-46v-26,-19,-66,-30,-66,-74v0,-35,29,-53,64,-53v39,0,65,24,64,67r-43,0v8,-33,-38,-45,-40,-14v0,19,33,31,47,41v18,12,39,29,39,61v0,49,-43,53,-68,53v-37,0,-68,-23,-64,-69","w":160},"\u0457":{"d":"62,-197r0,197r-44,0r0,-197r44,0xm-12,-221r0,-39r40,0r0,39r-40,0xm53,-221r0,-39r39,0r0,39r-39,0","w":80},"\u0410":{"d":"2,0r66,-260r66,0r58,260r-54,0r-12,-68r-56,0r-15,68r-53,0xm76,-106r44,0r-20,-121","w":194,"k":{"\u0447":14,"\u0442":11,"\u0427":16,"\u0423":11,"\u0422":13,"\u040e":11,"\u040b":13,"\u0402":13}},"\u0411":{"d":"67,-120r0,83v36,1,59,3,58,-40v0,-40,-20,-47,-58,-43xm18,-260r138,0r0,37r-89,0r0,63v66,-9,108,23,108,77v0,50,-23,83,-62,83r-95,0r0,-260","w":191},"\u0412":{"d":"67,-223r0,69v33,3,57,-2,57,-36v0,-34,-25,-35,-57,-33xm67,-117r0,80v37,1,59,5,59,-40v0,-41,-22,-42,-59,-40xm18,0r0,-260r91,0v46,0,64,30,64,63v0,25,-13,53,-35,57v61,15,48,140,-21,140r-99,0","w":189},"\u0413":{"d":"18,-260r136,0r0,40r-87,0r0,220r-49,0r0,-260","w":162,"k":{"\u044f":19,"\u044e":13,"\u044d":24,"\u0443":8,"\u0441":24,"\u0440":13,"\u043e":24,"\u043d":13,"\u043c":13,"\u043b":24,"\u043a":13,"\u0438":13,"\u0437":27,"\u0436":8,"\u0435":24,"\u0434":24,"\u0432":13,"\u0431":11,"\u0430":24,"\u0424":13,"\u041b":13,"\u0414":16,"\u0410":19,"\u0451":24,"\u045e":8,"\u045c":13}},"\u0414":{"d":"50,-260r148,0r0,220r15,0r0,92r-47,0r0,-52r-108,0r0,52r-47,0r0,-92r15,0v27,-43,24,-138,24,-220xm148,-220r-49,0v2,70,-1,144,-24,180r73,0r0,-180","w":224},"\u0415":{"d":"18,-260r139,0r0,40r-90,0r0,60r82,0r0,40r-82,0r0,80r90,0r0,40r-139,0r0,-260","w":169},"\u0416":{"d":"6,-260r56,0r59,113r0,-113r50,0r0,113r59,-113r56,0r-66,113r68,147r-55,0r-43,-104r-19,26r0,78r-50,0r0,-78r-19,-26r-43,104r-55,0r68,-147","w":293,"k":{"\u0443":8,"\u0424":11}},"\u0417":{"d":"62,-185r-48,0v0,-45,29,-80,78,-80v35,0,78,17,78,70v0,27,-16,50,-40,56v26,6,43,28,43,67v0,52,-29,78,-80,78v-42,0,-83,-19,-83,-75r48,0v0,18,7,36,32,36v24,0,33,-17,33,-44v-1,-36,-18,-43,-47,-41r0,-38v26,2,42,-6,43,-33v0,-17,-6,-36,-27,-36v-19,0,-30,17,-30,40","w":189},"\u0418":{"d":"18,-260r46,0v-1,62,3,137,-6,189r72,-189r54,0r0,260r-46,0v1,-60,-3,-144,6,-189r-73,189r-53,0r0,-260","w":201},"\u0419":{"d":"18,-260r46,0v-1,62,3,137,-6,189r72,-189r54,0r0,260r-46,0v1,-60,-4,-144,6,-189r-73,189r-53,0r0,-260xm48,-330r25,0v0,19,10,29,26,29v16,0,26,-10,26,-29r25,0v0,28,-10,54,-52,54v-40,0,-50,-26,-50,-54","w":201},"\u041a":{"d":"67,-260r0,113r60,-113r56,0r-66,113r68,147r-55,0r-43,-104r-20,26r0,78r-49,0r0,-260r49,0","w":192,"k":{"\u0447":11,"\u0443":8,"\u0442":8,"\u0441":5,"\u043e":5,"\u0430":5,"\u042d":5,"\u0424":13,"\u0421":5,"\u041e":5}},"\u041b":{"d":"42,-260r151,0r0,260r-50,0r0,-220r-52,0r0,99v-1,103,-17,139,-86,122r0,-36v40,5,37,7,37,-100r0,-125","w":212},"\u041c":{"d":"18,-260r79,0r34,169r35,-169r79,0r0,260r-46,0r-1,-235r-49,235r-35,0r-50,-235r0,235r-46,0r0,-260","w":262},"\u041d":{"d":"67,-260r0,100r65,0r0,-100r50,0r0,260r-50,0r0,-120r-65,0r0,120r-49,0r0,-260r49,0","w":199},"\u041e":{"d":"16,-176v0,-66,36,-89,85,-89v50,0,83,23,83,89r0,95v0,66,-33,87,-83,87v-49,0,-85,-21,-85,-87r0,-95xm101,-225v-55,2,-34,97,-34,150v0,27,11,42,34,42v53,-2,33,-96,33,-148v0,-28,-12,-44,-33,-44","w":200},"\u041f":{"d":"18,-260r164,0r0,260r-50,0r0,-220r-65,0r0,220r-49,0r0,-260","w":199},"\u0420":{"d":"67,-106r0,106r-49,0r0,-260r93,0v42,0,69,34,69,76v0,61,-45,87,-113,78xm67,-221r0,77v36,3,62,-3,62,-39v0,-34,-26,-41,-62,-38","w":195,"k":{"\u041b":13,"\u0414":16,"\u0410":16}},"\u0421":{"d":"175,-175r-49,0v1,-33,-7,-50,-30,-50v-21,0,-29,11,-29,44r0,103v0,34,8,45,29,45v25,0,32,-26,30,-60r49,0v2,56,-12,99,-79,99v-103,0,-80,-92,-80,-181v0,-61,27,-90,81,-90v55,0,82,33,78,90","w":191},"\u0422":{"d":"117,-220r0,220r-49,0r0,-220r-62,0r0,-40r172,0r0,40r-61,0","w":184,"k":{"\u044f":19,"\u044e":13,"\u044d":22,"\u044c":13,"\u044b":13,"\u0449":13,"\u0448":13,"\u0447":13,"\u0446":13,"\u0445":8,"\u0444":19,"\u0443":8,"\u0441":22,"\u0440":13,"\u043f":13,"\u043e":22,"\u043d":13,"\u043c":13,"\u043b":19,"\u043a":13,"\u0438":13,"\u0437":22,"\u0435":22,"\u0434":16,"\u0432":13,"\u0431":8,"\u0430":22,"\u0424":13,"\u041b":8,"\u0414":13,"\u0410":13,"\u0451":22,"\u045e":8}},"\u0423":{"d":"3,-260r55,0r40,138r40,-138r54,0r-70,210v-18,53,-39,64,-83,51r0,-37v16,6,29,3,35,-18","w":195,"k":{"\u044f":13,"\u044e":11,"\u044d":16,"\u0449":11,"\u0448":11,"\u0447":13,"\u0446":11,"\u0444":16,"\u0441":16,"\u0440":11,"\u043f":11,"\u043e":16,"\u043d":11,"\u043c":11,"\u043b":19,"\u043a":11,"\u0439":11,"\u0438":11,"\u0437":16,"\u0435":16,"\u0434":19,"\u0433":11,"\u0432":11,"\u0431":8,"\u0430":19,"\u0424":13,"\u041b":13,"\u0414":16,"\u0410":22,"\u0451":16,"\u0491":11,"\u045c":11,"\u0453":11}},"\u0424":{"d":"111,-260r49,0r0,30v57,-4,99,25,99,99v0,76,-43,102,-99,99r0,32r-49,0r0,-32v-58,3,-100,-23,-100,-99v0,-74,43,-103,100,-99r0,-30xm111,-71r0,-121v-36,-4,-49,20,-49,61v0,44,13,64,49,60xm160,-192r0,121v35,3,49,-16,49,-60v0,-41,-14,-65,-49,-61","w":271,"k":{"\u0425":11,"\u0423":11,"\u0422":11,"\u041b":11,"\u0416":11,"\u040e":11}},"\u0425":{"d":"8,-260r57,0r34,85r35,-85r55,0r-64,126r67,134r-56,0r-37,-96r-40,96r-54,0r63,-134","w":197,"k":{"\u0447":11,"\u0443":8,"\u0424":11}},"\u0426":{"d":"67,-260r0,220r65,0r0,-220r50,0r0,220r16,0r0,93r-46,0r0,-53r-134,0r0,-260r49,0","w":207},"\u0427":{"d":"18,-260r49,0v-1,56,-11,129,62,107r0,-107r50,0r0,260r-50,0r0,-114v-59,13,-111,-9,-111,-69r0,-77","w":199},"\u0428":{"d":"273,0r-255,0r0,-260r49,0r0,220r54,0r0,-220r49,0r0,220r53,0r0,-220r50,0r0,260","w":290},"\u0429":{"d":"67,-260r0,220r54,0r0,-220r49,0r0,220r53,0r0,-220r50,0r0,220r15,0r0,92r-46,0r0,-52r-224,0r0,-260r49,0","w":295},"\u042a":{"d":"91,-120r0,83v36,1,57,3,57,-40v0,-40,-20,-47,-57,-43xm-3,-260r94,0r0,100v66,-10,107,24,108,77v0,50,-23,83,-62,83r-95,0r0,-223r-45,0r0,-37","w":214},"\u042b":{"d":"67,-120r0,83v36,1,59,3,58,-40v0,-40,-20,-47,-58,-43xm67,-260r0,100v66,-9,108,23,108,77v0,50,-23,83,-62,83r-95,0r0,-260r49,0xm262,-260r0,260r-50,0r0,-260r50,0","w":279},"\u042c":{"d":"67,-120r0,83v36,1,59,3,58,-40v0,-40,-20,-47,-58,-43xm67,-260r0,100v66,-9,108,23,108,77v0,50,-23,83,-62,83r-95,0r0,-260r49,0","w":191},"\u042d":{"d":"66,-181r-50,0v-3,-52,23,-83,79,-84v100,-2,79,94,80,184v0,60,-28,87,-79,87v-58,0,-83,-31,-80,-97r50,0v0,31,-2,58,29,58v34,0,31,-50,30,-87r-42,0r0,-40r42,0v1,-33,1,-65,-30,-65v-23,0,-29,17,-29,44","w":191},"\u042e":{"d":"67,-260r0,100r45,0v-6,-73,31,-105,86,-105v50,0,85,22,85,88r0,95v0,66,-35,88,-85,88v-63,0,-94,-47,-86,-126r-45,0r0,120r-49,0r0,-260r49,0xm162,-182v0,55,-20,149,36,149v53,0,35,-95,35,-149v0,-27,-14,-43,-35,-43v-23,0,-36,16,-36,43","w":299},"\u042f":{"d":"129,-106r-24,0r-45,106r-54,0r51,-112v-62,-24,-52,-148,26,-148r95,0r0,260r-49,0r0,-106xm129,-144r0,-77v-36,-3,-62,4,-62,38v0,35,26,42,62,39","w":196},"\u0430":{"d":"107,-102v-16,11,-45,23,-44,47v0,15,5,27,19,27v32,0,25,-43,25,-74xm63,-136r-43,0v-3,-41,23,-66,66,-66v38,0,68,15,68,51v0,49,-6,110,5,151r-46,0v-3,-4,-4,-14,-4,-19v-18,41,-93,31,-93,-30v0,-34,16,-51,50,-65v22,-9,41,-17,41,-34v0,-12,-7,-17,-21,-17v-14,0,-24,9,-23,29","w":171},"\u0431":{"d":"99,-222v-26,7,-44,22,-44,54v8,-12,18,-25,39,-25v70,-3,63,68,62,135v0,34,-19,64,-70,64v-92,0,-70,-78,-70,-155v0,-55,22,-88,60,-97v25,-6,37,-10,41,-19r32,0v-5,20,-17,35,-50,43xm86,-29v40,0,23,-70,23,-106v0,-18,-9,-23,-23,-23v-41,-1,-24,69,-24,105v0,18,10,24,24,24","w":171},"\u0432":{"d":"62,-164r0,45v22,1,39,-1,39,-22v0,-21,-17,-24,-39,-23xm62,-88r0,56v24,0,42,2,42,-27v0,-26,-17,-31,-42,-29xm18,0r0,-197v58,0,129,-11,129,47v0,26,-16,40,-30,45v17,6,33,17,33,49v0,71,-68,54,-132,56","w":166},"\u0433":{"d":"18,-197r115,0r0,35r-71,0r0,162r-44,0r0,-197","w":138,"k":{"\u043b":8,"\u0434":11}},"\u0434":{"d":"22,-35v20,-26,17,-105,17,-162r122,0r0,162r16,0r0,83r-42,0r0,-48r-84,0r0,48r-42,0r0,-83r13,0xm117,-35r0,-127r-36,0v1,47,0,106,-15,127r51,0","w":186,"k":{"\u0447":5}},"\u0435":{"d":"152,-94r-92,0v1,29,-7,65,24,65v18,0,25,-13,23,-33r45,0v2,47,-27,68,-68,68v-39,0,-68,-18,-68,-63r0,-82v0,-45,29,-63,68,-63v57,0,75,44,68,108xm60,-126r47,0v2,-23,-1,-41,-23,-41v-22,0,-26,18,-24,41"},"\u0436":{"d":"89,-197r42,0r0,74r41,-74r46,0r-46,80r46,117r-49,0r-28,-76v-13,15,-10,47,-10,76r-42,0v0,-29,4,-62,-11,-76r-27,76r-50,0r47,-117r-47,-80r47,0r41,74r0,-74","w":221,"k":{"\u0442":-5}},"\u0437":{"d":"60,-136r-43,0v-4,-86,129,-84,130,-12v0,23,-13,36,-31,43v60,19,41,111,-32,111v-35,0,-70,-17,-70,-68r44,0v0,17,5,33,23,33v19,0,24,-11,24,-30v0,-22,-13,-30,-35,-28r0,-32v22,2,33,-6,33,-25v0,-14,-6,-23,-21,-23v-16,0,-21,13,-22,31"},"\u0438":{"d":"18,-197r43,0r0,118r48,-118r43,0r0,197r-44,0r0,-116r-47,116r-43,0r0,-197","w":169},"\u0439":{"d":"18,-197r43,0r0,118r48,-118r43,0r0,197r-44,0r0,-116r-47,116r-43,0r0,-197xm39,-260r22,0v0,17,10,18,23,18v14,0,24,-2,24,-18r24,0v0,29,-15,44,-47,44v-33,0,-46,-20,-46,-44","w":169},"\u043a":{"d":"62,-197r0,74r41,-74r46,0r-46,80r46,117r-49,0r-27,-76v-14,15,-11,47,-11,76r-44,0r0,-197r44,0","w":153,"k":{"\u0442":-5}},"\u043b":{"d":"34,-197r124,0r0,197r-44,0r0,-162r-37,0r0,79v-2,84,-22,95,-71,83r0,-32v34,3,25,2,28,-90r0,-75","w":176},"\u043c":{"d":"18,-197r60,0r29,132r29,-132r60,0r0,197r-43,0r-1,-139r-31,139r-28,0r-32,-139r0,139r-43,0r0,-197","w":213},"\u043d":{"d":"62,-197r0,75r43,0r0,-75r44,0r0,197r-44,0r0,-87r-43,0r0,87r-44,0r0,-197r44,0"},"\u043e":{"d":"86,-202v85,1,69,69,70,144v0,34,-19,64,-70,64v-87,-1,-68,-69,-70,-144v0,-34,17,-64,70,-64xm86,-167v-14,0,-24,6,-24,24r0,90v0,18,10,24,24,24v14,0,23,-6,23,-24r0,-90v0,-18,-9,-24,-23,-24","w":171},"\u043f":{"d":"18,-197r131,0r0,197r-44,0r0,-162r-43,0r0,162r-44,0r0,-197"},"\u0440":{"d":"84,-165v-38,0,-19,74,-22,112v-3,31,44,32,43,1r0,-90v0,-15,-9,-23,-21,-23xm18,-197r44,0r0,22v20,-46,90,-33,90,28r0,97v2,59,-70,76,-90,29r0,87r-44,0r0,-263"},"\u0441":{"d":"143,-125r-45,0v1,-19,1,-40,-17,-40v-11,0,-19,6,-19,20r0,94v-2,25,36,28,36,3r0,-28r45,0v8,52,-21,82,-62,82v-39,0,-65,-23,-65,-56r0,-96v0,-33,26,-56,65,-56v38,-1,70,27,62,77","w":157},"\u0442":{"d":"4,-197r135,0r0,35r-46,0r0,162r-44,0r0,-162r-45,0r0,-35","w":143,"k":{"\u0443":-5,"\u0442":-5,"\u043b":8,"\u0434":8,"\u045e":-5}},"\u0443":{"d":"3,-197r49,0r27,151r25,-151r47,0r-52,222v-8,43,-33,44,-71,39r0,-33v13,0,27,2,26,-13v0,-3,-10,-46,-51,-215","w":156,"k":{"\u0442":-5,"\u043b":8,"\u0434":8}},"\u0444":{"d":"150,-260r0,85v20,-46,89,-33,89,28r0,97v2,59,-69,76,-89,29r0,87r-45,0r0,-87v-19,48,-89,29,-89,-29r0,-97v-2,-61,69,-74,89,-28r0,-85r45,0xm172,-165v-38,0,-19,74,-22,112v-3,31,44,32,43,1r0,-90v0,-15,-9,-23,-21,-23xm84,-165v-38,0,-19,74,-22,112v-3,31,44,32,43,1r0,-90v0,-15,-9,-23,-21,-23","w":255},"\u0445":{"d":"5,-197r49,0r23,55r22,-55r49,0r-49,99r51,98r-51,0r-22,-56r-23,56r-51,0r51,-98","w":152,"k":{"\u0442":-5}},"\u0446":{"d":"62,-197r0,162r43,0r0,-162r44,0r0,162r16,0r0,83r-42,0r0,-48r-105,0r0,-197r44,0","w":173},"\u0447":{"d":"16,-197r44,0v0,39,-9,97,43,77r0,-77r44,0r0,197r-44,0r0,-86v-39,14,-87,7,-87,-50r0,-61","w":165},"\u0448":{"d":"61,-197r0,162r43,0r0,-162r43,0r0,162r42,0r0,-162r44,0r0,197r-215,0r0,-197r43,0","w":252},"\u0449":{"d":"61,-197r0,162r43,0r0,-162r43,0r0,162r42,0r0,-162r44,0r0,162r14,0r0,83r-41,0r0,-48r-188,0r0,-197r43,0","w":256},"\u044a":{"d":"81,-87r0,52v23,0,41,2,41,-26v0,-25,-18,-27,-41,-26xm81,-197r0,75v50,-4,87,8,87,61v0,71,-65,62,-132,61r0,-162r-35,0r0,-35r80,0","w":184},"\u044b":{"d":"62,-87r0,52v23,0,42,3,42,-26v0,-25,-18,-27,-42,-26xm62,-197r0,75v51,-4,88,8,88,61v0,71,-65,62,-132,61r0,-197r44,0xm223,-197r0,197r-44,0r0,-197r44,0","w":240},"\u044c":{"d":"62,-87r0,52v23,0,42,3,42,-26v0,-25,-18,-27,-42,-26xm62,-197r0,75v51,-4,88,8,88,61v0,71,-65,62,-132,61r0,-197r44,0","w":166},"\u044d":{"d":"60,-131r-44,0v-7,-47,26,-71,62,-71v39,0,65,23,65,56r0,96v0,33,-26,56,-65,56v-37,0,-71,-26,-62,-76r44,0v-1,19,0,41,18,39v24,2,17,-33,18,-56r-28,0r0,-35r28,0v1,-20,2,-45,-18,-43v-16,-2,-20,16,-18,34","w":158},"\u044e":{"d":"62,-197r0,75r35,0v-2,-48,10,-80,70,-80v85,0,69,69,70,144v0,34,-19,64,-70,64v-66,0,-73,-37,-70,-93r-35,0r0,87r-44,0r0,-197r44,0xm167,-167v-14,0,-24,6,-24,24r0,90v0,18,10,24,24,24v14,0,23,-6,23,-24r0,-90v0,-18,-9,-24,-23,-24","w":252},"\u044f":{"d":"104,-108r0,-55v-25,-2,-41,3,-42,28v-1,25,17,29,42,27xm104,-75r-17,0r-29,75r-48,0r36,-82v-19,-10,-30,-27,-30,-53v0,-70,65,-64,132,-62r0,197r-44,0r0,-75","w":166}}}); /* End */ ; ; /* Start:/bitrix/templates/index/js/fonts/HeliosLightC_300.font.js*/ /*! * The following copyright notice may not be removed under any circumstances. * * Copyright: * Copyright (C) 1993; Type Market Ltd. Moscow, 119136, Box 20; * phone:(095)1427712; Created by A.Kustov * * Trademark: * Please refer to the Copyright section for the font trademark attribution * notices. */ Cufon.registerFont({"w":200,"face":{"font-family":"HeliosLightC","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"284","descent":"-76","x-height":"5","bbox":"-17 -343 356 76","underline-thickness":"20.88","underline-position":"-11.52","stemh":"18","stemv":"22","unicode-range":"U+0020-U+0491"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"52,-65r-5,-114r0,-80r26,0r0,80r-5,114r-16,0xm73,0r-26,0r0,-32r26,0r0,32","w":119},"\"":{"d":"21,-178r0,-81r18,0r0,81r-18,0xm60,-178r0,-81r19,0r0,81r-19,0","w":100},"#":{"d":"181,-103r0,21r-40,0r-11,82r-21,0r11,-82r-49,0r-13,82r-21,0r12,-82r-39,0r0,-21r43,0r7,-51r-40,0r0,-21r43,0r12,-76r21,0r-11,76r49,0r11,-76r21,0r-11,76r36,0r0,21r-39,0r-7,51r36,0xm131,-154r-49,0r-8,51r49,0"},"$":{"d":"92,-142r0,-92v-27,0,-49,18,-49,45v0,32,22,39,49,47xm109,-116r0,103v30,0,54,-22,54,-52v0,-36,-23,-45,-54,-51xm109,7r0,27r-17,0r0,-27v-45,-2,-83,-33,-78,-80r23,0v0,32,22,58,55,60r0,-107v-40,-10,-72,-23,-72,-68v0,-40,33,-66,72,-66r0,-22r17,0r0,22v40,0,69,23,70,64r-23,0v0,-27,-21,-44,-47,-44r0,95v47,11,77,24,77,78v0,42,-39,68,-77,68"},"%":{"d":"237,-119v33,0,60,27,60,60v0,33,-27,59,-60,59v-33,0,-60,-27,-60,-59v0,-32,27,-60,60,-60xm237,-99v-21,0,-39,19,-39,40v0,21,18,38,39,38v21,0,39,-17,39,-38v0,-21,-18,-40,-39,-40xm84,-251v33,0,59,26,59,59v0,33,-26,60,-59,60v-33,0,-60,-28,-60,-60v0,-32,27,-59,60,-59xm84,-231v-21,0,-39,18,-39,39v0,21,18,39,39,39v21,0,39,-18,39,-39v0,-21,-18,-39,-39,-39xm240,-254r-142,259r-19,0r143,-259r18,0","w":320},"&":{"d":"163,-47r-73,-88v-28,13,-51,39,-51,67v0,67,97,69,124,21xm105,-240v-18,0,-34,12,-34,31v0,15,18,38,27,49v27,-15,41,-29,41,-47v0,-16,-13,-33,-34,-33xm186,-117r22,0v-1,23,-5,47,-18,67r42,50r-29,0r-26,-31v-41,63,-164,46,-162,-39v0,-39,29,-65,62,-80v-14,-16,-28,-35,-28,-58v0,-33,26,-51,58,-51v32,0,55,23,55,50v0,31,-18,46,-51,65r65,77v9,-15,10,-32,10,-50","w":240},"'":{"d":"31,-178r0,-81r18,0r0,81r-18,0","w":79},"(":{"d":"81,-266r19,0v-73,98,-73,237,0,335r-19,0v-81,-97,-80,-239,0,-335","w":119},")":{"d":"20,-266r19,0v81,97,80,239,0,335r-19,0v73,-98,73,-237,0,-335","w":119},"*":{"d":"22,-233r40,16r0,-42r15,0r0,42r41,-15r6,16r-41,13r27,38r-14,9r-27,-39r-28,38r-13,-10r28,-36r-40,-14","w":140},"+":{"d":"108,-101r0,-79r22,0r0,79r79,0r0,22r-79,0r0,79r-22,0r0,-79r-79,0r0,-22r79,0","w":237},",":{"d":"37,-32r26,0v1,36,3,76,-26,81v-2,-22,17,-19,12,-49r-12,0r0,-32","w":100},"-":{"d":"14,-101r91,0r0,22r-91,0r0,-22","w":119},"\u00ad":{"d":"14,-101r91,0r0,22r-91,0r0,-22","w":119},".":{"d":"63,0r-26,0r0,-32r26,0r0,32","w":100},"\/":{"d":"104,-266r-85,298r-20,0r85,-298r20,0","w":100},"0":{"d":"163,-125v0,-55,-10,-109,-64,-109v-50,0,-62,56,-62,112v0,65,14,108,63,108v55,0,63,-60,63,-111xm100,-254v75,0,86,73,86,132v0,67,-16,127,-86,127v-70,0,-86,-60,-86,-130v0,-64,13,-129,86,-129"},"1":{"d":"113,-254r19,0r0,254r-23,0r0,-189r-66,0r0,-15v39,-3,62,-6,70,-50"},"2":{"d":"17,0v-5,-104,143,-112,143,-182v0,-33,-25,-52,-56,-52v-33,0,-55,29,-55,63r-24,0v0,-50,32,-83,82,-83v51,0,78,31,78,70v-2,96,-131,81,-143,165r141,0r0,19r-166,0"},"3":{"d":"44,-180r-23,0v0,-30,15,-74,82,-74v40,0,72,21,72,63v0,26,-12,46,-36,56v81,31,48,140,-36,140v-59,0,-86,-19,-91,-78r23,0v0,39,26,59,63,59v37,0,63,-27,63,-58v0,-41,-36,-50,-81,-50r0,-19v43,0,72,-10,72,-49v0,-31,-25,-44,-54,-44v-32,0,-54,22,-54,54"},"4":{"d":"131,-251r21,0r0,169r35,0r0,19r-35,0r0,63r-23,0r0,-63r-116,0r0,-19xm129,-217r-93,135r93,0r0,-135"},"5":{"d":"42,-251r126,0r0,19r-106,0r-16,85v57,-38,136,-7,136,68v0,106,-163,115,-169,13r23,0v5,34,29,52,62,52v38,0,61,-29,61,-65v0,-65,-86,-87,-118,-38r-19,-3"},"6":{"d":"181,-192r-24,0v-5,-26,-21,-42,-48,-42v-62,0,-67,66,-71,114v14,-19,29,-39,66,-39v51,0,81,31,81,82v0,51,-30,82,-81,82v-51,0,-89,-31,-89,-121v0,-60,17,-138,92,-138v40,0,69,21,74,62xm104,-140v-36,0,-58,29,-58,63v0,28,16,63,58,63v43,0,58,-33,58,-64v0,-39,-18,-62,-58,-62"},"7":{"d":"21,-228r0,-23r162,0r0,21v-73,82,-100,180,-103,230r-25,0v5,-73,51,-168,100,-228r-134,0"},"8":{"d":"100,-124v-35,0,-61,17,-61,54v0,31,24,56,63,56v33,0,59,-23,59,-57v0,-36,-27,-53,-61,-53xm99,-234v-28,0,-51,15,-51,45v0,31,26,45,54,45v28,0,49,-14,49,-50v0,-26,-17,-40,-52,-40xm60,-136v-62,-27,-34,-118,37,-118v39,0,77,18,77,62v0,26,-11,45,-35,57v28,10,45,33,45,63v0,50,-35,77,-89,77v-37,0,-79,-25,-79,-75v0,-30,15,-55,44,-66"},"9":{"d":"19,-56r23,0v5,27,22,42,50,42v60,0,68,-67,70,-114v-34,68,-147,44,-147,-42v0,-48,26,-84,81,-84v68,0,89,57,89,128v0,86,-38,131,-92,131v-40,0,-70,-20,-74,-61xm96,-234v-39,0,-58,25,-58,65v0,39,21,61,58,61v36,0,57,-29,57,-63v0,-37,-21,-63,-57,-63"},":":{"d":"63,0r-26,0r0,-32r26,0r0,32xm63,-145r-26,0r0,-32r26,0r0,32","w":100},";":{"d":"37,-32r26,0v1,36,3,76,-26,81v-2,-22,17,-19,12,-49r-12,0r0,-32xm63,-145r-26,0r0,-32r26,0r0,32","w":100},"<":{"d":"57,-92r152,71r0,23r-180,-84r0,-20r180,-80r0,23","w":237},"=":{"d":"209,-136r0,22r-180,0r0,-22r180,0xm209,-66r0,21r-180,0r0,-21r180,0","w":237},">":{"d":"209,-102r0,20r-180,84r0,-23r151,-71r-151,-67r0,-23","w":237},"?":{"d":"173,-198v0,57,-77,61,-71,132r-21,0v0,-26,1,-46,20,-66v21,-22,49,-41,49,-68v0,-26,-20,-47,-56,-47v-35,0,-55,26,-55,61r-22,0v0,-48,31,-80,78,-80v49,0,78,27,78,68xm105,0r-26,0r0,-32r26,0r0,32","w":180},"@":{"d":"246,-60r21,0v-23,42,-69,67,-116,67v-77,0,-137,-62,-137,-138v0,-75,62,-135,135,-135v69,0,125,48,125,114v0,57,-45,104,-84,104v-13,0,-27,-5,-31,-18v-31,34,-97,15,-93,-36v-7,-63,81,-152,129,-85r6,-17r24,0v-39,116,-41,123,-41,128v0,6,3,10,11,10v30,0,57,-49,57,-87v0,-59,-48,-95,-102,-95v-67,0,-114,55,-114,120v0,65,50,117,115,117v37,0,73,-18,95,-49xm121,-71v33,0,60,-60,60,-92v0,-14,-10,-27,-25,-27v-38,0,-63,53,-63,86v0,17,10,33,28,33","w":288},"A":{"d":"104,-259r27,0r100,259r-25,0r-30,-81r-118,0r-31,81r-25,0xm117,-238r-51,136r101,0","w":234,"k":{"y":19,"w":24,"v":24,"t":11,"q":8,"o":8,"g":8,"f":11,"e":8,"d":8,"c":8,"Y":32,"W":27,"V":32,"U":11,"T":27,"Q":11,"O":11,"G":11,"C":11}},"B":{"d":"54,-124r0,103v63,-2,141,15,141,-52v0,-65,-79,-49,-141,-51xm54,-238r0,93v57,2,139,3,129,-49v10,-49,-73,-45,-129,-44xm29,0r0,-259r94,0v61,0,85,26,85,65v0,36,-21,52,-42,56v36,5,54,31,54,65v2,94,-105,70,-191,73","w":238,"k":{"Y":11}},"C":{"d":"240,-184r-25,0v-10,-44,-38,-61,-82,-61v-63,0,-89,54,-89,115v0,58,20,116,91,116v45,0,72,-30,82,-71r26,0v-12,50,-43,92,-112,92v-80,0,-112,-64,-112,-137v0,-99,52,-136,121,-136v53,0,92,28,100,82","w":261,"k":{"Y":13}},"D":{"d":"29,0r0,-259v64,4,128,-15,169,19v59,49,59,150,12,208v-39,48,-107,29,-181,32xm216,-130v0,-59,-29,-117,-104,-108r-58,0r0,217v45,-1,85,6,119,-12v35,-18,43,-62,43,-97","w":259,"k":{"Y":13}},"E":{"d":"29,-259r173,0r0,21r-148,0r0,90r133,0r0,21r-133,0r0,106r151,0r0,21r-176,0r0,-259","w":219},"F":{"d":"29,-259r167,0r0,21r-142,0r0,90r129,0r0,21r-129,0r0,127r-25,0r0,-259","w":202,"k":{"A":19}},"G":{"d":"247,-184r-25,0v-9,-39,-42,-61,-81,-61v-68,0,-97,51,-97,124v0,57,35,107,94,107v50,0,89,-33,89,-99r-88,0r0,-21r111,0r0,134r-21,0r0,-44v-18,31,-46,51,-97,51v-66,0,-113,-46,-113,-138v0,-76,38,-135,120,-135v54,0,97,27,108,82","w":279},"H":{"d":"54,-259r0,111r153,0r0,-111r24,0r0,259r-24,0r0,-127r-153,0r0,127r-25,0r0,-259r25,0","w":260},"I":{"d":"54,-259r0,259r-25,0r0,-259r25,0","w":82},"J":{"d":"126,-259r25,0r0,188v0,50,-23,78,-73,78v-58,0,-69,-43,-69,-89r25,0v0,32,2,67,47,67v33,0,45,-21,45,-57r0,-187","w":180},"K":{"d":"54,-259r0,130r128,-130r32,0r-102,103r120,156r-30,0r-108,-141r-40,41r0,100r-25,0r0,-259r25,0","w":238,"k":{"q":11,"o":11,"g":11,"e":11,"d":11,"c":11,"U":11,"Q":11,"O":11,"G":11,"C":11}},"L":{"d":"54,-259r0,238r139,0r0,21r-164,0r0,-259r25,0","k":{"Y":46,"W":30,"V":35,"T":32}},"M":{"d":"29,-259r38,0r85,228r84,-228r37,0r0,259r-25,0r0,-231r-85,231r-23,0r-86,-231r0,231r-25,0r0,-259","w":302},"N":{"d":"29,-259r28,0r150,226r0,-226r25,0r0,259r-29,0r-149,-226r0,226r-25,0r0,-259","w":261},"O":{"d":"19,-129v0,-75,43,-137,120,-137v81,0,122,61,122,137v0,75,-41,136,-121,136v-80,0,-121,-61,-121,-136xm140,-14v67,0,96,-55,96,-115v0,-72,-37,-116,-97,-116v-67,0,-95,56,-95,116v0,61,28,115,96,115","w":279,"k":{"Y":16,"V":11,"A":11}},"P":{"d":"54,-114r0,114r-25,0r0,-259r93,0v67,0,86,33,86,72v-2,81,-78,74,-154,73xm54,-238r0,103v60,-1,130,11,130,-51v0,-63,-69,-51,-130,-52","w":227,"k":{"A":32}},"Q":{"d":"222,-24r34,26r-13,17r-39,-30v-18,11,-38,18,-64,18v-80,0,-121,-61,-121,-136v0,-72,39,-137,120,-137v73,0,122,49,122,137v0,42,-13,80,-39,105xm169,-65r35,26v22,-21,32,-54,32,-90v0,-77,-42,-116,-97,-116v-67,0,-95,56,-95,116v0,62,28,115,96,115v18,0,33,-5,45,-12r-29,-22","w":279,"k":{"Y":16,"V":11}},"R":{"d":"54,-238r0,99v62,-1,141,12,140,-51v-1,-66,-80,-44,-140,-48xm54,-118r0,118r-25,0r0,-259v82,1,190,-16,190,68v0,33,-12,50,-42,63v49,12,24,102,44,128r-27,0v-5,-9,-9,-35,-9,-55v4,-91,-64,-56,-131,-63","w":244},"S":{"d":"15,-77r24,0v4,46,35,63,75,63v46,0,66,-26,66,-54v0,-80,-158,-27,-158,-129v0,-36,29,-69,87,-69v58,0,88,35,88,77r-24,0v0,-40,-31,-56,-64,-56v-45,0,-64,26,-64,50v0,78,159,22,159,126v0,48,-35,76,-95,76v-54,0,-94,-28,-94,-84","w":225},"T":{"d":"112,-238r0,238r-24,0r0,-238r-82,0r0,-21r188,0r0,21r-82,0","k":{"z":19,"y":19,"w":16,"v":19,"u":27,"s":22,"r":24,"q":27,"p":27,"o":27,"n":27,"m":27,"g":27,"f":8,"e":27,"d":27,"c":27,"a":27,"T":-8,"J":38,"A":27}},"U":{"d":"29,-259r25,0v6,97,-31,245,76,245v110,0,68,-147,76,-245r24,0r0,161v0,67,-33,105,-100,105v-68,0,-101,-39,-101,-105r0,-161","w":259,"k":{"A":11}},"V":{"d":"6,-259r26,0r78,230r78,-230r25,0r-90,259r-27,0","w":219,"k":{"u":16,"t":5,"s":19,"r":16,"q":19,"p":16,"o":19,"n":16,"m":16,"g":19,"e":19,"d":19,"c":19,"a":22,"Q":11,"O":11,"G":11,"C":11,"A":32}},"W":{"d":"5,-259r25,0r56,224r60,-224r28,0r59,224r57,-224r25,0r-68,259r-27,0r-61,-229r-60,229r-27,0","w":320,"k":{"u":13,"s":13,"r":13,"q":13,"p":11,"o":16,"n":11,"m":11,"g":16,"e":16,"d":16,"c":16,"a":16,"A":27}},"X":{"d":"10,-259r29,0r70,109r72,-109r28,0r-85,126r89,133r-28,0r-76,-114r-75,114r-28,0r90,-133","w":219},"Y":{"d":"4,-259r28,0r77,125r78,-125r28,0r-94,146r0,113r-24,0r0,-111","w":219,"k":{"u":27,"s":22,"r":24,"q":27,"p":24,"o":27,"n":24,"m":24,"g":27,"e":27,"d":27,"c":27,"a":30,"Q":16,"O":16,"G":16,"C":16,"A":32}},"Z":{"d":"25,-259r182,0r0,20r-166,218r167,0r0,21r-197,0r0,-21r166,-217r-152,0r0,-21","w":219},"[":{"d":"33,-266r69,0r0,18r-46,0r0,299r46,0r0,18r-69,0r0,-335","w":119},"\\":{"d":"95,0r-112,-266r22,0r112,266r-22,0","w":100},"]":{"d":"18,-266r69,0r0,335r-69,0r0,-18r46,0r0,-299r-46,0r0,-18","w":119},"^":{"d":"47,-88r-21,0r83,-163r19,0r83,163r-21,0r-72,-141","w":237},"_":{"d":"180,43r-180,0r0,-21r180,0r0,21","w":180},"`":{"d":"66,-207r-50,-50r28,0r40,50r-18,0","w":119},"a":{"d":"149,-98v-23,14,-109,3,-109,50v0,23,20,34,41,34v45,1,76,-28,68,-84xm48,-130r-22,0v-1,-79,144,-89,144,-4r0,102v-1,20,10,21,23,14r0,17v-24,9,-42,3,-45,-25v-31,44,-126,45,-131,-23v-3,-45,57,-57,107,-61v18,-2,25,-7,25,-24v0,-22,-14,-38,-47,-38v-30,0,-50,10,-54,42"},"b":{"d":"111,-172v-37,0,-63,28,-63,81v0,40,22,77,63,77v36,0,63,-34,63,-76v0,-45,-18,-82,-63,-82xm48,0r-22,0r0,-259r22,0r0,102v14,-23,40,-35,66,-35v57,0,83,47,83,99v0,55,-24,98,-84,98v-24,0,-52,-14,-65,-38r0,33","w":214},"c":{"d":"180,-128r-22,0v-8,-28,-26,-44,-55,-44v-85,1,-86,157,0,158v32,0,52,-19,57,-50r23,0v-8,41,-33,69,-80,69v-59,0,-86,-43,-86,-98v0,-52,30,-99,86,-99v43,0,71,21,77,64"},"d":{"d":"103,-172v-37,0,-63,28,-63,81v0,40,22,77,63,77v36,0,64,-34,64,-76v0,-45,-19,-82,-64,-82xm167,-157r0,-102r22,0r0,259r-22,0v-1,-10,2,-25,-1,-33v-13,24,-40,38,-64,38v-60,0,-85,-43,-85,-98v0,-52,26,-99,83,-99v26,0,53,12,67,35","w":214},"e":{"d":"40,-106r122,0v0,-36,-20,-66,-59,-66v-38,0,-59,31,-63,66xm185,-88r-145,0v0,40,22,74,63,74v28,0,50,-16,56,-43r25,0v-11,35,-33,62,-81,62v-60,0,-86,-43,-86,-98v0,-54,33,-99,86,-99v51,0,82,37,82,104","w":202},"f":{"d":"35,-168r-28,0r0,-18r28,0v-5,-49,8,-91,58,-75r0,18v-36,-10,-39,21,-36,57r36,0r0,18r-36,0r0,168r-22,0r0,-168","w":100,"k":{"y":-5}},"g":{"d":"103,-172v-37,0,-63,28,-63,81v0,40,22,77,63,77v36,0,64,-34,64,-76v0,-45,-19,-82,-64,-82xm167,-186r22,0r0,168v0,50,-17,94,-88,94v-55,0,-78,-31,-79,-53r23,0v6,28,30,34,56,34v59,0,66,-45,66,-87v-14,23,-41,35,-67,35v-57,0,-83,-47,-83,-99v0,-55,25,-98,85,-98v25,-1,50,16,65,38r0,-32","w":214},"h":{"d":"48,-259r0,98v34,-49,126,-42,126,39r0,122r-22,0v-8,-66,29,-174,-48,-172v-76,3,-52,99,-56,172r-22,0r0,-259r22,0","w":199},"i":{"d":"48,-186r0,186r-22,0r0,-186r22,0xm48,-227r-22,0r0,-32r22,0r0,32","w":73},"j":{"d":"32,-186r21,0r0,211v4,38,-12,53,-51,47r0,-19v20,4,30,-4,30,-25r0,-214xm53,-227r-21,0r0,-32r21,0r0,32","w":79},"k":{"d":"48,-259r0,161r91,-88r29,0r-69,67r78,119r-24,0r-70,-104r-35,33r0,71r-22,0r0,-259r22,0","w":181,"k":{"q":5,"o":5,"g":5,"e":5,"d":5,"c":5}},"l":{"d":"48,-259r0,259r-22,0r0,-259r22,0","w":73},"m":{"d":"48,-186r0,28v11,-21,34,-34,58,-34v35,0,47,16,55,36v12,-24,33,-36,60,-36v92,0,48,113,58,192r-21,0r0,-129v0,-27,-9,-43,-40,-43v-69,-2,-54,101,-55,172r-21,0r0,-129v0,-27,-9,-43,-40,-43v-72,2,-51,101,-54,172r-22,0r0,-186r22,0","w":305},"n":{"d":"48,-186r0,25v34,-49,126,-42,126,39r0,122r-22,0v-8,-66,29,-174,-48,-172v-76,3,-52,99,-56,172r-22,0r0,-186r22,0","w":199},"o":{"d":"104,-192v58,0,86,44,86,99v0,59,-34,98,-86,98v-48,0,-87,-33,-87,-98v0,-54,29,-99,87,-99xm104,-172v-45,0,-64,39,-64,79v0,46,23,79,64,79v45,0,63,-39,63,-79v0,-44,-17,-79,-63,-79","w":207,"k":{"x":8}},"p":{"d":"111,-172v-37,0,-63,28,-63,81v0,40,22,77,63,77v36,0,63,-34,63,-76v0,-45,-18,-82,-63,-82xm48,-30r0,103r-22,0r0,-259r22,0r0,32v13,-24,41,-38,65,-38v60,0,84,43,84,98v0,52,-26,99,-83,99v-26,0,-52,-12,-66,-35","w":214},"q":{"d":"103,-172v-37,0,-63,28,-63,81v0,40,22,77,63,77v36,0,64,-34,64,-76v0,-45,-19,-82,-64,-82xm167,-186r22,0r0,259r-22,0r0,-103v-14,23,-41,35,-67,35v-57,0,-83,-47,-83,-99v0,-55,25,-98,85,-98v25,-1,50,16,65,38r0,-32","w":214},"r":{"d":"48,-186r0,34v12,-30,30,-40,61,-40r0,24v-82,0,-57,94,-61,168r-22,0r0,-186r22,0","w":118},"s":{"d":"40,-140v0,51,120,19,120,91v0,36,-32,54,-76,54v-44,0,-69,-28,-71,-63r22,0v7,32,24,44,56,44v31,0,46,-17,46,-35v0,-54,-120,-16,-120,-89v0,-31,25,-54,66,-54v40,0,67,17,72,59r-22,0v1,-51,-93,-51,-93,-7","w":177},"t":{"d":"91,-17r0,18v-25,8,-58,7,-58,-33r0,-136r-26,0r0,-18r26,0r0,-52r22,0r0,52r35,0r0,18r-35,0r0,127v-5,27,16,31,36,24","w":100},"u":{"d":"26,-186r22,0v8,66,-29,172,47,172v71,0,56,-100,57,-172r22,0r0,186r-22,0r0,-26v-14,17,-32,31,-60,31v-96,1,-59,-109,-66,-191","w":199},"v":{"d":"6,-186r24,0r60,159r60,-159r24,0r-72,186r-25,0","w":180},"w":{"d":"5,-186r22,0r48,159r43,-159r25,0r41,157r49,-157r22,0r-61,186r-23,0r-41,-157r-42,157r-26,0","w":259},"x":{"d":"12,-186r27,0r51,74r53,-74r28,0r-68,90r70,96r-26,0r-56,-81r-58,81r-27,0r72,-96","w":180,"k":{"o":8,"e":8,"d":8,"c":8}},"y":{"d":"6,-186r25,0r59,160r60,-160r24,0r-70,183v-23,55,-28,85,-80,74r0,-20v36,6,35,0,55,-50","w":176},"z":{"d":"20,-186r143,0r0,19r-123,149r128,0r0,18r-156,0r0,-19r124,-149r-116,0r0,-18","w":180},"{":{"d":"103,-267v-47,8,-32,69,-32,118v0,27,-6,44,-30,49v67,13,-10,145,61,167v-69,8,-52,-65,-54,-124v0,-24,-3,-35,-30,-43v76,-10,-26,-175,85,-167","w":119},"|":{"d":"29,0r0,-266r22,0r0,266r-22,0","w":79},"}":{"d":"18,-267v74,-7,55,65,55,125v0,22,6,37,30,42v-76,9,24,173,-84,167v70,-12,-8,-143,61,-167v-68,-10,10,-149,-62,-167","w":119},"~":{"d":"80,-117v27,0,59,26,79,26v16,0,28,-18,35,-31r15,12v-10,19,-27,39,-51,39v-23,0,-61,-25,-78,-25v-16,0,-27,12,-39,33r-12,-17v10,-15,25,-37,51,-37","w":237},"\u0402":{"d":"112,-238r0,92v8,-1,41,-2,52,-2v75,0,96,35,96,76v0,64,-51,76,-116,72r0,-21v58,1,94,-8,91,-50v10,-56,-70,-61,-123,-53r0,124r-24,0r0,-238r-82,0r0,-21r188,0r0,21r-82,0","w":280},"\u0403":{"d":"29,-259r167,0r0,21r-142,0r0,238r-25,0r0,-259xm118,-284r-22,0r48,-59r33,0","w":202,"k":{"\u044b":32,"\u0444":32,"\u0443":22,"\u0441":32,"\u0440":32,"\u043e":32,"\u043d":32,"\u043c":32,"\u043b":35,"\u043a":32,"\u0438":32,"\u0437":32,"\u0436":27,"\u0435":32,"\u0434":32,"\u0432":32,"\u0430":32,"\u0424":16,"\u0423":-11,"\u041b":13,"\u0414":19,"\u0410":38,"\u040e":-11,"\u045c":32}},"\u0453":{"d":"26,-186r115,0r0,18r-93,0r0,168r-22,0r0,-186xm82,-207r-16,0r36,-45r25,0","w":145,"k":{"\u0443":-5,"\u043b":11,"\u0434":13}},"\u0409":{"d":"48,-259r149,0r0,111v78,-2,154,-5,154,76v0,39,-19,72,-86,72r-93,0r0,-238r-99,0r0,112v-4,105,-12,141,-67,128r0,-20v5,1,12,2,17,2v32,3,24,-175,25,-243xm197,-127r0,106v61,-1,130,11,130,-52v0,-62,-69,-54,-130,-54","w":370},"\u040a":{"d":"54,-259r0,111r122,0r0,-111r25,0r0,111v78,-2,155,-5,155,76v0,39,-20,72,-87,72r-93,0r0,-127r-122,0r0,127r-25,0r0,-259r25,0xm201,-127r0,106v61,-1,130,11,130,-52v0,-62,-69,-54,-130,-54","w":374},"\u040c":{"d":"54,-259r0,130r128,-130r32,0r-102,103r120,156r-30,0r-108,-141r-40,41r0,100r-25,0r0,-259r25,0xm111,-283r-22,0r48,-60r33,0","w":238,"k":{"\u0447":27,"\u0444":11,"\u0443":19,"\u0441":11,"\u043e":11,"\u0435":11,"\u0424":19,"\u0421":11,"\u041e":11}},"\u040b":{"d":"112,-238r0,92v8,-1,41,-2,52,-2v109,3,96,60,96,148r-25,0r0,-71v10,-56,-70,-61,-123,-53r0,124r-24,0r0,-238r-82,0r0,-21r188,0r0,21r-82,0","w":280},"\u040f":{"d":"54,-259r0,238r153,0r0,-238r24,0r0,259r-88,0r0,59r-25,0r0,-59r-89,0r0,-259r25,0","w":260},"\u0452":{"d":"26,-259r22,0r0,27r60,0r0,20r-60,0r0,51v39,-48,127,-47,127,52v0,116,-32,142,-91,148r0,-19v51,-6,68,-32,68,-136v0,-37,-9,-56,-48,-56v-80,0,-50,98,-56,172r-22,0r0,-212r-24,0r0,-20r24,0r0,-27","w":199},"\u0459":{"d":"15,-17v36,-23,19,-36,25,-169r120,0r0,78v59,-4,119,2,119,54v0,50,-47,54,-62,54r-79,0r0,-168r-76,0v-4,70,14,183,-59,167r0,-18v4,1,10,2,12,2xm160,-90r0,72v43,2,96,3,96,-36v0,-42,-53,-36,-96,-36","w":296},"\u045a":{"d":"49,-186r0,78r93,0r0,-78r22,0r0,78v59,-4,119,2,119,54v0,50,-47,54,-62,54r-79,0r0,-90r-93,0r0,90r-22,0r0,-186r22,0xm164,-90r0,72v43,2,96,3,96,-36v0,-42,-53,-36,-96,-36","w":300},"\u045c":{"d":"48,-186r0,88r91,-88r29,0r-69,67r78,119r-24,0r-70,-104r-35,33r0,71r-22,0r0,-186r22,0xm98,-207r-16,0r36,-45r25,0","w":181,"k":{"\u0441":5,"\u043e":5,"\u0435":5}},"\u045b":{"d":"26,-259r22,0r0,27r60,0r0,20r-60,0r0,51v34,-49,126,-42,126,39r0,122r-22,0v-8,-66,29,-174,-48,-172v-76,3,-52,99,-56,172r-22,0r0,-212r-24,0r0,-20r24,0r0,-27","w":199},"\u045f":{"d":"48,-186r0,168r103,0r0,-168r22,0r0,186r-63,0r0,49r-21,0r0,-49r-63,0r0,-186r22,0","w":198},"\u040e":{"d":"1,-259r26,0r77,187r79,-187r27,0r-98,226v-15,35,-33,44,-68,38r0,-20v26,6,42,-7,47,-28xm62,-334r14,0v5,39,71,39,77,0r13,0v-3,30,-24,45,-54,45v-28,0,-48,-17,-50,-45","w":208,"k":{"\u044f":16,"\u044e":19,"\u044d":22,"\u0449":19,"\u0448":19,"\u0447":14,"\u0446":19,"\u0445":8,"\u0444":19,"\u0442":5,"\u0441":22,"\u0440":19,"\u043f":19,"\u043e":22,"\u043d":19,"\u043c":19,"\u043b":22,"\u043a":19,"\u0439":19,"\u0438":19,"\u0437":13,"\u0435":22,"\u0434":27,"\u0433":19,"\u0432":19,"\u0431":8,"\u0430":22,"\u0424":8,"\u0422":-11,"\u041b":11,"\u0414":19,"\u0410":35,"\u0451":22,"\u0491":19}},"\u045e":{"d":"6,-186r25,0r59,160r60,-160r24,0r-70,183v-23,55,-28,85,-80,74r0,-20v36,6,35,0,55,-50xm44,-251r14,0v5,39,70,39,76,0r14,0v-3,30,-24,45,-54,45v-28,0,-48,-17,-50,-45","w":176,"k":{"\u0442":-5,"\u0434":8}},"\u0408":{"d":"126,-259r25,0r0,188v0,50,-23,78,-73,78v-58,0,-69,-43,-69,-89r25,0v0,32,2,67,47,67v33,0,45,-21,45,-57r0,-187","w":180},"\u0490":{"d":"29,-259r143,0r0,-47r24,0r0,68r-142,0r0,238r-25,0r0,-259","w":202,"k":{"\u044f":27,"\u044e":32,"\u0444":32,"\u0443":22,"\u0440":32,"\u043e":32,"\u043d":32,"\u043c":32,"\u043b":35,"\u043a":32,"\u0438":32,"\u0437":32,"\u0435":32,"\u0434":32,"\u0432":32,"\u0430":32,"\u0424":16,"\u0423":-11,"\u041b":13,"\u0414":19,"\u0410":38,"\u045e":22,"\u040e":-11,"\u045c":32}},"\u0401":{"d":"29,-259r173,0r0,21r-148,0r0,90r133,0r0,21r-133,0r0,106r151,0r0,21r-176,0r0,-259xm95,-283r-22,0r0,-32r22,0r0,32xm152,-283r-21,0r0,-32r21,0r0,32","w":219},"\u0404":{"d":"238,-184r-25,0v-10,-44,-38,-61,-82,-61v-58,0,-89,46,-89,97r111,0r0,21r-111,0v0,59,24,113,92,113v45,0,72,-30,82,-71r25,0v-12,50,-43,92,-112,92v-80,0,-112,-64,-112,-137v0,-99,52,-136,121,-136v53,0,92,28,100,82","w":259},"\u0407":{"d":"54,-259r0,259r-25,0r0,-259r25,0xm22,-283r-22,0r0,-32r22,0r0,32xm83,-283r-22,0r0,-32r22,0r0,32","w":82},"\u0406":{"d":"54,-259r0,259r-25,0r0,-259r25,0","w":82},"\u0456":{"d":"48,-186r0,186r-22,0r0,-186r22,0xm48,-227r-22,0r0,-32r22,0r0,32","w":73},"\u0491":{"d":"26,-186r94,0r0,-35r21,0r0,53r-93,0r0,168r-22,0r0,-186","w":145,"k":{"\u0443":-5,"\u043b":11,"\u0434":13,"\u045e":-5}},"\u0451":{"d":"40,-106r122,0v0,-36,-20,-66,-59,-66v-38,0,-59,31,-63,66xm185,-88r-145,0v0,40,22,74,63,74v28,0,50,-16,56,-43r25,0v-11,35,-33,62,-81,62v-60,0,-86,-43,-86,-98v0,-54,33,-99,86,-99v51,0,82,37,82,104xm86,-215r-21,0r0,-32r21,0r0,32xm142,-215r-22,0r0,-32r22,0r0,32","w":202},"\u0454":{"d":"180,-128r-22,0v-8,-28,-26,-44,-55,-44v-39,0,-59,33,-62,64r73,0r0,18r-74,0v0,39,20,76,63,76v32,0,52,-19,57,-50r23,0v-8,41,-33,69,-80,69v-59,0,-86,-43,-86,-98v0,-52,30,-99,86,-99v43,0,71,21,77,64"},"\u0458":{"d":"32,-186r21,0r0,211v4,38,-12,53,-51,47r0,-19v20,4,30,-4,30,-25r0,-214xm53,-227r-21,0r0,-32r21,0r0,32","w":79},"\u0405":{"d":"15,-77r24,0v4,46,35,63,75,63v46,0,66,-26,66,-54v0,-80,-158,-27,-158,-129v0,-36,29,-69,87,-69v58,0,88,35,88,77r-24,0v0,-40,-31,-56,-64,-56v-45,0,-64,26,-64,50v0,78,159,22,159,126v0,48,-35,76,-95,76v-54,0,-94,-28,-94,-84","w":225},"\u0455":{"d":"40,-140v0,51,120,19,120,91v0,36,-32,54,-76,54v-44,0,-69,-28,-71,-63r22,0v7,32,24,44,56,44v31,0,46,-17,46,-35v0,-54,-120,-16,-120,-89v0,-31,25,-54,66,-54v40,0,67,17,72,59r-22,0v1,-51,-93,-51,-93,-7","w":177},"\u0457":{"d":"48,-186r0,186r-22,0r0,-186r22,0xm22,-220r-22,0r0,-32r22,0r0,32xm73,-220r-21,0r0,-32r21,0r0,32","w":73},"\u0410":{"d":"104,-259r27,0r100,259r-25,0r-30,-81r-118,0r-31,81r-25,0xm117,-238r-51,136r101,0","w":234,"k":{"\u0447":22,"\u0444":8,"\u0443":19,"\u0442":19,"\u0441":8,"\u043e":8,"\u0435":8,"\u0427":32,"\u0424":13,"\u0423":19,"\u0422":27,"\u0421":11,"\u041e":11,"\u0451":8,"\u045e":19,"\u040e":19,"\u040b":30,"\u0402":27}},"\u0411":{"d":"29,-259r161,0r0,21r-136,0r0,90v78,-2,154,-5,154,76v0,39,-19,72,-86,72r-93,0r0,-259xm54,-127r0,106v61,-1,130,11,130,-52v0,-62,-69,-54,-130,-54","w":227},"\u0412":{"d":"54,-124r0,103v63,-2,141,15,141,-52v0,-65,-79,-49,-141,-51xm54,-238r0,93v57,2,139,3,129,-49v10,-49,-73,-45,-129,-44xm29,0r0,-259r94,0v61,0,85,26,85,65v0,36,-21,52,-42,56v36,5,54,31,54,65v2,94,-105,70,-191,73","w":238},"\u0413":{"d":"29,-259r167,0r0,21r-142,0r0,238r-25,0r0,-259","w":202,"k":{"\u044f":27,"\u044e":32,"\u044d":32,"\u0443":22,"\u0441":32,"\u0440":32,"\u043e":32,"\u043d":32,"\u043c":32,"\u043b":35,"\u0438":32,"\u0437":32,"\u0436":27,"\u0435":32,"\u0434":32,"\u0432":32,"\u0430":32,"\u0424":16,"\u0423":-11,"\u0422":-8,"\u041b":13,"\u0414":19,"\u0410":38,"\u0451":32,"\u045e":22,"\u040e":-11,"\u045c":32}},"\u0414":{"d":"58,-259r163,0r0,238r19,0r0,80r-24,0r0,-59r-182,0r0,59r-25,0r0,-80r19,0v32,-46,31,-147,30,-238xm196,-238r-113,0v1,83,1,170,-29,217r142,0r0,-217","w":249},"\u0415":{"d":"29,-259r173,0r0,21r-148,0r0,90r133,0r0,21r-133,0r0,106r151,0r0,21r-176,0r0,-259","w":219},"\u0416":{"d":"192,-259r0,134r121,-134r29,0r-99,108r113,151r-28,0r-101,-134r-35,38r0,96r-24,0r0,-96r-35,-38r-101,134r-28,0r113,-151r-99,-108r29,0r121,134r0,-134r24,0","w":359,"k":{"\u0447":24,"\u0443":16,"\u0442":16,"\u0424":13,"\u041e":11,"\u045e":16}},"\u0417":{"d":"47,-188r-24,0v0,-46,30,-78,87,-78v52,0,91,22,91,67v0,27,-12,49,-41,62v32,9,50,38,50,66v0,48,-31,78,-97,78v-56,0,-97,-27,-97,-84r24,0v4,46,29,63,74,63v102,0,89,-115,7,-113r-21,0r0,-21v45,2,77,-8,76,-50v0,-33,-30,-47,-66,-47v-34,0,-63,16,-63,57","w":229},"\u0418":{"d":"54,-259r0,226r150,-226r28,0r0,259r-25,0r0,-226r-149,226r-29,0r0,-259r25,0","w":261},"\u0419":{"d":"54,-259r0,226r150,-226r28,0r0,259r-25,0r0,-226r-149,226r-29,0r0,-259r25,0xm81,-334r14,0v5,39,70,39,76,0r14,0v-3,30,-24,45,-54,45v-28,0,-48,-17,-50,-45","w":261},"\u041a":{"d":"54,-259r0,130r128,-130r32,0r-102,103r120,156r-30,0r-108,-141r-40,41r0,100r-25,0r0,-259r25,0","w":238,"k":{"\u0447":27,"\u0444":11,"\u0443":19,"\u0442":16,"\u0441":11,"\u043e":11,"\u0435":11,"\u0424":19,"\u0421":11,"\u041e":11,"\u0451":11,"\u045e":19}},"\u041b":{"d":"48,-259r173,0r0,259r-25,0r0,-238r-123,0r0,112v-4,105,-12,141,-67,128r0,-20v5,1,12,2,17,2v32,3,24,-175,25,-243","w":249},"\u041c":{"d":"29,-259r38,0r85,228r84,-228r37,0r0,259r-25,0r0,-231r-85,231r-23,0r-86,-231r0,231r-25,0r0,-259","w":302},"\u041d":{"d":"54,-259r0,111r153,0r0,-111r24,0r0,259r-24,0r0,-127r-153,0r0,127r-25,0r0,-259r25,0","w":260},"\u041e":{"d":"19,-129v0,-75,43,-137,120,-137v81,0,122,61,122,137v0,75,-41,136,-121,136v-80,0,-121,-61,-121,-136xm140,-14v67,0,96,-55,96,-115v0,-72,-37,-116,-97,-116v-67,0,-95,56,-95,116v0,61,28,115,96,115","w":279,"k":{"\u0434":11,"\u0425":11,"\u0416":11,"\u0414":11,"\u0410":11}},"\u041f":{"d":"29,-259r202,0r0,259r-24,0r0,-238r-153,0r0,238r-25,0r0,-259","w":260},"\u0420":{"d":"54,-114r0,114r-25,0r0,-259r93,0v67,0,86,33,86,72v-2,81,-78,74,-154,73xm54,-238r0,103v60,-1,130,11,130,-51v0,-63,-69,-51,-130,-52","w":227,"k":{"\u041b":19,"\u0414":22,"\u0410":32}},"\u0421":{"d":"240,-184r-25,0v-10,-44,-38,-61,-82,-61v-63,0,-89,54,-89,115v0,58,20,116,91,116v45,0,72,-30,82,-71r26,0v-12,50,-43,92,-112,92v-80,0,-112,-64,-112,-137v0,-99,52,-136,121,-136v53,0,92,28,100,82","w":261},"\u0422":{"d":"112,-238r0,238r-24,0r0,-238r-82,0r0,-21r188,0r0,21r-82,0","k":{"\u044f":22,"\u044e":27,"\u044d":27,"\u044c":27,"\u044b":27,"\u0449":27,"\u0448":27,"\u0447":22,"\u0446":27,"\u0445":16,"\u0444":27,"\u0443":19,"\u0441":27,"\u0440":27,"\u043f":27,"\u043e":27,"\u043d":27,"\u043c":27,"\u043b":27,"\u043a":27,"\u0438":27,"\u0437":22,"\u0436":19,"\u0435":27,"\u0434":27,"\u0433":27,"\u0432":27,"\u0431":8,"\u0430":27,"\u0424":13,"\u0423":-11,"\u0422":-8,"\u041b":11,"\u0414":24,"\u0410":27,"\u0451":27,"\u0491":27,"\u045e":19,"\u040e":-11,"\u045c":27,"\u0453":27}},"\u0423":{"d":"1,-259r26,0r77,187r79,-187r27,0r-98,226v-15,35,-33,44,-68,38r0,-20v26,6,42,-7,47,-28","w":208,"k":{"\u044f":16,"\u044e":19,"\u044d":22,"\u0449":19,"\u0448":19,"\u0447":14,"\u0446":19,"\u0445":8,"\u0444":19,"\u0442":5,"\u0441":22,"\u0440":19,"\u043f":19,"\u043e":22,"\u043d":19,"\u043c":19,"\u043b":22,"\u043a":19,"\u0439":19,"\u0438":19,"\u0437":13,"\u0435":22,"\u0434":27,"\u0433":19,"\u0432":19,"\u0431":8,"\u0430":22,"\u0424":8,"\u0422":-11,"\u041b":11,"\u0414":19,"\u0410":35,"\u0451":22,"\u0491":19,"\u045c":19,"\u0453":19}},"\u0424":{"d":"139,-259r24,0r0,22v74,-6,120,41,120,106v0,67,-46,111,-120,105r0,26r-24,0r0,-26v-74,6,-120,-38,-120,-105v0,-65,46,-112,120,-106r0,-22xm139,-46r0,-170v-61,-6,-95,31,-95,85v0,54,34,91,95,85xm163,-216r0,170v61,6,96,-31,96,-85v0,-54,-35,-91,-96,-85","w":302,"k":{"\u0425":13,"\u0423":8,"\u0422":13,"\u0416":13,"\u0410":13,"\u040e":8}},"\u0425":{"d":"10,-259r29,0r70,109r72,-109r28,0r-85,126r89,133r-28,0r-76,-114r-75,114r-28,0r90,-133","w":219,"k":{"\u0443":13,"\u0424":13,"\u041e":11}},"\u0426":{"d":"54,-259r0,238r153,0r0,-238r24,0r0,238r20,0r0,80r-24,0r0,-59r-198,0r0,-259r25,0","w":260},"\u0427":{"d":"27,-259r24,0r0,70v-3,64,83,51,138,46r0,-116r25,0r0,259r-25,0r0,-122v-74,8,-168,17,-162,-72r0,-65","w":243},"\u0428":{"d":"54,-259r0,238r108,0r0,-238r24,0r0,238r108,0r0,-238r25,0r0,259r-290,0r0,-259r25,0","w":347},"\u0429":{"d":"54,-259r0,238r108,0r0,-238r24,0r0,238r108,0r0,-238r25,0r0,238r19,0r0,80r-24,0r0,-59r-285,0r0,-259r25,0","w":347},"\u042a":{"d":"-3,-259r79,0r0,111v78,-2,154,-5,154,76v0,39,-19,72,-86,72r-93,0r0,-238r-54,0r0,-21xm76,-127r0,106v61,-1,130,11,130,-52v0,-62,-69,-54,-130,-54","w":249},"\u042b":{"d":"54,-259r0,111v78,-2,154,-5,154,76v0,39,-19,72,-86,72r-93,0r0,-259r25,0xm54,-127r0,106v61,-1,130,11,130,-52v0,-62,-69,-54,-130,-54xm280,-259r0,259r-24,0r0,-259r24,0","w":309},"\u042c":{"d":"54,-259r0,111v78,-2,154,-5,154,76v0,39,-19,72,-86,72r-93,0r0,-259r25,0xm54,-127r0,106v61,-1,130,11,130,-52v0,-62,-69,-54,-130,-54","w":227,"k":{"\u0422":22}},"\u042d":{"d":"20,-184v8,-54,48,-82,101,-82v69,0,120,37,120,136v0,73,-31,137,-111,137v-69,0,-101,-42,-113,-92r26,0v10,41,37,71,82,71v68,0,92,-54,92,-113r-111,0r0,-21r111,0v-7,-53,-32,-97,-90,-97v-44,0,-72,17,-82,61r-25,0","w":260,"k":{"\u0434":11,"\u0414":11}},"\u042e":{"d":"54,-148r46,0v9,-67,48,-118,120,-118v81,0,122,61,122,137v0,75,-41,136,-121,136v-78,0,-121,-58,-121,-134r-46,0r0,127r-25,0r0,-259r25,0r0,111xm221,-14v67,0,97,-55,97,-115v0,-72,-37,-116,-97,-116v-67,0,-96,56,-96,116v0,61,28,115,96,115","w":361,"k":{"\u0434":11,"\u0414":11}},"\u042f":{"d":"174,-114r-64,0r-73,114r-29,0r75,-117v-36,-6,-64,-24,-64,-70v0,-39,19,-72,86,-72r93,0r0,259r-24,0r0,-114xm174,-135r0,-103v-61,1,-130,-11,-130,52v0,62,70,50,130,51","w":227},"\u0430":{"d":"149,-98v-23,14,-109,3,-109,50v0,23,20,34,41,34v45,1,76,-28,68,-84xm48,-130r-22,0v-1,-79,144,-89,144,-4r0,102v-1,20,10,21,23,14r0,17v-24,9,-42,3,-45,-25v-31,44,-126,45,-131,-23v-3,-45,57,-57,107,-61v18,-2,25,-7,25,-24v0,-22,-14,-38,-47,-38v-30,0,-50,10,-54,42","k":{"\u0447":5,"\u0442":5}},"\u0431":{"d":"43,-156v13,-22,33,-36,65,-36v57,0,85,44,85,99v0,59,-35,98,-87,98v-58,0,-86,-45,-86,-108v0,-62,9,-127,75,-140v43,-8,58,-12,58,-23r23,0v0,25,-30,33,-71,41v-35,6,-54,24,-62,69xm106,-14v45,0,64,-39,64,-79v0,-44,-18,-79,-64,-79v-45,0,-63,36,-63,76v0,43,21,82,63,82","w":209},"\u0432":{"d":"48,-88r0,70v43,-1,101,10,100,-34v-1,-46,-56,-35,-100,-36xm48,-168r0,62v40,-1,91,10,93,-31v3,-40,-54,-30,-93,-31xm26,0r0,-186r87,0v60,-2,62,72,20,87v20,5,38,22,38,46v-2,69,-80,51,-145,53","w":187},"\u0433":{"d":"26,-186r115,0r0,18r-93,0r0,168r-22,0r0,-186","w":145,"k":{"\u0443":-5,"\u0442":-5,"\u043b":11,"\u0434":13,"\u045e":-5}},"\u0434":{"d":"45,-186r124,0r0,168r19,0r0,67r-22,0r0,-49r-138,0r0,49r-22,0r0,-67r17,0v28,-55,21,-101,22,-168xm147,-168r-80,0v0,60,4,102,-21,150r101,0r0,-150","w":199,"k":{"\u0447":16}},"\u0435":{"d":"40,-106r122,0v0,-36,-20,-66,-59,-66v-38,0,-59,31,-63,66xm185,-88r-145,0v0,40,22,74,63,74v28,0,50,-16,56,-43r25,0v-11,35,-33,62,-81,62v-60,0,-86,-43,-86,-98v0,-54,33,-99,86,-99v51,0,82,37,82,104","w":202},"\u0436":{"d":"10,-186r28,0r83,92r0,-92r22,0r0,92r83,-92r29,0r-67,73r74,113r-24,0r-66,-98r-29,30r0,68r-22,0r0,-68r-28,-30r-66,98r-25,0r75,-113","w":264,"k":{"\u043e":8}},"\u0437":{"d":"40,-133r-21,0v3,-35,33,-59,69,-59v80,0,90,77,34,92v70,22,49,105,-32,105v-46,0,-73,-23,-77,-63r22,0v3,28,23,44,56,44v31,0,50,-14,50,-35v-1,-35,-28,-44,-64,-41r0,-18v31,3,59,-6,59,-33v0,-22,-18,-31,-47,-31v-28,0,-43,12,-49,39","w":181},"\u0438":{"d":"48,-186r0,157r106,-157r24,0r0,186r-22,0r0,-158r-106,158r-24,0r0,-186r22,0","w":203},"\u0439":{"d":"48,-186r0,157r106,-157r24,0r0,186r-22,0r0,-158r-106,158r-24,0r0,-186r22,0xm50,-251r14,0v5,39,70,39,76,0r14,0v-3,30,-24,45,-54,45v-28,0,-48,-17,-50,-45","w":203},"\u043a":{"d":"48,-186r0,88r91,-88r29,0r-69,67r78,119r-24,0r-70,-104r-35,33r0,71r-22,0r0,-186r22,0","w":181,"k":{"\u0441":5,"\u043e":5,"\u0435":5,"\u0451":5}},"\u043b":{"d":"15,-17v36,-23,19,-36,25,-169r129,0r0,186r-21,0r0,-168r-86,0v-4,70,14,183,-59,167r0,-18v4,1,10,2,12,2","w":199},"\u043c":{"d":"26,-186r28,0r63,162r63,-162r28,0r0,186r-22,0r0,-153r-59,153r-20,0r-59,-153r0,153r-22,0r0,-186","w":233},"\u043d":{"d":"49,-186r0,78r103,0r0,-78r22,0r0,186r-22,0r0,-90r-103,0r0,90r-22,0r0,-186r22,0"},"\u043e":{"d":"104,-192v58,0,86,44,86,99v0,59,-34,98,-86,98v-48,0,-87,-33,-87,-98v0,-54,29,-99,87,-99xm104,-172v-45,0,-64,39,-64,79v0,46,23,79,64,79v45,0,63,-39,63,-79v0,-44,-17,-79,-63,-79","w":207,"k":{"\u0445":8,"\u0436":8}},"\u043f":{"d":"26,-186r147,0r0,186r-22,0r0,-168r-103,0r0,168r-22,0r0,-186","w":198},"\u0440":{"d":"111,-172v-37,0,-63,28,-63,81v0,40,22,77,63,77v36,0,63,-34,63,-76v0,-45,-18,-82,-63,-82xm48,-30r0,103r-22,0r0,-259r22,0r0,32v13,-24,41,-38,65,-38v60,0,84,43,84,98v0,52,-26,99,-83,99v-26,0,-52,-12,-66,-35","w":214},"\u0441":{"d":"180,-128r-22,0v-8,-28,-26,-44,-55,-44v-85,1,-86,157,0,158v32,0,52,-19,57,-50r23,0v-8,41,-33,69,-80,69v-59,0,-86,-43,-86,-98v0,-52,30,-99,86,-99v43,0,71,21,77,64"},"\u0442":{"d":"5,-186r147,0r0,18r-63,0r0,168r-21,0r0,-168r-63,0r0,-18","w":156,"k":{"\u0443":-5,"\u0442":-5,"\u043b":11,"\u0434":16,"\u045e":-5}},"\u0443":{"d":"6,-186r25,0r59,160r60,-160r24,0r-70,183v-23,55,-28,85,-80,74r0,-20v36,6,35,0,55,-50","w":176,"k":{"\u0442":-5,"\u0434":8}},"\u0444":{"d":"93,-14v37,0,53,-40,53,-80v0,-41,-19,-78,-53,-78v-71,1,-71,158,0,158xm146,-266r21,0r0,108v10,-18,31,-34,57,-34v49,0,72,47,72,99v0,54,-21,98,-72,98v-24,0,-44,-10,-57,-32r0,100r-21,0r0,-101v-13,22,-32,33,-56,33v-51,0,-73,-45,-73,-99v0,-52,24,-98,73,-98v26,0,46,15,56,33r0,-107xm220,-14v70,0,72,-157,0,-158v-34,0,-53,37,-53,78v0,40,16,80,53,80","w":313},"\u0445":{"d":"12,-186r27,0r51,74r53,-74r28,0r-68,90r70,96r-26,0r-56,-81r-58,81r-27,0r72,-96","w":180,"k":{"\u043e":8,"\u0435":8,"\u0451":8}},"\u0446":{"d":"48,-186r0,168r103,0r0,-168r22,0r0,168r19,0r0,67r-22,0r0,-49r-144,0r0,-186r22,0","w":201},"\u0447":{"d":"20,-186r21,0v-1,43,-7,85,41,85v37,0,45,-2,54,-6r0,-79r22,0r0,186r-22,0r0,-88v-49,14,-117,11,-116,-50r0,-48","w":183},"\u0448":{"d":"48,-186r0,168r94,0r0,-168r21,0r0,168r95,0r0,-168r21,0r0,186r-253,0r0,-186r22,0","w":305},"\u0449":{"d":"48,-186r0,168r94,0r0,-168r21,0r0,168r95,0r0,-168r21,0r0,168r19,0r0,67r-22,0r0,-49r-250,0r0,-186r22,0","w":308},"\u044a":{"d":"-4,-186r61,0r0,78v59,-4,120,2,120,54v0,50,-47,54,-62,54r-79,0r0,-168r-40,0r0,-18xm57,-90r0,72v43,2,97,3,97,-36v0,-43,-54,-36,-97,-36","w":194},"\u044b":{"d":"48,-186r0,78v59,-4,119,2,119,54v0,50,-47,54,-62,54r-79,0r0,-186r22,0xm48,-90r0,72v43,2,96,3,96,-36v0,-42,-53,-36,-96,-36xm226,-186r0,186r-21,0r0,-186r21,0","w":252},"\u044c":{"d":"48,-186r0,78v59,-4,119,2,119,54v0,50,-47,54,-62,54r-79,0r0,-186r22,0xm48,-90r0,72v43,2,96,3,96,-36v0,-42,-53,-36,-96,-36","w":184,"k":{"\u0442":19}},"\u044d":{"d":"19,-128v7,-38,35,-64,78,-64v56,0,86,47,86,99v0,55,-27,98,-86,98v-47,0,-72,-28,-80,-69r23,0v5,31,25,50,57,50v43,0,62,-38,62,-76r-74,0r0,-18r73,0v-3,-32,-22,-64,-61,-64v-29,0,-48,16,-56,44r-22,0","w":199},"\u044e":{"d":"48,-186r0,78r39,0v5,-47,32,-84,85,-84v58,0,86,44,86,99v0,59,-34,98,-86,98v-46,0,-86,-31,-86,-95r-38,0r0,90r-22,0r0,-186r22,0xm235,-93v0,-44,-17,-79,-63,-79v-45,0,-63,39,-63,79v0,46,22,79,63,79v45,0,63,-39,63,-79","w":275},"\u044f":{"d":"137,-80r-52,0r-45,80r-24,0r47,-81v-31,-8,-46,-26,-46,-52v0,-50,47,-53,62,-53r79,0r0,186r-21,0r0,-80xm137,-98r0,-70v-42,-1,-99,-4,-97,35v2,42,54,35,97,35","w":184}}}); /* End */ ; ; /* Start:/bitrix/templates/index/js/fonts/HeliosLightC_italic_300.font.js*/ /*! * The following copyright notice may not be removed under any circumstances. * * Copyright: * Copyright (C) 1993; Type Market Ltd. Moscow, 119136, Box 20; * phone:(095)1427712; Created by A.Kustov * * Trademark: * Please refer to the Copyright section for the font trademark attribution * notices. * * Full name: * HeliosLightC-Italic */ Cufon.registerFont({"w":200,"face":{"font-family":"HeliosLightC","font-weight":300,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"284","descent":"-76","x-height":"5","bbox":"-33 -343 376 76","underline-thickness":"20.88","underline-position":"-11.52","slope":"-12","stemh":"18","unicode-range":"U+0020-U+0491"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"44,-65r19,-114r18,-80r26,0r-17,80r-30,114r-16,0xm51,0r-26,0r7,-32r26,0","w":119},"\"":{"d":"12,-178r17,-81r19,0r-17,81r-19,0xm52,-178r17,-81r19,0r-17,81r-19,0","w":100},"#":{"d":"177,-103r-5,21r-40,0r-29,82r-21,0r29,-82r-50,0r-29,82r-22,0r30,-82r-40,0r5,-21r43,0r18,-51r-40,0r4,-21r43,0r28,-76r22,0r-28,76r49,0r27,-76r22,0r-28,76r36,0r-4,21r-39,0r-18,51r37,0xm137,-154r-49,0r-19,51r50,0"},"$":{"d":"104,-142r19,-92v-31,0,-59,24,-59,56v0,22,18,30,40,36xm115,-116r-22,103v34,0,68,-29,68,-65v0,-25,-21,-32,-46,-38xm89,7r-5,27r-17,0r5,-27v-44,-2,-76,-34,-60,-80r22,0v-5,33,9,59,42,60r23,-107v-32,-8,-59,-20,-59,-52v0,-48,44,-82,88,-82r4,-22r17,0r-4,22v40,-1,65,25,56,64r-23,0v6,-28,-11,-44,-38,-44r-20,95v38,9,64,20,64,56v0,56,-47,90,-95,90"},"%":{"d":"236,-119v28,0,48,20,48,47v0,37,-35,72,-73,72v-28,0,-49,-20,-49,-47v0,-37,38,-72,74,-72xm231,-99v-42,-4,-70,75,-16,78v44,4,71,-74,16,-78xm111,-251v28,0,48,20,48,47v0,66,-122,107,-122,25v0,-37,38,-72,74,-72xm106,-231v-44,-4,-71,75,-16,78v44,4,71,-74,16,-78xm268,-254r-198,259r-19,0r198,-259r19,0","w":320},"&":{"d":"154,-47r-55,-88v-36,15,-66,46,-66,80v0,62,92,46,121,8xm138,-240v-39,0,-57,42,-25,80v30,-15,52,-31,52,-53v0,-12,-6,-27,-27,-27xm193,-117r21,0v-6,23,-16,47,-33,67r32,50r-29,0r-19,-31v-42,52,-156,56,-156,-22v0,-48,37,-79,81,-97v-9,-13,-17,-29,-17,-46v0,-65,115,-90,115,-23v0,37,-27,54,-66,75r49,77v12,-15,18,-32,22,-50","w":240},"'":{"d":"22,-178r17,-81r19,0r-17,81r-19,0","w":79},"(":{"d":"117,-266r18,0v-82,90,-127,210,-71,335r-18,0v-68,-123,-18,-249,71,-335","w":119},")":{"d":"56,-266r18,0v68,123,18,249,-71,335r-18,0v82,-90,127,-211,71,-335","w":119},"*":{"d":"28,-233r36,16r9,-42r15,0r-8,42r43,-15r3,16r-44,13r19,38r-16,9r-18,-39r-37,38r-10,-10r35,-36r-37,-14","w":140},"+":{"d":"110,-101r17,-79r22,0r-17,79r79,0r-4,22r-80,0r-16,79r-22,0r17,-79r-79,0r4,-22r79,0","w":237},",":{"d":"45,-32r27,0v-6,34,-13,75,-44,81v2,-20,21,-23,23,-49r-12,0","w":100},"-":{"d":"23,-101r91,0r-5,22r-91,0","w":119},"\u00ad":{"d":"23,-101r91,0r-5,22r-91,0","w":119},".":{"d":"60,0r-27,0r7,-32r26,0","w":100},"\/":{"d":"135,-266r-148,298r-20,0r148,-298r20,0","w":100},"0":{"d":"84,-14v71,0,93,-92,93,-164v0,-32,-11,-56,-47,-56v-64,0,-93,93,-93,164v0,35,13,56,47,56xm14,-67v0,-88,29,-187,121,-187v51,0,66,33,66,73v0,90,-32,185,-121,186v-50,0,-66,-30,-66,-72"},"1":{"d":"148,-254r18,0r-54,254r-23,0r41,-189r-66,0r3,-15v39,-3,64,-6,81,-50"},"2":{"d":"207,-200v0,115,-152,93,-180,181r141,0r-4,19r-166,0v15,-109,185,-105,183,-194v0,-26,-19,-40,-46,-40v-33,0,-61,29,-68,63r-25,0v10,-50,50,-83,100,-83v44,0,65,23,65,54"},"3":{"d":"63,-180r-23,0v6,-30,31,-74,98,-74v35,0,61,16,61,48v0,32,-19,59,-50,71v26,9,34,28,34,46v0,49,-42,94,-100,94v-59,0,-81,-23,-74,-78r23,0v-9,36,12,59,50,59v41,0,77,-34,77,-70v0,-31,-32,-38,-72,-38r4,-19v45,0,84,-18,84,-59v0,-24,-20,-34,-46,-34v-32,0,-59,22,-66,54"},"4":{"d":"166,-251r20,0r-36,169r36,0r-4,19r-35,0r-14,63r-23,0r13,-63r-115,0r4,-19xm156,-217r-122,135r93,0"},"5":{"d":"78,-251r126,0r-5,19r-106,0r-34,85v47,-32,124,-18,124,45v0,65,-54,107,-101,107v-49,1,-82,-20,-74,-71r23,0v0,36,19,52,52,52v43,0,76,-38,76,-81v0,-58,-81,-62,-111,-22r-19,-3"},"6":{"d":"15,-69v0,-86,38,-181,128,-185v39,-2,66,23,60,62r-23,0v0,-26,-13,-42,-40,-42v-62,0,-81,66,-95,114v19,-19,38,-39,75,-39v43,0,65,21,65,58v0,63,-43,106,-101,106v-41,0,-69,-20,-69,-74xm115,-140v-41,0,-73,39,-73,80v0,24,13,46,47,46v51,0,73,-48,73,-84v0,-27,-15,-42,-47,-42"},"7":{"d":"51,-228r5,-23r161,0r-4,21v-90,82,-139,180,-152,230r-25,0v21,-73,87,-168,149,-228r-134,0"},"8":{"d":"108,-124v-35,0,-74,21,-74,66v0,25,19,44,52,44v65,0,112,-111,22,-110xm131,-234v-30,0,-63,19,-63,55v0,24,21,35,46,35v28,0,61,-17,61,-60v0,-19,-14,-30,-44,-30xm71,-136v-62,-37,-2,-118,62,-118v35,0,65,15,65,48v0,32,-19,57,-49,71v21,8,34,26,34,48v0,49,-43,92,-107,92v-32,0,-66,-19,-66,-58v0,-34,23,-70,61,-83"},"9":{"d":"200,-179v0,98,-60,184,-127,184v-39,0,-66,-21,-60,-61r23,0v0,27,12,42,40,42v59,0,86,-69,94,-114v-33,55,-140,56,-140,-20v0,-59,40,-106,102,-106v50,0,68,31,68,75xm128,-234v-43,0,-75,37,-75,83v0,27,17,43,48,43v42,0,72,-40,72,-81v0,-27,-15,-45,-45,-45"},":":{"d":"44,0r-26,0r6,-32r27,0xm75,-145r-26,0r6,-32r27,0","w":100},";":{"d":"30,-32r26,0v-6,33,-12,75,-43,81v0,-21,22,-21,22,-49r-12,0xm80,-145r-26,0r6,-32r27,0","w":100},"<":{"d":"58,-92r136,71r-5,23r-162,-84r4,-20r197,-80r-4,23","w":237},"=":{"d":"219,-136r-5,22r-180,0r5,-22r180,0xm204,-66r-5,21r-180,0r5,-21r180,0","w":237},">":{"d":"211,-102r-4,20r-198,84r5,-23r167,-71r-137,-67r4,-23","w":237},"?":{"d":"197,-214v1,69,-94,76,-102,148r-20,0v6,-26,11,-46,34,-66v28,-24,65,-46,65,-78v0,-21,-17,-37,-48,-37v-35,0,-60,26,-68,61r-22,0v10,-48,48,-80,95,-80v42,0,66,20,66,52xm85,0r-26,0r6,-32r26,0","w":180},"@":{"d":"231,-60r22,0v-32,42,-84,67,-131,67v-67,0,-110,-46,-110,-108v0,-87,84,-165,167,-165v60,0,102,37,102,90v0,66,-64,128,-109,128v-13,0,-25,-5,-27,-18v-27,27,-86,24,-86,-22v0,-51,57,-123,113,-123v17,0,32,9,36,24r9,-17r24,0r-69,131v0,3,1,7,9,7v38,0,78,-68,78,-108v0,-46,-36,-74,-84,-74v-77,0,-142,73,-142,145v0,53,37,92,93,92v37,0,77,-18,105,-49xm109,-71v33,0,80,-69,80,-99v0,-9,-7,-20,-21,-20v-41,0,-81,64,-81,96v0,13,7,23,22,23","w":288},"A":{"d":"139,-259r28,0r44,259r-25,0r-12,-81r-119,0r-48,81r-25,0xm148,-238r-80,136r102,0","w":234,"k":{"y":19,"w":24,"v":24,"t":11,"q":8,"o":8,"g":8,"f":11,"e":8,"d":8,"c":8,"Y":32,"W":27,"V":32,"U":11,"T":27,"Q":11,"O":11,"G":11,"C":11}},"B":{"d":"39,-21v77,0,154,11,154,-66v0,-49,-82,-35,-133,-37xm85,-238r-20,93r62,0v73,0,79,-43,79,-61v0,-39,-76,-32,-121,-32xm9,0r56,-259v64,1,166,-12,166,48v0,43,-30,70,-55,73v28,4,41,22,41,47v0,30,-16,91,-102,91r-106,0","w":238,"k":{"Y":11}},"C":{"d":"260,-184r-25,0v0,-43,-25,-61,-69,-61v-75,0,-119,81,-119,155v0,42,18,76,72,76v45,0,79,-30,97,-71r26,0v-22,50,-63,92,-132,92v-63,0,-88,-39,-88,-92v0,-59,29,-181,155,-181v53,0,83,26,83,82","w":261,"k":{"Y":13}},"D":{"d":"9,0r56,-259v93,0,188,-16,188,87v0,48,-16,104,-56,140v-50,45,-109,29,-188,32xm85,-238r-46,217v47,-1,85,5,122,-12v50,-24,68,-92,68,-136v0,-75,-71,-71,-144,-69","w":259,"k":{"Y":13}},"E":{"d":"65,-259r172,0r-4,21r-148,0r-19,90r133,0r-4,21r-134,0r-22,106r151,0r-5,21r-176,0","w":219},"F":{"d":"65,-259r167,0r-5,21r-142,0r-19,90r129,0r-4,21r-130,0r-27,127r-25,0","w":202,"k":{"A":19}},"G":{"d":"267,-184r-25,0v0,-39,-29,-61,-68,-61v-101,0,-127,115,-127,152v0,45,25,79,74,79v44,0,97,-29,110,-99r-87,0r5,-21r111,0r-29,134r-21,0r10,-44v-25,31,-57,51,-108,51v-54,0,-90,-31,-90,-93v0,-80,48,-180,154,-180v54,0,91,26,91,82","w":279},"H":{"d":"89,-259r-23,111r153,0r24,-111r24,0r-55,259r-25,0r28,-127r-154,0r-27,127r-25,0r56,-259r24,0","w":260},"I":{"d":"89,-259r-55,259r-25,0r56,-259r24,0","w":82},"J":{"d":"162,-259r24,0r-40,188v-10,50,-39,78,-89,78v-58,0,-59,-43,-50,-89r25,0v-7,32,-13,67,32,67v33,0,50,-21,58,-57","w":180},"K":{"d":"89,-259r-28,130r157,-130r32,0r-124,103r86,156r-29,0r-78,-141r-50,41r-21,100r-25,0r56,-259r24,0","w":238,"k":{"q":16,"o":16,"g":16,"e":16,"d":11,"c":16,"U":11,"Q":11,"O":11,"G":11,"C":11}},"L":{"d":"89,-259r-50,238r138,0r-4,21r-164,0r56,-259r24,0","k":{"Y":46,"W":30,"V":35,"T":32}},"M":{"d":"65,-259r37,0r37,228r132,-228r38,0r-56,259r-24,0r48,-231r-134,231r-23,0r-37,-231r-49,231r-25,0","w":302},"N":{"d":"65,-259r28,0r102,226r48,-226r24,0r-55,259r-28,0r-102,-226r-48,226r-25,0","w":261},"O":{"d":"175,-266v67,0,98,41,98,98v0,90,-62,175,-155,175v-66,0,-96,-42,-96,-98v0,-89,63,-175,153,-175xm171,-245v-83,0,-124,85,-124,151v0,45,22,80,76,80v80,0,125,-79,125,-151v0,-50,-28,-80,-77,-80","w":279,"k":{"Y":16,"V":11,"A":11}},"P":{"d":"58,-114r-24,114r-25,0r56,-259r93,0v55,0,73,22,73,52v0,96,-83,96,-173,93xm85,-238r-22,103v72,1,143,6,143,-68v0,-45,-73,-33,-121,-35","w":227,"k":{"A":32}},"Q":{"d":"207,-24r29,26r-17,17r-32,-30v-20,11,-43,18,-69,18v-66,0,-96,-42,-96,-98v0,-85,60,-175,153,-175v60,0,98,34,98,96v0,54,-25,114,-66,146xm163,-65r29,26v64,-43,90,-206,-20,-206v-78,0,-125,80,-125,151v0,45,22,80,76,80v18,0,34,-5,48,-12r-24,-22","w":279,"k":{"Y":16,"V":11}},"R":{"d":"85,-238r-22,99v73,1,154,10,154,-64v0,-52,-81,-31,-132,-35xm59,-118r-25,118r-25,0r56,-259v68,3,177,-17,177,49v0,36,-17,67,-58,82v47,20,3,84,17,128r-27,0v-9,-47,36,-118,-38,-118r-77,0","w":244},"S":{"d":"12,-77r24,0v-6,42,21,63,61,63v51,0,78,-31,78,-64v0,-60,-133,-27,-133,-102v0,-43,37,-86,104,-86v57,0,80,31,71,77r-24,0v10,-36,-19,-56,-52,-56v-52,0,-75,34,-75,60v0,59,135,23,135,99v0,53,-44,93,-113,93v-55,1,-89,-31,-76,-84","w":225},"T":{"d":"143,-238r-51,238r-25,0r51,-238r-82,0r5,-21r188,0r-4,21r-82,0","k":{"z":19,"y":19,"w":16,"v":19,"u":27,"s":22,"r":24,"q":27,"p":27,"o":27,"n":27,"m":27,"g":27,"f":8,"e":27,"d":27,"c":27,"a":27,"T":-8,"J":38,"A":27}},"U":{"d":"65,-259r24,0v-11,63,-37,122,-37,190v0,38,19,55,61,55v113,0,99,-156,128,-245r25,0r-35,161v-14,67,-55,105,-122,105v-143,0,-55,-175,-44,-266","w":259,"k":{"A":11}},"V":{"d":"41,-259r26,0r29,230r127,-230r25,0r-145,259r-27,0","w":219,"k":{"u":16,"t":5,"s":19,"r":16,"q":19,"p":16,"o":19,"n":16,"m":16,"g":19,"e":19,"d":19,"c":19,"a":22,"Q":11,"O":11,"G":11,"C":11,"A":32}},"W":{"d":"40,-259r24,0r9,224r108,-224r27,0r12,224r105,-224r25,0r-124,259r-27,0r-11,-229r-110,229r-27,0","w":320,"k":{"u":13,"s":13,"r":13,"q":13,"p":11,"o":16,"n":11,"m":11,"g":16,"e":16,"d":16,"c":16,"a":16,"A":27}},"X":{"d":"46,-259r28,0r48,109r94,-109r29,0r-112,126r60,133r-28,0r-51,-114r-100,114r-27,0r117,-133","w":219},"Y":{"d":"40,-259r28,0r49,125r105,-125r29,0r-126,146r-24,113r-24,0r23,-111","w":219,"k":{"u":27,"s":22,"r":24,"q":27,"p":24,"o":27,"n":24,"m":24,"g":27,"e":27,"d":27,"c":27,"a":30,"Q":16,"O":16,"G":16,"C":16,"A":32}},"Z":{"d":"61,-259r182,0r-5,20r-212,218r167,0r-4,21r-198,0r5,-21r212,-217r-152,0","w":219},"[":{"d":"68,-266r69,0r-4,18r-46,0r-63,299r46,0r-4,18r-69,0","w":119},"\\":{"d":"67,0r-55,-266r21,0r56,266r-22,0","w":100},"]":{"d":"54,-266r69,0r-72,335r-68,0r4,-18r45,0r64,-299r-46,0","w":119},"^":{"d":"30,-88r-21,0r117,-163r19,0r49,163r-21,0r-42,-141","w":237},"_":{"d":"178,43r-180,0r4,-21r180,0","w":180},"`":{"d":"60,-207r-38,-50r28,0r29,50r-19,0","w":119},"a":{"d":"150,-98v-10,5,-31,10,-58,11v-40,2,-62,21,-62,46v0,18,16,27,34,27v46,2,84,-32,86,-84xm56,-130r-22,0v13,-44,48,-62,89,-62v39,0,64,19,56,58r-23,112v1,12,11,8,21,4r-4,17v-21,9,-44,5,-39,-25v-21,20,-48,31,-75,31v-29,0,-53,-13,-53,-41v0,-31,21,-62,79,-69v31,-4,73,-3,73,-39v0,-17,-11,-28,-39,-28v-30,0,-52,10,-63,42"},"b":{"d":"127,-172v-40,0,-82,42,-82,103v0,31,16,55,49,55v47,0,83,-51,83,-104v0,-31,-15,-54,-50,-54xm28,0r-22,0r55,-259r22,0r-22,102v19,-23,48,-35,74,-35v46,0,66,31,66,70v0,67,-41,127,-109,127v-24,0,-49,-14,-57,-38","w":214},"c":{"d":"188,-128r-22,0v0,-26,-17,-44,-46,-44v-56,0,-83,64,-83,104v0,30,14,54,49,54v32,0,56,-19,68,-50r23,0v-16,41,-48,69,-95,69v-48,0,-68,-27,-68,-67v0,-62,43,-130,110,-130v43,0,64,20,64,64"},"d":{"d":"120,-172v-40,0,-83,42,-83,103v0,31,16,55,49,55v47,0,84,-51,84,-104v0,-31,-15,-54,-50,-54xm180,-157r22,-102r22,0r-55,259r-22,0v1,-10,7,-24,6,-33v-35,57,-139,50,-139,-28v0,-63,39,-131,107,-131v26,0,50,12,59,35","w":214},"e":{"d":"43,-106r122,0v7,-36,-6,-66,-45,-66v-38,0,-65,31,-77,66xm184,-88r-145,0v-7,40,5,74,47,74v28,0,54,-16,66,-43r24,0v-18,35,-46,62,-94,62v-48,0,-68,-28,-68,-67v0,-66,46,-130,110,-130v55,0,74,49,60,104","w":202},"f":{"d":"49,-168r-28,0r3,-18r28,0v7,-42,22,-92,74,-75r-4,18v-38,-11,-43,26,-48,57r36,0r-4,18r-36,0r-36,168r-21,0","w":100,"k":{"y":-8}},"g":{"d":"120,-172v-51,0,-83,54,-83,103v0,31,16,55,49,55v47,0,84,-51,84,-104v0,-31,-15,-54,-50,-54xm187,-186r21,0r-35,168v-11,50,-37,94,-108,94v-52,0,-69,-25,-68,-53r24,0v0,28,22,34,48,34v59,0,76,-45,85,-87v-38,55,-140,44,-140,-34v0,-67,40,-128,108,-128v25,-1,48,16,58,38","w":214},"h":{"d":"83,-259r-21,98v36,-48,135,-42,118,39r-26,122r-22,0r29,-140v0,-22,-12,-32,-40,-32v-79,0,-74,106,-93,172r-22,0r55,-259r22,0","w":199},"i":{"d":"67,-186r-39,186r-22,0r40,-186r21,0xm76,-227r-22,0r7,-32r22,0","w":73},"j":{"d":"51,-186r22,0r-45,211v-5,38,-20,52,-61,47r4,-19v21,4,31,-5,35,-25xm82,-227r-22,0r7,-32r22,0","w":79},"k":{"d":"83,-259r-34,161r110,-88r29,0r-84,67r53,119r-24,0r-48,-104r-42,33r-15,71r-22,0r55,-259r22,0","w":181,"k":{"q":5,"o":5,"g":5,"e":5,"d":5,"c":5}},"l":{"d":"82,-259r-55,259r-21,0r55,-259r21,0","w":73},"m":{"d":"67,-186r-5,28v22,-40,108,-49,112,2v22,-44,119,-53,115,7v-4,53,-20,100,-29,149r-22,0r28,-129v4,-26,0,-43,-31,-43v-71,0,-76,107,-91,172r-22,0r30,-144v0,-17,-9,-28,-33,-28v-75,0,-74,106,-91,172r-22,0r40,-186r21,0","w":305},"n":{"d":"67,-186r-5,25v36,-48,135,-42,118,39r-26,122r-22,0r28,-140v0,-22,-11,-32,-39,-32v-79,0,-75,105,-94,172r-21,0r39,-186r22,0","w":199},"o":{"d":"125,-192v48,0,68,30,68,70v0,51,-34,127,-110,127v-40,0,-69,-23,-69,-69v0,-63,42,-128,111,-128xm121,-172v-54,0,-84,56,-84,104v0,32,17,54,50,54v55,0,83,-59,83,-107v0,-30,-13,-51,-49,-51","w":207,"k":{"x":8}},"p":{"d":"127,-172v-40,0,-82,42,-82,103v0,31,16,55,49,55v47,0,83,-51,83,-104v0,-31,-15,-54,-50,-54xm34,-30r-22,103r-21,0r55,-259r21,0v-1,10,-7,24,-6,32v35,-56,140,-50,140,28v0,63,-40,131,-108,131v-26,0,-50,-12,-59,-35","w":214},"q":{"d":"120,-172v-40,0,-83,42,-83,103v0,31,16,55,49,55v47,0,84,-51,84,-104v0,-31,-15,-54,-50,-54xm187,-186r21,0r-55,259r-21,0r22,-103v-19,23,-48,35,-74,35v-46,0,-66,-31,-66,-70v0,-40,23,-127,108,-127v25,-1,48,16,58,38","w":214},"r":{"d":"67,-186v-2,11,-8,25,-7,34v18,-30,39,-40,70,-40r-5,24v-85,1,-79,99,-98,168r-21,0r39,-186r22,0","w":118},"s":{"d":"50,-134v0,40,102,22,102,74v0,42,-42,65,-89,65v-43,0,-61,-24,-58,-63r22,0v0,32,15,44,47,44v31,0,54,-19,54,-41v0,-16,-15,-24,-48,-30v-39,-7,-54,-21,-54,-41v0,-37,33,-66,78,-66v40,0,62,18,59,59r-22,0v2,-28,-14,-39,-42,-39v-27,0,-49,15,-49,38","w":177},"t":{"d":"73,-17r-4,18v-23,9,-59,6,-51,-33r29,-136r-26,0r3,-18r27,0r11,-52r22,0r-12,52r35,0r-3,18r-35,0r-30,142v-2,15,22,13,34,9","w":100},"u":{"d":"43,-186r21,0r-28,139v0,21,13,33,40,33v73,-1,76,-107,93,-172r21,0r-39,186r-22,0r6,-26v-18,17,-39,31,-67,31v-50,0,-60,-30,-51,-69","w":199},"v":{"d":"26,-186r23,0r27,159r94,-159r24,0r-112,186r-24,0","w":180},"w":{"d":"25,-186r22,0r14,159r77,-159r24,0r8,157r82,-157r22,0r-100,186r-23,0r-8,-157r-75,157r-26,0","w":259},"x":{"d":"32,-186r27,0r35,74r69,-74r27,0r-86,90r49,96r-26,0r-39,-81r-75,81r-26,0r92,-96","w":180,"k":{"o":8,"e":8,"d":8,"c":8}},"y":{"d":"24,-186r24,0r26,160r94,-160r23,0r-109,183v-34,54,-43,84,-95,74r5,-20v37,6,34,-2,65,-50","w":176},"z":{"d":"40,-186r143,0r-4,19r-155,149r128,0r-4,18r-156,0r4,-19r156,-149r-116,0","w":180},"{":{"d":"138,-267v-74,13,-25,149,-97,167v68,22,-44,141,25,167v-87,8,-25,-102,-25,-142v0,-12,-6,-20,-23,-25v81,-14,10,-175,120,-167","w":119},"|":{"d":"1,0r57,-266r21,0r-56,266r-22,0","w":79},"}":{"d":"54,-267v89,-11,26,104,26,141v0,12,6,23,23,26v-80,15,-13,175,-120,167v75,-16,24,-145,97,-167v-68,-21,45,-146,-26,-167","w":119},"~":{"d":"201,-122r11,12v-14,19,-34,39,-58,39v-23,0,-56,-25,-73,-25v-16,0,-30,12,-46,33r-9,-17v21,-24,40,-37,59,-37v27,0,53,26,73,26v16,0,33,-18,43,-31","w":237},"\u0402":{"d":"143,-238r-20,92v8,-1,41,-2,52,-2v63,0,82,25,82,57v0,65,-55,98,-134,91r5,-21v66,4,104,-22,104,-65v0,-26,-15,-41,-68,-41v-17,0,-38,2,-46,3r-26,124r-25,0r51,-238r-82,0r5,-21r188,0r-4,21r-82,0","w":280},"\u0403":{"d":"65,-259r167,0r-5,21r-142,0r-51,238r-25,0xm158,-284r-21,0r60,-59r33,0","w":202,"k":{"\u0445":22,"\u0444":32,"\u0443":22,"\u0441":32,"\u0440":32,"\u043e":32,"\u043d":32,"\u043c":32,"\u043b":35,"\u043a":32,"\u0438":32,"\u0437":32,"\u0436":27,"\u0435":32,"\u0434":32,"\u0432":32,"\u0430":32,"\u0424":16,"\u0423":-11,"\u041b":13,"\u0414":19,"\u0410":38,"\u040e":-11,"\u045c":32}},"\u0453":{"d":"46,-186r115,0r-4,18r-93,0r-36,168r-22,0xm107,-207r-17,0r45,-45r26,0","w":145,"k":{"\u0443":-5,"\u043b":11,"\u0434":13}},"\u0409":{"d":"84,-259r149,0r-24,111v65,0,140,-8,141,57v0,31,-17,91,-104,91r-93,0r51,-238r-100,0v-16,74,-45,256,-99,243v-7,0,-12,-1,-19,-3r4,-20v5,1,12,2,17,2v31,7,64,-181,77,-243xm204,-127r-22,106r56,0v72,0,87,-34,87,-66v1,-48,-70,-39,-121,-40","w":370},"\u040a":{"d":"89,-259r-23,111r122,0r24,-111r25,0r-24,111v65,0,140,-7,141,57v0,31,-18,91,-105,91r-92,0r27,-127r-123,0r-27,127r-25,0r56,-259r24,0xm208,-127r-22,106r56,0v72,0,87,-34,87,-66v1,-48,-70,-39,-121,-40","w":374},"\u040c":{"d":"89,-259r-28,130r157,-130r32,0r-124,103r86,156r-29,0r-78,-141r-50,41r-21,100r-25,0r56,-259r24,0xm152,-283r-22,0r60,-60r33,0","w":238,"k":{"\u0447":27,"\u0444":11,"\u0443":19,"\u0441":11,"\u043e":11,"\u0435":11,"\u0424":19,"\u0421":11,"\u041e":11}},"\u040b":{"d":"143,-238r-20,92v8,-1,41,-2,52,-2v113,-2,79,79,64,148r-24,0r17,-87v10,-43,-73,-43,-114,-37r-26,124r-25,0r51,-238r-82,0r5,-21r188,0r-4,21r-82,0","w":280},"\u040f":{"d":"89,-259r-50,238r153,0r51,-238r25,0r-56,259r-89,0r-12,59r-25,0r13,-59r-90,0r56,-259r24,0","w":260},"\u0452":{"d":"61,-259r22,0r-6,27r61,0r-4,20r-61,0r-11,51v30,-36,122,-52,121,18v0,10,-1,21,-4,34v-24,116,-62,142,-123,148r4,-19v57,3,101,-59,101,-160v0,-21,-11,-32,-40,-32v-85,0,-73,103,-93,172r-22,0r45,-212r-24,0r4,-20r24,0","w":199},"\u0459":{"d":"60,-186r120,0r-17,78v49,-2,110,-4,110,42v0,35,-28,66,-75,66r-80,0r36,-168r-76,0v-21,58,-18,183,-95,167r4,-18v35,8,38,-11,51,-70xm159,-90r-15,72v49,3,105,0,105,-44v0,-36,-54,-27,-90,-28","w":296},"\u045a":{"d":"68,-186r-17,78r94,0r17,-78r21,0r-16,78v49,-2,109,-3,109,42v0,35,-28,66,-75,66r-79,0r19,-90r-93,0r-20,90r-21,0r39,-186r22,0xm163,-90r-15,72v49,3,104,-1,104,-44v0,-36,-53,-27,-89,-28","w":300},"\u045c":{"d":"68,-186r-19,88r110,-88r29,0r-84,67r53,119r-24,0r-48,-104r-42,33r-15,71r-22,0r40,-186r22,0xm123,-207r-17,0r46,-45r25,0","w":181,"k":{"\u0441":5,"\u043e":5,"\u0435":5}},"\u045b":{"d":"62,-259r21,0r-6,27r61,0r-4,20r-61,0r-11,51v36,-48,135,-42,118,39r-26,122r-22,0r29,-140v0,-22,-12,-32,-40,-32v-79,0,-74,106,-93,172r-22,0r45,-212r-24,0r4,-20r24,0","w":199},"\u045f":{"d":"67,-186r-36,168r104,0r36,-168r22,0r-40,186r-63,0r-10,49r-22,0r10,-49r-62,0r40,-186r21,0","w":198},"\u040e":{"d":"36,-259r25,0r37,187r119,-187r27,0r-146,226v-22,34,-40,44,-76,38r4,-20v27,6,44,-9,53,-28xm113,-334r14,0v1,44,67,34,76,0r13,0v-10,30,-33,45,-63,45v-29,0,-45,-18,-40,-45","w":208,"k":{"\u044f":16,"\u044e":19,"\u044d":22,"\u0449":19,"\u0448":19,"\u0447":14,"\u0446":19,"\u0445":8,"\u0444":19,"\u0442":5,"\u0441":22,"\u0440":19,"\u043f":19,"\u043e":22,"\u043d":19,"\u043c":19,"\u043b":22,"\u043a":19,"\u0439":19,"\u0438":19,"\u0437":13,"\u0435":22,"\u0434":27,"\u0433":19,"\u0432":19,"\u0431":8,"\u0430":22,"\u0424":8,"\u0422":-11,"\u041b":11,"\u0414":19,"\u0410":35,"\u0451":22,"\u0491":19}},"\u045e":{"d":"24,-186r24,0r26,160r94,-160r23,0r-109,183v-34,54,-43,84,-95,74r5,-20v37,6,34,-2,65,-50xm75,-251r14,0v1,44,67,34,77,0r13,0v-10,30,-33,45,-63,45v-29,0,-43,-16,-41,-45","w":176,"k":{"\u0442":-5,"\u0434":8}},"\u0408":{"d":"162,-259r24,0r-40,188v-10,50,-39,78,-89,78v-58,0,-59,-43,-50,-89r25,0v-7,32,-13,67,32,67v33,0,50,-21,58,-57","w":180},"\u0490":{"d":"65,-259r142,0r10,-47r25,0r-15,68r-142,0r-51,238r-25,0","w":202,"k":{"\u044f":27,"\u044e":32,"\u0444":32,"\u0443":22,"\u0440":32,"\u043e":32,"\u043d":32,"\u043c":32,"\u043b":35,"\u043a":32,"\u0438":32,"\u0437":32,"\u0435":32,"\u0434":32,"\u0432":32,"\u0430":32,"\u0424":16,"\u0423":-11,"\u041b":13,"\u0414":19,"\u0410":38,"\u045e":22,"\u040e":-11,"\u045c":32}},"\u0401":{"d":"65,-259r172,0r-4,21r-148,0r-19,90r133,0r-4,21r-134,0r-22,106r151,0r-5,21r-176,0xm136,-283r-22,0r7,-32r22,0xm193,-283r-22,0r7,-32r22,0","w":219},"\u0404":{"d":"260,-184r-25,0v0,-44,-25,-61,-69,-61v-58,0,-99,46,-110,97r111,0r-5,21r-111,0v-12,59,0,113,68,113v45,0,79,-30,97,-71r26,0v-22,50,-63,92,-132,92v-63,0,-88,-39,-88,-92v0,-58,29,-181,155,-181v53,0,83,27,83,82","w":259},"\u0407":{"d":"89,-259r-55,259r-25,0r56,-259r24,0xm62,-283r-21,0r7,-32r21,0xm123,-283r-21,0r7,-32r21,0","w":82},"\u0406":{"d":"89,-259r-55,259r-25,0r56,-259r24,0","w":82},"\u0456":{"d":"67,-186r-39,186r-22,0r40,-186r21,0xm76,-227r-22,0r7,-32r22,0","w":73},"\u0491":{"d":"46,-186r93,0r8,-35r21,0r-11,53r-94,0r-35,168r-22,0","w":145,"k":{"\u0443":-5,"\u043b":11,"\u0434":13,"\u045e":-5}},"\u0451":{"d":"43,-106r122,0v7,-36,-6,-66,-45,-66v-38,0,-65,31,-77,66xm184,-88r-145,0v-7,40,5,74,47,74v28,0,54,-16,66,-43r24,0v-18,35,-46,62,-94,62v-48,0,-68,-28,-68,-67v0,-66,46,-130,110,-130v55,0,74,49,60,104xm112,-215r-22,0r7,-32r22,0xm167,-215r-22,0r7,-32r22,0","w":202},"\u0454":{"d":"188,-128r-22,0v0,-27,-17,-44,-46,-44v-39,0,-66,33,-75,64r73,0r-4,18r-74,0v-9,39,3,76,46,76v32,0,56,-19,68,-50r23,0v-16,41,-48,69,-95,69v-48,0,-68,-27,-68,-67v0,-62,43,-130,110,-130v43,0,64,20,64,64"},"\u0458":{"d":"51,-186r22,0r-45,211v-5,38,-20,52,-61,47r4,-19v21,4,31,-5,35,-25xm82,-227r-22,0r7,-32r22,0","w":79},"\u0405":{"d":"12,-77r24,0v-6,42,21,63,61,63v51,0,78,-31,78,-64v0,-60,-133,-27,-133,-102v0,-43,37,-86,104,-86v57,0,80,31,71,77r-24,0v10,-36,-19,-56,-52,-56v-52,0,-75,34,-75,60v0,59,135,23,135,99v0,53,-44,93,-113,93v-55,1,-89,-31,-76,-84","w":225},"\u0455":{"d":"50,-134v0,40,102,22,102,74v0,42,-42,65,-89,65v-43,0,-61,-24,-58,-63r22,0v0,32,15,44,47,44v31,0,54,-19,54,-41v0,-16,-15,-24,-48,-30v-39,-7,-54,-21,-54,-41v0,-37,33,-66,78,-66v40,0,62,18,59,59r-22,0v2,-28,-14,-39,-42,-39v-27,0,-49,15,-49,38","w":177},"\u0457":{"d":"68,-186r-40,186r-22,0r40,-186r22,0xm49,-220r-22,0r7,-31r21,0xm100,-220r-21,0r7,-31r21,0","w":73},"\u0410":{"d":"139,-259r28,0r44,259r-25,0r-12,-81r-119,0r-48,81r-25,0xm148,-238r-80,136r102,0","w":234,"k":{"\u0447":22,"\u0444":8,"\u0443":19,"\u0442":19,"\u0441":8,"\u043e":8,"\u0435":8,"\u0427":32,"\u0424":13,"\u0423":19,"\u0422":27,"\u0421":11,"\u041e":11,"\u0451":8,"\u045e":19,"\u040e":19,"\u040b":27,"\u0402":27}},"\u0411":{"d":"65,-259r160,0r-4,21r-136,0r-19,90v65,0,139,-8,140,57v0,31,-17,91,-104,91r-93,0xm61,-127r-22,106r55,0v72,0,87,-34,87,-66v0,-49,-69,-39,-120,-40","w":227},"\u0412":{"d":"39,-21v77,0,154,11,154,-66v0,-49,-82,-35,-133,-37xm85,-238r-20,93r62,0v73,0,79,-43,79,-61v0,-39,-76,-32,-121,-32xm9,0r56,-259v64,1,166,-12,166,48v0,43,-30,70,-55,73v28,4,41,22,41,47v0,30,-16,91,-102,91r-106,0","w":238},"\u0413":{"d":"65,-259r167,0r-5,21r-142,0r-51,238r-25,0","w":202,"k":{"\u044f":27,"\u044e":32,"\u044d":32,"\u0443":22,"\u0441":32,"\u0440":32,"\u043e":32,"\u043d":32,"\u043c":32,"\u043b":35,"\u0438":32,"\u0437":32,"\u0436":27,"\u0435":32,"\u0434":32,"\u0432":32,"\u0430":32,"\u0424":16,"\u0423":-11,"\u0422":-8,"\u041b":13,"\u0414":19,"\u0410":38,"\u0451":32,"\u045e":22,"\u040e":-11,"\u045c":32}},"\u0414":{"d":"14,-21v42,-46,63,-150,81,-238r162,0r-50,238r19,0r-16,80r-25,0r13,-59r-183,0r-12,59r-25,0r17,-80r19,0xm229,-238r-114,0v-15,81,-34,170,-75,217r142,0","w":256},"\u0415":{"d":"65,-259r172,0r-4,21r-148,0r-19,90r133,0r-4,21r-134,0r-22,106r151,0r-5,21r-176,0","w":219},"\u0416":{"d":"52,-259r29,0r92,134r29,-134r24,0r-29,134r150,-134r29,0r-122,108r81,151r-28,0r-73,-134r-43,38r-20,96r-25,0r21,-96r-27,-38r-130,134r-28,0r145,-151","w":359,"k":{"\u0447":24,"\u0443":16,"\u0442":16,"\u0424":13,"\u041e":11,"\u045e":16}},"\u0417":{"d":"69,-188r-24,0v10,-46,47,-78,104,-78v100,0,98,101,22,129v25,8,38,29,38,52v0,32,-22,92,-115,92v-57,1,-90,-29,-79,-84r24,0v-6,43,16,63,61,63v60,0,84,-33,84,-68v0,-34,-32,-49,-75,-45r4,-21v56,6,88,-28,88,-60v0,-26,-25,-37,-57,-37v-34,0,-66,16,-75,57","w":229},"\u0418":{"d":"89,-259r-47,226r198,-226r27,0r-55,259r-24,0r47,-226r-197,226r-29,0r56,-259r24,0","w":261},"\u0419":{"d":"89,-259r-47,226r198,-226r28,0r-56,259r-24,0r47,-226r-197,226r-29,0r56,-259r24,0xm133,-334r14,0v1,43,67,35,76,0r14,0v-10,30,-34,45,-64,45v-29,0,-45,-18,-40,-45","w":261},"\u041a":{"d":"89,-259r-28,130r157,-130r32,0r-124,103r86,156r-29,0r-78,-141r-50,41r-21,100r-25,0r56,-259r24,0","w":238,"k":{"\u0447":27,"\u0444":11,"\u0443":19,"\u0442":16,"\u0441":16,"\u043e":16,"\u0435":16,"\u0424":19,"\u0421":11,"\u041e":11,"\u0451":16,"\u045e":19}},"\u041b":{"d":"84,-259r173,0r-55,259r-25,0r51,-238r-124,0v-16,74,-45,256,-99,243v-7,0,-12,-1,-19,-3r4,-20v5,1,12,2,17,2v31,7,64,-181,77,-243","w":249},"\u041c":{"d":"65,-259r37,0r37,228r132,-228r38,0r-56,259r-24,0r48,-231r-134,231r-23,0r-37,-231r-49,231r-25,0","w":302},"\u041d":{"d":"89,-259r-23,111r153,0r24,-111r24,0r-55,259r-25,0r28,-127r-154,0r-27,127r-25,0r56,-259r24,0","w":260},"\u041e":{"d":"175,-266v67,0,98,41,98,98v0,90,-62,175,-155,175v-66,0,-96,-42,-96,-98v0,-89,63,-175,153,-175xm171,-245v-84,0,-124,85,-124,151v0,45,22,80,76,80v80,0,125,-79,125,-151v0,-50,-28,-80,-77,-80","w":279,"k":{"\u0434":11,"\u0425":11,"\u0416":11,"\u0414":11,"\u0410":11}},"\u041f":{"d":"65,-259r202,0r-55,259r-25,0r51,-238r-153,0r-51,238r-25,0","w":260},"\u0420":{"d":"58,-114r-24,114r-25,0r56,-259r93,0v55,0,73,22,73,52v0,96,-83,96,-173,93xm85,-238r-22,103v72,1,143,6,143,-68v0,-45,-73,-33,-121,-35","w":227,"k":{"\u041b":19,"\u0414":22,"\u0410":32}},"\u0421":{"d":"260,-184r-25,0v0,-43,-25,-61,-69,-61v-75,0,-119,81,-119,155v0,42,18,76,72,76v45,0,79,-30,97,-71r26,0v-22,50,-63,92,-132,92v-63,0,-88,-39,-88,-92v0,-59,29,-181,155,-181v53,0,83,26,83,82","w":261},"\u0422":{"d":"143,-238r-51,238r-25,0r51,-238r-82,0r5,-21r188,0r-4,21r-82,0","k":{"\u044f":22,"\u044e":27,"\u044d":27,"\u044c":27,"\u044b":27,"\u0449":27,"\u0448":27,"\u0447":22,"\u0446":27,"\u0445":16,"\u0444":27,"\u0443":19,"\u0441":27,"\u0440":27,"\u043f":27,"\u043e":27,"\u043d":27,"\u043c":27,"\u043b":27,"\u043a":27,"\u0438":27,"\u0437":22,"\u0436":19,"\u0435":27,"\u0434":27,"\u0433":27,"\u0432":27,"\u0431":8,"\u0430":27,"\u0424":13,"\u0423":-11,"\u0422":-8,"\u041b":11,"\u0414":24,"\u0410":27,"\u0451":27,"\u0491":27,"\u045e":19,"\u040e":-11,"\u045c":27,"\u0453":27}},"\u0423":{"d":"36,-259r25,0r37,187r119,-187r27,0r-146,226v-22,34,-40,44,-76,38r4,-20v27,6,44,-9,53,-28","w":208,"k":{"\u044f":16,"\u044e":19,"\u044d":22,"\u0449":19,"\u0448":19,"\u0447":14,"\u0446":19,"\u0445":8,"\u0444":19,"\u0442":5,"\u0441":22,"\u0440":19,"\u043f":19,"\u043e":22,"\u043d":19,"\u043c":19,"\u043b":22,"\u043a":19,"\u0439":19,"\u0438":19,"\u0437":13,"\u0435":22,"\u0434":27,"\u0433":19,"\u0432":19,"\u0431":8,"\u0430":22,"\u0424":8,"\u0422":-11,"\u041b":11,"\u0414":19,"\u0410":35,"\u0451":22,"\u0491":19,"\u045c":19,"\u0453":19}},"\u0424":{"d":"175,-259r24,0r-5,22v63,-5,101,28,100,81v-2,78,-62,137,-145,130r-5,26r-25,0r6,-26v-62,5,-102,-26,-101,-79v2,-74,61,-139,146,-132xm129,-46r36,-170v-70,-6,-114,43,-116,107v-1,43,29,68,80,63xm190,-216r-36,170v71,6,114,-45,116,-108v1,-42,-29,-67,-80,-62","w":302,"k":{"\u0425":13,"\u0423":8,"\u0422":13,"\u0416":13,"\u0410":13,"\u040e":8}},"\u0425":{"d":"46,-259r28,0r48,109r94,-109r29,0r-112,126r60,133r-28,0r-51,-114r-100,114r-27,0r117,-133","w":219,"k":{"\u0443":13,"\u0424":13,"\u041e":11}},"\u0426":{"d":"89,-259r-50,238r153,0r51,-238r24,0r-51,238r20,0r-17,80r-25,0r13,-59r-198,0r56,-259r24,0","w":260},"\u0427":{"d":"63,-259r24,0r-17,84v-1,48,84,36,130,32r25,-116r24,0r-55,259r-24,0r25,-122v-67,8,-173,17,-146,-72","w":243},"\u0428":{"d":"89,-259r-50,238r108,0r50,-238r25,0r-51,238r108,0r51,-238r24,0r-55,259r-290,0r56,-259r24,0","w":347},"\u0429":{"d":"89,-259r-50,238r108,0r50,-238r25,0r-51,238r108,0r51,-238r24,0r-51,238r20,0r-17,80r-24,0r12,-59r-285,0r56,-259r24,0","w":347},"\u042a":{"d":"33,-259r78,0r-24,111v65,0,140,-8,141,57v0,31,-17,91,-104,91r-93,0r51,-238r-54,0xm83,-127r-23,106r56,0v72,0,87,-34,87,-66v0,-49,-69,-39,-120,-40","w":249},"\u042b":{"d":"89,-259r-23,111v65,0,139,-8,140,57v0,31,-17,91,-104,91r-93,0r56,-259r24,0xm61,-127r-22,106r55,0v72,0,87,-34,87,-66v0,-49,-69,-39,-120,-40xm316,-259r-56,259r-24,0r55,-259r25,0","w":309},"\u042c":{"d":"89,-259r-23,111v65,0,139,-8,140,57v0,31,-17,91,-104,91r-93,0r56,-259r24,0xm61,-127r-22,106r55,0v72,0,87,-34,87,-66v0,-49,-69,-39,-120,-40","w":227,"k":{"\u0422":22}},"\u042d":{"d":"40,-184v20,-54,65,-82,118,-82v57,0,97,26,97,91v0,68,-39,182,-147,182v-69,0,-92,-43,-92,-92r25,0v0,40,22,71,67,71v68,0,103,-54,116,-113r-111,0r5,-21r111,0v2,-55,-12,-96,-70,-97v-44,0,-75,17,-94,61r-25,0","w":260,"k":{"\u0434":11,"\u0414":11}},"\u042e":{"d":"66,-148r46,0v23,-67,73,-118,145,-118v67,0,97,41,97,98v0,90,-61,175,-154,175v-78,0,-108,-60,-92,-134r-47,0r-27,127r-25,0r56,-259r24,0xm205,-14v80,0,124,-78,124,-151v0,-50,-27,-80,-76,-80v-79,0,-124,80,-124,151v0,45,22,80,76,80","w":361,"k":{"\u0434":11,"\u0414":11}},"\u042f":{"d":"179,-114r-65,0r-96,114r-30,0r100,-117v-29,-5,-51,-19,-51,-51v0,-28,16,-91,104,-91r93,0r-55,259r-25,0xm183,-135r22,-103r-57,0v-77,0,-86,35,-86,66v0,46,72,36,121,37","w":227},"\u0430":{"d":"150,-98v-10,5,-31,10,-58,11v-40,2,-62,21,-62,46v0,18,16,27,34,27v46,2,84,-32,86,-84xm56,-130r-22,0v13,-44,48,-62,89,-62v39,0,64,19,56,58r-23,112v1,12,11,8,21,4r-4,17v-21,9,-44,5,-39,-25v-21,20,-48,31,-75,31v-29,0,-53,-13,-53,-41v0,-31,21,-62,79,-69v31,-4,73,-3,73,-39v0,-17,-11,-28,-39,-28v-30,0,-52,10,-63,42","k":{"\u0447":5,"\u0442":5}},"\u0431":{"d":"129,-225v-36,6,-62,26,-76,69v17,-22,39,-36,71,-36v46,0,68,30,68,70v0,72,-51,127,-111,127v-60,0,-76,-52,-63,-108v15,-62,36,-127,105,-140v44,-8,61,-12,63,-23r22,0v-5,25,-37,34,-79,41xm85,-14v55,0,83,-59,83,-107v0,-30,-13,-51,-49,-51v-54,0,-83,52,-83,101v0,32,16,57,49,57","w":209},"\u0432":{"d":"46,-88r-14,70v50,2,110,3,108,-43v-2,-38,-57,-25,-94,-27xm63,-168r-13,62v47,-1,99,9,101,-39v2,-32,-56,-21,-88,-23xm6,0r40,-186v48,2,129,-13,128,34v0,26,-19,46,-40,53v59,23,17,99,-38,99r-90,0","w":187},"\u0433":{"d":"46,-186r115,0r-4,18r-94,0r-35,168r-22,0","w":145,"k":{"\u0443":-5,"\u0442":-5,"\u043b":11,"\u0434":13,"\u045e":-5}},"\u0434":{"d":"12,-18v40,-56,42,-104,59,-168r123,0r-36,168r19,0r-14,67r-22,0r10,-49r-138,0r-10,49r-21,0r14,-67r16,0xm168,-168r-80,0v-14,58,-18,102,-53,150r101,0","w":199,"k":{"\u0447":16}},"\u0435":{"d":"43,-106r122,0v7,-36,-6,-66,-45,-66v-38,0,-65,31,-77,66xm184,-88r-145,0v-7,40,5,74,47,74v28,0,54,-16,66,-43r24,0v-18,35,-46,62,-94,62v-48,0,-68,-28,-68,-67v0,-66,46,-130,110,-130v55,0,74,49,60,104","w":202},"\u0436":{"d":"30,-186r28,0r64,92r19,-92r22,0r-20,92r103,-92r28,0r-82,73r50,113r-24,0r-45,-98r-35,30r-15,68r-21,0r14,-68r-22,-30r-87,98r-25,0r99,-113","w":264,"k":{"\u043e":8}},"\u0437":{"d":"76,-90r4,-18v35,4,67,-7,67,-40v0,-15,-13,-24,-42,-24v-28,0,-44,12,-56,39r-21,0v10,-35,45,-59,81,-59v86,0,66,84,15,92v19,5,32,19,32,40v0,41,-37,65,-87,65v-46,0,-69,-23,-63,-63r21,0v-5,27,15,41,47,44v62,6,82,-75,21,-76r-19,0","w":181},"\u0438":{"d":"67,-186r-33,157r140,-157r24,0r-40,186r-22,0r34,-158r-140,158r-24,0r40,-186r21,0","w":203},"\u0439":{"d":"68,-186r-34,157r140,-157r24,0r-40,186r-21,0r33,-158r-139,158r-25,0r40,-186r22,0xm84,-251r14,0v1,43,67,35,76,0r14,0v-10,30,-34,45,-64,45v-29,0,-45,-18,-40,-45","w":203},"\u043a":{"d":"67,-186r-18,88r110,-88r29,0r-84,67r53,119r-24,0r-48,-104r-42,33r-15,71r-22,0r40,-186r21,0","w":181,"k":{"\u0441":5,"\u043e":5,"\u0435":5,"\u0451":5}},"\u043b":{"d":"60,-186r129,0r-40,186r-21,0r36,-168r-86,0v-21,58,-18,183,-95,167r4,-18v36,10,39,-18,51,-70","w":199},"\u043c":{"d":"46,-186r28,0r28,162r97,-162r29,0r-40,186r-22,0r32,-153r-91,153r-20,0r-27,-153r-32,153r-22,0","w":233},"\u043d":{"d":"68,-186r-16,78r104,0r16,-78r22,0r-40,186r-22,0r20,-90r-104,0r-19,90r-22,0r40,-186r21,0"},"\u043e":{"d":"125,-192v48,0,68,30,68,70v0,51,-34,127,-110,127v-40,0,-69,-23,-69,-69v0,-63,42,-128,111,-128xm121,-172v-54,0,-84,56,-84,104v0,32,17,54,50,54v55,0,83,-59,83,-107v0,-30,-13,-51,-49,-51","w":207,"k":{"\u0445":8,"\u0436":8}},"\u043f":{"d":"46,-186r147,0r-40,186r-22,0r36,-168r-104,0r-35,168r-22,0","w":198},"\u0440":{"d":"127,-172v-40,0,-82,42,-82,103v0,31,16,55,49,55v47,0,83,-51,83,-104v0,-31,-15,-54,-50,-54xm34,-30r-22,103r-21,0r55,-259r21,0v-1,10,-7,24,-6,32v35,-56,140,-50,140,28v0,63,-40,131,-108,131v-26,0,-50,-12,-59,-35","w":214},"\u0441":{"d":"188,-128r-22,0v0,-26,-17,-44,-46,-44v-56,0,-83,64,-83,104v0,30,14,54,49,54v32,0,56,-19,68,-50r23,0v-16,41,-48,69,-95,69v-48,0,-68,-27,-68,-67v0,-62,43,-130,110,-130v43,0,64,20,64,64"},"\u0442":{"d":"25,-186r147,0r-4,18r-63,0r-36,168r-21,0r36,-168r-63,0","w":156,"k":{"\u0443":-5,"\u0442":-5,"\u043b":11,"\u0434":16,"\u045e":-5}},"\u0443":{"d":"24,-186r24,0r26,160r94,-160r23,0r-109,183v-34,54,-43,84,-95,74r5,-20v37,6,34,-2,65,-50","w":176,"k":{"\u0442":-5,"\u0434":8}},"\u0444":{"d":"76,-14v45,0,72,-60,72,-106v0,-30,-12,-52,-39,-52v-47,0,-73,65,-73,108v0,28,12,50,40,50xm182,-266r21,0r-22,108v14,-18,37,-34,63,-34v39,0,55,29,55,66v0,64,-37,131,-97,131v-24,0,-41,-10,-49,-32r-22,100r-21,0r21,-101v-33,51,-118,42,-118,-31v0,-62,37,-133,97,-133v26,0,43,15,49,33xm203,-14v45,0,72,-59,72,-106v0,-28,-10,-52,-38,-52v-42,0,-73,57,-73,106v0,28,11,52,39,52","w":313},"\u0445":{"d":"32,-186r27,0r35,74r69,-74r27,0r-86,90r49,96r-26,0r-39,-81r-75,81r-26,0r92,-96","w":180,"k":{"\u043e":8,"\u0435":8,"\u0451":8}},"\u0446":{"d":"67,-186r-36,168r104,0r36,-168r21,0r-35,168r18,0r-14,67r-22,0r11,-49r-144,0r39,-186r22,0","w":201},"\u0447":{"d":"40,-186r21,0v-5,33,-31,86,23,85v37,0,45,-2,55,-6r17,-79r21,0r-39,186r-22,0r19,-88v-45,14,-119,13,-106,-50","w":183},"\u0448":{"d":"67,-186r-35,168r94,0r36,-168r21,0r-35,168r94,0r36,-168r21,0r-39,186r-254,0r40,-186r21,0","w":305},"\u0449":{"d":"67,-186r-36,168r95,0r36,-168r21,0r-36,168r95,0r36,-168r21,0r-36,168r19,0r-15,67r-21,0r10,-49r-250,0r40,-186r21,0","w":308},"\u044a":{"d":"16,-186r61,0r-17,78v49,-2,110,-4,110,42v0,35,-28,66,-75,66r-79,0r35,-168r-39,0xm57,-90r-16,72v49,3,105,0,105,-44v0,-36,-53,-27,-89,-28","w":194},"\u044b":{"d":"67,-186r-16,78v49,-2,109,-3,109,42v0,35,-28,66,-75,66r-79,0r40,-186r21,0xm47,-90r-15,72v49,3,104,-1,104,-44v0,-36,-53,-27,-89,-28xm246,-186r-39,186r-22,0r40,-186r21,0","w":252},"\u044c":{"d":"67,-186r-16,78v49,-2,109,-3,109,42v0,35,-28,66,-75,66r-79,0r40,-186r21,0xm47,-90r-15,72v49,3,104,-1,104,-44v0,-36,-53,-27,-89,-28","w":184,"k":{"\u0442":22}},"\u044d":{"d":"27,-128v15,-38,48,-64,91,-64v46,0,67,33,67,73v0,57,-37,124,-109,124v-47,0,-66,-27,-66,-69r23,0v0,32,15,50,47,50v43,0,71,-38,79,-76r-74,0r4,-18r73,0v2,-36,-9,-63,-48,-64v-29,0,-51,16,-65,44r-22,0","w":199},"\u044e":{"d":"193,-192v48,0,69,30,69,70v0,62,-42,127,-111,127v-48,0,-80,-40,-66,-95r-38,0r-19,90r-22,0r40,-186r21,0r-16,78r39,0v15,-47,50,-84,103,-84xm189,-172v-57,0,-83,63,-83,104v0,32,16,54,49,54v57,0,84,-63,84,-107v0,-30,-14,-51,-50,-51","w":275},"\u044f":{"d":"134,-80r-52,0r-61,80r-25,0r65,-81v-25,-6,-37,-21,-37,-40v0,-23,16,-65,78,-65r76,0r-39,186r-22,0xm138,-98r15,-70v-49,-2,-105,-2,-105,43v0,35,54,26,90,27","w":184}}}); /* End */ ; ; /* Start:/bitrix/templates/index/js/jquery.cycle.all.js*/ /*! * jQuery Cycle Plugin (with Transition Definitions) * Examples and documentation at: http://jquery.malsup.com/cycle/ * Copyright (c) 2007-2010 M. Alsup * Version: 2.94 (20-DEC-2010) * Dual licensed under the MIT and GPL licenses. * http://jquery.malsup.com/license.html * Requires: jQuery v1.2.6 or later */ ;(function($) { var ver = '2.94'; // if $.support is not defined (pre jQuery 1.3) add what I need if ($.support == undefined) { $.support = { opacity: !($.browser.msie) }; } function debug(s) { if ($.fn.cycle.debug) log(s); } function log() { if (window.console && window.console.log) window.console.log('[cycle] ' + Array.prototype.join.call(arguments,' ')); }; // the options arg can be... // a number - indicates an immediate transition should occur to the given slide index // a string - 'pause', 'resume', 'toggle', 'next', 'prev', 'stop', 'destroy' or the name of a transition effect (ie, 'fade', 'zoom', etc) // an object - properties to control the slideshow // // the arg2 arg can be... // the name of an fx (only used in conjunction with a numeric value for 'options') // the value true (only used in first arg == 'resume') and indicates // that the resume should occur immediately (not wait for next timeout) $.fn.cycle = function(options, arg2) { var o = { s: this.selector, c: this.context }; // in 1.3+ we can fix mistakes with the ready state if (this.length === 0 && options != 'stop') { if (!$.isReady && o.s) { log('DOM not ready, queuing slideshow'); $(function() { $(o.s,o.c).cycle(options,arg2); }); return this; } // is your DOM ready? http://docs.jquery.com/Tutorials:Introducing_$(document).ready() log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)')); return this; } // iterate the matched nodeset return this.each(function() { var opts = handleArguments(this, options, arg2); if (opts === false) return; opts.updateActivePagerLink = opts.updateActivePagerLink || $.fn.cycle.updateActivePagerLink; // stop existing slideshow for this container (if there is one) if (this.cycleTimeout) clearTimeout(this.cycleTimeout); this.cycleTimeout = this.cyclePause = 0; var $cont = $(this); var $slides = opts.slideExpr ? $(opts.slideExpr, this) : $cont.children(); var els = $slides.get(); if (els.length < 2) { log('terminating; too few slides: ' + els.length); return; } var opts2 = buildOptions($cont, $slides, els, opts, o); if (opts2 === false) return; var startTime = opts2.continuous ? 10 : getTimeout(els[opts2.currSlide], els[opts2.nextSlide], opts2, !opts2.backwards); // if it's an auto slideshow, kick it off if (startTime) { startTime += (opts2.delay || 0); if (startTime < 10) startTime = 10; debug('first timeout: ' + startTime); this.cycleTimeout = setTimeout(function(){go(els,opts2,0,!opts.backwards)}, startTime); } }); }; // process the args that were passed to the plugin fn function handleArguments(cont, options, arg2) { if (cont.cycleStop == undefined) cont.cycleStop = 0; if (options === undefined || options === null) options = {}; if (options.constructor == String) { switch(options) { case 'destroy': case 'stop': var opts = $(cont).data('cycle.opts'); if (!opts) return false; cont.cycleStop++; // callbacks look for change if (cont.cycleTimeout) clearTimeout(cont.cycleTimeout); cont.cycleTimeout = 0; $(cont).removeData('cycle.opts'); if (options == 'destroy') destroy(opts); return false; case 'toggle': cont.cyclePause = (cont.cyclePause === 1) ? 0 : 1; checkInstantResume(cont.cyclePause, arg2, cont); return false; case 'pause': cont.cyclePause = 1; return false; case 'resume': cont.cyclePause = 0; checkInstantResume(false, arg2, cont); return false; case 'prev': case 'next': var opts = $(cont).data('cycle.opts'); if (!opts) { log('options not found, "prev/next" ignored'); return false; } $.fn.cycle[options](opts); return false; default: options = { fx: options }; }; return options; } else if (options.constructor == Number) { // go to the requested slide var num = options; options = $(cont).data('cycle.opts'); if (!options) { log('options not found, can not advance slide'); return false; } if (num < 0 || num >= options.elements.length) { log('invalid slide index: ' + num); return false; } options.nextSlide = num; if (cont.cycleTimeout) { clearTimeout(cont.cycleTimeout); cont.cycleTimeout = 0; } if (typeof arg2 == 'string') options.oneTimeFx = arg2; go(options.elements, options, 1, num >= options.currSlide); return false; } return options; function checkInstantResume(isPaused, arg2, cont) { if (!isPaused && arg2 === true) { // resume now! var options = $(cont).data('cycle.opts'); if (!options) { log('options not found, can not resume'); return false; } if (cont.cycleTimeout) { clearTimeout(cont.cycleTimeout); cont.cycleTimeout = 0; } go(options.elements, options, 1, !options.backwards); } } }; function removeFilter(el, opts) { if (!$.support.opacity && opts.cleartype && el.style.filter) { try { el.style.removeAttribute('filter'); } catch(smother) {} // handle old opera versions } }; // unbind event handlers function destroy(opts) { if (opts.next) $(opts.next).unbind(opts.prevNextEvent); if (opts.prev) $(opts.prev).unbind(opts.prevNextEvent); if (opts.pager || opts.pagerAnchorBuilder) $.each(opts.pagerAnchors || [], function() { this.unbind().remove(); }); opts.pagerAnchors = null; if (opts.destroy) // callback opts.destroy(opts); }; // one-time initialization function buildOptions($cont, $slides, els, options, o) { // support metadata plugin (v1.0 and v2.0) var opts = $.extend({}, $.fn.cycle.defaults, options || {}, $.metadata ? $cont.metadata() : $.meta ? $cont.data() : {}); if (opts.autostop) opts.countdown = opts.autostopCount || els.length; var cont = $cont[0]; $cont.data('cycle.opts', opts); opts.$cont = $cont; opts.stopCount = cont.cycleStop; opts.elements = els; opts.before = opts.before ? [opts.before] : []; opts.after = opts.after ? [opts.after] : []; opts.after.unshift(function(){ opts.busy=0; }); // push some after callbacks if (!$.support.opacity && opts.cleartype) opts.after.push(function() { removeFilter(this, opts); }); if (opts.continuous) opts.after.push(function() { go(els,opts,0,!opts.backwards); }); saveOriginalOpts(opts); // clearType corrections if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg) clearTypeFix($slides); // container requires non-static position so that slides can be position within if ($cont.css('position') == 'static') $cont.css('position', 'relative'); if (opts.width) $cont.width(opts.width); if (opts.height && opts.height != 'auto') $cont.height(opts.height); if (opts.startingSlide) opts.startingSlide = parseInt(opts.startingSlide); else if (opts.backwards) opts.startingSlide = els.length - 1; // if random, mix up the slide array if (opts.random) { opts.randomMap = []; for (var i = 0; i < els.length; i++) opts.randomMap.push(i); opts.randomMap.sort(function(a,b) {return Math.random() - 0.5;}); opts.randomIndex = 1; opts.startingSlide = opts.randomMap[1]; } else if (opts.startingSlide >= els.length) opts.startingSlide = 0; // catch bogus input opts.currSlide = opts.startingSlide || 0; var first = opts.startingSlide; // set position and zIndex on all the slides $slides.css({position: 'absolute', top:0, left:0}).hide().each(function(i) { var z; if (opts.backwards) z = first ? i <= first ? els.length + (i-first) : first-i : els.length-i; else z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i; $(this).css('z-index', z) }); // make sure first slide is visible $(els[first]).css('opacity',1).show(); // opacity bit needed to handle restart use case removeFilter(els[first], opts); // stretch slides if (opts.fit && opts.width) $slides.width(opts.width); if (opts.fit && opts.height && opts.height != 'auto') $slides.height(opts.height); // stretch container var reshape = opts.containerResize && !$cont.innerHeight(); if (reshape) { // do this only if container has no size http://tinyurl.com/da2oa9 var maxw = 0, maxh = 0; for(var j=0; j < els.length; j++) { var $e = $(els[j]), e = $e[0], w = $e.outerWidth(), h = $e.outerHeight(); if (!w) w = e.offsetWidth || e.width || $e.attr('width') if (!h) h = e.offsetHeight || e.height || $e.attr('height'); maxw = w > maxw ? w : maxw; maxh = h > maxh ? h : maxh; } if (maxw > 0 && maxh > 0) $cont.css({width:maxw+'px',height:maxh+'px'}); } if (opts.pause) $cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;}); if (supportMultiTransitions(opts) === false) return false; // apparently a lot of people use image slideshows without height/width attributes on the images. // Cycle 2.50+ requires the sizing info for every slide; this block tries to deal with that. var requeue = false; options.requeueAttempts = options.requeueAttempts || 0; $slides.each(function() { // try to get height/width of each slide var $el = $(this); this.cycleH = (opts.fit && opts.height) ? opts.height : ($el.height() || this.offsetHeight || this.height || $el.attr('height') || 0); this.cycleW = (opts.fit && opts.width) ? opts.width : ($el.width() || this.offsetWidth || this.width || $el.attr('width') || 0); if ( $el.is('img') ) { // sigh.. sniffing, hacking, shrugging... this crappy hack tries to account for what browsers do when // an image is being downloaded and the markup did not include sizing info (height/width attributes); // there seems to be some "default" sizes used in this situation var loadingIE = ($.browser.msie && this.cycleW == 28 && this.cycleH == 30 && !this.complete); var loadingFF = ($.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete); var loadingOp = ($.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete); var loadingOther = (this.cycleH == 0 && this.cycleW == 0 && !this.complete); // don't requeue for images that are still loading but have a valid size if (loadingIE || loadingFF || loadingOp || loadingOther) { if (o.s && opts.requeueOnImageNotLoaded && ++options.requeueAttempts < 100) { // track retry count so we don't loop forever log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ', this.src, this.cycleW, this.cycleH); setTimeout(function() {$(o.s,o.c).cycle(options)}, opts.requeueTimeout); requeue = true; return false; // break each loop } else { log('could not determine size of image: '+this.src, this.cycleW, this.cycleH); } } } return true; }); if (requeue) return false; opts.cssBefore = opts.cssBefore || {}; opts.animIn = opts.animIn || {}; opts.animOut = opts.animOut || {}; $slides.not(':eq('+first+')').css(opts.cssBefore); if (opts.cssFirst) $($slides[first]).css(opts.cssFirst); if (opts.timeout) { opts.timeout = parseInt(opts.timeout); // ensure that timeout and speed settings are sane if (opts.speed.constructor == String) opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed); if (!opts.sync) opts.speed = opts.speed / 2; var buffer = opts.fx == 'shuffle' ? 500 : 250; while((opts.timeout - opts.speed) < buffer) // sanitize timeout opts.timeout += opts.speed; } if (opts.easing) opts.easeIn = opts.easeOut = opts.easing; if (!opts.speedIn) opts.speedIn = opts.speed; if (!opts.speedOut) opts.speedOut = opts.speed; opts.slideCount = els.length; opts.currSlide = opts.lastSlide = first; if (opts.random) { if (++opts.randomIndex == els.length) opts.randomIndex = 0; opts.nextSlide = opts.randomMap[opts.randomIndex]; } else if (opts.backwards) opts.nextSlide = opts.startingSlide == 0 ? (els.length-1) : opts.startingSlide-1; else opts.nextSlide = opts.startingSlide >= (els.length-1) ? 0 : opts.startingSlide+1; // run transition init fn if (!opts.multiFx) { var init = $.fn.cycle.transitions[opts.fx]; if ($.isFunction(init)) init($cont, $slides, opts); else if (opts.fx != 'custom' && !opts.multiFx) { log('unknown transition: ' + opts.fx,'; slideshow terminating'); return false; } } // fire artificial events var e0 = $slides[first]; if (opts.before.length) opts.before[0].apply(e0, [e0, e0, opts, true]); if (opts.after.length > 1) opts.after[1].apply(e0, [e0, e0, opts, true]); if (opts.next) $(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1)}); if (opts.prev) $(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0)}); if (opts.pager || opts.pagerAnchorBuilder) buildPager(els,opts); exposeAddSlide(opts, els); return opts; }; // save off original opts so we can restore after clearing state function saveOriginalOpts(opts) { opts.original = { before: [], after: [] }; opts.original.cssBefore = $.extend({}, opts.cssBefore); opts.original.cssAfter = $.extend({}, opts.cssAfter); opts.original.animIn = $.extend({}, opts.animIn); opts.original.animOut = $.extend({}, opts.animOut); $.each(opts.before, function() { opts.original.before.push(this); }); $.each(opts.after, function() { opts.original.after.push(this); }); }; function supportMultiTransitions(opts) { var i, tx, txs = $.fn.cycle.transitions; // look for multiple effects if (opts.fx.indexOf(',') > 0) { opts.multiFx = true; opts.fxs = opts.fx.replace(/\s*/g,'').split(','); // discard any bogus effect names for (i=0; i < opts.fxs.length; i++) { var fx = opts.fxs[i]; tx = txs[fx]; if (!tx || !txs.hasOwnProperty(fx) || !$.isFunction(tx)) { log('discarding unknown transition: ',fx); opts.fxs.splice(i,1); i--; } } // if we have an empty list then we threw everything away! if (!opts.fxs.length) { log('No valid transitions named; slideshow terminating.'); return false; } } else if (opts.fx == 'all') { // auto-gen the list of transitions opts.multiFx = true; opts.fxs = []; for (p in txs) { tx = txs[p]; if (txs.hasOwnProperty(p) && $.isFunction(tx)) opts.fxs.push(p); } } if (opts.multiFx && opts.randomizeEffects) { // munge the fxs array to make effect selection random var r1 = Math.floor(Math.random() * 20) + 30; for (i = 0; i < r1; i++) { var r2 = Math.floor(Math.random() * opts.fxs.length); opts.fxs.push(opts.fxs.splice(r2,1)[0]); } debug('randomized fx sequence: ',opts.fxs); } return true; }; // provide a mechanism for adding slides after the slideshow has started function exposeAddSlide(opts, els) { opts.addSlide = function(newSlide, prepend) { var $s = $(newSlide), s = $s[0]; if (!opts.autostopCount) opts.countdown++; els[prepend?'unshift':'push'](s); if (opts.els) opts.els[prepend?'unshift':'push'](s); // shuffle needs this opts.slideCount = els.length; $s.css('position','absolute'); $s[prepend?'prependTo':'appendTo'](opts.$cont); if (prepend) { opts.currSlide++; opts.nextSlide++; } if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg) clearTypeFix($s); if (opts.fit && opts.width) $s.width(opts.width); if (opts.fit && opts.height && opts.height != 'auto') $s.height(opts.height); s.cycleH = (opts.fit && opts.height) ? opts.height : $s.height(); s.cycleW = (opts.fit && opts.width) ? opts.width : $s.width(); $s.css(opts.cssBefore); if (opts.pager || opts.pagerAnchorBuilder) $.fn.cycle.createPagerAnchor(els.length-1, s, $(opts.pager), els, opts); if ($.isFunction(opts.onAddSlide)) opts.onAddSlide($s); else $s.hide(); // default behavior }; } // reset internal state; we do this on every pass in order to support multiple effects $.fn.cycle.resetState = function(opts, fx) { fx = fx || opts.fx; opts.before = []; opts.after = []; opts.cssBefore = $.extend({}, opts.original.cssBefore); opts.cssAfter = $.extend({}, opts.original.cssAfter); opts.animIn = $.extend({}, opts.original.animIn); opts.animOut = $.extend({}, opts.original.animOut); opts.fxFn = null; $.each(opts.original.before, function() { opts.before.push(this); }); $.each(opts.original.after, function() { opts.after.push(this); }); // re-init var init = $.fn.cycle.transitions[fx]; if ($.isFunction(init)) init(opts.$cont, $(opts.elements), opts); }; // this is the main engine fn, it handles the timeouts, callbacks and slide index mgmt function go(els, opts, manual, fwd) { // opts.busy is true if we're in the middle of an animation if (manual && opts.busy && opts.manualTrump) { // let manual transitions requests trump active ones debug('manualTrump in go(), stopping active transition'); $(els).stop(true,true); opts.busy = false; } // don't begin another timeout-based transition if there is one active if (opts.busy) { debug('transition active, ignoring new tx request'); return; } var p = opts.$cont[0], curr = els[opts.currSlide], next = els[opts.nextSlide]; // stop cycling if we have an outstanding stop request if (p.cycleStop != opts.stopCount || p.cycleTimeout === 0 && !manual) return; // check to see if we should stop cycling based on autostop options if (!manual && !p.cyclePause && !opts.bounce && ((opts.autostop && (--opts.countdown <= 0)) || (opts.nowrap && !opts.random && opts.nextSlide < opts.currSlide))) { if (opts.end) opts.end(opts); return; } // if slideshow is paused, only transition on a manual trigger var changed = false; if ((manual || !p.cyclePause) && (opts.nextSlide != opts.currSlide)) { changed = true; var fx = opts.fx; // keep trying to get the slide size if we don't have it yet curr.cycleH = curr.cycleH || $(curr).height(); curr.cycleW = curr.cycleW || $(curr).width(); next.cycleH = next.cycleH || $(next).height(); next.cycleW = next.cycleW || $(next).width(); // support multiple transition types if (opts.multiFx) { if (opts.lastFx == undefined || ++opts.lastFx >= opts.fxs.length) opts.lastFx = 0; fx = opts.fxs[opts.lastFx]; opts.currFx = fx; } // one-time fx overrides apply to: $('div').cycle(3,'zoom'); if (opts.oneTimeFx) { fx = opts.oneTimeFx; opts.oneTimeFx = null; } $.fn.cycle.resetState(opts, fx); // run the before callbacks if (opts.before.length) $.each(opts.before, function(i,o) { if (p.cycleStop != opts.stopCount) return; o.apply(next, [curr, next, opts, fwd]); }); // stage the after callacks var after = function() { $.each(opts.after, function(i,o) { if (p.cycleStop != opts.stopCount) return; o.apply(next, [curr, next, opts, fwd]); }); }; debug('tx firing; currSlide: ' + opts.currSlide + '; nextSlide: ' + opts.nextSlide); // get ready to perform the transition opts.busy = 1; if (opts.fxFn) // fx function provided? opts.fxFn(curr, next, opts, after, fwd, manual && opts.fastOnEvent); else if ($.isFunction($.fn.cycle[opts.fx])) // fx plugin ? $.fn.cycle[opts.fx](curr, next, opts, after, fwd, manual && opts.fastOnEvent); else $.fn.cycle.custom(curr, next, opts, after, fwd, manual && opts.fastOnEvent); } if (changed || opts.nextSlide == opts.currSlide) { // calculate the next slide opts.lastSlide = opts.currSlide; if (opts.random) { opts.currSlide = opts.nextSlide; if (++opts.randomIndex == els.length) opts.randomIndex = 0; opts.nextSlide = opts.randomMap[opts.randomIndex]; if (opts.nextSlide == opts.currSlide) opts.nextSlide = (opts.currSlide == opts.slideCount - 1) ? 0 : opts.currSlide + 1; } else if (opts.backwards) { var roll = (opts.nextSlide - 1) < 0; if (roll && opts.bounce) { opts.backwards = !opts.backwards; opts.nextSlide = 1; opts.currSlide = 0; } else { opts.nextSlide = roll ? (els.length-1) : opts.nextSlide-1; opts.currSlide = roll ? 0 : opts.nextSlide+1; } } else { // sequence var roll = (opts.nextSlide + 1) == els.length; if (roll && opts.bounce) { opts.backwards = !opts.backwards; opts.nextSlide = els.length-2; opts.currSlide = els.length-1; } else { opts.nextSlide = roll ? 0 : opts.nextSlide+1; opts.currSlide = roll ? els.length-1 : opts.nextSlide-1; } } } if (changed && opts.pager) opts.updateActivePagerLink(opts.pager, opts.currSlide, opts.activePagerClass); // stage the next transition var ms = 0; if (opts.timeout && !opts.continuous) ms = getTimeout(els[opts.currSlide], els[opts.nextSlide], opts, fwd); else if (opts.continuous && p.cyclePause) // continuous shows work off an after callback, not this timer logic ms = 10; if (ms > 0) p.cycleTimeout = setTimeout(function(){ go(els, opts, 0, !opts.backwards) }, ms); }; // invoked after transition $.fn.cycle.updateActivePagerLink = function(pager, currSlide, clsName) { $(pager).each(function() { $(this).children().removeClass(clsName).eq(currSlide).addClass(clsName); }); }; // calculate timeout value for current transition function getTimeout(curr, next, opts, fwd) { if (opts.timeoutFn) { // call user provided calc fn var t = opts.timeoutFn.call(curr,curr,next,opts,fwd); while ((t - opts.speed) < 250) // sanitize timeout t += opts.speed; debug('calculated timeout: ' + t + '; speed: ' + opts.speed); if (t !== false) return t; } return opts.timeout; }; // expose next/prev function, caller must pass in state $.fn.cycle.next = function(opts) { advance(opts,1); }; $.fn.cycle.prev = function(opts) { advance(opts,0);}; // advance slide forward or back function advance(opts, moveForward) { var val = moveForward ? 1 : -1; var els = opts.elements; var p = opts.$cont[0], timeout = p.cycleTimeout; if (timeout) { clearTimeout(timeout); p.cycleTimeout = 0; } if (opts.random && val < 0) { // move back to the previously display slide opts.randomIndex--; if (--opts.randomIndex == -2) opts.randomIndex = els.length-2; else if (opts.randomIndex == -1) opts.randomIndex = els.length-1; opts.nextSlide = opts.randomMap[opts.randomIndex]; } else if (opts.random) { opts.nextSlide = opts.randomMap[opts.randomIndex]; } else { opts.nextSlide = opts.currSlide + val; if (opts.nextSlide < 0) { if (opts.nowrap) return false; opts.nextSlide = els.length - 1; } else if (opts.nextSlide >= els.length) { if (opts.nowrap) return false; opts.nextSlide = 0; } } var cb = opts.onPrevNextEvent || opts.prevNextClick; // prevNextClick is deprecated if ($.isFunction(cb)) cb(val > 0, opts.nextSlide, els[opts.nextSlide]); go(els, opts, 1, moveForward); return false; }; function buildPager(els, opts) { var $p = $(opts.pager); $.each(els, function(i,o) { $.fn.cycle.createPagerAnchor(i,o,$p,els,opts); }); opts.updateActivePagerLink(opts.pager, opts.startingSlide, opts.activePagerClass); }; $.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) { var a; if ($.isFunction(opts.pagerAnchorBuilder)) { a = opts.pagerAnchorBuilder(i,el); debug('pagerAnchorBuilder('+i+', el) returned: ' + a); } else a = ''+(i+1)+''; if (!a) return; var $a = $(a); // don't reparent if anchor is in the dom if ($a.parents('body').length === 0) { var arr = []; if ($p.length > 1) { $p.each(function() { var $clone = $a.clone(true); $(this).append($clone); arr.push($clone[0]); }); $a = $(arr); } else { $a.appendTo($p); } } opts.pagerAnchors = opts.pagerAnchors || []; opts.pagerAnchors.push($a); $a.bind(opts.pagerEvent, function(e) { e.preventDefault(); opts.nextSlide = i; var p = opts.$cont[0], timeout = p.cycleTimeout; if (timeout) { clearTimeout(timeout); p.cycleTimeout = 0; } var cb = opts.onPagerEvent || opts.pagerClick; // pagerClick is deprecated if ($.isFunction(cb)) cb(opts.nextSlide, els[opts.nextSlide]); go(els,opts,1,opts.currSlide < i); // trigger the trans // return false; // <== allow bubble }); if ( ! /^click/.test(opts.pagerEvent) && !opts.allowPagerClickBubble) $a.bind('click.cycle', function(){return false;}); // suppress click if (opts.pauseOnPagerHover) $a.hover(function() { opts.$cont[0].cyclePause++; }, function() { opts.$cont[0].cyclePause--; } ); }; // helper fn to calculate the number of slides between the current and the next $.fn.cycle.hopsFromLast = function(opts, fwd) { var hops, l = opts.lastSlide, c = opts.currSlide; if (fwd) hops = c > l ? c - l : opts.slideCount - l; else hops = c < l ? l - c : l + opts.slideCount - c; return hops; }; // fix clearType problems in ie6 by setting an explicit bg color // (otherwise text slides look horrible during a fade transition) function clearTypeFix($slides) { debug('applying clearType background-color hack'); function hex(s) { s = parseInt(s).toString(16); return s.length < 2 ? '0'+s : s; }; function getBg(e) { for ( ; e && e.nodeName.toLowerCase() != 'html'; e = e.parentNode) { var v = $.css(e,'background-color'); if (v.indexOf('rgb') >= 0 ) { var rgb = v.match(/\d+/g); return '#'+ hex(rgb[0]) + hex(rgb[1]) + hex(rgb[2]); } if (v && v != 'transparent') return v; } return '#ffffff'; }; $slides.each(function() { $(this).css('background-color', getBg(this)); }); }; // reset common props before the next transition $.fn.cycle.commonReset = function(curr,next,opts,w,h,rev) { $(opts.elements).not(curr).hide(); opts.cssBefore.opacity = 1; opts.cssBefore.display = 'block'; if (opts.slideResize && w !== false && next.cycleW > 0) opts.cssBefore.width = next.cycleW; if (opts.slideResize && h !== false && next.cycleH > 0) opts.cssBefore.height = next.cycleH; opts.cssAfter = opts.cssAfter || {}; opts.cssAfter.display = 'none'; $(curr).css('zIndex',opts.slideCount + (rev === true ? 1 : 0)); $(next).css('zIndex',opts.slideCount + (rev === true ? 0 : 1)); }; // the actual fn for effecting a transition $.fn.cycle.custom = function(curr, next, opts, cb, fwd, speedOverride) { var $l = $(curr), $n = $(next); var speedIn = opts.speedIn, speedOut = opts.speedOut, easeIn = opts.easeIn, easeOut = opts.easeOut; $n.css(opts.cssBefore); if (speedOverride) { if (typeof speedOverride == 'number') speedIn = speedOut = speedOverride; else speedIn = speedOut = 1; easeIn = easeOut = null; } var fn = function() {$n.animate(opts.animIn, speedIn, easeIn, cb)}; $l.animate(opts.animOut, speedOut, easeOut, function() { if (opts.cssAfter) $l.css(opts.cssAfter); if (!opts.sync) fn(); }); if (opts.sync) fn(); }; // transition definitions - only fade is defined here, transition pack defines the rest $.fn.cycle.transitions = { fade: function($cont, $slides, opts) { $slides.not(':eq('+opts.currSlide+')').css('opacity',0); opts.before.push(function(curr,next,opts) { $.fn.cycle.commonReset(curr,next,opts); opts.cssBefore.opacity = 0; }); opts.animIn = { opacity: 1 }; opts.animOut = { opacity: 0 }; opts.cssBefore = { top: 0, left: 0 }; } }; $.fn.cycle.ver = function() { return ver; }; // override these globally if you like (they are all optional) $.fn.cycle.defaults = { fx: 'fade', // name of transition effect (or comma separated names, ex: 'fade,scrollUp,shuffle') timeout: 4000, // milliseconds between slide transitions (0 to disable auto advance) timeoutFn: null, // callback for determining per-slide timeout value: function(currSlideElement, nextSlideElement, options, forwardFlag) continuous: 0, // true to start next transition immediately after current one completes speed: 1000, // speed of the transition (any valid fx speed value) speedIn: null, // speed of the 'in' transition speedOut: null, // speed of the 'out' transition next: null, // selector for element to use as event trigger for next slide prev: null, // selector for element to use as event trigger for previous slide // prevNextClick: null, // @deprecated; please use onPrevNextEvent instead onPrevNextEvent: null, // callback fn for prev/next events: function(isNext, zeroBasedSlideIndex, slideElement) prevNextEvent:'click.cycle',// event which drives the manual transition to the previous or next slide pager: null, // selector for element to use as pager container //pagerClick null, // @deprecated; please use onPagerEvent instead onPagerEvent: null, // callback fn for pager events: function(zeroBasedSlideIndex, slideElement) pagerEvent: 'click.cycle', // name of event which drives the pager navigation allowPagerClickBubble: false, // allows or prevents click event on pager anchors from bubbling pagerAnchorBuilder: null, // callback fn for building anchor links: function(index, DOMelement) before: null, // transition callback (scope set to element to be shown): function(currSlideElement, nextSlideElement, options, forwardFlag) after: null, // transition callback (scope set to element that was shown): function(currSlideElement, nextSlideElement, options, forwardFlag) end: null, // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options) easing: null, // easing method for both in and out transitions easeIn: null, // easing for "in" transition easeOut: null, // easing for "out" transition shuffle: null, // coords for shuffle animation, ex: { top:15, left: 200 } animIn: null, // properties that define how the slide animates in animOut: null, // properties that define how the slide animates out cssBefore: null, // properties that define the initial state of the slide before transitioning in cssAfter: null, // properties that defined the state of the slide after transitioning out fxFn: null, // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag) height: 'auto', // container height startingSlide: 0, // zero-based index of the first slide to be displayed sync: 1, // true if in/out transitions should occur simultaneously random: 0, // true for random, false for sequence (not applicable to shuffle fx) fit: 0, // force slides to fit container containerResize: 1, // resize container to fit largest slide slideResize: 1, // force slide width/height to fixed size before every transition pause: 0, // true to enable "pause on hover" pauseOnPagerHover: 0, // true to pause when hovering over pager link autostop: 0, // true to end slideshow after X transitions (where X == slide count) autostopCount: 0, // number of transitions (optionally used with autostop to define X) delay: 0, // additional delay (in ms) for first transition (hint: can be negative) slideExpr: null, // expression for selecting slides (if something other than all children is required) cleartype: !$.support.opacity, // true if clearType corrections should be applied (for IE) cleartypeNoBg: false, // set to true to disable extra cleartype fixing (leave false to force background color setting on slides) nowrap: 0, // true to prevent slideshow from wrapping fastOnEvent: 0, // force fast transitions when triggered manually (via pager or prev/next); value == time in ms randomizeEffects: 1, // valid when multiple effects are used; true to make the effect sequence random rev: 0, // causes animations to transition in reverse (for effects that support it such as scrollHorz/scrollVert/shuffle) manualTrump: true, // causes manual transition to stop an active transition instead of being ignored requeueOnImageNotLoaded: true, // requeue the slideshow if any image slides are not yet loaded requeueTimeout: 250, // ms delay for requeue activePagerClass: 'activeSlide', // class name used for the active pager link updateActivePagerLink: null, // callback fn invoked to update the active pager link (adds/removes activePagerClass style) backwards: false // true to start slideshow at last slide and move backwards through the stack }; })(jQuery); /*! * jQuery Cycle Plugin Transition Definitions * This script is a plugin for the jQuery Cycle Plugin * Examples and documentation at: http://malsup.com/jquery/cycle/ * Copyright (c) 2007-2010 M. Alsup * Version: 2.73 * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ (function($) { // // These functions define one-time slide initialization for the named // transitions. To save file size feel free to remove any of these that you // don't need. // $.fn.cycle.transitions.none = function($cont, $slides, opts) { opts.fxFn = function(curr,next,opts,after){ $(next).show(); $(curr).hide(); after(); }; } // not a cross-fade, fadeout only fades out the top slide $.fn.cycle.transitions.fadeout = function($cont, $slides, opts) { $slides.not(':eq('+opts.currSlide+')').css({ display: 'block', 'opacity': 1 }); opts.before.push(function(curr,next,opts,w,h,rev) { $(curr).css('zIndex',opts.slideCount + (!rev === true ? 1 : 0)); $(next).css('zIndex',opts.slideCount + (!rev === true ? 0 : 1)); }); opts.animIn = { opacity: 1 }; opts.animOut = { opacity: 0 }; opts.cssBefore = { opacity: 1, display: 'block' }; opts.cssAfter = { zIndex: 0 }; }; // scrollUp/Down/Left/Right $.fn.cycle.transitions.scrollUp = function($cont, $slides, opts) { $cont.css('overflow','hidden'); opts.before.push($.fn.cycle.commonReset); var h = $cont.height(); opts.cssBefore ={ top: h, left: 0 }; opts.cssFirst = { top: 0 }; opts.animIn = { top: 0 }; opts.animOut = { top: -h }; }; $.fn.cycle.transitions.scrollDown = function($cont, $slides, opts) { $cont.css('overflow','hidden'); opts.before.push($.fn.cycle.commonReset); var h = $cont.height(); opts.cssFirst = { top: 0 }; opts.cssBefore= { top: -h, left: 0 }; opts.animIn = { top: 0 }; opts.animOut = { top: h }; }; $.fn.cycle.transitions.scrollLeft = function($cont, $slides, opts) { $cont.css('overflow','hidden'); opts.before.push($.fn.cycle.commonReset); var w = $cont.width(); opts.cssFirst = { left: 0 }; opts.cssBefore= { left: w, top: 0 }; opts.animIn = { left: 0 }; opts.animOut = { left: 0-w }; }; $.fn.cycle.transitions.scrollRight = function($cont, $slides, opts) { $cont.css('overflow','hidden'); opts.before.push($.fn.cycle.commonReset); var w = $cont.width(); opts.cssFirst = { left: 0 }; opts.cssBefore= { left: -w, top: 0 }; opts.animIn = { left: 0 }; opts.animOut = { left: w }; }; $.fn.cycle.transitions.scrollHorz = function($cont, $slides, opts) { $cont.css('overflow','hidden').width(); opts.before.push(function(curr, next, opts, fwd) { if (opts.rev) fwd = !fwd; $.fn.cycle.commonReset(curr,next,opts); opts.cssBefore.left = fwd ? (next.cycleW-1) : (1-next.cycleW); opts.animOut.left = fwd ? -curr.cycleW : curr.cycleW; }); opts.cssFirst = { left: 0 }; opts.cssBefore= { top: 0 }; opts.animIn = { left: 0 }; opts.animOut = { top: 0 }; }; $.fn.cycle.transitions.scrollVert = function($cont, $slides, opts) { $cont.css('overflow','hidden'); opts.before.push(function(curr, next, opts, fwd) { if (opts.rev) fwd = !fwd; $.fn.cycle.commonReset(curr,next,opts); opts.cssBefore.top = fwd ? (1-next.cycleH) : (next.cycleH-1); opts.animOut.top = fwd ? curr.cycleH : -curr.cycleH; }); opts.cssFirst = { top: 0 }; opts.cssBefore= { left: 0 }; opts.animIn = { top: 0 }; opts.animOut = { left: 0 }; }; // slideX/slideY $.fn.cycle.transitions.slideX = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $(opts.elements).not(curr).hide(); $.fn.cycle.commonReset(curr,next,opts,false,true); opts.animIn.width = next.cycleW; }); opts.cssBefore = { left: 0, top: 0, width: 0 }; opts.animIn = { width: 'show' }; opts.animOut = { width: 0 }; }; $.fn.cycle.transitions.slideY = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $(opts.elements).not(curr).hide(); $.fn.cycle.commonReset(curr,next,opts,true,false); opts.animIn.height = next.cycleH; }); opts.cssBefore = { left: 0, top: 0, height: 0 }; opts.animIn = { height: 'show' }; opts.animOut = { height: 0 }; }; // shuffle $.fn.cycle.transitions.shuffle = function($cont, $slides, opts) { var i, w = $cont.css('overflow', 'visible').width(); $slides.css({left: 0, top: 0}); opts.before.push(function(curr,next,opts) { $.fn.cycle.commonReset(curr,next,opts,true,true,true); }); // only adjust speed once! if (!opts.speedAdjusted) { opts.speed = opts.speed / 2; // shuffle has 2 transitions opts.speedAdjusted = true; } opts.random = 0; opts.shuffle = opts.shuffle || {left:-w, top:15}; opts.els = []; for (i=0; i < $slides.length; i++) opts.els.push($slides[i]); for (i=0; i < opts.currSlide; i++) opts.els.push(opts.els.shift()); // custom transition fn (hat tip to Benjamin Sterling for this bit of sweetness!) opts.fxFn = function(curr, next, opts, cb, fwd) { if (opts.rev) fwd = !fwd; var $el = fwd ? $(curr) : $(next); $(next).css(opts.cssBefore); var count = opts.slideCount; $el.animate(opts.shuffle, opts.speedIn, opts.easeIn, function() { var hops = $.fn.cycle.hopsFromLast(opts, fwd); for (var k=0; k < hops; k++) fwd ? opts.els.push(opts.els.shift()) : opts.els.unshift(opts.els.pop()); if (fwd) { for (var i=0, len=opts.els.length; i < len; i++) $(opts.els[i]).css('z-index', len-i+count); } else { var z = $(curr).css('z-index'); $el.css('z-index', parseInt(z)+1+count); } $el.animate({left:0, top:0}, opts.speedOut, opts.easeOut, function() { $(fwd ? this : curr).hide(); if (cb) cb(); }); }); }; opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 }; }; // turnUp/Down/Left/Right $.fn.cycle.transitions.turnUp = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,true,false); opts.cssBefore.top = next.cycleH; opts.animIn.height = next.cycleH; opts.animOut.width = next.cycleW; }); opts.cssFirst = { top: 0 }; opts.cssBefore = { left: 0, height: 0 }; opts.animIn = { top: 0 }; opts.animOut = { height: 0 }; }; $.fn.cycle.transitions.turnDown = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,true,false); opts.animIn.height = next.cycleH; opts.animOut.top = curr.cycleH; }); opts.cssFirst = { top: 0 }; opts.cssBefore = { left: 0, top: 0, height: 0 }; opts.animOut = { height: 0 }; }; $.fn.cycle.transitions.turnLeft = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,false,true); opts.cssBefore.left = next.cycleW; opts.animIn.width = next.cycleW; }); opts.cssBefore = { top: 0, width: 0 }; opts.animIn = { left: 0 }; opts.animOut = { width: 0 }; }; $.fn.cycle.transitions.turnRight = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,false,true); opts.animIn.width = next.cycleW; opts.animOut.left = curr.cycleW; }); opts.cssBefore = { top: 0, left: 0, width: 0 }; opts.animIn = { left: 0 }; opts.animOut = { width: 0 }; }; // zoom $.fn.cycle.transitions.zoom = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,false,false,true); opts.cssBefore.top = next.cycleH/2; opts.cssBefore.left = next.cycleW/2; opts.animIn = { top: 0, left: 0, width: next.cycleW, height: next.cycleH }; opts.animOut = { width: 0, height: 0, top: curr.cycleH/2, left: curr.cycleW/2 }; }); opts.cssFirst = { top:0, left: 0 }; opts.cssBefore = { width: 0, height: 0 }; }; // fadeZoom $.fn.cycle.transitions.fadeZoom = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,false,false); opts.cssBefore.left = next.cycleW/2; opts.cssBefore.top = next.cycleH/2; opts.animIn = { top: 0, left: 0, width: next.cycleW, height: next.cycleH }; }); opts.cssBefore = { width: 0, height: 0 }; opts.animOut = { opacity: 0 }; }; // blindX $.fn.cycle.transitions.blindX = function($cont, $slides, opts) { var w = $cont.css('overflow','hidden').width(); opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts); opts.animIn.width = next.cycleW; opts.animOut.left = curr.cycleW; }); opts.cssBefore = { left: w, top: 0 }; opts.animIn = { left: 0 }; opts.animOut = { left: w }; }; // blindY $.fn.cycle.transitions.blindY = function($cont, $slides, opts) { var h = $cont.css('overflow','hidden').height(); opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts); opts.animIn.height = next.cycleH; opts.animOut.top = curr.cycleH; }); opts.cssBefore = { top: h, left: 0 }; opts.animIn = { top: 0 }; opts.animOut = { top: h }; }; // blindZ $.fn.cycle.transitions.blindZ = function($cont, $slides, opts) { var h = $cont.css('overflow','hidden').height(); var w = $cont.width(); opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts); opts.animIn.height = next.cycleH; opts.animOut.top = curr.cycleH; }); opts.cssBefore = { top: h, left: w }; opts.animIn = { top: 0, left: 0 }; opts.animOut = { top: h, left: w }; }; // growX - grow horizontally from centered 0 width $.fn.cycle.transitions.growX = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,false,true); opts.cssBefore.left = this.cycleW/2; opts.animIn = { left: 0, width: this.cycleW }; opts.animOut = { left: 0 }; }); opts.cssBefore = { width: 0, top: 0 }; }; // growY - grow vertically from centered 0 height $.fn.cycle.transitions.growY = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,true,false); opts.cssBefore.top = this.cycleH/2; opts.animIn = { top: 0, height: this.cycleH }; opts.animOut = { top: 0 }; }); opts.cssBefore = { height: 0, left: 0 }; }; // curtainX - squeeze in both edges horizontally $.fn.cycle.transitions.curtainX = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,false,true,true); opts.cssBefore.left = next.cycleW/2; opts.animIn = { left: 0, width: this.cycleW }; opts.animOut = { left: curr.cycleW/2, width: 0 }; }); opts.cssBefore = { top: 0, width: 0 }; }; // curtainY - squeeze in both edges vertically $.fn.cycle.transitions.curtainY = function($cont, $slides, opts) { opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,true,false,true); opts.cssBefore.top = next.cycleH/2; opts.animIn = { top: 0, height: next.cycleH }; opts.animOut = { top: curr.cycleH/2, height: 0 }; }); opts.cssBefore = { left: 0, height: 0 }; }; // cover - curr slide covered by next slide $.fn.cycle.transitions.cover = function($cont, $slides, opts) { var d = opts.direction || 'left'; var w = $cont.css('overflow','hidden').width(); var h = $cont.height(); opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts); if (d == 'right') opts.cssBefore.left = -w; else if (d == 'up') opts.cssBefore.top = h; else if (d == 'down') opts.cssBefore.top = -h; else opts.cssBefore.left = w; }); opts.animIn = { left: 0, top: 0}; opts.animOut = { opacity: 1 }; opts.cssBefore = { top: 0, left: 0 }; }; // uncover - curr slide moves off next slide $.fn.cycle.transitions.uncover = function($cont, $slides, opts) { var d = opts.direction || 'left'; var w = $cont.css('overflow','hidden').width(); var h = $cont.height(); opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,true,true,true); if (d == 'right') opts.animOut.left = w; else if (d == 'up') opts.animOut.top = -h; else if (d == 'down') opts.animOut.top = h; else opts.animOut.left = -w; }); opts.animIn = { left: 0, top: 0 }; opts.animOut = { opacity: 1 }; opts.cssBefore = { top: 0, left: 0 }; }; // toss - move top slide and fade away $.fn.cycle.transitions.toss = function($cont, $slides, opts) { var w = $cont.css('overflow','visible').width(); var h = $cont.height(); opts.before.push(function(curr, next, opts) { $.fn.cycle.commonReset(curr,next,opts,true,true,true); // provide default toss settings if animOut not provided if (!opts.animOut.left && !opts.animOut.top) opts.animOut = { left: w*2, top: -h/2, opacity: 0 }; else opts.animOut.opacity = 0; }); opts.cssBefore = { left: 0, top: 0 }; opts.animIn = { left: 0 }; }; // wipe - clip animation $.fn.cycle.transitions.wipe = function($cont, $slides, opts) { var w = $cont.css('overflow','hidden').width(); var h = $cont.height(); opts.cssBefore = opts.cssBefore || {}; var clip; if (opts.clip) { if (/l2r/.test(opts.clip)) clip = 'rect(0px 0px '+h+'px 0px)'; else if (/r2l/.test(opts.clip)) clip = 'rect(0px '+w+'px '+h+'px '+w+'px)'; else if (/t2b/.test(opts.clip)) clip = 'rect(0px '+w+'px 0px 0px)'; else if (/b2t/.test(opts.clip)) clip = 'rect('+h+'px '+w+'px '+h+'px 0px)'; else if (/zoom/.test(opts.clip)) { var top = parseInt(h/2); var left = parseInt(w/2); clip = 'rect('+top+'px '+left+'px '+top+'px '+left+'px)'; } } opts.cssBefore.clip = opts.cssBefore.clip || clip || 'rect(0px 0px 0px 0px)'; var d = opts.cssBefore.clip.match(/(\d+)/g); var t = parseInt(d[0]), r = parseInt(d[1]), b = parseInt(d[2]), l = parseInt(d[3]); opts.before.push(function(curr, next, opts) { if (curr == next) return; var $curr = $(curr), $next = $(next); $.fn.cycle.commonReset(curr,next,opts,true,true,false); opts.cssAfter.display = 'block'; var step = 1, count = parseInt((opts.speedIn / 13)) - 1; (function f() { var tt = t ? t - parseInt(step * (t/count)) : 0; var ll = l ? l - parseInt(step * (l/count)) : 0; var bb = b < h ? b + parseInt(step * ((h-b)/count || 1)) : h; var rr = r < w ? r + parseInt(step * ((w-r)/count || 1)) : w; $next.css({ clip: 'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)' }); (step++ <= count) ? setTimeout(f, 13) : $curr.css('display', 'none'); })(); }); opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 }; opts.animIn = { left: 0 }; opts.animOut = { left: 0 }; }; })(jQuery); /* End */ ;; /* /bitrix/templates/index/showcase/jquery.aw-showcase.js*/ ; /* /bitrix/templates/index/js/common.js*/ ; /* /bitrix/templates/index/js/cufon-yui.js*/ ; /* /bitrix/templates/index/js/fonts/HeliosThinC_100.font.js*/ ; /* /bitrix/templates/index/js/fonts/HeliosThinC_italic_100.font.js*/ ; /* /bitrix/templates/index/js/fonts/HeliosCondC_400.font.js*/ ; /* /bitrix/templates/index/js/fonts/HeliosCondC_700.font.js*/ ; /* /bitrix/templates/index/js/fonts/HeliosLightC_300.font.js*/ ; /* /bitrix/templates/index/js/fonts/HeliosLightC_italic_300.font.js*/ ; /* /bitrix/templates/index/js/jquery.cycle.all.js*/