// source --> https://www.planindia.org/wp-content/plugins/pixelyoursite/dist/scripts/public.js?ver=8.0.3 /* global pysOptions */ // https://bitbucket.org/pixelyoursite/pys_pro_7/issues/7/possible-ie-11-error // https://tc39.github.io/ecma262/#sec-array.prototype.includes if (!Array.prototype.includes) { Object.defineProperty(Array.prototype, 'includes', { value: function (searchElement, fromIndex) { if (this == null) { throw new TypeError('"this" is null or not defined'); } // 1. Let O be ? ToObject(this value). var o = Object(this); // 2. Let len be ? ToLength(? Get(O, "length")). var len = o.length >>> 0; // 3. If len is 0, return false. if (len === 0) { return false; } // 4. Let n be ? ToInteger(fromIndex). // (If fromIndex is undefined, this step produces the value 0.) var n = fromIndex | 0; // 5. If n ≥ 0, then // a. Let k be n. // 6. Else n < 0, // a. Let k be len + n. // b. If k < 0, let k be 0. var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0); function sameValueZero(x, y) { return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y)); } // 7. Repeat, while k < len while (k < len) { // a. Let elementK be the result of ? Get(O, ! ToString(k)). // b. If SameValueZero(searchElement, elementK) is true, return true. if (sameValueZero(o[k], searchElement)) { return true; } // c. Increase k by 1. k++; } // 8. Return false return false; } }); } !function ($, options) { if (options.debug) { console.log('PYS:', options); } var dummyPinterest = function () { /** * Public API */ return { isEnabled: function () { }, disable: function () { }, loadPixel: function () { }, fireEvent: function (name, data) { return false; }, onCommentEvent: function () { }, onDownloadEvent: function (params) { }, onFormEvent: function (params) { }, onWooAddToCartOnButtonEvent: function (product_id) { }, onWooAddToCartOnSingleEvent: function (product_id, qty, is_variable, is_external, $form) { }, onWooRemoveFromCartEvent: function (cart_item_hash) { }, onEddAddToCartOnButtonEvent: function (download_id, price_index, qty) { }, onEddRemoveFromCartEvent: function (item) { }, onPageScroll: function (event) {}, onTime: function (event) { }, } }(); var dummyBing = function () { /** * Public API */ return { isEnabled: function () { }, disable: function () { }, loadPixel: function () { }, fireEvent: function (name, data) { return false; }, onAdSenseEvent: function () { }, onClickEvent: function (params) { }, onWatchVideo: function (params) { }, onCommentEvent: function () { }, onFormEvent: function (params) { }, onDownloadEvent: function (params) { }, onWooAddToCartOnButtonEvent: function (product_id) { }, onWooAddToCartOnSingleEvent: function (product_id, qty, is_variable, is_external, $form) { }, onWooRemoveFromCartEvent: function (cart_item_hash) { }, onWooAffiliateEvent: function (product_id) { }, onWooPayPalEvent: function () { }, onEddAddToCartOnButtonEvent: function (download_id, price_index, qty) { }, onEddRemoveFromCartEvent: function (item) { }, onPageScroll: function (event) { }, onTime: function (event) { }, } }(); var Utils = function (options) { var Pinterest = dummyPinterest; var Bing = dummyBing; var gtag_loaded = false; function loadPixels() { if (!options.gdpr.all_disabled_by_api) { if (!options.gdpr.facebook_disabled_by_api) { Facebook.loadPixel(); } if (!options.gdpr.analytics_disabled_by_api) { Analytics.loadPixel(); } if (!options.gdpr.pinterest_disabled_by_api) { Pinterest.loadPixel(); } if (!options.gdpr.bing_disabled_by_api) { Bing.loadPixel(); } } } /** * PUBLIC API */ return { fireEventForAllPixel:function(functionName,events){ if (events.hasOwnProperty(Facebook.tag())) Facebook[functionName](events[Facebook.tag()]); if (events.hasOwnProperty(Analytics.tag())) Analytics[functionName](events[Analytics.tag()]); if (events.hasOwnProperty(Pinterest.tag())) Pinterest[functionName](events[Pinterest.tag()]); if (events.hasOwnProperty(Bing.tag())) Bing[functionName](events[Bing.tag()]); }, setupPinterestObject: function () { Pinterest = window.pys.Pinterest || Pinterest; return Pinterest; }, setupBingObject: function () { Bing = window.pys.Bing || Bing; return Bing; }, // Clone all object members to another and return it copyProperties: function (from, to) { for (var key in from) { to[key] = from[key]; } return to; }, // clone object clone: function(obj) { var copy; // Handle the 3 simple types, and null or undefined if (null == obj || "object" != typeof obj) return obj; // Handle Date if (obj instanceof Date) { copy = new Date(); copy.setTime(obj.getTime()); return copy; } // Handle Array if (obj instanceof Array) { copy = []; for (var i = 0, len = obj.length; i < len; i++) { copy[i] = Utils.clone(obj[i]); } return copy; } // Handle Object if (obj instanceof Object) { copy = {}; for (var attr in obj) { if (obj.hasOwnProperty(attr)) copy[attr] = Utils.clone(obj[attr]); } return copy; } return obj; }, // Returns array of elements with given tag name getTagsAsArray: function (tag) { return [].slice.call(document.getElementsByTagName(tag)); }, getRequestParams: function () { return []; }, /** * CUSTOM EVENTS */ setupMouseOverClickEvents: function (eventId, triggers) { // Non-default binding used to avoid situations when some code in external js // stopping events propagation, eg. returns false, and our handler will never called $(document).onFirst('mouseover', triggers.join(','), function () { // do not fire event multiple times if ($(this).hasClass('pys-mouse-over-' + eventId)) { return true; } else { $(this).addClass('pys-mouse-over-' + eventId); } Utils.fireDynamicEvent(eventId); }); }, setupCSSClickEvents: function (eventId, triggers) { // Non-default binding used to avoid situations when some code in external js // stopping events propagation, eg. returns false, and our handler will never called $(triggers.join(',')).onFirst('click', function () { Utils.fireTriggerEvent(eventId); }); }, setupURLClickEvents: function () { // Non-default binding used to avoid situations when some code in external js // stopping events propagation, eg. returns false, and our handler will never called $('a[data-pys-event-id]').onFirst('click', function (evt) { $(this).attr('data-pys-event-id').split(',').forEach(function (eventId) { eventId = parseInt(eventId); if (isNaN(eventId) === false) { Utils.fireTriggerEvent(eventId); } }); }); }, setupScrollPosEvents: function (eventId, triggers) { var scrollPosThresholds = {}, docHeight = $(document).height() - $(window).height(); // convert % to absolute positions $.each(triggers, function (index, scrollPos) { // convert % to pixels scrollPos = docHeight * scrollPos / 100; scrollPos = Math.round(scrollPos); scrollPosThresholds[scrollPos] = eventId; }); $(document).on("scroll",function () { var scrollPos = $(window).scrollTop(); $.each(scrollPosThresholds, function (threshold, eventId) { // position has not reached yes if (scrollPos <= threshold) { return true; } // fire event only once if (eventId === null) { return true; } else { scrollPosThresholds[threshold] = null; } Utils.fireTriggerEvent(eventId); }); }); }, setupCommentEvents : function (eventId,triggers) { $('form.comment-form').on("submit",function () { Utils.fireTriggerEvent(eventId); }); }, /** * Events */ fireTriggerEvent: function (eventId) { if (!options.triggerEvents.hasOwnProperty(eventId)) { return; } var event = {}; var events = options.triggerEvents[eventId]; if (events.hasOwnProperty('facebook')) { event = events.facebook; if(Utils.isEventInTimeWindow(event.name,event,"dyn_facebook_"+eventId)) { Facebook.fireEvent(event.name, event); } } if (events.hasOwnProperty('ga')) { event = events.ga; if(Utils.isEventInTimeWindow(event.name,event,"dyn_ga_"+eventId)) { Analytics.fireEvent(event.name, event); } } if (events.hasOwnProperty('pinterest')) { event = events.pinterest; if(Utils.isEventInTimeWindow(event.name,event,"dyn_pinterest_"+eventId)) { Pinterest.fireEvent(event.name, event); } } if (events.hasOwnProperty('bing')) { event = events.bing; if(Utils.isEventInTimeWindow(event.name,event,"dyn_bing_"+eventId)) { Bing.fireEvent(event.name, event); } } }, fireStaticEvents: function (pixel) { if (options.staticEvents.hasOwnProperty(pixel)) { $.each(options.staticEvents[pixel], function (eventName, events) { $.each(events, function (index, eventData) { eventData.fired = eventData.fired || false; if (!eventData.fired) { var fired = false; // fire event if ('facebook' === pixel) { fired = Facebook.fireEvent(eventName, eventData); } else if ('ga' === pixel) { fired = Analytics.fireEvent(eventName, eventData); } else if ('pinterest' === pixel) { fired = Pinterest.fireEvent(eventName, eventData); } else if ('bing' === pixel) { fired = Bing.fireEvent(eventName, eventData); } // prevent event double event firing eventData.fired = fired; } }); }); } }, /** * Load tag's JS * * @link: https://developers.google.com/analytics/devguides/collection/gtagjs/ * @link: https://developers.google.com/analytics/devguides/collection/gtagjs/custom-dims-mets */ loadGoogleTag: function (id) { if (!gtag_loaded) { (function (window, document, src) { var a = document.createElement('script'), m = document.getElementsByTagName('script')[0]; a.async = 1; a.src = src; m.parentNode.insertBefore(a, m); })(window, document, '//www.googletagmanager.com/gtag/js?id=' + id); window.dataLayer = window.dataLayer || []; window.gtag = window.gtag || function gtag() { dataLayer.push(arguments); }; gtag('js', new Date()); gtag_loaded = true; } }, /** * GDPR */ loadPixels: function () { if (options.gdpr.ajax_enabled) { // retrieves actual PYS GDPR filters values which allow to avoid cache issues $.get({ url: options.ajaxUrl, dataType: 'json', data: { action: 'pys_get_gdpr_filters_values' }, success: function (res) { if (res.success) { options.gdpr.all_disabled_by_api = res.data.all_disabled_by_api; options.gdpr.facebook_disabled_by_api = res.data.facebook_disabled_by_api; options.gdpr.analytics_disabled_by_api = res.data.analytics_disabled_by_api; options.gdpr.google_ads_disabled_by_api = res.data.google_ads_disabled_by_api; options.gdpr.pinterest_disabled_by_api = res.data.pinterest_disabled_by_api; options.gdpr.bing_disabled_by_api = res.data.bing_disabled_by_api; } loadPixels(); } }); } else { loadPixels(); } }, consentGiven: function (pixel) { /** * Cookiebot */ if (options.gdpr.cookiebot_integration_enabled && typeof Cookiebot !== 'undefined') { var cookiebot_consent_category = options.gdpr['cookiebot_' + pixel + '_consent_category']; if (options.gdpr[pixel + '_prior_consent_enabled']) { if (Cookiebot.consented === false || Cookiebot.consent[cookiebot_consent_category]) { return true; } } else { if (Cookiebot.consent[cookiebot_consent_category]) { return true; } } return false; } /** * Ginger – EU Cookie Law */ if (options.gdpr.ginger_integration_enabled) { var ginger_cookie = Cookies.get('ginger-cookie'); if (options.gdpr[pixel + '_prior_consent_enabled']) { if (typeof ginger_cookie === 'undefined' || ginger_cookie === 'Y') { return true; } } else { if (ginger_cookie === 'Y') { return true; } } return false; } /** * Cookie Notice */ if (options.gdpr.cookie_notice_integration_enabled && typeof cnArgs !== 'undefined') { var cn_cookie = Cookies.get(cnArgs.cookieName); if (options.gdpr[pixel + '_prior_consent_enabled']) { if (typeof cn_cookie === 'undefined' || cn_cookie === 'true') { return true; } } else { if (cn_cookie === 'true') { return true; } } return false; } /** * Cookie Law Info */ if (options.gdpr.cookie_law_info_integration_enabled) { var cli_cookie = Cookies.get('viewed_cookie_policy'); if (options.gdpr[pixel + '_prior_consent_enabled']) { if (typeof cli_cookie === 'undefined' || cli_cookie === 'yes') { return true; } } else { if (cli_cookie === 'yes') { return true; } } return false; } return true; }, setupGdprCallbacks: function () { /** * Cookiebot */ if (options.gdpr.cookiebot_integration_enabled && typeof Cookiebot !== 'undefined') { Cookiebot.onaccept = function () { if (Cookiebot.consent[options.gdpr.cookiebot_facebook_consent_category]) { Facebook.loadPixel(); } if (Cookiebot.consent[options.gdpr.cookiebot_analytics_consent_category]) { Analytics.loadPixel(); } if (Cookiebot.consent[options.gdpr.cookiebot_pinterest_consent_category]) { Pinterest.loadPixel(); } if (Cookiebot.consent[options.gdpr.cookiebot_bing_consent_category]) { bing.loadPixel(); } }; Cookiebot.ondecline = function () { Facebook.disable(); Analytics.disable(); Pinterest.disable(); Bing.disable(); }; } /** * Cookie Notice */ if (options.gdpr.cookie_notice_integration_enabled) { $(document).onFirst('click', '.cn-set-cookie', function () { if ($(this).data('cookie-set') === 'accept') { Facebook.loadPixel(); Analytics.loadPixel(); Pinterest.loadPixel(); Bing.loadPixel(); } else { Facebook.disable(); Analytics.disable(); Pinterest.disable(); Bing.disable(); } }); $(document).onFirst('click', '.cn-revoke-cookie', function () { Facebook.disable(); Analytics.disable(); Pinterest.disable(); Bing.disable(); }); } /** * Cookie Law Info */ if (options.gdpr.cookie_law_info_integration_enabled) { $(document).onFirst('click', '#cookie_action_close_header', function () { Facebook.loadPixel(); Analytics.loadPixel(); Pinterest.loadPixel(); Bing.loadPixel(); }); $(document).onFirst('click', '#cookie_action_close_header_reject', function () { Facebook.disable(); Analytics.disable(); Pinterest.disable(); Bing.disable(); }); } }, /** * DOWNLOAD DOCS */ getLinkExtension: function (link) { // Remove anchor, query string and everything before last slash link = link.substring(0, (link.indexOf("#") === -1) ? link.length : link.indexOf("#")); link = link.substring(0, (link.indexOf("?") === -1) ? link.length : link.indexOf("?")); link = link.substring(link.lastIndexOf("/") + 1, link.length); // If there's a period left in the URL, then there's a extension if (link.length > 0 && link.indexOf('.') !== -1) { link = link.substring(link.indexOf(".") + 1); // Remove everything but what's after the first period return link; } else { return ""; } }, getLinkFilename: function (link) { // Remove anchor, query string and everything before last slash link = link.substring(0, (link.indexOf("#") === -1) ? link.length : link.indexOf("#")); link = link.substring(0, (link.indexOf("?") === -1) ? link.length : link.indexOf("?")); link = link.substring(link.lastIndexOf("/") + 1, link.length); // If there's a period left in the URL, then there's a extension if (link.length > 0 && link.indexOf('.') !== -1) { return link; } else { return ""; } } }; }(options); var Facebook = function (options) { var defaultEventTypes = [ 'PageView', 'ViewContent', 'Search', 'AddToCart', 'AddToWishlist', 'InitiateCheckout', 'AddPaymentInfo', 'Purchase', 'Lead', 'Subscribe', 'CustomizeProduct', 'FindLocation', 'StartTrial', 'SubmitApplication', 'Schedule', 'Contact', 'Donate' ]; var initialized = false; function fireEvent(name, allData) { var actionType = defaultEventTypes.includes(name) ? 'track' : 'trackCustom'; var data = allData.params; var params = {}; var arg = {}; Utils.copyProperties(data, params); if(options.facebook.serverApiEnabled) { // fire server side event gdpr plugin installed var isApiDisabled = options.gdpr.all_disabled_by_api || options.gdpr.facebook_disabled_by_api || options.gdpr.cookiebot_integration_enabled || options.gdpr.ginger_integration_enabled || options.gdpr.cookie_notice_integration_enabled || options.gdpr.cookie_law_info_integration_enabled; // Update eventID if( options.facebook.ajaxForServerEvent || allData.type !== "static" ) { allData.eventID = pys_generate_token(36); } arg.eventID = allData.eventID; // send event from server if they was bloc by gdpr or need send with delay if( options.facebook.ajaxForServerEvent || isApiDisabled || allData.delay > 0 || allData.type !== "static") { var json = { action: 'pys_api_event', pixel: 'facebook', event: name, data:data, ids:options.facebook.pixelIds, eventID:allData.eventID, woo_order:allData.woo_order, edd_order:allData.edd_order, }; if(allData.delay > 0) { jQuery.ajax( { type: 'POST', url: options.ajaxUrl, data: json, headers: { 'Cache-Control': 'no-cache' }, success: function(){}, }); } else { // if(name != "AddToCart") { // AddToCart call from hook setTimeout(function (json) { jQuery.ajax({ type: 'POST', url: options.ajaxUrl, data: json, headers: { 'Cache-Control': 'no-cache' }, success: function () { }, }); }, 500, json); //} } } } if("hCR" === name) { return; } if (options.debug) { console.log('[Facebook] ' + name, params,"eventID",allData.eventID); } fbq(actionType, name, params,arg); } /** * Public API */ return { tag: function() { return "facebook"; }, isEnabled: function () { return options.hasOwnProperty('facebook'); }, disable: function () { initialized = false; }, /** * Load pixel's JS */ loadPixel: function () { if (initialized || !this.isEnabled() || !Utils.consentGiven('facebook')) { return; } !function (f, b, e, v, n, t, s) { if (f.fbq) return; n = f.fbq = function () { n.callMethod ? n.callMethod.apply(n, arguments) : n.queue.push(arguments) }; if (!f._fbq) f._fbq = n; n.push = n; n.loaded = !0; n.version = '2.0'; n.agent = 'dvpixelyoursite'; n.queue = []; t = b.createElement(e); t.async = !0; t.src = v; s = b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t, s) }(window, document, 'script', 'https://connect.facebook.net/en_US/fbevents.js'); // initialize pixel options.facebook.pixelIds.forEach(function (pixelId) { if (options.facebook.removeMetadata) { fbq('set', 'autoConfig', false, pixelId); } if(options.facebook.advancedMatching.length === 0) { fbq('init', pixelId); } else { fbq('init', pixelId, options.facebook.advancedMatching); } }); initialized = true; Utils.fireStaticEvents('facebook'); }, fireEvent: function (name, data) { if (!initialized || !this.isEnabled()) { return false; } data.delay = data.delay || 0; data.params = data.params || {}; if (data.delay === 0) { fireEvent(name, data); } else { setTimeout(function (name, params) { fireEvent(name, params); }, data.delay * 1000, name, data); } return true; }, onCommentEvent: function (event) { this.fireEvent(event.name, event); }, onDownloadEvent: function (event) { this.fireEvent(event.name, event); }, onFormEvent: function (event) { this.fireEvent(event.name, event); }, onWooAddToCartOnButtonEvent: function (product_id) { if(!options.dynamicEvents.woo_add_to_cart_on_button_click.hasOwnProperty(this.tag())) return; var event = options.dynamicEvents.woo_add_to_cart_on_button_click[this.tag()]; if (window.pysWooProductData.hasOwnProperty(product_id)) { if (window.pysWooProductData[product_id].hasOwnProperty('facebook')) { event = Utils.copyProperties(event, {}) Utils.copyProperties(window.pysWooProductData[product_id]['facebook'], event.params) this.fireEvent(event.name, event); } } }, onWooAddToCartOnSingleEvent: function (product_id, qty, product_type, $form) { window.pysWooProductData = window.pysWooProductData || []; if(!options.dynamicEvents.woo_add_to_cart_on_button_click.hasOwnProperty(this.tag())) return; var event = Utils.clone(options.dynamicEvents.woo_add_to_cart_on_button_click[this.tag()]); if (window.pysWooProductData.hasOwnProperty(product_id)) { if (window.pysWooProductData[product_id].hasOwnProperty('facebook')) { if (product_type === PRODUCT_VARIABLE && !options.facebook.wooVariableAsSimple) { product_id = parseInt($form.find('input[name="variation_id"]').val()); } Utils.copyProperties(window.pysWooProductData[product_id]['facebook'], event.params); // maybe customize value option if (options.woo.addToCartOnButtonValueEnabled && options.woo.addToCartOnButtonValueOption !== 'global') { if(product_type === PRODUCT_BUNDLE) { var data = $(".bundle_form .bundle_data").data("bundle_form_data"); var items_sum = getBundlePriceOnSingleProduct(data); event.params.value = (data.base_price+items_sum )* qty; } else { event.params.value = event.params.value * qty; } } // only when non Facebook for WooCommerce logic used if (event.params.hasOwnProperty('contents')) { event.params.contents[0].quantity = qty; } this.fireEvent(event.name, event); } } }, onWooRemoveFromCartEvent: function (event) { this.fireEvent(event.name, event); }, onEddAddToCartOnButtonEvent: function (download_id, price_index, qty) { if(!options.dynamicEvents.edd_add_to_cart_on_button_click.hasOwnProperty(this.tag())) return; var event = Utils.clone(options.dynamicEvents.edd_add_to_cart_on_button_click[this.tag()]); if (window.pysEddProductData.hasOwnProperty(download_id)) { var index; if (price_index) { index = download_id + '_' + price_index; } else { index = download_id; } if (window.pysEddProductData[download_id].hasOwnProperty(index)) { if (window.pysEddProductData[download_id][index].hasOwnProperty('facebook')) { Utils.copyProperties(window.pysEddProductData[download_id][index]['facebook']["params"], event.params) // maybe customize value option if (options.edd.addToCartOnButtonValueEnabled && options.edd.addToCartOnButtonValueOption !== 'global') { event.params.value = event.params.value * qty; } // update contents qty param var contents = event.params.contents; contents[0].quantity = qty; event.params.contents = contents; this.fireEvent(event.name,event); } } } }, onEddRemoveFromCartEvent: function (event) { this.fireEvent(event.name, event); }, onPageScroll: function (event) { this.fireEvent(event.name, event); }, onTime: function (event) { this.fireEvent(event.name, event); }, }; }(options); var Analytics = function (options) { var initialized = false; /** * Fires event * * @link: https://developers.google.com/analytics/devguides/collection/gtagjs/sending-data * @link: https://developers.google.com/analytics/devguides/collection/gtagjs/events * @link: https://developers.google.com/gtagjs/reference/event * @link: https://developers.google.com/gtagjs/reference/parameter * * @link: https://developers.google.com/analytics/devguides/collection/gtagjs/custom-dims-mets * * @param name * @param data */ function fireEvent(name, data) { var eventParams = Utils.copyProperties(data, {}); var _fireEvent = function (tracking_id) { var params = Utils.copyProperties(eventParams, {send_to: tracking_id}); if (options.debug) { console.log('[Google Analytics #' + tracking_id + '] ' + name, params); } gtag('event', name, params); }; options.ga.trackingIds.forEach(function (tracking_id) { _fireEvent(tracking_id); }); } /** * Public API */ return { tag: function() { return "ga"; }, isEnabled: function () { return options.hasOwnProperty('ga'); }, disable: function () { initialized = false; }, loadPixel: function () { if (initialized || !this.isEnabled() || !Utils.consentGiven('analytics')) { return; } Utils.loadGoogleTag(options.ga.trackingIds[0]); var config = { 'link_attribution': options.ga.enhanceLinkAttr, 'anonymize_ip': options.ga.anonimizeIP }; // Cross-Domain tracking if (options.ga.crossDomainEnabled) { config.linker = { accept_incoming: options.ga.crossDomainAcceptIncoming, domains: options.ga.crossDomainDomains }; } if(options.ga.isUse4Version) { if(options.ga.disableAdvertisingFeatures) { config.allow_google_signals = false } if(options.ga.disableAdvertisingPersonalization) { config.allow_ad_personalization_signals = false } } // configure tracking ids options.ga.trackingIds.forEach(function (trackingId,index) { if(options.ga.isDebugEnabled.includes("index_"+index)) { config.debug_mode = true; } else { config.debug_mode = false; } gtag('config', trackingId, config); }); initialized = true; Utils.fireStaticEvents('ga'); }, fireEvent: function (name, data) { if (!initialized || !this.isEnabled()) { return false; } data.delay = data.delay || 0; data.params = data.params || {}; if (data.delay === 0) { fireEvent(name, data.params); } else { setTimeout(function (name, params) { fireEvent(name, params); }, data.delay * 1000, name, data.params); } return true; }, onCommentEvent: function (event) { if (initialized && this.isEnabled() ) { if(options.ga.isUse4Version) { this.fireEvent(event.name, event); } else { this.fireEvent(event.name, { params: { event_category: event.name, event_action: event.params.event_action, event_label: document.location.href, non_interaction: event.params.non_interaction, event_day:event.params.event_day, event_hour:event.params.event_hour, event_month:event.params.event_month, traffic_source:event.params.traffic_source, } }); } } }, onDownloadEvent: function (event) { if (initialized && this.isEnabled() ) { if(options.ga.isUse4Version) { this.fireEvent(event.name, event); } else { var params = { event_category: event.name, event_action: event.params.event_action, event_label:event.params.download_name, non_interaction: event.params.non_interaction, }; this.fireEvent(event.name, { params: params }); } } }, onFormEvent: function (event) { if (initialized && this.isEnabled() ) { if(options.ga.isUse4Version) { this.fireEvent(event.name, event); } else { var params = { event_category: event.name, event_action: event.params.event_action, non_interaction: event.params.non_interaction, event_day:event.params.event_day, event_hour:event.params.event_hour, event_month:event.params.event_month, traffic_source:event.params.traffic_source, }; var formClass = (typeof event.params.form_class != 'undefined') ? 'class: ' + event.params.form_class : ''; if(formClass != "") { params["event_label"] = formClass; } this.fireEvent(event.name, { params: params }); } } }, onWooAddToCartOnButtonEvent: function (product_id) { if(!options.dynamicEvents.woo_add_to_cart_on_button_click.hasOwnProperty(this.tag())) return; var event = Utils.clone(options.dynamicEvents.woo_add_to_cart_on_button_click[this.tag()]); if (window.pysWooProductData.hasOwnProperty(product_id)) { if (window.pysWooProductData[product_id].hasOwnProperty('ga')) { Utils.copyProperties(window.pysWooProductData[product_id]['ga'], event.params) this.fireEvent(event.name, event); } } }, onWooAddToCartOnSingleEvent: function (product_id, qty, product_type, $form) { window.pysWooProductData = window.pysWooProductData || []; if(!options.dynamicEvents.woo_add_to_cart_on_button_click.hasOwnProperty(this.tag())) return; var event = Utils.clone(options.dynamicEvents.woo_add_to_cart_on_button_click[this.tag()]); if (product_type === PRODUCT_VARIABLE) { product_id = parseInt($form.find('input[name="variation_id"]').val()); } if (window.pysWooProductData.hasOwnProperty(product_id)) { if (window.pysWooProductData[product_id].hasOwnProperty('ga')) { Utils.copyProperties(window.pysWooProductData[product_id]['ga'], event.params); // maybe customize value option if (options.woo.addToCartOnButtonValueEnabled && options.woo.addToCartOnButtonValueOption !== 'global') { if(product_type === PRODUCT_BUNDLE) { var data = $(".bundle_form .bundle_data").data("bundle_form_data"); var items_sum = getBundlePriceOnSingleProduct(data); event.params.items[0].price = (data.base_price+items_sum )* qty; } else { event.params.items[0].price = event.params.items[0].price * qty; } } // update items qty param event.params.items[0].quantity = qty; this.fireEvent(event.name, event); } } }, onWooRemoveFromCartEvent: function (event) { this.fireEvent(event.name, event); }, onEddAddToCartOnButtonEvent: function (download_id, price_index, qty) { if(!options.dynamicEvents.edd_add_to_cart_on_button_click.hasOwnProperty(this.tag())) return; var event = options.dynamicEvents.edd_add_to_cart_on_button_click[this.tag()]; if (window.pysEddProductData.hasOwnProperty(download_id)) { var index; if (price_index) { index = download_id + '_' + price_index; } else { index = download_id; } if (window.pysEddProductData[download_id].hasOwnProperty(index)) { if (window.pysEddProductData[download_id][index].hasOwnProperty('google_ads')) { event = Utils.clone(event) Utils.copyProperties(window.pysEddProductData[download_id][index]['google_ads']['params'], event.params); event['ids'] = window.pysEddProductData[download_id][index]['google_ads']['ids']; event['conversion_labels'] = window.pysEddProductData[download_id][index]['google_ads']['conversion_labels']; // update items qty param params.items[0].quantity = qty; this.fireEvent(event.name, event); } } } }, onEddRemoveFromCartEvent: function (event) { this.fireEvent(event.name, event); }, onPageScroll: function (event) { this.fireEvent(event.name, event); }, onTime: function (event) { this.fireEvent(event.name, event); }, }; }(options); window.pys = window.pys || {}; window.pys.Facebook = Facebook; window.pys.Analytics = Analytics; window.pys.Utils = Utils; const PRODUCT_SIMPLE = 0; const PRODUCT_VARIABLE = 1; const PRODUCT_BUNDLE = 2; function getPixelBySlag(slug) { switch (slug) { case "facebook": return window.pys.Facebook; case "ga": return window.pys.Analytics; case "bing": return window.pys.Bing; case "pinterest": return window.pys.Pinterest; } } $(document).ready(function () { var Pinterest = Utils.setupPinterestObject(); var Bing = Utils.setupBingObject(); Utils.setupGdprCallbacks(); // page scroll event if (options.dynamicEvents.hasOwnProperty("signal_page_scroll")) { var singlePageScroll = function () { var docHeight = $(document).height() - $(window).height(); var isFired = false; var pixels = Object.keys(options.dynamicEvents.signal_page_scroll); for(i = 0;i 0) { var pixels = Object.keys(options.dynamicEvents.signal_download); for (i = 0; i < pixels.length; i++) { var event = Utils.clone(options.dynamicEvents.signal_download[pixels[i]]); var extensions = event.extensions; if (extensions.includes(extension)) { event.params.download_url = href; event.params.download_type = extension; event.params.download_name = Utils.getLinkFilename(href); getPixelBySlag(pixels[i]).onDownloadEvent(event); isFired = true; } } } } if (isFired) { // prevent duplicate events on the same element return; } } }); } // setup Dynamic events $.each(options.dynamicEventsTriggers, function (triggerType, events) { $.each(events, function (eventId, triggers) { switch (triggerType) { case 'url_click': //@see: Utils.setupURLClickEvents() break; case 'css_click': Utils.setupCSSClickEvents(eventId, triggers); break; case 'css_mouseover': Utils.setupMouseOverClickEvents(eventId, triggers); break; case 'scroll_pos': Utils.setupScrollPosEvents(eventId, triggers); break; case 'comment': Utils.setupCommentEvents(eventId, triggers); break; } }); }); // setup WooCommerce events if (options.woo.enabled) { // WooCommerce AddToCart if (options.dynamicEvents.hasOwnProperty("woo_add_to_cart_on_button_click")) { // Loop, any kind of "simple" product, except external $('.add_to_cart_button:not(.product_type_variable)').on("click",function (e) { var product_id = $(this).data('product_id'); if (typeof product_id !== 'undefined') { Facebook.onWooAddToCartOnButtonEvent(product_id); Analytics.onWooAddToCartOnButtonEvent(product_id); Pinterest.onWooAddToCartOnButtonEvent(product_id); Bing.onWooAddToCartOnButtonEvent(product_id); } }); // Single Product $('button.single_add_to_cart_button,.single_add_to_cart_button').onFirst('click tap',function (e) { var $button = $(this); if ($button.hasClass('disabled')) { return; } var $form = $button.closest('form'); var product_type = PRODUCT_SIMPLE; if ($form.length === 0) { return ; } else if ($form.hasClass('variations_form')) { product_type = PRODUCT_VARIABLE; } else if($form.hasClass('bundle_form')) { product_type = PRODUCT_BUNDLE; } var product_id; var qty; if (product_type === PRODUCT_VARIABLE) { product_id = parseInt($form.find('*[name="add-to-cart"]').val()); var qtyTag = $form.find('input[name="quantity"]'); if(qtyTag.length <= 0) { qtyTag = $form.find('select[name="quantity"]'); } qty = parseInt(qtyTag.val()); } else { product_id = parseInt($form.find('*[name="add-to-cart"]').val()); var qtyTag = $form.find('input[name="quantity"]'); if(qtyTag.length <= 0) { qtyTag = $form.find('select[name="quantity"]'); } qty = parseInt(qtyTag.val()); } Facebook.onWooAddToCartOnSingleEvent(product_id, qty, product_type, $form); Analytics.onWooAddToCartOnSingleEvent(product_id, qty, product_type, $form); Pinterest.onWooAddToCartOnSingleEvent(product_id, qty, product_type, false, $form); Bing.onWooAddToCartOnSingleEvent(product_id, qty, product_type, false, $form); }); } // WooCommerce RemoveFromCart if (options.dynamicEvents.hasOwnProperty("woo_remove_from_cart")) { $('body').on('click', options.woo.removeFromCartSelector, function (e) { var $a = $(e.currentTarget), href = $a.attr('href'); // extract cart item hash from remove button URL var regex = new RegExp("[\\?&]remove_item=([^&#]*)"), results = regex.exec(href); if (results !== null) { var item_hash = results[1]; if (options.dynamicEvents["woo_remove_from_cart"].hasOwnProperty(item_hash)) { var events = options.dynamicEvents["woo_remove_from_cart"][item_hash]; Utils.fireEventForAllPixel("onWooRemoveFromCartEvent",events) } } }); } } // setup EDD events if (options.edd.enabled) { // EDD AddToCart if (options.dynamicEvents.hasOwnProperty("edd_add_to_cart_on_button_click")) { $('form.edd_download_purchase_form .edd-add-to-cart').on("click",function (e) { var $button = $(this); var $form = $button.closest('form'); var variable_price = $button.data('variablePrice'); // yes/no var price_mode = $button.data('priceMode'); // single/multi var ids = []; var quantities = []; var qty; var id; if (variable_price === 'yes' && price_mode === 'multi') { id = $form.find('input[name="download_id"]').val(); // get selected variants $.each($form.find('input[name="edd_options[price_id][]"]:checked'), function (i, el) { ids.push(id + '_' + $(el).val()); }); // get qty for selected variants $.each(ids, function (i, variant_id) { var variant_index = variant_id.split('_', 2); qty = $form.find('input[name="edd_download_quantity_' + variant_index[1] + '"]').val(); if (typeof qty !== 'undefined') { quantities.push(qty); } else { quantities.push(1); } }); } else if (variable_price === 'yes' && price_mode === 'single') { id = $form.find('input[name="download_id"]').val(); ids.push(id + '_' + $form.find('input[name="edd_options[price_id][]"]:checked').val()); qty = $form.find('input[name="edd_download_quantity"]').val(); if (typeof qty !== 'undefined') { quantities.push(qty); } else { quantities.push(1); } } else { ids.push($button.data('downloadId')); qty = $form.find('input[name="edd_download_quantity"]').val(); if (typeof qty !== 'undefined') { quantities.push(qty); } else { quantities.push(1); } } // fire event for each download/variant $.each(ids, function (i, download_id) { var q = parseInt(quantities[i]); var variant_index = download_id.toString().split('_', 2); var price_index; if (variant_index.length === 2) { download_id = variant_index[0]; price_index = variant_index[1]; } Facebook.onEddAddToCartOnButtonEvent(download_id, price_index, q); Analytics.onEddAddToCartOnButtonEvent(download_id, price_index, q); Pinterest.onEddAddToCartOnButtonEvent(download_id, price_index, q); Bing.onEddAddToCartOnButtonEvent(download_id, price_index, q); }); }); } // EDD RemoveFromCart if (options.dynamicEvents.hasOwnProperty("edd_remove_from_cart") ) { $('form#edd_checkout_cart_form .edd_cart_remove_item_btn').on("click",function (e) { var href = $(this).attr('href'); var key = href.substring(href.indexOf('=') + 1).charAt(0); if (options.dynamicEvents.edd_remove_from_cart.hasOwnProperty(key)) { var events = options.dynamicEvents.edd_remove_from_cart[key]; Utils.fireEventForAllPixel("onEddRemoveFromCartEvent",events) } }); } } // setup Comment Event if (options.dynamicEvents.hasOwnProperty("signal_comment")) { $('form.comment-form').on("submit",function () { var pixels = Object.keys(options.dynamicEvents.signal_comment); for(i = 0;i https://www.planindia.org/wp-content/uploads/map_data/mapdata.js var simplemaps_countrymap_mapdata={main_settings:{width:"responsive",background_color:"#ececec",background_transparent:"no",border_color:"#ffffff",state_description:"",state_color:"#0a80e6",state_hover_color:"#88a4bc",state_url:"",border_size:1.5,all_states_inactive:"no",all_states_zoomable:"yes",location_description:"Location description",location_color:"#FF0067",location_opacity:.8,location_hover_opacity:1,location_url:"",location_size:"18",location_type:"circle",location_image_source:"frog.png",location_border_color:"#FFFFFF",location_border:2,location_hover_border:2.5,all_locations_inactive:"no",all_locations_hidden:"no",label_color:"#d5ddec",label_hover_color:"#d5ddec",label_size:"12",label_font:"Arial",hide_labels:"no",hide_eastern_labels:"no",zoom:"yes",back_image:"no",initial_back:"no",initial_zoom:"-1",initial_zoom_solo:"no",region_opacity:1,region_hover_opacity:.6,zoom_out_incrementally:"yes",zoom_percentage:.99,zoom_time:.5,popup_color:"white",popup_opacity:.9,popup_shadow:1,popup_corners:5,popup_font:"14px/1.5 Verdana, Arial, Helvetica, sans-serif",popup_nocss:"no",div:"map",auto_load:"yes",url_new_tab:"no",images_directory:"default",fade_time:.1,link_text:"View Website",popups:"on_hover",state_image_url:"",state_image_position:"",location_image_url:"",manual_zoom:"yes"},state_specific:{1:{name:"Andaman And Nicobar"},2:{name:"Andhra Pradesh"},3:{name:"Arunachal Pradesh"},4:{name:"Assam"},5:{name:"Bihar",description:"Bihar is a state in East India, bordering Nepal. It is divided by the River Ganges, which floods its fertile plains.
Zoom in and tap on the home icons to see the details of the villages to support."},6:{name:"Chandigarh"},7:{name:"Chhattisgarh"},8:{name:"Dadra And Nagar Haveli"},9:{name:"Daman And Diu"},10:{name:"Delhi"},11:{name:"Goa"},12:{name:"Gujarat"},13:{name:"Haryana"},14:{name:"Himachal Pradesh"},16:{name:"Jharkhand",description:"Jharkhand is a state in eastern India. It's known for its waterfalls, the elegant Jain temples of Parasnath Hill and the elephants and tigers of Betla National Park.
Zoom in and tap on the home icons to see the details of the villages to support."},17:{name:"Karnataka"},18:{name:"Kerala"},19:{name:"Lakshadweep"},20:{name:"Madhya Pradesh"},21:{name:"Maharashtra"},22:{name:"Manipur"},23:{name:"Meghalaya"},24:{name:"Mizoram"},25:{name:"Nagaland"},26:{name:"Orissa",description:"Odisha (formerly Orissa), an eastern Indian state on the Bay of Bengal, is known for its tribal cultures and its many ancient Hindu temples.
Zoom in and tap on the home icons to see the details of the villages to support."},27:{name:"Puducherry"},28:{name:"Punjab"},29:{name:"Rajasthan",description:"Rajasthan is a state in northern India. It covers 342,239 square kilometres or 10.4 percent of India's total geographical area.
Zoom in and tap on the home icons to see the details of the villages to support."},30:{name:"Sikkim"},31:{name:"Tamil Nadu"},32:{name:"Tripura"},33:{name:"Uttar Pradesh",description:"Uttar Pradesh is a state in northern India. With over 200 million inhabitants, it is the most populated state in India as well as the most populous country subdivision in the world.
Zoom in and tap on the home icons to see the details of the villages to support."},34:{name:"Uttarakhand",description:"Uttarakhand, a state in northern India crossed by the Himalayas, is known for its Hindu pilgrimage sites.
Zoom in and tap on the home icons to see the details of the villages to support."},35:{name:"West Bengal"},36:{name:"Jammu And Kashmir"},37:{name:"Telangana"},38:{name:"Ladakh"}},locations:{0:{lat:"26.1938669",lng:"85.3368636",name:"Dhamauli Ramnath",description:"
  • 3873 Household
  • 3750 Girls
  • 34.9% Female population of age 6 years and above never attended school
  • 66.2% Women didn't complete 10 or more years of schooling
  • 32.9%Females in the age group of 20-24 years got married before 18 years
  • 34.7% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},1:{lat:"26.2168156",lng:"85.425363",name:"Pakari",description:"
  • 680 Household
  • 662 Girls
  • 34.9% Female population of age 6 years and above never attended school
  • 66.2% Women didn't complete 10 or more years of schooling
  • 32.9% Females in the age group of 20-24 years got married before 18 years
  • 34.7% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},2:{lat:"25.59585",lng:"86.255867",name:"Bakhri",description:"
  • 432 Household
  • 440 Girls
  • 34.9% Female population of age 6 years and above never attended school
  • 66.2% Women didn't complete 10 or more years of schooling
  • 32.9% Females in the age group of 20-24 years got married before 18 years
  • 34.7% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},3:{lat:"26.2246",lng:"85.620354",name:"Dhanaur",description:"
  • 279 Household
  • 233 Girls
  • 34.9% Girls population of age 6 years and above never attended school
  • 66.2% Women didn't complete 10 or more years of schooling
  • 32.9% Females in the age group of 20-24 years got married before 18 years
  • 34.7% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},4:{lat:"25.927828",lng:"85.7615733",description:"
  • 1533 Household
  • 1426 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",name:"Birsinghpur",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},5:{lat:"25.9269873",lng:"85.770317",name:"Akbarpur",description:"
  • 610 Household
  • 615 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},6:{lat:"25.918098",lng:"85.892728",name:"Balbhadarpur Khajuri",description:"
  • 354 Household
  • 325 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},7:{lat:"25.9122302",lng:"85.7950917",name:"Chak Jafar",description:"
  • 248 Household
  • 237 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},8:{lat:"25.9145715",lng:"85.9894419",name:"Mahbalipur",description:"
  • 318 Household
  • 284 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},10:{lat:"26.231185",lng:"85.531264",name:"Berai",description:"
  • 319 Household
  • 387 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},11:{lat:"25.767921",lng:"85.296882",description:"
  • 427 Household
  • 476 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ",name:"Bhojpatti Urf Bhedpatti",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},12:{lat:"26.147784",lng:"85.347053",description:"
  • 597 Household
  • 621 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ",name:"Damodarpur",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},13:{lat:"25.777966",lng:"85.298973",description:"
  • 288 Household
  • 341 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ",name:"Matiara",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},14:{lat:"25.736169",lng:"85.351926",description:"
  • 391 Household
  • 474 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ",name:"Bhalui",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},15:{lat:"25.717478",lng:"85.366894",description:"
  • 271 Household
  • 334 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ",name:"Rahim Alipur Urf Ehiapur",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},16:{lat:"25.7108",lng:"85.39162",description:"
  • 959 Household
  • 1111 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ",name:"Jafarpatti",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},17:{lat:"25.707558",lng:"85.411206",name:"Majhepur Alipur",description:"
  • 321 Household
  • 324 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},18:{lat:"26.336337255059505",lng:"84.6144008180471",description:"
  • 188 Household
  • 244 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ",name:"Bishunpur Pratap",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},19:{lat:"25.584877",lng:"84.585685",description:"
  • 796 Household
  • 1010 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ",name:"Ketuka Lachchhi",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},20:{lat:"26.352925",lng:"84.610505",description:"
  • 380 Household
  • 476 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ",name:"Bishunpur Piprahi",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},21:{lat:"25.933044",lng:"85.043324",description:"
  • 233 Household
  • 261 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ",name:"Banauta Makund",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},22:{lat:"25.760903",lng:"84.968413",description:"
  • 260 Household
  • 322 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2%Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ",name:"Mujauna",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},23:{lat:"25.92864472562828",lng:"85.062337866399",description:"
  • 250 Household
  • 262 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ",name:"Patti Mujauna",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},24:{lat:"25.917487772602357",lng:"85.000821326809",description:"
  • 336 Household
  • 373 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ",name:"Shaguni",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},25:{lat:"25.9252065055444",lng:"85.0063159091956",description:"
  • 303 Household
  • 361 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ",name:"Sirampur",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png"},26:{lat:"27.3503977868793",lng:"72.8425814457632",name:"Ghantiyali",description:"
  • 655 Household
  • 838 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 65.4% Women didn't complete 10 or more years of schooling
  • 28.1% Females in the age group of 20-24 years got married before 18 years
  • 25.4% Children under the age of 5 years are underweight
  • 43.4% Women in the age group of 15-49 years are anemic
  • ",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},27:{lat:"25.51320377504584",lng:"71.771895491778",description:"
  • 103 Household
  • 133 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 65.4% Women didn't complete 10 or more years of schooling
  • 28.1% Females in the age group of 20-24 years got married before 18 years
  • 25.4% Children under the age of 5 years are underweight
  • 43.4% Women in the age group of 15-49 years are anemic
  • ",name:"Sajnaniyon Ki Dhani",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},28:{lat:"25.206762911372326",lng:"74.1243161467449",description:"
  • 216 Household
  • 239 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 65.4% Women didn't complete 10 or more years of schooling
  • 28.1% Females in the age group of 20-24 years got married before 18 years
  • 25.4% Children under the age of 5 years are underweight
  • 43.4% Women in the age group of 15-49 years are anemic
  • ",name:"Khajoosar",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},29:{lat:"27.411555970692433",lng:"72.8643470720955",description:"
  • 208 Household
  • 271 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 65.4% Women didn't complete 10 or more years of schooling
  • 28.1% Females in the age group of 20-24 years got married before 18 years
  • 25.4% Children under the age of 5 years are underweight
  • 43.4% Women in the age group of 15-49 years are anemic
  • ",name:"Imam Nagar",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},30:{lat:"28.48533913606067",lng:"73.3598269128466",description:"
  • 320 Household
  • 410 Girls
  • 35.4% Female population of age 6 years and above never attended school
  • 69.8% Women didn't complete 10 or more years of schooling
  • 33.3% Females in the age group of 20-24 years got married before 18 years
  • 28.5% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ",name:"Makrasar",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},31:{lat:"28.523822040645406",lng:"73.4640331827413",description:"
  • 310 Household
  • 437 Girls
  • 35.4% Female population of age 6 years and above never attended school
  • 69.8% Women didn't complete 10 or more years of schooling
  • 33.3% Females in the age group of 20-24 years got married before 18 years
  • 28.5% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ",name:"Binjharwali",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},32:{lat:"28.520930780859175",lng:"73.4710682564614",description:"
  • 64 Household
  • 84 Girls
  • 35.4% Female population of age 6 years and above never attended school
  • 69.8% Women didn't complete 10 or more years of schooling
  • 33.3% Females in the age group of 20-24 years got married before 18 years
  • 28.5% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ",name:"Moosalki",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},33:{lat:"26.03216767181368",lng:"72.7149707557747",description:"
  • 346 Household
  • 301 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",name:"Chali",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},36:{lat:"24.612016621055187",lng:"73.5024022002034",description:"
  • 350 Household
  • 345 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",name:"Undithal",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},37:{lat:"24.360634482183617",lng:"73.6632409579082",name:"Paduna",description:"
  • 106 Household
  • 114 Girls
  • 36.2% Girls population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},38:{lat:"24.715256955803255",lng:"73.7278621673752",description:"
  • 495 Household
  • 470 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",name:"Sare",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},39:{lat:"25.13221749876497",lng:"76.5193446170084",name:"Bara",description:"
  • 443 Household
  • 422 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},40:{lat:"23.857971416550818",lng:"73.4216630370975",description:"
  • 267 Household
  • 281 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",name:"Patiya",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},41:{lat:"26.453376230761833",lng:"76.9541605174678",description:"
  • 175 Household
  • 162 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ",name:"Kalyari",color:"#E1E621",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png"},42:{name:"Sonatangiri",lat:"21.479703",lng:"85.67789",description:"
  • 302 Household
  • 259 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ",color:"#D22630",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png"},43:{name:"Rutisila",lat:"21.497437",lng:"85.707393",description:"
  • 218 Household
  • 212 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ",color:"#D22630",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png"},44:{name:"Ankalpada",lat:"21.480915",lng:"85.713583",description:"
  • 189 Household
  • 188 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ",color:"#D22630",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png"},45:{name:"Sarupat",lat:"21.519124",lng:"85.718671",description:"
  • 250 Household
  • 209 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ",color:"#D22630",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png"},46:{name:"Dumardaga",lat:"23.398942",lng:"85.398776",description:"
  • 144 Household
  • 154 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},47:{name:"Chiruhatu",lat:"23.098886521589773",lng:"85.22793322",description:"
  • 89 Household
  • 89 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},48:{name:"Rewa",lat:"23.9302548",lng:"85.4519003",description:"
  • 280 Household
  • 266 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},49:{name:"Manhu",lat:"24.34757879735865",lng:"84.25118873",description:"
  • 112 Household
  • 118 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},50:{name:"Bhut",lat:"23.0805898",lng:"85.3481652",description:"
  • 228 Household
  • 214 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},51:{name:"Patratoli",lat:"23.459629522965084",lng:"85.19815707",description:"
  • 96 Household
  • 101 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},52:{name:"Uparlota",lat:"23.771494",lng:"84.531184",description:"
  • 173 Household
  • 163 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},53:{name:"Pandrasali",lat:"22.632698",lng:"85.814928",description:"
  • 202 Household
  • 208 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},54:{name:"Torsinduri",lat:"22.658522221696323",lng:"85.82096239",description:"
  • 109 Household
  • 120 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},55:{name:"Patahatu",lat:"22.654638484579348",lng:"85.80186547",description:"
  • 183 Household
  • 219 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},56:{name:"Khunta",lat:"22.526339699159568",lng:"85.7691",description:"
  • 141 Household
  • 151 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},57:{name:"Ruidih",lat:"22.658399426475075",lng:"85.83563962",description:"
  • 255 Household
  • 287 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},58:{name:"Khurandih",lat:"23.95085036565603",lng:"85.50717076",description:"
  • 200 Household
  • 231 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},59:{name:"Jamdiha",lat:"23.930953928213423",lng:"85.51516464",description:"
  • 197 Household
  • 213 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},60:{name:"Nagri",lat:"23.321942",lng:"85.187817",description:"
  • 129 Household
  • 140 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},61:{name:"Tasnalo",lat:"23.92140820902455",lng:"85.50148034",description:"
  • 75 Household
  • 79 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},62:{name:"Lara",lat:"23.926564092849414",lng:"85.48656989",description:"
  • 137 Household
  • 142 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},63:{name:"Dumar",lat:"24.0615998",lng:"85.6485502",description:"
  • 93 Household
  • 87 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ",color:"#E17800",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png"},64:{name:"Naugaon",lat:"30.7868982",lng:"78.1328893",description:"
  • 110 Household
  • 103 Girls
  • 31.0% Female population of age 6 years and above never attended school
  • 46.4% Women didn't complete 10 or more years of schooling
  • 5.7% Females in the age group of 20-24 years got married before 18 years
  • 23.5% Children under the age of 5 years are underweight
  • 60.9% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},65:{name:"Chakon",lat:"30.676183",lng:"78.454506",description:"
  • 138 Household
  • 112 Girls
  • 31.0% Female population of age 6 years and above never attended school
  • 46.4% Women didn't complete 10 or more years of schooling
  • 5.7% Females in the age group of 20-24 years got married before 18 years
  • 23.5% Children under the age of 5 years are underweight
  • 60.9% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},66:{name:"Baun",lat:"30.770013",lng:"78.361552",description:"
  • 227 Household
  • 228 Girls
  • 31.0% Female population of age 6 years and above never attended school
  • 46.4% Women didn't complete 10 or more years of schooling
  • 5.7% Females in the age group of 20-24 years got married before 18 years
  • 23.5% Children under the age of 5 years are underweight
  • 60.9% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},67:{name:"Jhuma Khet Talla",lat:"29.957347",lng:"79.439665",description:"
  • 82 Household
  • 84 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},68:{name:"Sarkot",lat:"30.087997627157755",lng:"79.23656338",description:"
  • 218 Household
  • 247 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},69:{name:"Kali Mati",lat:"29.94060750622902",lng:"79.3834286",description:"
  • 75 Household
  • 77 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},70:{name:"Gogana Malla",lat:"29.950715099274827",lng:"79.31110735",description:"
  • 76 Household
  • 70 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},71:{name:"Pajyana Malla",lat:"30.119606",lng:"79.221566",description:"
  • 61 Household
  • 65 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},72:{name:"Sirana",lat:"30.124325",lng:"79.275407",description:"
  • 85 Household
  • 86 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},73:{name:"Farakande Talli",lat:"30.067870521150642",lng:"79.25922954",description:"
  • 97 Household
  • 110 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},74:{name:"Taituna",lat:"29.948748",lng:"79.397266",description:"
  • 90 Household
  • 102 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},75:{name:"Mehargaon",lat:"30.03220205178612",lng:"79.2472553",description:"
  • 122 Household
  • 125 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},76:{name:"Kotha",lat:"30.16042367246745",lng:"78.343957",description:"
  • 165 Household
  • 139 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},77:{name:"Bina",lat:"30.03312903948037",lng:"78.39316965",description:"
  • 142 Household
  • 145 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},78:{name:"Haragarh",lat:"29.971329",lng:"79.290508",description:"
  • 166 Household
  • 176 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},79:{name:"Parawari",lat:"30.09956323348601",lng:"79.22991492",description:"
  • 112 Household
  • 129 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},80:{name:"Maikholi",lat:"29.989409926180624",lng:"79.31240811",description:"
  • 135 Household
  • 127 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},81:{name:"Gaul",lat:"30.013813",lng:"79.258307",description:"
  • 102 Household
  • 105 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},82:{name:"Panchali",lat:"30.023522112423954",lng:"79.29504454",description:"
  • 101 Household
  • 94 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},83:{name:"Pindawali Talli",lat:"29.831728",lng:"78.993741",description:"
  • 213 Household
  • 228 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},84:{name:"Gair",lat:"30.107214094791864",lng:"79.28661439",description:"
  • 661 Household
  • 530 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},85:{name:"Malasi",lat:"30.12581698387851",lng:"79.2759441",description:"
  • 149 Household
  • 156 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},86:{lat:"29.877986",lng:"78.116470",description:"
  • 194 Household
  • 191 Girls
  • 31.0% Female population of age 6 years and above never attended school
  • 46.4% Women didn't complete 10 or more years of schooling
  • 5.7% Females in the age group of 20-24 years got married before 18 years
  • 23.5% Children under the age of 5 years are underweight
  • 60.9% Women in the age group of 15-49 years are anemic
  • ",name:"Kishanpur",color:"#F1C400",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png"},87:{name:"Gohitangiri",lat:"21.481731",lng:"85.697285",description:"
  • 120 Household
  • 109 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ",color:"#D22630",type:"image",image_url:"https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png"},88:{name:"Gahndo",lat:"27.042581",lng:"80.685704",description:"
  • 948 Household
  • 991 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ",color:"#00843D",type:"image",image_url:" https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png"},89:{name:"Kedaura",lat:"25.947988",lng:"81.549477",description:"
  • 235 Household
  • 288 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ",color:"#00843D",type:"image",image_url:" https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png"},90:{name:"Masirha ratan",lat:"27.005419",lng:"80.722703",description:"
  • 647 Household
  • 639 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ",color:"#00843D",type:"image",image_url:" https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png"},91:{name:"Siswara",lat:"27.032549",lng:"80.674270",description:"
  • 373 Household
  • 402 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ",color:"#00843D",type:"image",image_url:" https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png"},92:{name:"Thari",lat:"27.010475",lng:"80.694006",description:"
  • 972 Household
  • 1035 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ",color:"#00843D",type:"image",image_url:" https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png"}},labels:{0:{name:"Bihar",x:571.85678,y:473.02937,parent_id:"5"},1:{name:"Rajasthan",x:169.23288,y:410.99865,parent_id:"29"},2:{name:"Uttarakhand",x:378.69724,y:272.47748,parent_id:"34"},3:{name:"Uttar Pradesh",x:424.89169,y:412.0253,parent_id:"33"},4:{name:"Madhya Pradesh",x:349.43694,y:543.86087,parent_id:"20"},5:{name:"Madhya Pradesh",x:349.43694,y:543.86087,parent_id:"20"},6:{name:"Jharkhand",x:583.24837,y:560.17228,parent_id:"16"},7:{name:"Orissa",x:564.7,y:640.5,parent_id:"26"}},legend:{entries:[]},regions:{}}; // source --> https://www.planindia.org/wp-content/uploads/map_data/countrymap.js /*Copyright 2010-2021 Simplemaps.com html5countrymapv4.17 Use pursuant to license agreement at https://simplemaps.com/license */ /* shifty - v1.5.3 - http://jeremyckahn.github.io/shifty, embedded within map logic*/ /* Raphaël 2.1.2 (tweaked, always global)- JavaScript Vector Library, Copyright © 2008-2016 Dmitry Baranovskiy (http://raphaeljs.com), Copyright © 2008-2016 Sencha Labs (http://sencha.com), Licensed under the MIT (http://raphaeljs.com/license.html) license. */ !function(t){var e,f,p,a,d,g,x,y,m;t.eve=(e="0.4.2",f="hasOwnProperty",p=/[\.\/]/,a=function(){},d=function(t,e){return t-e},(m=function(t,e){t=String(t);var r,i=x,n=Array.prototype.slice.call(arguments,2),s=m.listeners(t),a=0,o=[],l={},h=[],u=g;g=t;for(var c=x=0,f=s.length;c',(J=K.firstChild).style.behavior="url(#default#VML)",!J||"object"!=typeof J.adj)return j.type="";K=null}function tt(t){if("function"==typeof t||Object(t)!==t)return t;var e,r=new t.constructor;for(e in t)t[L](e)&&(r[e]=tt(t[e]));return r}j.svg=!(j.vml="VML"==j.type),j._Paper=o,j.fn=K=o.prototype=j.prototype,j._id=0,j._oid=0,j.is=function(t,e){return"finite"==(e=y.call(e))?!p[L](+t):"array"==e?t instanceof Array:"null"==e&&null===t||e==typeof t&&null!==t||"object"==e&&t===Object(t)||"array"==e&&Array.isArray&&Array.isArray(t)||c.call(t).slice(8,-1).toLowerCase()==e},j.angle=function(t,e,r,i,n,s){if(null!=n)return j.angle(t,e,n,s)-j.angle(r,i,n,s);r=t-r,i=e-i;return r||i?(180+180*B.atan2(-i,-r)/T+360)%360:0},j.rad=function(t){return t%360*T/180},j.deg=function(t){return 180*t/T%360},j.snapTo=function(t,e,r){if(r=j.is(r,"finite")?r:10,j.is(t,v)){for(var i=t.length;i--;)if(S(t[i]-e)<=r)return t[i]}else{var n=e%(t=+t);if(n"),e.close(),r=e.body}catch(t){r=createPopup().document.body}var n=r.createTextRange();at=ot(function(t){try{r.style.color=P(t).replace(i,"");var e=n.queryCommandValue("ForeColor");return"#"+("000000"+(e=(255&e)<<16|65280&e|(16711680&e)>>>16).toString(16)).slice(-6)}catch(t){return"none"}})}else{var s=d.doc.createElement("i");s.title="Raphaël Colour Picker",s.style.display="none",d.doc.body.appendChild(s),at=ot(function(t){return s.style.color=t,d.doc.defaultView.getComputedStyle(s,"").getPropertyValue("color")})}return at(t)};function ot(n,s,a){function o(){var t=Array.prototype.slice.call(arguments,0),e=t.join("␀"),r=o.cache=o.cache||{},i=o.count=o.count||[];return r[L](e)?function(t,e){for(var r=0,i=t.length;r=s[n]&&(a.push([e][M](i.splice(0,s[n]))),s[n]););}),a.toString=j._path2string,e.arr=bt(a),a},j.parseTransformString=ot(function(t){if(!t)return null;var n=[];return j.is(t,v)&&j.is(t[0],v)&&(n=bt(t)),n.length||P(t).replace(W,function(t,e,r){var i=[];y.call(e);r.replace(X,function(t,e){e&&i.push(+e)}),n.push([e][M](i))}),n.toString=j._path2string,n});var ut=function(e){var r=ut.ps=ut.ps||{};return r[e]?r[e].sleep=100:r[e]={sleep:100},setTimeout(function(){for(var t in r)r[L](t)&&t!=e&&(r[t].sleep--,r[t].sleep||delete r[t])}),r[e]};function ct(t,e,r,i,n){return t*(t*(-3*e+9*r-9*i+3*n)+6*e-12*r+6*i)-3*e+3*r}function ft(t,e,r,i,n,s,a,o,l){null==l&&(l=1);for(var h=(l=1_(n,a)||_(e,i)_(s,o))){var l=(t*i-e*r)*(n-a)-(t-r)*(n*o-s*a),h=(t*i-e*r)*(s-o)-(e-i)*(n*o-s*a),u=(t-r)*(s-o)-(e-i)*(n-a);if(u){var c=l/u,l=h/u,h=+c.toFixed(2),u=+l.toFixed(2);if(!(h<+k(t,r).toFixed(2)||h>+_(t,r).toFixed(2)||h<+k(n,a).toFixed(2)||h>+_(n,a).toFixed(2)||u<+k(e,i).toFixed(2)||u>+_(e,i).toFixed(2)||u<+k(s,o).toFixed(2)||u>+_(s,o).toFixed(2)))return{x:c,y:l}}}}(d.x,d.y,g.x,g.y,x.x,x.y,y.x,y.y);b&&h[b.x.toFixed(4)]!=b.y.toFixed(4)&&(h[b.x.toFixed(4)]=b.y.toFixed(4),d=d.t+S((b[m]-d[m])/(g[m]-d[m]))*(g.t-d.t),x=x.t+S((b[v]-x[v])/(y[v]-x[v]))*(y.t-x.t),0<=d&&d<=1.001&&0<=x&&x<=1.001&&(r?u++:u.push({x:b.x,y:b.y,t1:k(d,1),t2:k(x,1)})))}return u}function dt(t,e,r){t=j._path2curve(t),e=j._path2curve(e);for(var i,n,s,a,o,l,h,u,c,f,p=r?0:[],d=0,g=t.length;d=t.x&&e<=t.x2&&r>=t.y&&r<=t.y2},j.isBBoxIntersect=function(t,e){var r=j.isPointInsideBBox;return r(e,t.x,t.y)||r(e,t.x2,t.y)||r(e,t.x,t.y2)||r(e,t.x2,t.y2)||r(t,e.x,e.y)||r(t,e.x2,e.y)||r(t,e.x,e.y2)||r(t,e.x2,e.y2)||(t.xe.x||e.xt.x)&&(t.ye.y||e.yt.y)},j.pathIntersection=function(t,e){return dt(t,e)},j.pathIntersectionNumber=function(t,e){return dt(t,e,1)},j.isPointInsidePath=function(t,e,r){var i=j.pathBBox(t);return j.isPointInsideBBox(i,e,r)&&dt(t,[["M",e,r],["H",i.x2+10]],1)%2==1},j._removedFactory=function(t){return function(){N("raphael.log",null,"Raphaël: you are calling to method “"+t+"” of removed object",t)}};function gt(t,e,r,i){return[t,e,r,i,r,i]}function xt(t,e,r,i,n,s){return[1/3*t+2/3*r,1/3*e+2/3*i,1/3*n+2/3*r,1/3*s+2/3*i,n,s]}function yt(t,e,r,i,n,s,a,o,l){var h=1-l;return{x:m(h,3)*t+3*m(h,2)*l*r+3*h*l*l*n+m(l,3)*a,y:m(h,3)*e+3*m(h,2)*l*i+3*h*l*l*s+m(l,3)*o}}function mt(t){var e=t[0];switch(e.toLowerCase()){case"t":return[e,0,0];case"m":return[e,1,0,0,1,0,0];case"r":return 4==t.length?[e,0,t[2],t[3]]:[e,0];case"s":return 5==t.length?[e,1,1,t[3],t[4]]:3==t.length?[e,1,1]:[e,1]}}var vt=j.pathBBox=function(t){var e=ut(t);if(e.bbox)return tt(e.bbox);if(!t)return{x:0,y:0,width:0,height:0,x2:0,y2:0};for(var r,i,n=0,s=0,a=[],o=[],l=0,h=(t=Ct(t)).length;lu&&(d=_,g=o,x=l,_=b+u*(a&&b<_?1:-1),o=m+r*B.cos(_),l=v+i*B.sin(_),f=wt(o,l,r,i,n,0,a,g,x,[_,d,m,v])),y=_-b;var m=B.cos(b),v=B.sin(b),b=B.cos(_),_=B.sin(_),y=B.tan(y/4),r=4/3*r*y,i=4/3*i*y,y=[t,e],m=[t+r*v,e-i*m],b=[o+r*_,l-i*b],l=[o,l];if(m[0]=2*y[0]-m[0],m[1]=2*y[1]-m[1],h)return[m,b,l][M](f);for(var w=[],k=0,C=(f=[m,b,l][M](f).join()[z](",")).length;k":function(t){return m(t,.48)},"<>":function(t){var e=.48-t/1.04,r=B.sqrt(.1734+e*e),t=r-e,e=-r-e,e=m(S(t),1/3)*(t<0?-1:1)+m(S(e),1/3)*(e<0?-1:1)+.5;return 3*(1-e)*e*e+e*e*e},backIn:function(t){return t*t*(2.70158*t-1.70158)},backOut:function(t){return--t*t*(2.70158*t+1.70158)+1},elastic:function(t){return t==!!t?t:m(2,-10*t)*B.sin(2*T*(t-.075)/.3)+1},bounce:function(t){var e=7.5625,r=2.75,t=t<1/r?e*t*t:t<2/r?e*(t-=1.5/r)*t+.75:t<2.5/r?e*(t-=2.25/r)*t+.9375:e*(t-=2.625/r)*t+.984375;return t}};o.easeIn=o["ease-in"]=o["<"],o.easeOut=o["ease-out"]=o[">"],o.easeInOut=o["ease-in-out"]=o["<>"],o["back-in"]=o.backIn,o["back-out"]=o.backOut;var Ht=[],Ut=t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||t.msRequestAnimationFrame||function(t){setTimeout(t,16)},$t=function(){for(var t=+new Date,e=0;ei*t.top){r=t.percents[x],u=t.percents[x-1]||0,c=c/t.top*(r-u),h=t.percents[x+1],a=t.anim[r];break}i&&e.attr(t.anim[t.percents[x]])}if(a){if(o)o.initstatus=i,o.start=new Date-o.ms*i;else{for(var m in a)if(a[L](m)&&(D[L](m)||e.paper.customAttributes[L](m)))switch(f[m]=e.attr(m),null==f[m]&&(f[m]=q[m]),p[m]=a[m],D[m]){case F:d[m]=(p[m]-f[m])/c;break;case"colour":f[m]=j.getRGB(f[m]);var v=j.getRGB(p[m]);d[m]={r:(v.r-f[m].r)/c,g:(v.g-f[m].g)/c,b:(v.b-f[m].b)/c};break;case"path":var b=Ct(f[m],p[m]),_=b[1];for(f[m]=b[0],d[m]=[],x=0,y=f[m].length;x"));h=h.getBoundingClientRect();d.W=u.w=(h.right-h.left)/100,d.H=u.h=(h.bottom-h.top)/100,d.X=u.x,d.Y=u.y+d.H/2,("x"in e||"y"in e)&&(d.path.v=j.format("m{0},{1}l{2},{1}",k(u.x*M),k(u.y*M),k(u.x*M)+1));for(var x=["x","y","text","font","font-family","font-weight","font-style","font-size"],y=0,m=x.length;y')}}catch(t){R=function(t){return e.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}},j._engine.initWin(j._g.win),j._engine.create=function(){var t=j._getContainer.apply(0,arguments),e=t.container,r=t.height,i=t.width,n=t.x,s=t.y;if(!e)throw new Error("VML container not found.");var a=new j._Paper,o=a.canvas=j._g.doc.createElement("div"),t=o.style,n=n||0,s=s||0,i=i||512,r=r||342;return(a.width=i)==+i&&(i+="px"),(a.height=r)==+r&&(r+="px"),a.coordsize=216e5+A+216e5,a.coordorigin="0 0",a.span=j._g.doc.createElement("span"),a.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;",o.appendChild(a.span),t.cssText=j.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden",i,r),1==e?(j._g.doc.body.appendChild(o),t.left=n+"px",t.top=s+"px",t.position="absolute"):e.firstChild?e.insertBefore(o,e.firstChild):e.appendChild(o),a.renderfix=function(){},a},j.prototype.clear=function(){j.eve("raphael.clear",this),this.canvas.innerHTML="",this.span=j._g.doc.createElement("span"),this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;",this.canvas.appendChild(this.span),this.bottom=this.top=null},j.prototype.remove=function(){for(var t in j.eve("raphael.remove",this),this.canvas.parentNode.removeChild(this.canvas),this)this[t]="function"==typeof this[t]?j._removedFactory(t):null;return!0};var e,r=j.st;for(e in t)t[b](e)&&!r[b](e)&&(r[e]=function(r){return function(){var e=arguments;return this.forEach(function(t){t[r].apply(t,e)})}}(e))}}(),r.was?d.win.Raphael=j:t.Raphael=j}(t,t.eve)}(this); /* Map path and default settings - you can edit this */ var simplemaps_countrymap_mapinfo={ map_name: "country", state_bbox_array:{"1":{y:851,x:821,x2:892,y2:1135},"2":{y:699,x:294,x2:567,y2:932},"3":{y:312,x:799,x2:999,y2:421},"4":{y:370,x:735,x2:951,y2:516},"5":{y:388,x:518,x2:688,y2:511},"6":{y:260,x:291,x2:296,y2:265},"7":{y:518,x:413,x2:554,y2:749},"8":{y:656,x:163,x2:173,y2:667},"9":{y:633,x:86,x2:161,y2:655},"10":{y:335,x:296,x2:314,y2:354},"11":{y:820,x:189,x2:211,y2:852},"12":{y:495,x:1,x2:216,y2:664},"13":{y:255,x:215,x2:322,y2:383},"14":{y:161,x:253,x2:370,y2:276},"16":{y:471,x:518,x2:677,y2:597},"17":{y:725,x:203,x2:356,y2:968},"18":{y:926,x:229,x2:315,y2:1082},"19":{y:963,x:135,x2:189,y2:1083},"20":{y:413,x:201,x2:500,y2:630},"21":{y:594,x:153,x2:435,y2:827},"22":{y:458,x:848,x2:908,y2:527},"23":{y:442,x:740,x2:842,y2:483},"24":{y:502,x:823,x2:864,y2:597},"25":{y:406,x:860,x2:925,y2:476},"26":{y:575,x:452,x2:660,y2:748},"27":{y:786,x:241,x2:483,y2:995},"28":{y:188,x:195,x2:300,y2:309},"29":{y:284,x:45,x2:345,y2:556},"30":{y:364,x:678,x2:709,y2:405},"31":{y:899,x:275,x2:416,y2:1089},"32":{y:501,x:785,x2:826,y2:561},"33":{y:275,x:305,x2:562,y2:526},"34":{y:233,x:321,x2:439,y2:342},"35":{y:399,x:603,x2:742,y2:613},"36":{y:82,x:179,x2:295,y2:200},"37":{y:672,x:311,x2:466,y2:819},"38":{y:1,x:149,x2:416,y2:198}},paths: { "1": "M877.3 1118.2l-0.2 0.4 0.3 0.5 0.7-0.1 0.4 1-0.1 0.4 0.3 0.9 0.1 1-0.1 1.2 0.4 0.3 0.6 1 0.1 1.3-0.2 0.4 0.5 0.5 0.2 0.7-0.6 0.7-0.3 0.7 0.2 0.4-0.6 0.3 0.1 0.7-0.2 0.5 0 0.7 0.5 0.3-0.4 1.2-0.4 0.3-0.6-0.7-0.5 0-0.3 0.5 0.1 0.7-0.7 0.9-0.7-0.3 0.2-1.5-0.4-0.2-0.5-0.8 0.3-0.4-0.7-0.6 0.2-0.6-0.6-0.9-0.4 0-0.3-0.6 0.3-0.4-0.2-0.8-0.5-0.3-0.3-0.8-0.5 0.1-0.3-0.7-0.4-0.3-0.6 0.2-0.1-1 0.1-1.3-0.3-0.2-0.2-1.4 0.7-0.5 0-1.2 0.4-0.5 0.9-0.1 0.7 0.2 0.7-0.8 1.8-0.1 0.1-0.5 0.6-0.3 0.7-0.1z m-4.6-7l0.3 0.8 0.1 0.8 1.1 0.8-0.1 0.5-0.4 0.4-0.6 1.3-0.6 0.2-0.9 0.7-0.4 0.8-0.7 0.6-0.7-0.9 0.2-0.7-0.3-0.6 0.4-0.5-0.2-1.4 1.1-0.7 1.5-0.4 0-1.5 0.2-0.2z m-11.4-20l1 0.6-0.2 1.1 0.6 0.5 0.3-0.3 1.1 1.1 0.4 1.4-0.4 0.8-0.7-0.9-0.8-0.3-0.7 0.2-0.7 0.7-0.7-0.3-0.4-0.4 0.1-0.8-1-0.6-0.2-0.7 0.4-0.5 0-0.5 0.4-0.7 0.7 0.1 0.8-0.5z m5.7-0.2l0.6 0.2 0.7 1.1-0.2 2-0.2 0.2-2.2-2 1.2-1 0.1-0.5z m1.1-3.3l0.4 0.5 0 1.5 0.4 0.8-0.3 0.2-0.7-1 0.3-0.5-0.4-0.3-0.3-1 0.6-0.2z m-1.8-3.7l0.6 0.2 0.1 1-0.7 0.9-0.5 0.2-0.2 0.7 0.7 0.9 0.2 0.7 0.6 0.4 0.1 0.7-0.4 1-1.1 0.1 0 1.2-0.6 0-0.1-1.3 1.3-0.6 0.1-0.7-0.4-0.3-1.1 1.1 0-0.9-0.9-1.6-0.1-1.7 0.7-0.4 0.5-0.4 0.1-0.9 1.1-0.3z m-9.9-1.1l0.6 1.2-0.5 0.3-0.6-0.8 0.5-0.7z m-3.7-3.2l0.5 0.4-0.4 1.2-0.1 1.1 0.9 1.2 1.4 0.7 0.4 0.4-0.4 0.7-1-0.3-1.4-0.7-0.8-0.9-0.5-0.9 0-1.2 0.3-1.1 1.1-0.6z m-2.9-4l0.5 0.4-0.2 0.8-0.6-0.5 0.3-0.7z m19.6-3.5l0.2 1.5 0.4 0.2 0.3 2-0.6 0 0-1.7-0.5-1 0.2-1z m-28.3-23.2l0.9 0.9 0.4 0.9 0.2 1-0.3 0.9-0.4 0.5-0.8 0.2-0.6-0.3-1.3 0.1-0.4-0.8 0-2.3 1.5 0 0.8-1.1z m-9.3-57.3l1.5 1.2 0.1 1.8 0.9 0.8-0.2 1.6 0.5 1.2 0 0.8-0.7 0.5 0.1 0.4-0.9 0.7-0.4 0.9 0.1 0.7 0.7 0.2 0.1 0.4-1.2 1.6-0.1 0.4-1.1 0.2-0.6-0.2-0.6-0.6-1-0.5-0.5 0.1-0.6 0.5-0.6-0.4 0.9-1.4 0.4-1.1-0.5-1.2-0.4-0.6-0.5 0 0.1-1.8-0.2-0.7-0.1-1.5 0.7 0.1 0.6-0.3 0.6-1.2 0.9-0.6 0.1-0.8 0.7-0.3 0.4-0.6 0.8-0.3z m4.3-21.3l0.9 0.7 0.6 1.9-0.7 1.4 0.9 0.2 0 0.7-1.8 0.8-1.3 0-0.7-0.7 0.4-0.5-0.1-0.7 1.2-0.2 0-1.2-0.4-0.6 0.1-1 0.6-1 0.3 0.2z m-1-2.8l0.2 0.8-0.6-0.1 0.4-0.7z m-13.4-0.1l0.7 0 1 0.3 0 1 0.2 0.7-0.5 0.6-0.4-0.3-1.1-0.1-0.3-0.6 0.4-1.6z m10.9-0.4l0.2 0.3 0.8 0.1-0.1 0.6-0.4 0.5-0.5 0-0.2-1.2 0.2-0.3z m16.5-8.4l0.4 0.3 1-0.3 0.3 0.3-0.7 0.8-1.2-0.6 0.2-0.5z m-14.5-4.6l0.3 1.1-0.3 0.2 0-1.3z m12.7-2l0.5-0.3 0.7 0.5 0.1 1 1 1.8 0.6 1.8-0.3 0.4-0.7-0.1-0.1-0.5-1.1-1.7-0.6 0.1-0.4-1.1-0.9-0.2-0.1-0.7 0.7-0.3 0.6-0.7z m0.8-2.6l0.4 0.1-0.2 2.1-0.3 0-1-0.9 0-1.3 1.1 0z m1.2-1.7l-0.1 0.6 0.4 0.5 0 1 0.6 0.7 0 0.6-0.4 0.5-0.6-0.9-0.6-0.2 0-1.1-1-0.2-0.5-0.3-0.3-0.7 0.3-0.3 1 0.4 1.2-0.6z m1.4-1.9l0.6 0.6 0.3 1.6-0.2 0.6 0.1 0.8-0.3 0.7-0.5 0-1.1-1.6 0.7-2 0.4-0.7z m-12.6-0.8l0.2 0.2 0.3 2.1 0.8-0.5 0.7 0.2-0.1 0.8-0.6 1.5-0.1 0.8 0.6 0.6 0.8 1.4-0.5 0.4-0.7-0.5 0.6 1.6-1.1 0.5-0.3 0.8 0.5 1.8 0.5-1.2 1-0.2 0.4 0.5-0.3 1.1 0.3 0.8-1.1 5.3-0.5 0.3-0.8 0.1-0.5 0.5-0.1 0.9-0.5 0.6-0.6-0.2 0 0.8 0.8 0 0.9-1.2 0.9-0.3 0.4 0.3-0.1 2-0.8 1.8-0.2 1.1 0.2 0.3-0.7 1-0.4-0.6-1.1 0-0.6-0.6 0.1-1-0.8-0.6-0.7-0.9 0.1-1.4-0.5-1 0.2-0.9-0.4-1-0.5 0.1-0.4 0.8-0.3-1 0.1-1.8-0.4-1.9-0.7 0.1-0.4-0.8 0.4-0.8 0.1-0.9 0.4-0.3 0.1-0.6 0.8-0.7 0.5 0.5 0.2 1.4 0.9 0.6-0.2-1.8 0.2-0.6 0-2.4 0.5-1.9-0.2-0.3 0.1-1.1 0.3-0.7 0.5-2 1.4-1.9 0.4 0z m1.1-0.3l0.2 0.3 0.8 0.2 0.2 0.9-0.1 0.7-1.4-0.2 0-1.4 0.3-0.5z m5.8-0.5l0.4 0.9-1.5-0.2 1.1-0.7z m6-0.2l0.3 0.9-0.1 0.5-0.6-0.2 0.2-1 0.2-0.2z m-12.5-1.2l0.4 0.1-0.4 1.7-0.3-0.8 0.3-1z m7.8 0.6l-0.6 0.7-0.7-0.7 0.4-0.4 0.4 0.4 0.5 0z m-5.6-1.1l0.6 0.2 0.5-0.2 0.7 0.4 1-0.2 0.4 0.2 0.6 1.4-1 0.5 0.5 0.7 0.1 1.1-0.8-0.3-0.1 1.4-0.4-0.2-1.3 2.1-0.2 0.9-1 0.7-0.9-0.8 0.1-0.5 0.8-2.7 0.2-0.9-0.1-0.9-0.5-0.1-0.4-0.5 0.4-1 0.4 0.4 0.6-0.8-0.2-0.9z m36.3-0.3l0.6 0.9 0.7 0.4-0.2 0.5 0.3 1.1-1.3 0-0.5-0.3-0.4-1.4 0.3-0.8 0.5-0.4z m-33.7-3.1l0.7 0.1 0.6 0.5-0.8 0.5-0.6-0.6 0.1-0.5z m3.5-0.2l-0.4 0.5 0 0.5-0.4 0.9-0.4-0.2 0.3-0.7 0.2-1.2 0.5-0.3 0.2 0.5z m-8.3-14.5l0.1 1.9-0.7-0.8 0.6-1.1z m6.4-3l0.4 0.2-0.1 0.9 0.7 0 0.5 2 0.4 0.6-0.7 1 0.2 0.4 0.7 0.5 0.1 0.9 0.5 0.4-0.5 0.7 0.1 0.6-0.3 1.3 0 1.2 0.1 1.1 0.5 1.2-0.5 2-0.5-0.4-0.4 0.6 0.5 0.6-0.2 0.5-0.7 0.4-0.2 0.9-0.7-0.6-0.6 0.4-1.7-0.4 0.3 1.1 1.2 1.5 0.5 1.1-0.3 0.3-0.7 0-0.9 0.4-0.8-0.4-0.4 0.3-0.8-0.4-0.9 0.6-0.9 0-0.7-1.3-0.1-2.9 0.3-1.1-0.2-0.7 0.3-0.7-0.5-0.8 0.2-0.9 0.3-0.6-0.1-1.2-0.4-0.5 0.5-0.4 0.2-0.7 0.7-0.1-0.1-0.5 0.4-0.6-0.5-0.9 0.4-0.1 0-0.8-0.3-0.7-0.4-1.6 0.1-1.4 0.5 0 1.1-1.2 0.8 0 0-0.9 1.1-0.2 0.1 0.3 0.2 0 0.2-0.2 0.1 0.2-0.1 0.3 0 0.1 0.1 0 1.1-0.3 0.6-0.4 0.2-0.7z m-6.9-2.7l0.8 0.4 0 3.2-0.2 0.9-0.8 1-0.1 0.6-0.6 0.8-0.6-1.5-0.1-0.8 0.5-0.7 0.1-1.3 0.4-0.8-0.3-0.4 0.5-1.3 0.4-0.1z m10.6-0.2l-0.5 0.4-0.7 1.1-0.4 0 0-1.2 0.6 0.3 1-0.6z m-2.8-0.9l0.4-0.1 0.2 1-0.8-0.1 0.2-0.8z m46-15.5l0.1 0.8-0.7 0.4-0.2-0.6 0.8-0.6z m-42.4-3.8l0.3 0.9 0.1 1.5-0.2 0.7-0.1 0.9 0.1 1.4 0.5 0.5 0.4 1.5 0.6 0.7-0.3 0.7-0.6-0.2-0.5 0.2 0-1-0.4 0.2-0.8-0.3-0.9 0.6-0.5-0.8-0.3 0.5 0.2 0.6 0.6 0.1 1.2 0.6 1.1 1.7 0.5-0.1-0.1 1-0.8 2 0.1 1.3-0.2 0.4 0.2 1.3-0.2 0.8-0.8 1.3-0.6 0.2-0.6-0.1-0.4 0.5-0.8-0.9-0.3-0.8-0.4 0.3-0.4 1.1 0.1 0.8 1.1 0.8-0.4 0.7-0.6-0.2-0.1-0.7-0.9 0-0.2 0.7 0.1 0.6-0.7 0.4 0 1.1 0.5 0 0 0.7-0.5 0.2-0.2 0-0.3 0-0.1 0 0.1-0.3 0-0.2-1.4-0.3-0.3-0.5 0.3-0.8-0.3-0.5 0-1 0.7-0.1 0.2-0.6-1-0.4 0.2-1.3 0-1.4 0.8-0.4-0.3-1 1.1-0.6-1.1-0.3 0.7-2.1-0.1-0.8 0.7-0.1 0.2-0.6-0.6-0.1-0.5-0.6 0.7-0.9-0.6-0.2 0-0.7 0.3-0.4 0.1-1 0.5-0.7-0.2-0.7 0.9-0.3 0.4-0.5-0.4-0.6 0.1-1 0.9-0.1 0.1-0.6 0.8-0.2-0.5-1 0.2-0.2 1.5-0.3 0.4 0.6 0.6-0.3-0.4-0.6 0.4-0.5 0.8 0.6 0.1-0.8 0.4 0z m-0.5-3.6l0.3 0.5-0.3 0.6-1 0-0.2-0.7 1.2-0.4z m12-16.9l0.4 1.2-0.2 1-0.2 0.9-0.4-0.2 0.3-0.8-0.4-1.9 0.5-0.2z m9.4-26.3l-0.3 1-0.7 0 0.4-0.9 0.6-0.1z", "2": "M409.5 896.6l0.6 1-0.5 1.4-0.8-1 0.2-0.7 0.5-0.7z m72.1-108.7l0.9-0.3 1-0.2 0.6-0.7 0.3 0.7-0.1 0.7-0.7 1.2 0 1.2-0.7 0.2-0.5-1.1-0.9-0.4 0.3-0.6-0.2-0.7z m1.3-0.8l-0.6-0.3-2.1 0.1-0.8-0.6-0.6 0.7 0.5 0.3 0.8-0.1 1 0.7 0.4 0 0.1 0.9-0.2 0.4 0.8 0.6 0.7 1.6-0.3 0.7-0.4 0-0.6 0.8-1.3 0.5-5.1 2.6-1.5 0.9-2.9 1.5-1.8 0.3-1.7 0.6-2.3 1.3-1.9 0.8-1.1-0.7-1.3-0.1-3-0.4-0.6-0.5-1.2 0.2-1.3 0-2.6 0.4-2.5 1-1.3 0.8-1.3 1.5-0.9 1.4-0.4 1.2-0.1 1.1-0.5 1.5-1.6 3-0.1 0.8 0.2 0.8-0.5 0.4-1.4 1.1-1.4 1.7-0.9 1-0.8 0.9-0.1 1 0.4 0.7 0 0.9-0.3 0.2-2.1 1.2-0.7-0.1-2.7 0.4-0.5-0.1-0.7-1.1 0.3-0.6-0.6-1.7 0.6-0.3 0.1-0.5-0.9-1.1-2.6-0.7-0.9 0-1.4 0.1-2.6 0.6-2 0.7-2 0.9-2.3 1.4-1.5 1-0.9 1-1.4 1.7-1.2 2.5-0.4 1.7 0.1 0.4-0.4 0.9-0.5 1.8-2.5 3.2-0.6 1.1-0.5 1.1-0.4 1.8 0.1 1.6-0.1 0.8-0.6 1.4-0.6 2.4 0.1 2.1 0.6 3.6 0.5 1.3 0.1 2.4 0.5 1.9 0.3 0.9 1.1 1.5 0.8 2.8 0.2 0.4 0.9 0.6 0 0.5-0.6 1.7-0.3 3.7-0.1 2.3-0.8 2.1-0.3 1.1-0.3 2 0 1.6 0.2 2.3 0.5 2.6 0.3 1 0.5 0.5 0.8 2.1 0.8 1.7 0.6 1.6 0.3 0.4 0.2 1.3-0.5 2.5-0.1 1.5 0.3 2 1 1.9 1 3 0.5 1-0.8-0.1-0.4-1.8-0.3-0.6-0.3-1.6-1.3-1.7-0.4-0.6-0.9-0.7 0-0.8-1.1-1.2-0.4 0.3 0.1 1.2-0.2 1.7-0.5 0-0.7-1.5-0.5 0.1-0.6 0.6 0 1-0.7 0.8 0.7 0.9 0.5 0.2 0.7 1.2 1 0.2 0.8 0.8 0.6-0.2 2 0.4 0.9 0.4 0.4 1 0.7 0.6 0.6 0 0.1 2-1.4-0.6 0.1-0.7-0.3-0.2-0.3-1.2-0.5-0.6-1-0.6-0.8 0.2-1-0.1-0.2 0-0.2 0-0.2-0.2-0.4-0.3 0-0.1-0.5-0.2-0.7-0.1-0.1-0.2-0.3-0.5-0.3-0.2-0.1 0.1-0.2-0.4-0.8 0.6-1-0.1-0.3-0.3-0.6 0.2 1 0.9 0.6 0.1 0 0.5-1.1-0.1-0.3 1-1.2 0.3 0.1 1.1-1.1 0.5 0.1 0.7 0.6 0.4-0.9 1.3-0.8 0.1-1.8 1.1-1.7-0.1-0.7 0.8-0.9-0.7-0.2 0.8-0.9 0.5 1.1 0.8 1 0.5-1.3 1.2-0.4-0.7-0.6 0-0.5 0.4-0.2-0.7-0.8-0.5 0.4-0.7-0.5-0.9-1.2 0.3-0.4 0.5-0.7-0.3-0.5 0.7-0.7 0-0.8-1.1-0.2-1.1-1.3-0.1-1.5-0.4-1.3 0.1-1.4 0.7 1 0.6 0.6-0.1-0.1 0.8-0.4 1 0.1 0.9 0.9-0.7 0.3 0.5-0.8 0.3-0.1 0.8-1.2 0-0.5 0.3-0.3 0.7-0.5-0.2 0.1 1.3-1.7 0.4-0.9-0.2-0.1-0.6-1.5 0.1-0.4 1.3-0.7 0.3-0.8 1.2 0.2 0.6-0.2 0.8-0.6 0.2-1.2-0.5-0.5 0-0.7 0.4-0.5-0.1-0.5-0.8-1.8-0.7-0.7-0.7-1.2 0.5-1.1-0.2-1.1 1.7 0-1.7-1.7 0-1-0.2-0.8 0.7-1.3 0.3-1.3-0.4-0.3 1.8-1.4-0.4-0.4 0.5-0.7 0.7 0 0.3 0.9 1.9-0.7 0.2-0.7 1.4 0 0.6-0.5 0.7 0.2 0.9-0.3 0.2-0.3 1.4-0.7 0.5-0.4 0.8 0.2 1.1-1 0.6-0.3-0.8-0.7-1 0 2.2-0.7 0.3-0.5-0.1 0 1.6-3.1 0.2-2-1.3-0.7-0.1-0.8-1.4-1.3 0.1 0 0.5-0.9 0-0.2-0.7 0.8-0.3 0.3-0.6-0.2-1.1 0.3-0.4 0.4-1.7 0-1.3 0.7-0.3 0.4 0.3 1 0.1 0-0.7 0.4-0.9 0.4 0.1 0.6-1.4 1.1 1.2 0.4-0.4 0.5 0.5 0.5 0.1 0.6-0.4 0.1 0.7 0.6 0.5 0-0.9-1.2-1.1 0.1-1.6 1.2 0.2 0.1-0.6-0.4-1.2 0-0.6 0.6-0.3 1.3-0.4-0.3-0.6 0.6-0.6 0.1-0.5-0.3-0.7 0.9-0.4 0.1-0.7 1.1-0.2-0.6-1.1 0.2-1.6 0.6-1-0.3-0.3-1.3-0.2-0.3 0.7-0.7-0.7-1-0.6-0.1-0.6-1.1 0.4-0.2-0.6-0.5 0-0.8 0.5 0.2-1.1-1.4-0.8 0.5-1.2-0.3-2.2 0.2-1.5 0.6-1.3 0.4-1.2-0.6-0.5-1.2 0.1-1.1-0.2-2.1 0.4-0.8-0.5-0.7 0.2-0.6 0.9-0.3-0.8 0.4-0.6 0-0.7-1.1-0.3 0-0.7-0.5-0.2-1.3 0.1-0.9 0.4 0-0.5-0.5-0.5-0.1-0.9 0.7 0.3 0.7-0.1 0.2-0.9-0.9-0.8 0.9-1 0.3-0.6-0.4-0.9 0.3-0.6-0.4-1.2-1 0-0.2-0.6-1-0.5-0.1 1.2-1.8-0.4-0.6 1.5-0.6-0.2-0.3-1.6 0.3-0.5 1-0.3-0.2-1.1 0.2-0.8-0.6-0.1-0.4 0.8-1.3 1.1-0.7-0.5-0.1-0.7-0.9 0.2-1.6-0.2-0.3 0.5 0.2 0.8 0.3 0.2 0.2 1-0.8 0.7-1 0.3-0.2 0.8-1.4 0.3-0.5 0.4 0 1.8-0.6-0.8-0.9 0.3 0.1-0.9-0.8 0.1-1.1 0.5 0 1.1-0.7-0.5-0.5 0.5-1.1 0.3-0.3-0.8-0.7 0 0.3 1.3-0.2 0.7-0.5-0.1-0.2-0.5-0.7 0 0.1 0.6-0.3 0.3-0.9 0.1-0.1-0.7 0.4-0.6 0.2-1.1-0.4-1.5-0.4-0.6-0.4 0.5-0.7-0.4 0.6-0.9-1.8-0.2-0.7-0.4-1.1 0.6-0.4-1.1-0.8 0.4-1.2 0.2-0.3-1.9-0.5 0-1.1 1.3-0.6-0.1 0.2-1.4-0.2-0.6-0.7 0.6 0.3 1.2-0.9 0.2-0.4 0.6 0.7 0.3 0.5 0.7-0.3 0.5 0.6 1-0.1 0.6-1.5 0.1-1-0.3-0.5 0.3 0 0.5-0.7 0-0.8-1.1-0.5 0-0.3 1.3-0.7-0.4-0.4-1.5 0.1-0.6-0.5-0.2 1.3-1.4 0.4-1.6 0.8-0.1-0.2-1-0.9-0.8-0.7-0.3 0.2-0.9-0.7-0.5-0.9-0.4-0.6-0.5 0.3-0.9 1.1-0.2-0.1-0.9-0.6-0.2-0.3-1-0.7-0.6-0.3 0.3-1-0.3 0.3-1 0.8 0 0.7-0.3 0.2-0.8 0.6 0.5 2.1 0.1-0.3 1.6 0.1 0.7-0.2 0.5 0.5 0.3 0 1.1 1.5 0.2 0.8 0.3 1-0.1 0.5 1.5 0.6 0.3 0.6-0.6 0.8 0.2 0.8-0.2 0.9 0.1 0.9-0.8 0.3 0.7 0.8-0.7 0.4 0.1 0.7 1.3 0.7 0.2-0.4 1.1 0.7 0.3-0.7 1.1 0.2 0.5 1.4 0 0.2 0.6 0.8-0.5-0.4-1.5 0.7-0.2 0.1-0.9-0.4-0.3-1.1 0.1-0.5-0.3 0.4-0.9-0.8-0.3-1.2-0.2 0.4-1.1 0.4 0 0.8-0.6 0.2-0.7 0.6-0.5-0.2-0.5-1.3 0.5-0.1-0.7 0.9-0.2 0.5-1.2 2.5 0 1.3 0.5 0.3-0.8-0.7-1.9 0.3-1.2-0.7-0.8-0.8 0.4-0.4-0.2 0-1.1-0.6-0.4-1-0.3-0.6 0.4-0.1 0.8 0.5 1.2 0.4 0 0.4 2-1 0.4-0.3-0.8-0.7-0.5 0.1-1.4-2.7-0.2 0.1-2-0.8 0.2-0.5 0.4-1.6 0-1.5-0.8-0.7 0.2-0.2 1.1-0.5 0.5-0.2 0.9 0.3 0.1-0.2 1.3-0.5 0.4-0.7 0-0.8-1.1-0.6 0-1 0.3-0.7-0.2-1.1 0.1-0.4-0.2-0.5-1.1 0.7-0.3-0.1-0.9-1.5-0.5-0.7-1.1 0.2-1.4 0.4-0.1 0.6-0.7 1 0.5 0.1-1.6 0.5 0 0.5-1.2-2.3-0.2-0.9 0.5-0.6-0.1-0.7-1.3-1.5-0.6-0.4-0.9-0.3-0.9-0.6-0.6 0.4-2.8 0.9-2.1-0.6-1.6 1.8-0.2 0.2-1.6 0.3-0.3 0.1-0.8-0.2-1 0.5 0 0.2-1.7-0.1-0.9-0.7 0.1-0.5 0.3-0.4-0.4-0.7 0-1.1-0.2-0.2-0.5 0.9-1.2-0.4-1.3 0-0.4 0.8-0.9 0.9 0.6 0.5 0 0.8 0.6 0.6 1 1.2-0.1 1.3 0.2 0.5 0.4 1.2-0.5 1.6 0-0.2 0.8 1.3 0.2 0.1-0.8 0.9-0.2 0.6-1.4 0-0.9 0.7-0.5 0.2-0.8-0.6-0.2 0.1-0.5 0.7 0 0.2-0.6-0.2-0.9-0.6-0.9-0.7-0.1 0.7-1.1 0.8 0-0.6-0.7 0-0.5-1.1-0.1-0.2-1.4-1.4 0.3-0.2-0.6-0.8-0.8 0.2-0.9-0.5-0.6-0.1-1.2-0.7-0.5-0.4-0.6-0.8-0.9 0-0.5 0.8 0.2 1.1 0 0.1-0.9-0.2-1.8 0.2-0.8-0.1-1.1 1.4-0.4 0.5-0.4 1.1 1 0.3-1.2-0.8-0.7-0.8-0.5 0.3-0.6-0.3-0.4-1-0.2 0-0.9 0.5-1 0.1-1.5-1.3-0.1 0.2-1 1.5-2 0.9-0.5 0.9-0.3 0.5-0.3 1.2-0.4 1.9 0 0.5-0.2 1.1 0.3 2.5 0.2 0.7 0.3 1.1 0 0.6-0.3 1.4 0.5 1.5 0.3 2.7 0.5 0.6-0.2 1.1 1 1.5 0.4 1.1-0.5 2.9 0.8 1.2-0.4 0.7 0 0.4-0.6 0.7-0.1 1.4 0.7 1.5 0 1 0.6 0.5-1.3 0.8-0.1 0.3 1 0.5 0.9 1.3 0.6 0.9-0.3-0.1-0.5 1.3 0 0.6-1.3 0-0.5 0.8-0.6 0.8-0.2 0.5-0.5 0.2-1.1 0.4-0.9-0.3-1.1 0.6-0.4 0.8 0.3 0.8-0.1 0.8-0.8 1.1-0.3 1.2-0.7 1.5 0 1.5 0.3 2.2 0.6 1.5-1.5 1.2 0.2 1 1.3 0.7 0.5 0.9 0.5 0.9 0.2 1.2-0.1 1.1-0.8 1-1.4-0.2-2.3 0.9-0.3 0.3 0.6 0.2 1.2 1 0.4 0.7-0.9-0.6-1.5 0.1-0.9 1.8-0.9 1.1-0.4 1-0.6 0.7 0 0.9 0.2 1.9 0 1.8 0.8 1.1-0.5 0.6-0.7 0.1-1.8 0-1.3-0.6-0.9 0.3-2.7 0.5-0.7-0.4-1.2 0.2-1 1.1-1 0.2-0.5 1.8-0.5 0.9-0.1 2.7-0.2 0.6-0.3 0.3-0.6 1.6-0.8 1.3 0 1.3-0.4 0.9-0.7 1.6 0 0.3-0.4 0.9-0.6 1.4-0.1 0.9-1 0.8-0.3 0.3 0.2 0.9 1.2 1.8-0.3 0.4 0.4 0.6 1.4 0.4 0.4 0.7 0.2 0.7 0 1-1 0.6-1.2 0.9-0.7 1.1-1.1 0.1-1 0.6-1.5-1-0.4-0.2-1-0.7 0-0.8-0.4 0.6-1.5 1-1.1 0.3-1 1.3 0.1 0.1-0.9 0.6 0.2 1-0.1 0.3-0.6 0.8-0.8 0.5-0.7 0.5 0 0 0.9 0.8 0 0.8 0.6 0.7-0.3 1.3 1.9 0.4 1.6 0.2 1.5 0.6 0.5 0.8 0 0.5 1.6 0.9-0.7 0-0.7 0.6 0.3 0.2 0.4 1 0.5 0.1 1 1.1 0.5 2.5 0.4 1.2-0.8-0.4-0.7-1-0.7 0.2-0.4 0.1-1.2 0.8-0.1-0.2-1.1 0.1-0.8-0.5 0-1.3-0.9-0.4 0.5-1-0.4-0.5 1-1.2-0.9-1.5-0.4-1.3-0.5 0.4-0.9 0.6-0.6-0.7-1.6 0.9-0.7 0.2 0.8 0.7 1.1 0.9 0.2 0.2-0.7 0.6 0 0.5-0.7 0-0.9 0.4-0.7 1.8-0.8 0.3-0.5 1.2 0.7 1.2 0.3 0.9 1-0.6 0.4 0.4 0.6 1.2-0.5 1.4 0.1 0.7 0.4 2.6 0.6 0.3 0.4 0.9-0.9 0-0.6 0.2-1-0.3-0.5 0.4-0.5 0.1-0.8 0.7 0.2 0.8-0.2 0.1-0.8-0.4-1.1 0.9-0.2 0.9 0.6 1 0.3 1.4-0.2 0.6-0.7 0.6 0.1 0.8-0.4 2-0.6 0.6-0.1 0.6-0.7-0.3-0.5 0-1.4 0.7-0.7 0.9 0.2 1.7 0 0.7-0.6 1.2-1.9 0.7 0.2 0.2 0.6 1.2 0.5 1.1-0.3 0.1-0.3 0.7-0.4 1.8-2.4 0.3-3.2 0.8-1.2-0.8-0.6 0.3-0.8 0.8-0.7 0.7-1.3 0.6-0.8 0-1.1 0.3-0.4 1-0.5 0.4-0.6 1.8-0.2 0.8-0.6 0.2-0.6 0.9-0.7 0.8 0.1 0.4-0.4 0.6-0.1 0.4-0.5-0.4-0.9-0.8-0.8 0.9-0.7 0.5-0.9 1.1-0.5 0.5 0 1.8-0.6 0.5-0.4 0.7-0.2 2.3-1.4 0-0.8 0.8-0.4 0.7 0.4 0.5 0 0.4-0.7 0.7 0.5 1.2 0.1 0.1 0.5 1.1-0.2 0.5 1.1 0.6 0 0.8 0.6 0.6 0 0.2 0.5 0.8-0.3 0.2-0.8-0.5-0.9 0.3-0.5 0.7-0.4 0.6 0.7 0.6-0.4 0.5 0.2 0.2-1.3-0.3-0.4 0-1.8 0.8 0.7 0.3-0.6-0.6-0.8-1.3-0.4-0.1-0.8 0.9-0.7-0.1-0.6 0.2-1.2 1.1-0.2 0.5-0.5 0.3-0.8-0.3-0.4-1.3-0.1 0.5-0.8 0.6-0.3 0.2-0.7-0.7-1.4 0.5-0.4 0.7-1.1 1-0.9 0.3-0.7 1.3-1.5 0.3 0.8 0.5 0.4 0.9 0 0.1 1.3-0.4 0.5 0.5 0.4 0.8 0.2-0.6 1.1 0 0.6 0.7 0.1 1.5 0.8-0.3 1.7-0.2 1.4 0.1 0.8 0.7 0.3 0.8 0.7 0.5-0.5-0.1-0.5 0.7-1.2 1.2-0.2 0.1-0.4 1.1-0.2 0.6-0.5 0.5-0.1 0.6-0.9-0.2-0.6 0.3-0.7-0.4-1 0.8-0.7 0.7 0.2 1.7 0.9 0.5-0.2 0.2 0.8-0.2 0.4 0.6 0.9 0.9-0.2 0.2 0.3 0.9-0.2 0.6 0.1 0.5-0.7 0.7-0.1 0.9 0.2 0.6-0.2 0.3-0.5-0.8-1-0.2-0.6-0.7-0.4 1.2-1.1 0.8-1.4 0.5-0.6-0.6-0.4-0.7 0.3-0.6-0.5-0.3-0.5 0.4-0.5-1-0.4 0.5-0.6-0.3-1.2 1.3-0.6 0.9-1.8 0.4-0.3 1.5-2.1 0.6 0.5 0.6-0.1 0.6 0.6 1.3-0.2 0.5-0.4 1 0.1 0.4-1.2 0.9-0.3 0.6 0 1.3-0.3 0.4-0.5 0.9-0.4-0.1-0.6 0.5-0.4-0.8-0.4-1.4-1.8 0.6-0.3-0.1-0.9-1.2-0.1-0.4-0.4-0.2-0.8 0.7 0.1 0.2-0.7 0.7-0.1 0.2 0.5 0.9-0.2 0.7 0.2 0.2 0.6 1 1.1 0.7-0.4-0.5-0.8 0-0.6 0.9-0.1 0.1-0.9-0.4-0.4-0.2-1.2 0.6-0.2 0.5 0.8 0.4-0.4 0.3 1.4-0.7 0 0.1 0.5 1.2 0.2 0.1-0.8 0.6-0.8 0.9 0 0.1-0.9 0.8-0.6-0.3-1 0.8-0.8 0.9 1 0.4 1 0 0.4 0.9 1.2 0.6 1 0.2 1.1 0.7 0.3 0.6 2.1 0.9 0.6 0.2-0.6-0.5-1-0.4 0.1-0.3-1.5 1.6-0.8 0.9 2.1-0.1 0.5 0.8 0.9 0.2 0.8-0.2 0.5 0.3 0.8 0.7 0.5 0.2 0.7 1.3 0.1 0.8 0.3 1.7 0.3 0.9-0.2 1.4 0.8 0.6 1.1 0.8 0.2 1.5-0.7 0.9-0.3 0.7 0.2 1.2-0.7 1 0.5 0.5 0 0.8-0.6 0.6 0.3 1.1-0.4-0.1-0.6 0.5-0.1-0.4-1.8 1 0.4 0.8-1.1 0.8-0.3 0.7-0.8-0.5-0.9 0.9-1.1-0.2-0.3-0.3-0.3-0.1-0.2 0-0.2-0.3-0.6 0.2 0 0 0.1 0.6 0.4 1.1 0.6 0.2-0.4 0-0.5 0.4-0.5 0.3-0.2 0.4-0.4 1.3-0.3 0.4-0.5 0.3-0.2 0.1 0.2 0.3-0.1-0.2 1 0.5 0.8 0.4-0.7 0.3-0.5 0.1-0.2 0.4-0.2 0.1 0.1 0.1 0.2 0.2-0.3 0.4 0 0.3 0.2 0.3-0.5-0.7-0.7-0.3 0.3-0.4 0.1-0.2-0.6-0.4-0.1-0.3-0.8 1.1-0.2 0.6 0 0.5-0.1 0.2-0.4-0.1-0.8 0.6 0.2 0.5 0 0.2 0-0.2 0.9-0.1 0.1 0.2 0.5-0.1 0 0.8 0.5 0.4 0.2 1 0.7-2.5 3.5-0.8 0.3 0.2 0.5-1.9 1.8-0.9 1-0.4 1.3-0.7 0.7 0 0.8-0.8 0.9-1.4 1.1-1.7 2.2 0 0.6-2.7 2.7-0.2 1.1-2.4 2-2.3 2.2-2.3 2.3-0.9 1.8 0.1 0.5-2 1.3-2 1-2.1 1.2-2.2 0.7-0.8 0.7-2.6 1.1-2.5 1.3-1.5 0.9-0.9 0.8-2.5 1.7-0.3 0.6 0 0.5-1 1.3-1.5 0.8-1.2 0.9 0.1 0.5-0.4 0.5-0.8 0.6-0.3 1.7-0.7 0.6-0.2 0.5-1 0.8-0.5 1.2-0.9 0.5-0.5 0.5-0.1 0.7-1.3 1.1-0.6 0.4-0.2 0.8-0.7 0.6-1.3 0.7-0.5 0.5-2 0.6-0.8 0.4-1.6 0.7-0.9 0.5-0.7 1.1-1.1 0.3-1 0.6-1.4 0.6-0.5 0.4-1 0.3-2.8 1.3-1.9 1-2.7 1.6-3.1 2-1.4 1-1.8 1.5-3.7 3.6-0.9 1.1-0.9 1.7 0.2 0.6-0.5 0.7 0.1 0.6-0.7 0.2 0 1 0.6 1.1 0.4-0.1 1.1 0.8 0.8 0 0.8 0.3-0.3 0.9 0.2 0.4-0.5 2.1 0 0.6-0.8 0.1-0.7 0.7z", "3": "M924.8 419.9l-0.1-1-0.7-0.8 0.1-0.8 0.8-1.1-0.9-0.5-0.6-1.6-0.5-1 1-0.8 0.6 0 0.1-1.3-0.5-0.5-0.4-1.1 0.3-0.3-0.7-0.8 0.2-0.6-0.2-1.4 0.6 0.3 0.9-0.3 0.3 0.5 1-0.8 0-0.2 1.1-1 2-1.2 1.3-0.2 0.5-0.5 1.3-0.2 0.3-0.7 0.1-1.4-0.4-0.7 1-1.4 1.6-1 1.4 0.8 0.5 0.8 1.6-0.3 1.6-0.7 1.4-0.1 0.2-0.3 1.8-0.5 0.9 0 1.7-0.6 0.4 1.1 0.9 0.1 0.3-1.1 1.9-0.9 0.3-0.8 0.8-0.6 0.7-0.9-0.5-1.1-0.9-1.2-1.4-0.4-0.7 0.2-0.4 1.1-0.6-1.2-0.6 0.6-0.5-0.1 0.3-1.2 0.6-0.4 0.1-1.1 0-2-0.6 0-1.4-1.1 0.1-0.8-0.9-0.2-0.4-1 0.5-0.6-0.7-0.5 0-0.7 0.4-0.5-0.7-0.3 0-0.8-0.5-0.4 1-0.4-0.2-0.6 0.7-0.7 0.8-1.3 0.9-1 0.9-0.3 1.6-1.7 1.1-1.5-0.1-0.6 0.8-1-5.2-0.4-7.4 0.8-0.7 0.6-0.5 0-0.3 0.7-0.7 0.4-0.9 1.2-4.5 1.5-2.3-1.1-2.8 0.9-6.3 2.2-0.4 0.5-1.8 0.3-1.9 0.5-1.6 0.6-0.8 0.1-0.4 1.1-1 0.6-0.8-0.1-1.8 1.3-0.8-0.2-0.8 0.1-1.7 1-0.3 0.4-1.6 0.3-0.6 0.6-1.6 0.4-0.9 0.7-1.6 0.3-1.1-1.2-0.6 0.6-0.6-0.1-0.7 0.5-1.8-0.5-0.9-0.1-1.1-0.9 0.3-0.8-1 0.1-0.7 1.1 0.3 0.1 0.1 1 1.1 0.7 0 1.4-2.1 0.9-1.3 0.8 0.1 0.4-2.6 2.4-0.8 1.6-2.1 1.1-1.5 1.5-0.6 0.8-1.3 1.3-1.1 1.6-1 1-0.4 0.1-0.7 0.8 0 0.6 0.6 0.6 0.1 0.7 0.3 0.8-0.9 0.4-1.4 1-1.7 0.9-1.5 1.8-1.7 0.3-1.4 0.4-2 0.2-1.2 0.4-0.8 0-0.7-0.6-3.4-0.4-2.7 0.3-1.6 0.3-1.3 0.4-2.5 0.4-0.6 0.5-0.8-0.4-1.7 0.3-0.7-0.5-2.8-1.3 0-0.8-1.5-0.9-1.2-0.2-2.3-0.7-1.9 0.2-1.9-0.4-0.5 1 0 0.9-2 1-1.1 0.1-1.7-0.3-2 0.2-0.7 0.7-0.4 0-0.4 0.7-1.6-0.4-1.8 0.4 0.1 0.6-1 0.3-0.7-0.4-2 0.8-2.6 0-0.4-0.1 0.3-1.5-0.1-1.6-0.4-0.3 0-1-0.8-0.5-0.1-0.7-0.4-0.5-0.7 0-0.5-1-0.2-1.4 0.4-0.9-0.4-0.6 0.1-0.7 1-0.6 0.5-1.3-0.2-0.9-0.8-0.6 1-0.6 1.1 0.3 0.6-0.3-0.1-0.6-1.3-0.7-0.7-0.6 0.1-0.7-0.4-0.5-0.1-0.8 0.3-0.8-0.5-0.5-0.1-0.9-0.5-0.2-0.2-0.7 0-0.8-2.7 0.7-0.5-0.4-0.9 0.1-1.7-0.5-0.7 0.5-0.6-0.1-1.2 0.3-0.6-0.3-1.5-0.1-0.1-0.6-0.7-0.5-1.2 0.8-0.4-0.6-0.8-0.6-0.3-1.1-0.5 0.1-1.2-1.7 0.6-0.6-0.7-1.3 0.3-0.7 0.8-0.8 0.1-0.4 1.1-0.9 0.2-1.6 0.3-0.4-0.3-0.5-0.1-1.2-1-0.7-1.1 0.2-0.7-1.2 0.8-0.6 0.8 0 0.5 0.3 2.1-0.1 0.9 1.3 0.5 0.3 1.2 0.4 0.9 0.1 1.1-0.3 0.8 0.1 0.2 1 0.4 0.2 0.5 1.5 0.7 0.6 1-0.2 0.3 0.4 0.9-0.5 0.4-0.8 1-0.8 1.8 0.5 0.6-0.1 1-0.8 1.2-1.1 1.2-1.1 1.5-0.7 1.9-0.2 0.4 0.3 0.6 1.8 0.8 1.1 2.5-0.6 0.1-0.8 1-0.3 1.1 0.8 0.3-0.1 1.3-1.3 0.8-0.1 1 0.9 0.5-0.2 0.9-1.3 0.7-0.8 2.2-0.9 1-1.3 1.4-2.2-1.6-2.2-1.1-0.6 0.6-2.1 0.9-0.8 1.1-0.5 1.5-1.3 0.6-0.7 0.7 0.2 0 0.9 2.6-1.2 0.6-1.2 1.7-1 0.8 0.4 0.5 0.8 1.1-1.3-0.4-1.4 1.7-0.3 0.8 0 1-0.7 1 0.3 1.4 0 1-0.9-0.2-0.8 0.5-1.5-1.4-1-0.3-0.5 0.8-0.5 0.8-1 1.6-1 0.4-1.5 0.6-0.9-0.2-1.3 0.9-0.4 0.2-0.9 2.7-0.8 1.2-0.9 0.9 0.9 0.2-0.9 0.6-0.3 0.8 0.4 0.2 0.5 2.8 0.2 1.1-0.2 1.6-0.7 1.5-0.4 1.5 0.8 2.4-1.5 0.7 0.1 1.3 1.1 1.1 0 0.7-1.1 0.3-0.7 0.1-1.1 1.1-1-0.5-0.9 0.5-0.8-0.2-0.8 1.2-0.5 0.5-0.8 1.2-1.2 2-1.4 0.6-0.6 0.1-0.7 0.5-0.7 0-0.6 0.4-1.3 1-1.7 1.5-1.3 1-1.2 2.2-0.1 0.4-0.3 0.3-1.3 1.4-0.8 0.6-0.6 2.2 0.4 1.3-0.1 0.8-0.4 0.5-0.8 0.1-1 1.3-1 0.2-0.5 0.3-1.4 0.5 0.1 1.2 0.8 1.2 0.9 1.9 2 0.8 1 0.2 0.7-0.1 1.1 0.1 0.6 1.7-0.7 0.9 0 1.6 0.8 1.6 0.1 1.5 1.1-0.2-1.5 1.2 0.7 2 0.4 0.8 1 1.9 0.3 2.5 0 0 1.6 0.5 0.4 1.3-0.2 1.4 0.7 2.3 0.4 0.3-0.2 1.2 0.1 1.1-2 0.1-1.4 0.4-0.7 1.5 0.5 0-2-0.3-1.1 0.3-0.3 1.4 0 0-1 0.4-0.8 1.1 0.5 1.4-0.8 1-1.2 0.9-0.1 0.5-0.5 0.1-0.5 1.1-1.1 0.5 0.8 1.2-0.7 0.4 0 1.4-1.4 2.6 0.3 1.3-1.1 0.7-0.4 1.4-1.5 0.8-0.2 0.5 0.3 0.7 1.1 1.2 1.2 1.2 2.1-0.1 1.4 0.7 0.6 0.3 0.7 0.8 1.3 0.6 0.4 1.4-0.1 0.7-1 1.1-0.3 0.6-0.7 0.4 0.1 0.6 1-0.2 0.9-0.5 0.7-0.5 1.4-0.4 0.4-1.3 0.1-1.6 0.3-0.4 0.4-1.1 0.5-0.6 1.2-1 0.8-1.6 0.2 0.9 1.1 0.5 1.3 0.7 1.2-0.1 0.8-0.9 0.5-0.3 0.7 0.6 0.6 0.1 0.6 2.1-0.9 0.7-0.5 0.2-0.6 1.3-1.6 1-0.5 0.8-0.8 3.1-0.2 0.8-0.3 0.6-0.6 1.6-0.7-1.6 3.3 0.3 1.1 1.2 0 0.1 0.7 0.5 1.1-0.1 1.4 1.6 2.4 0.9 1 0.2 1.2-1 1.7-0.9 0.4-0.9 0-1.5 0.9-0.6 0.2 0.8 1.6-0.8 0.8-0.9 0.6-0.8 0.8-0.5-0.3-0.2 1.2-1.6 0.1-1 1.2 1.2 0.8 0.4 0.5-0.2 0.6-1.1 0.7-2.3 1.8 0 0.2 1.3 0.3 0.5 0.7 1.8-0.3 0.3 1.1 0.6 0.8 0.8-0.3 0.3-1.5 0.9-1.1 0.8-0.2 1 0.2 1.4-0.9 0.3-0.4 1.3-0.5 2.3 0 0.6 0.5 1.2 0.8 0.6 0 0.8 0.6 0.5 1.6 1.8 0.3 0.9 0 0.3-0.4 1.3-0.3 0.7 0.9 0.2 0.7 0.9 0.2 0.8 0.6 0.7 0.3 0.9-0.4 1-1.2 1.4-0.5 1.1 0.5 1.2 1.2 0.3 0.9 0.8 0.3 1.1-0.2 0.6 1 1.4-0.1 0.8 0.5 0.2 0.5 0.7 0.1 1.4 0.9 0.9 1-0.3 0.3-0.7-0.3-1.4 1.4-0.2 0.6 0.5 1.1-1 1 0.1 0.9 0.7 0.2 1.1-0.1 0.4 1.1 0.8 0.2 0.4 0.7-0.7 0.2-0.4 1-0.1 1.6 0.4 0.5-0.3 0.5 0.3 0.8-0.8 0.5-0.7-0.4-0.8 0.2 0.1-0.9-0.5-0.7-1.8 0.8-0.7 0.8-1.1 1-1.5 1.6-0.8 0.3-0.4 0.6-0.8 0.2 0.1 0.7-0.3 1-0.9-0.4-1.1 0.3-0.7 0.5-0.4 1.1-0.7 0.8-0.2 0.7-0.7-0.1-1 0.7-0.3 1-0.8 0.4 0.1 1 0.5 0.2 0.1 1.2 0.7 1.1-0.8 1.6-0.1 1 0.8 0.4 0.2 0.9 0.9 0.5 0.3 0.7-0.2 0.4 0.5 0.9 0.5 0.3 0.2 1 1.2 0.8 0.1 0.7 1.3 1.4 0.5 0.2 0 1 0.7 0.5 0.4 0.9 0.8 0.3 0.6 0.9 0.1 0.7-0.5 0.4-0.4 0.9-0.5 0-0.7-0.7-1.1 0.4-0.5 0-1.1-1.2-1.1-0.5-0.5-0.5-1-0.2-1.2-0.1-1.8-0.9-0.1-0.8 0.9-0.7-0.2-1.1-0.6-0.1-0.4-0.4-0.2-1-0.4-0.2-0.7-0.7-0.5-1-1-0.4-1.1 0-1-0.6-0.6 0.6-0.8-0.3-0.8 0.2-0.9-0.2-0.8 0.6 0.1 0.5-1.3 0.7-1.1 1.1-1-0.4-1-0.2-1.3 0.1-1.4 0.6-1-0.2-0.5 0.5-1.3-0.6-0.7 0.3-0.4 0.6-1.5-0.2-0.6 0.6-0.7 0.2-0.5 0.4-0.6 0-1.7 0.8-0.5 0.1-0.5 0.5-1.7 0.8-0.6 1.6-1.3 1.7-0.8 1.6-2.7 1.8-0.7 0-0.6 0.2-0.8-0.2-1.2 1.2-0.7 1 0.1 0.7-0.4 0.6 0.1 0.9-0.8 0.7-0.9 0.1-1.1-0.9-0.7 1-0.5 0.2-0.2 1.1-0.7 1.1-1.2-0.2-0.4-0.4-0.6-0.1-1.1 1-0.4 1.2-0.6 1-0.7 0.2-1.4 2-0.6 0-1.4 0.8-0.6 0-1.5 0.8-1.1-0.3-0.4-0.9-0.7 0z", "4": "M741.5 463.6l0.2 0.4-0.1 0.5 0.2 1-0.4 0.4-0.4 0.1 0.2-1.6 0.3-0.8z m181.8-57.3l-1.4 1.4-1.3 0.9-0.2 0.6-0.8 0.5-1.7 0.6-0.5 0.5-1.2 0.3-1-1-0.8 0.2-0.7-0.2-0.9 0.4-0.6 0.7-0.6 1.3-1.1 1-0.2 1.1-0.4 0.8-1 0.4-0.6 0.9-0.3-0.4-0.5 0.7-1.6 1.2-1.1 0.3-1.1 0.1-0.4-0.7-0.5 0.5-0.1 0.9-1.6-0.3-0.8 0.4-0.2 0.5-0.6 0.5-1 0.2-0.5 1.1-1.5 0.9-0.1 0.6 0.3 0.7-0.7 2-0.6 0.7-0.9 0.1 0 0.5-0.9 0.6-0.3 0.7-0.8-0.7-0.2-1.1-0.2-2.1-0.6 0.8-0.8 1.2-1 0.8-0.3 0.8-0.5 0.4-0.4 1.1 0.1 1.6-0.5 1.1 0 0.8-0.9-0.1-1 0.6-0.2 0.6-1.1 1.9-0.6 0.2-0.4 0.8-0.2 1.2-0.8 0.6-0.4 1.1 0.2 0.4-0.7 2.4 0.2 0.4-0.9 1.2-0.3 1.3 0 1.3 0.4 0.5 0.5 1.3-0.8 0.8-1.5 0.7-0.7 0.8-0.4 0.7-1.1-0.6-0.9 0.6-0.2 0.8-0.8 0.4-0.5-1.2 0.6-2.4-0.4-1.8-0.6 0.1-0.6 0.7-2.2 1 0.1 0.8 0.6 1.4-0.8 0.4-0.2 0.5-1 0.2-0.7 0.7-0.2 0.9-1.3 0.9-1.3 1.2-0.1 0.9-0.8 0.7-1.2 1.4-0.7 0.1-1.6 0.9-0.4 0.9-0.5 0.1-0.6 0.9-1 0.3-0.4 0.5 0.9 0.8 0.4 1 0.7 0.6 0 0.6 0.9 0.6 0.6 0 0.8 0.4 0.2 1.2 0.5 1.2-0.9 1.3 0.1 0.8 0.6 0.6-0.4 0.5-0.6 0.1-1.4 1.1-0.5 0.8 0 0.4-1.2 1.9-0.2 0.6 0.1 0.8-0.5 1.8-0.4 0.2-0.9 1.6-1 0-0.7 1.1 0 0.6 0.5 1.4-0.1 0.6-0.5 0.2 0.3 1-0.7 0.7 0 0.6-1.3 1.4-0.1 1.5-1.2 0.5-0.9-0.5-0.6 0.2-0.8 3.5 0.3 1.6-0.5 0.7 0.1 1.3-0.4 0.6 0.8 0.5-1.6 1.4 0.1 1-0.6 0.8 0.4 0.8-0.4 0.6-0.2 1.2 0.3 0.7-1.3 0.3-0.7-0.3-0.7 0.5-0.8 0-0.9-0.6-0.2 0.7-0.7-0.3-0.7 0.1-0.6 0.6-1.4-1.4-1.4-3.8-1.2 2.6-0.5 1.8-0.8 1.8-1.1 0.5-0.5 0.6-0.6-0.3-0.2 0.9 0 0.9-0.3 1.3-0.8 0.3-1.3 0-0.1 0.8-0.6 1.8-0.6 0.1-0.1 0.1 0.1 0.3-0.1 0-0.2-0.2 0 0.2-0.5 0-0.1 0.1-0.1 0.1 0 0.1-0.3 0.4-0.3 0.3-0.1 0-0.7-0.7-0.2 0.1 0-0.4-0.1-0.5-0.5-0.7 0.1-2.2-1.5 0.1-2.2-0.1-0.6 0-2.8 0.1 1.7-4.2 0.3-1-0.6-1.1 0.1-0.7-0.9-0.9 0-1.6 0.1-2.2 0.2-1.4 0.3-1.1 0.1-0.9 0.4-1.4 1.2-1.8-0.5-0.2 0.4-0.7-0.1-0.8-0.4-0.9-0.1-0.9-0.8-0.1-0.4-0.6 0-0.9 0.2-0.4-0.1-1 2.3 0.1 1.2 1.1 0.6-0.1 1 1 0.7-0.3 1.1 0 1.5-0.4 0.3-1.4-0.2-1-1.2-0.3 0.4-0.7-0.4-0.5-0.8 0.4-0.4-1.1 0.3-1.2-0.3-0.2 0.9-0.3 0.5-0.6 0.5-1.1 0.1-0.8 1.5 0-0.1-1.3 1 0.4 1 0 1.3 0.5 0.8-1.3 0.4-0.1 0.2-0.7 0.5-0.3 2.4-1 1.1 0.2 0.8-0.7-1-0.5-0.3-0.6 0.2-0.7 0.8-0.7-0.3-0.8 0-0.9-0.8-0.1-0.9-1.5-0.6 0-0.6-0.5-0.9-1.1-0.5 0.2-0.3-0.8-1.5 0.5 0-1.1-0.3-0.9-0.9 0.3-0.1-0.6 0.4-0.6 1.4-0.7 0.8-0.9 0.6-1.8-0.7-0.1-0.4 0.7-0.7 0.2-0.7 0.4-0.9-0.8-0.2-1.4-2-0.6-0.6-1.4-0.5-0.7-1.1-0.2-0.2-0.8 0.5-0.4-0.9-0.8-1.5-0.2-1.1 0.8-1.1 0.1-1.3 0.5-1.1 0.1-0.4-0.3-0.5 0.7-1.4 1.1-0.5-1.6 0.3-1.3-0.4-1.5 0-1.1 1-1.5 0-0.7 1.5-1.2-0.1-0.3-1.4 0.1-0.7-0.3-0.2-1.1 0.4-0.8 0.8-0.7 0.4-0.1 1.8-1.6 1.6-1.8-1 0.4-1.1 0.1-1-0.3-0.7 0.1-0.4-0.4-1 0.5-0.6 0.7-1.3-0.1-1.4 0.6-0.6-0.2-1.5-0.1-0.4 0.6-1.6 0.4-0.2 0.6-0.7-1-0.8-0.1-0.5-1.1 0.3-1.5-2-0.8-1 1.2-0.4-0.2-0.6 0.8-1 0.4-0.3 1.1-0.1 2.9-1.7 1.9-0.7-0.3-1.3-1 0.7-0.2 0.2-0.8-0.4-0.8 0.2-1.4-0.4-0.1-0.8 0.2-0.9-0.3-0.1 1-0.5 1-0.5 0.5-0.6 0.2 0 0.6-0.6 0.8 0 0.8-0.6 0.3-0.5 1.2-1 0.7-1-0.5-2.1 0.6-0.6 0.3-0.9 1.3-1 1.9-0.7 0-1.1 0.9-1.2-0.6 0-0.9-0.3-0.5 0.8-2.5-1.7-0.3-1.1 0.7-1.9 0.2 0-0.8-0.6-0.1-0.9 1-0.7-0.1 0.4-1.2 0.5-0.3-0.5-0.7-1-0.2-0.6 0.1-0.3-1.8-1.4-0.3 0.1 1.1-1.2-1.5-0.5 0.4-1.7-0.2-0.8 0.2-0.6 1.3-1.3-0.3 0-1-0.9-0.4-1 0.1-0.3 0.5-1.7 0.7 0.1-0.7-1.7-0.8-0.3 0.7-0.6 0.4-1 1.1-0.2-0.4 0.5-0.8 0.1-1-1-1.5-1-0.7-0.7 0.6-1 0.4-1.1-0.9-1 0.1-1.2 0.8-0.2 0.6-1.3 0.4-2.5 0.3-0.7-0.1-2.7 0-0.5 0.6-0.1 0.1-0.2 0.4-0.3 0.2-0.1 0.2-0.2 0-0.3 0.1-0.2 0.2-0.2 0.4-0.8 0.2-0.5 0.2 0 0.7 0.1 0 0.2 0.2-0.4 0.6-0.5 0.2 0.2 0.1-1.2 0.6-0.6 0-0.1 0.2-0.1 0.2 0.3 0.2 0 1 0.1 0.4-1.4 1.3-0.5-0.2-0.2 0.6 0.6 0.8 0.2 0.2 0.5 0.5 0.3 0.4 0.2 0.7 1.1 0.8 0.7 0.6 0.2 0 0.4 0.5-0.4 0.8-0.4 0.1-0.5-0.2-0.2 0.6-1.9 0.5-1.1 0.2-0.3 0.3-0.2 0.2 0.5-2.4 0-0.9-0.4-1-0.7-1 0-1-0.5-0.1-0.3-0.9 0.5-0.8-0.5-1.9-0.5-0.4 0.5-0.7 0-0.6 0.8-1.4 1-1.1 0.1-1-1.8 0.1 0.3-0.8 1.1-0.3-0.7-0.6-0.2-0.7-0.7-0.2-0.4-1.2-1-1.8 0.1-0.4-1-0.5 0.4-0.4-0.8-1.3-0.9 0.1-0.1-0.4 0.5-0.3 0-0.1-0.6 0-0.3 0.1-0.2-0.1-0.2-0.5 0.5 0 0.2-0.1-0.1-0.5 0.4 0 0-0.5-0.3 0.1-0.6 0 0-0.1 0.3 0 0.2-0.4 0.2-0.1 0.3-0.3-0.4-0.3 0-0.3-0.2-0.1-0.3-0.1 0.3-0.2 0.3 0.2 0.5 0 0-0.2-0.4-0.9-0.2-0.5 0.2-0.2 0 0.4 0.8 0.2 0.4 0.1 0.1-0.1-0.3-1.2 0.4 0.2 0.6-0.5 0.1-0.9 1.5-0.5 1-0.6-0.4-1 0.4-0.9 0.4-0.6 0.1-0.6-0.6-0.9 0-1.3 0.3-0.3 0.1-1.5 0.4-0.6 0-1.1-0.5 0-0.2-0.7 0.6-0.4-0.2-0.5 0.1-1.1-0.5-0.7 0.2-1.3 0.9 0.5 2.4 0 1.5-0.4 1.8 0.2 2.5-0.8 2-0.8-0.2-1.3 0.5-1.1 1-0.9 1.3 0.1 0.9 0.2 0.7-0.1 1.2-0.9 0.3-0.8 1.9-0.2 0.4 0.1 1.1 1 3.8 2.8 2.2 0.3 0.7 0.7 1-0.3 0.7 0.5 1.2 0 0.2-0.3 2.1 0.1 2.3-0.2 0.9 0 3.4-0.4 2 0.4 1.2-1.5 1.4 0.4 1.7-0.1 2.8 0.2 1.1 0.8 1.4 0.2 1.5-0.9 0.8-1.3 0.2 0 2.4 1.7 0.5 0.1 3.3-0.6 1.2-0.6 1.8 0.6 0.7-0.3 1 0 2.5-1.5 1.1-0.9 0.7-1.4 1.5-0.2 1.9 1.1 1.1 1.2 1.1 0.2 1.3 0.2 1.4-0.8 0.4-1 0.4 0.1 2.6 0 2-0.8 0.7 0.4 1-0.3-0.1-0.6 1.8-0.4 1.6 0.4 0.4-0.7 0.4 0 0.7-0.7 2-0.2 1.7 0.3 1.1-0.1 2-1 0-0.9 0.5-1 1.9 0.4 1.9-0.2 2.3 0.7 1.2 0.2 1.5 0.9 0 0.8 2.8 1.3 0.7 0.5 1.7-0.3 0.8 0.4 0.6-0.5 2.5-0.4 1.3-0.4 1.6-0.3 2.7-0.3 3.4 0.4 0.7 0.6 0.8 0 1.2-0.4 2-0.2 1.4-0.4 1.7-0.3 1.5-1.8 1.7-0.9 1.4-1 0.9-0.4-0.3-0.8-0.1-0.7-0.6-0.6 0-0.6 0.7-0.8 0.4-0.1 1-1 1.1-1.6 1.3-1.3 0.6-0.8 1.5-1.5 2.1-1.1 0.8-1.6 2.6-2.4-0.1-0.4 1.3-0.8 2.1-0.9 0-1.4-1.1-0.7-0.1-1-0.3-0.1 0.7-1.1 1-0.1-0.3 0.8 1.1 0.9 0.9 0.1 1.8 0.5 0.7-0.5 0.6 0.1 0.6-0.6 1.1 1.2 1.6-0.3 0.9-0.7 1.6-0.4 0.6-0.6 1.6-0.3 0.3-0.4 1.7-1 0.8-0.1 0.8 0.2 1.8-1.3 0.8 0.1 1-0.6 0.4-1.1 0.8-0.1 1.6-0.6 1.9-0.5 1.8-0.3 0.4-0.5 6.3-2.2 2.8-0.9 2.3 1.1 4.5-1.5 0.9-1.2 0.7-0.4 0.3-0.7 0.5 0 0.7-0.6 7.4-0.8 5.2 0.4-0.8 1 0.1 0.6-1.1 1.5-1.6 1.7-0.9 0.3-0.9 1-0.8 1.3-0.7 0.7 0.2 0.6-1 0.4 0.5 0.4 0 0.8 0.7 0.3-0.4 0.5 0 0.7 0.7 0.5-0.5 0.6 0.4 1 0.9 0.2-0.1 0.8 1.4 1.1 0.6 0 0 2-0.1 1.1-0.6 0.4-0.3 1.2 0.5 0.1 0.6-0.6 0.6 1.2 0.4-1.1 0.7-0.2 1.4 0.4 0.9 1.2 0.5 1.1-0.7 0.9-0.8 0.6-0.3 0.8-1.9 0.9-0.3 1.1-0.9-0.1-0.4-1.1-1.7 0.6-0.9 0-1.8 0.5-0.2 0.3-1.4 0.1-1.6 0.7-1.6 0.3-0.5-0.8-1.4-0.8-1.6 1-1 1.4 0.4 0.7-0.1 1.4-0.3 0.7-1.3 0.2-0.5 0.5-1.3 0.2-2 1.2-1.1 1 0 0.2-1 0.8-0.3-0.5-0.9 0.3-0.6-0.3z", "5": "M681.2 425.7l0.9 0.9 1.2-0.4 0.1-0.6 0.6-0.2 0.7 0.3 0.8-0.6 0.1 0.7-1.4 0.9-0.5 0.6 0.5 0.8 1 0.2 0.2 0.8 0.5-0.1 0.3 0.6 0.1 0.7-0.8 0.8 0 0.3 0.5 0.4 0.3 0 0.5-0.1 0.4 0.7 0.3 0.1 0 0.2-0.4 0.2-0.2 0.6-0.1-0.1-0.1-0.1-1.2 1-0.1 0.5-0.2 0.3-0.3 0.3-0.3 0.1-0.7 0.1-0.3 0.5-0.4 0.2-0.2 0-0.7 0.5-0.4 0.7-0.2-0.1-0.1 0.2-0.4 0.3-0.1 0.1-0.3 0.2-0.1 0.2-0.1 0.3-0.5 0.3-0.1 0.4-0.4 0.1-0.7-0.2-0.1 0.3-0.8 0.6 0.1 0.5-0.3-0.1-0.3 0.1-0.5-0.7-0.6 0.4 0.1 0.4 0 0.3 0 0.2 0.1 0.6-0.5 0.3 0.5 0.4 0.1 0.3-0.2 0.1-0.3-0.1-0.7 0-0.2 0.6-0.4-0.3-0.1-0.5-0.8 0.4-0.1-0.1-0.1 0.4-0.4 0.2-0.9 0.8-0.3 0.5-0.3 1.1-0.2 0.4 0 0.3 0.1 0.8-0.1 0.4-0.1 0.2 0.1 0.2 0 0.4-0.7 0.1 0.3 0.6 0 1 0.3 0.6 1.6 0.4 0.5-0.2 0.9 0.5-0.8 0.7 0.8 0.7-0.5 0.6 0.1 0.7 1.3 0.9 0.2 0.5 1.2 1 2.4 1 0 0.4-0.2 1.1 0.2 0.3-0.1 0-0.1 0-0.3 0.3 0.3 0.1-0.2 0.7 0.1 0.2 0 0.2-0.4 0.2 0.2 0.1 0.1 0.1-0.2 0.2-0.2 0.7 0.3 0.4-0.2 0-0.1 0.2 0.4 0.8 0.3-0.1 0.3 0.2 0.3 0.9 0.1 0.1 0.1 0.1-0.1 0.4 0 0.4-1.2-0.2-0.6-0.6-0.3 0.3-0.6-0.4-0.3-0.5-0.8-0.8-1.1 0.1-0.7 0.6-0.1 0.5-1 0.1-0.4 1 0.1 0.5-1 0-0.2 0.7-0.6 0.4-0.8-0.5-0.8 2 0.1 0.7 0.8 0.2-0.3 1.3 1.7 1.3 0.7 0.2 0.2 0.7-0.2 1-0.9 0.7 0.3 0.8-0.1 0.3-1.4-0.6-0.2-1-2.6-0.3 0-0.6-0.5-0.4 0-0.8-0.3-0.3-1.1 0.1-0.9-0.3-0.6 0.2-1.4-0.9-0.6 0.1-0.4 1.4-0.4 0.5-0.4-0.4-1.1-0.1 0.5 1.1-0.8 0.9 0 1.8-0.6-0.1-2.2-1.2-0.5 0.2-0.3 0.6-1.5-0.6-0.5 2.8-0.4 0.5-0.2 1.8-0.7-0.2-0.4-0.4-0.6 0.2-0.3 0.5-0.7-0.2-0.8 0.9-0.4 0.1-1.1 2 0.3 0.8-0.2 2.7 0.4 1.2-0.4 0.9-1.4 0.6-1 1.4 0.6 0.4-0.4 0.7 0.1 0.8-0.4 0.5 0.3 0.8-0.4 1.1-0.6 0.9-0.3 1.8 0.2 0.6-1.4 0-1.5-0.9-1 0-1.3 1.7 0.3 1.6-1.1-0.9-0.7 0.6-0.6-0.6-1 0.1-0.1-1.1-0.4-0.8-1.3 0-0.3 1-0.5 0.5-0.4-0.1-1.8 0.7-0.7-0.3-1.6-1.2-0.5 0.5-0.1 0.5-0.9 0.5-0.3 0.9-0.8 0-0.6 0.7-0.5 1.2 0 1.7-0.1 0.5-0.8 0.2 0.1 1-0.2 0.7-0.5 0.3-1.1-0.4-0.6-0.8-0.8-0.6-0.7-1-1.2 0.1-0.6-0.7-0.3-0.7 0.7-1.2-0.4-0.9 0.1-1 0.5-0.6-0.9-0.4-1.5 0-1.1-1 0 0.8-1.7 0.3-0.5-0.6-0.9-0.5-0.3-1.1 0.6-1.3-0.3-1.1-0.7-1.1-1.4-0.6-0.6-1-1.4 0.4-0.2 0.6-0.8 0.1-0.2 0.6-0.7 0-1.3-0.8-1.2-1.8-1.7-0.3-0.6 0.6-1.1-0.2-0.4-0.5-1-0.4-0.5 1.3-0.4 0.3-0.2 0.9 0 1-0.8 1.3-1.1 0.3 0.4 0.5 0 0.9 0.4 1.1-0.2 1.5-0.7 0.1-1.3-0.3-0.3-0.4-0.7-0.2-0.6 0.7 0.3 0.7-1 0.5-0.2 0.7-1 0.1-0.4-0.8-2 0.6-1.1-0.4-0.7 0.5-2.2 0.3-0.7-0.1-0.6 0.3 0.1 0.8-0.9 0-1.1 1-0.7-0.1-1.7 0.4 0.5 1.3-0.7 0.4-1.1 0.3-0.8 1.1-0.9-0.2 0.3-0.8-0.2-1.1-0.5 0.8-0.7-0.4-1.5 0.5-0.7 1.4-0.7 0.1-0.8-0.2-0.7 0.2-0.2-0.8-0.7-1.1 0.1-1.5-0.6 0.2-1.2-0.5 0.1-1.5-0.4-0.5-1.2 0.3-0.2 0.4-1.2 0.4-0.6 0.8-0.7 0.1-0.9 0.6-0.4 0.9 0 0.7-0.3 0.7-1.3-0.3-0.7 0-0.9-0.4-0.5 0.6 0.2 0.5-0.6 0.4-0.9-0.1-0.1 1.6-0.8 1.7-1-0.8-0.4-1.1-1.2 0.3 0.1-1.1-0.9-0.3-0.4-0.8-0.7 0.1-0.9-0.4-0.4-0.5 0.2-0.8-0.5-0.6-0.8-0.1-0.2-0.6 0.3-0.6 0.9-0.3 0.2-0.5-0.3-0.7-0.9-1.6-0.8 0 0 0.9-0.4 0.1-1.2-0.5-1.7 0.4 0.3 0.6-0.1 0.5-0.8-0.2 0.3-0.6-0.6-0.3-0.3 0.4 0.1 0.9-1 0.9-0.7-0.8 0-1.1-0.4-0.5-0.2-0.9-0.4-0.3-0.5-1.3-0.8-0.6-1.1-0.4-0.6 1.6-0.5 0.8-1 1-2.1 0.6-0.3-0.2-2 0.3-1.8 0.7-1.1 0.2-1.1-0.4-2.8 0.1-2-0.5-1.5 0-0.2-0.6 0.8-0.2 0.3-1.4-0.3-0.6 0.6-0.5-0.6-1-0.6-0.4 0-0.6 0.5-0.4-0.8-1-0.3 0 0-1.2-1 0.2-0.6-0.9-0.8-0.7-0.8-0.4 0.3-1-0.2-0.8-0.8-1.1-0.5-1.5 0.2-0.4 0-1.6-0.5-0.3 0-1.8-0.8-0.2-0.1-0.8 0.2-0.4 0.6-2.4 0.4 0.1 0-1.5-0.3-0.4 0.2-1.5 0.4 0.1 0.9-0.4 0.7-1.6 1.2-0.4 0.6 0.3 0.7-1.1 0.9-0.2 1.3-1 0.9-0.2 1.3-0.5 0.3 0.1 1.3-1.3 1-0.2 0.8-1 1.3-0.3 1.2 0.2 0.5-0.4 0.2-0.9 1.2-0.2-0.2-1 0.6-0.4 0.7-1.1 0.1-0.6 0.7-0.2 0.9-1.4 0.8-0.2 2.4-1.8 2.1-0.9 0.1-0.5-0.3-1.7 0.4-0.6 0.9-0.4 1.4-0.1 0.6 0.2 0.9 0.6 0.2 1.2 0.6 0.3 2.5 0.1 1-0.4 0.2-2.4 1-0.3 1.4 0.6 0.2 1.1 0.8 0.2 0-0.7 0.8-0.1 0.6 1.1 0.8-0.2 0.9 0.5 0.6-0.6 0.7 0.4 0.2-0.7-0.1-1.3 1.4-0.1 0.5 0.3 0.5-0.4-0.9-0.7 0.7-1.2-1.1-1.1-1.4-0.8-0.7 0.3 0.1-1.7-0.8 0.2-0.7-0.6-1.9-0.1-0.7-1.5-0.8-0.3-1.2-0.8-1.3 0.5-0.7 0-1.8-1.4-1.3-0.6-0.3 0.4-0.7-0.4-0.2-1-1-0.8-0.7-1.1-0.9-0.8-1.4-0.1-0.2-1.2-0.9-0.5 0.4-0.7-0.9-0.6 0-0.4 1.1-1.6 1.3 0.2 0.7-0.5 0.6-0.1 0.1-0.8 1.5 0.1 0.4-0.5 0.1-1.2 0.3-0.5-0.5-0.8 0.2-1.3-1.9-0.5-1.9-0.2-0.2-0.4-0.6-0.2-0.7-0.9 0-0.4-0.9-0.2-0.3 0.4-1.2-0.1-1.5-0.4 0.1-2.2-0.1-0.4 0.9-0.3 1.2 0.5 0.3-0.8 0.9 0.3 1.6-0.7 0.1-0.7 1.2-1.9-0.1-1.1 0.8 0.1 1.6 0 0.5 0.5 1.2 0 2.4 1 0.9-0.7 0.9 0.1 3.1-0.5-0.4-0.6 0-1.1-1.3-0.3-0.5-0.1-0.5 0-0.4-0.2-0.2-1.1-0.4-0.8-0.3-0.6-0.7 0.1-0.4 0.3-0.4 0.3-0.4 0.1-0.6-1 0.5-0.7 0.3-0.6 0.1-0.6-0.1-0.5-0.2 0 0.3-0.7-0.2-0.8-0.3-0.2-0.5-0.2-0.4 0-1.2 0.7 0 0.2-0.2 0.5-0.6-0.2-0.7-0.6 0.3-0.7 0-0.4-0.3-0.1-1.1-0.1-0.2 0.4-0.2-0.2-0.4 0.2-0.6-0.5-0.3-0.3 0-0.1-0.1-0.1-0.1-0.2 0.2-0.2-0.1-0.6-0.6-0.4-0.1-0.1 0.2-0.2 0.1 0 0.1-0.3 0.3-0.2-0.2-0.2 0.1-0.5-0.2-0.2 0.4-0.2-0.2-0.5-0.3-0.6 0-1-0.4 0-1.1-0.9 0.9-0.6 0.1-0.3-0.2-0.3-0.3-0.2-0.9 0.5-1.1 0.2-0.2-0.1 0-0.5 0-0.7 0.3-0.2 0.1-0.2-0.1-0.4 0.6-0.9 0.6-0.5 0-0.1-0.3-0.9-0.4-0.6-0.1-0.3-0.5-0.4-1.3-0.4-0.2-0.1-0.2-1 0.7-0.6 0.2-0.9-0.5-0.5-0.7 0.1-1.1 0.6-0.9-0.6 0.7-0.3 0.3-0.6 1.1-0.3 0.5-0.7 0-0.5-1-0.1-0.2-1.4 2.1-0.8 0.5 0.3 1.6-0.1 1.2 0.2 0.9-0.2 0.5-1.4 0.9-0.4 0.5-1.2 0.7 0.4 0.7-0.2 0 1.2 0.7 0.4 1.2 0.2 0.1 1 0.8-0.5 0.8 0.2 0.6 0.9 0.1 1 0.5 0.7 3.5 0.6 1.7-0.1 0.9 0.6 0.6-0.1 2.7 0.4 1.9 0.4 0.7 1.2 1.6 3.2-0.4 2 0.2 1-0.2 1.6-0.4 0.6-0.6 0.4-0.2 1.1 2 0.8 1.9 0.9 0.6-0.5 0.7 0.8 0.8-0.9 1.3 0.4 0.1 0.8 1.8 0.8 0.6-0.1 1.1 0.4 0.6 0.7-0.3 0.9 1 0.2 0.2 0.7 1.3 0.1-0.5 1.2 0.5 0.4 1.6-0.4 0.7-0.5 0.8 0.2 1.9-0.1 0.2 1.1-0.6 1 0.6 1.2 0.1 0.6 0.5 0.4 0.7-0.2 0.9 0.3 2 0.2 0.5 0.3 0.8-0.7 0.6 0 1.2-1.2 0.8 0.1 0.7 0.3 1.5-0.6 0-0.6 0.8 0 0.8-1 0.8-0.1 1.4-0.6 0.5-0.6 0.7 0.8 1.3 0.3 1.4 0.9 0.4 1-0.4 3.6 0 1 0.8 1.3 0.8 0.4 1.1 0.2 0.6 0.8 0.4-0.3 0.7 0.1 0.3 1.5 1.1-1 1.2-0.6 1-0.7 0-0.7 0.7-0.4 0.8 0.2 1-0.5 1.4 0.4 0.1 0.2 1.5 0.8 0.7 0 0.6 0.8 0.6-0.3 0.7 0.1 0.1 0.8 1.2 0 0.7-0.9 1.4 0.1 0.5-0.2 1.2 0.1-0.1 0.4 1.8 0.4 0.1 0.4 2 0.7 1.5 1 1.5 0.1 0.8 1.4 2.1 0.8 0.2 0.5 2.2 0.7 0.1 0.5 0.9 0.4 0.7-0.1 0.2-0.7 0.6-0.5 2.2 0.8 0.9-0.7 0.4 0.1 0.8-0.5-0.1-0.8 1.2 0 0.1-1.1 1-0.2 0.5 0.1 1.4-0.5 0.9-1.3 0.1-0.8 0.9 0.1 0 1.7 0.3 0.7 0.4 2.8 1.6 1.3 0.8 0.4 0.8-0.4 2 0 0.7 0.4 0 1.2 1.6 0.2 1 0.8 0.6-0.5-0.1-1.1 0.4-0.7 0.7-0.4 1.4-0.2 1.3-0.7 1.7 0.4 1 0.5 0.2 0.5 1.2 0.5 0.8 0.1 1.4-0.2 0-0.4 0.9-0.4 0-0.8 1.1 0.3 0.8 0.8 0.7 0 0.6-0.5 0.2-1 0.5-0.8 1.9 1.2 0.5-0.5-0.1-0.6 1.4-0.5 0.3 0.8 0.5 0.4 0.3 1.1 1.1 0.8 0.9 0.2 0 0.8 0.6 0.4 0.7-0.2-0.1-0.6 1.8-1.5 0.5-0.7 0.3-1.1-0.3-1.9 0.3-0.7z", "6": "M295.5 264.2l-0.2 0.2-0.3 0.5-0.9-0.4-0.8-0.5-0.3 0.1-0.1-0.3-0.3-0.3 0-0.2-0.3-0.2 0-0.1-0.2-0.8-0.6-0.8-0.1-0.1 1-0.4 0.3-0.3 0.2-0.3 0.1-0.2 0.1-0.1 0.2-0.1 0.2-0.1 0.5 0.1 0.3 0.4-0.1 0 0.3 0.4 0.5-0.5 0.2 0.2 0.1 0.2-0.4 0.4 1.2 0.1-0.1 1.3 0.4 0.7-0.5 0.7-0.4 0.4z", "7": "M541.1 576.4l-0.9 0.1 0 0.6 1.3 0.7 0.3 0.4 0.6 0.3 0 1.2-0.9 1-0.4 1.3-1.2 0.5-1.8-0.1-0.6 0.7-1.2-0.1-0.6 0.6-0.7 0.4-0.1 0.7-0.8 0.3-0.6 0.5-0.3 0.7-0.9 0.6-1.8-0.2-1.2 0.8-0.4 0-0.9 1-0.4 1.4-1.7 2.2 1.5 1.2-0.6 0.4-1.5 0-0.2 1.2 0.5 0.6-0.5 1.1 0 0.5 0.8 0.7-0.1 0.5 1.1 0.2 0.5 0.5-1 1.5 0.4 0.7-0.3 0.8-0.6-0.2-0.9 0.1 0.2 1.4-0.5 0-1.1-0.5-0.5 1.3 0.3 1.2-1 1.7-0.8 0-0.4 0.7 0.7 0.7 1.5 0.6-0.5 0.5-0.2 0.8-0.8-0.5 0-1.1-0.9 0.4-1.1 0.9-0.5 0.6-0.2 0.9 0.2 0.8-0.4 0.5-0.5 1.9 0.3 1.5 0.7 0.3 0.4 1 0.4 0.3 0 1.4 0.3 0.5-0.9 0.3-2.3-0.9-1.3-0.4-0.1 1.1-0.4 0.5 0.1 1.1 0.5 0.2-0.2 1-0.9-0.3-0.6 0.4-0.3 0.6 0.1 1-0.3 0.8-0.6 2.3-1 0.2-1 1-0.4 0.2-1.7-0.3-1-0.4-1.1-1-1-0.4-0.5 0.1-0.3-0.8-0.5 0.5-0.7 0.2-0.7-0.2-0.8 0.5-1.3-0.5-0.9 0.2-1.1 0.6-0.8-0.6-1.3-0.1-0.7 0.2-0.5-0.1-0.8 0.2-0.9 0.1 0 0.5 0.3 1.2-0.6 0.9-0.6 0.5 0.5 1-0.6 1.1-0.8 0.7-1 1.7-2.4 1.5 0.1 1-0.3 1-0.6 0.4-0.2 0.5-0.6-0.3-0.7 0.1-0.3-0.4-0.2-0.9-0.6-0.3-0.5 0.2-0.7-0.7-0.5 1.6 0.2 1.8-0.1 1.2 0.3 1.1-0.1 1.1 0.3 0.7 0.5 0.6 0.1 1.2-0.4 0.9-0.6 0.4 0.1 0.7-0.6 0.8 0.6 0.5 0.2 0.6 1.1 0.5 0.3 2 1-0.1 0 0.7 0.4 0.4-0.2 0.6-0.5 0.3 0 0.9-0.4 0.8-0.1 0.7 0.9 1 0.2 1.1-0.7 0.5-0.1 0.9 0.3 1.4-0.2 0.8-0.8 0.7-0.1 0.6 0.4 0.9 0.1 1.1-0.1 1 0.1 0.4 1.6 0.5 1.2 0.2 0.9 0.6 1.4 0.1 1.1 0.5 0.2 0.3 1.1 0.1 0.3-0.4 0.9-0.1 1.7 0.3 0.4 0.3-0.1 1.4-0.3 1.4 0.4 2.1-0.4 0.8-1.8 0.1-0.9 1.4-1.4 0.4-0.3-1 0-0.9 0.9-1.2-1-0.4-0.8 0.1-0.5-0.5-1.1-0.1-0.7-0.6-0.6 0.2-0.6-0.3-0.9 0.3-0.9 0.5-0.7 1-1 0.9-0.4-0.3-0.3-0.8-0.7-0.9-0.1-0.5-0.9-1.7-0.2-1-1.1-0.9-0.9 0.6-0.7 0-0.6-0.5-1.2-0.6-0.5 0-2-1.4-0.3 0.5-1.2 0.6 0-0.8-0.7-0.2-0.7-1-1-1-0.3 0.1-1.6 2-0.5-0.1-0.5 0.9-0.4 1.9-0.3 0.7 0.4 0.4-0.1 0.9 0.4 0.6 1.3 0.7 2.2 0.9-0.1 0.7 0.7 1.4 0.7-0.1 1.8 0.3 0.3 0.3-0.1 1.1-0.5 0.5-0.2 1.3 0.3 1.2 0.2 1.6-0.6 1.5 0.3 0.7 0.1 1-0.8 1.3 1.3-0.1 0.3-0.4 0.8 0.2-0.1 0.6 0.4 0.7-0.2 0.5 0.8 1.3 1.7-0.2 0.5 0.6-0.3 1.3-0.3 0.4-0.9 0 0.1 0.7 1.3 0.5-0.4 1.5-0.6 0.9 0 1.6 0.3 0.5-0.2 0.4 0.6 0.5 0.2 0.9-0.3 0.9 0.7 0.6 0.6 1.4-0.5 0.7 1 1.4 0.6 4-0.9-0.1-1.5 0.8 0 0.5-0.4 0.9 0.2 0.8-0.3 1.1 0.2 0.3-0.5 0.6-1.9 0.6-0.4 1.6-1.5-0.2-0.6 0.2-0.9 0.5-0.5 0.1-0.7 0.6 0.2 0.4-0.5 0.5 0 0.9-1.1-0.2-0.7-0.7-0.2 1.2 0.4 0.1 1 0.8 0.9 0.3-0.3 1-1.6 0.1-0.1 1.1-0.5-0.1-0.7 0.5-0.4 1-1.8 1.7-1.2 1.1-0.6 2.3-3 0.3 0.1 0.8-1.5 0.5-0.8 0-0.8 1-0.7 0.4-0.7 0.1-0.1 0.9-0.7 1.8 0.6 1-0.4 1-0.1 1.3-0.9 1.6-0.2 0.7 0.1 0.9-0.1 1.1-0.7 1-0.4 0.8 0.2 0.7-0.4 1-1.4-0.4-0.2 1 0.3 0.5-0.5 0.7 0 0.7-2.4-0.2-2.1 0-2.1-1.3-1.1-0.2-2.1 1.3-0.8 1.1-0.6 0.1-0.8-0.2-0.7-1-0.3-0.7-0.3-2.8-0.4-0.3-0.4-2.5-0.3-1.4 0.1-0.4-0.6-1.7 0-1.2 0.8-0.7 0.1-0.9-0.7 0.1-0.3 0.3-1.5 0.8-1.3 0.1-0.3-0.4-0.2-2 0.6-0.3-0.2-0.7-1.2-0.2-0.3 0.3 0.1 1.2-0.7 0.9-1.2 0.1-1-0.3 0-1.7 1.7-0.9-0.6-1.2-0.8-0.9 0-0.5-0.7-1.6-0.3-1.6-0.8-0.5 0.2-0.6-0.5-0.7-1.1-0.6-0.4-0.8-0.2-0.9-0.6-0.3-0.5-0.6-2.3-1.5-0.7-1.1-0.8-0.4-1.3 0-1.6 0.7-0.7 0.5-0.5-0.4-0.9 0.7-0.8-1.3-0.8-2.3-0.9-1.2-1-1.1 0.5-0.6 0.6 0.1 0.9-1.1 0.7-0.1 0.9-0.5 0.1-0.5-0.4-1.2-1.5-1.8-0.7-0.6-0.3-0.6 0.2-1.7 0.9-1.5-0.2-0.6 0.9-0.7 0.1-0.8 0.4-0.5-0.3-0.9 0.1-0.6 0.7-0.7 1.2-0.7 0.2-0.5-0.3-0.8 0.4-1 1-0.2 0.9-0.7 0.9-2.1 0.3-0.4 1.2-0.3 0.6-1 0.9-0.8 0.5-0.1 0.4 0.8 0 0.9 0.6 1.5 0.5 0.2 1.6-0.8 0.7 0.5 0 1 0.5 0.1 1.7-0.1 0.6-0.8 2.5-1.7 0.1-0.4-1-0.6-0.2-0.5-0.7-1.1 1.6-0.6 1.1 0 0.9-0.8-0.1-1.2-0.4-0.7-0.9-0.2-0.4-0.4-0.2-0.8-0.5-0.3-1.2 0.2-0.6-0.3-0.1-0.6-1.5-0.9-2 0-0.2-0.6 0.4-2.4-1.1-1-1.8-0.7-0.4-0.6-1.1-0.7 0.2-1.3-0.9-0.7-1.4 0.1-0.6 0.6 0.5 0.3 0.3 0.8-1-0.5-1.2-0.1-0.6 0.1-0.1-0.8 1.2 0.2 0.9-0.6 0.5-1.1 0.8-0.4-0.3-0.9-0.9-0.4-0.6 0.4-1.4-0.6 0.1-0.8 0.6-0.2 0.7-0.6 0.7 0.3 0.2 0.4 1.1 0.3 0.6-0.2 0.4-1.3 0.4-0.5-0.4-0.8 0.5-2.3-0.4-0.7 0.2-0.9-0.6-0.5-2.5-0.8-0.2 0.6-0.6 0-1.1-0.5-0.3-0.5 0.3-0.9 0.6-0.2 0-0.5-0.5-0.4-0.5-1.1 1.2-0.3 1.3-0.7 1.3-0.2 0.6 0.2 1-1.3 2.6-0.7-0.5-1.9-0.6-0.6 0.2-0.7 0.4-0.8-0.3-0.4 0.3-0.6 0.3-2.6-0.1-0.8 0.4-0.4-0.3-0.9 0.4-0.5-1.5-0.3-0.7 0.1-0.2 0.4-1.1 0.5-0.7-0.1-0.6-1.1 0.2-0.8 1-0.8 2.1-0.6-0.1-0.7-0.5-0.5-0.2-1.3-0.4-0.7 0-0.9 0.4-1.1-0.2-0.9 0-1.6-0.5-1.5-2.6 0.1-0.7-1.6 0-0.8-0.5-0.6 0.7-0.8 0.1-0.7-0.4-1.8 0.7-2.7 0.6 0.1 1.2-0.5 0.4-0.7 0.5 0.2 0.9-0.3 0.3-0.4 1.1-0.4 1.2-1 0.6-1.2 0.6-0.4 0-0.4-0.6-0.8 1-1.5 0.5-1.5-0.1-0.5 0.7-0.7 0.5-0.9-0.3-0.9 0.3-1.6-0.6-0.6 0.2-0.6-0.3-0.5-0.1-0.7 0.5-0.5-0.1-0.9-0.4-1.1 0.5-0.8 0.1-1.3 0.5-1 0.7 0 0.7 0.6 1-0.3 0-0.6 0.7-1.5 0.2-0.9-0.2-0.6 0.3-0.4 0-0.7-0.5-0.4 0-0.8 0.4-0.7-0.1-0.7 0.6-1 0.6-1.4 0-0.8 0.3-1 0.5-0.2 0.2-1.3 0.6-0.7 1.2 0.3 0.5 1.1-0.1 0.9 0.5 0.4 0.7-0.5 0.2-1.2-0.5-0.6-0.6-0.2 0.5-0.6 1 0 0.1-1.2-0.2-0.7 0.4-0.5-0.3-0.6 0.1-0.6 1-0.5 1.3-0.1 0.4-1.2 0.6-0.6-0.2-1.3 0.2-0.5-0.5-1.5 0.2-1.8 0.1-0.3 1.3-0.6 0.8-1.2 0.7 0.3 0.1 0.7 1 0.4 1.1-0.8 0.2-0.8 0.6-0.2 0.8 0.7 0.5-0.3-0.1-1 0.3-0.3 1.9 0.7 0.3 2.2 0.9-0.1 0.1-0.9 1-0.8 1.2 0.1 0.4-1 0.8-0.7 1.4 0.2 0.2-0.7 1.6 0.6 0.4-0.3 0.1-0.8 0.5 0.1 0.3-0.5-0.3-0.4 0.1-0.8 1.2-1.5 0.7 0.1 0.6-0.3 0.3-0.8 0.4 0.3 0.4 0.8 0.6-1.1-0.6-1.9 1.3-1.5-0.4-0.7 0.1-0.5-0.5-1.3 0.2-0.6 0-0.8 0.9-0.3 1.3-0.1 1-0.4 0.4-0.7 1-0.7 0.4-0.6 0.9-0.3-0.1-2-0.7-1.1 0.7-1.4 1.1-0.1 0.3-0.2 0.8 0.3 0.9-0.1 1.1-1.3 1.9 0.4 0.4-0.3 0.2-0.7 0.6-0.4 0-0.7-0.5-0.1 0.2-2.4 0.9-1.5 0.7-0.6-0.1-1.4-0.9-0.3-0.8-1.2-0.8 0.3-0.3-0.3-0.2-1.3-1.4 0.2-0.3 0.5-0.9-0.2-0.3-0.3 0.3-0.6-0.8-0.1-1-0.5 0-0.8-0.7-0.7 0-1.2-0.5-0.3-0.6-1-0.5-0.1-0.8 0.6-1.8 0.3-0.6-0.4-0.4-1-1.4-0.1-0.3-0.5-0.6 0-0.8 1.2-0.5 0.3-1.3-0.3-0.2 1.1-0.6 0.4-0.5-0.1-0.4-0.6-0.1-1.6-0.8 0-0.3-1.3 1.1-0.4 0.4-2.3 1 0 0.2-0.8 0.9-0.4 0.4-1-0.5-0.7-0.1-0.7-0.8-0.4-0.2-0.4 0.1-0.9-0.6-1.2-0.5 0-0.4-0.7 0.6-0.7-0.5-0.4 0.2-0.7 0.8-0.2 1.1-0.7 0.6 0.7 0.1 0.7 0.5 0.1 0.2 0.9 0.6 0.1 0.2 0.7 1.6 1 1.3 0.2 0.7-0.5 0.7-0.1 0.3-0.4 1.1-0.3 0.8-1.1 1.1 0.7 1.7-0.3 1.2 0.7 0.4 0.9 1.1 0.1 1.3-0.2 0.6 0.1 1.2-0.2 0.1-0.5 1.1-0.6-0.2 0.8 1.1 0.9 0.8-0.5 1.5 0.5 1.7 0.2 0.7-0.3 0.7 0.4 2.1-0.4 0.4 0 0.8 0.9 1 0.1 1-0.4-0.2-0.6 0.3-0.6 1.3 0.2 0.7-0.5 0.8-0.1 0.4-0.7 0.7-0.5-0.5-0.7 0.3-0.6 0.9-0.3 0.7-0.4 1.6 0.1 0.2-0.6 0.7-0.1 0.7-0.8 0.4-0.1 0.4 0 1 0.6 0.5 0.8 0.6 0.6 1.5 0.7 0.5 0.6 0.5 0.1 1-0.2 1.8-0.2 0.9 0.3 0.8-0.1 1.4-0.4 0.6-0.8 1.5-0.4 0.8-1.5 0.1-1.1 2.1-1.2 0-0.9 0.6-1.1 1-0.9 0.8 0.1 1.3-0.1 0.5 0.7 0.9-0.1 0.3 1.1 0.5 0.5 1 0.1 1.1 0.5-0.1 0.9 0.2 1.3 0.9 1.2-0.1 0.7 0.4 0.9 0.7 0.1 0.4 1 0.7 0.3 1.9 0.4 0 0.6 0.5 0.3 0.8 0 0 0.4 0.5 0.7 0.1 0.7 0.6 0.6 0.1 1.9-0.6 0.8 1.2 1.3-0.1 0.8 0.6 0.2 0.3 0.8 1.1 0.6 0.5-0.1 3.9 0.9-0.2-1.2 0.3-1.1 1.3-0.3 0.9 0.4 0.6 0.8 0.2 1.3-0.1 0.8-0.5 1.6-0.4 0.3-0.9 1.7 0.3 0.7-0.4 1.3 0 0.7 0.5 0.5 0.8 0.3 0.5-0.9 0.8 0.1 0.2 0.8 0.7 0.8-0.3 0.8 0.1 0.6-0.5 1.9 0.2 1.7-0.4 0.4-0.5 1.2 0.2 0.6 1.1 1.1 0.7-0.1 0.9 0.9 0.4 0 0.2 0.8-0.2 1.3 0.6 1.5 0.2 0.9 0.6-0.2 0.1-0.9 0.3-1 0.7 0.2-0.1 0.4 0.7 1.1 0.7-0.2 0.5 0.4 0.6-0.3 0.3 0.6 1-0.2 0.8-0.4 1.4 0.1 0.2 0.9 0.4 0.5-0.4 1.5 0 0.9-0.7 0.5-0.9 0-0.3 0.4-0.1 1.2-0.3 0.6-0.7 0.5-0.1 0.9-0.9-0.1-1.2 1.1 0.2 1.7-0.6 0.9-0.6 0-0.5 0.6-1.1 0.5-2.3 0-1.1 1.5-1 0.3-0.5 0.6-0.2 1.1 0.1 0.7z", "8": "M165.1 658.2l1 0 0-0.9 0.2 0.8 0.4 0.1 0.2 0 0.4-1.2 0.4 0 0.3-0.2 0.3 0.2 0.4-0.4 0.2-0.8 0.1-0.1 0.2 0.2 0.1 0.1 0.1 0.3 0.1 0.4-0.2 1.1 0.8-0.2 0.3-0.3 1 0.2 0.1 0-0.1 0.1 0.1 0.7-0.4 0.2-0.2-0.3-0.1 0-0.1 0.2-0.1 0.3-0.2-0.1-0.1 0.4-0.2 0.3-0.8 0.6-0.2 0.2-0.2 0.4-0.5-0.2-0.4 0.2-0.3 1.1 0.1 0 0.2 1.4 0.3 0.1 0.2-0.5 0.2-0.1 0.1 0 0.3 0.5 0.3 0 0.2 0.1 0.8-1 0-0.1-0.2-0.6 0.3-0.1 0.1 0.1 0 0.1 0.9-0.3 0.3 0.3 0.6 0.1 0.2 0 0.6 0.5-0.1 0.3-0.9 0.5-0.1 0.4 0 0.4 0.5 0.6 0.2 0.6-0.1 0.6-0.6 0.5 0.1 0.6-0.5 0.3-0.3-0.2-0.2-0.3-0.9-0.4-0.3-0.3-0.3 0.3-0.1 0-0.4-0.2 0-0.1-0.2-0.1-0.6-0.2-1-0.1 0 1-0.5-0.1-1.2-1.4 0.3-0.7 0-0.2-0.4 0.1 0 0.1-0.1 0.4-0.6 0.2-0.4-0.6 0.4-1 0-0.2 0-0.3 0-0.2-0.3-0.1-0.2-1.2 0.1-0.1-0.3-0.8-0.7-0.3-0.8-1.1 0.1-0.1 0.5-0.4 0.4-0.1 0.6 0.6 0.4 0.2 0.3-0.2 0.1-0.6z", "9": "M160.8 651.8l-0.5 0.5-0.4 0.6 0 0.7 0.2 0.1 0.2 0.1 0.6 0.2 0 0.1 0.2 0.4 0 0.5-0.2-0.4-0.6-0.6-0.3 0.3-0.4 1.1-0.3-0.1 0.2-0.5 0-1.8 0.5-0.9 0.8-0.3z m-65-9.6l1.2 0.6-0.7 0.4-2-0.2-0.9 0 0.4-0.6 0.9-0.2 0.6-0.1 0.5 0.1z m-3.7-0.8l-0.5 0.8 1.1 0.4-0.1 0.5-1.4-0.1-0.4-0.2-0.8 0.1-1.2-0.4-0.5 0.1-1.8-1-0.5-0.8 0-0.1 0.3-0.5-0.1-0.6-0.2-0.6 0.1-0.9 0.5-1.5 0.8-1 0.1-0.9 0.4-0.9 0.3-0.6-0.2-0.4 0.3-0.1 0.4 0.6 0.5 0.4 0.1 0.1 0.2-0.2 0.5 0.2 0.5-0.1 0.6 0.1 0.7-0.4 0.2 0.3 0.4 0.1 0.6 0.2 0.3 0.7 0.4 1.2 0 0.6-0.6 0.5-1.5 0.6 0 0.7 0.4 0.2 1.3 0 0.3 0.6-0.1 0.8-1.1 0.4 0 0.7-0.3 0.4z", "10": "M308.6 338.3l0.1 0.3 0.4 0.3 0.2 0 0.3 0-0.1 0.3 0.3 0.3 0.6 0.5 0.2 0.2 0.1 0.5 0.4 0 0.1 0.1 0.5 0.7 0.3 0.4 0.1-0.1 0.7-0.2 0.2 0.2 0.2 0.8-0.4 0.8-0.2 1 0.9 0.9-0.3 0.7-0.6 0.2-0.6 0.6 0 0.2 0.3 1.1 0.4 0.3 0.6 0.7 0.2 0.3-0.3 0.3-0.5 0.6-0.4 0.1-0.8-0.3-0.9 0.5-0.7 0.4-0.2 0.4 0.6 0.7-0.1 0.7-0.9 0.5-0.7 0.1-1 0.2-0.4-0.8-0.7-0.4-0.7-0.4-0.3-1.3 0.2-0.4-0.6-0.5-0.6-0.5-0.2-0.1-0.4 0.3-0.3 0-0.2-0.2-0.8-0.5-0.1 0-0.5-0.4 0.4 0.7-0.2 0.4-1-0.4-0.3-0.1-0.8 0.5-0.4-0.1-0.8 0.1-0.6-0.1-0.4 0.3 0-0.6-0.7-0.7-0.8-0.6-0.1-1 0-0.3 0.7 0 0.8-1.8 0.5 0.2 0.6-0.2 0.3-0.6 0.1-0.6 0.7-0.3 0.2 0 0.1-0.7-0.3-0.9 0.3-1.1-0.4-0.5 0.3-0.6-0.4-1.2 0-0.2 0.2-0.4 0.2 0.1 0.3-0.5 0.8-0.3 0.1 0 1.7 0 0.2-0.6 0.4-0.8 1.1 0 0.6 0.1 0.3 0.2 0.7 0 0.2 0.5 0.5 0.2 0.5-0.5 0.6-0.1 0.4-0.1 0.4 0.1 0.4 1.1-0.1 0.9-0.7 0.4z", "11": "M203.8 824.9l0.6 0.1 1.1-0.2 0-0.6 0.7 0.2 1 0.5 0.2-0.6 0.8 0.4 0.2 1.1 0.3 0.3-0.1 0.9-0.4 0.9 0.6 0.4 0.5 1-0.1 0.5-0.9 0.8 0.9 1.6-0.3 0.7 0.5 1.5 0.6 0 0.7 0.5-0.1 1.3 0.6 1.3-0.3 0.4-1-0.1-0.9 0.4-0.5 1.2 1.3 0.4 0.7 1.6-0.4 0.8-0.7 0.6 0.1 0.9-0.4 0.6 0.2 1.2 0.6 1-0.5 0.3 0 0.3-0.2 0.3-0.4 0.6 0.1 0.8-0.3 0.3-0.1 0.3-0.4-0.1-0.2 0.1-0.1 0.4-0.8 0.5-0.5 0.2 0-0.4-0.2-0.2-0.4-0.3-0.6 0.2 0 0.2-0.1 0.1 0.3 0.8 0 0.2-1-0.3-0.4 0.1-1 0.4-0.2 0.3-1.9-0.8 0.2-1.4-0.5-1.5-0.5-0.4-0.9-0.2-0.3-1.2-0.6-0.5-1.2-0.5-0.3-1.1 0.6-0.3-0.1-0.5 0.4-0.5-0.7-2.7-0.7-2.4-0.7-2.1-0.5-0.7-1.1 0.4-0.2-0.4-0.9-0.2-0.2-0.7-0.4 0.1-0.3-0.7 1.2 0.3 0.9-0.2 1.3 0.4 0.5-0.6-0.3-0.5-0.9 0-0.4-0.8-0.5 0.1-1.2-0.4 0.2-1.2-1.3 0.1-0.4-1.9-0.8-1.6 0.8-0.9-0.8-0.1-0.3-0.4-0.4-1.4-0.8-1.8-0.3-0.1 0.4-0.1 0.5 0.2 0.4 0 0.8 0.1 0.2-0.5 1 0 0.3 0.3 1.2-0.6 0.4 0.1 0.2-0.8 0.9-1.3 0.8 0.9-0.3 0.7 1 0.3 1.3 0 0.4 1.1 0 0.5 0.5 0.4 0.1 0.9-0.2 0.6 0.2 0.5 0.9 0.7 0.9 0.2 0.4-0.6 1.4-0.2 1.5-0.8z", "12": "M92.7 642.6l-1.1-0.4 0.5-0.8 0.6 1.2z m61.6-15.9l0.9 0.3-0.1 1.4-0.8 0.1-0.4-1.6 0.4-0.2z m1.6-18.8l0.8 0.3 0 0.4-0.8 0.2 0-0.9z m-105.7-29.2l0.5 0.3 0.4 0.7-0.6 1-1.4-0.7 0-0.8 1.1-0.5z m-11.1-0.5l0.9 0.4-0.3 0.4-0.9-0.3 0.3-0.5z m0.8-2l0.9 0 0.4 0.6-0.6 0.3-1-0.6 0.3-0.3z m20.3-1l0.4 0.3 0.3 1-0.8 0.3-0.7-0.1 0.1-1.2 0.7-0.3z m3-1.4l0.6 0.2 0.1 0.7-0.7 0.5-1.5 0.3-0.2-0.5 0.3-0.7 1.4-0.5z m15.1-17l-0.4 1.1-0.5 0.8-0.4-0.6 1.3-1.3z m-64.6-9.8l0.2 0.5 1.5 0.1 0.2 0.9-1.4 0.5-0.1 0.4-1-0.6 0-0.7 0.6-1.1z m-1.8-1l0.8 0.2 0.2 0.7-0.8 0-0.2-0.9z m2.9-1.2l0.9 1-0.8 0.3-0.8-1.3 0.7 0z m-2.9-3.1l0.5 0.8-0.5 0.2 0-1z m-1.1-0.9l0.7 0.9-0.3 2-0.6-0.1-0.3-1 0.1-0.8-0.9 0.5 0.3-0.9 1-0.6z m0.3-4.3l0.1 0.8-0.6 0.9-0.9 0.6-0.2-0.7 0.5-0.4 0.6-1 0.5-0.2z m-0.9-1l0.4 0.8-0.9 0-0.2-0.5 0.7-0.3z m-3.3-6.8l1.3 0.8 1-0.4-0.4 1.6 0.1 0.9-0.9 2.7-1.1 1.1-0.4 1.1-1.8 0.7-1-0.9-1.6 0.4-0.8-0.5-0.3-0.7 0.7-0.7 2.1-0.3 0.4-0.7 1.1-1.2 0.1-0.5 0.8-0.7-0.1-0.9 0.8-1.8z m-1.7-0.7l0.4 0.8-0.2 1.4 0.3 1.2-0.8 0.2-1.1 0.9-0.4-0.4 0.3-0.4 0.1-1-0.1-0.3 0.4-1.4 0.7-0.2-0.1-0.6 0.5-0.2z m6.4-0.2l0.4 0.2 0.5 0.8-0.4 0.5 0.2 0.4 0.2 0.2-0.2 0.7-1 0.7-0.8-0.3-0.9 0 0.6-1.1-0.3-1.2 0.4-0.4 1.3-0.5z m-3.4-1.8l0.7 0.3 0.7 1.3-0.5 0.9-0.8 0.8-0.7-0.2-0.3-0.5-0.6-0.1-0.4-0.9 1.1-0.9 0.1-0.5 0.7-0.2z m-5.1-0.1l0.1 0.7-0.6 0.7-0.6-0.2 0-0.7 1.1-0.5z m6.9-2.1l0.2 0.1-0.2 1.6 0.1 0.4-0.9 0.6-0.3-0.3-0.7-0.2-0.6 0.1-0.2 0.3 0 0.3-0.6 0-0.2-1.2 0.2-0.4 1-0.1 1.2-0.6 0.2-0.5 0.8-0.1z m2.9-0.3l0.3 0.4 0.5 0.1 0 0.1 0 0.2 0.1 0 0.9 0.1-1.6 2-0.7 0.4-1-0.4-0.1-0.9 0.9-0.4 0.6-0.5 0.1-1.1z m-1.8-1.8l0.7 0.8-0.2 0.5 0.7 0.6 0 0.7-1.1 0.9-0.4 1.4-1 0.5-0.4-0.2 0.7-1 0.1-1.8 0.2-0.2-0.5-0.2-0.6 0.1 0.6-1.6 0.6-0.5 0.6 0z m-1.8-0.1l0.3 0.3-0.2 1.1-0.5 0.9-0.5 0.5-1.8 0.5-0.3 0.7 0.2 1.1-0.4 0.8 0.1 0.7-0.8-0.2-0.3 0-0.4 0.2 0 0.6-0.7 0.2-0.4 1.4 0.1 0.6-0.3 1.2 0.4 0.6-0.4 0.6-0.6 0-1.1-1-0.5-0.9 0.5-0.9 0.7-0.3-0.6-1.8 0.2-0.9 0.7 0 0.6-0.9 0.2-0.8 0.5-0.7 0.3-0.8 1.5 0.3 0.5-0.4 0.2-1.5 0.9-0.8 0.5 0.8 0.4-0.1 1-1.1z m201.3 34.8l0.1 0.7 0.8 0.5 0.2 1 0.5 0.8-1 0.6 1.4 2 0.6 0.4 0.6-0.7 1.1-0.2 0.4 0.4 0.6 2-0.5 1.6-0.9 0.3 0 0.8-1.2 2.1-0.2 1.4-0.4 0.8-0.1 1-0.6 0.3-1.3-0.3-1.1 0.1-0.6-0.3-0.7 0.5 0 0.4-0.7 0.4-0.3 1.1-0.5 0.6-0.5-0.1-0.2 0.6-1.2 0.8-0.1 0.6-0.9-0.3-1.5-0.9-0.6-0.1-0.7 0.3-0.1 1 1.4 0.3-0.2 1.6 0.8-0.2 0.1 1.4 0.6 0.4 0.6-1.2 0.6 0.5 1-0.1-0.1-0.8 0.7-0.1 0 1.1 1.1-0.1 0.9 0.6 0.4 1.2-1.2 0.6-0.4 0.6-1 0.6-0.2 0.8-2-0.4-0.2-0.8-0.5-0.7-0.6 0.4-0.8 0.1 0.1 0.7-0.2 0.4-0.3 1.6 0.6 0.7-0.1 1.7 1.3 0.1 0.3 0.2 0.1 1.7 0.3 0.2-0.2 1.1 0.2 1.3 0.7-0.3 0.5 0.1-0.2 1.5-0.9 0.3-0.4 0.6-0.8 0.7 0 0.6 1.8 0.6-0.4 0.6 0.1 0.5-3.4 1.2-0.8 0.6-1.5 0.7-1.9 1.1-0.8 0.1-0.7 0.6-1.3 0-1 0.6 0.5 0.4 0.6 1.4-0.4 0.4 0.5 0.7 1.5 1.2 0.2 0.4 0.1 1.2-0.5 0.8-0.8 0.1-0.6 0.3-0.5-0.2-1 0.2-0.4 0.3 0.6 0.9 0.6 0.1 0.4 1.7 0.5 1.5 0.4 0.6 2.6-0.9 0.1 0.4 1.2-0.5 0.3-0.7 0.7 0 0.7-0.4 0.7 0.1 0.8-0.3 2.3 0.1 1.7-0.2 0.7 1.1 1.1-0.7 0.6 0.5 0.5 0 0.7-0.8 0.7-0.3 0.1 0.8 0.7 0.2-0.3 1.6-0.7 0.6-1.2 0.1-0.3 0.4-1.4 0.2-1.2-0.3-0.9 0.5-0.7-0.3-0.6 0.5-1.4-0.3-0.4-0.9-0.4 1-0.2 1-1.4 0.5-1 0.6-0.7 0.2-0.2 0.6 0.1 1.1-0.3 1.8-0.5 0.4-1.5 0.8-1.1-0.2-0.9 0.1 0.1 0.9-0.5 0.7 0.1 1.9-0.9-0.4-0.6 0.6-1.3-0.1 0.2 0.6-0.4 0.5-0.8-0.4-1.1-0.1-1.5 0.7 0-0.7-0.6-0.2-0.4-0.8-0.6 0.4 0 0.5 0.8 0 0.6 1.3 0.9-0.1 1.3 0.8 0.5-0.5 0.9 0.4 0.3 0.8-0.1 0.9 0.2 0.6 0.6 0 0.7 0.7 0.8-0.1 0.3 1 1 0.1 2 0.4-0.3 1.8 0.7 0.7 0.5 1 0 1.4 0.5 0.3-0.2 1.1 0 1.5 0.3 1-1 0.7-1.1-0.3-0.4 0.3-0.4 1-0.7-0.3-0.7 0.3 0.1 0.8 0.5-0.1 0.2 0.7 0 1.2-1.4 0.8-0.6 0-1.4 1.3-0.3-0.3-1.3-0.1-1.2 0.5-1-0.6-0.5-1.7-1-0.7-1-0.1-0.6-0.8-0.5-0.1-1.1 0.7-0.4-0.8 0.4-0.4-0.5-1.1-0.9 0.1 0 0.8-0.6 1-1.2 0.5-0.1 0.3 0.9 0.7 0.4 1 1.4 0.5 0.2 0.7-0.2 0.7 0.7 0.1-1 1 0.1 0.7-0.9 1-0.9 1.9-0.8 0.6-0.2 0.9 0.7-0.3 0.4 1.6 0 0.6 0.4 1.5-0.4 0.1-0.2 0.8 0.3 2-1.8 0.2-2.2-0.4-0.6 0.5 0 1.4-0.9 0.6-0.1 0.4-0.9-0.1-0.7 0.3-0.2-0.1-0.5-0.6 0-0.4 0.1-0.4 0.9-0.5 0.1-0.3-0.6-0.5-0.2 0-0.6-0.1-0.3-0.3-0.9 0.3 0-0.1-0.1-0.1-0.3 0.1 0.2 0.6 0 0.1-0.8 1-0.2-0.1-0.3 0-0.3-0.5-0.1 0-0.2 0.1-0.2 0.5-0.3-0.1-0.2-1.4-0.1 0 0.3-1.1 0.4-0.2 0.5 0.2 0.2-0.4 0.2-0.2 0.8-0.6 0.2-0.3 0.1-0.4 0.2 0.1 0.1-0.3 0.1-0.2 0.1 0 0.2 0.3 0.4-0.2-0.1-0.7 0.1-0.1-0.1 0-1-0.2-0.3 0.3-0.8 0.2 0.2-1.1-0.1-0.4-0.1-0.3-0.1-0.1-0.2-0.2-0.1 0.1-0.2 0.8-0.4 0.4-0.3-0.2-0.3 0.2-0.4 0-0.4 1.2-0.2 0-0.4-0.1-0.2-0.8 0 0.9-1 0-0.1 0.6-0.3 0.2-0.4-0.2-0.6-0.6-0.4 0.1-0.5 0.4-0.1 0.1 0.8 1.1 0.7 0.3 0.3 0.8-0.1 0.1-1.5-0.4-1.5-0.1-0.4 0.6-0.7 0.1-0.6 0.8-0.2 1-0.9 0.3-0.5 0.7-1.7-0.2 0.3-2.3-0.2-1.7 0.3-0.4 0.2-1.3 0.7-0.4 0-1.1 0.5-0.6 0.6-0.1 0.5-0.7 0.3 0.1 0.4-1.1 0.3-0.3 0.6 0.6 0.2 0.4 0-0.5-0.2-0.4 0-0.1-0.6-0.2-0.2-0.1-0.2-0.1 0-0.7 0.4-0.6 0.5-0.5-0.1-0.4 0.7-0.7 0.1-0.6 0-1.3 0.4-0.9-0.4-2.4-0.4-0.5-0.8-2.9 0.6-0.5-0.4-0.7-0.8-0.6 0.2-0.6-0.5-0.6-0.2-0.7-0.9-2.3-0.2-0.9-1.1-0.8-0.7-1.8-0.4-1.6 1-0.9-1.6-0.4-0.2-1 0.3-1 0.3-0.5-1.2-0.6-0.6 0.1-0.1 0.6-0.1 1.8-0.2 0.4-0.9-0.4-0.2-2 0-2.9-0.8-1-0.2-1 0.1-1.3 1-1.2 0-1.1 1.4-1.9-0.4-0.3 0-1 0.4-0.6 0.4-1.5-0.2-0.6-0.9 1.1-0.6 0.2-0.9-1.6 0.2-1.3 0.8-1.4 0.7 0 0.8-0.4 1.1-0.8 0.6 0.4 0.9-0.1 0.1-0.3 1.2 0.2 0.4-0.6-1.3-0.3-0.8-0.7-0.9 0.4-3.9-0.1-1.3 0.8-0.4 0-0.8-0.8-0.1-1.2 0.8-1.1 0-0.7 0.3-1.1 0.5-1.2-1.1-0.8-0.4-0.1-0.2-1.5-0.3-0.3-0.2-1.4 0.2-2.1 0.3-1.3 0.3-1.8 0.7-2.7 0.8-1.4 1.1-0.9 1.6-0.1 1.7 1.2 2 0.3 0.6-0.7 0.8-1.6 0.7-0.4 1.7 0.9 1-0.3 0.5-0.5-1.6 0.1-0.5-1.4-0.3-0.1-1.1 0.7-1.7 1.2-2.4-0.2-1.1-1.2-0.7-0.5-1 0.2-1.2 0.9-0.5-0.2-0.6 0.6-0.6-0.1-0.5 0.5-0.7 1.3-0.5-0.1 0.7-1.6-0.8 0-1.2-2.2-1.6-0.4 0.5-0.5 0-0.9-0.8 0.6-0.1 1.1 1.2 0.2 0.1 0.6-0.1 1.2 0.2 0.9-0.6 0.9-0.8-1.1-0.6 0.3 0.2 0.9 0.9 0.6-0.1 0.9-1-0.6-0.1 0.9-0.5 0.6-0.6-0.5-0.4 0.4 0.4 0.5-0.3 0.8-1.2 5-0.7 0.2 0.1-0.7-0.4-0.3 0.3-1.2-0.5-0.5-0.1-0.6 1.5-0.9 0.6-0.1-0.1-1.1-0.9 0.5 0.1 0.5-1.3 0.7-0.3 0.5-0.6 1.8 0.6-0.2-0.4 2.1 1.3 2.1 0.1 3.9 0.4 1-0.8 0.2 0.4 1 0.7 1.3 0.2 0.8 0.6 0.8 0.1 0.6-1.3 2.1-0.1 1.1-0.5 1.8-0.9 1.9-1.8 1.9-0.2 0.5-1.1 1.2-0.8 1.5 0 0.6-1 1.5 0.3 0.6 0.7 0.3 0.2 0.7-2 1-0.3 0.5-1.3 0.5 0.4-1.3-1.2 0.9 0.1 0.5-1.3 0.9-1.2 0.3-4.1 1.9-0.3 0.7-0.8 0.7-1.5 0-1.4 0.9-0.5-0.1-0.9 0.3-0.1 0.6-1.3 0.3-2.3 0.8-0.7 0-0.1 1-0.5 0-0.5 1-1 0.3-0.4 0.5-1.4 0.1-0.8 0.4-1.7 0.3-3 1.5-0.8 0.1-0.3 0.5-1.4 0.3-0.4 0.8-1.3-0.1-0.9 0.2-0.2 0.6-1 0.3-0.5-0.3-1.3-0.1-0.2-0.2-1 0.6-0.5-0.1-0.6 0.1-0.9 0.2-0.4 0.6-0.1 0-0.5 0 0-0.7-0.7-0.9 0.3-0.4 0-0.7 1.1-0.4 0.1-0.8-0.3-0.6-1.3 0-0.4-0.2 0-0.7 1.5-0.6 0.6-0.5 0-0.6-0.4-1.2-0.3-0.7-0.6-0.2-0.4-0.1-0.2-0.3-0.7 0.4-0.6-0.1-0.5 0.1-0.5-0.2-0.2 0.2-0.1-0.1-0.5-0.4-0.4-0.6-0.3 0.1 0.2 0.4-0.3 0.6-0.4 0.9-0.1 0.9-0.8 1-0.5 1.5-0.1 0.9 0.2 0.6 0.1 0.6-0.3 0.5 0 0.1-0.1 0.3-0.9-0.1-2.1-0.7-1.2-0.8-1.7-0.7-0.8-0.6-0.5 0-1.2-0.8-1.1-1.2-1-0.2-3.6-2.6-4-3.6-0.3-0.4-1.2-0.9-1.3-1.4-1.1-1.3-0.7-0.7-2.9-3.4-1.4-1.8-3.8-4.7-2-2.2 0.6-0.5-0.1-0.5 0.7-0.3 0.6-0.6 0-0.6-0.5-0.5-0.2-1-0.7 0.2-0.9-0.5-0.2 0.6 0.7 0.7-0.3 0.7 0.7 0.8-0.3 1.1-0.3 0-1.1-1-2.5-2.6-0.6 0-1.8-1.6-2-2.2-1.3-0.9-1.1-1.2-0.9-1-0.8-0.5-3.2-2.9-1.6-1.7-2.9-3.4-1.3-1.5-1-1.1-1.5-1.8-1.2-1.4-0.9-1.3 0.1-0.5-0.7-1.9 0.2-0.7 0.5-0.1 0-1.2 1-1.7 0.8-1 2.4-1.4-0.2 0.9-1 0.8 0.9 1.4 0.4 0.1 0.9-0.7 0.5 0.4 0.9-0.1 0.7-0.7 0.7 0 0.3 1.1-0.7 0.6-0.4 1.1-0.2 1.5 0.3 0.4 1.2 1.1 1.1 0.2 0.7-0.4 1.1-0.2 1.5-1.1 0.2-0.9 0.9 0.3 1.9 0.2 1.1-0.7 0.4 0.2 0.8-0.3 0-0.7 1.1-0.8-0.2-0.6 0.2-1.2 1 0.8 0.3 1.4 0.5 0 0.9 0.7 0.6 0 0-0.7 0.9 0.4 0.3-0.1 0.4-1.3 1.2 0-0.3-1 0.4-0.5-0.4-0.6 1-0.4 0.7 0.2 0.2 1 0.5-0.1 1.1 1.1 0.4-0.1 0.6-0.8 0.2-0.9 0.4-0.2 1.2 0.3 0.6-0.6 0.6-0.1 0.1-0.8 0.7-0.9 0.3 0.1 0.1-0.6 1.3-0.6 2.1-0.4 0.7 0.2 2.4 0 0.9-0.1 1-1.3 0.2-1.1 0.7-0.5 0.9-1.5-0.2-1 0.5-0.3 0-0.8 0.6-0.2 1-0.9 0-0.5 1.3-2.2 0.1-0.7 1.5-2.3 0.9-0.3 0.4-0.5 0.2-0.9 0.9-1.1 0.5-1 0.8-2.3-1.6 0.4-0.6 0.3-1.1 1.1-0.1 2.4-0.4 0.6-1.3 0.6-0.8-0.3-0.6-0.5-0.6 0.2-1.2-1-0.7-0.2-0.2 0.7-0.5 0.3-1.1 0-1.3 0.4-0.3 0.6-0.8 0.6-4 0.3-1.3 0.3-1.6 1-1.3-0.3-1.7 0.8-0.7 0-1.5 1.2-0.2 0.9-1.1 1.6-0.1 0.5-1.3-0.7-1.8-0.4-0.8 0.3-1-0.4-0.5-0.6-1-0.1-1.7 0.6-1-0.3-1.9-1.2-1.5-0.3-0.9-0.4-1.8 0.3-1.5-0.4-0.9-0.1-1.6-1-0.8-0.4-0.6-0.5-2.2-1.5-1.9-1-1.5-0.9-1.3-1-0.8-0.3-2.4-1.7-1.7-0.6-0.9-0.9-1.9-1.4-0.8-0.4-1.1-1.3-1.4-1.3 1-0.3 0.9-1.4-0.3-1.1 1 0-0.9-0.8 0.1-1-0.8-0.6-0.3-0.7-0.5 0.2-0.3-0.6-0.5 0.4-0.3-1.5-0.8-0.1-0.1-1-0.8-0.5-0.1-1-0.5-0.5 0.3-0.4-0.3-1 0.1-0.6-0.2-1.5 0.2-0.4-0.2-1 0.4-0.8 0.6-0.2 0.4-1 0.6-0.3 0.3-0.8 1.4-0.5 0.3-0.7 0.9-0.3 1-1.7 0.8-0.6 1.5-0.4 0-0.9-1.9-0.3-0.9 0.9-1.7-0.1-0.7 0.7-0.4 0.9-1 1.5-0.3 0 0-0.5-0.3-0.4 0-0.4 0.3-0.3-0.1-0.6 0.9-0.9 0.8-1.5 1.4-0.8 0.2-0.5-0.4-0.7-0.7-0.2 0 0.7-0.3-0.1-0.7 0 0.1-0.2-0.1-0.1-0.5-0.1-0.2-0.4 0.3-0.7 6.9 0.1 0.1-1.4 0.3-1.4 0-2.4 0.1-6.9 0.3-0.4 1.9-0.5 0.4 3 0.3 0.8 1 0.4 0.7-0.1 0.8-2.2 0.9-0.7 0.8 1.5 0.5 0.4 1-0.1 2.4-1.5 1.1 0.2 0.7 0.4 2.1 0.7 1-0.6 1.6-0.7 1.2-0.3 1.7 0.4 0.7 0 1.7-0.3 2.4 0.7 2.7-0.6 0.7-0.2 0.6 0.6 2.2 2.1 1.4 1.1 3.5 0.3 2.9 0.1 2.3 0 1.6-0.2 0.8-0.5 1-1.2 1.1-2.6 1.4-0.6 2.9-0.6 2.1-0.9 1-0.3 1.5-0.2 3-1.2 0.8-0.2 1.7-0.7 1.5-0.4 1.2 0.7-0.6 1.6-0.7 0.6 0.3 1-0.3 0.7 0.5 0.5-0.5 0.7 0 0.5 0.7 0.5 0.7 0 1.4 0.5 2.4 0.2 2.8-0.1 1-0.4 0.6-0.5 1.4-0.4-0.3-1.2 1.3-1 1.2-1.1 1.3-0.5 0.5 0.5 1.2 0 0.7-0.4 0.7-0.9 1.2-0.4 0.4-0.8-0.6-0.7-0.8-0.2-2.2 0.1-0.8-0.3 0-0.9 0.3-2.1-0.6-0.7 0.2-1-0.1-1.2 0.7-1.2 0.9-0.3 1.3-0.8 0.7-0.8 0.5 0.5 1.7 0.7 1.3 0.4 1.1 0.5 0.7 0.2 1.3 0.5 0.9-1.3 1.1-0.5 0.3 1 0.5 0.3 1.4-0.7 1-0.7 0.8-0.2 0.5-0.4 1.6-0.2 0.5 0.3 1.1-0.2 0.5 0.5 0.6-0.3 1 0.7 0.6 0.7 1.8-0.8 1.1 0 1.3-0.5 0.9 0.3 0.2 0.5-0.2 1 1.2 0.2 0.7-0.3-0.2-1 0.3-0.8 0.8 0.2 0.6-0.1 0.5 0.2-0.2 0.6 0.5 0.8 1.1-0.5 0.9-0.7 0-0.7 1.6-0.7 0.4-0.4 1.1 0.3 0.3 0.9-0.3 0.8 1.1 0.7 1.2 0 0.4 0.7 0.8 0.2 1-0.4 0.5-0.5 0.6 0.5 0.9-0.1 1.4 0.5 0.9-0.5 0.4 0.2-0.4 0.9-0.9 0.3-0.5-0.5-0.8 0-0.9 0.7 0.7 1.1 0.6-0.3 0.2 0.8 1.3-0.2 0-0.5 0.9 0.2 0.9 1.9 1.2-0.3 0.7 0.2 0.2 0.4-0.4 1.2 0.7 0.8 0.3 1.2 0.8 0.1 0.7-0.5-0.3-1.2 1.4-2.1 1.1 0.7 0.5 0.6 2.4 0.6 1.2-0.2 0 1.6 0.5 1 0.8 1.1 2.9 0.1 0.5-0.2 1.3 0 1.1 0.5 0.8 0.9 1.8-1.2 0.4-0.6-0.8-0.6 0.9-1.1-0.4-1.1 1.1-1.2 0.3 0.6 1 0 1.5-1.1 0.4 1.4 0 1.4-0.7 1 0.9 0.3 0.5 0.6 1.2 0.7 0.6 0 1.1-0.9 0.7 0.4-0.7 1.1-0.8 0-0.1 1-0.4 0.3-1-0.3-0.2 1.1-0.8 0.6-0.8 1.6-0.3 1.3 1.2 1.2 0.2 0.5 0.8 0.7 0.8 0.4 1 0.1 0.8 0.4-0.8 2 1.8 1.2 0.8-0.6 0.5 0 0.6-0.9 0.6-0.4 0.3-0.7 0-1.3 1.2 0.1 0 1 0.9 0.5 0.6 0.8-0.1 2 0.4 0.9-0.1 1.9-0.8 0.3-0.3 0.4-0.9 1.9 0.4 1.2-0.4 1.1 0.5 1 0.8-0.7 0.7 0.2 0.4 0.6 0.7 0.4 0.1 0.5 0.6 0.5 0.2 0.6 0.8 0.1 0.3 0.4-0.3 2.3 0.4 0.7 0.5 0.2 0.9-0.8 0.6-0.8 1.6 0.1 0.8 0.7 0.6 0.3-0.3 0.6 0 1.2-0.4 0.5-0.1 1.1 0.8 0.7-0.5 0.6-0.4 1.7 0.7 0.4 0.5-0.4 1.2-0.1 0.5 1.3 0.5-0.2 1.1-1.2 0.6 0.8 1.5-0.4 1.4 1.9 0.4 1 0.5 0.6 0 0.6 1.5-0.2 0.3-1.2 0.5-0.3 0.8 0.8 0.2 0.9 1.4 0.1 0 0.5 0.6 0.9 1.4-0.1 0.6 0.2 0.2 0.6 0.8 0.5 0.1 1.4-0.5 0.7 0.1 1.1 0.6 0.1 0.3 0.6 1 0.2 0.2-0.7 0.6-0.7 1.5 0.5 0.7 0.8 0.6 1.4-0.2 0.9 0.9 0.5 0.5 0.7z", "13": "M321.6 276.1l0.6 0.6-0.8 1.3 0.1 1-1.4 1-0.4 1.1-0.8 1-0.8 1.8-0.9 0.8-0.8 0-0.4 0.9 0.1 1.4-0.7 0.6-0.7 0.1-1.4 1.1-1.2 0.2-0.9 0.4 0.1 0.6-0.8 1.8-1.6 2.3-0.5 0.3-0.3 0.8 0.1 1.1-0.5 1.1 0 0.7-0.4 0.5-0.1 0.9-1.2 0.7-0.2 1 1 1.3 0 0.6-0.5 0.2-0.2 0.6 0.3 0.9-0.7 0.4-0.8 1.8 0.6 1 0.2 0.9-0.8 0.8 0.4 0.8 0.6 0.4 0.3 0.7-0.2 1.1 0.7 0.6-0.5 0.8 0.5 1.5-0.7 0.2 0.1 1.1 0.9 0.2 0.2 1.1-0.8 1.7 0.5 1.4-0.6 0.4 0.5 1.8-0.5 1.1 0.4 0.7-0.5 1.3 1.1 0.9 0.2 1.2 1 1 0.8 0.6-0.8 1.8 0 0.6 0.5 0.4-0.3 0.6 0.7 0.8-1.2 0.4 0.2 0.9-0.2 0.1-0.6 0.1-0.5 0.5-0.5-0.2-0.2-0.5-0.7 0-0.3-0.2-0.6-0.1-1.1 0-0.4 0.8-0.2 0.6-0.9 0.1-0.8-0.1-0.1 0-0.8 0.3-0.3 0.5-0.4 0.5 0.2 0.4 0.2 0.8-0.3 0.6 0.4 0.5-0.3 1.1 0.3 0.9-0.1 0.7-0.2 0-0.7 0.3-0.1 0.6-0.3 0.6-0.6 0.2-0.5-0.2-0.8 1.8-0.7 0 0 0.3 0.1 1 0.8 0.6 0.7 0.7 0 0.6 0.4-0.3 0.6 0.1 0.8-0.1 0.4 0.1 1.1-0.4 1 0.4 0.2-0.4-0.4-0.7 0.5 0.4 0.1 0 0.8 0.5 0.2 0.2 0.3 0 0.6-0.2 0.6 0.5 0.6 0.5-0.2 0.4 0.3 1.3 0.7 0.4 0.7 0.4 0.4 0.8 1-0.2 0.7-0.1 0.9-0.5 0.1-0.7-0.6-0.7 0.2-0.4 0.7-0.4 0.9-0.5 0.8 0.3 0.4-0.1 0.5-0.6 0.3 0 0.8 0.4 0.5 0.9 0.8 0.2 0 0.5 0.9 0.1 0.4 0.9 1.3 0.7-0.2 0.8 0.6 0.5 0.3 0.9-1 0.6 1 1.3-0.1 1.1-0.7-0.1-0.2 0.5 1.6 0.6 0.9 0-0.1 0.5-0.7 0.4 0.2 0.9 0.5 0.6-0.2 0.8-1.1 0.3 0 1.6-0.9 0.7-0.1 0.7 0.5 1-0.2 0.4 1 1.1 0.2 0.4 0.8 0.7-0.9 0.8 0.9 0.3 0 0.6-0.6 0.7-1.7-0.1 0.2 0.8-0.2 0.7-0.9 0.6-0.7-0.6-0.7 0.5 0.4 0.9-1.4-0.2-1.1 0.2-0.9 1.1-1.3 0.9-1.4 0.8-0.4-0.4-1.2-0.1-0.5-0.7-0.8 0.2-0.1 1-1.6 0-1-0.9-1.1-0.4-0.5 1.3 0.9 1 0.7 0.1 0.2 0.8-0.8 0.3-0.7-0.7-1.3 0.2-0.5 1.4-0.3 1.9-1.3-0.7-0.8 0.7-0.6-0.9 0.8-0.8-0.9-0.7 0.2-2.6 0.4-0.8-0.2-0.6 0.2-0.5 0.7 0 0.1-0.8-0.1-1.5 0.4 0 0-0.9-0.7-0.3 0.2-2-0.2-0.8 0.4-1.7 0.6-1.1 0.5-2.8-0.7-0.2-2-1.7 0.6-0.5-1.2-0.3-0.1-0.5-1 0-1 1-0.5 0.2 0.2 0.9-0.1 0.5-1.3 0.5-0.5 0.6-1-0.1-1 1.4-1.1 0.2 0.1 1.8 0.3 1-0.8 0.3-1.3 0.1-1.8 1.4-0.5-0.3 0.2-1.4 0-0.9-0.9 0.2-0.7-0.5-1.2 0 0.1-0.6 0.8 0.2 0.5-0.3-0.9-0.8-0.8-0.3 0.3-0.6 1.4 0.1-0.2-1-0.6-0.7-1.2-0.1-0.4 0.3-1-0.1-0.7 0.4-0.6-0.2-0.2-0.9-0.6-0.4-0.9-0.3-1 0.2-0.1 0.4 1.5 0.8 1.2 0.8-0.8 0.8-0.9-0.2 1 1.5 0.6 0.3-0.6 1.4-0.7 0.3-0.9-0.3 0-0.8-0.6-0.6-0.7-0.2-0.6 0.6-1.9-0.2 0 0.4 0.9 0.8-1 0.3-0.7 1.1 0.9 0.8-0.4 2.4 1 0.4-0.3 0.7 0.1 0.7 0.5 0.6-1.2 1.6-1.5-1-0.2-0.8-1.2-0.6-0.2 0.7-0.7-0.2-0.4 0.3-1.4-0.6-1.1 0 0.1-1.8-0.8-0.4-0.9 0.2-0.2-0.7 0.7-0.2 0.7 0.1 0.1-1 0.7-0.9-1.1-0.1 0-0.5 0.6-0.7 0.1-0.7 1.2 0 0.2-0.7 0.6-0.5-0.7-0.5-0.4 0.8-0.9-0.9-0.6 0-0.8-0.4 0.3-0.5 1.1-0.8 0.5 0 0.1-0.9 1.2-0.9 1.3 0.2-0.1 0.9 0.7 0.1 0.3-0.5-0.6-0.6-0.3-1.1-0.7-0.1 0.2-0.8-1.4-0.7-0.1-0.5 0.4-1-1.1-0.6-1.1-1.7-1-0.2-0.1-1-1.7-0.8-1.3-0.3-0.2-0.4-0.9-0.2-0.5 0.4-0.6-0.2-0.2-0.5 0.7-0.7-0.2-0.7-1.5-0.6 0-0.6-1.6-0.4-0.8-0.9 0-0.4-1.2-0.5-0.4-1.7-0.3-0.7-0.8 0-0.3-0.4-0.7 0.1-0.3-1.1-0.3-0.2-0.3-3.3-0.5-1.5-0.6-0.6 0.5-1.9-0.9-0.9 0.1-1.6-0.8-1 0.1-0.5 1-0.1 0.2-0.8 0.4-0.6-0.2-1.3-1.3-0.4-1.3 0.1 0.2-0.9-0.3-1-1.7-0.2 0-1.5 0.5-0.7-1.2-0.6 0.3-1.1 0.6 0 0.5-0.7-0.5-1.6 0.4-0.4-0.1-0.9-0.6 0-1 0.6-0.1 0.8-1.1-0.3 0.3-0.7 0.1-1-0.2-0.6-1.5 0.8-0.1 0.7-1.3 0.1-0.4 0.7-1-0.4-0.5-0.9-0.5 0.1-0.6 0.8-1.1 0.1-0.2 0.6-1.1-0.2-0.9-1.2-0.4-1-0.5-0.1-1.1 0.8-0.5-0.4-0.8 0-0.5-0.9 0.4-0.6-0.5-0.7-0.3-1.1-1.3-0.8-0.6 0-0.8-0.7-1.3 0.2-1.2 1.5-1.5 0.2-0.7-0.6-0.8 0.2-1.3-0.3-0.3 1.6-1.5 0.1 0.1-1-0.9-1.2-0.1-0.8-0.6-0.7-0.7-0.1 0.1-1.5 1.5 0.2 0.5-1.3 0.6-1.1 0-0.4-1.3-1-0.1-1.2 0.2-1.6 0.3-0.3-0.2-0.8 0.8-2.6 0.1-1.2-0.4-0.6-0.8 0.6-1.1-0.1-0.4 0.5-1.9-0.1-0.2-1.7 0.2-0.6 0.7-0.9 1.4-0.5 0.7-1.1-0.6-1.4-1-0.2 0.5-1.4 1.8 0.7 0.4 0.4 1.9 0.4 0-0.7 1.4-1.1 0.5-0.8 1 0.3 0.4-0.2 1.3-0.3 0.9-0.7 0.7 0.8 0.9 0.6 0.8 0 1.8 0.6 0.6 1.6 1 0.5-0.1 0.3 0.7 1 0.9-0.3 0.8-0.7 0.9 0.1 0.4-1.3 0.9 0.6-0.1 1.1-0.5 0.4 0 0.6 0.6 0.2-0.3 0.8 0.3 0.6 0.7-0.1 0.3 0.8 0.6-0.3 0.2-1.1 0.9-0.7 0.6 0.3-0.1 1.4 0.5 0.3 0.7 1.4-0.4 0.8-0.8 0-0.3 0.8 0.3 0.6-0.3 0.6-1 0.5 0.5 0.7 0 0.8 0.9 0.3 0.7 0.6-0.3 1 0.9 1.2 1.8-0.4 0.5-1.1-0.8-0.5 0.2-0.7 0.7-0.5 0.3-1.5 1 0-0.4-0.7 0.9-1 0.6 0.1 0.2-0.9 0.4-1 1.6-1 0-0.9 2.2 1.3 1.7 0.4 0.2 0.8 2-0.4 0.1-0.7 1.4 0 0.4 0.6 0.7 0.1 0.3-2.1 1.4-0.2 0.8-0.5 0.9 0.7 0.8-0.3 0.8 1.6 0.7 0.9 0.5 0.2 0.6-0.3 0.6 0.6 0.7 0.3 1.3 0 1.1-0.8 0.7-0.1 0.5 0.2 0.6-0.9 0.6-0.3 0.1-1 0.6-0.2 0.7 0.6 0.8-0.8 0.9-0.1 1-1.1 1.1-0.3 0.5-0.6-0.6-0.6-0.9 0-0.5-0.4-0.1-1.1-0.5-0.2 0.4-0.7 0.9 0-0.5-2.3 0.3-1.2 1.1-1.8 0.8-1-0.8-0.1-0.9-0.8 0.2-1.1 1.4 1.4 1 0.3 0.4-0.2 1.2 0.3 0.7-0.7 1.4 0-0.1-0.7 0.5-0.5-0.7-1 0.6-0.6 0.8 0 0.3 0.7-0.1 1.3 0.6 1 0.3 0.9 1.3 0.1 0.3 0.8 1.1-0.2 0.8-0.7 1.2 0.8 1-0.6 0.3-1.6-0.2-1.4 0.6-0.6-0.1-0.8-1.1-0.4 0.2-0.4-0.7-1.1-0.5-0.1-1 0.9 0-1 1.2-0.4 1.1-0.2 1.3-1 0.6-0.8 1-0.2 1.3-1.4-1.3-1.3 0.9-0.5 0-0.6 0.8-0.2 1.1 0.4 0.9 0.2 0.9-0.9 0.5 0.7 0.6 0.3 0.5 1-0.1 0.8 0.7 0 1-1-0.6-0.6-0.3-1-0.4-0.3 0.2-0.8 0-1.3 0.6-0.2 0.2-1.2-1.2-0.6 0.6-0.4-0.1-0.7 0.5-1.3-0.5-0.8-0.9-0.8-0.5 0 0.2-1.2-1.5 0.4 0-1 0.1-0.4 0.5-0.7-0.4-0.7 0.1-1.3 0.6-1.1-0.4-0.5-0.2-1.1-0.9-0.4-1.1-1.4-0.2-0.6 0.2-0.6 1.4-0.9 0 0.9 0.4 0.8 1 0.7 1.7-1.1 0.9 1.7 0 0.7 0.5 0.3 0.4 0.7 0.5 0.1 1-0.2 0.1 1-0.4 0.5 0.5 0.4 0.3 1 1.2-0.3 1 0.2 0.9 0.5 0.7 1 1 0.7 0 1.4 0.3 0.6-0.1 1.5-0.6 0.7-1 0.6 0.4 0.8 0.5 0.3 1.6 0.5 0.5 0.8 0.1 1.1 0.8-0.4 0.9 0.2 0.4 0.7 1.6 0.5 0.4-0.3 0.8 0 0.4 0.8 0.8-0.2 0.5 1 1-0.8 0.7-1 0.3 1-0.5 0.7-0.2 0.8 0.9-0.1 1.1-0.5 0-0.6 0.6-0.6 0.5 1.3 0.6 0.7 1.1 0.5z", "14": "M367.1 241.4l0.1 1 0.9 0.4 0.3 1.2 0.9 0.4 0.2 1.5 0.7 1.1-1.1 0.1-0.8 0.4-1.3-0.4-0.8 0.5-0.6-0.4-1.5-1.4-0.6-1.2-0.2-1.1-1.6 0.5-1.8-0.1-0.7-0.3-0.9 0.2-0.5-0.9-1.2-0.6-1.1 0.1-1 1.1-2.3 0.1-0.1-0.7-0.8-0.9-0.9-0.7-0.9-0.1-0.8-1-0.4-0.1-1.4 0.2-0.6-0.1-0.2 0.9-0.8-0.2-1.2 1.4-0.9-0.1-0.8 0.6-0.4-0.3-0.8 0-0.5 0.6-0.5 0.1-0.9 0.8-1.3 0-0.9 0.3-0.7 1.1-0.5-0.4-0.8 0.1-0.5-0.5-1.4 0.9-0.4-0.1-0.8 0.8 0 0.5-0.9 0.6-0.3 1.2-0.7 0.2-0.6 0.9 0.6 1.9-0.5 0.5-0.4 0.9-1.5-0.3-0.6 0.6-0.1 0.5 0.4 1.1 1.7-0.1 0.2 0.5-0.5 0.6-0.1 1-0.6 0.3-0.7-0.7-0.4 1.2 0.4 0.6-0.9 1.1-0.5 1.2-0.5 0.4 0.2 0.9 0.4 0 1.2 1.4-0.3 1 1.1 0.8 0.3 1-0.6 0.8 0 0.6-0.8-0.1 0.7 1.5 0.9 0.5 0.9-0.1 0.2 0.9-0.4 1-1.1 0.3-1.6 1.1-0.3 0-1.7 1.1-0.8-0.1-0.3 0.6-0.9 0-1.4 0.8 0 0.5 0.4 0.7-1.1-0.5-0.6-0.7-0.5-1.3-0.6 0.6 0 0.6-1.1 0.5-0.9 0.1 0.2-0.8 0.5-0.7-0.3-1-0.7 1-1 0.8-0.5-1-0.8 0.2-0.4-0.8-0.8 0-0.4 0.3-1.6-0.5-0.4-0.7-0.9-0.2-0.8 0.4-0.1-1.1-0.5-0.8-1.6-0.5-0.5-0.3-0.4-0.8 1-0.6 0.6-0.7 0.1-1.5-0.3-0.6 0-1.4-1-0.7-0.7-1-0.9-0.5-1-0.2-1.2 0.3-0.3-1-0.5-0.4 0.4-0.5-0.1-1-1 0.2-0.5-0.1-0.4-0.7-0.5-0.3 0-0.7-0.9-1.7-1.7 1.1-1-0.7-0.4-0.8 0-0.9-1.4 0.9-0.7-0.9-0.8-0.4-0.4-0.9-0.7-0.4-0.9 0.1-0.5-0.5-1.4-0.9 0.1-0.7-0.5-1.2 0.2-1 0.7-1.3-1.2-0.7 0.3-0.9-0.3-0.3 0-1 0.7-0.8 0.8-0.4-0.6-0.6-1 0.5-0.4-0.4 0.9-1-1.1-1.2-0.8 1-1.2-1.1-0.8 0.4-0.7-1.5-0.7 0.2-0.7-0.8-1.2-2.1 0-0.8-1-1.7-0.1 1-0.4 0.4-1.1 0.1 0.5 1 0 1.3-1.2 0.1 0.2 0.7-0.4 0.4-1 0.4-0.1-0.4-1.2 0.1-0.5 0.3-1.2 0-0.2-1.4-0.9-0.5-0.2-1.2 0.8-0.8-0.5-1.2-0.5-0.4-0.7-2.1-0.8-1.7-1.4-2.2 0-0.4-0.7-0.5-0.7-1.2 0.1-0.7-0.9-1.7-1.1-3-0.3-0.2-0.5-1.3 1-0.3-0.1-0.9-1.9-4.1-0.9-0.8-1.1-0.5-1.4-0.3-0.7-0.5-1.4-1.4-0.8 0-0.6-0.9-1.4-0.8-1.8 0.5-0.7-0.6 1.1-0.8 1.6-1.8 0-1.3-1.2-0.3 0-2 1.1-0.8 0.8-0.4 2-0.4 0.6-0.5 0.3-0.6 2.8-3.1 1-0.8 1.8-0.6 0.3-0.5-0.7-1-2-2-0.1-0.9 0.1-0.7 0.5-0.8 0.1-0.7 1.2-1.8 0.5-1 0-0.5-0.8-1 0-0.8 0.3-0.8 0.1-1.5-0.4-0.5-0.9-1.8-1.8-1.1-0.9-1.2-0.2-0.9 0.4-0.4 0.3-1.1 0.9-0.2 0.5 0.2 0.6 0 1.1 0.6 1.2 1.3 0.4-0.1 1.3-0.6 1.1-0.7 0.4-0.8 0.5-0.1 1.3-1.2 0.4-1.4 1.2-0.2 0.8-0.6 2.9-0.4 0.6-0.8 0.7-2.1 0.6-0.6 0.8-0.4 1.5-1.2 0.9-1 0.7-0.2 0.5 0.3 0.7 0 0.3-0.1 0.2 0 0.4 0.1 1-0.6 1.3-0.2 0.4-0.4 0.3 0.1 0.3 0.1 0.1-0.1 0.6 0.1 0.5 1.3 0.9 0.4 0.5 0 0.4-0.3 1.1-0.1 0.4-0.3 0.4 0 0.2 0.1 0.6 0 1-1.9 0.1-1.2 0.5-0.1 0.2 0.1 0.4 0.5 0.4 0.2 0.1-0.3 0.1-0.1 0.3-0.1 0.2 0.1 0 0.2-0.2 0.2-0.1 0.2-0.3 0.7 0.3 0.4-0.5 0.5-0.2 0.8 0.2 0.7 0.8 0.8 0.2 0.7 0.6 0.3 0.3-0.2 0.3-0.1 0.3 0.2 0 0.3 0.2 0.4 0.4 0.1-0.2 0.6 1 1.9 1.5 0.8 1.2 1 0.5-0.2 0.3 0.1 0.1-0.2 0.4-0.1 0.6 0.3 0.2 0.2 0.2 0.1 0.3 0.5 0.4-0.1 0.4-0.1 0.2-0.4 0.3 0.1 0.3 0.1 0.5 0.1 0 0.9 0.8 1.8 0.8-0.1 1.6 0.8-0.2 0.5 0.8 0.8 0.4-0.5 0.4 0.4 0.1 0.3 0.5 0.3 0.6-0.1 0.6 1.3 0.4 0.1 0.2 0 0.3-0.1 0.2-0.1 0.1-1.3 0.7-1 0.6-0.2 0.2 0.2 0.3 0.1 0.2 0 0.3-0.2 0.2 0.3 0 0.2 0.2 0.2 0.6 0.2 0.6-0.7 0.4-0.3 1.2-0.1 0.9-0.9 0.8-0.4 0.4-0.8 1.1 0 1.4-0.8 0.4-1.1 0.5 0.4 0.4-0.1 0.1 0.1 0.2 0.3 0.4-0.1 1.6 1.8 1.1 0.9-0.6 0.6-0.4 1.1 1.3 0.7 0.3 0.4 0.2 0 0.1-0.1 0.3 0 0.2 0.2 0.5 0.2 0.5 0.5 0.2 1.1 0.5 0.6 0.3 0 0.3 0 0.1 0.1 0.2 0 0.2 0.3 0.1 0.3-0.5 2.6 0.6 0.6 1.9 3.5 0.4 0.2 1 0 0.6-0.2 0-0.9 0.3-0.6 0.8 0.2 0.2-0.8 0.7-0.7 0.2 0.1 0.3 0.4 0.3 0.3 0.2 0 0.1-0.3 0.4-0.8 1.1-0.3 0.4 0.3 0.1 0.2 0.4-0.1 0.2 0.1 0.8-0.4 0.4-0.8 2-0.8-0.3-1 2-1 0.7 0 0.2 0.1 0.1 0-0.1 1.1 0.2 0.6-0.3 0.8-0.2 1.1 0.3 1.4 0.6 0.6-1.9 1.5-1.2 0.3 0 2-0.7 0.8 1.1 1.3 1.6-1.4 0.9-0.7 0.6 0.1 0 0.1 0 0.2 0.3 0.3 0.8 0.1 0.5 0.8-0.3 1.3 0.8 0.4 0.6 0.9 0.8 0 0.5 0.3-0.7 1.1-0.1 0.5-0.9 0.8-0.2 0.9 0.2 1.8-0.1 0.6-0.9 1.2 1.5 0.2 1.4-0.3 0.7 0 1.7 1.2 0 1.3-0.7 1.2 0.5 0.4 0.3 1 1.7 0.6 0.2 0.8 1.2 1.2 0.1 0.5 1.6 1.7 1.2 0.2-0.4 1.4-0.5 1.6-0.5 0.5-0.2 1.1-0.2 2-0.9 0.8-0.1 0.9 0.4 0.9 0.8 0.3-0.5 0.7 0.4 0.6 0.4 1.5 0.5 0.3 1-0.2 0.2 1.2 1.5 1.3-0.2 1.1-0.9 1-0.9 0.4-0.7 0.7-0.9 0.3-0.5 0.8 0.3 1.3 0.9-0.1 1.8 1.5-0.1 1.4-0.6 0.6 1.8 0.9 0.4 1.1-0.4 0.9 0.7 0.3 0.6 0.9 0.5 1.2 0.9 0.5z", "16": "M670.4 475.6l-0.6 2.6 0 2 0.7 0.9 1.5 0.7 1 0.6 1.3 1.6 0.1 0.5 1.9 1.8 0.3 0.5 0.1 1-0.2 0.6-1.9 1-0.5 0.4-1.1 2.6-0.5 0.5-1.1-0.2 0.7 1.1 2.1 0.6-0.1 1.2-0.4 0.4 0.9 0.6-0.4 1.9 0.3 0.7-0.6 0.5-0.1 0.7-0.8 0-0.6 0.4-0.8-0.3-0.5-0.6-0.5 0.5 0.2 1.7-0.1 0.9 0.7 0.9-1 1.4 0 0.7 0.3 0.5 0 0.6-1.2 1.9-0.2 1.1-1 0.6-0.6-0.2-0.1 0.9-0.9 0.8-1.1 0-0.4 1.3 1.2 0.3 0.8 1.1-0.2 0.9-1.7-0.1-0.4-0.3-1.6 0 0.2 0.5 0.6 0.6-0.8 0.3-0.4 0.7 0 0.7-1 0-0.6-0.6-0.9-0.5-0.2 1.2 0.5 0.1-0.5 1.1 0.6 0.2-0.2 0.9-1 0.4-0.8-0.2-0.3 0.5 0.6 0.4-0.6 0.6-1.7-0.9-1.2-0.3-0.6 0.5-0.8-0.3 0.6-1-2 0-1-0.4-0.4 0.6 0.5 1.1 0.7 0.4-0.3 0.6 1.1 0.5-0.2 0.8 0.3 1.7-1 0.5-0.2-1-0.5 0.1 0.1 1.6 0.3 0.7-0.3 0.4-0.9 0 0.1-1.1-1 0.6-0.2-0.6-1.8-0.4-0.2 0.6 0.8 1 0.4 0.2-0.6 0.9-1.4-0.2-1.7-0.6-0.8-0.8-1.1-0.5-1.3-0.5-0.7 0.8-0.6-0.4 0-0.4-1-0.6-0.7 0.7 0.2 0.7-0.7 0-0.6 0.8-0.8 0.4-0.6-0.1-0.1 0.6 0.6 0.8 0 1.2-0.4 0.2-0.5 1.5 0.1 0.4-1.9 0.4-0.2-0.6-0.7-0.1-2.1 0.5-2 0.8-2.1 1.2-1.7-0.2-1.2 0.1-1.3 1.6-0.9 0.2 0.1 0.4-0.9 1.1 0.4 0.8-0.4 0.3-0.2 1.9-0.8 0.2-0.9 0.5 0.4 0.7-0.4 0.2-0.6-0.3-0.1-0.4-1.2 0.2-0.7-0.1-0.1-0.8-0.6-0.1-0.9-0.6-1.2 0 0.4-1-0.4-0.9 0.3-0.9-0.5-0.7-1.2-0.1-1 0.2 0-0.4-1.2-0.2-0.9 0.8 0 0.4 0.7 1.2 0.3 1.1-0.7 0.1-2.8 1.2-1.1-0.6-1.1-0.2-0.5 0.9 0.1 1.6 0.6 0 0.6 1.2-1.1 0.4 0.2 1.3-0.3 1-1 0.9-0.2 0.6 0.3 2.7 0.7-0.1 0.7 0.8 0 0.5 0.8 0.4 0.5 0.7 1 0 0.3-0.3 1-0.3 1.9 0.1 0.4 0.5-0.2 0.6 1.6 0.8 0.9-0.1 0.7 0.5-0.1 0.7 0.9 0.8 0.5 1 0.9-0.1 0.4 0.9 1.6-0.1 0.7-0.6 1.8 0.8 0.9-0.3 0.7 0.2 0.4 0.6 0.8-0.7 1.6 0.3 1.2-0.1 0.5 0.8 0.8-0.5 0.1 0.7-0.7 0.7-0.7-0.2-0.4 0.5-0.5-0.4-0.4 0.5-0.8 0.2-0.1 0.4 1 0.7-0.4 0.5-0.1 0.9-0.5 0 0 1.1-0.4 0.8-0.2 1.2 1.3 0.6 0.9 1.4 2.4 0.4 1 0.8 1.3 0.6 0.7 0.7-0.1 2.1 0.4 0.2 0.2 0.6 0.7 0.1 1.1-0.3 1.7 0.3 0.3 0.8 0.7 0.3 0.2 0.9 0 1.6-1.3-0.2-0.2 0.4 0.6 1.8 1.4 0.2 1.3 0.7-0.1 1-0.4 1.1 0 0.6 1.5 0.9 0.6 0.7-0.1 1.1-1.3-0.3-1-0.1-0.8 0.4 0.5 0.5-0.7 0.7-1.5 0.4-0.8-0.3-1.4-0.1-0.4-0.7-0.8 0.1 0-1-1.1-0.5-0.8-0.2-0.4-0.6-0.9 0.1-1-0.3 0-0.6-0.5-0.2-0.3-0.6-1.4 0.7-0.7-0.1-0.5 0.7-1.7-1.2-0.7-0.3-0.5-0.7-0.5-0.3-0.2-0.7-1.1-1.2-0.2-0.8-0.5 0.2-1.6-0.3-0.6-0.8-1.9-0.3-1.5-0.4-1.1-2-1.1-0.7-0.7 0.7 0.4 0.3-1.1 1-0.9 0.3-0.1 0.7-0.5 0.9 1.4 1.3 0.5-0.1 0.4 1.6-0.1 0.7-0.8 0.9 0.9 0.3-0.5 0.5 0.4 0.4-1.1 1.4-0.5 0.9 0.8 1 0.8 0.6 0.3 0.5-1.1 2 0.3 0.7-0.8 1.1-0.1 0.4-1.1 1.9-0.5 0-0.6 0.6-0.6 1-1.8 0-2-0.1-0.8-0.4-0.1-0.7 0.8-1-0.3-0.5 0.6-1 0.9 0.3 0.5-0.3-0.9-1.2-0.4 0.4-1.2 0.5-0.4 0.6-0.8 0.4-1.1 0.1-0.3 0.3-1.2-1.6-0.5 0.3-1.4 0.3-0.3-0.2-1.5-0.5-1.1-0.7-0.6-0.1-1-0.7-1.6-0.8-1.6 0.1-0.1 1.1-1.3-0.1-1.7 1.7-1.1 2.5-0.4 0.4-0.5-0.3-0.1-1.2-2.4-1.2-0.8 0.3-0.6-0.7-0.1-0.4-1-0.4-0.8-0.1-0.9 0.2-0.6 0.9-0.5 0.1-0.2-0.5 1.5-0.8 0.2-0.9-0.2-0.6 0.9-1-0.1-0.2 0.7-1.6 0.2-0.8-0.1-0.8 1.2-0.7 0.3-0.8-1-0.1 0.2-0.9-0.6-0.3 0.3-1.1-0.3-1.3-0.4-0.4-0.2-0.8 0.5-0.4 0.1-0.6-0.8-0.2-3.1 1.3-0.3-0.3-1.2 0.6-0.3 0.6-0.9 0.1-0.1-1-1.4 0.6-0.8-0.2-0.4-0.4-1.7 0-0.3 1.1-2.8 0-1-0.6-2 0.3-1 0.2-1.5 0-0.9 0.5 0 0.7-0.9 0.2-0.7 0.5 0 0.5-1.1 0.3-0.8-0.2-1.6 0.4-1.2 0-0.8-0.4-0.7-0.9-1.8 0-0.3-0.4-1.1-0.6-0.5-0.8-0.1-0.9 0.1-0.8-1.1-0.2-0.9-0.6-0.7-0.8-1.9-0.4-0.1-0.7 0.2-1.1 0.5-0.6 1-0.3 1.1-1.5 2.3 0 1.1-0.5 0.5-0.6 0.6 0 0.6-0.9-0.2-1.7 1.2-1.1 0.9 0.1 0.1-0.9 0.7-0.5 0.3-0.6 0.1-1.2 0.3-0.4 0.9 0 0.7-0.5 0-0.9 0.4-1.5-0.4-0.5-0.2-0.9-1.4-0.1-0.8 0.4-1 0.2-0.3-0.6-0.6 0.3-0.5-0.4-0.7 0.2-0.7-1.1 0.1-0.4-0.7-0.2-0.3 1-0.1 0.9-0.6 0.2-0.2-0.9-0.6-1.5 0.2-1.3-0.2-0.8-0.4 0-0.9-0.9-0.7 0.1-1.1-1.1-0.2-0.6 0.5-1.2 0.4-0.4-0.2-1.7 0.5-1.9-0.1-0.6 0.3-0.8-0.7-0.8-0.2-0.8-0.8-0.1-0.5 0.9-0.8-0.3-0.5-0.5 0-0.7 0.4-1.3-0.3-0.7 0.9-1.7 0.4-0.3 0.5-1.6 0.1-0.8-0.2-1.3-0.6-0.8-0.9-0.4-1.3 0.3-0.3 1.1 0.2 1.2-3.9-0.9-0.5 0.1-1.1-0.6-0.3-0.8-0.6-0.2 0.1-0.8-1.2-1.3 0.6-0.8-0.1-1.9-0.6-0.6-0.1-0.7-0.5-0.7 0-0.4-0.8 0-0.5-0.3 0-0.6-1.9-0.4-0.7-0.3-0.4-1-0.7-0.1-0.4-0.9 0.1-0.7-0.9-1.2-0.2-1.3 0.1-0.9-1.1-0.5-1-0.1-0.5-0.5-0.3-1.1-0.9 0.1-0.5-0.7-1.3 0.1-0.8-0.1 0.9-1 0.3-1.1 0.7-1.7-0.1-1.1 0.9-1.3-0.2-1-0.7-0.8 0.9-0.9 1.1-0.4 0.3-0.9-0.5-1.2-1-0.3 0-0.9-0.6-0.7 0.4-0.9 0-0.8 1.1-0.5 2.5-0.5 1.5 0 2 0.5 2.8-0.1 1.1 0.4 1.1-0.2 1.8-0.7 2-0.3 0.3 0.2 2.1-0.6 1-1 0.5-0.8 0.6-1.6 1.1 0.4 0.8 0.6 0.5 1.3 0.4 0.3 0.2 0.9 0.4 0.5 0 1.1 0.7 0.8 1-0.9-0.1-0.9 0.3-0.4 0.6 0.3-0.3 0.6 0.8 0.2 0.1-0.5-0.3-0.6 1.7-0.4 1.2 0.5 0.4-0.1 0-0.9 0.8 0 0.9 1.6 0.3 0.7-0.2 0.5-0.9 0.3-0.3 0.6 0.2 0.6 0.8 0.1 0.5 0.6-0.2 0.8 0.4 0.5 0.9 0.4 0.7-0.1 0.4 0.8 0.9 0.3-0.1 1.1 1.2-0.3 0.4 1.1 1 0.8 0.8-1.7 0.1-1.6 0.9 0.1 0.6-0.4-0.2-0.5 0.5-0.6 0.9 0.4 0.7 0 1.3 0.3 0.3-0.7 0-0.7 0.4-0.9 0.9-0.6 0.7-0.1 0.6-0.8 1.2-0.4 0.2-0.4 1.2-0.3 0.4 0.5-0.1 1.5 1.2 0.5 0.6-0.2-0.1 1.5 0.7 1.1 0.2 0.8 0.7-0.2 0.8 0.2 0.7-0.1 0.7-1.4 1.5-0.5 0.7 0.4 0.5-0.8 0.2 1.1-0.3 0.8 0.9 0.2 0.8-1.1 1.1-0.3 0.7-0.4-0.5-1.3 1.7-0.4 0.7 0.1 1.1-1 0.9 0-0.1-0.8 0.6-0.3 0.7 0.1 2.2-0.3 0.7-0.5 1.1 0.4 2-0.6 0.4 0.8 1-0.1 0.2-0.7 1-0.5-0.3-0.7 0.6-0.7 0.7 0.2 0.3 0.4 1.3 0.3 0.7-0.1 0.2-1.5-0.4-1.1 0-0.9-0.4-0.5 1.1-0.3 0.8-1.3 0-1 0.2-0.9 0.4-0.3 0.5-1.3 1 0.4 0.4 0.5 1.1 0.2 0.6-0.6 1.7 0.3 1.2 1.8 1.3 0.8 0.7 0 0.2-0.6 0.8-0.1 0.2-0.6 1.4-0.4 0.6 1 1.4 0.6 0.7 1.1 0.3 1.1-0.6 1.3 0.3 1.1 0.9 0.5 0.5 0.6 1.7-0.3 0-0.8 1.1 1 1.5 0 0.9 0.4-0.5 0.6-0.1 1 0.4 0.9-0.7 1.2 0.3 0.7 0.6 0.7 1.2-0.1 0.7 1 0.8 0.6 0.6 0.8 1.1 0.4 0.5-0.3 0.2-0.7-0.1-1 0.8-0.2 0.1-0.5 0-1.7 0.5-1.2 0.6-0.7 0.8 0 0.3-0.9 0.9-0.5 0.1-0.5 0.5-0.5 1.6 1.2 0.7 0.3 1.8-0.7 0.4 0.1 0.5-0.5 0.3-1 1.3 0 0.4 0.8 0.1 1.1 1-0.1 0.6 0.6 0.7-0.6 1.1 0.9-0.3-1.6 1.3-1.7 1 0 1.5 0.9 1.4 0-0.2-0.6 0.3-1.8 0.6-0.9 0.4-1.1-0.3-0.8 0.4-0.5-0.1-0.8 0.4-0.7-0.6-0.4 1-1.4 1.4-0.6 0.4-0.9-0.4-1.2 0.2-2.7-0.3-0.8 1.1-2 0.4-0.1 0.8-0.9 0.7 0.2 0.3-0.5 0.6-0.2 0.4 0.4 0.7 0.2 0.2-1.8 0.4-0.5 0.5-2.8 1.5 0.6 0.3-0.6 0.5-0.2 2.2 1.2 0.6 0.1 0-1.8 0.8-0.9-0.5-1.1 1.1 0.1 0.4 0.4 0.4-0.5 0.4-1.4 0.6-0.1 1.4 0.9 0.6-0.2 0.9 0.3 1.1-0.1 0.3 0.3 0 0.8 0.5 0.4 0 0.6 2.6 0.3 0.2 1z", "17": "M320.8 730.6l0.7 0 1.1 0.5-1.1 1.3 0.5 0.9-0.6 1 0.4 0.9 0.6 0.4-0.2 0.9 0.3 1-0.1 0.5-1.1 0.3-0.7 0.8 0.3 0.7 1.8 0.6 0.7 0.9 0.6 0 0.3 0.9-0.3 0.8-0.9 0-0.1 1.5-1-0.2 0.2 1.1-0.8 0.5-0.2 0.8-0.3 0.4-1 0.2 0 0.5-0.5 0.4-0.2 0.7 0.6 0.1 1.1 0.6 0.3 0.5-0.8 0.8-0.4-0.1-1.1 0.4-0.2 0.4-1.1 0.3-0.4 1.4 0.2 0.9-0.4 1.1 0 0.8 0.7 0.1 0.5 0.4 0.5 0 0.4 0.9 0.9-1.1 0.7 0.8 1.3-0.3 0.2 0.9 1 0.4 1.2 0 1.1 0.8-0.2 1-1.2-0.3-0.5 0.3-0.8 0.1 0 0.9-0.5 0-0.8-0.4 0 0.9-1.3-0.4-0.8 0.5 0 0.5 0.8 0.5-0.4 0.4 0 0.9-1.3 0.3-0.3-0.5-0.8-0.1 0.2 0.9-0.3 1.1-0.5 1 0.7 0.4-2.5 2 0.4 0.3-0.1 0.7-0.7 0.1-0.3 1 0.5 0.8 1 0.6 2 0.6-0.1 0.4 0.6 0.6 0 0.6 0.5 1 0.2 0.9-0.7 0.6 0 0.8-0.5 0.5 0.1 1.3-0.4 0.3 0.2 2.3-0.1 0.7 0.5 1-0.2 0.7-1.1 0 0.1 0.5-0.5 1.7 1.6 0.3-0.1 1-1.7 0.6 0.6 0.9 0.9-0.4 0.4 0.2-0.6 1.3 0.1 0.9-0.7 0-0.5 0.6-1.1 0 0.4 0.6 0.5 0.1 0 1-1.2 0.2-0.4 0.3-0.1 0.7-1.4 0.1-1-0.4-0.2 0.6-1.3 0.2 0.4 1.4 0.7 0.9 1.6 0.6 0.7 0.4 0.7-0.1 1.3 0.6 0.9-0.4 1.5-0.2 1.3 0.3 0.6 0.6 1.6 0.9 0.3 0.6-0.4 0.9-0.5-0.4-0.8 0.4-0.6 0.6-0.8 0.1-0.5 0.6 0.3 1.3 0 0.9-0.4 1 0.1 1.6 0.4 0.6 0.2 0.9-0.5 1.5 0.4 0.9 0.3 0.1-0.2 1 0.4 0.4-0.2 1.5-1.5-0.3-1.4-0.5-0.6 0.3-1.1 0-0.7-0.3-2.5-0.2-1.1-0.3-0.5 0.2-1.9 0-1.2 0.4-0.5 0.3-0.9 0.3-0.9 0.5-1.5 2-0.2 1 1.3 0.1-0.1 1.5-0.5 1 0 0.9 1 0.2 0.3 0.4-0.3 0.6 0.8 0.5 0.8 0.7-0.3 1.2-1.1-1-0.5 0.4-1.4 0.4 0.1 1.1-0.2 0.8 0.2 1.8-0.1 0.9-1.1 0-0.8-0.2 0 0.5 0.8 0.9 0.4 0.6 0.7 0.5 0.1 1.2 0.5 0.6-0.2 0.9 0.8 0.8 0.2 0.6 1.4-0.3 0.2 1.4 1.1 0.1 0 0.5 0.6 0.7-0.8 0-0.7 1.1 0.7 0.1 0.6 0.9 0.2 0.9-0.2 0.6-0.7 0-0.1 0.5 0.6 0.2-0.2 0.8-0.7 0.5 0 0.9-0.6 1.4-0.9 0.2-0.1 0.8-1.3-0.2 0.2-0.8-1.6 0-1.2 0.5-0.5-0.4-1.3-0.2-1.2 0.1-0.6-1-0.8-0.6-0.5 0-0.9-0.6-0.8 0.9 0 0.4 0.4 1.3-0.9 1.2 0.2 0.5 1.1 0.2 0.7 0 0.4 0.4 0.5-0.3 0.7-0.1 0.1 0.9-0.2 1.7-0.5 0 0.2 1-0.1 0.8-0.3 0.3-0.2 1.6-1.8 0.2 0.6 1.6-0.9 2.1-0.4 2.8 0.6 0.6 0.3 0.9 0.4 0.9 1.5 0.6 0.7 1.3 0.6 0.1 0.9-0.5 2.3 0.2-0.5 1.2-0.5 0-0.1 1.6-1-0.5-0.6 0.7-0.4 0.1-0.2 1.4 0.7 1.1 1.5 0.5 0.1 0.9-0.7 0.3 0.5 1.1 0.4 0.2 1.1-0.1 0.7 0.2 1-0.3 0.6 0 0.8 1.1 0.7 0 0.5-0.4 0.2-1.3-0.3-0.1 0.2-0.9 0.5-0.5 0.2-1.1 0.7-0.2 1.5 0.8 1.6 0 0.5-0.4 0.8-0.2-0.1 2 2.7 0.2-0.1 1.4 0.7 0.5 0.3 0.8 1-0.4-0.4-2-0.4 0-0.5-1.2 0.1-0.8 0.6-0.4 1 0.3 0.6 0.4 0 1.1 0.4 0.2 0.8-0.4 0.7 0.8-0.3 1.2 0.7 1.9-0.3 0.8-1.3-0.5-2.5 0-0.5 1.2-0.9 0.2 0.1 0.7 1.3-0.5 0.2 0.5-0.6 0.5-0.2 0.7-0.8 0.6-0.4 0-0.4 1.1 1.2 0.2 0.8 0.3-0.4 0.9 0.5 0.3 1.1-0.1 0.4 0.3-0.1 0.9-0.7 0.2 0.4 1.5-0.8 0.5-0.2-0.6-1.4 0-0.2-0.5 0.7-1.1-0.7-0.3 0.4-1.1-0.7-0.2-0.7-1.3-0.4-0.1-0.8 0.7-0.3-0.7-0.9 0.8-0.9-0.1-0.8 0.2-0.8-0.2-0.6 0.6-0.6-0.3-0.5-1.5-1 0.1-0.8-0.3-1.5-0.2 0-1.1-0.5-0.3 0.2-0.5-0.1-0.7 0.3-1.6-2.1-0.1-0.6-0.5-0.2 0.8-0.7 0.3-0.8 0-0.3 1 1 0.3 0.3-0.3 0.7 0.6 0.3 1 0.6 0.2 0.1 0.9-1.1 0.2-0.3 0.9 0.6 0.5 0.9 0.4 0.7 0.5-0.2 0.9 0.7 0.3 0.9 0.8 0.2 1-0.8 0.1-0.4 1.6-1.3 1.4 0.5 0.2-0.1 0.6 0.4 1.5 0.7 0.4 0.3-1.3 0.5 0 0.8 1.1 0.7 0 0-0.5 0.5-0.3 1 0.3 1.5-0.1 0.1-0.6-0.6-1 0.3-0.5-0.5-0.7-0.7-0.3 0.4-0.6 0.9-0.2-0.3-1.2 0.7-0.6 0.2 0.6-0.2 1.4 0.6 0.1 1.1-1.3 0.5 0 0.3 1.9 1.2-0.2 0.8-0.4 0.4 1.1 1.1-0.6 0.7 0.4 1.8 0.2-0.6 0.9 0.7 0.4 0.4-0.5 0.4 0.6 0.4 1.5-0.2 1.1-0.4 0.6 0.1 0.7 0.9-0.1 0.3-0.3-0.1-0.6 0.7 0 0.2 0.5 0.5 0.1 0.2-0.7-0.3-1.3 0.7 0 0.3 0.8 1.1-0.3 0.5-0.5 0.7 0.5 0-1.1 1.1-0.5 0.8-0.1-0.1 0.9 0.9-0.3 0.6 0.8 0-1.8 0.5-0.4 1.4-0.3 0.2-0.8 1-0.3 0.8-0.7-0.2-1-0.3-0.2-0.2-0.8 0.3-0.5 1.6 0.2 0.9-0.2 0.1 0.7 0.7 0.5 1.3-1.1 0.4-0.8 0.6 0.1-0.2 0.8 0.2 1.1-1 0.3-0.3 0.5 0.3 1.6 0.6 0.2 0.6-1.5 1.8 0.4 0.1-1.2 1 0.5 0.2 0.6 1 0 0.4 1.2-0.3 0.6 0.4 0.9-0.3 0.6-0.9 1 0.9 0.8-0.2 0.9-0.7 0.1-0.7-0.3 0.1 0.9 0.5 0.5 0 0.5 0.9-0.4 1.3-0.1 0.5 0.2 0 0.7 1.1 0.3 0 0.7-0.4 0.6 0.3 0.8 0.6-0.9 0.7-0.2 0.8 0.5 2.1-0.4 1.1 0.2 1.2-0.1 0.6 0.5-0.4 1.2-0.6 1.3-0.2 1.5 0.3 2.2-0.5 1.2 1.4 0.8-0.2 1.1 0.8-0.5 0.5 0 0.2 0.6 1.1-0.4 0.1 0.6 1 0.6 0.7 0.7 0.3-0.7 1.3 0.2 0.3 0.3-0.6 1-0.2 1.6 0.6 1.1-1.1 0.2-0.1 0.7-0.9 0.4 0.3 0.7-0.1 0.5-0.6 0.6 0.3 0.6-1.3 0.4-0.6 0.3 0 0.6 0.4 1.2-0.1 0.6-1.2-0.2-0.1 1.6 1.2 1.1 0 0.9-0.6-0.5-0.1-0.7-0.6 0.4-0.5-0.1-0.5-0.5-0.4 0.4-1.1-1.2-0.6 1.4-0.4-0.1-0.4 0.9 0 0.7-1-0.1-0.4-0.3-0.7 0.3 0 1.3-0.4 1.7-0.3 0.4-1.9-0.5-0.3 0.2-1.3-0.3-0.2-0.6-0.9-0.6-0.8-0.9-1.4-0.4-1 0.9 0.3 0.7-0.7 0 0-0.6-0.8-0.9-0.6 0.3-0.3 0.6-0.8-0.4 0.2-0.7 0.5-0.3-0.5-0.8-0.9 0.3-0.2 0.3-1.9-0.1-0.2 0.4-1.3 0.7 0.6 0.3-0.4 1.4-0.6 0.7 0.5 0.5-0.3 0.4-0.6 0.2 0.1 0.5-0.4 1-0.8 0.1-0.3 0.7-0.5-0.4-0.3 0.8-0.9 0 0.1-0.7-0.6-0.1-2.2 0.6 0 0.5 0.3 0.8-0.5 0.5-0.1 0.8-0.4 0.9 0.3 1.8 0.9 0.1-0.1 0.4-0.9 0.8 0.8 0.1 0.7-0.7 0.2 0.3-0.3 2.5-0.4 1.8-1.2 1.1-0.4 0.9-0.5 0.5-0.6 0.1-0.2 0.4-0.9-0.1-0.8 0.3-0.2 0.9 0.4 0.4-0.3 0.8 0.6 0.4 0.9 0.3 1-0.4 0.6 0.2 1.6-0.2 0.9 0.3 0.9-0.1 2.4 0.7 0.4 0.7 0.1 0.7 0.9 0.7-0.7 1.4-0.9 0.5-1.1 1.5-0.9 2 0.1 0.5-1 0-2.1 0.5-0.9-0.2-0.8 0.3-1.2-0.3-0.5 1.4-0.7 0 0.1 1.8-0.9 2.3-0.6 0.4-1.1-0.5-0.9-0.1-0.3 0.5-0.7 0.2-1.4-1.4-0.2 0.3-1.3-0.4-0.5 0.6-1.2 0.1-0.9 0.3-0.9 0-0.8 0.4-0.6 1.3-0.7 0-0.9-1.2 0.4-0.5-0.7-0.2-0.6-0.6-0.7-0.2-1 0.4-0.5 0.9-0.5-0.6-1.5-0.1-0.5 0.6-0.2 1.5-0.9 0.9-0.8 1.7 0 0.7 0.7 1-0.5 0.6-0.7-0.5-2.2-0.3-4.3 0.1-0.6 0.1-1.9-0.4-0.4-2-1.3-1-1 0.7-0.8 0.8-0.9-0.1-0.5-0.2-0.2-0.7 0-0.8 0.5-0.5-0.5-1-1.1 0.5-0.5-0.1-0.7 0.3-0.9-0.5-0.3-1.1-0.6-0.3-0.3-0.6-1 0.2-0.9-0.1-0.5-0.7 0-1.1-0.7-0.5-1.5 0.3-0.5 0.4-0.6-0.2 0-4.2-0.6 0.3-0.6 0-1.5 1-0.8 0.1-0.2 0.2-0.8 0-0.9-0.3-0.6 0.1-1.9-0.4-0.9-0.5-0.2-0.5-0.7-0.5 0.1-0.6-0.9-1-0.2-1.5-1.1-0.2-1.5 0.6-0.1-0.2-0.3-0.5-0.2-0.2-0.3-0.5-0.6 0.4-0.4 0-0.7-1 0-0.4-0.2-0.3-0.2-0.1-0.1-0.1-0.7-0.1-0.4 0.1-0.1 0.1-0.3-0.3-0.7-0.5-0.4-0.7-0.2-0.2-0.2 0-0.2-0.3 0.2-0.2-0.5-0.5 0-0.3-0.2-0.2 0-0.1-0.2-0.4-0.1-0.2-0.2-0.3-0.4-0.1-0.3-0.7-0.6-0.3-0.8 0.2-0.4-0.1-0.4 0.2 0.4-0.5-0.3-0.3-0.4-1 0.1-0.2 0.3-0.7-0.1-0.2-0.5-0.1-0.1-0.1-0.3-0.2-0.5-0.2-0.4-0.7 0.1-1.4-0.1-0.2 0.9 0.2 0.4-0.1 0.3-0.2 0.4-0.4-0.4-1.1-0.3 0.3-0.3-0.3-0.3 0.2-0.2 0-0.1 0.2-0.2 0.3-0.6 0.7-0.5 0 0-0.3-0.2-0.7-0.5-0.2-0.5-0.2 0-0.7-0.8 0-0.4-1.3 0.7-0.7 0.9 0.2-0.5-1.1-0.9-0.4-1.3 1.7-0.8-0.4-0.2-0.8-0.3-0.3 0.1-0.7-0.7-0.1-0.4 0.4-0.5-0.1-0.2-0.8 0.4-0.7-0.6-0.3-1.1-0.1-0.3-0.6-0.6 0.1-0.1 0.8-0.4 0.3-0.8-0.1-0.1-1 0.4 0.1-0.2-1-0.4-0.1-1.2 0.1-0.4-0.8 0.6-0.8-0.1-0.9-1.2 0.5-0.6-0.3-2 0.8-0.3 0.3-0.7-0.2-0.7-1.5-0.6-1.7-0.2-0.2-0.5-2.4-0.3-1.9-0.7-2.8 0.1-0.3-0.4-1.1-0.4-2-0.8-3-0.4-1.5 0-0.8-0.3-1.1-0.5-0.7-0.2-3.5-0.1-0.3-0.3-3.1-0.7-3.7-0.3-0.4-0.3-0.9-0.5-3.3-0.7-2.7-0.5-0.9-0.1-0.6-0.8-1.5-0.6 0-1.2-1.3-0.4-1.3-0.1-1-0.4-1.3-0.5-2.9-0.2-0.9-0.5-0.2-1.4-4.1-0.2-1.9-0.5-1.7-1.1-2.9 0-0.6 0.8-0.6-0.5-0.8-0.6 0.5 0.1 0.8-1.3 0.1-0.1-1.2-1.3-2.6 0.3-0.2-0.2-0.9 0.2-0.7-1.1-2.2-2 0.2-0.4-0.6-0.7-0.1-0.6-0.8-1.1-0.3-0.6-0.6 1.1-0.5 0-0.7-0.9-1.6 0.2-0.8 1-0.4 0.4-0.1 1 0.3 0-0.2-0.3-0.8 0.1-0.1 0-0.2 0.6-0.2 0.4 0.3 0.2 0.2 0 0.4 0.5-0.2 0.8-0.5 0.1-0.4 0.2-0.1 0.4 0.1 0.1-0.3 0.3-0.3-0.1-0.8 0.4-0.6 0.2-0.3 0-0.3 0.5-0.3-0.6-1-0.2-1.2 0.4-0.6-0.1-0.9 0.7-0.6 0.4-0.8-0.7-1.6-1.3-0.4 0.5-1.2 0.9-0.4 1 0.1 0.3-0.4-0.6-1.3 0.1-1.3-0.7-0.5-0.6 0-0.5-1.5 0.3-0.7-0.9-1.6 0.9-0.8 0.1-0.5-0.5-1-0.6-0.4 0.4-0.9 0.1-0.9-0.3-0.3-0.2-1.1-0.8-0.4-0.2 0.6-1-0.5-0.7-0.2 0 0.6-1.1 0.2-0.6-0.1-0.9-0.6 1.2-0.4 0.3-0.8-0.3-0.8 0.9-0.4 0.3-0.5 1-0.1 0.4-0.3 0.3-0.7 0.7 0-0.1 0.7 0.3 0.5 1-0.3 0.6 0.5 1.1-0.6 0.2-0.5 0.7 0.3 0.5-0.4 0.4-0.8-0.3-0.6 0.7-1.2-1.2 0 0-0.4 0.6-0.6 1 0-0.3-0.9 1.5-1.8 0.5-1.1 0-0.6 0.5-0.8 0.1-0.9-0.9-0.4-1 0.3-0.8 0.5-0.6-0.8 1.1-1.2 1.1-0.7 1 0.3 0.8 0.6 0.3-0.9-0.2-1.1 0.2-1.4 0.5-0.2-0.3-0.8 0.2-0.5-0.8-0.8-2.1-0.4-0.1-0.8-1 0.2-0.4-0.7-0.6 0.3-0.9 0.7-0.2-0.5 0.6-0.4-0.5-1.7-0.3-0.5 0.4-1.2 0.3-0.1 0.2 0.8 0.6-0.8-0.1-0.5-0.8 0.1-0.1-1.8-0.6 0.1-0.9-0.9 0.2-1-0.4 0-0.7 0.9-0.2-0.8 0.8-0.3-0.3-0.4 0-0.9 1 0.5 0.9-0.8 1.8 0.9 0.3-0.3 0-0.8 0.3-0.7 0.9-0.2 0.4-0.5 1.1-0.2-0.3-1.1 0-0.7 0.4-0.2 0.7 1.1 1.9-0.2-0.1 1.5 0.5 0.1-0.2 1.1 0.5 0.2 1.5-0.5 0.8-0.5 0-0.8 0.8 0.1 1-0.5-1.1-0.8 0.4-0.9 0.8-0.4 0.1-1.5 1.3 0 1.4-1.2 2.5-0.4 0.1-0.4 2.4 0.1-0.3-0.6-0.1-2.5 1.2-0.9 0.6 0.1 0.1-1-0.5 0-0.9-0.7 0.4-0.5 0.5 0.4 0.4-0.2 0.7 0.2 0.6-0.6 1.5 0.2 1.6-0.3 0 1 0.4 0.4 1.1 0.6 0.1 0.7 1 0.3 0.8-0.2-0.4 1 1.6 0 0.4-0.8 0.9 0.1 0.5-0.5 0.3-0.9-0.2-0.3 0-1.6 2.1 0.1 0.9-0.6 0.8-0.3 1.2 0.5 0.4-0.6 0.9-0.2 0.7 0.7 0.1 0.7 0.8-0.2 0.5-0.5 1.4 0.1-0.1-1.6 1.4 0.1 0 1.2 0.9 0.2 0.3 0.5 1.1-0.5-0.3-0.6 0.1-1.9-0.6 0.2-0.2-0.6 1.1-0.9-0.2-1.5-0.7 0 0-0.7-0.8-1 0-0.9 1.1-1-0.2-2-0.8-0.1-0.3-0.7-0.6-0.4 0.3-0.9-0.1-0.5-1-0.3-0.2-1.1 1.3-0.4 0-1 0.3-1.3 0.4-0.7 0.9 0.6 0.6 0.2 0 0.7 0.4 0.8 0.6 0.2 0.9-0.5 1.2 0.5 0.4 1 1 0.3 0.3-1.7 0.6-0.1 0.6 0.5 0.1 0.7 1.2-0.7 0 1.9 0.6 0.3 0.7 0.8 1.4-0.5 0.9 0 0.6-0.5 1.6 0 0.5 0.8 0.8-1.2 0.7-0.1 0.5 0.5 0.9 0.4 0 1.4 0.5-0.5-0.2-1.2 0.4-0.3 1.5-0.2 1.5 0.2 0.1 0.9 1.5 0.1-0.2-0.5 1.1-0.3 0.3 1.5 1-0.1 0.3-0.9 0.6-0.4 0-0.7-1.6-0.2 0.4-2.2-1.4 0.1-0.1-1.3 0.7-0.1 0.7-0.5-0.2-0.4-0.7 0.2 0.1-0.7 0.6-0.2-0.1-0.7-0.8-0.2-0.2-1.9 2.8-0.4 0.5-1.4 0.8-0.4 1.2-0.2-0.1-0.3 0-1.6 1.3 0 0-1.6 1.2-0.1 0.3 0.8 0.1 1.3 0.6-0.2 0.4-0.7 0.2-1 0.7 0 0.2 1 0.8 0.4 0.3 1 0.9 0.3 0.1-0.9 0.8-1.5 0.1-1.3 0.7 0.2 0.8-0.3 0.4-0.4 0.4-1-0.7-0.9-1-0.2 0.1-1.5 0.9 0 0.3 0.8 0.9 0.3 0.2-0.6 1.6-0.5 0.9 0.2 0.7-0.8 0.5 0-0.1-0.8 0.2-1.7 0-1.7 1.1-0.2 0-1.6 0.6-0.5-0.5-0.5-1.1-0.2 0.8-1.4 0.3-1.1 1.3-0.1 0.2 0.8 0.9 0.1 0.3-0.8 0.6 0.4 0.2 0.8 1.8 0 0.2-0.6-0.7-1 0.9-0.4 0.6 0 0.6-1.6 0.7-1.1 1 0.2-0.4-1.3 0.5 0 0.6-1.1 0.2-1.5 0.3-0.8 2.5-1.1 0.4-0.6 0.6 0.9 0.4-0.7 0.3 0.7 0.2 1 1.1 0.2 0.2 0.6-0.5 0.5 0 0.9-0.9 0.7-0.1 0.5 1.5 0.3 1-0.3 0 0.9 1 0.8 0.9-0.2 0.7-0.6-0.2-0.7 0.4-0.2 1.1 0.6z", "18": "M282.7 1038.4l-0.1 0.8-0.9 0 0-0.5 1-0.3z m0 0l1 0.3 0 0.4-1 0.1 0-0.8z m-0.7-0.4l0.3 0.5-1.4 0.5 0-0.3 1.1-0.7z m-2.2-10.8l0.5 0.7 0.2 0.7-0.8-0.1 0.1-1.3z m-3.1-3.3l0.5 0.1 0.5 1-0.8-0.1-0.2-1z m-0.6-1.5l0.4 0.3 0.2 0.8-0.5 0.2-0.1-1.3z m-26.5-79.4l0.6 0.3 0.3 0.7 0.4 0.1 0.2 0.3 0.1 0.2 0.2 0.4 0 0.1 0.2 0.2 0 0.3 0.5 0.5-0.2 0.2 0.2 0.3 0.2 0 0.2 0.2 0.4 0.7 0.7 0.5 0.3 0.3 0.1-0.1 0.4-0.1 0.7 0.1 0.1 0.1 0.2 0.1 0.2 0.3 0 0.4 0.7 1 0.4 0 0.6-0.4 0.3 0.5 0.2 0.2 0.3 0.5 0.1 0.2 1.5-0.6 1.1 0.2 0.2 1.5 0.9 1-0.1 0.6 0.7 0.5 0.2 0.5 0.9 0.5 1.9 0.4 0.6-0.1 0.9 0.3 0.8 0 0.2-0.2 0.8-0.1 1.5-1 0.6 0 0.6-0.3 0 4.2 0.6 0.2 0.5-0.4 1.5-0.3 0.7 0.5 0 1.1 0.5 0.7 0.9 0.1 1-0.2 0.3 0.6 0.6 0.3 0.3 1.1 0.9 0.5 0.7-0.3 0.5 0.1 1.1-0.5 0.5 1-0.5 0.5 0 0.8 0.2 0.7 0.5 0.2 0.4 0.9-0.5 0.3-1.4 0.1-0.3 1-1.2 0.5-0.3-0.4-1 0.9-0.2-0.6-0.7-0.4-1.6 1 0.6 1.4-0.3 0.2 0.4 0.8-0.2 1.2 0.6-0.4 0.7-0.1 1.5 1 0.4-0.4 1 0.3 1 0.7 0.6-0.2 0 0.7 1.3 1.2 2.1 0.7 0 0.5 1-0.2 0.1 1.1-0.9 2-2.3 1.1-0.1 1.1 0.3 0.7 0.4-0.7 1.4-0.1 0.5 0.4 2-0.2 0.8 0 0.7 0.4 2.5-1.6 1 0.8-0.1 0.8-0.5 0.2-0.7 0.7 0.3 0.9 1.5 0.8-0.2 0.6 0.4 0.3-0.4 0.7 0.1 0.6 0.5 0 0.2 0.8-1.6-0.3-0.7 0.5-0.4 0.6 0 0.7-0.6 0.7-0.3 1.4 1.1 0.6 0.5 0.1 1.1 0.7 1.4-0.1 0.4 0.4 1.1 0.3 1 1.3-0.3 0.3 0.8 0.6 1 0 0.3 1-0.2 0.7-0.6 1.5-0.7 1.2 0.5 0.3 0.1 1.2-2.3 0.1 0 0.4 0.4 0.9 0.5 0.2-0.2 1.6 0.2 0.3-0.4 1.3-0.1 1.8-0.3 0.9 0.5 0.7-0.2 0.2 0.8 1-0.4 0.7-0.3 1.5 0.4 0.4 1.1 0.1 0 0.5 0.7 0.4 0.3 0.8 0.6 0.3 0.6-0.2 1.1 0.4 0.7-0.1 1.3-0.7 0.7-0.2 0.2-1 1-0.7 1.4-0.5 1.6-1.3 2.1 0.3-0.3 1.2 1.2 1.8 0.1 1 0.6 0 0.4 0.6-0.6 0.9-0.2 0.9 0.1 0.9-0.3 0.6-0.8-0.3-1.4 0.8 0.2 0.8 0.4 0.2 1.5 1.8-0.3 0.5 0.3 1 0.4 0.3-0.4 0.8-0.3-0.1-0.6 0.7-0.6 1-0.2 1 0.8 0.8-0.1 1 0.5 0.9-0.9 0.3 0.1 0.8-0.1 1.2-0.6 0.2 0 1-0.4 0.9-0.5 0.5-0.3 1.1 0 0.5 0.6 0.1 0.4-0.3 1.3 1.2 1.3 0.2 0.9-0.7 0.6-0.2 0.5 0.9 1 0.9 0 0.5 0.7 0.6 0.9 0.4-0.4 0.6 0.1 0.4-0.5 0.8-0.7-0.2-0.6 0.7-0.4 0.8 0.2 0.5-0.3 0.6 0 0.8-1.1 1.5-0.7 0.6 0 1-0.3 1.3 0.3 0.6-0.6 0.6 0.1 1.6-0.7 0.9-0.7 0.4-0.5 0.6-0.1 0.8-0.5 0.7-0.9 0.3-0.7 0.9 0.1 0.4 0.8 0.7 0.1 0.6 0.6 0.5 0 1.1 0.5-0.2 0.4 1 0.6 0.3 0.6 0.5 0.2 1.3-1 1.2-0.1 0.7-1.3 1.4-0.7 0 0.4 1 0.4 0.3 0.7 2 1 1 0 0.5 0.8 0.9 0.4 1.2-0.6 1.2-0.8 0.5-0.6-0.6-0.5 0.6 0.6 1.7-0.7 0.1-0.3 0.9-0.9 1.1-0.6 0 0.7 1.1-0.2 0.8-1 0-0.6 0.7-0.4 0.1-2.6-2-0.5-0.5-0.8-0.4-0.5-1.2-2.5-3-0.8-1.1-2.7-3.3-0.6-0.8-2.2-2.7-0.9-1.4-2-2.6-0.9-0.9-0.9-0.1-0.5-0.6-0.4-0.7-0.4-1.8-0.4-1.7-0.2-0.4-0.9-2.2-0.9-1.7-1.6-3.8-2.1-4.4-0.7-2.4-0.7-2.6-0.3-2.2-0.6-5.7-0.8-4.4-0.8-3 0.8 0.1 0.3 1 0.8 0.4-0.2 0.6-0.9 0.2 0.3 1.1 0.4-0.2 0.3-0.7 1.4 0.7 0.3 0.5 0.1 0.8 1 0.6-0.4 0.7 0.3 0.7 0.1 1.2-0.2 0.5 0 1.1 0.3 0.4 0.6 0.2 0 0.7-0.8 1.6 0 1-0.3 0.3-0.2 1.2 0.1 0.5 4.9-0.1-2.8-1.1 0-0.4 0.4-1.4-0.4-0.8-0.5-0.4 0.1-0.9 0.3-0.8-1.1-0.3 0.3-1.3-0.2-0.6-0.4-0.5-0.2-0.7 0.6-0.6 0-1-0.7-1.8-0.4-0.6-0.7-0.1 0.3 0.9-0.8-0.1-0.1-0.8-0.5-0.9-0.3-0.1-0.7-1.7 0-0.9-0.6-0.9-0.1-0.4 0.4-0.6-0.1-0.5-1.3-1.4-0.6-0.3 1.2 3.6-0.1 0.8 0.2 0.8-0.6 0.3-0.2-1-0.6-1.7-0.7-2.7-0.7-2-0.8-2.4-0.8-2.9-1.2-3-2.7-5.6-0.1-0.4-2.2-4.8-0.7-1.9-1.2-5.2-0.8-2.9-0.2-1.3-0.5-1.4-0.8-2-0.2 0-1-2.8-0.9-2.7-0.5-0.5 0.2-0.5-1.2-2.4-0.8-1.1-1.2-0.7-0.4 0.2-0.5-0.5 0-0.4-1.1-3.1-1.1-2.6-0.8-1.8-0.8-1-1.2-1-0.6-0.3-0.4-0.9-1.2-1.4-1-0.8-0.4 0.3-1.4-1.9-0.9-1.2 0.1-0.8-0.4-0.8-0.9-0.8 0.5-0.5 0.7 0.2 0.4-1.1-0.2-0.2-0.2-0.1-0.1-0.2 0.6-0.9-0.2-0.5 0.4-0.1 0.3 0.1 0.3 0.1 0.5-0.3 0.6-0.5 0.3 0 0.1-0.2 0.4 0.1 0.3-0.3-0.1-0.2-0.4-0.2-0.3 0-0.2 0-0.2 0.4-0.7-0.2-0.7-0.2-0.2 0.1-0.3 0.2 0 0.2-0.9 0.6-0.2 0.4-0.4 0-0.4-0.2-0.3 0.2-0.2-0.2-0.1-0.1-0.5 0.2-0.1 0.2 0.1 0.5 0 0.3 0 0.1 0 0.3 0 0.4 0.1 0.3 0.2 0.7-0.9 0.7-0.6-1.1-0.5-1.6-0.1-1.1-0.5-1.1-0.2-0.8-0.4-0.6-0.3-0.9-0.4 0.2-1.6-4-0.9-2.1-1-1.3-0.8-1.7-0.6-1.1-0.4-1.2-1.8-4.3-0.9-1.9-0.6-1.6 0.7 0.2 0.3-0.3 2-0.8 0.6 0.3 1.2-0.5 0.1 0.9-0.6 0.8 0.4 0.8 1.2-0.1 0.4 0.1 0.2 1-0.4-0.1 0.1 1 0.8 0.1 0.4-0.3 0.1-0.8 0.6-0.1 0.3 0.6 1.1 0.1 0.6 0.3-0.4 0.7 0.2 0.8 0.5 0.1 0.4-0.4 0.7 0.1-0.1 0.7 0.3 0.3 0.2 0.8 0.8 0.4 1.3-1.7 0.9 0.4 0.5 1.1-0.9-0.2-0.7 0.7 0.4 1.3 0.8 0 0 0.7 0.5 0.2 0.5 0.2 0.2 0.7 0 0.3 0.5 0 0.6-0.7 0.2-0.3 0.1-0.2 0.2 0 0.3-0.2 0.3 0.3 0.3-0.3 0.4 1.1-0.4 0.4-0.3 0.2-0.4 0.1-0.9-0.2 0.1 0.2-0.1 1.4 0.4 0.7 0.5 0.2 0.3 0.2 0.1 0.1 0.5 0.1 0.1 0.2-0.3 0.7-0.1 0.2 0.4 1 0.3 0.3-0.4 0.5 0.4-0.2 0.4 0.1 0.8-0.2z", "19": "M165.7 1082.3l0 0.1 0.1 0 0 0.1-0.1 0 0-0.1 0-0.1z m2.4-1.6l0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0-0.1 0-0.2 0-0.1 0-0.1 0-0.1 0-0.1 0 0-0.1-0.1 0-0.1 0-0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0 0.1 0.1 0 0 0.1 0.1 0 0.1 0 0.1 0 0.1 0 0-0.1 0.2 0 0 0.1 0-0.1 0.1 0 0.1 0 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1z m-27-59.6l0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0-0.1 0 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1z m46.5-1.9l0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0-0.1 0 0-0.1-0.1 0 0-0.1 0.1 0-0.1 0 0-0.1 0-0.1-0.1 0 0-0.1 0-0.1 0 0.1 0.1 0 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.2z m-45.2-1.1l0 0.1 0.1 0 0 0.1 0 0.1 0.1 0 0 0.1-0.1 0-0.1 0 0-0.1 0-0.1 0-0.1 0-0.1z m45.6-0.7l0 0.1 0 0.1 0 0.1 0 0.1 0.1 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1-0.1 0 0-0.1 0-0.1 0-0.1 0.1 0z m-34.8-14.6l0.1 0 0 0.1 0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0-0.1 0 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0.1 0z m-16.2-8.2l0 0.1-0.1 0 0-0.1 0.1 0z m51.6-0.3l0 0.1-0.1 0 0 0.1 0.1 0 0-0.1 0 0.1 0.1 0 0.1 0 0.1 0 0.1 0 0-0.1 0 0.1 0.1 0 0.1 0 0.1 0 0.1 0 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0 0-0.1-0.1 0 0-0.1-0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0.1 0 0 0.1 0-0.1 0 0.1 0.1 0 0-0.1 0 0.1 0-0.1 0.1 0 0-0.1 0.1 0z m-51.5 0.1l0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.2 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0.1 0 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0z m4.1-4.4l-0.1 0 0 0.1 0 0.1 0 0.1 0.1 0 0 0.1-0.1 0-0.1 0-0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.2 0z m1.2-0.2l-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0-0.1 0 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0-0.1 0.1 0 0.1 0z m13.8-6.4l0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0.1 0 0 0.1-0.1 0 0-0.1-0.1 0 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0-0.1 0.1 0z m-21.4-2.7l0.1 0 0 0.1-0.1 0 0 0.1 0-0.1 0-0.1z m23.4-1.6l0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0.1 0-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0-0.2 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1-0.1 0 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0z m7.2-8.3l0.1 0 0 0.1 0.1 0 0 0.1 0 0.1 0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0.1 0 0 0.1 0 0.1-0.1 0-0.1 0 0-0.1 0-0.1 0-0.1-0.1 0 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1-0.1 0-0.1 0 0-0.1 0-0.1 0.1 0z m-27.8-3.6l0.1 0 0 0.1 0 0.1-0.1 0 0-0.1-0.1 0 0-0.1 0.1 0z m18-3.7l0 0.1 0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0-0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1z", "20": "M500.3 522.8l-0.4 0.1-0.7 0.8-0.7 0.1-0.2 0.6-1.6-0.1-0.7 0.4-0.9 0.3-0.3 0.6 0.5 0.7-0.7 0.5-0.4 0.7-0.8 0.1-0.7 0.5-1.3-0.2-0.3 0.6 0.2 0.6-1 0.4-1-0.1-0.8-0.9-0.4 0-2.1 0.4-0.7-0.4-0.7 0.3-1.7-0.2-1.5-0.5-0.8 0.5-1.1-0.9 0.2-0.8-1.1 0.6-0.1 0.5-1.2 0.2-0.6-0.1-1.3 0.2-1.1-0.1-0.4-0.9-1.2-0.7-1.7 0.3-1.1-0.7-0.8 1.1-1.1 0.3-0.3 0.4-0.7 0.1-0.7 0.5-1.3-0.2-1.6-1-0.2-0.7-0.6-0.1-0.2-0.9-0.5-0.1-0.1-0.7-0.6-0.7-1.1 0.7-0.8 0.2-0.2 0.7 0.5 0.4-0.6 0.7 0.4 0.7 0.5 0 0.6 1.2-0.1 0.9 0.2 0.4 0.8 0.4 0.1 0.7 0.5 0.7-0.4 1-0.9 0.4-0.2 0.8-1 0-0.4 2.3-1.1 0.4 0.3 1.3 0.8 0 0.1 1.6 0.4 0.6 0.5 0.1 0.6-0.4 0.2-1.1 1.3 0.3 0.5-0.3 0.8-1.2 0.6 0 0.3 0.5 1.4 0.1 0.4 1 0.6 0.4 1.8-0.3 0.8-0.6 0.5 0.1 0.6 1 0.5 0.3 0 1.2 0.7 0.7 0 0.8 1 0.5 0.8 0.1-0.3 0.6 0.3 0.3 0.9 0.2 0.3-0.5 1.4-0.2 0.2 1.3 0.3 0.3 0.8-0.3 0.8 1.2 0.9 0.3 0.1 1.4-0.7 0.6-0.9 1.5-0.2 2.4 0.5 0.1 0 0.7-0.6 0.4-0.2 0.7-0.4 0.3-1.9-0.4-1.1 1.3-0.9 0.1-0.8-0.3-0.3 0.2-1.1 0.1-0.7 1.4 0.7 1.1 0.1 2-0.9 0.3-0.4 0.6-1 0.7-0.4 0.7-1 0.4-1.3 0.1-0.9 0.3 0 0.8-0.2 0.6 0.5 1.3-0.1 0.5 0.4 0.7-1.3 1.5 0.6 1.9-0.6 1.1-0.4-0.8-0.4-0.3-0.3 0.8-0.6 0.3-0.7-0.1-1.2 1.5-0.1 0.8 0.3 0.4-0.3 0.5-0.5-0.1-0.1 0.8-0.4 0.3-1.6-0.6-0.2 0.7-1.4-0.2-0.8 0.7-0.4 1-1.2-0.1-1 0.8-0.1 0.9-0.9 0.1-0.3-2.2-1.9-0.7-0.3 0.3 0.1 1-0.5 0.3-0.8-0.7-0.6 0.2-0.2 0.8-1.1 0.8-1-0.4-0.1-0.7-0.7-0.3-0.8 1.2-1.3 0.6-0.1 0.3-0.2 1.8 0.5 1.5-0.2 0.5 0.2 1.3-0.6 0.6-0.4 1.2-1.3 0.1-1 0.5-0.1 0.6 0.3 0.6-0.4 0.5 0.2 0.7-0.1 1.2-1 0-0.5 0.6 0.6 0.2 0.5 0.6-0.2 1.2-0.7 0.5-0.5-0.4 0.1-0.9-0.5-1.1-1.2-0.3-0.6 0.7-0.2 1.3-0.5 0.2-0.3 1 0 0.8-0.6 1.4-0.6 1 0.1 0.7-0.4 0.7 0 0.8 0.5 0.4 0 0.7-0.3 0.4 0.2 0.6-0.2 0.9-0.7 1.5 0 0.6-1 0.3-0.7-0.6-0.7 0-0.5 1-0.1 1.3-0.5 0.8 0.4 1.1 0.1 0.9-0.5 0.5 0.1 0.7 0.3 0.5-0.2 0.6 0.6 0.6-0.3 1.6 0.3 0.9-0.5 0.9-0.7 0.7 0.1 0.5-0.5 1.5-1 1.5-1.3 0.5-0.8-0.2-0.4-0.7-0.7 0 0.1-0.5-0.9-0.5-0.6-0.7-1.5-0.2-1-0.3-0.2 1.1-0.3 0.1-1.1-0.4-0.4-1 0.8-1.1-0.4-1-0.9-0.9-0.1-1.1-1.1-0.7-0.6-1.3-0.9 0-1.2-1.7-1.3 0-0.6-0.5-0.6 0-1.5 1.1-0.8-0.2-0.3 0.6-0.6 0.3-1 1.1-1.3 0-1.1 0.8-0.7-0.8-1.6 0.1-0.4 1-0.8 0.1-1.2-0.3-1.1-0.6-0.2-0.4-0.9-0.9-2-0.7-0.7 0.4-0.6 0-0.3 0.4-1 0.1-0.2 0.7-1.4 0.1-1.2 0.4-0.5-0.1-0.8 0.1 0.1-0.8-1.2-0.9-0.2-0.8 0.5-0.5-0.8-1.8-1.1-0.4-0.6 0.1-1-0.3-0.5 0.6-3.8-0.7-0.9-0.9-0.8 0.1-0.5 0.6-0.1 0.7 0.4 0.3-0.4 0.8-2.4-0.4-0.2 0.8-0.5 0.4-0.9 0.4 0.1 0.3-2.5 0.2-0.7 0.1-0.5-0.6-0.7 0-1.2 0.9-0.9 0 0 1.1 0.4 1.5 0.4 0.1-0.2 1.2-1.2-0.5-0.3 0.6-1.2-0.4-0.2 0.2-2.1 0-0.4 0.8-0.4-0.8-0.5-0.1-0.2 0.7-0.5 0.3-1.4-0.6-0.9 0.1-0.7-0.2-0.6 0.3-0.5-0.4-0.7 0-0.9-1-0.7-0.4-1-0.1-1 0.8-1.4 0.1-0.6-2.2-0.3-0.5 0.4-0.9-0.7-0.3-1.1-0.2 0.2 0.7-0.5 0.7-0.9-0.5-0.6 0.6-1.6-0.7-0.1 0.8-1 0.2-0.8 0.5-1.2-0.2-0.3 0.2 0 0.9 0.2 0.5-0.3 0.6-3.6 2.2-0.7 0.1-0.8 0.6-0.7 0.1-0.6 0.5-1.4 0.1-0.1 0.5-1.3 0.3-1.2-0.4-1.6-0.7-0.6-0.1-0.2 0.7-1.6 0.3-0.3 0.6-1.1 0.3-0.1-0.7-1.1 0.2-0.3-0.6-0.6-0.2-1.5 0.2 0 0.9-1.3-0.3-0.5-0.3-2.1 0.1-0.2-1.4-0.4-0.8 0-0.7-1.1-0.6 0.1-0.6-0.7-1 0.1-0.9 0.7-0.1 0.5-0.4 1.6 0 0.8 0.5 1.3 0.4 0.8 0 0.6-0.4-0.6-0.7-0.6-0.1 0-0.9-0.5-3-0.5-1.1-1.6-1.8-0.7-0.3-0.1-0.5-0.8 0.3-1.6 0.2-2.2-0.2-0.6 0.2-1.5-0.1 0.4 0.9-0.7 0.2-0.3 0.5-1.2-0.1-0.1 0.7-0.4 0.2-0.8-0.4 0.1-0.6-1.4 0.3-0.9-0.4-0.9 0.2-0.9-0.1-0.3 0.4-2.1 1.1-3.6 2.9-1.4-0.5-0.6 0.8-1.3-0.1-0.5 1.2 0.2 1-0.8 0.5 1 1.2-0.3 0.9-1.4 0.8-0.4 1.3-2.1 1.4-1.4 1.1-0.1 0.4 1.2 1.7-0.1 1.3-0.5 0-0.4 0.7 0 0.8-0.3 0.5-2.2-0.5-1 0.6-1.3-0.3-0.3 0.4-0.3 1.3-0.5 0.5-0.2 0.9-0.7 0.3-0.7-0.1-0.1 0.5-1.1 0.6-0.5-0.1-2.8 0.2-0.4-0.6-2.9 0.1-0.5-0.6-1.1-0.8 0.1-0.5-0.9-0.9 0.5-0.5 1.3 0.3-0.1-1.9-0.6-0.4 0.5-0.9-0.5-1.1-0.6-0.3-0.7-2.3-0.3-0.5-1.6 0.7-0.6-0.4-1.7-0.5-0.5-0.6-1.8 0.2-1-0.4-0.9 0.5-1 0.1-1.1-0.2-1.4 0.1-0.5-0.2-1.3 0-1.1 0.4-1.5 0-0.4-0.5-0.9 0.1-0.4 0.4-1.1 0.3-0.8-0.5-1.9-0.3-2.9 0.3-0.8-0.6-0.2 0.3-1.8 0 0-0.7-1.6 0.3-0.8-0.4-0.4 0.2-1.1-0.6-2-0.8-0.8-0.7-0.5-1.7-1.1-1.8-1.4-0.3-0.2-0.3-1.1-0.6-1.8-0.5-0.8-0.7-1.3-0.1-1.4 0.8-0.8 0-2.6-0.5-1-0.4-1.4-0.7-2.3-0.4-0.1-0.7-0.8-0.2-0.4-1.1-0.9 0-0.4-0.4 0.2-1.4-0.3-0.3-0.2-1.1 0.3-0.6 0.2-2.4 0.3-0.8-0.4-0.9-0.7-0.8-0.7-0.4-0.7 0-0.3-0.6 0-1.2-0.3-0.6-1.6 0.4-0.4 0.7-1.1 1-1.5 0.3-0.3 1.1-3.1 0.4-1-0.7-0.9-0.4-0.1-0.5 0.4-0.6-1.8-0.6 0-0.6 0.8-0.7 0.4-0.6 0.9-0.3 0.2-1.5-0.5-0.1-0.7 0.3-0.2-1.3 0.2-1.1-0.3-0.2-0.1-1.7-0.3-0.2-1.3-0.1 0.1-1.7-0.6-0.7 0.3-1.6 0.2-0.4-0.1-0.7 0.8-0.1 0.6-0.4 0.5 0.7 0.2 0.8 2 0.4 0.2-0.8 1-0.6 0.4-0.6 1.2-0.6-0.4-1.2-0.9-0.6-1.1 0.1 0-1.1-0.7 0.1 0.1 0.8-1 0.1-0.6-0.5-0.6 1.2-0.6-0.4-0.1-1.4-0.8 0.2 0.2-1.6-1.4-0.3 0.1-1 0.7-0.3 0.6 0.1 1.5 0.9 0.9 0.3 0.1-0.6 1.2-0.8 0.2-0.6 0.5 0.1 0.5-0.6 0.3-1.1 0.7-0.4 0-0.4 0.7-0.5 0.6 0.3 1.1-0.1 1.3 0.3 0.6-0.3 0.1-1 0.4-0.8 0.2-1.4 1.2-2.1 0-0.8 0.9-0.3 0.5-1.6-0.6-2-0.4-0.4-1.1 0.2-0.6 0.7-0.6-0.4-1.4-2 1-0.6-0.5-0.8-0.2-1-0.8-0.5-0.1-0.7 0.8-0.3 0.5-0.8 1-0.8 1.4 0.3 0.4 0.4 0.8 0.3 1.5-0.1 0.8-0.5 0.4-0.6 0-0.5 2.1-0.5 0.6-0.7 1-0.7 0.5-0.7 1.6 0.3 1-0.7 0.2-0.7-1.1 0.4-0.8-0.3 0.9-0.5-0.7-1.1-1-0.1-0.7 0.5-0.7-0.1-0.6-0.8-0.9 0-0.7-0.5-0.6 0.4-0.5-1.3 0.3-0.6 0.1-0.9 0.5 0 0.4-0.7 0-1.4 0.9-0.4 0.5-1.2 1.5-0.2 0.4-0.6 1.4-0.8 0.8 0.2 0.3-0.7 0.7-0.2 0.4-0.7 0.7-0.1 0.2 0.4 1.7-0.8 0.6-0.7 0.6-1.2 0.7-0.6 1.1-0.2-0.5-1.5-0.5-0.3 0.5-0.7 0-0.9 0.5-0.5-0.2-0.9 0.2-0.3-0.4-1.2-0.6-0.1 0.2-1.7-0.4-0.8 0.4-1.7 0.9-1.8 0.7-0.5 0.3-1.1 0.6-0.4 0.1-0.6-0.4-0.4 0-1.1-0.5-0.4-0.2-1.1-0.7-0.4-0.4-1.3-0.9-0.7-0.7-1.5 0.9-0.7-0.4-1-0.7-0.6-0.7 0.3-1.3-0.3-1.5 0.2-0.6-0.3 0.1-0.6 0.9-0.8 0-1.9 0.6-0.7 0.4-0.9 1.5-1.6-1.5-1.5-0.7 0-0.5 0.4-0.7-0.3-1.4-1.2 0.4-0.5 0.7 0 0.3-1.1-0.3-1.2 1.4-0.5-0.2-1 0.4-0.7 0.7-0.6-0.1-0.6-1.3 0 0.5-1.5-0.3-0.6 0.8-0.4-0.2-1.6 0.4 0 0.3 1.2 1 2.1 0.6 0.7 0.3 0.8 0.9 0.5 1.5-0.3 0.7-1.4 1.2-0.3-0.3-1 0.1-0.7 0.9 0 0-0.7-0.3-0.8-0.5-0.2-0.9 0.3-2.3-0.2-0.7-0.2-0.2-0.4-0.7 0 0-1.5-1-1.8-0.1-1.5 0.3-1 0.7-0.3 0.3 0.3 0.1 1.1 1.2-0.1 0.4 0.4 0 1.1 1.2 0.2-0.1 0.6 2.3 0.2 1.1 0.5 1-1 0.6 0.3 0.9-0.4-0.1-2.9 0.8-0.8 0.9-0.2 0.2-0.6-0.5-0.8 0.1-0.6 0.5-0.3 0.9 0.7 3.8-0.4 1.3 0.2 0.1 0.6-1.1 0.7 0.1 0.9 0.5 0.7-0.4 1-0.3 1.1-0.9-1.7-0.2-0.9-0.6 0.6 0.7 1.3-0.7 0.5-0.2 0.9 1.7 0.7 0.5-0.6 1.6 0.3 1.2-0.5 0.6 0-0.3 1.1-2.5 1.1-0.4 0.1-0.6 0.6-0.5 0-0.5-1.3-1.5-0.4 0.3-1.3-1.6 0.4 0.9 1.4 0.8 0.4-0.2 0.5-1 0.1-0.9 1.2 0.2 1.1 0.7 1.4 0.4-0.5 0.7 0.2 0.6-0.1 1.3 0.4 1.6 0.2 0.4 0.3 3 0.6 1.1-0.2 1.8-0.8 0.5 0.2 1-0.3 1.1 1.3 1.6-0.5 0.7-1 2.1-1.3 1.5-0.1 0.7 0.3 1.1 1 0.1 0.5-0.4 1.8 0.5 0 0.1 1.4 0.2 0.6 0.7 0.3 0.4 1 0.9 0.1-0.1 1 0.6 0.5-0.7 1.2 0.2 0.5-0.1 1.4-0.2 0.3-1.4 0.9-1.1 0-0.6-0.5 0.1-1.1-0.8-0.3-0.2 0.6-1 1.1 0 0.7-0.7 0.2 0.1 0.6 0 1.5 0.9 1.4 1.1-0.1 0.5 0.5 0 1.5-0.2 1.2-1.1 0.3-1 3 1.2 0.2 0.3 0.9 0.8 0.3 0.6-0.2 0 1.4-1.7 0.3 0 1-0.6 1.4-0.8 0.1-0.1 0.6-1.2 0.4-0.6-1.1 0.1-0.7-0.6-0.6-0.9 0.6-0.2 0.7-2.3 0 0.1-0.7-1.4-0.5-0.6-0.7-0.7 1.7-1 0.9-0.2 2.2 1 0.4 0.6 0.7 1.1 0.6 0.9 0.7 0.2 0.8-0.1 0.7 0.6 0.6 1.1-0.2 1.2 0.2 1.3 1 0.3-0.5-0.3-1.2 0.8 0.1 0.3-0.4 0.2-1.4-1-0.5 0.2-1 0.8 0.1 1.1 0.8 0.1 0.9 0.6 0.1 0.8-0.6 1.7-0.9 0.9 0.4 1.4-0.8 0.4 0.1 0.6-0.7 0.9-0.4 0.2-1.6-0.7-0.9 0-1 1-0.2 1.2-0.7 0.6-0.9 1.9-0.6 0.2-0.2 1 0-0.2-0.9 0.3-0.5-0.2-1.4-0.4-0.3 0.1-1 1-1.2 0.1-0.3-0.4-1.4 0.2-0.4 0.7-0.1 0.1-0.8 0.5-0.6 0.7 0.8-0.4 1 0.3 0.6 0.1 1.3 0.6 0.4 0.8-0.2 1 0.5 0.4-0.8 1-0.5 1.2 0 2 1.5 0.4-0.6 1 0.3 0.4-0.4 1.1 0.6 0.4 0.5 0.1 0.8 0.4 0.6 1.1-0.2 0.8-0.5-0.5-0.8 0.2-0.4 1.5-1.1 0.1-0.8 0.8 0 1.3-0.3 0.5-0.5 0.3 1.3-0.5 0.7-0.4 1.4 0.9 0.8 0.6 0.4 0.3-0.3 0.9-0.1 0.5 0.3 0.7 1.5 0.4 0.2 0.9-0.2 1-0.5 0.5-0.1 1 0.4 0.5-2.2 0.6 0.1 0.4-0.5-0.9-0.8-0.1-0.4-1.4-1.5-0.5-1.5-0.5-0.6-0.3-1.2 0.4-0.3 0.1-0.8-0.3-0.7 0.3-1.1-0.3-0.2 0.3-1-0.2-0.7-0.4-0.4-0.7-1.4 1.1-0.6 0.7 0.1 0.3 0.8 0.5 0 0.4-0.8 0.6 0.5-0.1 1.8 0.9 0.8 0.6 0.2 1.1-0.5 1.1-1 0.3-1.1 0.6 0.1 0.5-1.4-0.2-1.1 0-1.8-0.8-1.5-0.1-0.8-0.5-0.4-0.9-0.1-0.7-0.6-0.3-1-0.6-0.2-0.8 0.6-0.6 0.1-0.6-0.3-0.9 0.2-0.5-0.1 0-0.7-1-1.3-0.5-0.8 1.2-0.6 2 0.1 1.1-0.4 0.7-0.9-1.2-0.6 0.4-0.8-1.8-1.7-0.2-0.6 0.1-1.5 0.4-0.9 0.7 0 1.8-0.5 0.5-0.3 0.5-0.8 3.2 0.7 1.3-0.4 0.5-0.7 1 0 0.4-1 0.9-0.1 0.8 0.3 1.4-0.4 0.8 0.6 0.6 0.8 1-0.5 0.6-0.1 1.3-0.9 0.1-2.5 0.9-0.2-0.3-1.2-0.9-0.7-0.6-0.2-0.5-0.8 0.6-0.5 0.3-0.8-0.4-1-0.7-0.2 0.4-1.2-0.4-0.7 0.6-1-1.9-0.8-0.8 0.4-0.7 1-1.4 0.9-0.1 1.6-0.7 0.1-0.2 0.7-1.3-0.1-1.3-0.8-1.3-0.2-0.5 0.6-0.8 0-0.5 0.9-1.1-0.1-1.1 0.2-0.2 0.7-0.9 0 0.1-0.7-1.3-0.9-1.7-0.3-2.4 0.5-0.2-0.8-0.9-0.4-0.9 0.2-1.1-0.1-1.5-1.3-0.4 0.2-0.8-0.6-0.5-1.6-0.8-0.4-0.2-1.1-0.7-1.4-0.6-0.8 0.1-0.8-0.5-1.1 0.2-1 0-1-0.5-0.6 0.4-0.9-1.2-0.8 0.2-0.9 0.7-0.4 0.8-0.1 0.1-0.5-0.2-0.8 0.2-1.2 0.7-1.1 0.6-0.5 0.6-1.1 0.4-0.3 1.2 0 0.3-1.1 1.2-0.3 1.3 0.5 0.7-0.1 1-0.7-0.1-0.8 1.2-0.1 0.8-1 0-0.5 0.7-1-0.3-0.7 1.4-1.1 0.5-1.4 1.8-0.4 1.9-1.2 0.3-0.9 0.7-0.6 1-0.4 1.1 0 0.4-0.3 0.6-1.4 0.5-0.3 1.2-0.2 1 0.3 1.5-1 1-0.5 1.4-1.5 0.3-1.2 1.7-0.9 0.7 0.3 0.5-0.2 1 0.1 0.3-0.5-0.4-1.1 1.6-0.3 1.6 0 1-1 1.6-0.5 1-1.1 1.5-1 0.8 0.3 1.1-0.5 0.4-1.1 1-0.4 1 0.1 0.5-0.1 0.4-0.7-0.1-1.1 0.7-0.5 1.3-0.2 0.3-0.5 0.1-0.8 0.4-0.5 1.3 0.1 1-0.5 0.8-1 1.9 0.5 0.9 0.4 0.4-0.3 0.1-1.9 0.7-0.5-0.5-0.8 0-0.7 0.8-0.5 0.9 0.4 1 0 0.1-0.4-0.6-0.9 1.7-0.4 0.4 0 1.2 0.6 0.3-0.2 0.1-0.9 0.5-0.6 2-0.3 0.7 0.1 0.8 1.6 1.4-0.1 0.6 1.1 0.5 0.3 1.9 0.4 1.7 1 1.3 0.1 0.6-0.8 1.3 0.3 0.7-0.9 1.3-0.3 0.1 0.7 0.7-0.4 0.7 1 1.7 0 1 1.5 0.9 0.8 1.3-0.3 1.5 0.6-0.4 1 0.4 0.3 1.2-0.8 0.6 0.4-0.5 1 0.6 0.8 0.1 0.6-0.8 0.7 0.5 0.7 0 0.9 1.2 0.6-0.1 0.4 1.1 0.8 0 0.7-0.5 0.9 0.7 0.6 0.8-0.4 1.2 0.5-0.3 1-1.3 0.5 0.3 1-0.4 0.6 1.4 0.3 0.3 1.5-1 0-0.7 1.1-0.7 0.1-0.3 1.1 0.5 0.3-0.7 0.7-0.8-0.1 0 0.7-0.5 0.6-1 0.2 1 0.7-0.1 0.7-1.4 0-0.5 0.7 0.7 0.4 0.2 0.7 1.1 1-0.7 0.3-1.3 1.4 0.2 0.4-0.3 1.3-0.9 1.6-0.7 0.9-0.6 0.4 0.3 0.6-0.1 0.9-0.9 0.2-0.5 1 0.8 0.4-0.1 1.2-0.7-0.1-0.1-0.6-0.8-0.4 0.1 1.2-0.7 0-0.8 1.4-1 0.5 0 0.4 0.5 0.7 1 0.4 0.7 1.3 0 1.1-0.2 0.8-0.3 0.3-2.2 0.5-0.7-0.1-1.2 0.5-0.9 1.1-1-0.3-0.5-0.6-0.8 0.9-1.2 0-0.7-0.3-1.5-0.3-1.1 1.1-0.8-0.4-0.6 1.1 0 0.9 0.4 1.1-0.9 0.3-0.3 0.7-0.8 0.3-0.5-0.3-0.4 0.9-0.1 1-1.3 1.4 1 0.4 0.2 0.7-0.8 1 1.3 0.5 0 0.6 0.6 0.6-0.2 0.6 0.6 0.9 0.7 0.2-0.3 1 0.6 0.2 0.5 0.6 0.9 0-0.1 0.6-0.6 0.4 0 0.8-1.2-0.1-0.7 0.9-1.2 0.4-0.3 0.4 0.2 1.4 0.3 0.7-0.4 1-0.7 0.4-0.6 0.8-0.9 0.6-0.2 0.4-1.5 1-0.5 0.7-1 0.4-0.2 0.6 0.1 0.8 0.7 0.2 0.8 1.2 0.5 1.3-0.2 0.7 0.3 0.9 0.8 1.1 0.6 1.4-0.4 0.7 0.4 1.3-0.5 2.4-1 0.4-0.2 0.7 0.7 0.4 0 0.8 0.8 0.3-0.1 0.8 0.2 0.5 1.8 1.4 0.6 0.2 0.9 1-1.2 1.5 0.5 1.1 0.7 0.5 0.8 0.8 0.7-0.1 0.2-0.4 0.8-0.4 0.2-1 0.9-0.5 0.3-1.1 0.8-1 0.5 0.1 0.4 0.6 0.9 0.6 0.9 0.1 0.9 1.5 0.6 0.3-0.2 0.5 1.3 0.8 0.5 1.1 1 0.4 0.7-0.2 0.2-0.5 0.7 0.5 0.3-0.3 0.7 1.3 0.3 1 0.7 0.1 0.2-0.9 0.6 0.2 0.4-0.5 0.6 0.1 0.8-0.6-0.1-1 1.1-0.7-0.1-1 0.9-0.7 1.2-1.4 0-0.6 0.4-1.7 0.3-0.4-0.2-0.7-1.3 0.2-0.5-0.7-0.6-0.1-0.4-0.9 0.4-0.5 0.4 0.6 0.6 0 0.8-0.5-0.7-0.4-0.2-1.3 0.2-0.4-1.1-1-0.3-0.9-0.4-0.3-0.4-1-0.6-0.1-0.6 0.5-0.5 0.7-1 0.1-0.8 0.5-0.9-0.3-0.1-1.3-0.3-0.9 0.6-0.6 0.5-1-0.3-2.4 0-1.1 0.6-0.7-0.6-1.8-2.3-1.2-1-0.3-0.5-1.6-0.9-0.6 0.2-0.9 0.2-1.5 0.2-0.4-0.1-1-0.7-1.1-0.8-0.3-0.1-2.2-0.8-1.7-0.3-1 0.2-1.1-0.5-0.5-0.6 0-0.5-0.6-0.5 0.2-0.6-0.4-1.2 0.8-0.8-0.4 0-0.6 1.3-0.2 0.7-0.7 0.6 0.7 0.7-0.1 0.2-1-0.1-1.3 0.9 0.7 0.7-0.2 0.1-0.9 0.8-1.5 1.1 0.3-0.1-0.9 0.9-0.4 1.1-0.1 0.3 0.7-1 0.9-0.4 0.6 1.8 0.4-0.2 0.7 1 0.3 1-0.3-0.2-1.7-0.4-0.5 1.7-0.4-0.2-0.6-0.8 0.5-0.6-0.7-0.8-0.6 0-1 1.1 0.6 1.1-0.3 2.2 1.2 0.1-0.6-0.4-0.9-0.6-0.5 0.2-0.5 1.4-0.3-0.2-0.7 0.6-0.7 1.3 0.1 0.6 0.3 0 0.8-0.9 0.5 0.7 0.9-0.2 0.9-0.9 0.9 0.9 0.7 0.4-0.5 0.6 0.1 0.4 0.7-0.1 0.9 0.2 0.9-0.9 0.1-0.3 0.6-1.4-0.5-0.1-0.5 1.2 0.1 0.4-1-0.9 0.1-0.5 0.4-0.9 0.1-1.3 1.3-0.1 0.8-0.7 0.8-0.7-0.2 0 0.9 0.7-0.1-0.3 0.9 1 1.4 0.4 0 0.6-1.9 0.3-0.3-0.5-0.9 1-1.2 1.5 0.6 0.9-0.6-0.1 1.4 0.6 0.7-0.9 0.5-0.2 0.6-1-0.4-0.5 0.9-0.8 0-0.2 0.7 0.5 0.6-0.5 1 0.4 1 0.8-0.7 0.8-1.1 1-0.4 0.5 0.2 0.5 0.6 0.6-0.6-0.2-0.6-0.8-0.4 0.5-1.2 0.9 0 0.1 1 0.4 0.5 1 0.3-1.1 1.5 0.4 0.5-0.5 1.1 0.6 0.3 0.7-0.6 0.2-0.8 0.7-0.7 0.2 0.6 0.9 0.5-0.3 0.7 0.5 0.6 0.3 0.6 1.6-0.2-0.4-1.1 0.6-0.2 0.4 0.9 1.4 0.4 0-1-0.4-0.5 0.8-0.2 0.4 0.8-0.2 0.4 0.7 0.4 0.2-0.5 0.7 0.1 0.4-0.8-0.4-0.9-0.6-0.5-0.2-0.8 0.5-1.1 0.6 0.7 1-0.4 0-1.6-0.9 0.5-0.9-0.8-0.6 0.6-0.5-0.5 0.2-1.2 1.1-1.1 1.8 0.3-0.4 0.6 0.5 1 0.1 0.9 0.5-0.1 0.2-0.9 1 0.5 0 0.6 1.7 0.3-0.6 0.5 0.3 0.8-0.4 0.7-0.7-0.2-0.2 0.7-0.7 0.7-0.1 0.8 0.3 1.1 0.6 0.2 0.4-0.7 0.5 0.3 0.1 0.7 1.1-0.9-0.3 1.3 1 0.5 0.4-0.6 0.5-0.1-0.1-0.9 0.5-0.5 0.8-1.2 0.6-0.2 0.2 0.6 0.8 0.5 0.7 0.1 0.5 0.4 1.1 0.2 0.4-0.3 1 0.1 1.1-0.4 1 0.7 2 1 1 0-0.5-0.7 0.7-1.5 0-0.7-0.3-1 0.3-0.6-0.6-0.7 1-0.6 0.7 0.2 0.9-0.1 1-0.6 1.6-0.2-0.1-0.7 0.7-0.5-0.1-0.8 0.3-0.7 1.7 0 0.5-0.5 1.5 0.6 0.3-0.6 0.8-0.4 0-0.4 0.9-0.3 0.1-0.8 0.8 0.1 0.6-0.3 0.5 0.2 0.4-0.9 0.6 0.2 1.2 1.2 0.1 0.8-0.3 0.5 0.3 0.9-0.1 0.9-0.2 0.5 0.3 0.6 1 0.1 0.5 1.1 0.7 0.5 0.7-0.2 0.1 0.8 0.8 1.8-0.3 0.3-1 0.1-1.3 0.8 0 0.4-0.9 0.9-0.6 1.2-0.8 0.4-0.5 1.3 0.8 0.3 0.8 0.7 0.5 0 1.4-0.8 0.4-1.2 0.5-0.6 1 0 0.6-0.4 0.6 0.5 0.4 0.9 1.1-0.6-0.5-1.1 0.7-0.4 0.3 0.7 0.9 0.6 1.2-0.8 0.9 0.5-0.6-1.3 0.2-1.7 1 1.2-0.5 0.9 1.1 0.2 0.4 0.6 0.9-0.2-0.2 1.1 1.9-0.7 0.2 0.4 1.4 0 0-0.9-1-0.5-0.9-0.2-0.1-0.9 1.2-0.5 1 0.2 0.6-0.4 0.7 0.6 0.4-0.4 0.4-1-0.2-0.9 1.1 0.1 1.2 0.9-0.6 0.9-0.7 0.7 0.2 0.8-0.3 0.5 0.3 0.6-1.1 0.8-0.4 0.8 0.8 1-1.1 1.1-0.7 0 0.1 1.1 0.7 0.3 1.2 0 1.1-0.4 0.3-0.3 1.3-0.6 0.6 1.2 1.6 0 0.9-0.6 1.7 0.1 0.4 1.1 1.3 1.1 0.5-0.8 0.5-0.6 0.2-1 1.5 0.7-0.2-1.2 0.4-0.2-0.3-0.7 0.6-0.4 0.9-1.3 0.5-1.1-0.1-0.7-0.4-0.7 0.4-0.4 0-0.9 0.6-0.5-0.3-0.4 2.1-0.3 0.7 0.2 0.6 0.9 0.8 0.7 1.3-0.3 0.3 0.7 0 0.7 1.6 0.8 0.4-0.3-0.1-1-0.5-0.4 0-0.7 0.5-0.4 0.9-0.1 0.3-0.6-0.6-0.2 0.1-0.6 0.7 0.1 1.1-0.4 0.7 0.5-0.2 0.6 0.8 0.1 0.5 0.4-0.9 0.7 0 0.5 0.8 0 0.5 0.7-1.2 1 0.9 0.8 0.9-0.7 1 0.4 0.2 0.8 0.8 0.2 0.3-0.6 2.6 1.6 1.3-0.3 0.6 0.5 0.9 0.1 1 0.8 0 1.5 0.3 0.8-0.4 0.6 0.1 0.8 0.9 0.4-0.1 0.5 1.2 1.1 0.1-0.4 1.4-0.4 2 1.1 0.6 0 0.6 0.5 0.4 0.6 0.7-0.4 1 0.4 0.4-0.3 1.2 0.1-0.4 1.3 1.1 0 0.4 0.4 0.1 1.9-0.5 0.5 0 0.6 1.4-0.3 0.8 0.6 0.2 1.4 0.4 0.6 0.7-0.4 0.5 0.2 0.5 0.6 1.7 0.2-0.2-1.5 0.3-0.8-0.4-1 0.7-0.8 0.4 0 0.5 0.6 0 0.4 1-0.2 0.3 0.3 1.1-0.1 0.4 1 1.5-0.4 0.5-0.4 1.7-0.5 0.9-0.5 1.1 0.9-0.2 1 0.4 0.3 0.9-0.2 1.3 0.2 0.1 1.7 0.9-0.1 0.2 1.7-1.9 0.5-1-0.6 0 1.6 0.7 0.5-0.5 0.9 0.1 1.9-0.4 0.4-0.2 1.1 0.4 0.6 1.4-0.1 0.1 0.9-0.1 1.1 0.1 1-0.5 0.9 0 1.2-0.8 0.5 0.4 2.1-0.5 0.4-0.1 0.7-1.1-0.2-0.6-0.6-0.4 0.9 0.2 0.4 1.3 1 0.2 0.6 0.6 0 1 0.3 0 1.1-0.5 0.5 0.2 0.7 1.9 0.4-0.1 0.9 0.3 0.5z", "21": "M426.8 620.2l0.6 0.8 0 0.4-0.6 0.4-0.6 1.2-1.2 1-1.1 0.4-0.3 0.4-0.9 0.3-0.5-0.2-0.4 0.7-1.2 0.5-0.6-0.1-0.7 2.7 0.4 1.8-0.1 0.7-0.7 0.8 0.5 0.6 0 0.8 0.7 1.6 2.6-0.1 0.5 1.5 0 1.6 0.2 0.9-0.4 1.1 0 0.9 0.4 0.7 0.2 1.3 0.5 0.5 0.1 0.7-2.1 0.6-1 0.8-0.2 0.8 0.6 1.1 0.7 0.1 1.1-0.5 0.2-0.4 0.7-0.1 1.5 0.3-0.4 0.5 0.3 0.9-0.4 0.4 0.1 0.8-0.3 2.6-0.3 0.6 0.3 0.4-0.4 0.8-0.2 0.7 0.6 0.6 0.5 1.9-2.6 0.7-1 1.3-0.6-0.2-1.3 0.2-1.3 0.7-1.2 0.3 0.5 1.1 0.5 0.4 0 0.5-0.6 0.2-0.3 0.9 0.3 0.5 1.1 0.5 0.6 0 0.2-0.6 2.5 0.8 0.6 0.5-0.2 0.9 0.4 0.7-0.5 2.3 0.4 0.8-0.4 0.5-0.4 1.3-0.6 0.2-1.1-0.3-0.2-0.4-0.7-0.3-0.7 0.6-0.6 0.2-0.1 0.8 1.4 0.6 0.6-0.4 0.9 0.4 0.3 0.9-0.8 0.4-0.5 1.1-0.9 0.6-1.2-0.2 0.1 0.8 0.6-0.1 1.2 0.1 1 0.5-0.3-0.8-0.5-0.3 0.6-0.6 1.4-0.1 0.9 0.7-0.2 1.3 1.1 0.7 0.4 0.6 1.8 0.7 1.1 1-0.4 2.4 0.2 0.6 2 0 1.5 0.9 0.1 0.6 0.6 0.3 1.2-0.2 0.5 0.3 0.2 0.8 0.4 0.4 0.9 0.2 0.4 0.7 0.1 1.2-0.9 0.8-1.1 0-1.6 0.6 0.7 1.1 0.2 0.5 1 0.6-0.1 0.4-2.5 1.7-0.6 0.8-1.7 0.1-0.5-0.1 0-1-0.7-0.5-1.6 0.8-0.5-0.2-0.6-1.5 0-0.9-0.4-0.8-0.5 0.1-0.9 0.8-0.6 1-1.2 0.3-0.3 0.4-0.9 2.1-0.9 0.7-1 0.2-0.4 1 0.3 0.8-0.2 0.5-1.2 0.7-0.7 0.7-0.1 0.6 0.3 0.9-0.4 0.5-0.1 0.8-0.9 0.7 0.2 0.6-0.9 1.5-0.2 1.7 0.3 0.6 0.7 0.6 1.5 1.8 0.4 1.2-0.1 0.5-0.9 0.5-0.7 0.1-0.9 1.1-0.6-0.1-0.5 0.6 1 1.1-0.8 0.6-1.5 0.2-0.4 0.7-0.8-0.1-0.3-0.6-1.7 0.7-0.9-0.9-1.2-0.7-0.5-0.9-0.4-0.2-0.3-0.5-2.7-0.7-0.5-0.4-0.8-1.3 1.1-0.2 0.4-0.8 0.1-2.8-0.3-1.3 0.1-1.7-0.3-0.8-1.2-0.1-0.7 0.4-0.5-0.3 0.2-0.6-0.1-1.6 0.4-0.7 1.2-0.7 1.3-1.2-0.7-1-0.1-0.8 0.8-2.1 0.6-0.5-0.1-1.4 0.2-0.5 0.3-1.9-0.9-1.4-0.1-0.7-1.1-1.2-1.1-0.3-1.7-1.3-0.4-1.1-0.8-0.4-0.6-0.7-1.2-0.2-1 0.7-1.2 0.3-1.3 0-0.6 0.4-0.5 0.9-0.2 1.2-0.3 0.2-0.9-0.3-0.6-0.6-0.2-0.8-0.9 0.2-0.1 0.9-1.5 0.7-0.4-0.7-0.6-0.6-0.9 0-1.5-1 0-0.3-1-0.1-0.9 0.3-0.3-0.9-1.7-0.8-0.6 0.1 0.4 1.1-0.3 0.7-0.1 1.2-0.8 0.6-0.2 0.9 0.3 0.7-1 0.3-0.7-0.4-0.9-1.2-1.3-0.4 0-0.6-1.4-0.1-0.4-0.5-1.1 0.2-0.9-0.8-0.5 0.4-0.8 0 0-0.4 0.8-0.6 0-0.4-0.5-1 0.2-1.2-0.9-0.5-0.9-0.1-0.9 0.4-1 0 0.1-1.5-0.2-1.2-0.4-1-1.3 0-0.8-0.8-0.7 0.2-0.9-0.2-0.7 0.5-0.5-0.7-2.8-0.8-0.6-0.4-0.6 0.3-2-0.4-1.1 1-0.6-0.8-1.6-0.3-1.1-0.4-0.4-0.6-0.1-1-1.6-0.1-0.9-1.1-0.5 2.3 1.5 0.4 0 0.9 0.7 0.3 0.3 0.9-0.3 0.9-0.5 0.8 0 0.7-0.8 0.4-0.2 0.4-1 0.1-0.6 0.9 0.6 0.4 0.8 1.8 0 1.2-0.5 0.4 0.1 2 0.4 0.6 0.1 0.8-0.5 0.6-0.8-0.2-0.8 0.9-0.9-0.2-1.3 1.4-0.2 1.6 0.6 0.7-0.2 1.1-0.3 0.9 0 1.3-1.2 0.4-0.7-0.6-1 0.1-0.6-0.4-0.8 0.6-0.3-0.3-0.1-0.8-0.6-0.3-0.6-0.8-0.9-0.3-0.3-0.5-0.9-0.7-0.8 0.3-0.5 0.5-1.7 0.6 0 0.7 1.3 0.2 0 0.8-0.5-0.2-0.6 0.5-0.8 2.1 0.3 0.5-0.1 0.7-0.5 0.8 0.3 0.7-0.1 1-0.4 0.1-0.5-0.7-0.5 0.2-0.2 1 0.1 0.7-1.2-0.4-0.2 1.2 0.3 0.3 0.1 1.4 1.7 0-0.2 1.2 1.4-0.1-0.4 1.4 0.5 0.2 0.9-0.1 0.2 0.9 0.4 0.6 0.9 0.3 0.6 0.6 0 0.8-1.2-0.3-2.4 0.8-0.5 1.4-0.7 1.4 0 0.5-0.6 0.8-1.2 0.1-0.6 0.5-0.1 1.2 0.4 0.8 0.2 1.2-0.7 1.3-0.5-0.1-1.9 1-0.4-0.3-0.2-0.7-1.4 0.3-0.4 1.6 0.6 0.4-0.1 0.6-0.8-0.3-0.2 0.6 0.4 0.8-0.8 0.3-1.1-0.2-0.1 0.5 1 0.3-0.2 1.1-0.9 0.8 0.2 1 0.9 0.2 0.5 0.9-0.6 0.6-1.1-0.6-0.4 0.2 0.2 0.7-0.7 0.6-0.9 0.2-1-0.8 0-0.9-1 0.3-1.5-0.3 0.1-0.5 0.9-0.7 0-0.9 0.5-0.5-0.2-0.6-1.1-0.2-0.2-1-0.3-0.7-0.4 0.7-0.6-0.9-0.4 0.6-2.5 1.1-0.3 0.8-0.2 1.5-0.6 1.1-0.5 0 0.4 1.3-1-0.2-0.7 1.1-0.6 1.6-0.6 0-0.9 0.4 0.7 1-0.2 0.6-1.8 0-0.2-0.8-0.6-0.4-0.3 0.8-0.9-0.1-0.2-0.8-1.3 0.1-0.3 1.1-0.8 1.4 1.1 0.2 0.5 0.5-0.6 0.5 0 1.6-1.1 0.2 0 1.7-0.2 1.7 0.1 0.8-0.5 0-0.7 0.8-0.9-0.2-1.6 0.5-0.2 0.6-0.9-0.3-0.3-0.8-0.9 0-0.1 1.5 1 0.2 0.7 0.9-0.4 1-0.4 0.4-0.8 0.3-0.7-0.2-0.1 1.3-0.8 1.5-0.1 0.9-0.9-0.3-0.3-1-0.8-0.4-0.2-1-0.7 0-0.2 1-0.4 0.7-0.6 0.2-0.1-1.3-0.3-0.8-1.2 0.1 0 1.6-1.3 0 0 1.6 0.1 0.3-1.2 0.2-0.8 0.4-0.5 1.4-2.8 0.4 0.2 1.9 0.8 0.2 0.1 0.7-0.6 0.2-0.1 0.7 0.7-0.2 0.2 0.4-0.7 0.5-0.7 0.1 0.1 1.3 1.4-0.1-0.4 2.2 1.6 0.2 0 0.7-0.6 0.4-0.3 0.9-1 0.1-0.3-1.5-1.1 0.3 0.2 0.5-1.5-0.1-0.1-0.9-1.5-0.2-1.5 0.2-0.4 0.3 0.2 1.2-0.5 0.5 0-1.4-0.9-0.4-0.5-0.5-0.7 0.1-0.8 1.2-0.5-0.8-1.6 0-0.6 0.5-0.9 0-1.4 0.5-0.7-0.8-0.6-0.3 0-1.9-1.2 0.7-0.1-0.7-0.6-0.5-0.6 0.1-0.3 1.7-1-0.3-0.4-1-1.2-0.5-0.9 0.5-0.6-0.2-0.4-0.8 0-0.7-0.6-0.2-0.9-0.6-0.4 0.7-0.3 1.3 0 1-1.3 0.4 0.2 1.1 1 0.3 0.1 0.5-0.3 0.9 0.6 0.4 0.3 0.7 0.8 0.1 0.2 2-1.1 1 0 0.9 0.8 1 0 0.7 0.7 0 0.2 1.5-1.1 0.9 0.2 0.6 0.6-0.2-0.1 1.9 0.3 0.6-1.1 0.5-0.3-0.5-0.9-0.2 0-1.2-1.4-0.1 0.1 1.6-1.4-0.1-0.5 0.5-0.8 0.2-0.1-0.7-0.7-0.7-0.9 0.2-0.4 0.6-1.2-0.5-0.8 0.3-0.9 0.6-2.1-0.1 0 1.6 0.2 0.3-0.3 0.9-0.5 0.5-0.9-0.1-0.4 0.8-1.6 0 0.4-1-0.8 0.2-1-0.3-0.1-0.7-1.1-0.6-0.4-0.4 0-1-1.6 0.3-1.5-0.2-0.6 0.6-0.7-0.2-0.4 0.2-0.5-0.4-0.4 0.5 0.9 0.7 0.5 0-0.1 1-0.6-0.1-1.2 0.9 0.1 2.5 0.3 0.6-2.4-0.1-0.1 0.4-2.5 0.4-1.4 1.2-1.3 0-0.1 1.5-0.8 0.4-0.4 0.9 1.1 0.8-1 0.5-0.8-0.1 0 0.8-0.8 0.5-1.5 0.5-0.5-0.2 0.2-1.1-0.5-0.1 0.1-1.5-1.9 0.2-0.7-1.1-0.4 0.2 0 0.7 0.3 1.1-1.1 0.2-0.4 0.5-0.9 0.2-0.3 0.7 0 0.8-0.3 0.3-1.8-0.9-0.9 0.8-1-0.5 0 0.9 0.3 0.4-0.8 0.3 0.2 0.8 0.7-0.9 0.4 0-0.2 1 0.9 0.9 0.6-0.1 0.1 1.8 0.8-0.1 0.1 0.5-0.6 0.8-0.2-0.8-0.3 0.1-0.4 1.2 0.3 0.5 0.5 1.7-0.6 0.4 0.2 0.5 0.9-0.7 0.6-0.3 0.4 0.7 1-0.2 0.1 0.8 2.1 0.4 0.8 0.8-0.2 0.5 0.3 0.8-0.5 0.2-0.2 1.4 0.2 1.1-0.3 0.9-0.8-0.6-1-0.3-1.1 0.7-1.1 1.2 0.6 0.8 0.8-0.5 1-0.3 0.9 0.4-0.1 0.9-0.5 0.8 0 0.6-0.5 1.1-1.5 1.8 0.3 0.9-1 0-0.6 0.6 0 0.4 1.2 0-0.7 1.2 0.3 0.6-0.4 0.8-0.5 0.4-0.7-0.3-0.2 0.5-1.1 0.6-0.6-0.5-1 0.3-0.3-0.5 0.1-0.7-0.7 0-0.3 0.7-0.4 0.3-1 0.1-0.3 0.5-0.9 0.4 0.3 0.8-0.3 0.8-1.2 0.4 0.9 0.6-1.5 0.8-1.4 0.2-0.4 0.6-0.9-0.2-0.9-0.7-0.2-0.5 0.2-0.6-0.1-0.9-0.5-0.4 0-0.5-0.4-1.1-1.3 0-1-0.3 0.3-0.7-0.8-0.9-0.9 1.3-0.2 0.8-0.4-0.1-1.2 0.6-0.3-0.3-1 0-0.2 0.5-0.8-0.1-0.4 0-0.5-0.2-0.4 0.1-0.9-0.7 0.3-0.5-0.4-1.6-0.8-1.8-0.6-0.3-0.5-1.3-0.3-0.4-1.3-0.6-1.3-0.5-0.1-0.8-0.5-0.7-0.1-1-0.2-1-0.9-0.7 0.3-0.5-0.6-2.9-0.4-1.6-0.7-1.7-0.4-1.8-0.4-0.7 0.1-0.5-0.3-1.1-0.7-0.1 0.3-0.8-0.3-0.4-0.4-1.7-0.8-1.5-0.2-0.9-0.5-1 0.8-0.7 0.4 1.1 0.3 0-0.4-1.3-0.7-0.6-0.2-0.6 0.8-0.1 0.4-0.7-0.6-0.7-0.1-1.6-0.9-1.5 0-1.3 0.4-1.5-0.7-0.3-0.1-1.9 0.2-0.8-0.7-0.4 0.3-0.5-0.2-1.1 0.4-0.3 0-1-0.6-0.3 0.3-0.6-0.3-0.5-0.6 0.2 0-1.1 0.7 0.5 0.3-0.8-0.1-1.7-0.4-0.6-0.9-3.1-0.8-2-0.6-0.1-0.2-0.8 0.8-0.5 0.4 0.6 0.2-1.1-0.7-0.5 0-0.8-0.4-1.1-1.1-0.1-0.3-0.6 0.6-0.3 0-1.6 0.3-0.3-0.4-1.5-1.4-1.4 0-0.8 0.7 0 0-0.8-0.6-0.4-0.6-1.2 0.2-0.6-0.4-0.4-0.2-0.9 0.7-0.7-0.2-1-0.6-1.8-0.5-0.8-0.5-2-0.4-0.9-0.6-0.4 0-1.1-0.8-0.4 0-0.9 0.4-0.4-0.7-0.4-0.4-1.2 0.7-0.3-1.4-0.9 0.3-0.7-0.2-0.8-0.4-0.3-0.3-0.9 0.4-0.2 0.2-0.8-0.3-1.2-0.8-0.9-0.4-0.2-0.2-2.2 0.8 0.2 0.4 1.2 0.9-0.1 2 0.7 0.7-0.1-0.6-0.7 0.2-0.6-1.1 0.1-0.9-0.7-0.6 0.2-0.7-0.8-0.6-1.1-0.6-0.6-0.8-0.2 0.4-0.7 0-0.6-0.5-0.3-0.1-1.5-0.4-0.6 0.5-2.4 0.6-0.4-0.3-0.9-0.8-1.9-0.4-0.9-0.4-0.1-0.6-2 0.3-0.9 0.1-1.3-0.1-1.2 0.5-0.4 0.8-0.1 0.5 0.4 1-1.2 0.4 0.9 0.5 0.4 0.4-0.7-0.2-1.9-1.2 0.6-0.5-0.2-0.7-1.2 0-0.6 0.5-0.4 1.2 0.1 0.2-0.4-0.8-0.9 0.6-1 0.5 0.4 1-0.3 0.6-0.4-0.6-1 0.1-0.7-0.4-1.1-1 0-0.3 1.2-1.2 1-1.9-0.2-0.5 1.8-0.1 0.9-0.7-0.2-0.8-1.2 0.4-0.5-0.1-0.7 1-1.2-0.5-0.3 0.1-1.9-0.3-1-1-1-0.2-0.4 0.4-0.6-0.5-0.6-0.2-1 0.3-1.1 0-1.8 0.5-1-1.4-1.7 0.1-1.4-0.5-1.4 0.3-0.7 0.9-0.6-1.3-0.9-0.5-0.5-0.4-1.6 0-0.6 0.5-0.3-0.1-1-0.5-0.5-0.2-1.5 0.1-0.8-0.8-1.6 0-1.8-0.3-0.6-0.9-0.6 0-1 0.6 0.2 0.4-0.5 0-0.9-0.1-1.1-0.4-0.5 0.8-0.8 0.9-0.7 0.2-0.4-0.2-2-0.3-1 0.6-0.5 0.4-1.2 0-0.7 1.7 0.2 0.5-0.7 0.9-0.3 0.2-1 0.6-0.8 0.7-0.1 0.4-0.6 1.5 0.1 1.5 0.4 0.2 1.2 0.3 0.1 0 0.2 0 0.3 0 0.2-0.4 1 0.4 0.6 0.6-0.2 0.1-0.4 0-0.1 0.4-0.1 0 0.2-0.3 0.7 1.2 1.4 0.5 0.1 0-1 1 0.1 0.6 0.2 0.2 0.1 0 0.1 0.4 0.2 0.1 0 0.3-0.3 0.3 0.3 0.9 0.4 0.2 0.3 0.3 0.2 0.5-0.3-0.1-0.6 0.6-0.5 0.1-0.6 0-0.5 0.7-0.3 0.9 0.1 0.1-0.4 0.9-0.6 0-1.4 0.6-0.5 2.2 0.4 1.8-0.2-0.3-2 0.2-0.8 0.4-0.1-0.4-1.5 0-0.6-0.4-1.6-0.7 0.3 0.2-0.9 0.8-0.6 0.9-1.9 0.9-1-0.1-0.7 1-1-0.7-0.1 0.2-0.7-0.2-0.7-1.4-0.5-0.4-1-0.9-0.7 0.1-0.3 1.2-0.5 0.6-1 0-0.8 0.9-0.1 0.5 1.1-0.4 0.4 0.4 0.8 1.1-0.7 0.5 0.1 0.6 0.8 1 0.1 1 0.7 0.5 1.7 1 0.6 1.2-0.5 1.3 0.1 0.3 0.3 1.4-1.3 0.6 0 1.4-0.8 0-1.2-0.2-0.7-0.5 0.1-0.1-0.8 0.7-0.3 0.7 0.3 0.4-1 0.4-0.3 1.1 0.3 1-0.7-0.3-1 0-1.5 0.2-1.1-0.5-0.3 0-1.4-0.5-1-0.7-0.7 0.3-1.8-2-0.4-1-0.1-0.3-1-0.8 0.1-0.7-0.7-0.6 0-0.2-0.6 0.1-0.9-0.3-0.8-0.9-0.4-0.5 0.5-1.3-0.8-0.9 0.1-0.6-1.3-0.8 0 0-0.5 0.6-0.4 0.4 0.8 0.6 0.2 0 0.7 1.5-0.7 1.1 0.1 0.8 0.4 0.4-0.5-0.2-0.6 1.3 0.1 0.6-0.6 0.9 0.4-0.1-1.9 0.5-0.7-0.1-0.9 0.9-0.1 1.1 0.2 1.5-0.8 0.5-0.4 0.3-1.8-0.1-1.1 0.2-0.6 0.7-0.2 1-0.6 1.4-0.5 0.2-1 0.4-1 0.4 0.9 1.4 0.3 0.6-0.5 0.7 0.3 0.9-0.5 1.2 0.3 1.4-0.2 0.3-0.4 1.2-0.1 0.7-0.6 0.3-1.6-0.7-0.2-0.1-0.8-0.7 0.3-0.7 0.8-0.5 0-0.6-0.5-1.1 0.7-0.7-1.1-1.7 0.2-2.3-0.1-0.8 0.3-0.7-0.1-0.7 0.4-0.7 0-0.3 0.7-1.2 0.5-0.1-0.4-2.6 0.9-0.4-0.6-0.5-1.5-0.4-1.7-0.6-0.1-0.6-0.9 0.4-0.3 1-0.2 0.5 0.2 0.6-0.3 0.8-0.1 0.5-0.8-0.1-1.2-0.2-0.4-1.5-1.2-0.5-0.7 0.4-0.4-0.6-1.4-0.5-0.4 1-0.6 1.3 0 0.7-0.6 0.8-0.1 1.9-1.1 1.5-0.7 0.8-0.6 3.4-1.2 0.9 0.4 1 0.7 3.1-0.4 0.3-1.1 1.5-0.3 1.1-1 0.4-0.7 1.6-0.4 0.3 0.6 0 1.2 0.3 0.6 0.7 0 0.7 0.4 0.7 0.8 0.4 0.9-0.3 0.8-0.2 2.4-0.3 0.6 0.2 1.1 0.3 0.3-0.2 1.4 0.4 0.4 0.9 0 0.4 1.1 0.8 0.2 0.1 0.7 2.3 0.4 1.4 0.7 1 0.4 2.6 0.5 0.8 0 1.4-0.8 1.3 0.1 0.8 0.7 1.8 0.5 1.1 0.6 0.2 0.3 1.4 0.3 1.1 1.8 0.5 1.7 0.8 0.7 2 0.8 1.1 0.6 0.4-0.2 0.8 0.4 1.6-0.3 0 0.7 1.8 0 0.2-0.3 0.8 0.6 2.9-0.3 1.9 0.3 0.8 0.5 1.1-0.3 0.4-0.4 0.9-0.1 0.4 0.5 1.5 0 1.1-0.4 1.3 0 0.5 0.2 1.4-0.1 1.1 0.2 1-0.1 0.9-0.5 1 0.4 1.8-0.2 0.5 0.6 1.7 0.5 0.6 0.4 1.6-0.7 0.3 0.5 0.7 2.3 0.6 0.3 0.5 1.1-0.5 0.9 0.6 0.4 0.1 1.9-1.3-0.3-0.5 0.5 0.9 0.9-0.1 0.5 1.1 0.8 0.5 0.6 2.9-0.1 0.4 0.6 2.8-0.2 0.5 0.1 1.1-0.6 0.1-0.5 0.7 0.1 0.7-0.3 0.2-0.9 0.5-0.5 0.3-1.3 0.3-0.4 1.3 0.3 1-0.6 2.2 0.5 0.3-0.5 0-0.8 0.4-0.7 0.5 0 0.1-1.3-1.2-1.7 0.1-0.4 1.4-1.1 2.1-1.4 0.4-1.3 1.4-0.8 0.3-0.9-1-1.2 0.8-0.5-0.2-1 0.5-1.2 1.3 0.1 0.6-0.8 1.4 0.5 3.6-2.9 2.1-1.1 0.3-0.4 0.9 0.1 0.9-0.2 0.9 0.4 1.4-0.3-0.1 0.6 0.8 0.4 0.4-0.2 0.1-0.7 1.2 0.1 0.3-0.5 0.7-0.2-0.4-0.9 1.5 0.1 0.6-0.2 2.2 0.2 1.6-0.2 0.8-0.3 0.1 0.5 0.7 0.3 1.6 1.8 0.5 1.1 0.5 3 0 0.9 0.6 0.1 0.6 0.7-0.6 0.4-0.8 0-1.3-0.4-0.8-0.5-1.6 0-0.5 0.4-0.7 0.1-0.1 0.9 0.7 1-0.1 0.6 1.1 0.6 0 0.7 0.4 0.8 0.2 1.4 2.1-0.1 0.5 0.3 1.3 0.3 0-0.9 1.5-0.2 0.6 0.2 0.3 0.6 1.1-0.2 0.1 0.7 1.1-0.3 0.3-0.6 1.6-0.3 0.2-0.7 0.6 0.1 1.6 0.7 1.2 0.4 1.3-0.3 0.1-0.5 1.4-0.1 0.6-0.5 0.7-0.1 0.8-0.6 0.7-0.1 3.6-2.2 0.3-0.6-0.2-0.5 0-0.9 0.3-0.2 1.2 0.2 0.8-0.5 1-0.2 0.1-0.8 1.6 0.7 0.6-0.6 0.9 0.5 0.5-0.7-0.2-0.7 1.1 0.2 0.7 0.3-0.4 0.9 0.3 0.5 0.6 2.2 1.4-0.1 1-0.8 1 0.1 0.7 0.4 0.9 1 0.7 0 0.5 0.4 0.6-0.3 0.7 0.2 0.9-0.1 1.4 0.6 0.5-0.3 0.2-0.7 0.5 0.1 0.4 0.8 0.4-0.8 2.1 0 0.2-0.2 1.2 0.4 0.3-0.6 1.2 0.5 0.2-1.2-0.4-0.1-0.4-1.5 0-1.1 0.9 0 1.2-0.9 0.7 0 0.5 0.6 0.7-0.1 2.5-0.2-0.1-0.3 0.9-0.4 0.5-0.4 0.2-0.8 2.4 0.4 0.4-0.8-0.4-0.3 0.1-0.7 0.5-0.6 0.8-0.1 0.9 0.9 3.8 0.7 0.5-0.6 1 0.3 0.6-0.1 1.1 0.4 0.8 1.8-0.5 0.5 0.2 0.8 1.2 0.9-0.1 0.8 0.8-0.1 0.5 0.1 1.2-0.4 1.4-0.1 0.2-0.7 1-0.1 0.3-0.4 0.6 0 0.7-0.4 2 0.7 0.9 0.9 0.2 0.4 1.1 0.6 1.2 0.3 0.8-0.1 0.4-1 1.6-0.1 0.7 0.8 1.1-0.8 1.3 0 1-1.1 0.6-0.3 0.3-0.6 0.8 0.2 1.5-1.1 0.6 0 0.6 0.5 1.3 0 1.2 1.7 0.9 0 0.6 1.3 1.1 0.7 0.1 1.1 0.9 0.9 0.4 1-0.8 1.1 0.4 1 1.1 0.4 0.3-0.1 0.2-1.1 1 0.3 1.5 0.2 0.6 0.7 0.9 0.5-0.1 0.5 0.7 0 0.4 0.7 0.8 0.2 1.3-0.5z", "22": "M905.8 466.6l-0.2 1.5-0.9 0.5-0.6 0.7-0.4 1.9-0.8 1.8 0.1 0.9-0.5 1.9 0.5 0.8 1 0.1 0.6 0.6 3.4 1.5 0 1.3 0.1 1.4-0.3 1.5-0.5 0.9-0.4 0.3-0.4 0.9 0.6 1-0.5 0.3-0.5 1.3-1.2 1-0.5 0.9-0.5 2.4 0.2 0.8-0.5 0.8-0.2 0.8-0.7 0.4-1.4-0.2 0 1.6-0.3 0.9-0.7 1.2-1.2 1.3-0.7 0.3-1.2 3.1-0.9 0.2 0.3 0.7-0.2 1.4-0.3 0.7-1.1 0.5 0.7 0.6-1.2 1.6-0.9 0.1 0.1 1.7-0.5 1.4-0.6 0.6-0.4 1.4 0 0.8-0.7 0.5-0.2 0.9 0.1 2-0.5 1 0 0.7-1.8 3 0.1 1-0.9 0.3-0.1 1.5-0.2 1.4-0.7-0.2-0.6 0.5-0.3-0.9-0.6-1-1.6-0.2-0.2-0.7-0.9-0.6-1.6 0-0.6-0.6-1.1-0.2-0.9 0-1 0.7-0.9 0.2-1.1 0-0.5-1.3-0.6-0.6-0.4-0.8-0.8 0.2-3-0.6-1.2 0.2 0.2 0.7-0.4 0.6-1 0.2-0.4-0.7-0.5 0.9-0.8 0.1-0.6 0.5-1.4-0.9-0.2-1-0.8-1.1-0.4-1.3-0.6-0.6-2.1-0.7-0.6 0.3 0.2 0.8-0.1 0.6-1.7 0-0.5 0.7-0.7 0 0.4-1.5-0.6-0.4-0.7-0.1-0.3 1.4-0.8-0.3-0.7 0.1-0.1-0.8-0.8-0.4-0.6 0.9-1 0.2 0-0.6-0.7-1.1-0.9 0.5-1.1-0.4-1.2-1.1 0.2-0.9 0.4-0.3 0.7-2.1-0.6-1.3 0-1 1-1.5 0.2-0.9-0.7-0.1 0.1-1.7-0.8-0.4 1.3-0.3-0.3-0.7 0.2-1.2 0.4-0.6-0.4-0.8 0.6-0.8-0.1-1 1.6-1.4-0.8-0.5 0.4-0.6-0.1-1.3 0.5-0.7-0.3-1.6 0.8-3.5 0.6-0.2 0.9 0.5 1.2-0.5 0.1-1.5 1.3-1.4 0-0.6 0.7-0.7-0.3-1 0.5-0.2 0.1-0.6-0.5-1.4 0-0.6 0.7-1.1 1 0 0.9-1.6 0.4-0.2 0.5-1.8-0.1-0.8 0.2-0.6 1.2-1.9 0-0.4 0.5-0.8 1.4-1.1 0.6-0.1 0.4-0.5 0.1 1.1 1.2 0.1-0.2 0.9 1.2 0.3 0.8-0.1 0.4 0.7 0.5 0.3 0.1 0.6 0.5 0.1 1.4-2.5 0.8-1.6 0-0.7 0.5-0.1 0.2-1.1 0.6 0.1 0.4-0.6 0.6-0.4 0.2-0.8 1.2-0.7 1-1.6 0.1-0.7-0.8-0.8-0.8 0.3-0.1-0.6 0.6-0.9 1.3-0.2 0.6-0.7 0.9 0.2 1-0.4 1.8 0.1 0.7 0.3 0.5-0.5 1.1-0.2 0-0.8 2 1.4 0.5 0 0.2 1 1.6 0.4 0.5-1 1.3-0.1 0 0.8 1.1 1.3 1.8-0.3 0.4-0.3 0.5 0.7 2.2-1.1 0.8-0.5 1.2-0.7-0.1-0.8 0.3-0.7 0.5-0.1 1-1 0.6 0.1 0.8-0.4 0.8-0.8 0.9-1.1 0.3-0.6 0.8 0.4-0.7 1.6 0.2 0.4-0.9 1.8 0.2 1.7-0.2 1.1 2.4 1.6 1.1 0.5 0.8-0.1z", "23": "M828.7 482.7l-0.8-0.3-1.8-0.4 0.3-0.8-0.6-0.3-1 0.3-1.7-0.6-1.1-0.5-0.9-1-0.3 0.3-1.8-1-0.3-0.8-1-0.5-1.3-0.3-1.2 0.3-0.4-0.3-1 0.5-0.5-0.2-1.8-0.2-2.2 0.3-0.6-0.2-1 0.4-1.1 0.2-0.7-0.5-0.6 1.1-1.1-0.3-0.4 0.8-0.6 0-1.1 0.6-0.6-0.2-0.1-0.6-0.6 0-0.1-0.6 0.4-0.6-1.2 0.1-0.8 0.9-1.5 0.1-0.3 0.4-1.1 0.1-0.1-0.6-0.7 0-0.8-0.6-1.7-0.1-0.3-0.3-0.9 0.1-1.1-0.4-1.2-0.8-0.6 0.4-1.9-0.2-2.1 0.2-1.9-0.1-0.4 0.2-2.3 0.5-2.5 0.7-1.6-0.2-1 0.4-1.4-0.3-1-0.8-0.7 0.5-0.8 0.3-0.7-0.2-0.5 0.5-0.9-0.6-0.4-0.6-1 0.5-1.4-0.1-3 0.2-0.5 0.3-1.2 0.4-0.2 0.3-1.3-0.6-1.1-0.1-1.6-1.2-0.6 0.2-1.4-0.4-2.7-0.5-0.8-0.4-1.9-0.1-1.3-0.7-0.9-0.7-0.7-0.1-1-0.7-0.7 0.1-0.3-0.7-1 0.1-1.4-0.4-0.6 0.7-1 0.1-0.9-0.3 0.5-0.6-0.4-0.5-0.4-1-0.1-1.3 0.6-2 0.6-0.8 0-0.6 0.4-0.1 0.4-0.4-0.2-1 0.1-0.5-0.2-0.4 0.1-0.1-0.1-0.1 0.2-0.2 0.3-0.3 1.1-0.2 1.9-0.5 0.2-0.6 0.5 0.2 0.4-0.1 0.4-0.8-0.4-0.5-0.2 0-0.7-0.6-1.1-0.8-0.2-0.7-0.3-0.4-0.5-0.5-0.2-0.2-0.6-0.8 0.2-0.6 0.5 0.2 1.4-1.3-0.1-0.4 0-1-0.3-0.2 0.1-0.2 0.1-0.2 0.6 0 1.2-0.6-0.2-0.1 0.5-0.2 0.4-0.6-0.2-0.2-0.1 0 0-0.7 0.5-0.2 0.8-0.2 0.2-0.4 0.2-0.2 0.3-0.1 0.2 0 0.1-0.2 0.3-0.2 0.2-0.4 0.1-0.1 0.5-0.6 2.7 0 0.7 0.1 2.5-0.3 1.3-0.4 0.2-0.6 1.2-0.8 1-0.1 1.1 0.9 1-0.4 0.7-0.6 1 0.7 1 1.5-0.1 1-0.5 0.8 0.2 0.4 1-1.1 0.6-0.4 0.3-0.7 1.7 0.8-0.1 0.7 1.7-0.7 0.3-0.5 1-0.1 0.9 0.4 0 1 1.3 0.3 0.6-1.3 0.8-0.2 1.7 0.2 0.5-0.4 1.2 1.5-0.1-1.1 1.4 0.3 0.3 1.8 0.6-0.1 1 0.2 0.5 0.7-0.5 0.3-0.4 1.2 0.7 0.1 0.9-1 0.6 0.1 0 0.8 1.9-0.2 1.1-0.7 1.7 0.3-0.8 2.5 0.3 0.5 0 0.9 1.2 0.6 1.1-0.9 0.7 0 1-1.9 0.9-1.3 0.6-0.3 2.1-0.6 1 0.5 1-0.7 0.5-1.2 0.6-0.3 0-0.8 0.6-0.8 0-0.6 0.6-0.2 0.5-0.5 0.5-1 0.1-1 0.9 0.3 0.8-0.2 0.4 0.1-0.2 1.4 0.4 0.8-0.2 0.8-0.7 0.2 1.3 1 0.7 0.3 1.7-1.9 0.1-2.9 0.3-1.1 1-0.4 0.6-0.8 0.4 0.2 1-1.2 2 0.8-0.3 1.5 0.5 1.1 0.8 0.1 0.7 1 0.2-0.6 1.6-0.4 0.4-0.6 1.5 0.1 0.6 0.2 1.4-0.6 1.3 0.1 0.6-0.7 1-0.5 0.4 0.4 0.7-0.1 1 0.3 1.1-0.1 1-0.4-1.6 1.8-1.8 1.6-0.4 0.1-0.8 0.7-0.4 0.8 0.2 1.1 0.7 0.3 1.4-0.1 0.1 0.3-1.5 1.2 0 0.7-1 1.5 0 1.1 0.4 1.5-0.3 1.3 0.5 1.6 1.4-1.1 0.5-0.7 0.4 0.3 1.1-0.1 1.3-0.5 1.1-0.1 1.1-0.8 1.5 0.2 0.9 0.8-0.5 0.4 0.2 0.8 1.1 0.2 0.5 0.7 0.6 1.4 2 0.6 0.2 1.4 0.9 0.8 0.7-0.4 0.7-0.2 0.4-0.7 0.7 0.1-0.6 1.8-0.8 0.9-1.4 0.7-0.4 0.6 0.1 0.6 0.9-0.3 0.3 0.9 0 1.1 1.5-0.5 0.3 0.8 0.5-0.2 0.9 1.1 0.6 0.5 0.6 0 0.9 1.5 0.8 0.1 0 0.9 0.3 0.8-0.8 0.7-0.2 0.7 0.3 0.6 1 0.5-0.8 0.7-1.1-0.2-2.4 1-0.5 0.3-0.2 0.7-0.4 0.1-0.8 1.3-1.3-0.5-1 0-1-0.4 0.1 1.3-1.5 0-0.1 0.8-0.5 1.1-0.5 0.6-0.9 0.3z", "24": "M848.4 506.4l0.8 0.4-0.1 1.7 0.7 0.1-0.2 0.9-1 1.5 0 1 0.6 1.3-0.7 2.1-0.4 0.3-0.2 0.9 1.2 1.1 1.1 0.4 0.9-0.5 0.7 1.1 0 0.6 1-0.2 0.6-0.9 0.8 0.4 0.1 0.8 0.7-0.1 0.8 0.3 0.3-1.4 0.7 0.1 0.6 0.4-0.4 1.5 0.7 0 0.5-0.7 1.7 0 0.1 0.8-0.1 1.8 0.5 0.2 0.4 1.2 1.2 0.6-0.1 1.6 0.1 2.3 0.3 0.4-0.1 1.5 0.4 1.5 0 0.8 0.9 1.1-0.5 1.1 0.1 2.6-0.3 0.5 0.2 1.3-0.7 1 0 1.2-0.4 1.6 0 0.8 0.6 0.9-1.7 1.2 0.5 0.8 0.1 1.6-0.1 1.3 0.5 1.2-0.7 2.7 0.7 0.4-1 0.9-0.2 1.4-0.5 0.5-0.4 1.1-1 1-1.7 0.1-0.7-0.6-0.4-0.9-0.5-0.4-0.8-0.1-0.5 0.4-0.9-0.5-0.3 0.5 0.1 1.3-0.2 0.5 0.6 0.7-0.2 0.6 0.7 1.9-0.8 0 0 0.7-0.6 1.2-0.2 1.7-0.6 0.2 0.5 2.5-0.7 1.3 0.4 0.5 0 0.8 0.5 0.8-0.1 0.5 0.7 0.6 0.3 1.3-0.5 0.5-0.5 0.7-0.1 0.8 0.6 0.2 0 0.6 0.3 0.6-0.2 0.7 0.4 0.6 1 0.3 0.6 0.9-0.1 0.5 0.3 1.2-0.2 0.4 0.3 1.2 0 2.1 0.3 0.7-0.6 0.4-1.5 0.2 0.4 1.3 0.3 0.4-0.2 0.6-1.1 0.2-0.4-0.9-0.6 0.1-0.8-0.4-1.1 0.6 0.3 1.1-0.2 0.9 0.4 0.5 0.2 0.9-1.7-0.1-0.1 0.7-0.4 1.1-0.1 0.6 0.4 1 0 1-0.8 0.1-0.7-1.6-0.8 0.3-0.5 0.8-0.4 1.1-0.4-0.5-0.4-1.2-0.6-0.7-0.2-1.1-0.7 0-0.8-0.7-0.3-0.6-1.5-0.5-0.3-0.6-0.9-0.5-0.2-0.4-1-0.1-0.2 2-0.4-0.2 0.2 2.3-0.4 1-0.7 0-0.7 1-0.9 0.3-0.2-1.9 0-1-1.2-2.7 0.9-0.2 0.6-0.4 0-0.9-0.3-0.4-0.3-1.8 0-0.9-0.4-1.2 0.1-1.2-0.8-2.6-0.3-2.6-0.5-3.4-0.3-3.8-0.5-1.9-0.5-1.2-0.6-0.9-0.3-1.2-0.6-1.1 0.2-1.1-0.2-0.6-1-0.6-0.4-0.9-0.5-0.1-0.3-0.6-0.7-0.3 0.2-0.6 0-2 0.4-1.8-0.2-0.9-0.7-1 0.3-0.7-0.3-0.3 0.2-0.8-0.4-1.4 0-1.5 1.7-0.2-0.7-1.6-0.1-0.9-0.4-0.4 0.3-1.2-0.8-1.1 0-1-0.2-0.8-0.5 0-0.5-2.9-0.4-1 0.2-0.7-0.5-1.4-0.4-0.2 0.3-1.1-0.7-0.7 0.5-1.1 0-0.7-0.9-1.3-0.1-0.4 0-0.9-0.1-1.6 0.2-0.4 0.4 0.1 0.2-0.1-0.1-0.3-0.1-0.2-0.1-0.2-0.1-0.3 0.4-0.9 0.2-0.1 0.1 0 0.2 0.1 0.2 0.1 0.4 0 0-0.1 0.1-0.1-0.1-0.3-0.1 0 0-0.1 0.1-0.1 0-0.2 0.1-0.1 0.1-0.5 0.2 0 0-0.6-0.3-0.2-0.3-0.3 0-0.9 0-0.1 0-0.3 0.2-0.2 0.3-0.6-0.4-1 0.1-0.1 0.1 0.1-0.2-0.4 0.1-0.1-0.1-0.2 0-0.5 0.1-0.1 0.1-0.2-0.2-0.3 0.4-0.4 0.1-0.9 0-0.2-0.1-0.2 0.1-0.1-0.1-0.4 0-0.4 0-0.2 0.1-0.1 0.2 0-0.1-0.3-0.1-0.5 0-0.4-0.1-0.4 0.1-0.2-0.5-0.8-0.2-0.1-0.3-0.3-0.1-0.1 0-0.2-0.1-0.1 0-0.2 0-0.1 0-0.2 0-0.2 0.6 0 2.2 0.1 1.5-0.1-0.1 2.2 0.5 0.7 0.1 0.5 0 0.4 0.2-0.1 0.7 0.7 0.1 0 0.3-0.3 0.3-0.4 0-0.1 0.1-0.1 0.1-0.1 0.5 0 0-0.2 0.2 0.2 0.1 0-0.1-0.3 0.1-0.1 0.6-0.1 0.6-1.8 0.1-0.8 1.3 0 0.8-0.3 0.3-1.3 0-0.9 0.2-0.9 0.6 0.3 0.5-0.6 1.1-0.5 0.8-1.8 0.5-1.8 1.2-2.6 1.4 3.8 1.4 1.4 0.6-0.6 0.7-0.1 0.7 0.3 0.2-0.7 0.9 0.6 0.8 0 0.7-0.5 0.7 0.3z", "25": "M924.8 419.9l-1.1 1.5-0.8 0.2-1 0.9 0 1.5-0.5 0.7-0.8 0.5 0.2 0.7-0.6 0.7-1.2 1.7-0.1 0.6 0.7 0 0.8 1.1-0.2 0.8 1.1 0.5-0.3 1.3 0.1 2.4-0.3 0.6 0.3 0.7-0.3 0.7 0.7 0.9-0.5 0.5-0.4 1.5 0.4 1-0.2 0.6 0.2 0.8 0.8 0.2 0.5-0.2 0.7 0.6-0.7 1.2 0 0.7-0.8 1-0.8 0.8-0.4 0.7-1 0.7-0.7 0.1-1 1-0.3 0.8-0.1 1.1 0.6 0.9 0.1 1 0.4 0.4-0.1 1 0.2 0.8-0.6 0.8-0.8 0.1-0.9 1.3-1.4 1.1-0.3 0.4-0.5 1.9-1.1 1 0.6 0.8-1.8 0.2-0.5 0.4-0.9 2.1-0.9 0.2-0.4 0.4-0.6-0.5-0.3 0.5-2 0.6-0.2 0.2-0.8 0.1-1.1-0.5-2.4-1.6 0.2-1.1-0.2-1.7 0.9-1.8-0.2-0.4 0.7-1.6-0.8-0.4-0.3 0.6-0.9 1.1-0.8 0.8-0.8 0.4-0.6-0.1-1 1-0.5 0.1-0.3 0.7 0.1 0.8-1.2 0.7-0.8 0.5-2.2 1.1-0.5-0.7-0.4 0.3-1.8 0.3-1.1-1.3 0-0.8-1.3 0.1-0.5 1-1.6-0.4-0.2-1-0.5 0-2-1.4 0 0.8-1.1 0.2-0.5 0.5-0.7-0.3-1.8-0.1-1 0.4-0.9-0.2-0.6 0.7-1.3 0.2-0.6 0.9 0.1 0.6 0.8-0.3 0.8 0.8-0.1 0.7-1 1.6-1.2 0.7-0.2 0.8-0.6 0.4-0.4 0.6-0.6-0.1-0.2 1.1-0.5 0.1 0 0.7-0.8 1.6-1.4 2.5-0.5-0.1-0.1-0.6-0.5-0.3-0.4-0.7-0.8 0.1-1.2-0.3 0.2-0.9-1.2-0.1-0.1-1.1-0.6-0.6-0.1-0.8 0.9-1.3-0.5-1.2-0.2-1.2-0.8-0.4-0.6 0-0.9-0.6 0-0.6-0.7-0.6-0.4-1-0.9-0.8 0.4-0.5 1-0.3 0.6-0.9 0.5-0.1 0.4-0.9 1.6-0.9 0.7-0.1 1.2-1.4 0.8-0.7 0.1-0.9 1.3-1.2 1.3-0.9 0.2-0.9 0.7-0.7 1-0.2 0.2-0.5 0.8-0.4-0.6-1.4-0.1-0.8 2.2-1 0.6-0.7 0.6-0.1 0.4 1.8-0.6 2.4 0.5 1.2 0.8-0.4 0.2-0.8 0.9-0.6 1.1 0.6 0.4-0.7 0.7-0.8 1.5-0.7 0.8-0.8-0.5-1.3-0.4-0.5 0-1.3 0.3-1.3 0.9-1.2-0.2-0.4 0.7-2.4-0.2-0.4 0.4-1.1 0.8-0.6 0.2-1.2 0.4-0.8 0.6-0.2 1.1-1.9 0.2-0.6 1-0.6 0.9 0.1 0-0.8 0.5-1.1-0.1-1.6 0.4-1.1 0.5-0.4 0.3-0.8 1-0.8 0.8-1.2 0.6-0.8 0.2 2.1 0.2 1.1 0.8 0.7 0.3-0.7 0.9-0.6 0-0.5 0.9-0.1 0.6-0.7 0.7-2-0.3-0.7 0.1-0.6 1.5-0.9 0.5-1.1 1-0.2 0.6-0.5 0.2-0.5 0.8-0.4 1.6 0.3 0.1-0.9 0.5-0.5 0.4 0.7 1.1-0.1 1.1-0.3 1.6-1.2 0.5-0.7 0.3 0.4 0.6-0.9 1-0.4 0.4-0.8 0.2-1.1 1.1-1 0.6-1.3 0.6-0.7 0.9-0.4 0.7 0.2 0.8-0.2 1 1 1.2-0.3 0.5-0.5 1.7-0.6 0.8-0.5 0.2-0.6 1.3-0.9 1.4-1.4 0.2 1.4-0.2 0.6 0.7 0.8-0.3 0.3 0.4 1.1 0.5 0.5-0.1 1.3-0.6 0-1 0.8 0.5 1 0.6 1.6 0.9 0.5-0.8 1.1-0.1 0.8 0.7 0.8 0.1 1z", "26": "M566 701.8l0.9 0.1 0-0.4 0.8-0.2-0.7 1.2-1-0.7z m52.5-35.1l0.8 0.5 0.2 0.6-0.6 0-1.2-0.4 0.8-0.7z m20.5-26l0.7 0.2 2.5 0 0.9-0.2 0.6 1-0.2 1-0.7 0.1-1.5-0.1-1.5 0.8-1.3 1.4-0.5 0.1-0.1-0.4-0.3-0.3-0.9-0.1 0.7 1.1-1.3 0.1-0.3-0.3 0.9-1.2 0.1-0.8 0.4-0.4 0.5-1.6 0.6-0.5 0.7 0.1z m0.4-0.6l2.1 0.3-2 0.3-0.1-0.6z m-5.4-52.4l-0.3 1.4 0 1.3 1.3-0.1 1.3-0.3 0.3 0.3 0.2 1.1 0.6 0.1 0.3 0.6 0.6-0.1 2 0.5 1.7 0.1 1.3 1.4 0.8 0.1 0.2 0.5-0.1 0.6 0.4 0.9-1 1.7-0.2 1.3 0.7 0.8 0.4 0.7 1.6 0.2 0.6 0 0-0.8 0-0.2-0.2-0.2 0-0.1 0.1-0.1 0.4-0.7 0.2 0 0.2-0.2 0.5 0.2 0.7-0.4 0.3-0.1 0-0.7 0.3-0.9 0.2 0.3 1 0.4 0.6 0.1 0.1-0.1 0.4 0-0.1 0.5 0.1 0.3 0.6 0.6-0.6 0.8 0.5 1.1-0.2 0.3 0.4 0.5 0.2 0.4 0.2 0.5-0.2 0.2 0.4 0.3 0 0.1 0.2 0.1 0.5-0.1 0.1 0.3 0.3 0 0.4 0.2 0.2 0.1 0.1 0 0.2 0 0.2 0.3 0.1-0.2 0.5 0.2 0.5 0.4 0.4-0.1 0.4 0.1 1.1 0.1 0.5 0 0.1 0.2 0 0.6 0.3 0.3-0.3 0.1 0.7 0.2 0.1 0.1-0.1 0.3 0.2 0.6-0.1 0.2 0 0.6-0.2 0.8 0 0.4 0.7 0.7 0 0.5 0 0.1-0.9 0.5-2.5 1.7-2.7-0.2-2.1 0.1-1.2 0.2-1.8 0.8-1.4 0.6-1.6 1.7-0.4 0-1 0.9-1 0.7-1.7 1.7-1.3 1.6-0.5 0.5-0.3 0.8-0.5 0.6-0.8 1.5 0 0.6-0.8 1 0.2 0.6-0.1 1.4 0.6 1.9 0.5 1.1 1.1 1.5 0.3 0.6 0.4 1.6 1.7 3.3 0.3 1.4-0.4 1.5-2.6-0.4-1.6 0.7-0.6 0.6 0 1.3-0.5 0.6-0.5 1.2-0.7 1.1 1.4 0.1 0.5-0.1 0.1-1 0.4 0.6 0.2 0.2 0.2 0 1.8-1.6 1.2-0.6 1.1 0.1 1.3 0.4 0.7 0.1-3.7 2.5-1.6 1-3 2.3-0.5 1.2-0.4-0.1-0.5 1.3-0.3 0.6 0 1.8 0.5 0 1.1 0.6 0.3 1-0.7 1.1-1.2 0.8-0.9 0.4 0.3 0.4-1.4 0.7 0 0.3-2 0.8-1.2 0.7-1.6 0.6-0.9 0.9-0.7 0.3 0.2 0.5 0.7-0.7 0.3 0.1-1.6 2.6-2.1 2.1-0.3 0.8 0.1 0.7-0.8 0.9-1.3-0.2-0.3-0.3-0.4-1.5-1.2-0.9-1-0.2-0.5 0.3-0.3 0.8 0.5 0.4 1.4-0.2 1.1 1.7 1.2 0.9-2.3 0.7-2.3 1.2-3.3 1.1-1.2 0.4-1.7 0.3-0.1 0.2-3.1 0.6-3.7 1-5.6 2-3.4 1.8-1.7 0.8-1.3 0.8-2.5 1.1-2.8 1.6-1.5 0.9-5.3 4-1.1 1-0.7 1.1-0.9 0.8-2.5 1.6-1.8 1.5-1.6 1.4-1.5 1.5-1.3 1.8-0.3 0.7-0.6 0.7-1.1-0.3 0-0.9-0.8 0.1-0.7 0.8 0.6 0.8-0.8-0.5 0.1 0-0.2-0.5 0.1-0.1 0.2-0.9-0.2 0-0.5 0-0.6-0.2 0.1 0.8-0.2 0.4-0.5 0.1-0.6 0-1.1 0.2 0.3 0.8 0.4 0.1 0.2 0.6 0.4-0.1 0.3-0.3 0.7 0.7-0.3 0.5-0.3-0.2-0.4 0-0.2 0.3-0.1-0.2-0.1-0.1-0.4 0.2-0.1 0.2-0.3 0.5-0.4 0.7-0.5-0.8 0.2-1-0.3 0.1-0.1-0.2-0.3 0.2-0.4 0.5-1.3 0.3-0.4 0.4-0.3 0.2-0.4 0.5 0 0.5-0.2 0.4-1.1-0.6-0.6-0.4 0-0.1-0.2 0 0.3 0.6 0 0.2 0.1 0.2 0.3 0.3 0.2 0.3-0.9 1.1 0.5 0.9-0.7 0.8-0.8 0.3-0.8 1.1-1-0.4 0.4 1.8-0.5 0.1 0.1 0.6-1.1 0.4-0.6-0.3-0.8 0.6-0.5 0-1-0.5-1.2 0.7-0.7-0.2-0.9 0.3-1.5 0.7-0.8-0.2-0.6-1.1-1.4-0.8-0.9 0.2-1.7-0.3-0.8-0.3-1.3-0.1-0.2-0.7-0.7-0.5-0.3-0.8 0.2-0.5-0.2-0.8-0.8-0.9 0.1-0.5-0.9-2.1-1.6 0.8 0.3 1.5 0.4-0.1 0.5 1-0.2 0.6-0.9-0.6-0.6-2.1-0.7-0.3-0.2-1.1-0.6-1-0.9-1.2 0-0.4-0.4-1-0.9-1-0.8 0.8 0.3 1-0.8 0.6-0.1 0.9-0.9 0-0.6 0.8-0.1 0.8-1.2-0.2-0.1-0.5 0.7 0-0.3-1.4-0.4 0.4-0.5-0.8-0.6 0.2 0.2 1.2 0.4 0.4-0.1 0.9-0.9 0.1 0 0.6 0.5 0.8-0.7 0.4-1-1.1-0.2-0.6-0.7-0.2-0.9 0.2-0.2-0.5-0.7 0.1-0.2 0.7-0.7-0.1 0.2 0.8 0.4 0.4 1.2 0.1 0.1 0.9-0.6 0.3 1.4 1.8 0.8 0.4-0.5 0.4 0.1 0.6-0.9 0.4-0.4 0.5-1.3 0.3-0.6 0-0.9 0.3-0.4 1.2-1-0.1-0.5 0.4-1.3 0.2-0.6-0.6-0.6 0.1-0.6-0.5-1.5 2.1-0.4 0.3-0.9 1.8-1.3 0.6 0.3 1.2-0.5 0.6 1 0.4-0.4 0.5 0.3 0.5 0.6 0.5 0.7-0.3 0.6 0.4-0.5 0.6-0.8 1.4-1.2 1.1 0.7 0.4 0.2 0.6 0.8 1-0.3 0.5-0.6 0.2-0.9-0.2-0.7 0.1-0.5 0.7-0.6-0.1-0.9 0.2-0.2-0.3-0.9 0.2-0.6-0.9 0.2-0.4-0.2-0.8-0.5 0.2-1.7-0.9-0.7-0.2-0.8 0.7 0.4 1-0.3 0.7 0.2 0.6-0.6 0.9-0.5 0.1-0.6 0.5-1.1 0.2-0.1 0.4-1.2 0.2-0.7 1.2 0.1 0.5-0.5 0.5-0.8-0.7-0.7-0.3-0.1-0.8 0.2-1.4 0.3-1.7-1.5-0.8-0.7-0.1 0-0.6 0.6-1.1-0.8-0.2-0.5-0.4 0.4-0.5-0.1-1.3-0.9 0-0.5-0.4-0.3-0.8-1.3 1.5-0.3 0.7-1 0.9-0.7 1.1-0.5 0.4 0.7 1.4-0.2 0.7-0.6 0.3-0.5 0.8 1.3 0.1 0.3 0.4-0.3 0.8-0.5 0.5-1.1 0.2-0.2 1.2 0.1 0.6-0.9 0.7 0.1 0.8 1.3 0.4 0.6 0.8-0.3 0.6-0.8-0.7 0 1.8 0.3 0.4-0.2 1.3-0.5-0.2-0.6 0.4-0.6-0.7-0.7 0.4-0.3 0.5 0.5 0.9-0.2 0.8-0.8 0.3-0.2-0.5-0.6 0-0.8-0.6-0.6 0-0.5-1.1-1.1 0.2-0.1-0.5-1.2-0.1-0.7-0.5-0.4 0.7-0.5 0-0.7-0.4-0.8 0.4 0 0.8-2.3 1.4-0.7 0.2-0.5 0.4-1.8 0.6-0.5 0-1.1 0.5-0.5 0.9-0.9 0.7-1.9 1.1-0.5-0.8-0.9 0.3-0.6 0.7-0.1 0.6-1.1 0.9-1.2-0.5-0.7 0.4-2.5 0.5-0.4-0.7-1.1 0.3-0.4-0.2-0.6 0.6-0.8-0.1 0-0.7 0.5-0.7-0.3-0.5 0.2-1 1.4 0.4 0.4-1-0.2-0.7 0.4-0.8 0.7-1 0.1-1.1-0.1-0.9 0.2-0.7 0.9-1.6 0.1-1.3 0.4-1-0.6-1 0.7-1.8 0.1-0.9 0.7-0.1 0.7-0.4 0.8-1 0.8 0 1.5-0.5-0.1-0.8 3-0.3 0.6-2.3 1.2-1.1 1.8-1.7 0.4-1 0.7-0.5 0.5 0.1 0.1-1.1 1.6-0.1 0.3-1-0.9-0.3-1-0.8-0.4-0.1 0.2-1.2 0.7 0.7 1.1 0.2 0-0.9 0.5-0.5-0.2-0.4 0.7-0.6 0.5-0.1 0.9-0.5 0.6-0.2 1.5 0.2 0.4-1.6 1.9-0.6 0.5-0.6-0.2-0.3 0.3-1.1-0.2-0.8 0.4-0.9 0-0.5 1.5-0.8 0.9 0.1-0.6-4-1-1.4 0.5-0.7-0.6-1.4-0.7-0.6 0.3-0.9-0.2-0.9-0.6-0.5 0.2-0.4-0.3-0.5 0-1.6 0.6-0.9 0.4-1.5-1.3-0.5-0.1-0.7 0.9 0 0.3-0.4 0.3-1.3-0.5-0.6-1.7 0.2-0.8-1.3 0.2-0.5-0.4-0.7 0.1-0.6-0.8-0.2-0.3 0.4-1.3 0.1 0.8-1.3-0.1-1-0.3-0.7 0.6-1.5-0.2-1.6-0.3-1.2 0.2-1.3 0.5-0.5 0.1-1.1-0.3-0.3-1.8-0.3-0.7 0.1-0.7-1.4 0.1-0.7-2.2-0.9-1.3-0.7-0.4-0.6 0.1-0.9-0.4-0.4 0.3-0.7 0.4-1.9 0.5-0.9 0.5 0.1 1.6-2 0.3-0.1 1 1 0.7 1 0.7 0.2 0 0.8 1.2-0.6 0.3-0.5 2 1.4 0.5 0 1.2 0.6 0.6 0.5 0.7 0 0.9-0.6 1.1 0.9 0.2 1 0.9 1.7 0.1 0.5 0.7 0.9 0.3 0.8 0.4 0.3 1-0.9 0.7-1 0.9-0.5 0.9-0.3 0.6 0.3 0.6-0.2 0.7 0.6 1.1 0.1 0.5 0.5 0.8-0.1 1 0.4-0.9 1.2 0 0.9 0.3 1 1.4-0.4 0.9-1.4 1.8-0.1 0.4-0.8-0.4-2.1 0.3-1.4 0.1-1.4-0.4-0.3-1.7-0.3-0.9 0.1-0.3 0.4-1.1-0.1-0.2-0.3-1.1-0.5-1.4-0.1-0.9-0.6-1.2-0.2-1.6-0.5-0.1-0.4 0.1-1-0.1-1.1-0.4-0.9 0.1-0.6 0.8-0.7 0.2-0.8-0.3-1.4 0.1-0.9 0.7-0.5-0.2-1.1-0.9-1 0.1-0.7 0.4-0.8 0-0.9 0.5-0.3 0.2-0.6-0.4-0.4 0-0.7-1 0.1-0.3-2-1.1-0.5-0.2-0.6-0.6-0.5 0.6-0.8-0.1-0.7 0.6-0.4 0.4-0.9-0.1-1.2-0.5-0.6-0.3-0.7 0.1-1.1-0.3-1.1 0.1-1.2-0.2-1.8 0.5-1.6 0.7 0.7 0.5-0.2 0.6 0.3 0.2 0.9 0.3 0.4 0.7-0.1 0.6 0.3 0.2-0.5 0.6-0.4 0.3-1-0.1-1 2.4-1.5 1-1.7 0.8-0.7 0.6-1.1-0.5-1 0.6-0.5 0.6-0.9-0.3-1.2 0-0.5 0.9-0.1 0.8-0.2 0.5 0.1 0.7-0.2 1.3 0.1 0.8 0.6 1.1-0.6 0.9-0.2 1.3 0.5 0.8-0.5 0.7 0.2 0.7-0.2 0.5-0.5 0.3 0.8 0.5-0.1 1 0.4 1.1 1 1 0.4 1.7 0.3 0.4-0.2 1-1 1-0.2 0.6-2.3 0.3-0.8-0.1-1 0.3-0.6 0.6-0.4 0.9 0.3 0.2-1-0.5-0.2-0.1-1.1 0.4-0.5 0.1-1.1 1.3 0.4 2.3 0.9 0.9-0.3-0.3-0.5 0-1.4-0.4-0.3-0.4-1-0.7-0.3-0.3-1.5 0.5-1.9 0.4-0.5-0.2-0.8 0.2-0.9 0.5-0.6 1.1-0.9 0.9-0.4 0 1.1 0.8 0.5 0.2-0.8 0.5-0.5-1.5-0.6-0.7-0.7 0.4-0.7 0.8 0 1-1.7-0.3-1.2 0.5-1.3 1.1 0.5 0.5 0-0.2-1.4 0.9-0.1 0.6 0.2 0.3-0.8-0.4-0.7 1-1.5-0.5-0.5-1.1-0.2 0.1-0.5-0.8-0.7 0-0.5 0.5-1.1-0.5-0.6 0.2-1.2 1.5 0 0.6-0.4-1.5-1.2 1.7-2.2 0.4-1.4 0.9-1 0.4 0 1.2-0.8 1.8 0.2 0.9-0.6 0.3-0.7 0.6-0.5 0.8-0.3 0.1-0.7 0.7-0.4 0.6-0.6 1.2 0.1 0.6-0.7 1.8 0.1 1.2-0.5 0.4-1.3 0.9-1 0-1.2-0.6-0.3-0.3-0.4-1.3-0.7 0-0.6 0.9-0.1 1.9 0.4 0.7 0.8 0.9 0.6 1.1 0.2-0.1 0.8 0.1 0.9 0.5 0.8 1.1 0.6 0.3 0.4 1.8 0 0.7 0.9 0.8 0.4 1.2 0 1.6-0.4 0.8 0.2 1.1-0.3 0-0.5 0.7-0.5 0.9-0.2 0-0.7 0.9-0.5 1.5 0 1-0.2 2-0.3 1 0.6 2.8 0 0.3-1.1 1.7 0 0.4 0.4 0.8 0.2 1.4-0.6 0.1 1 0.9-0.1 0.3-0.6 1.2-0.6 0.3 0.3 3.1-1.3 0.8 0.2-0.1 0.6-0.5 0.4 0.2 0.8 0.4 0.4 0.3 1.3-0.3 1.1 0.6 0.3-0.2 0.9 1 0.1-0.3 0.8-1.2 0.7 0.1 0.8-0.2 0.8-0.7 1.6 0.1 0.2-0.9 1 0.2 0.6-0.2 0.9-1.5 0.8 0.2 0.5 0.5-0.1 0.6-0.9 0.9-0.2 0.8 0.1 1 0.4 0.1 0.4 0.6 0.7 0.8-0.3 2.4 1.2 0.1 1.2 0.5 0.3 0.4-0.4 1.1-2.5 1.7-1.7 1.3 0.1 0.1-1.1 1.6-0.1 1.6 0.8 1 0.7 0.6 0.1 1.1 0.7 1.5 0.5 0.3 0.2 1.4-0.3 0.5-0.3 1.2 1.6 0.3-0.3 1.1-0.1 0.8-0.4 0.4-0.6 1.2-0.5 0.4-0.4 0.9 1.2-0.5 0.3-0.9-0.3-0.6 1 0.3 0.5-0.8 1 0.1 0.7 0.8 0.4 2 0.1 1.8 0 0.6-1 0.6-0.6 0.5 0 1.1-1.9 0.1-0.4 0.8-1.1-0.3-0.7 1.1-2-0.3-0.5-0.8-0.6-0.8-1 0.5-0.9 1.1-1.4-0.4-0.4 0.5-0.5-0.9-0.3 0.8-0.9 0.1-0.7-0.4-1.6-0.5 0.1-1.4-1.3 0.5-0.9 0.1-0.7 0.9-0.3 1.1-1-0.4-0.3 0.7-0.7 1.1 0.7 1.1 2 1.5 0.4 1.9 0.3 0.6 0.8 1.6 0.3 0.5-0.2 0.2 0.8 1.1 1.2 0.2 0.7 0.5 0.3 0.5 0.7 0.7 0.3 1.7 1.2 0.5-0.7 0.7 0.1 1.4-0.7 0.3 0.6 0.5 0.2 0 0.6 1 0.3 0.9-0.1 0.4 0.6 0.8 0.2 1.1 0.5 0 1 0.8-0.1 0.4 0.7 1.4 0.1z", "27": "M399.3 989l0.1 0.2 0 4.8-0.1 0.6-0.5 0.1-0.8-0.1 0.1-0.2-0.1-0.3-0.1-0.1-0.2-0.1-0.3-0.2-0.1-0.3 0.5-0.1-0.6-0.4-0.1-0.4-0.3-0.1-0.2 0 0.2-0.2-0.1-0.2-0.5 0.2-0.2-0.1-0.2-0.3-0.2-0.2-0.5-0.1 0-0.1-0.1-0.1-0.2 0.1 0.1-0.2-0.4-0.1 0-0.2-0.2 0 0.1-0.1 0.5-0.4-0.2-0.1-0.4-0.3 0.4-0.2 0.4 0 0.4 0.3 0.2-0.2-0.2-0.2 0.1-0.3-0.1-0.1 0-0.1-0.2-0.2-0.1-0.4 0.4 0 0.6 0.2 0.5 0.1 0.5 0.2 0.3-0.4 0.2 0 0.2 0.1 0.5-0.1 0.4 0.2 0.5 0.1z m-4.6-34.6l0 0.4 0.6 0.3 0.3 1.4 0.2-0.3 0-0.4 0.6-0.2 0.1-0.3 0.2-0.2 0.1 0.1 0.5 0.1 0-0.5 0.2-0.2 0.2 0 0.2 0.5 0.6 0.3 0.4 0-0.5 2-0.4 1.1-0.4 1.5-0.5-1.1-0.6-0.1-0.4-0.6-0.9 0.4-0.8 0-0.4-0.2 0-0.7-1.2 0.3 0-0.4 0.7-0.1 1 0.2 0.5-0.6-0.7-0.8 0.1-0.5-0.8 0 0-0.7 0.6-0.2-0.2-0.8-1.8 0 0.2-0.6 0.1-0.2 0.3 0.1 0.3-0.4 0.8-0.3 0 0.7 0.5 0.7 0.4 0 0.2 0 0.2-0.3 0.8 0.3-0.3 0.2-0.6 0.3-0.3-0.2-0.1 0z m-150.4-2.8l-0.4 0.7-1.1 0.1-0.1 0.8 0.6 0.6 0.2 1-1.3-1.7-0.6-0.7-0.2-0.7-0.1-0.3 0-0.7 0-0.1-0.1-0.8 0.1-0.2 0.5-0.2 0.1 0.1 0.2 0.2 0.3-0.2 0.4 0.2 0.4 0 0.2-0.4 0.9-0.6 0-0.2 0.3-0.2 0.2-0.1 0.7 0.2 0.7 0.2 0.2-0.4 0.2 0 0.3 0 0.4 0.2 0.1 0.2-0.3 0.3-0.4-0.1-0.1 0.2-0.3 0-0.6 0.5-0.5 0.3-0.3-0.1-0.3-0.1-0.4 0.1 0.2 0.5-0.6 0.9 0.1 0.2 0.2 0.1 0.2 0.2z m238.2-164l-0.9 0.3 0.2-0.4 0.7 0.1z m0.4-0.5l-0.9 0.2-0.6-0.4-0.4 0.4 0.5 0.6-0.4 0-1-0.7-0.8 0.1-0.5-0.3 0.6-0.7 0.8 0.6 2.1-0.1 0.6 0.3z", "28": "M294.1 255.4l-0.2 0.6 0.2 0.6 1.1 1.4 0.9 0.4 0.2 1.1 0.4 0.5-0.6 1.1-1.2-0.1 0.4-0.4-0.1-0.2-0.2-0.2-0.5 0.5-0.3-0.4 0.1 0-0.3-0.4-0.5-0.1-0.2 0.1-0.2 0.1-0.1 0.1-0.1 0.2-0.2 0.3-0.3 0.3-1 0.4 0.1 0.1 0.6 0.8 0.2 0.8 0 0.1 0.3 0.2 0 0.2 0.3 0.3 0.1 0.3 0.3-0.1 1.7 0.9 0.3-0.5 0.2-0.2 0.3 0 0 1 1.5-0.4-0.2 1.2 0.5 0 0.9 0.8 0.5 0.8-0.5 1.3 0.1 0.7-0.6 0.4 1.2 0.6-0.2 1.2-0.6 0.2 0 1.3-0.2 0.8 0.4 0.3 0.3 1 0.6 0.6-1 1-0.7 0 0.1-0.8-0.5-1-0.6-0.3-0.5-0.7-0.9 0.9-0.9-0.2-1.1-0.4-0.8 0.2 0 0.6-0.9 0.5 1.3 1.3-1.3 1.4-1 0.2-0.6 0.8-1.3 1-1.1 0.2-1.2 0.4 0 1 1-0.9 0.5 0.1 0.7 1.1-0.2 0.4 1.1 0.4 0.1 0.8-0.6 0.6 0.2 1.4-0.3 1.6-1 0.6-1.2-0.8-0.8 0.7-1.1 0.2-0.3-0.8-1.3-0.1-0.3-0.9-0.6-1 0.1-1.3-0.3-0.7-0.8 0-0.6 0.6 0.7 1-0.5 0.5 0.1 0.7-1.4 0-0.7 0.7-1.2-0.3-0.4 0.2-1-0.3-1.4-1.4-0.2 1.1 0.9 0.8 0.8 0.1-0.8 1-1.1 1.8-0.3 1.2 0.5 2.3-0.9 0-0.4 0.7 0.5 0.2 0.1 1.1 0.5 0.4 0.9 0 0.6 0.6-0.5 0.6-1.1 0.3-1 1.1-0.9 0.1-0.8 0.8-0.7-0.6-0.6 0.2-0.1 1-0.6 0.3-0.6 0.9-0.5-0.2-0.7 0.1-1.1 0.8-1.3 0-0.7-0.3-0.6-0.6-0.6 0.3-0.5-0.2-0.7-0.9-0.8-1.6-0.8 0.3-0.9-0.7-0.8 0.5-1.4 0.2-0.3 2.1-0.7-0.1-0.4-0.6-1.4 0-0.1 0.7-2 0.4-0.2-0.8-1.7-0.4-2.2-1.3 0 0.9-1.6 1-0.4 1-0.2 0.9-0.6-0.1-0.9 1 0.4 0.7-1 0-0.3 1.5-0.7 0.5-0.2 0.7 0.8 0.5-0.5 1.1-1.8 0.4-0.9-1.2 0.3-1-0.7-0.6-0.9-0.3 0-0.8-0.5-0.7 1-0.5 0.3-0.6-0.3-0.6 0.3-0.8 0.8 0 0.4-0.8-0.7-1.4-0.5-0.3 0.1-1.4-0.6-0.3-0.9 0.7-0.2 1.1-0.6 0.3-0.3-0.8-0.7 0.1-0.3-0.6 0.3-0.8-0.6-0.2 0-0.6 0.5-0.4 0.1-1.1-0.9-0.6-0.4 1.3-0.9-0.1-0.8 0.7-0.9 0.3-0.7-1 0.1-0.3-1-0.5-0.6-1.6-1.8-0.6-0.8 0-0.9-0.6-0.7-0.8-0.9 0.7-1.3 0.3-0.4 0.2-1-0.3-0.5 0.8-1.4 1.1 0 0.7-1.9-0.4-0.4-0.4-1.8-0.7-1.8-0.1-1.4-0.2-0.8 0.1-3.9-0.3-1.3 0-6.2-0.5-6.1-0.1-0.3-1 0.6-2.3 0.6-0.5 1.5-2.4 0-0.6 0.2-2.1-0.3-2.6-0.8-1.6-1.3-1.8-0.7-0.5-0.1-0.9 1-1.3 0.9-0.2 0.3-0.9-0.2-0.6 1.1 0.1 0.3-1.3 0.5-0.6 1.8-1.3 0.5 0.6 0.8-0.3 0.2-0.6-0.6-0.4 0.8-0.7 0.1-1 1.1-1.2 0.9-0.2 1.6-1.5 1.2-1.9 0.7-0.2 0.7-0.8-0.3-1.2 0.9-0.2-0.2-0.7 0.7-1 0.3-1 0.5-0.2 1.1 0.2 0.3-0.2-0.3-0.8 0.1-0.5 1-0.8 0.8-0.3 0.1-0.5 1.7-1.6 0.9-0.1 0.3-0.4 1.1-0.8-0.2-0.5 0.2-0.9 0.4-0.4 0.1-0.8 0.7-0.2 0.9 1 1.9-0.5 1-0.7 0.3-0.9-0.5-1.3-1.8-0.3-1.1 0.3 0.2 0.7-0.4 0.7-0.7 0.3-0.7-0.1-0.1-1.2-1.3-0.7-0.2-1.8 0.5-1.1-0.1-0.6 0.4-1-0.4-1 0.6-1 0.8 0 1.4-3.9 1.1-1.1 0.6-1.5-1.6-1.6-0.6 0.2-0.2-0.9 0.9-0.4 0.2-0.5-0.1-1.1-0.8-2.2-1.7-3-0.4-1 0-0.9 1.2-0.5-0.3-0.8 0.6-1.5-0.2-0.6 1.4-1.4 0.1-0.8 0.8 0.1 1-1.1 0.8-0.5 0.9-0.1 0.2-1.4 1 0.9 2.2-1 0.6-0.6 0-0.7 0.9-0.6 0.8-0.9-0.2-0.6 1.3-0.2 0.2-0.5 0.6-0.1 1.2 0.4 1.3 1.1 0.9-0.4 0.9-0.1 0.6-0.7 0.6-0.2 1.2-0.8 1.1 0.1 0.2 0.5 0.9-0.6 0.3-1.3 0.6-0.1 0.9 1.2 1.2-1 0.4-1.2 0.8-0.5 0.5-1.9-0.2-0.6 1 0 0.6-0.9-0.2-0.8 0.3-0.4-0.9-0.8-0.1-1.4-0.5-0.6 0.1-0.1 0-0.1 0.2-0.1 0.4 0.2 0.1 0.1 1.1 0.4 1.3 0.2 0.5-0.1 0.1 0 1.3-0.5-0.1 0.8 0.7 0.3 0 0.9 0.5 0.4 0-0.1 0.4-0.7 0.3-1.7 0.7-0.8 1.6-0.8 1.9-0.3 1.3-0.5 0.9-0.7 1.2-2.4 1.1 0.1 0.8-0.5 0.8-0.9 0.4-1.2 1.2-1.5-0.1 0.7-0.5 0.8-0.1 0.7 0.1 0.9 2 2 0.7 1-0.3 0.5-1.8 0.6-1 0.8-2.8 3.1-0.3 0.6-0.6 0.5-2 0.4-0.8 0.4-1.1 0.8 0 2 1.2 0.3 0 1.3-1.6 1.8-1.1 0.8 0.7 0.6 1.8-0.5 1.4 0.8 0.6 0.9 0.8 0 1.4 1.4 0.7 0.5 1.4 0.3 1.1 0.5 0.9 0.8 1.9 4.1 0.1 0.9-1 0.3 0.5 1.3 0.3 0.2 1.1 3 0.9 1.7-0.1 0.7 0.7 1.2 0.7 0.5 0 0.4 1.4 2.2 0.8 1.7 0.7 2.1 0.5 0.4 0.5 1.2-0.8 0.8 0.2 1.2 0.9 0.5 0.2 1.4 1.2 0 0.5-0.3 1.2-0.1 0.1 0.4 1-0.4 0.4-0.4-0.2-0.7 1.2-0.1 0-1.3-0.5-1 1.1-0.1 0.4-0.4 0.1-1 1 1.7 0 0.8 1.2 2.1 0.7 0.8 0.7-0.2 0.7 1.5 0.8-0.4 1.2 1.1 0.8-1 1.1 1.2-0.9 1 0.4 0.4 1-0.5 0.6 0.6-0.8 0.4-0.7 0.8 0 1 0.3 0.3-0.3 0.9 1.2 0.7-0.7 1.3-0.2 1 0.5 1.2-0.1 0.7 1.4 0.9 0.5 0.5 0.9-0.1 0.7 0.4 0.4 0.9 0.8 0.4 0.7 0.9z", "29": "M217.3 293.6l-0.5 1.4 1 0.2 0.6 1.4-0.7 1.1-1.4 0.5-0.7 0.9-0.2 0.6 0.2 1.7 1.9 0.1 0.4-0.5 1.1 0.1 0.8-0.6 0.4 0.6-0.1 1.2-0.8 2.6 0.2 0.8-0.3 0.3-0.2 1.6 0.1 1.2 1.3 1 0 0.4-0.6 1.1-0.5 1.3-1.5-0.2-0.1 1.5 0.7 0.1 0.6 0.7 0.1 0.8 0.9 1.2-0.1 1 1.5-0.1 0.3-1.6 1.3 0.3 0.8-0.2 0.7 0.6 1.5-0.2 1.2-1.5 1.3-0.2 0.8 0.7 0.6 0 1.3 0.8 0.3 1.1 0.5 0.7-0.4 0.6 0.5 0.9 0.8 0 0.5 0.4 1.1-0.8 0.5 0.1 0.4 1 0.9 1.2 1.1 0.2 0.2-0.6 1.1-0.1 0.6-0.8 0.5-0.1 0.5 0.9 1 0.4 0.4-0.7 1.3-0.1 0.1-0.7 1.5-0.8 0.2 0.6-0.1 1-0.3 0.7 1.1 0.3 0.1-0.8 1-0.6 0.6 0 0.1 0.9-0.4 0.4 0.5 1.6-0.5 0.7-0.6 0-0.3 1.1 1.2 0.6-0.5 0.7 0 1.5 1.7 0.2 0.3 1-0.2 0.9 1.3-0.1 1.3 0.4 0.2 1.3-0.4 0.6-0.2 0.8-1 0.1-0.1 0.5 0.8 1-0.1 1.6 0.9 0.9-0.5 1.9 0.6 0.6 0.5 1.5 0.3 3.3 0.3 0.2 0.3 1.1 0.7-0.1 0.3 0.4 0.8 0 0.3 0.7 0.4 1.7 1.2 0.5 0 0.4 0.8 0.9 1.6 0.4 0 0.6 1.5 0.6 0.2 0.7-0.7 0.7 0.2 0.5 0.6 0.2 0.5-0.4 0.9 0.2 0.2 0.4 1.3 0.3 1.7 0.8 0.1 1 1 0.2 1.1 1.7 1.1 0.6-0.4 1 0.1 0.5 1.4 0.7-0.2 0.8 0.7 0.1 0.3 1.1 0.6 0.6-0.3 0.5-0.7-0.1 0.1-0.9-1.3-0.2-1.2 0.9-0.1 0.9-0.5 0-1.1 0.8-0.3 0.5 0.8 0.4 0.6 0 0.9 0.9 0.4-0.8 0.7 0.5-0.6 0.5-0.2 0.7-1.2 0-0.1 0.7-0.6 0.7 0 0.5 1.1 0.1-0.7 0.9-0.1 1-0.7-0.1-0.7 0.2 0.2 0.7 0.9-0.2 0.8 0.4-0.1 1.8 1.1 0 1.4 0.6 0.4-0.3 0.7 0.2 0.2-0.7 1.2 0.6 0.2 0.8 1.5 1 1.2-1.6-0.5-0.6-0.1-0.7 0.3-0.7-1-0.4 0.4-2.4-0.9-0.8 0.7-1.1 1-0.3-0.9-0.8 0-0.4 1.9 0.2 0.6-0.6 0.7 0.2 0.6 0.6 0 0.8 0.9 0.3 0.7-0.3 0.6-1.4-0.6-0.3-1-1.5 0.9 0.2 0.8-0.8-1.2-0.8-1.5-0.8 0.1-0.4 1-0.2 0.9 0.3 0.6 0.4 0.2 0.9 0.6 0.2 0.7-0.4 1 0.1 0.4-0.3 1.2 0.1 0.6 0.7 0.2 1-1.4-0.1-0.3 0.6 0.8 0.3 0.9 0.8-0.5 0.3-0.8-0.2-0.1 0.6 1.2 0 0.7 0.5 0.9-0.2 0 0.9-0.2 1.4 0.5 0.3 1.8-1.4 1.3-0.1 0.8-0.3-0.3-1-0.1-1.8 1.1-0.2 1-1.4 1 0.1 0.5-0.6 1.3-0.5 0.1-0.5-0.2-0.9 0.5-0.2 1-1 1 0 0.1 0.5 1.2 0.3-0.6 0.5 2 1.7 0.7 0.2-0.5 2.8-0.6 1.1-0.4 1.7 0.2 0.8-0.2 2 0.7 0.3 0 0.9-0.4 0 0.1 1.5-0.1 0.8-0.7 0-0.2 0.5 0.2 0.6-0.4 0.8-0.2 2.6 0.9 0.7-0.8 0.8 0.6 0.9 0.8-0.7 1.3 0.7 0.3-1.9 0.5-1.4 1.3-0.2 0.7 0.7 0.8-0.3-0.2-0.8-0.7-0.1-0.9-1 0.5-1.3 1.1 0.4 1 0.9 1.6 0 0.1-1 0.8-0.2 0.5 0.7 1.2 0.1 0.4 0.4 1.4-0.8 1 0.7-0.1 1.2 0.3 0.8-0.5 0.3 0.2 0.6 1.1 0.2 0.3 2.1-1.1 1.6 0.5 0.6 0.8 0.1-0.6 0.9 0 1.2 0.3 0.6 1.2 0.2 0.6 0.6 0 0.8 1.2 0.8-0.4 1.4 0.5 1 1.2 0.6 1.1 0.1 1.5 1.5 1.1 0.6 0.6-0.4 0.8-0.1-0.1 1-0.7 0.5 0.6 0.5-0.1 0.6 0.6 0.3 0.7 1-0.1 0.9 1.1 0.5-0.7 1-0.8 0.2-0.5-0.2-0.3 0.8-0.5 0.6 0.2 0.4-1.8 0.5-0.9 1.1 0.3 0.8 0.6-0.6 0.7 0.1-0.2 1.2 1.3 0.7 2 0.3 0.5-1 1.1 1.8 0.6 0 0-1 0.5-0.3 0.3 0.8-0.3 1-0.7-0.1-0.8 0.4-1.7 0.5-2.1 1.4-3.3 1-1 0.6-0.1 0.5-1 0.3-0.2 1 0.8 0.9-0.4 1.2 0.8 0.2 0.4 0.5-0.5 0.8 1.1-0.2 0.4-0.5-0.4-0.8 0.6-2.3 0.5 0.1 0.3 0.8 1.5 0 0.2-0.3 1.3-0.1 0.5-0.5 1.1-0.4 0.5-0.6 1.5-0.3-0.2-0.9 0.5-0.7 0.8-0.2 0.6-0.4 0.8 0.6 0.6-0.2 2.2 0.9 0.7 0.6 0.6-1 0.7 0.1 0.4 0.5 0.8-0.5 0.4 0.6 0.5-0.6 0.8 0.1 0.7 1.3 0.3-0.3 0-1.2 0.6 0 0.9 0.5 0.5-0.3 0.4-0.7 0-1 0.9-0.1 1.7 0.4 1.5 0.5 0.9 0-0.4 1.2-0.7 0.7-0.8 0.2 0.2 1.6-1.7 0.4 0.6 0.9-0.1 0.4-1 0-0.9-0.4-0.8 0.5 0 0.7 0.5 0.8-0.7 0.5-0.1 1.9-0.4 0.3-0.9-0.4-1.9-0.5-0.8 1-1 0.5-1.3-0.1-0.4 0.5-0.1 0.8-0.3 0.5-1.3 0.2-0.7 0.5 0.1 1.1-0.4 0.7-0.5 0.1-1-0.1-1 0.4-0.4 1.1-1.1 0.5-0.8-0.3-1.5 1-1 1.1-1.6 0.5-1 1-1.6 0-1.6 0.3 0.4 1.1-0.3 0.5-1-0.1-0.5 0.2-0.7-0.3-1.7 0.9-0.3 1.2-1.4 1.5-1 0.5-1.5 1-1-0.3-1.2 0.2-0.5 0.3-0.6 1.4-0.4 0.3-1.1 0-1 0.4-0.7 0.6-0.3 0.9-1.9 1.2-1.8 0.4-0.5 1.4-1.4 1.1 0.3 0.7-0.7 1 0 0.5-0.8 1-1.2 0.1 0.1 0.8-1 0.7-0.7 0.1-1.3-0.5-1.2 0.3-0.3 1.1-1.2 0-0.4 0.3-0.6 1.1-0.6 0.5-0.7 1.1-0.2 1.2 0.2 0.8-0.1 0.5-0.8 0.1-0.7 0.4-0.2 0.9 1.2 0.8-0.4 0.9 0.5 0.6 0 1-0.2 1 0.5 1.1-0.1 0.8 0.6 0.8 0.7 1.4 0.2 1.1 0.8 0.4 0.5 1.6 0.8 0.6 0.4-0.2 1.5 1.3 1.1 0.1 0.9-0.2 0.9 0.4 0.2 0.8 2.4-0.5 1.7 0.3 1.3 0.9-0.1 0.7 0.9 0 0.2-0.7 1.1-0.2 1.1 0.1 0.5-0.9 0.8 0 0.5-0.6 1.3 0.2 1.3 0.8 1.3 0.1 0.2-0.7 0.7-0.1 0.1-1.6 1.4-0.9 0.7-1 0.8-0.4 1.9 0.8-0.6 1 0.4 0.7-0.4 1.2 0.7 0.2 0.4 1-0.3 0.8-0.6 0.5 0.5 0.8 0.6 0.2 0.9 0.7 0.3 1.2-0.9 0.2-0.1 2.5-1.3 0.9-0.6 0.1-1 0.5-0.6-0.8-0.8-0.6-1.4 0.4-0.8-0.3-0.9 0.1-0.4 1-1 0-0.5 0.7-1.3 0.4-3.2-0.7-0.5 0.8-0.5 0.3-1.8 0.5-0.7 0-0.4 0.9-0.1 1.5 0.2 0.6 1.8 1.7-0.4 0.8 1.2 0.6-0.7 0.9-1.1 0.4-2-0.1-1.2 0.6 0.5 0.8 1 1.3 0 0.7 0.5 0.1 0.9-0.2 0.6 0.3 0.6-0.1 0.8-0.6 0.6 0.2 0.3 1 0.7 0.6 0.9 0.1 0.5 0.4 0.1 0.8 0.8 1.5 0 1.8 0.2 1.1-0.5 1.4-0.6-0.1-0.3 1.1-1.1 1-1.1 0.5-0.6-0.2-0.9-0.8 0.1-1.8-0.6-0.5-0.4 0.8-0.5 0-0.3-0.8-0.7-0.1-1.1 0.6 0.7 1.4 0.4 0.4 0.2 0.7-0.3 1 0.3 0.2-0.3 1.1 0.3 0.7-0.1 0.8-0.4 0.3 0.3 1.2 0.5 0.6 0.5 1.5 1.4 1.5 0.1 0.4 0.9 0.8-0.4 0.5-0.6-0.1-0.5 2.2-1-0.4-0.5 0.1-1 0.5-0.9 0.2-0.4-0.2-0.7-1.5-0.5-0.3-0.9 0.1-0.3 0.3-0.6-0.4-0.9-0.8 0.4-1.4 0.5-0.7-0.3-1.3-0.5 0.5-1.3 0.3-0.8 0-0.1 0.8-1.5 1.1-0.2 0.4 0.5 0.8-0.8 0.5-1.1 0.2-0.4-0.6-0.1-0.8-0.4-0.5-1.1-0.6-0.4 0.4-1-0.3-0.4 0.6-2-1.5-1.2 0-1 0.5-0.4 0.8-1-0.5-0.8 0.2-0.6-0.4-0.1-1.3-0.3-0.6 0.4-1-0.7-0.8-0.5 0.6-0.1 0.8-0.7 0.1-0.2 0.4 0.4 1.4-0.1 0.3-1 1.2-0.1 1 0.4 0.3 0.2 1.4-0.3 0.5 0.2 0.9-1 0-0.2 0.2-1.9 0.6-0.6 0.9-1.2 0.7-1 0.2 0 1 0.7 0.9-0.2 1.6-0.9 0.4-0.6 0.7-0.4-0.1-1.4 0.8-0.9-0.4-1.7 0.9-0.8 0.6-0.6-0.1-0.1-0.9-1.1-0.8-0.8-0.1-0.2 1 1 0.5-0.2 1.4-0.3 0.4-0.8-0.1 0.3 1.2-0.3 0.5-1.3-1-1.2-0.2-1.1 0.2-0.6-0.6 0.1-0.7-0.2-0.8-0.9-0.7-1.1-0.6-0.6-0.7-1-0.4 0.2-2.2 1-0.9 0.7-1.7 0.6 0.7 1.4 0.5-0.1 0.7 2.3 0 0.2-0.7 0.9-0.6 0.6 0.6-0.1 0.7 0.6 1.1 1.2-0.4 0.1-0.6 0.8-0.1 0.6-1.4 0-1 1.7-0.3 0-1.4-0.6 0.2-0.8-0.3-0.3-0.9-1.2-0.2 1-3 1.1-0.3 0.2-1.2 0-1.5-0.5-0.5-1.1 0.1-0.9-1.4 0-1.5-0.1-0.6 0.7-0.2 0-0.7 1-1.1 0.2-0.6 0.8 0.3-0.1 1.1 0.6 0.5 1.1 0 1.4-0.9 0.2-0.3 0.1-1.4-0.2-0.5 0.7-1.2-0.6-0.5 0.1-1-0.9-0.1-0.4-1-0.7-0.3-0.2-0.6-0.1-1.4-0.5 0 0.4-1.8-0.1-0.5-1.1-1-0.7-0.3-1.5 0.1-2.1 1.3-0.7 1-1.6 0.5-1.1-1.3-1 0.3-0.5-0.2-1.8 0.8-1.1 0.2-3-0.6-0.4-0.3-1.6-0.2-1.3-0.4-0.6 0.1-0.7-0.2-0.4 0.5-0.7-1.4-0.2-1.1 0.9-1.2 1-0.1 0.2-0.5-0.8-0.4-0.9-1.4 1.6-0.4-0.3 1.3 1.5 0.4 0.5 1.3 0.5 0 0.6-0.6 0.4-0.1 2.5-1.1 0.3-1.1-0.6 0-1.2 0.5-1.6-0.3-0.5 0.6-1.7-0.7 0.2-0.9 0.7-0.5-0.7-1.3 0.6-0.6 0.2 0.9 0.9 1.7 0.3-1.1 0.4-1-0.5-0.7-0.1-0.9 1.1-0.7-0.1-0.6-1.3-0.2-3.8 0.4-0.9-0.7-0.5 0.3-0.1 0.6 0.5 0.8-0.2 0.6-0.9 0.2-0.8 0.8 0.1 2.9-0.9 0.4-0.6-0.3-1 1-1.1-0.5-2.3-0.2 0.1-0.6-1.2-0.2 0-1.1-0.4-0.4-1.2 0.1-0.1-1.1-0.3-0.3-0.7 0.3-0.3 1 0.1 1.5 1 1.8 0 1.5 0.7 0 0.2 0.4 0.7 0.2 2.3 0.2 0.9-0.3 0.5 0.2 0.3 0.8 0 0.7-0.9 0-0.1 0.7 0.3 1-1.2 0.3-0.7 1.4-1.5 0.3-0.9-0.5-0.3-0.8-0.6-0.7-1-2.1-0.3-1.2-0.4 0 0.2 1.6-0.8 0.4 0.3 0.6-0.5 1.5 1.3 0 0.1 0.6-0.7 0.6-0.4 0.7 0.2 1-1.4 0.5 0.3 1.2-0.3 1.1-0.7 0-0.4 0.5 1.4 1.2 0.7 0.3 0.5-0.4 0.7 0 1.5 1.5-1.5 1.6-0.4 0.9-0.6 0.7 0 1.9-0.9 0.8-0.1 0.6 0.6 0.3 1.5-0.2 1.3 0.3 0.7-0.3 0.7 0.6 0.4 1-0.9 0.7 0.7 1.5 0.9 0.7 0.4 1.3 0.7 0.4 0.2 1.1 0.5 0.4 0 1.1 0.4 0.4-0.1 0.6-0.6 0.4-0.3 1.1-0.7 0.5-0.9 1.8-0.4 1.7 0.4 0.8-0.2 1.7 0.6 0.1 0.4 1.2-0.2 0.3 0.2 0.9-0.5 0.5 0 0.9-0.5 0.7 0.5 0.3 0.5 1.5-1.1 0.2-0.7 0.6-0.6 1.2-0.6 0.7-1.7 0.8-0.2-0.4-0.7 0.1-0.4 0.7-0.7 0.2-0.3 0.7-0.8-0.2-1.4 0.8-0.4 0.6-1.5 0.2-0.5 1.2-0.9 0.4 0 1.4-0.4 0.7-0.5 0-0.1 0.9-0.3 0.6 0.5 1.3 0.6-0.4 0.7 0.5 0.9 0 0.6 0.8 0.7 0.1 0.7-0.5 1 0.1 0.7 1.1-0.9 0.5 0.8 0.3 1.1-0.4-0.2 0.7-1 0.7-1.6-0.3-0.5 0.7-1 0.7-0.6 0.7-2.1 0.5 0 0.5-0.4 0.6-0.8 0.5-1.5 0.1-0.8-0.3-0.4-0.4-1.4-0.3-1 0.8-0.5 0.8-0.8 0.3-0.5-0.7-0.9-0.5 0.2-0.9-0.6-1.4-0.7-0.8-1.5-0.5-0.6 0.7-0.2 0.7-1-0.2-0.3-0.6-0.6-0.1-0.1-1.1 0.5-0.7-0.1-1.4-0.8-0.5-0.2-0.6-0.6-0.2-1.4 0.1-0.6-0.9 0-0.5-1.4-0.1-0.2-0.9-0.8-0.8-0.5 0.3-0.3 1.2-1.5 0.2 0-0.6-0.5-0.6-0.4-1-1.4-1.9-1.5 0.4-0.6-0.8-1.1 1.2-0.5 0.2-0.5-1.3-1.2 0.1-0.5 0.4-0.7-0.4 0.4-1.7 0.5-0.6-0.8-0.7 0.1-1.1 0.4-0.5 0-1.2 0.3-0.6-0.6-0.3-0.8-0.7-1.6-0.1-0.6 0.8-0.9 0.8-0.5-0.2-0.4-0.7 0.3-2.3-0.3-0.4-0.8-0.1-0.2-0.6-0.6-0.5-0.1-0.5-0.7-0.4-0.4-0.6-0.7-0.2-0.8 0.7-0.5-1 0.4-1.1-0.4-1.2 0.9-1.9 0.3-0.4 0.8-0.3 0.1-1.9-0.4-0.9 0.1-2-0.6-0.8-0.9-0.5 0-1-1.2-0.1 0 1.3-0.3 0.7-0.6 0.4-0.6 0.9-0.5 0-0.8 0.6-1.8-1.2 0.8-2-0.8-0.4-1-0.1-0.8-0.4-0.8-0.7-0.2-0.5-1.2-1.2 0.3-1.3 0.8-1.6 0.8-0.6 0.2-1.1 1 0.3 0.4-0.3 0.1-1 0.8 0 0.7-1.1-0.7-0.4-1.1 0.9-0.6 0-1.2-0.7-0.5-0.6-0.9-0.3 0.7-1 0-1.4-0.4-1.4-1.5 1.1-1 0-0.3-0.6-1.1 1.2 0.4 1.1-0.9 1.1 0.8 0.6-0.4 0.6-1.8 1.2-0.8-0.9-1.1-0.5-1.3 0-0.5 0.2-2.9-0.1-0.8-1.1-0.5-1 0-1.6-1.2 0.2-2.4-0.6-0.5-0.6-1.1-0.7-1.4 2.1 0.3 1.2-0.7 0.5-0.8-0.1-0.3-1.2-0.7-0.8 0.4-1.2-0.2-0.4-0.7-0.2-1.2 0.3-0.9-1.9-0.9-0.2 0 0.5-1.3 0.2-0.2-0.8-0.6 0.3-0.7-1.1 0.9-0.7 0.8 0 0.5 0.5 0.9-0.3 0.4-0.9-0.4-0.2-0.9 0.5-1.4-0.5-0.9 0.1-0.6-0.5-0.5 0.5-1 0.4-0.8-0.2-0.4-0.7-1.2 0-1.1-0.7 0.3-0.8-0.3-0.9-1.1-0.3-0.4 0.4-1.6 0.7 0 0.7-0.9 0.7-1.1 0.5-0.5-0.8 0.2-0.6-0.5-0.2-0.6 0.1-0.8-0.2-0.3 0.8 0.2 1-0.7 0.3-1.2-0.2 0.2-1-0.2-0.5-0.9-0.3-1.3 0.5-1.1 0-1.8 0.8-0.6-0.7-1-0.7-0.6 0.3-0.5-0.5-1.1 0.2-0.5-0.3-1.6 0.2-0.5 0.4-0.8 0.2-1 0.7-1.4 0.7-0.5-0.3-0.3-1-1.1 0.5-0.9 1.3-1.3-0.5-0.7-0.2-1.1-0.5-1.3-0.4-1.7-0.7-0.5-0.5-1.1-1.1-1.3-3.3-1.1-2-0.8-1.4-0.8-1-0.4-0.7-0.7-2.3-0.4-1.9-0.6-3.7-1.3-1.4-1.6-1.6-1.7-1.9-0.5-1.8-0.8-0.9-1.6-1.7 0.1-1 0-1.2 0.3-2.6-0.4-0.3 0.1-2.4 0.1-2.7-0.5-1.4-0.7-0.4-1.5 0.2-1.2 0.6-1.2 0.4-1.4 0-2.2 0.2-0.9 0.2-0.9-0.1-3-1.2-0.5-0.4-0.4-1.2-0.5-0.9-1.4-1.5-0.9-0.6-0.4-0.9-2-3-0.5-1.6-0.1-1.2-0.3-2.3 0.5-1.5 1.7-2.6 0.5-1.1 0.4-1.9-0.2-1.3 0-1.1 0.4-1.6-0.1-3.2 0.3-2-0.5-2.5-0.6-0.7-1.5-0.8-1.4-0.3-1.4 0-3.7 0.6-2.1 0-1.4-0.4-1.5-0.8-1.7-1.5-6.8-3.2-0.5-0.4-0.8-2.2 0.6-3.6 0.1-1.7 0.3-2.8 0.8-2 1-2.7 0.7-1.5 2.7-2.8 5-4.2 1.7-1.6 1.6-2.2 1-1.7 2.7-2 0.3-0.6 2.8-7.6 1.7-2.6 1.7-1.9 2.5-1.8 0.8-0.6 1.1-1.4 1-1 2.3-0.5 1.6-0.5 1.7 0.1 1.1 0.5 3.4 3.4 0.4 0.6 0 1.8 0.2 1.2 2 3.7 0.7 1 2.1 0.5 2.2 0.2 0.8-0.1 4.3-2.2 6-2.6 2.2-0.7 4.7-0.9 4.1 0 1.9-0.2 2.5 0.1 1.3-0.5 2.3-1.1 3.2-1.2 1.3-0.6 0.5-2.7 0-0.8 0.7-2.9 1.2-1.7 1-1.6 0.8-0.7 3.6-3 1.1-1.3 0.9-0.8 0.9-1.7 3.1-10.3 0.9-1.3 2-2.5 0.6-0.6 1.5-0.6 2.5-1.3 2.3-1.5 2.2-1.5 3.1-1.7 6.3-2.8 0.6-0.4 1.9-4.6 2.7-3.3 2-3.8 1.8-3.9 1.1-2 1.6-3 0.9-3 0.5-2.1 1-3.3 0.6-2.6 0.3-0.7 0.6-2.8 0.2-0.5 0.8-0.5 6.8-2.8 1.4-0.4 1.9-0.6 1.5-0.4 1.4-0.5 1.5-1.5 2.9-2.4 1.5-1.1-0.2 2.1 0 0.6-1.5 2.4-0.6 0.5-0.6 2.3 0.3 1 6.1 0.1 6.2 0.5 1.3 0 3.9 0.3 0.8-0.1 1.4 0.2 1.8 0.1z", "30": "M703.3 402.2l-0.7 0.5-0.5-0.3-0.2-0.8-0.9-0.6-0.9 0.7-0.7-0.2-0.7-0.8-0.9-0.2-1.7 0.4-0.7 0.3 0 1-0.9 0.9-1 0.5-0.4 0.9-0.7 0.3-0.8-0.3-1.3-0.4-0.7 0-0.2-0.3-0.7 0.1-0.1-0.4-0.6-0.5-0.2 0-0.7-0.1-1.6 0.4-0.6-0.5-1.2 0-0.7 0.7-0.7 0-1.8-1 0-0.9-0.6-1 0.3-0.3-0.6-0.6-1.4-0.2 0.5-1.1 0.1-1.4 0.7-1.5 0.5-0.4-0.3-0.8-0.6-0.6 0.3-1.6 1-0.7-0.8-1.4-0.4-0.4 0.1-0.9 0.5-0.4 0-1.1 0.5-1.2 0.6-1 0.7-0.5 0.2-1.4 0.8-0.7 0.4-1-0.2-0.5 0.3-1.4 0.7-0.3 0.1-1.1 0.5-0.6-0.4-0.7 0.6-1.1-0.2-0.6-0.6-0.1-1-0.8-0.8-0.2-0.5-1.2 0.5-1-0.2-0.5 0.6-0.5 1.1 0.8 0.8-0.1 0.3-0.8 1 0.1 0.3 0.6 1-0.4 0.3-0.3 0.8-0.1 1.1-0.7 0.9 0 0.9 0.4 0.4-0.2 0.9-1 1.2-0.4 0.7-1 0.6-0.2 1.1 0.5 0.7-1.1 0-0.7 0.7-0.1 1.5-0.7-0.3-0.9 0.4-0.1 0.6 1 1 1.2 0.6-0.2 2.3 0.2 1 0.9 0.6 0.7 1 0.6 0.4 1-0.1 2.3 0.7 0.2 0.8 1.2 0 2.2-0.9 0.8-0.1 1.5 0.4 1.5-0.6 1.5 0 1.2-0.8 1-0.4 0.1-0.2 1.5-0.7 1-0.6 0.4 0.3 1.1 0.4 0.3-0.1 1.3 0 1.5 0.3 0.4 0.5 1.6 1 1 0.7-0.3 0.7 0.8 0.4 1.1 1.1 0.4-0.4 0.8-0.4 1.2-0.9 0.6-1.3-0.2-1.1 0.6 0 1.1-0.6 1.5-0.9 0.3-0.2 0.9z", "31": "M380.9 1046.1l0.8 0.6-0.6 0.9 0.4 0.9 1.7 1.5 0.6 0.9-2.5-1.6-1.6-0.6-1.9-0.5-0.5-0.4 0.5-0.4 1.6-0.1 0.8-0.9 0.7-0.3z m34.2-142.8l0.5-0.1 0.1 1.1 0.5 2.5 0 1.2-0.3 1.4-0.9 3.2-0.3 0.7 0.1 1.7-0.7 1.3-0.1 1.1-0.7 3.2-0.4 2.6-0.1 1.9 0.3 0.9-1.4 4.3-0.5 1.5-1.1 3.1-0.3 1.9-0.5 0.9-0.9 1.4-1.6 1.9-0.9-0.4-0.3 0.9 0.5 0.5-1.1 1.7-0.1 0.4-1 0.4-0.1 0.6 0.3 0.3-2 3.1-1.6 2.5-1.3 3-0.3 1.4-0.4 0-0.6-0.3-0.2-0.5-0.2 0-0.2 0.2 0 0.5-0.5-0.1-0.1-0.1-0.2 0.2-0.1 0.3-0.6 0.2 0 0.4-0.2 0.3-0.3-1.4-0.6-0.3 0-0.4 0.1 0 0.3 0.2 0.6-0.3 0.3-0.2-0.8-0.3-0.2 0.3-0.2 0-0.4 0-0.5-0.7 0-0.7-0.8 0.3-0.3 0.4-0.3-0.1-0.1 0.2-0.2 0.6 1.8 0 0.2 0.8-0.6 0.2 0 0.7 0.8 0-0.1 0.5 0.7 0.8-0.5 0.6-1-0.2-0.7 0.1 0 0.4 1.2-0.3 0 0.7 0.4 0.2 0.8 0 0.9-0.4 0.4 0.6 0.6 0.1 0.5 1.1-0.2 1.4-0.6 2-0.5 3.1-0.2 1.3 0.1 1.1 0.5 1.5 0.5 1.1 0.6 1.2 0.8 3.1 0.3 0.2-0.1 1.2 0.1 1.1 0.4 1.7 0.3 3.3-0.1 5.6-0.2 0.1-0.5-0.1-0.4-0.2-0.5 0.1-0.2-0.1-0.2 0-0.3 0.4-0.5-0.2-0.5-0.1-0.6-0.2-0.4 0 0.1 0.4 0.2 0.2 0 0.1 0.1 0.1-0.1 0.3 0.2 0.2-0.2 0.2-0.4-0.3-0.4 0-0.4 0.2 0.4 0.3 0.2 0.1-0.5 0.4-0.1 0.1 0.2 0 0 0.2 0.4 0.1-0.1 0.2 0.2-0.1 0.1 0.1 0 0.1 0.5 0.1 0.2 0.2 0.2 0.3 0.2 0.1 0.5-0.2 0.1 0.2-0.2 0.2 0.2 0 0.3 0.1 0.1 0.4 0.6 0.4-0.5 0.1 0.1 0.3 0.3 0.2 0.2 0.1 0.1 0.1 0.1 0.3-0.1 0.2 0.8 0.1 0.5-0.1 0 1.9 0.2 6 0.1 1.3 0.2 4.6 0.2 1.7 0.5 2.1-0.6 0.7-1.1 0.4-1.3 0.1-1.8-0.1 0.7-0.9-0.1-0.4-1.1 0.1-0.3-0.3-1.2-0.2-0.5 0.2-0.8 0-0.7-0.9-0.5 0.9-1 0.6 1.2 0.1 1.6 0.3 0.7 0 1.4 0.6-6.8-1.1 0.7-0.4 0.4-0.6 0.9 0.2 0.1-0.4-1.4-0.3-0.5 0.4 0.3 0.4-1.4 0.2 0.4 0.3-4-0.3-0.5 0.1-0.4 0.7-1.5 0.5-1.1 0.7-0.9 1.1 0.5 0.5-1.4 1.2 0 0.9-0.4 0.2 0.1 0.8-0.2 0.9 0.4 0.9 0.5 0.3 0.3 0.8-0.7 0.6-1.7 2-1.2 1.2-0.1 0.4-0.9 0.9-0.3 0.7 0.2 0.4-0.6 0.9-0.5 0.3-0.5 1-0.6 0.9-0.7 0.3-0.7 1.1-1.3 1.6-0.3 1.1-0.5 1-0.8 0.7-0.5 2.4-0.1 1.5-0.6 0.2 0.1 0.7 1.2 2 1.8 1.9 1.1 0.9 1.5 1 1.4 0.4 1.3-0.1 0.9 0.4-1.7 0.4-0.9 0.3-1 0-1.3-0.3-1.6-0.2-0.9 0.1-1 0.2-0.6 0.6-0.9-0.3-0.7 0.1-3.5 1.3-0.8 0.2-0.6 0.3 0.1 0.4-1.8-0.2-0.6 0.4-0.2 0.5 0.3 0.4-1.3 0.2-1.3 0.7-0.8-0.2-1.4 0.1-0.7 0.2-1.1 0.1-1.6 0.5-1 0.8-1.3 1.1-1.2 0.9-2.5 1.6-0.9 0.8-0.9 1.5-0.1 0.8-0.4 0.5-0.2 2-0.1 0.7 0.1 1 1.2 0.3 0 0.4-0.8 0.2-0.4 0.4-0.3 0.8-0.7 0.8-0.2 1.1-0.4-0.1-0.2 0.7-0.3 0.1 0 0.9 1 0.3 0.3 0.5-0.6 2.5 0.3 0.6-1.1 1.2-1.1 1.4-0.4 1.4 0.4 0.4-1.5 0.4-1.4 0.7-0.9 0.6-0.1 0.3-1.8 0.9-0.4 0.5-1.1 0.5-1.4 0.4-1.1 0.9 0 0.5-1.4 1.1-0.9 0.3-3.5 0.5-1.3 0.5-0.5 0.6 0 1-0.3 0.4-0.5 0-4.3-0.9-2.1-0.6-1.5-0.2-0.3-0.7-0.7-0.5-1-0.3-1.1-1.1-1-0.6-0.8-0.9-2.4-1.8 0.4-0.1 0.6-0.7 1 0 0.2-0.8-0.7-1.1 0.6 0 0.9-1.1 0.3-0.9 0.7-0.1-0.6-1.7 0.5-0.6 0.6 0.6 0.8-0.5 0.6-1.2-0.4-1.2-0.8-0.9 0-0.5-1-1-0.7-2-0.4-0.3-0.4-1 0.7 0 1.3-1.4 0.1-0.7 1-1.2-0.2-1.3-0.6-0.5-0.6-0.3-0.4-1-0.5 0.2 0-1.1-0.6-0.5-0.1-0.6-0.8-0.7-0.1-0.4 0.7-0.9 0.9-0.3 0.5-0.7 0.1-0.8 0.5-0.6 0.7-0.4 0.7-0.9-0.1-1.6 0.6-0.6-0.3-0.6 0.3-1.3 0-1 0.7-0.6 1.1-1.5 0-0.8 0.3-0.6-0.2-0.5 0.4-0.8 0.6-0.7 0.7 0.2 0.5-0.8-0.1-0.4 0.4-0.6-0.9-0.4-0.7-0.6 0-0.5-1-0.9-0.5-0.9-0.6 0.2-0.9 0.7-1.3-0.2-1.3-1.2-0.4 0.3-0.6-0.1 0-0.5 0.3-1.1 0.5-0.5 0.4-0.9 0-1 0.6-0.2 0.1-1.2-0.1-0.8 0.9-0.3-0.5-0.9 0.1-1-0.8-0.8 0.2-1 0.6-1 0.6-0.7 0.3 0.1 0.4-0.8-0.4-0.3-0.3-1 0.3-0.5-1.5-1.8-0.4-0.2-0.2-0.8 1.4-0.8 0.8 0.3 0.3-0.6-0.1-0.9 0.2-0.9 0.6-0.9-0.4-0.6-0.6 0-0.1-1-1.2-1.8 0.3-1.2-2.1-0.3-1.6 1.3-1.4 0.5-1 0.7-0.2 1-0.7 0.2-1.3 0.7-0.7 0.1-1.1-0.4-0.6 0.2-0.6-0.3-0.3-0.8-0.7-0.4 0-0.5-1.1-0.1-0.4-0.4 0.3-1.5 0.4-0.7-0.8-1 0.2-0.2-0.5-0.7 0.3-0.9 0.1-1.8 0.4-1.3-0.2-0.3 0.2-1.6-0.5-0.2-0.4-0.9 0-0.4 2.3-0.1-0.1-1.2-0.5-0.3 0.7-1.2 0.6-1.5 0.2-0.7-0.3-1-1 0-0.8-0.6 0.3-0.3-1-1.3-1.1-0.3-0.4-0.4-1.4 0.1-1.1-0.7-0.5-0.1-1.1-0.6 0.3-1.4 0.6-0.7 0-0.7 0.4-0.6 0.7-0.5 1.6 0.3-0.2-0.8-0.5 0-0.1-0.6 0.4-0.7-0.4-0.3 0.2-0.6-1.5-0.8-0.3-0.9 0.7-0.7 0.5-0.2 0.1-0.8-1-0.8-2.5 1.6-0.7-0.4-0.8 0-2 0.2-0.5-0.4-1.4 0.1-0.4 0.7-0.3-0.7 0.1-1.1 2.3-1.1 0.9-2-0.1-1.1-1 0.2 0-0.5-2.1-0.7-1.3-1.2 0-0.7-0.6 0.2-1-0.7-1-0.3-0.4 0.4-1.5-1-0.7 0.1-0.6 0.4 0.2-1.2-0.4-0.8 0.3-0.2-0.6-1.4 1.6-1 0.7 0.4 0.2 0.6 1-0.9 0.3 0.4 1.2-0.5 0.3-1 1.4-0.1 0.5-0.3-0.4-0.9 0.9 0.1 0.8-0.8 1-0.7 1.3 1 0.4 2 1.9 0.4 0.6-0.1 4.3-0.1 2.2 0.3 0.7 0.5 0.5-0.6-0.7-1 0-0.7 0.8-1.7 0.9-0.9 0.2-1.5 0.5-0.6 1.5 0.1 0.5 0.6 0.5-0.9 1-0.4 0.7 0.2 0.6 0.6 0.7 0.2-0.4 0.5 0.9 1.2 0.7 0 0.6-1.3 0.8-0.4 0.9 0 0.9-0.3 1.2-0.1 0.5-0.6 1.3 0.4 0.2-0.3 1.4 1.4 0.7-0.2 0.3-0.5 0.9 0.1 1.1 0.5 0.6-0.4 0.9-2.3-0.1-1.8 0.7 0 0.5-1.4 1.2 0.3 0.8-0.3 0.9 0.2 2.1-0.5 1 0-0.1-0.5 0.9-2 1.1-1.5 0.9-0.5 0.7-1.4-0.9-0.7-0.1-0.7-0.4-0.7-2.4-0.7-0.9 0.1-0.9-0.3-1.6 0.2-0.6-0.2-1 0.4-0.9-0.3-0.6-0.4 0.3-0.8-0.4-0.4 0.2-0.9 0.8-0.3 0.9 0.1 0.2-0.4 0.6-0.1 0.5-0.5 0.4-0.9 1.2-1.1 0.4-1.8 0.3-2.5-0.2-0.3-0.7 0.7-0.8-0.1 0.9-0.8 0.1-0.4-0.9-0.1-0.3-1.8 0.4-0.9 0.1-0.8 0.5-0.5-0.3-0.8 0-0.5 2.2-0.6 0.6 0.1-0.1 0.7 0.9 0 0.3-0.8 0.5 0.4 0.3-0.7 0.8-0.1 0.4-1-0.1-0.5 0.6-0.2 0.3-0.4-0.5-0.5 0.6-0.7 0.4-1.4-0.6-0.3 1.3-0.7 0.2-0.4 1.9 0.1 0.2-0.3 0.9-0.3 0.5 0.8-0.5 0.3-0.2 0.7 0.8 0.4 0.3-0.6 0.6-0.3 0.8 0.9 0 0.6 0.7 0-0.3-0.7 1-0.9 1.4 0.4 0.8 0.9 0.9 0.6 0.2 0.6 1.3 0.3 0.3-0.2 1.9 0.5 0.2 1.1-0.3 0.6-0.8 0.3 0.2 0.7 0.9 0 0-0.5 1.3-0.1 0.8 1.4 0.7 0.1 2 1.3 3.1-0.2 0-1.6 0.5 0.1 0.7-0.3 0-2.2 0.7 1 0.3 0.8 1-0.6-0.2-1.1 0.4-0.8 0.7-0.5 0.3-1.4 0.3-0.2-0.2-0.9 0.5-0.7 0-0.6 0.7-1.4 0.7-0.2-0.9-1.9 0-0.3 0.7-0.7 0.4-0.5 1.4 0.4 0.3-1.8 1.3 0.4 1.3-0.3 0.8-0.7 1 0.2 1.7 0 0 1.7 1.1-1.7 1.1 0.2 1.2-0.5 0.7 0.7 1.8 0.7 0.5 0.8 0.5 0.1 0.7-0.4 0.5 0 1.2 0.5 0.6-0.2 0.2-0.8-0.2-0.6 0.8-1.2 0.7-0.3 0.4-1.3 1.5-0.1 0.1 0.6 0.9 0.2 1.7-0.4-0.1-1.3 0.5 0.2 0.3-0.7 0.5-0.3 1.2 0 0.1-0.8 0.8-0.3-0.3-0.5-0.9 0.7-0.1-0.9 0.4-1 0.1-0.8-0.6 0.1-1-0.6 1.4-0.7 1.3-0.1 1.5 0.4 1.3 0.1 0.2 1.1 0.8 1.1 0.7 0 0.5-0.7 0.7 0.3 0.4-0.5 1.2-0.3 0.5 0.9-0.4 0.7 0.8 0.5 0.2 0.7 0.5-0.4 0.6 0 0.4 0.7 1.3-1.2-1-0.5-1.1-0.8 0.9-0.5 0.2-0.8 0.9 0.7 0.7-0.8 1.7 0.1 1.8-1.1 0.8-0.1 0.9-1.3-0.6-0.4-0.1-0.7 1.1-0.5-0.1-1.1 1.2-0.3 0.3-1 1.1 0.1 0-0.5-0.6-0.1-1-0.9 0.6-0.2 0.3 0.3 1 0.1 0.8-0.6 0.2 0.4 0.1-0.1 0.3 0.2 0.3 0.5 0.1 0.2 0.7 0.1 0.5 0.2 0 0.1 0.4 0.3 0.2 0.2 0.2 0 0.2 0 1 0.1 0.8-0.2 1 0.6 0.5 0.6 0.3 1.2 0.3 0.2-0.1 0.7 1.4 0.6-0.1-2z", "32": "M822.1 502.6l0 1.6 0.9 0.9-0.1 0.7 0.6 1.1-0.3 1-1.7 4.2 2.8-0.1 0 0.2 0 0.2 0 0.1 0 0.2 0.1 0.1 0 0.2 0.1 0.1 0.3 0.3 0.2 0.1 0.5 0.8-0.1 0.2 0.1 0.4 0 0.4 0.1 0.5 0.1 0.3-0.2 0-0.1 0.1 0 0.2 0 0.4 0.1 0.4-0.1 0.1 0.1 0.2 0 0.2-0.1 0.9-0.4 0.4 0.2 0.3-0.1 0.2-0.1 0.1 0 0.5 0.1 0.2-0.1 0.1 0.2 0.4-0.1-0.1-0.1 0.1 0.4 1-0.3 0.6-0.2 0.2 0 0.3 0 0.1 0 0.9 0.3 0.3 0.3 0.2 0 0.6-0.2 0-0.1 0.5-0.1 0.1 0 0.2-0.1 0.1 0 0.1 0.1 0 0.1 0.3-0.1 0.1 0 0.1-0.4 0-0.2-0.1-0.2-0.1-0.1 0-0.2 0.1-0.4 0.9 0.1 0.3 0.1 0.2 0.1 0.2 0.1 0.3-0.2 0.1-0.4-0.1-0.2 0.4 0.1 1.6 0 0.9 0.1 0.4-0.7 0.2-0.3 0.5 0.2 0.7-0.6 1.2-0.5-0.2 0.1-1.2-1.2-0.9 0-0.8-1.1 0.3-1.5 2.1-0.5 0-0.1 0.9-0.6 0.3-1.2-0.6-0.3 0.1-0.8-1.1-0.7-1.6-0.7 0.1-0.2 1.1-0.5 0.6 0.5 2.4 0 0.8 0.3 0.7 0 0.9-0.1 1.4 0.5 0.8-1.2 1.3 0 0.8-1.3-0.1-1.1 1-0.7 0.4-0.2 0.9-1.2 1.5-0.7 1.1-0.6 1.7 0.2 0.8 0.5 0.5-0.1 0.5 0.4 0.7 0.5 2.1-0.1 0.3 0.8 1.5-0.4 0.6-1.6 0.4 0.3 1-0.5 0-0.5 0.8-1 0.7-1-0.2-0.4 0.5-1 0.1-0.8 0.7-0.3 0.6-0.7-0.2-1.4-0.7 0-0.5-0.6-0.4 0.3-1.3-0.6 0 0.1-1-0.8-1.6 0.1-0.6-0.7-1.1 0.2-1.3-0.5-0.6-1-1.5-0.1-0.5-1.2-0.1-0.9 1.3-0.3 1.6 0.1 1 0.7 1.7-0.1 0.5 0.5 1.3-0.7 0.3-0.8-0.5-0.9-1.4-0.5-1.8-0.3-0.3 0.1-2.1-0.2-1.4-0.7-1.4 0.5-0.4-0.2-0.5-0.6-0.2 0.4-1.3-0.6-0.4-0.3-0.8 0-0.9-0.8-1.4-0.2-1.5-0.9-0.4 0-0.5-0.8-0.4 0.2-0.8-0.4-0.1-0.1-1-0.9-0.7-0.2-1.3 0.5-1 1 0.2 0.1-1.2-0.3-0.4-1.4 0.1-0.1-1.2 0.5-1.1 1.4 0 0.4 0.5 0.3-1.1-0.1-0.9 0.3-0.7 0.6-1.1-0.6-1.5-0.2-0.7 0.6-0.3-0.2-0.6 1.1-0.1-0.4-0.8 0.6-1.2 0.6 0.3 0.2-1 1.9 0.5 0.6 0.3-0.2-1.1 0.6-0.8 0.2-0.9-0.7-1.1 0-1 1.2-0.1 1.8 0.5 0.9 0 0.2 0.3 0.8 0.1 0.9 0.4 1.7-0.1 0.5-0.6 0.8-0.3 0.3-0.5-0.2-0.9 0.3-1.1 0.5-0.7-0.4-1 0.7 0.2 0.5 1.5 0.9 0.7 1 0.4 0.8-0.1-0.7-3.9 2.5 1.4 0.9-0.4 0 0.9 1 0.8 0.3 1 0.3 0.4 0.7-0.2 0.1-1.1 1-3.6-0.7-2.5 1.2-0.8 0.5 0.3 0.1 0.6 0.7 0.4 0.1-0.6-0.6-1.6 0.7-0.4 0.3 0.4 2.2 0.2 0.8 0 0.8-0.3 0.6-1 0.1-0.5 1.1-0.3-0.5-1.1-0.1-0.7 0.2-1.2-0.2-0.5 0.6-0.3 1.2 1 0.8 0.1z", "33": "M396.3 334.9l0.4-0.1 0.6 0.6 0.1 0.3 0.4 0 0.1 0.2 0 0.2-0.3 0.2-0.2 0.4 0.2 0.3 0 0.2-0.1 0.4-0.1 0.2-0.2-0.2-0.2 0.6 0.7 0 0.1-0.2 0.2-0.1 0.1 0 0-0.3 0.3-1 1.1 0.3 0.7 0.3 0 0.3-0.8 0.1-0.2-0.1 0 0.7 0.7 0.3 0.4 0 0.5-0.2 0.2 0.1-0.4 0.5 0.1 0.2 0.3 0.3 0.4 0.4 0.2 0.4 0.2 0.8 1 0.6 1.2 0 0.9-0.8 0.9-1.8-0.5-0.6 1.1-1.4 0.5 0.2 0.1 0.2 1.5-0.1 1.8 1.8 1.6 1 1.1-0.1 0.5 0.6-0.3 0.5 0.8 0.8 0.5-0.1 0.8 0.5 0.3 1.3 1.2 0.8 0.4 0.6 1.4-0.4 0.8 0.2 0.8 0.6 0.4 1.1 1.2 0.9 0.5-0.3-0.6-3.5 1.2-1 1 0.1 0.7 0.4-0.3 0.7 0.9 0.3 0.2 0.5 1.3 0.2 0.6-0.3 0.4 0.9-0.1 0.6 0.4 0.7 0.9 0.7 0.8-0.2 1 0.3 0.1 0.6 0.7 0.3-0.2 0.5 1 0.3 1.4 1 0.7-0.5 1.1 0.4-0.2 0.5 0.1 0.8 1.3 0.4 1.2 0.8 0.7-0.8 0.5 0.7 0.7 0.4 0.4 0.6 1.2 1 4.4 1 0.8 1.4 0 1.3 1.6 2.1 1.4 1.5-0.1 2.5 0.5-0.3 1.3-0.1 0.1-1.3 1.3 0.1 1.2 0.5 0.1 0.8 1.2 0.9-0.2 1.3 2.3 1.3 3.3 2.2 2 0.3 3.5 3.2 1 0.2 1.4 1.1 0.9 0.6 0.9-0.2-0.1-0.6 1.5-2.1 0.8 0 2.7 0.2 0.7 1.1 1.1 1.2 1-0.1 1.9 0.9 0.8 0.9 0.7 0.4 1.7 1.4 2.2 1.2 1.2 1.5 1.6 0.9 0.8 0.1 1.5-0.5 0.9 0.2 2.1-0.8 0.5 0.1 1.6-0.5 1.4 0 0.4 1.1-0.1 1 0.8 0.8-0.2 0.9 0.8 1.1-0.6 1.6 0.4 1-0.5 0.7 2.3 0.3 1.1-0.2 1.2 0.1 2-0.1 0.9 1.3 2.7 0.7 4.5-0.3 0.8 0.1 0.7 1.1 2.1 1.6-0.2 0.7 1 1.2 1.3 0.1 0.7-0.3 1.2-1.4-0.1-0.5 0.7-0.6-0.8-1.4 0.7-0.6-0.5-0.9 7.7 0.4 7.4 3.8 0.9 0.8-0.3 0.6-0.7 0.3 0.9 0.6 1.1-0.6 0.7-0.1 0.5 0.5-0.2 0.9-0.7 0.6 0.2 1 0.2 0.1 1.3 0.4 0.5 0.4 0.1 0.3 0.4 0.6 0.3 0.9 0 0.1-0.6 0.5-0.6 0.9 0.1 0.4-0.1 0.2-0.3 0.2 0 0.7 0 0.5 0.2 0.1 1.1-0.2 0.9-0.5 0.3 0.2 0.2 0.3-0.1 0.3-0.9 0.6 1.1 0.9 0.4 0 0 1 0.3 0.6 0.2 0.5-0.4 0.2 0.2 0.2-0.1 0.5 0.2 0.2-0.3 0.2-0.1 0.3-0.1 0-0.2 0.2 0.1 0.1 0.6 0.4 0.1 0.6-0.2 0.2 0.1 0.2 0.1 0.1 0 0.1 0.3 0.3 0.6 0.5 0.4-0.2 0.2 0.2 0.2-0.4 1.1 0.1 0.3 0.1 0 0.4-0.3 0.7 0.7 0.6 0.6 0.2 0.2-0.5 0-0.2 1.2-0.7 0.4 0 0.5 0.2 0.3 0.2 0.2 0.8-0.3 0.7 0.2 0 0.1 0.5-0.1 0.6-0.3 0.6-0.5 0.7 0.6 1 0.4-0.1 0.4-0.3 0.4-0.3 0.7-0.1 0.3 0.6 0.4 0.8 0.2 1.1 0.4 0.2 0.5 0 0.5 0.1 1.3 0.3 0 1.1 0.4 0.6-3.1 0.5-0.9-0.1-0.9 0.7-2.4-1-1.2 0-0.5-0.5-1.6 0-0.8-0.1 0.1 1.1-1.2 1.9-0.1 0.7-1.6 0.7-0.9-0.3-0.3 0.8-1.2-0.5-0.9 0.3 0.1 0.4-0.1 2.2 1.5 0.4 1.2 0.1 0.3-0.4 0.9 0.2 0 0.4 0.7 0.9 0.6 0.2 0.2 0.4 1.9 0.2 1.9 0.5-0.2 1.3 0.5 0.8-0.3 0.5-0.1 1.2-0.4 0.5-1.5-0.1-0.1 0.8-0.6 0.1-0.7 0.5-1.3-0.2-1.1 1.6 0 0.4 0.9 0.6-0.4 0.7 0.9 0.5 0.2 1.2 1.4 0.1 0.9 0.8 0.7 1.1 1 0.8 0.2 1 0.7 0.4 0.3-0.4 1.3 0.6 1.8 1.4 0.7 0 1.3-0.5 1.2 0.8 0.8 0.3 0.7 1.5 1.9 0.1 0.7 0.6 0.8-0.2-0.1 1.7 0.7-0.3 1.4 0.8 1.1 1.1-0.7 1.2 0.9 0.7-0.5 0.4-0.5-0.3-1.4 0.1 0.1 1.3-0.2 0.7-0.7-0.4-0.6 0.6-0.9-0.5-0.8 0.2-0.6-1.1-0.8 0.1 0 0.7-0.8-0.2-0.2-1.1-1.4-0.6-1 0.3-0.2 2.4-1 0.4-2.5-0.1-0.6-0.3-0.2-1.2-0.9-0.6-0.6-0.2-1.4 0.1-0.9 0.4-0.4 0.6 0.3 1.7-0.1 0.5-2.1 0.9-2.4 1.8-0.8 0.2-0.9 1.4-0.7 0.2-0.1 0.6-0.7 1.1-0.6 0.4 0.2 1-1.2 0.2-0.2 0.9-0.5 0.4-1.2-0.2-1.3 0.3-0.8 1-1 0.2-1.3 1.3-0.3-0.1-1.3 0.5-0.9 0.2-1.3 1-0.9 0.2-0.7 1.1-0.6-0.3-1.2 0.4-0.7 1.6-0.9 0.4-0.4-0.1-0.2 1.5 0.3 0.4 0 1.5-0.4-0.1-0.6 2.4-0.2 0.4 0.1 0.8 0.8 0.2 0 1.8 0.5 0.3 0 1.6-0.2 0.4 0.5 1.5 0.8 1.1 0.2 0.8-0.3 1 0.8 0.4 0.8 0.7 0.6 0.9 1-0.2 0 1.2 0.3 0 0.8 1-0.5 0.4 0 0.6 0.6 0.4 0.6 1-0.6 0.5 0.3 0.6-0.3 1.4-0.8 0.2 0.2 0.6-2.5 0.5-1.1 0.5 0 0.8-0.4 0.9 0.6 0.7 0 0.9 1 0.3 0.5 1.2-0.3 0.9-1.1 0.4-0.9 0.9 0.7 0.8 0.2 1-0.9 1.3 0.1 1.1-0.7 1.7-0.3 1.1-0.9 1-1 0.9-0.6 1.1 0 0.9-2.1 1.2-0.1 1.1-0.8 1.5-1.5 0.4-0.6 0.8-1.4 0.4-0.8 0.1-0.9-0.3-1.8 0.2-1 0.2-0.5-0.1-0.5-0.6-1.5-0.7-0.6-0.6-0.5-0.8-1-0.6-0.4 0-0.3-0.5 0.1-0.9-1.9-0.4-0.2-0.7 0.5-0.5 0-1.1-1-0.3-0.6 0-0.2-0.6-1.3-1-0.2-0.4 0.4-0.9 0.6 0.6 1.1 0.2 0.1-0.7 0.5-0.4-0.4-2.1 0.8-0.5 0-1.2 0.5-0.9-0.1-1 0.1-1.1-0.1-0.9-1.4 0.1-0.4-0.6 0.2-1.1 0.4-0.4-0.1-1.9 0.5-0.9-0.7-0.5 0-1.6 1 0.6 1.9-0.5-0.2-1.7-0.9 0.1-0.1-1.7-1.3-0.2-0.9 0.2-0.4-0.3 0.2-1-1.1-0.9-0.9 0.5-1.7 0.5-0.5 0.4-1.5 0.4-0.4-1-1.1 0.1-0.3-0.3-1 0.2 0-0.4-0.5-0.6-0.4 0-0.7 0.8 0.4 1-0.3 0.8 0.2 1.5-1.7-0.2-0.5-0.6-0.5-0.2-0.7 0.4-0.4-0.6-0.2-1.4-0.8-0.6-1.4 0.3 0-0.6 0.5-0.5-0.1-1.9-0.4-0.4-1.1 0 0.4-1.3-1.2-0.1-0.4 0.3-1-0.4-0.7 0.4-0.4-0.6-0.6-0.5-0.6 0-2-1.1-1.4 0.4-0.1 0.4-1.2-1.1 0.1-0.5-0.9-0.4-0.1-0.8 0.4-0.6-0.3-0.8 0-1.5-1-0.8-0.9-0.1-0.6-0.5-1.3 0.3-2.6-1.6-0.3 0.6-0.8-0.2-0.2-0.8-1-0.4-0.9 0.7-0.9-0.8 1.2-1-0.5-0.7-0.8 0 0-0.5 0.9-0.7-0.5-0.4-0.8-0.1 0.2-0.6-0.7-0.5-1.1 0.4-0.7-0.1-0.1 0.6 0.6 0.2-0.3 0.6-0.9 0.1-0.5 0.4 0 0.7 0.5 0.4 0.1 1-0.4 0.3-1.6-0.8 0-0.7-0.3-0.7-1.3 0.3-0.8-0.7-0.6-0.9-0.7-0.2-2.1 0.3 0.3 0.4-0.6 0.5 0 0.9-0.4 0.4 0.4 0.7 0.1 0.7-0.5 1.1-0.9 1.3-0.6 0.4 0.3 0.7-0.4 0.2 0.2 1.2-1.5-0.7-0.2 1-0.5 0.6-0.5 0.8-1.3-1.1-0.4-1.1-1.7-0.1-0.9 0.6-1.6 0-0.6-1.2-1.3 0.6-0.3 0.3-1.1 0.4-1.2 0-0.7-0.3-0.1-1.1 0.7 0 1.1-1.1-0.8-1 0.4-0.8 1.1-0.8-0.3-0.6 0.3-0.5-0.2-0.8 0.7-0.7 0.6-0.9-1.2-0.9-1.1-0.1 0.2 0.9-0.4 1-0.4 0.4-0.7-0.6-0.6 0.4-1-0.2-1.2 0.5 0.1 0.9 0.9 0.2 1 0.5 0 0.9-1.4 0-0.2-0.4-1.9 0.7 0.2-1.1-0.9 0.2-0.4-0.6-1.1-0.2 0.5-0.9-1-1.2-0.2 1.7 0.6 1.3-0.9-0.5-1.2 0.8-0.9-0.6-0.3-0.7-0.7 0.4 0.5 1.1-1.1 0.6-0.4-0.9-0.6-0.5-0.6 0.4-1 0-0.5 0.6-0.4 1.2-1.4 0.8-0.5 0-0.8-0.7-0.8-0.3 0.5-1.3 0.8-0.4 0.6-1.2 0.9-0.9 0-0.4 1.3-0.8 1-0.1 0.3-0.3-0.8-1.8-0.1-0.8-0.7 0.2-0.7-0.5-0.5-1.1-1-0.1-0.3-0.6 0.2-0.5 0.1-0.9-0.3-0.9 0.3-0.5-0.1-0.8-1.2-1.2-0.6-0.2-0.4 0.9-0.5-0.2-0.6 0.3-0.8-0.1-0.1 0.8-0.9 0.3 0 0.4-0.8 0.4-0.3 0.6-1.5-0.6-0.5 0.5-1.7 0-0.3 0.7 0.1 0.8-0.7 0.5 0.1 0.7-1.6 0.2-1 0.6-0.9 0.1-0.7-0.2-1 0.6 0.6 0.7-0.3 0.6 0.3 1 0 0.7-0.7 1.5 0.5 0.7-1 0-2-1-1-0.7-1.1 0.4-1-0.1-0.4 0.3-1.1-0.2-0.5-0.4-0.7-0.1-0.8-0.5-0.2-0.6-0.6 0.2-0.8 1.2-0.5 0.5 0.1 0.9-0.5 0.1-0.4 0.6-1-0.5 0.3-1.3-1.1 0.9-0.1-0.7-0.5-0.3-0.4 0.7-0.6-0.2-0.3-1.1 0.1-0.8 0.7-0.7 0.2-0.7 0.7 0.2 0.4-0.7-0.3-0.8 0.6-0.5-1.7-0.3 0-0.6-1-0.5-0.2 0.9-0.5 0.1-0.1-0.9-0.5-1 0.4-0.6-1.8-0.3-1.1 1.1-0.2 1.2 0.5 0.5 0.6-0.6 0.9 0.8 0.9-0.5 0 1.6-1 0.4-0.6-0.7-0.5 1.1 0.2 0.8 0.6 0.5 0.4 0.9-0.4 0.8-0.7-0.1-0.2 0.5-0.7-0.4 0.2-0.4-0.4-0.8-0.8 0.2 0.4 0.5 0 1-1.4-0.4-0.4-0.9-0.6 0.2 0.4 1.1-1.6 0.2-0.3-0.6-0.5-0.6 0.3-0.7-0.9-0.5-0.2-0.6-0.7 0.7-0.2 0.8-0.7 0.6-0.6-0.3 0.5-1.1-0.4-0.5 1.1-1.5-1-0.3-0.4-0.5-0.1-1-0.9 0-0.5 1.2 0.8 0.4 0.2 0.6-0.6 0.6-0.5-0.6-0.5-0.2-1 0.4-0.8 1.1-0.8 0.7-0.4-1 0.5-1-0.5-0.6 0.2-0.7 0.8 0 0.5-0.9 1 0.4 0.2-0.6 0.9-0.5-0.6-0.7 0.1-1.4-0.9 0.6-1.5-0.6-1 1.2 0.5 0.9-0.3 0.3-0.6 1.9-0.4 0-1-1.4 0.3-0.9-0.7 0.1 0-0.9 0.7 0.2 0.7-0.8 0.1-0.8 1.3-1.3 0.9-0.1 0.5-0.4 0.9-0.1-0.4 1-1.2-0.1 0.1 0.5 1.4 0.5 0.3-0.6 0.9-0.1-0.2-0.9 0.1-0.9-0.4-0.7-0.6-0.1-0.4 0.5-0.9-0.7 0.9-0.9 0.2-0.9-0.7-0.9 0.9-0.5 0-0.8-0.6-0.3-1.3-0.1-0.6 0.7 0.2 0.7-1.4 0.3-0.2 0.5 0.6 0.5 0.4 0.9-0.1 0.6-2.2-1.2-1.1 0.3-1.1-0.6 0 1 0.8 0.6 0.6 0.7 0.8-0.5 0.2 0.6-1.7 0.4 0.4 0.5 0.2 1.7-1 0.3-1-0.3 0.2-0.7-1.8-0.4 0.4-0.6 1-0.9-0.3-0.7-1.1 0.1-0.9 0.4 0.1 0.9-1.1-0.3-0.8 1.5-0.1 0.9-0.7 0.2-0.9-0.7 0.1 1.3-0.2 1-0.7 0.1-0.6-0.7-0.7 0.7-1.3 0.2 0 0.6 0.8 0.4 1.2-0.8 0.6 0.4 0.5-0.2 0.5 0.6 0.6 0 0.5 0.5-0.2 1.1 0.3 1 0.8 1.7 0.1 2.2 0.8 0.3 0.7 1.1 0.1 1-0.2 0.4-0.2 1.5-0.2 0.9 0.9 0.6 0.5 1.6 1 0.3 2.3 1.2 0.6 1.8-0.6 0.7 0 1.1 0.3 2.4-0.5 1-0.6 0.6 0.3 0.9 0.1 1.3 0.9 0.3 0.8-0.5 1-0.1 0.5-0.7 0.6-0.5 0.6 0.1 0.4 1 0.4 0.3 0.3 0.9 1.1 1-0.2 0.4 0.2 1.3 0.7 0.4-0.8 0.5-0.6 0-0.4-0.6-0.4 0.5 0.4 0.9 0.6 0.1 0.5 0.7 1.3-0.2 0.2 0.7-0.3 0.4-0.4 1.7 0 0.6-1.2 1.4-0.9 0.7 0.1 1-1.1 0.7 0.1 1-0.8 0.6-0.6-0.1-0.4 0.5-0.6-0.2-0.2 0.9-0.7-0.1-0.3-1-0.7-1.3-0.3 0.3-0.7-0.5-0.2 0.5-0.7 0.2-1-0.4-0.5-1.1-1.3-0.8 0.2-0.5-0.6-0.3-0.9-1.5-0.9-0.1-0.9-0.6-0.4-0.6-0.5-0.1-0.8 1-0.3 1.1-0.9 0.5-0.2 1-0.8 0.4-0.2 0.4-0.7 0.1-0.8-0.8-0.7-0.5-0.5-1.1 1.2-1.5-0.9-1-0.6-0.2-1.8-1.4-0.2-0.5 0.1-0.8-0.8-0.3 0-0.8-0.7-0.4 0.2-0.7 1-0.4 0.5-2.4-0.4-1.3 0.4-0.7-0.6-1.4-0.8-1.1-0.3-0.9 0.2-0.7-0.5-1.3-0.8-1.2-0.7-0.2-0.1-0.8 0.2-0.6 1-0.4 0.5-0.7 1.5-1 0.2-0.4 0.9-0.6 0.6-0.8 0.7-0.4 0.4-1-0.3-0.7-0.2-1.4 0.3-0.4 1.2-0.4 0.7-0.9 1.2 0.1 0-0.8 0.6-0.4 0.1-0.6-0.9 0-0.5-0.6-0.6-0.2 0.3-1-0.7-0.2-0.6-0.9 0.2-0.6-0.6-0.6 0-0.6-1.3-0.5 0.8-1-0.2-0.7-1-0.4 1.3-1.4 0.1-1 0.4-0.9 0.5 0.3 0.8-0.3 0.3-0.7 0.9-0.3-0.4-1.1 0-0.9 0.6-1.1 0.8 0.4 1.1-1.1 1.5 0.3 0.7 0.3 1.2 0 0.8-0.9 0.5 0.6 1 0.3 0.9-1.1 1.2-0.5 0.7 0.1 2.2-0.5 0.3-0.3 0.2-0.8 0-1.1-0.7-1.3-1-0.4-0.5-0.7 0-0.4 1-0.5 0.8-1.4 0.7 0-0.1-1.2 0.8 0.4 0.1 0.6 0.7 0.1 0.1-1.2-0.8-0.4 0.5-1 0.9-0.2 0.1-0.9-0.3-0.6 0.6-0.4 0.7-0.9 0.9-1.6 0.3-1.3-0.2-0.4 1.3-1.4 0.7-0.3-1.1-1-0.2-0.7-0.7-0.4 0.5-0.7 1.4 0 0.1-0.7-1-0.7 1-0.2 0.5-0.6 0-0.7 0.8 0.1 0.7-0.7-0.5-0.3 0.3-1.1 0.7-0.1 0.7-1.1 1 0-0.3-1.5-1.4-0.3 0.4-0.6-0.3-1 1.3-0.5 0.3-1-1.2-0.5-0.8 0.4-0.7-0.6 0.5-0.9 0-0.7-1.1-0.8 0.1-0.4-1.2-0.6 0-0.9-0.5-0.7 0.8-0.7-0.1-0.6-0.6-0.8 0.5-1-0.6-0.4-1.2 0.8-0.4-0.3 0.4-1-1.5-0.6-1.3 0.3-0.9-0.8-1-1.5-1.7 0-0.7-1-0.7 0.4-0.1-0.7-1.3 0.3-0.7 0.9-1.3-0.3-0.6 0.8-1.3-0.1-1.7-1-1.9-0.4-0.5-0.3-0.6-1.1-1.4 0.1-0.8-1.6-0.7-0.1-2 0.3-0.5 0.6-0.1 0.9-0.3 0.2-1.2-0.6-0.4 0-0.2-1.6 0.8-0.2 0.7-0.7 0.4-1.2-0.9 0-1.5-0.5-1.7-0.4-0.9 0.1 0 1-0.4 0.7-0.5 0.3-0.9-0.5-0.6 0 0 1.2-0.3 0.3-0.7-1.3-0.8-0.1-0.5 0.6-0.4-0.6-0.8 0.5-0.4-0.5-0.7-0.1-0.6 1-0.7-0.6-2.2-0.9-0.6 0.2-0.8-0.6-0.6 0.4-0.8 0.2-0.5 0.7 0.2 0.9-1.5 0.3-0.5 0.6-1.1 0.4-0.5 0.5-1.3 0.1-0.2 0.3-1.5 0-0.3-0.8-0.5-0.1-0.6 2.3 0.4 0.8-0.4 0.5-1.1 0.2 0.5-0.8-0.4-0.5-0.8-0.2 0.4-1.2-0.8-0.9 0.2-1 1-0.3 0.1-0.5 1-0.6 3.3-1 2.1-1.4 1.7-0.5 0.8-0.4 0.7 0.1 0.3-1-0.3-0.8-0.5 0.3 0 1-0.6 0-1.1-1.8-0.5 1-2-0.3-1.3-0.7 0.2-1.2-0.7-0.1-0.6 0.6-0.3-0.8 0.9-1.1 1.8-0.5-0.2-0.4 0.5-0.6 0.3-0.8 0.5 0.2 0.8-0.2 0.7-1-1.1-0.5 0.1-0.9-0.7-1-0.6-0.3 0.1-0.6-0.6-0.5 0.7-0.5 0.1-1-0.8 0.1-0.6 0.4-1.1-0.6-1.5-1.5-1.1-0.1-1.2-0.6-0.5-1 0.4-1.4-1.2-0.8 0-0.8-0.6-0.6-1.2-0.2-0.3-0.6 0-1.2 0.6-0.9-0.8-0.1-0.5-0.6 1.1-1.6-0.3-2.1-1.1-0.2-0.2-0.6 0.5-0.3-0.3-0.8 0.1-1.2-1-0.7 1.3-0.9 0.9-1.1 1.1-0.2 1.4 0.2-0.4-0.9 0.7-0.5 0.7 0.6 0.9-0.6 0.2-0.7-0.2-0.8 1.7 0.1 0.6-0.7 0-0.6-0.9-0.3 0.9-0.8-0.8-0.7-0.2-0.4-1-1.1 0.2-0.4-0.5-1 0.1-0.7 0.9-0.7 0-1.6 1.1-0.3 0.2-0.8-0.5-0.6-0.2-0.9 0.7-0.4 0.1-0.5-0.9 0-1.6-0.6 0.2-0.5 0.7 0.1 0.1-1.1-1-1.3 1-0.6-0.3-0.9-0.6-0.5 0.2-0.8-1.3-0.7-0.4-0.9-0.9-0.1 0-0.5-0.8-0.2-0.5-0.9-0.8-0.4 0-0.3-0.2-0.3-0.6-0.7-0.4-0.3-0.3-1.1 0-0.2 0.6-0.6 0.6-0.2 0.3-0.7-0.9-0.9 0.2-1 0.4-0.8-0.2-0.8-0.2-0.2-0.7 0.2-0.1 0.1-0.3-0.4-0.5-0.7-0.1-0.1-0.4 0-0.1-0.5-0.2-0.2-0.6-0.5-0.3-0.3 0.1-0.3-0.3 0-0.2 0-0.4-0.3-0.1-0.3 0.7-0.4 0.1-0.9-0.4-1.1-0.4-0.1-0.2 0-0.2-0.9 1.2-0.4-0.7-0.8 0.3-0.6-0.5-0.4 0-0.6 0.8-1.8-0.8-0.6-1-1-0.2-1.2-1.1-0.9 0.5-1.3-0.4-0.7 0.5-1.1-0.5-1.8 0.6-0.4-0.5-1.4 0.8-1.7-0.2-1.1-0.9-0.2-0.1-1.1 0.7-0.2-0.5-1.5 0.5-0.8-0.7-0.6 0.2-1.1-0.3-0.7-0.6-0.4-0.4-0.8 0.8-0.8-0.2-0.9-0.6-1 0.8-1.8 0.7-0.4-0.3-0.9 0.2-0.6 0.5-0.2 0-0.6-1-1.3 0.2-1 1.2-0.7 0.1-0.9 0.4-0.5 0-0.7 0.5-1.1-0.1-1.1 0.3-0.8 0.5-0.3 1.6-2.3 0.8-1.8-0.1-0.6 0.9-0.4 1.2-0.2 1.4-1.1 0.7-0.1 0.7-0.6-0.1-1.4 0.4-0.9 0.8 0 0.9-0.8 0.8-1.8 0.8-1 0.4-1.1 1.4-1-0.1-1 0.8-1.3-0.6-0.6-0.4-0.7 2.5-0.3 0.9 1 0.4 0 0.8 1.4 0.4 0.5 1.4 0.5 2.1 1.4 1.8 0.8 0.2-0.2 1.6 0.7 0.4 0.7-0.8 0.9-0.3 1.2-0.8 0.9-0.6 1.2-1.2 1.5-1.2-0.2-0.9 2.1 0.5 0.6-0.7 0.6-0.4 0.9 0 1.4-0.8 0.9 0.5 0.9-0.4 0.4-0.6 1.4 0.9 0.5 0.4 1.7 0.8 1-0.1 1.6 0.2 0.4-0.3 0.7 1.3 0.7-0.2 0.7 1 0.5 0.5-0.1 1.3-1.2 0.9 0.1 0.6-0.5 0.8-0.1 0.2 1.1 0.6 0.6 0.4 1.1 0 1.1-0.8 0.5-0.1 0.5 1.2 0.2-0.2 1.2 1.8 0.1 0.4-0.8 0-0.8 0.5-0.4 0.7 0.1 0.4-1 0.6-0.3 0.9-1 0.2-0.7 0.9-0.1 0.9-1.2 1-0.3 0.3 0.5 2.5-2.1 1-1.5 1.8 0.8 0.9 0.1 0.4 0.4 2.2 0.8 0.7 2 0.1 1.6 0.6 1 1.6 1.7 1.5 1.1 0.7 0.2 1.8 1.6 1.1 0 1.4 0.9 3.4 1 1.2 0.1-0.2 1.3-0.3 0.6-1 0.9-1.5 0.6-1 1.1-0.9-0.3-1.1 0.8 0.1 0.6 1 1.1 1.4 1.1 0.5 0.2 0.6-0.3 1.1 0.4 1.2 1.9 0.2 1.5 1.4 0.5 0.7-0.6 1.2 1.9 0.6 0-0.2-1.3 1.1-0.2 1 0.1 0.9 0.8 0.6-0.1 0.8 0.6 0.1 0.8-0.3 0.7 0.3 0.8 0.7 0.4-0.4 0.9 0.5 0.5 1.2-0.6 1.2 0.9 1.4 1.6 2.4 0.5 0.4-0.7 0.6 1.4 0.8 0.1-0.2 1.8 0.5 1.2 0.8-0.2 0.9 0.1 0.5-0.3 1.1 0.1 0.9-1 0.7 0.4-0.1 1.3 0.9-0.2 0.5-0.6 0.9-0.1 1.2 0.8 0.4 0 0.7-0.7 0.8-0.5 1.8-0.4z", "34": "M406.9 337.2l-0.5-0.2-1.1 1.4 0.5 0.6-0.9 1.8-0.9 0.8-1.2 0-1-0.6-0.2-0.8-0.2-0.4-0.4-0.4-0.3-0.3-0.1-0.2 0.4-0.5-0.2-0.1-0.5 0.2-0.4 0-0.7-0.3 0-0.7 0.2 0.1 0.8-0.1 0-0.3-0.7-0.3-1.1-0.3-0.3 1 0 0.3-0.1 0-0.2 0.1-0.1 0.2-0.7 0 0.2-0.6 0.2 0.2 0.1-0.2 0.1-0.4 0-0.2-0.2-0.3 0.2-0.4 0.3-0.2 0-0.2-0.1-0.2-0.4 0-0.1-0.3-0.6-0.6-0.4 0.1-1.8 0.4-0.8 0.5-0.7 0.7-0.4 0-1.2-0.8-0.9 0.1-0.5 0.6-0.9 0.2 0.1-1.3-0.7-0.4-0.9 1-1.1-0.1-0.5 0.3-0.9-0.1-0.8 0.2-0.5-1.2 0.2-1.8-0.8-0.1-0.6-1.4-0.4 0.7-2.4-0.5-1.4-1.6-1.2-0.9-1.2 0.6-0.5-0.5 0.4-0.9-0.7-0.4-0.3-0.8 0.3-0.7-0.1-0.8-0.8-0.6-0.6 0.1-0.9-0.8-1-0.1-1.1 0.2 0.2 1.3-0.6 0-1.2-1.9-0.7 0.6-1.4-0.5-0.2-1.5-1.2-1.9-1.1-0.4-0.6 0.3-0.5-0.2-1.4-1.1-1-1.1-0.1-0.6 1.1-0.8 0.9 0.3 1-1.1 1.5-0.6 1-0.9 0.3-0.6 0.2-1.3-1.2-0.1-3.4-1-1.4-0.9-1.1 0-1.8-1.6-0.7-0.2-1.5-1.1-1.6-1.7-0.6-1-0.1-1.6-0.7-2-2.2-0.8-0.4-0.4-0.9-0.1-1.8-0.8-1 1.5-2.5 2.1-0.3-0.5-1 0.3-0.9 1.2-0.9 0.1-0.2 0.7-0.9 1-0.6 0.3-0.4 1-0.7-0.1-0.5 0.4 0 0.8-0.4 0.8-1.8-0.1 0.2-1.2-1.2-0.2 0.1-0.5 0.8-0.5 0-1.1-0.4-1.1-0.6-0.6-0.2-1.1-0.8 0.1-0.6 0.5-0.9-0.1-1.3 1.2-0.5 0.1-1-0.5 0.2-0.7-1.3-0.7 0.3-0.7-0.2-0.4 0.1-1.6-0.8-1-0.4-1.7-0.9-0.5 0.6-1.4 0.4-0.4-0.5-0.9 0.8-0.9 0-1.4 0.4-0.9 0.7-0.6-0.5-0.6 0.9-2.1 1.2 0.2 1.2-1.5 0.6-1.2 0.8-0.9 0.3-1.2 0.8-0.9-0.4-0.7-1.6-0.7-0.2 0.2-1.8-0.8-2.1-1.4-1.4-0.5-0.4-0.5-0.8-1.4-0.4 0-0.9-1-2.5 0.3 0-0.5 1.4-0.8 0.9 0 0.3-0.6 0.8 0.1 1.7-1.1 0.3 0 1.6-1.1 1.1-0.3 0.4-1-0.2-0.9-0.9 0.1-0.9-0.5-0.7-1.5 0.8 0.1 0-0.6 0.6-0.8-0.3-1-1.1-0.8 0.3-1-1.2-1.4-0.4 0-0.2-0.9 0.5-0.4 0.5-1.2 0.9-1.1-0.4-0.6 0.4-1.2 0.7 0.7 0.6-0.3 0.1-1 0.5-0.6-0.2-0.5-1.7 0.1-0.4-1.1 0.1-0.5 0.6-0.6 1.5 0.3 0.4-0.9 0.5-0.5-0.6-1.9 0.6-0.9 0.7-0.2 0.3-1.2 0.9-0.6 0-0.5 0.8-0.8 0.4 0.1 1.4-0.9 0.5 0.5 0.8-0.1 0.5 0.4 0.7-1.1 0.9-0.3 1.3 0 0.9-0.8 0.5-0.1 0.5-0.6 0.8 0 0.4 0.3 0.8-0.6 0.9 0.1 1.2-1.4 0.8 0.2 0.2-0.9 0.6 0.1 1.4-0.2 0.4 0.1 0.8 1 0.9 0.1 0.9 0.7 0.8 0.9 0.1 0.7 2.3-0.1 1-1.1 1.1-0.1 1.2 0.6 0.5 0.9 0.9-0.2 0.7 0.3 1.8 0.1 1.6-0.5 0.2 1.1 0.6 1.2 1.5 1.4 0.6 0.4 0.8-0.5 1.3 0.4 0.8-0.4 1.1-0.1-0.7-1.1-0.2-1.5-0.9-0.4-0.3-1.2-0.9-0.4-0.1-1 0.3-0.3 0.5-2.9 1.7-0.7 0.4-0.5 0.5-1.3 0.9-1.1 0.1-1.2 0.7-0.6 0.7 0.6 1.8 0.8 1.2 1.6 0.4 1 1.5 1.4 0 0.7 0.9 1-0.4 1.1 0 0.6 0.9 0.3 0.9 2-0.2 0.6 0.6 1.3 0.9 0.7 1.9 0.5 0.3 1.4 0.5 0.2 0.3 1.6 2.8-0.1 0.3 0.7 1.1 1.3-0.2 0.6 1.8 1.2 1.4-0.8 0.8-0.2 0.2-0.6 1.5 0.1 0.9-0.3 0.7-0.6 0.5 0.5 1.7 0.6 0.7-0.3 0.9 0.2 0.8 2.2 0.6 0.1 0.6 1.2 0.9 0 1.8 1 1.1 0.9 0.6 0 0.9 1 0.1 0.8 1 0.8 1.2-0.7 0.1-0.6 0.7 0 0.8 1 0.2 0.9 0.6 0.3 0.5-0.4 0.5 1-0.6 1.7-1.2 0.7-0.1 0.4 1 1-0.4 0.7 0.4 0.5 0 1.3 1 0.7 1.3-0.4 1 0.3 0.3 0.5 1.8 1.1 1.1-0.2 0.8 1.1 1.1 0.4 1 0.2 0.6 0.7 0.9 0.4 0.9-0.2 0.4-0.9 0.9 0.3 1.9 1.4 0.4 0 1.3 1.1 1.1 0.6 1 1.1 0.4 1.1 1.3 1.1 1.2 0.5 1.3 0.3 1.1 0.5 2.7 0.7 0.5 0.3 0.3 1-1-0.4-0.4 0.3-1.6 0.1-0.6 0.5-1.7 2.2 0.6 1.4-1.2 0.7 0 0.5-0.8 0.1-0.5 0.4-0.9 1.3-0.6 0.3-0.1 0.9-0.7 1.1-0.6-0.1-1.5 1.7-1 0.1-0.4-0.3-1.1 0.2-1 1.4-0.1 1.1-0.5 0.9-0.1 0.7-1.1 1.1-0.5 0.1-0.5 1.1-1-0.3-1.9 0.4-0.7 1.7-0.8 0.4 0.7 2.5 0.2 0.4 0.9 0.6 0.2 0.8-0.6 0.7 0.1 0.7-1 1.3-1 0.2-0.3 0.6 0.6 0.3-0.6 0.9-1.5 0.9-0.3 0.6 0.5 0.7-1.9 0.3-0.2 1.4 1.2 0.7-0.2 1.1 0.9 1.6 0.7 0.3 0 0.6-0.4 0.6-0.4 3.5-0.6-0.4-1.2 0.1 0.6 0.7 0 0.8 0.5 0.8-0.6 0.3-0.8 0.7-0.8-0.1-0.8-0.6-1.4 1.4-0.5 1.6-0.1 2.1-0.3 1-0.7 0.2-1.3 2.3 0.2 3.1 0.2 0.3z", "35": "M694.6 610.4l1.1 0.6 0 1.5-0.8 0-0.9-0.5 0.2-1.2 0.4-0.4z m11.5-0.3l1.4 0.6 0.6 0.4 0.2 1-1.5 0.1-0.6-0.4-0.3-0.6 0.2-1.1z m-3.6-1.1l0.2 1 0.8 0.4-0.4 0.4-0.2 0.6-0.9-0.2-0.2-0.5 0.1-1.2 0.6-0.5z m-6.5-0.1l0.6 0.3 0.9 0.8 0.1 0.8-0.3 0.5-0.9 0.4-0.5-0.9-0.9-0.5 0.5-0.9 0.5-0.5z m8-0.5l0 1.2 0.9 1.1-0.4 0.4-1.3 0 0-0.4 0.3-0.2 0-0.2-0.2-0.1-0.5-0.2-0.3-0.9 0.2-0.4 1.3-0.3z m6.6 0.4l0.8-0.1 0.2 0.7-0.3 0.5-1-0.2-0.6-1.1 0.5-1 0.4 1.2z m-13.3-1.8l0.3 1.2 0.5 0.7-0.3 0.8-1.2-0.6 0-0.5 0.5-0.7 0.2-0.9z m0.5-0.1l0.5 0.5-0.6 0.9-0.3-1 0.4-0.4z m13.4-0.4l0.2 0.1 0.1 1.2-0.2 0.2 0 0.4 0.3 0.2 0.9-0.2 0.1 0.8 0.4 0.3-0.3 0.7-0.9 0.1-0.3-1.5-0.1-0.1-0.8 0-0.1-0.6-0.4-1.4 0.7 0.1 0.4-0.3z m-6-0.1l0 1.6-0.4 0.3-0.6-0.3-0.7 0-0.3-0.3-0.6-0.4 1 0 0.1-0.3 1.5-0.6z m-17 0.1l0.6 0 0.8 1-0.2 0.6 0.3 0.4-0.6 1.1-1 0.4-0.1-0.7 0.4-1.3-0.2-1.5z m4.9-0.2l0.6 1.3-0.7 2-1-1.1-0.1-1.4 0.6-0.6 0.6-0.2z m8.3-0.1l0.2 1 1.3 1.2-0.5 0.6-1.3-1.7 0.3-1.1z m-16.8-0.3l0.4 0.8-0.6 0.2 0 0.6 0.6 0.3 0.3 0 0.2 1.1-0.9 1.1-0.3-0.8-0.5-2.1 0.2-0.7 0.6-0.5z m29.2 0l0.4 1.2 0.7 0.8 0 1.1-0.8 0.6-0.7 0-0.8-0.8 0.1-1.7-0.3-0.7 0.6-0.5 0.8 0z m-2.8-0.2l0.5 0.2 0.9 0.8 0.2 0.5-0.2 0.9-0.4 0.3-0.6 0 0.2-0.7-0.2-1.2-0.4-0.8z m-14.8-0.3l0.9 0.1 0.5 0.8 0 0.4-0.7 0.3 0.1 1-0.9 0.9-0.5-0.6 0.1-0.8-0.4-1.2 0.9-0.9z m11.6-0.4l1 0.7 0.2 0.5 0.8 0.9-0.7 2.1-1.2-1.1-0.5-1.2 0-1 0.4-0.9z m-16.1 0.5l0.5 1.1-0.5 0.4-0.1 1.2 0.8 1.1-0.7 0.3-0.4 0.9-0.5-0.6 0-1.2-0.2-1.3 0.6-0.7 0.5-1.2z m-6.5-1.1l1.7 0.3-0.4 0.8 0.4 0.2 1.4 2-0.7 1.3-0.1 1.5 0.6 0.6-0.5 0.6-0.8 0.2-0.7-0.2-0.3-0.4 0.2-0.6-1-1.1 0.6-0.5 0-1.3-0.3-0.2-0.6 0-0.3-0.3 0.1-0.3 0.7-0.4-0.4-0.6 0.1-1.2 0.3-0.4z m24.1 0l0.7 0.2 0.6 0.3 0.1 0.4 0.3 0.1-0.2 0.6 0 0.7-0.7-0.1-1-0.7 0.3-0.5-0.1-1z m-19.2-0.1l-0.2 0.7 0 0.4 0.2 0.5 1.1 0.3-0.4 0.5-1 0.5-0.7-0.9 0.4-0.6-0.2-1 0.3-0.4 0.5 0z m21.8 0l0.7 0.3 1.1 1-1.2 0.5-0.2-0.7-0.5-0.5 0.1-0.6z m-5.9 0l1 0.1-0.7 1.7 0 1 0.7 1.7-0.7 0.8-0.9-0.3-0.2-0.4 0.5-1.1-0.1-1.2-0.6-0.5-0.6 0.2-0.1-0.8 0.3-0.6 0.8-0.1 0.6-0.5z m-15.2 0l-0.2 1-0.7 0.1 0-0.4 0.4-0.6 0.5-0.1z m6.7-0.5l0 0.6 0.2 0.4 0.9 0.4 0 0.5-0.8 0.3-0.4-0.3 0.2-0.6-0.6-1 0.5-0.3z m-9.6 2l-0.2 0.6-0.6-0.7 0.2-1 0.5-0.5 0.2 1.3-0.1 0.3z m23.8-2.3l0 1.3 0.5 0.6-0.3 0.7-0.3-0.3-0.6-0.2 0.4-0.4-0.2-0.3-0.5 0.3-0.1-0.3-0.2-0.2 0.2-0.7 0.3-0.1 0.5-0.5 0.3 0.1z m-13.3-0.1l0.5 0.6 0.2 1.2-0.3 0-1.2-0.6 0.1-0.8 0.1-0.2 0.6-0.2z m-5.1 0l0.5-0.1-0.2 2-0.5 1-0.4 0-0.3 0.2-0.3-1.3 0-0.9 0.8-1.2 0.4 0.3z m8.8-0.7l0.3 1 0.1 0.1 0.1 0 0.1 0.1 0.4 0.2 0.4 0.4-0.2 1 0.8 0.3-0.6 0.7 0.1 0.4-0.1 0.4-0.4 0-0.5-0.2 0 0.3 0.8 0.5-0.3 0.3-1.2-1.1-0.6-2 0.6-1.6 0.2-0.8z m-5.9-0.1l0.9 0.6-0.3 1.3 0.4 0.9-1.1-0.1-0.6 0.7-0.7-1.2 0-0.8 0.9-1.1 0.5-0.3z m-4.2 0l0.2 0.1 0 0.2 0.2 0.2 0.3-0.1-0.1 0.4-0.6 0.7 0 1.9-0.7-0.9 0-0.4-0.6-0.9 0.4-0.4 0.2-0.2 0.4-0.3 0.1-0.2 0.2-0.1z m19.7 0l0.6 0-0.2 1-0.7-0.2 0.3-0.8z m-8.5 0.6l-0.1 0.8-0.4-0.1 0-0.1-0.2 0 0-0.5 0-0.1 0.3-0.1 0.3-0.5 0.1 0.6z m2.7-0.3l-0.2 0.8 0.3 0.5-0.7 0.6-0.7 0.1-0.2-0.7 1.2-2 0.3 0.7z m-1.4 2.1l-0.4 0.6-0.7-0.1 0.3-0.9-0.5-0.4 0.5-0.6 0.7-1.5 0.3 0.6-0.3 1.3 0.1 1z m4.4-2.9l0.1 0.1 0.5 0 0.1 0.2-0.3 0.5 0 0.1-0.4 0.3 0.2 0.2-0.6 1.3-0.3-0.1 0.2-0.8-0.6-1 0-0.3 0.4-0.1 0.2-0.2 0.5-0.2z m-14.7-0.4l0.5 0.9-0.5 0.5-0.9-0.1-0.1-0.7 1-0.6z m15.6-0.4l0.1 0.3 0.3 0.5 0.7 0.1-0.2 0.7-0.5-0.2-0.5 0.7 0.3 0.9-1-0.4 0.2-0.4-0.2-0.2 0.3-0.3 0.2-0.5 0.2-0.1-0.1-0.2-0.3 0-0.1-0.5 0.3 0 0-0.3 0.3-0.1z m-12-0.1l0.8 0.7-0.3 0.6 0.2 0.6-0.9-0.2-0.3-0.5 0.2-0.8 0.3-0.4z m-8.9-0.4l0.7 0.2 0 1.3 0.3 0.9 0.7 0.3-0.1 0.7-0.7 0-0.5 0.3-0.1 0.3 0.2 1.1-0.5 0.4-0.8-0.3 0.1-0.4-0.2-1.1-0.8-1.2-0.6-0.1-0.1-0.5 0.2-0.2 1.4-0.6 0.3-0.5-0.1-0.4 0.1-0.1 0.5-0.1z m17.9-0.2l0 0.3 0.2 0.1 0.6 0.1-0.1 0.2 0.2 0.7-0.1 0.7 0.6 1-0.2 0.7 0.1 0.4 0.2 0.2 0.8 0.1-0.3 0.6-1.2-0.8-0.1-0.7-0.5-0.4-0.9-0.1 0.2-1.2 0-1.3 0.5-0.6z m-24.5-0.3l0.7 1.6 0.4 0.5-0.2 0.6 0.2 1.2 0 0.8-0.5 2 0 1.4-0.7 0.9-1.5 0-1.7-0.7-0.1-0.9 0.2-1.7 0.6-0.6 0.4-1.6 1.7-3.2 0.5-0.3z m22.3-0.2l0.1 0.2-0.2 0.2 0.1 0.2 0.3-0.3 0.1 0.2 0.9 0.1-0.3 1.4-0.9 0.5-0.3-0.5-0.6-0.2 0.3-1.3 0.3-0.3 0.2-0.2z m6.4-0.5l1.2 0.6 0.6 0.5-0.1 1.3-0.3 0.4-0.9 0.2-0.3 0.9-0.4 0.4-0.4-0.3-0.6 0 0.3-0.6 0.5 0 0.3-0.1 0.2-0.6-0.3-0.3-0.5 0-0.2-0.5 1-1-0.1-0.9z m-12.2-0.2l0.2 0.2 0 0.2 0.3 0.4-0.1 0.2 0.5 0 0.2 0.1-0.1 1.3-0.4 1.8-0.5-0.3-0.4-0.9 0.3-0.3-0.5-0.8-0.4-0.3 0.3-0.8 0.6-0.8z m6.7-0.1l0.8 0.5-0.3 0.8-0.8-0.1 0.3-1.2z m-8.7 0.1l0.5 0.5-0.5 2-0.6 0.1-0.5-0.8 0.4-0.8 0.3-0.4-0.1-0.8 0.5 0.2z m-3.9-0.2l0.4 0.4 0.8 0.3 0.3 1.3-1.3 1-0.4 0.7-0.3 0.1-0.1 0-0.1-0.4-0.1 0-0.2 0-0.5 0.5-0.4-1.3 0.3-1.5 0.6-0.5 0-0.6 0.6 0.1 0.4-0.1z m9.2-0.1l0.3 0.3 0.7 0.1 0.4 0.6 0.6 0.5-0.4 1.2 0.1 0.3 0.3 0-0.4 1.4-0.5-0.5 0.1-0.5-0.1-0.1-0.3 0.4-0.1 0.2-0.4 0.2-0.2-0.4-0.4-0.2-0.4-1.1 0.1-0.7 0.6-1.7z m-7.3-0.2l0.2 0.1-0.6 0.7-0.5-0.3 0.4-0.5 0.5 0z m4.7-0.4l0.9 0.3-0.5 1.2-0.4 0.3-0.4-0.4 0-0.3-0.2-0.3 0.6-0.8z m-17.3-0.1l0.3 0.4-0.5 0.6-0.4-0.6 0.6-0.4z m24 0.3l0.7 0.2 1-0.1 0.9-0.5 2 1.1-0.3 1.3-0.5 0.8-0.1 0-0.2-0.5 0 0.2-0.2 0.1 0 0.3-0.4 0.1-0.3 0.3-0.3 0.2-0.5 0.4-0.3-0.3 0-0.4-0.1-0.6 0-0.2-0.1-0.1-0.5 0-0.4-1.5-0.4-0.8z m-3.9-0.5l0.3 0.4 0.8-0.2 0.7 0 0.6 0.3 0.2-0.1 0.5 0.6-0.6 1-0.1 0.3-0.2 0.1 0.2-0.3 0-0.2-0.2 0-0.4 0.4-0.1-0.4-0.5 0-0.3-0.6-0.3-0.2-0.4 0-0.4-0.6 0.2-0.5z m0.8-1.8l0.1 0.8 1.7 1.2-0.4 0.2-0.9-0.4-1 0.2-0.3-0.6 0.1-1.4 0.7 0z m-3-1.5l0.5 0 1.5 0.7-0.8 1.2-0.1 0.5-0.4 0.5-0.7-0.5-0.9 0.1-0.1-0.6 0.2-1 0.8-0.9z m-17.7-0.2l-0.6 1.4-1 1.4-0.2 0.6-1.1 0.8-0.3-0.1 0.3-1.7 0.5-1.1 0.8-0.8 1.6-0.5z m23 0.2l1.2 0.1 0.6-0.2 0.3 0.4 0.8 0 0.3 1.6 0 1.4-0.3 0.3-1.4 0.1-1.1-0.7-1.7-0.2-0.8-0.5-0.1-0.9 0.4-0.5 0-0.7 0.5 0 0.9-0.5 0.4 0.3z m-1.7-1.1l0.4 0 0.1 1.1-0.6 0-0.3-1.1 0.4 0z m4.7 0.2l0 1-0.8 0.1-0.8-1 1.6-0.1z m3.9-0.2l0.8 0 1 1.4 0.3 1-0.5 1.9-1.1 0.3-1.1-0.9 0.7-0.9-1.5-0.7 0.1-0.6-0.3-0.2 0.6-1.3 0.5-0.3 0.5 0.3z m-7-0.4l0.7 0.4 0 0.9-0.6 0-0.3-0.3-0.3 0.1-0.5-0.2 0.4-0.7 0.6-0.2z m2-0.7l0 0.6 0.4 0.7-0.7 0-0.4 0.1-1-0.7 0.3-0.3 0.3-0.1 0.6-0.3 0.5 0z m1.2-0.1l-0.5 0.8-0.6-0.1-0.1-0.9 1.2 0.2z m-3.5-0.1l0.1 0.7-0.8 0.7-1.2-0.4 0.4-0.8 0.7-0.8 0.6-0.3 0.2 0.9z m0.5-1.4l1 0.2 0.1 0.6 0.6 0.8-0.5 0-0.5 0.3-0.3-0.6-0.8 0.1-0.2-1 0.6-0.4z m1.7-1.6l0.7 0.1 0.7 1.3 0.5 0.7-0.2 0.7-1.5 0.1-0.6-0.5-0.3-0.7 0.7-1.7z m2.8-0.8l1.2 1.5 0 1.1-0.5 1.3-0.4 0.3-0.7 0.1-0.5 0.6 0.1 1.1 0.2 1 0.5 0-0.4-1 0.2-1.3 0.6 0 0.7 0.8-0.4 0.8 0.3 0.5-0.1 0.6 0.7 0.6 0.1 1.1 0.9 0.7-0.2 0.7-0.8-0.1-1.6-0.9-0.5-0.4-0.6-1.9 0.1-0.6-0.5-2 0.2-0.5 0.8-0.8-0.1-0.5-0.6-0.8-0.4-1.4 0.7 0.4 1-1z m1.8-0.4l0.4 0.1 0 1.2 0.3 0.6 0.9 0.6-0.6 1.4 0.3 1.4-0.7 0.2-0.6-0.4-1.3 0 0.6-0.7 0.5-1.9-0.1-0.6-0.5-0.8-0.2-0.9 1-0.2z m-10.5-0.3l1.3 0.5 1.1 0.1 0.2 0.4 0.7 0.4-0.8 0.9-1.1 0.5-0.4 0.7-1.2 0.8 0 1.2 1.4 0.7 0.4 0.7-0.7 0.5-0.6 0-1.3-0.6-0.1-1.1-0.3-1-0.6-1 0.6-2.1 0.9-0.7 0.5-0.9z m5.2 0.7l0.2-0.2 0-0.3 0.2-0.1 0.2 0.3 0.2 0.9-0.6 0-0.1 1.1-1.7 0.6-0.1 0.4-0.8 0.3-0.1 0.6-0.7 0.4-0.4 0.9-1.1-0.3-0.1-0.5 1.1-1 0.5-1.1 0.7-0.3 1.2-1.3 0.9 0.5 0.5-0.9z m2.9-1.3l0.8 0.1 0.2 1-0.5 0-0.5 0.6-0.7-0.6 0.2-0.4 0.1-0.9 0.4 0.2z m-4-2.2l0.4 0.7 0 0.9-0.8 0.4 0.1 0.8 0.7 0.4-0.4 0.6-0.9 0.1-0.7-0.6-0.7-0.2 0.2-1.1 0.7-0.8 0.4-0.2 0.2-0.1 0.1-0.1 0.1-0.5 0.6-0.3z m1.2-2.9l0.7 0.1 0.8 0.6 0.6 1.2 0.9 0.5-0.2 1.2 0.7 0.8 0.1 0.6-1-0.1-0.2-0.1-0.1 0.3-0.5 1.7-0.6 0.4-0.4-0.2-0.2-0.9-0.2-0.3-0.2-0.1-0.2 0.2-0.4-0.2-1 0-0.1-0.5 0.7-0.7 0.1-0.9-0.8-1.2 0.2-0.6-0.1-0.7 0.4-1 0.4 0 0.6-0.1z m4.6-0.8l0.2 0.7-0.2 1.4 0.6 0.1 0.7 0.9-0.7 0.1-0.2 0.5 1.3 1.1 0.2 1.2 0.9 0.7 0.1 0.5-0.3 0.8 0.5 0.8-0.4 0.6-0.4-0.7-0.9-0.6 0.1-0.9-0.3-0.7-1.1 0.1-0.6-0.4-0.3-1-0.4-0.5 0.2-0.7-0.1-0.8 0.1-2.4 0.3-0.2 0.2-0.8 0.5 0.2z m-4.2-0.6l0.8 1 0.5 0.3-0.2 0.7-1.1-0.9 0-1.1z m-2.7-3.7l0.3 0 0.3 0.5 0.4 0.2-0.3 0.7-0.7-1.4z m4-1.8l0.2 1 0 1-0.4 0.3 0.1 0.5-0.1 0.3 0.2 0.2 0.1 0.6 0.2 0.3-0.1 0.9 0.6 0.4-1.3 0.9-0.1-1-0.7-0.4-0.2-0.8 0.2-0.4 0-2 0.2-1.1 0.6-0.7 0.5 0z m0.7-0.6l1.3 0.5 0.3 0.6 0.4 2 0.6 0.5-0.2 1 0.3 0.4-1 0.6-0.2 1.5-0.5 0.7-0.2 1.6-0.3 0-0.9-0.9-0.4-1.7 0.7-0.4 0.3 0.2 0-0.7-0.6-0.4 0.4-0.5-0.5-0.6-0.1-0.3-0.2-0.4 0.1-0.4-0.1-0.3 0.3-0.3 0.3-0.8-0.3-0.5-0.3-1.2 0.8-0.2z m-5.7-172.6l1.1 0.5 0.5 0 0.9 0.7 1.5 0.4 0.3 2.7-0.3 1 0.1 2.1 0.6-0.2 0.1-0.6 0.6-0.7 1.2 0.7 0.3 0.9-0.4 0.6 0.7 0.5 0.7 0.2 1.5-0.7 0.6 0.7 0.1 0.7 1.3 0.2 0.1 0.8 0.5 0.6-0.1 0.9 1 1 1.5-0.4 0.5 0.5 1.6-0.5 0.6 0.2 1.2-0.7 1.1-0.7 0.3 0.5 1-0.9 0.9 0 0.2 0.8 2 0.3 0.3 1.1 1.3 0.1 0.5-0.6 0.6 0 1.3 0.6 1.5 0.5 0.6 0.5 0.4-0.3 0.5 0.5-0.4 0.9-1 0.8 1.5 0.3 0.4-0.8 1.2 0.1 0.8 0.6 0.9 0 0.8 0.8 1-0.6 1.7 0.5 0.5 0.7-0.1 1.1 0.2 0.5-0.6 0.4 0.2 0.7 0.5 0 0 1.1-0.4 0.6-0.1 1.5-0.3 0.3 0 1.3 0.6 0.9-0.1 0.6-0.4 0.6-0.4 0.9 0.4 1-1 0.6-1.5 0.5-0.1 0.9-0.6 0.5-0.4-0.2 0.3 1.2-0.1 0.1-0.4-0.1-0.8-0.2 0-0.4-0.2 0.2 0.2 0.5 0.4 0.9 0 0.2-0.5 0-0.3-0.2-0.3 0.2 0.3 0.1 0.2 0.1 0 0.3 0.4 0.3-0.3 0.3-0.2 0.1-0.2 0.4-0.3 0 0 0.1 0.6 0 0.3-0.1 0 0.5-0.4 0 0.1 0.5-0.2 0.1-0.5 0 0.2 0.5 0.2 0.1 0.3-0.1 0.6 0 0 0.1-0.5 0.3-0.2 0.4-0.8-0.1 0.2-0.7-1.2-1.6-0.8-0.4 0.2 1.2 0 0.7-0.6 0-0.9 1.5 0.2 0.5 0.9 0.4 0.7 1.8-1.6 0.9-0.7 0.5-0.1 2-0.8 0.5-0.5-0.2 0.1-0.9-0.8-0.5-0.5 0.3-1.4 0.1-1.2-0.7 0.1-1-0.7 0.1-0.6 0.7-1.1 0.5-0.5-0.2-0.7-0.9-1.4-0.8-0.9-0.2-0.3-1.5-0.8-0.8-1.1 0.1-0.8-0.3-0.5-0.5-0.6-1.5 0.1-0.7 0.1-1.4-0.7-0.7-0.6-1.3 1.1-0.4-1.3-1.3-0.1-2-1-0.5-0.9 0-0.6-0.7-0.9-0.1-0.4-0.4 0-0.7-0.9-0.5-0.3 0.4-0.1 0.9-0.9 0.9-0.3 1.1 0.4 0.5 0.9 0.1 1.8 1-0.5 0.5 0.4 0.7 1-0.2-0.2 0.6 0.8 0.2 0.5-0.3 0.1 1.3-0.4 0.6-1.9-0.2-1.3 0.2-1-1.7-1.8-0.1-0.4 0.5-0.1 0.8 0.6 0.8-1.1 0-1.1-0.9-0.1-0.8 0.2-0.7-0.6-0.5-1.5 0.5 0-1.3-0.4-0.8-0.7 0.3-1.1 0.1 0.1-0.5-0.5-1 0.1-1-0.6 0.1-0.7-0.8-0.9-0.4-0.1-1.2-0.9-0.1 0.1 0.9-1.4-0.3 0.2-0.6-0.4-0.4-0.8 0.1-0.1-1-1.1-0.4-0.2-0.9-0.8-0.2-0.4 0.4-0.6-0.6-0.3-1.2-0.2-1.8-0.6 0.1-0.8 1.3-0.1 1.1-0.4 0.5-0.4 1.5-0.6 0.7 0 0.6 1 0.9 0.4-1.3 1.3 0.6 2.4 0.5-0.1 0.3 0.6 0.7-0.1 0.6 1 1.7-0.5 0.5-1.1 0.1-0.6-0.2-0.5 0.2-0.2 0.8-0.8 0-0.4 0.7-1.3 0.7-0.5 0.7 0 1.1 0.3 0.3-0.3 0.9-1.1 0.7-1.1 0.2-0.4 0.4-0.8-0.1-0.6 0.7-1.8 1-0.2 1.4-0.5 0.6 0.9 1.1-0.5 0.7 0.5 0.8-1 0.2-0.9 1.2-0.7 2-0.6 0.2-0.2 0.6 0.7 1.3 0.2 1.2-0.3 0.9 1.8 1.8 1-0.9 0.5 0.4 0.6-0.3 0.5 0.1 0.7-0.6 0.5 0.1 0.1 1 0.6 0.3 1.7 1.5 1.3 0.8-0.1 0.7 1 0.4 0.1 0.5 1.7 0.4 0 1.3-0.3 0.5 0.8 1.2 0.9 0-0.1 0.8 0.9 0.9 0.7 0.2 0.3 0.5 0.9 0.4 0.7 0.1 0.4-0.4 0.5 0.7 0.7 0 0.1 0.6 0.6 0.4 1.2 0 0.4-1 1-0.2 0.9 0.4 1.1-1.2 0.4 0.2 0.1 1.1 0.6 0.1 0.4 1.2-0.5 0.5 0.3 0.6-0.4 1 0.7 0.2-0.1 1.2 1 0.5 0.5 0.9 0.6-0.4 0.5 1 1.3 0 1.1 0.5 0.6-0.1 0 0.6-0.8 0.1-0.9 0.7-0.2 0.7 0.3 0.8-0.9 0.1 0.1 0.7-0.5 1.2-0.8-0.6-0.8 0.1-0.9-1.1-1.5 1.4-0.9-0.3-0.2-0.3-0.9 0.1-1.3-0.9-0.8 0-0.5 0.4-1-0.3-0.9 0.1-1.3 1-0.6 0-0.2-0.7-2.6-0.6-0.4 0.6-0.7 0.1 0.6 1.6-0.1 0.6-0.6 0.4 0.4 1.7-0.6 1.3 0.6 0.2-0.5 1.2-0.5 0.1-0.9 1.4 0.1 0.9-0.7 0.2-0.7-0.4-0.6 0.4-0.6 0.9 0.6 1.3-0.5 0.4-0.4-0.4-1.7-0.5-0.1-0.9-1.1-1.5-1.7 0.2-0.8 0.7-0.6 0.1 0 0.5 0.6 0.7-0.1 0.6 0.4 0.8-1.9 1.9-0.2 1.2-0.5-0.1-0.8 1.2 0.2 0.4-0.4 0.9-1.7 1.7 0.1 0.3 1.1 1 0.8 1.2 1.3 2.2 1.4 1.5 0.9 0.6 1 1.2 2 0.5 2.2 2.2 0.7 0.4 1.5 0.1 1.6-0.3 2.3 1.4 0.8 0.1 0.9 1.7 0.4-1.2 0.7 0.5 1.3 0 0.1 0.3 1.5-0.3 1 0.1 0.7 0.5 0.5 1.1-0.2 2.7-0.4 0-0.7 1.1 0.4 1.8-0.5 0 0 0.8 1 0.1-0.1 1.1 0.5 0.4 0 1.5 0.7 0.2 0.4 0.8-1 0.1-0.2 1 0.2 0.9-0.3 0.8-0.9 0-0.1 0.5-1.2 0.6-0.1 0.4-1.1 0.4-0.3-0.4-1.6 0.5 0.9 1.6-0.8 1-0.7 0.3 0.7 0.6-0.2 1.1-0.3 0.8 0.3 1.7-0.4 0.9 1.1 0.7-0.2 1 1.9-0.3 0.6 2.2 0.8 0.4 0.4 0.8 0.7 0.3 0.9 1 1.2-0.6 0.6 0 0.1 0.6-0.4 0.6 0.1 0.9-0.9 0-0.4 2 0.4 0.7-0.9 0.7 0 0.8 0.3 0.4-1.7 0.9 0.9 0.9-0.1 0.6 0.9 0.6 0.8-0.1 0.5 0.8 1 0.1-0.2-1.3 0.8 0.2 0.7 0.8 2.1-0.2 0.6 0.6 0.7 0.4 1-0.8 0.3 0.2-0.2 1-0.8 0-0.8 0.8-0.2 1.1-0.8 0.7-0.3 0.6-1 0.3-0.1 1 0.4 1.5-0.2 0.4-0.1 1.8-0.3 0.6 1.2 0.2 0 0.8 0.6 0.3-0.3 0.5 0.2 1 0.8 0.4 0.4-0.4 0.7 1.3-0.3 1.8-0.6 0.3-0.7 0.8 0.1 1.2 0.6 0.9 0.7 0.6-0.4 1.2-0.6 0.7 0 0.7 0.9 0.4-0.7 0.6 0 0.9-1.4 0.3-0.6 0.7-0.3-0.1-0.4 1.3 0.1 0.5-0.3 2.4-0.6-0.2-0.7-0.7-0.1-0.9-0.5-0.6-0.4-0.2-0.4-0.4-0.7-0.1-0.4 0-0.2 0.2-0.3-0.3-0.3-0.1-0.3-0.3-0.3 0-0.3 0.3 0.7-0.2 0.2 0.3 0.5 0.3 0.5-0.1 0.3-0.1 0.5 0.2 0.3 0.3 0 0.4 0.4 0.4 0.4 1.4 0.6 0.5 1 0 0.2 0.8-0.2 1.6-0.5 0.2-0.4 0-0.2 0.1-0.5 1 0.3 0.4-0.3 0.9 0.1 0.4-0.4 0.3 0 0.2-0.1 0.4-0.2 0-0.4 0.3-1 0.8 0.2 0.3-0.5 0.9-1.2-0.5-0.9 0.2-0.3 0.8-0.9 1 0.1 0.5-0.5 0.5-0.2 0.9 0.2 1.7 0.3 0.6-0.7 0.8-0.6 1.9 0.6 1.2-0.4 1.1-0.8 0.6-0.3-0.5-0.3 0.2-0.6-0.3 0.1 0.9-0.7 1.1-1-0.8-0.1-0.4 0.5-0.8 0.4-0.2-0.6-0.1-0.7 0.2-0.3 0.5-0.6-0.1 0.2-0.7-0.7 0.2-0.3 0.3-0.3-0.1-0.3 0.2-0.6 0.6-0.1 1.2-0.3 0.5 0.2 1.3-0.4 0.4-0.6-0.2-0.2-0.8-0.1-1.3-1-0.3-0.3 0.1-0.2 0.2-0.1 0.9-1.3 0.5-0.3 0.3-0.1 0.3 0.7 1.1 0.2 0.6-2.3-0.4 0.1-0.4-0.6-1.6-0.8-1-0.5-1.2 0.4-1.5 0-0.5-0.7-1 1.4-1.6 0.6-1.1 0.4-2.1-0.5-1.5 0-0.7-0.8-1.3-0.8-0.5-1.6-0.4-1.5 0 0.3-0.8 0.2-1.1 0.6-1.6-0.6 0.1-0.3 0.7-0.1 1.1-0.9 1.2-0.8 0-1.4-0.9-0.9-1.3 0-2.5-0.3-1.9-0.7-0.1 0.5 1.4 0 1.5-0.4 0.4 0.2 1.7 1.1 1.1 0.7 1 1.1 0.4 0.4-0.4 1 0.8 1.4-0.1 1 0.2 0.4 0.7 1.6 2.1-0.9 1.3-2.8 2-0.8 0.3-1.2-1.3 0.1-0.8-0.6 0 0.2 1.1 1.2 1-0.6 1.1-1.1 2.9-0.8 1.7-1.4 1.4-0.4 0.7-1.1 0.6-2.2 1.8-0.7 1.1-0.7 0.4-1.2-0.1-0.5 0.7-2.1 0.9-4 0.8-2.7 0.8 0-0.1 0-0.5-0.7-0.7 0-0.4 0.2-0.8 0-0.6 0.1-0.2-0.2-0.6 0.1-0.3-0.1-0.1-0.7-0.2 0.3-0.1-0.3-0.3 0-0.6-0.1-0.2-0.5 0-1.1-0.1-0.4-0.1-0.4 0.1-0.5-0.4-0.5-0.2-0.1 0.2-0.2-0.3-0.2 0-0.1 0-0.2-0.1-0.4-0.2-0.3 0-0.1-0.3-0.5 0.1-0.2-0.1 0-0.1-0.4-0.3 0.2-0.2-0.2-0.5-0.2-0.4-0.4-0.5 0.2-0.3-0.5-1.1 0.6-0.8-0.6-0.6-0.1-0.3 0.1-0.5-0.4 0-0.1 0.1-0.6-0.1-1-0.4-0.2-0.3-0.3 0.9 0 0.7-0.3 0.1-0.7 0.4-0.5-0.2-0.2 0.2-0.2 0-0.4 0.7-0.1 0.1 0 0.1 0.2 0.2 0 0.2 0 0.8-0.6 0-1.6-0.2-0.4-0.7-0.7-0.8 0.2-1.3 1-1.7-0.4-0.9 0.1-0.6-0.2-0.5-0.8-0.1-1.3-1.4-1.7-0.1-2-0.5-0.6 0.1-0.3-0.6-0.6-0.1-0.2-1.1-0.3-0.3-1.3 0.3-1.3 0.1 0-1.3 0.3-1.4 0.8 0.3 1.5-0.4 0.7-0.7-0.5-0.5 0.8-0.4 1 0.1 1.3 0.3 0.1-1.1-0.6-0.7-1.5-0.9 0-0.6 0.4-1.1 0.1-1-1.3-0.7-1.4-0.2-0.6-1.8 0.2-0.4 1.3 0.2 0-1.6-0.2-0.9-0.7-0.3-0.3-0.8-1.7-0.3-1.1 0.3-0.7-0.1-0.2-0.6-0.4-0.2 0.1-2.1-0.7-0.7-1.3-0.6-1-0.8-2.4-0.4-0.9-1.4-1.3-0.6 0.2-1.2 0.4-0.8 0-1.1 0.5 0 0.1-0.9 0.4-0.5-1-0.7 0.1-0.4 0.8-0.2 0.4-0.5 0.5 0.4 0.4-0.5 0.7 0.2 0.7-0.7-0.1-0.7-0.8 0.5-0.5-0.8-1.2 0.1-1.6-0.3-0.8 0.7-0.4-0.6-0.7-0.2-0.9 0.3-1.8-0.8-0.7 0.6-1.6 0.1-0.4-0.9-0.9 0.1-0.5-1-0.9-0.8 0.1-0.7-0.7-0.5-0.9 0.1-1.6-0.8 0.2-0.6-0.4-0.5-1.9-0.1-1 0.3-0.3 0.3-1 0-0.5-0.7-0.8-0.4 0-0.5-0.7-0.8-0.7 0.1-0.3-2.7 0.2-0.6 1-0.9 0.3-1-0.2-1.3 1.1-0.4-0.6-1.2-0.6 0-0.1-1.6 0.5-0.9 1.1 0.2 1.1 0.6 2.8-1.2 0.7-0.1-0.3-1.1-0.7-1.2 0-0.4 0.9-0.8 1.2 0.2 0 0.4 1-0.2 1.2 0.1 0.5 0.7-0.3 0.9 0.4 0.9-0.4 1 1.2 0 0.9 0.6 0.6 0.1 0.1 0.8 0.7 0.1 1.2-0.2 0.1 0.4 0.6 0.3 0.4-0.2-0.4-0.7 0.9-0.5 0.8-0.2 0.2-1.9 0.4-0.3-0.4-0.8 0.9-1.1-0.1-0.4 0.9-0.2 1.3-1.6 1.2-0.1 1.7 0.2 2.1-1.2 2-0.8 2.1-0.5 0.7 0.1 0.2 0.6 1.9-0.4-0.1-0.4 0.5-1.5 0.4-0.2 0-1.2-0.6-0.8 0.1-0.6 0.6 0.1 0.8-0.4 0.6-0.8 0.7 0-0.2-0.7 0.7-0.7 1 0.6 0 0.4 0.6 0.4 0.7-0.8 1.3 0.5 1.1 0.5 0.8 0.8 1.7 0.6 1.4 0.2 0.6-0.9-0.4-0.2-0.8-1 0.2-0.6 1.8 0.4 0.2 0.6 1-0.6-0.1 1.1 0.9 0 0.3-0.4-0.3-0.7-0.1-1.6 0.5-0.1 0.2 1 1-0.5-0.3-1.7 0.2-0.8-1.1-0.5 0.3-0.6-0.7-0.4-0.5-1.1 0.4-0.6 1 0.4 2 0-0.6 1 0.8 0.3 0.6-0.5 1.2 0.3 1.7 0.9 0.6-0.6-0.6-0.4 0.3-0.5 0.8 0.2 1-0.4 0.2-0.9-0.6-0.2 0.5-1.1-0.5-0.1 0.2-1.2 0.9 0.5 0.6 0.6 1 0 0-0.7 0.4-0.7 0.8-0.3-0.6-0.6-0.2-0.5 1.6 0 0.4 0.3 1.7 0.1 0.2-0.9-0.8-1.1-1.2-0.3 0.4-1.3 1.1 0 0.9-0.8 0.1-0.9 0.6 0.2 1-0.6 0.2-1.1 1.2-1.9 0-0.6-0.3-0.5 0-0.7 1-1.4-0.7-0.9 0.1-0.9-0.2-1.7 0.5-0.5 0.5 0.6 0.8 0.3 0.6-0.4 0.8 0 0.1-0.7 0.6-0.5-0.3-0.7 0.4-1.9-0.9-0.6 0.4-0.4 0.1-1.2-2.1-0.6-0.7-1.1 1.1 0.2 0.5-0.5 1.1-2.6 0.5-0.4 1.9-1 0.2-0.6-0.1-1-0.3-0.5-1.9-1.8-0.1-0.5-1.3-1.6-1-0.6-1.5-0.7-0.7-0.9 0-2 0.6-2.6 1.4 0.6 0.1-0.3-0.3-0.8 0.9-0.7 0.2-1-0.2-0.7-0.7-0.2-1.7-1.3 0.3-1.3-0.8-0.2-0.1-0.7 0.8-2 0.8 0.5 0.6-0.4 0.2-0.7 1 0-0.1-0.5 0.4-1 1-0.1 0.1-0.5 0.7-0.6 1.1-0.1 0.8 0.8 0.3 0.5 0.6 0.4 0.3-0.3 0.6 0.6 1.2 0.2 0-0.4 0.1-0.4-0.1-0.1-0.1-0.1-0.3-0.9-0.3-0.2-0.3 0.1-0.4-0.8 0.1-0.2 0.2 0-0.3-0.4 0.2-0.7 0.2-0.2-0.1-0.1-0.2-0.1 0.4-0.2 0-0.2-0.1-0.2 0.2-0.7-0.3-0.1 0.3-0.3 0.1 0 0.1 0-0.2-0.3 0.2-1.1 0-0.4-2.4-1-1.2-1-0.2-0.5-1.3-0.9-0.1-0.7 0.5-0.6-0.8-0.7 0.8-0.7-0.9-0.5-0.5 0.2-1.6-0.4-0.3-0.6 0-1-0.3-0.6 0.7-0.1 0-0.4-0.1-0.2 0.1-0.2 0.1-0.4-0.1-0.8 0-0.3 0.2-0.4 0.3-1.1 0.3-0.5 0.9-0.8 0.4-0.2 0.1-0.4 0.1 0.1 0.8-0.4 0.1 0.5 0.4 0.3 0.2-0.6 0.7 0 0.3 0.1 0.2-0.1-0.1-0.3-0.5-0.4 0.5-0.3-0.1-0.6 0-0.2 0-0.3-0.1-0.4 0.6-0.4 0.5 0.7 0.3-0.1 0.3 0.1-0.1-0.5 0.8-0.6 0.1-0.3 0.7 0.2 0.4-0.1 0.1-0.4 0.5-0.3 0.1-0.3 0.1-0.2 0.3-0.2 0.1-0.1 0.4-0.3 0.1-0.2 0.2 0.1 0.4-0.7 0.7-0.5 0.2 0 0.4-0.2 0.3-0.5 0.7-0.1 0.3-0.1 0.3-0.3 0.2-0.3 0.1-0.5 1.2-1 0.1 0.1 0.1 0.1 0.2-0.6 0.4-0.2 0-0.2-0.3-0.1-0.4-0.7-0.5 0.1-0.3 0-0.5-0.4 0-0.3 0.8-0.8-0.1-0.7-0.3-0.6-0.5 0.1-0.2-0.8-1-0.2-0.5-0.8 0.5-0.6 1.4-0.9-0.1-0.7-0.8 0.6-0.7-0.3-0.6 0.2-0.1 0.6-1.2 0.4-0.9-0.9 0-0.2 0.1-0.8 0.5-0.2 0.7-1.5 0-0.7 0.8-0.8 0.1-2 0.5-0.8 0.2-2-0.7-2.5 0.2-1.2-1.2-1.2 0.3-0.8-0.9-1.2-0.1-1.4-1-0.8-0.2-0.8-1.5-0.3-0.8-1.5-0.1-0.8-0.7-0.3 0-1 0.5-0.4 0.3-2.2 0-0.8 1.4 0.2 0.6 0.6-0.3 0.3 0.6 1 0 0.9 1.8 1 0.7 0 0.7-0.7 1.2 0 0.6 0.5 1.6-0.4 0.7 0.1 0.2 0 0.6 0.5 0.1 0.4 0.7-0.1 0.2 0.3 0.7 0 1.3 0.4 0.8 0.3 0.7-0.3 0.4-0.9 1-0.5 0.9-0.9 0-1 0.7-0.3 1.7-0.4 0.9 0.2 0.7 0.8 0.7 0.2 0.9-0.7 0.9 0.6 0.2 0.8 0.5 0.3 0.7-0.5z", "36": "M203.7 83.7l0.2-0.1 2.5-0.7 0.8-0.1 1.5 0.2 0.9-0.1 2 0.3 1.5 0.7 0.8 0 0.4 0.5 0.5 0.9 0.4 0.1 1 0.1 1.6-1.4 1.5-0.6 0.8-0.5 0.5-0.1 0.2-0.2 0.5-0.4 0.4 0.6 1.8 1.8 1.1 0.3 1.4 1.2 1.4 0.6-0.4 0.9-0.4 1-0.1 1.7 0.1 0.4-0.2 0.6 0.2 1 0.6-1.1 0.4 0.2 0.6 0 0.6 0.3 0.5 0.6 0.4 0.7 1 0.4 0.9 0.4 0.2 0 0.5 0 0.9 0.3 0.7 0.3 0.5 0.3 0.6 0.4 0.5 0.4 0.2 0.2-0.1 0.3 0.3-0.1 0.2-0.1 0-0.2-0.1-0.3 0.1-0.1-0.1-0.4 0.1-0.2-0.1-0.2 0-0.2 0.1 0 0-0.2 0.1-0.1 0.1-0.1 0.1-0.1 0-0.2 0.1-0.1-0.1-0.1-0.2 0-0.2-0.3 0.4-0.1 0.3-0.2 0.5 0.1 0.1 0.5 0.3 0.1 0.1 0.2 0 0.2 0.1 0 0.4 0.2 0.2 0.1 0.2 0.2-0.1 0.3 0.2 0.4-0.1 0.1 0 0.4 0.2 0.1 0.2-0.1 0.3 0.1 0.4-0.1 0 0.1 0.3 0.2 0.4 0.3 0 0.1 0.3 0 0.2 0.2 0.4 0.1 0 0.2 0.2 0.1 0.1 0.1 0.1 0 0.1 0.2 0.2 0.3 0.1 0.1 0 0.2-0.1 0.1 0.1 0.4 0.1 0.2 0 0.3 0 0.4 0.2 0.4 0.2 0.5 0 0.2 0 0.1-0.1 0.1-0.1 0.2 0.1 0.2-0.3 0.3 0.1 0.1 0 0.2 0.1 0.2 0 0.1-0.5 0.2-0.1 0.2-0.3 0.2 0 0.1-0.1 0.2 0 0.2-0.7 0.7 0.1 0.2 0-0.3 0.1 0 0.1 0.1 0.1 0 0.3 0.1 0.3 0 0.7 0.2 0.1-0.1 0.1 0 0.1 0 0.1 0.1 0 0.1 0.1 0.1 0 0.2-0.1 0.1 0 0.1 0 0.1-0.2 0.1-0.1 0-0.1-0.1-0.1 0.1 0 0.2-0.2 0.4 0.1 0.1 0.2 0.1 0.2-0.1 0.1-0.1 0.1 0.2 0.1 0 0.3 0.1 0.2 0 0.2 0.2 0.1 0.1 0.1 0 0.1 0.1 0.2 0.3 0.1 0 0.1 0.1 0.1 0.2 0.2 0.3 0.3-0.2 0.1 0.1 0.3 0.1 0.2 0.1 0.2 0.3 0.3 0.5 0.2 0.1 2.2 2.6-2 3.7 0.2 0.3-0.2 0.2 0.4 0.3-0.1 0.3 0.1 0.3-0.2 0.2 0.2 0.4 0.1 0.4 0.3 0.3 0 0.1-0.2 0.4 0 0.3 0.2 0.5 0.2 0.3 0.9 0 0.6 0.1 0.3-0.3 0.2 0.2 0.4 0.1 0.3 0.4 0.1 0.3 0.1 0.5 0.2 0.4 0.1 0.4 0.3-0.1 0.3 0.3 0.4 0 0.2 0.1 0.4 0.1 0.2 0.4 0.7 0.2 0.4-0.2 0.5 0.7 2-1.9 0.3 0.4 0.5 0.2 0.4-0.1 0.2 0.1 0.1 0.2 0 1.4-0.1 0.5-0.2 0.4 0.1 0.6 0.3 0.5 0.4 1.1 0.7 0.2 0.4 0.4 0.1 0.3 0.4 0.8 0.3 0.6 0.7 0.5 0.6 0.2 0.2-0.1 0.3-0.1 0.5 0.8 0.3 0.2 0.5 0 0.2 0.4-0.2 0.6-0.2 0.4 0 0.3 0.1 0.4 0.3-0.3 0.4 0 0.8-0.1 0.5-0.2 0.9 0 1.1 0.2 0.2 0 0-0.4-0.1-0.3 0.1-0.1 0.7 0 0.4 0 0.4 0.1 0.2 0.3 0.3 1.1-0.1 0.4 0.2 0.4 0.2 0.6 1.1 1.3 0.2 0.4 1.4 1.3 0.6 0.5 0.3 0.3 0 0.8 0.6 0.9 0.9 0.8 0.9 0.1 0.6 0.1 0.4 0.4 0.3 0.3 0.3 0.9 0 0.5-0.2 0.6 0.1 0.5 0.1 0.4-0.1 0.2 0.1 0.1 0.5 0.6-0.3 0.4 0 0.3-1.5 0.6-0.1 0.1 0.3 0.4 0.2 0.4-0.1 0.2-0.4 0-0.1 0.1 0.2 0.5-0.2 0.5-0.6 0.1 0.6 1 0.4 0 0.8-0.6 1.6-0.2-0.2-1.2 0.1-0.2 0.1-0.2 0.2-0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0 0.2-0.1 0.1-0.1 0.1-0.1 0.1 0.1 0.1 0 0.2 0.1 0.2 0 0.2 0.1 0 0.1 0 0.2 0.2 0.3 0.3 0.3 0.1 0.1 0.1 0.1 0 0.1-0.1 0.1-0.1 0.2 0.1 0.3 0.1 0.3 0.2 0 0.2 0.1 0.3 0.2 0.2 0.1 0.3 0.1 0.4 0.1 0.3-0.2 0.2-0.2 0-0.4 0.1-0.2 0.1-0.1 0.1 0 0.2 0.3 0.2 0.2 0.1 0.2-0.1 0.2-0.1 0.1 0 0.2 0.1 0.2 0.4 0.1 0.2 0 0.4 0.5 0.2 0 0.2 0 0.1 0.1 0 0.1 0.1 0.3 0 0.2 0.1 0.1 0.2 0 0.2 0.1 0.1 0.3 0.1 0.1 0.1 0.1 0.3 0.5 0.3 0.2 0.3 0 0.3 0 0.1 0 0.2 0.4 0 0.2 0.1 0.3 0 0.2 0 0.3 0 0.1 0.1 0.1 0.4 0 0.1-0.2 0.2-0.1 0.1 0 0.1-0.1 0.1-0.1 0.1-0.1 0.1 0 0.3 0.1 0.1 0.1 0 0.1 0 0.1 0 0.1 0.1 0.3 0.1 0.1 0.1 0.1 0 0.1-0.1 0.2 0 0.1 0.1 0.2 0.1 0.4 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.2 0 0.3 0.1 0.1 0.1 0.1 0 0.1 0 0.2 0.1 0.2 0.2 0.1 0.2 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0.2 0.1 0.2 0.1 0.2 0.2 0.2 0 0.1 0.1 0.3-0.1 0.1 0 0.2 0 0.3 0.6 0 0.2 0.1 0.1 0 0.1 0.1 0.1 0 0.1 0 0.1-0.1 0.3-0.1 0.1 0 0.2 0.2 0.1 0 0.2 0.1 0.2 0.1 0.1 0.1 0.1-0.1 0.1 0 0.1 0.3 0.2 0.1 0.2 0.2 0.1 0.3 0 0.4 0 0.2 0.4-0.1 0.6-1 1.9-0.6 0.1-0.2-0.1-0.4-0.2-0.1 0.2 0 0.1-0.2 0.1-1.2 0.1-0.8 0.4-0.5-0.1-0.5-0.4-0.6-1.3-1.2-0.2-0.1 0.2-0.3 0.2-1.2 0.1-1 0.8-1 0-0.4-0.2-0.3 0-0.4-0.2-0.3 0.1-0.1 0-0.2 0-1.1 1.1-1.5 1.1-0.8 0.4-0.6 0.8-0.7 2.1-0.6 0.7-2.9 0.5-0.8 0.5-1.2 0.1-0.5 1.6-1.8 1.3-0.3 0.7-2.5 1.3-0.4 0-0.4-0.4-0.3-0.4-0.4-0.4-1.2-0.6-1.1-0.2-0.4 0.1-0.5 0.1-0.3 1.1-0.4 0.4 0.2 1 0.9 1.1 1.9 1.1 0.8 1.8 0.5 0.5-0.1 1.5-0.5 1.2 0.3 0.8 0.7 0.6-0.1 0.6-1.2 2.1-1.1 1.3-0.3 0.5-0.3 0.4-0.4 1.1-0.7 0.9-0.9 0.5-1.2 0.2-1.1 2.1-0.9 0.7-1.3 0.5-1.9 0.3-0.8 0.3-1.3 1-0.4 2-0.4 0.7-0.4 0.1-0.1-0.2 0-0.1 0-1-0.8-0.3 0.2-0.8-0.2 0-0.4 0.2-1.4 0.4-0.3-0.1-0.3 0-0.4 0-1.8-0.8-0.3 0.2-0.1 0-0.4 0-0.2 0.3-1-0.8-0.1-0.5-1 0.1 0-0.9-0.7 0.2-1.5-0.7 0.3-0.6-0.4-0.3-0.9 0.1-1.1 0.6-0.3-1.7-0.5-1.1-0.6 0.3-0.7-0.4-0.6 0-0.6-0.5-0.5 0.1-0.1 0.7-0.7 0.8-1.3 0-0.8-0.7-1.4 0.2-0.6-0.9-1 0-1.1-0.2-0.7 0.7-0.9-0.2-0.6 0.2-1.4-0.1-0.1-0.5-0.8 0.1-0.2-0.8 0.4-0.8-1-0.7-0.3-0.8-0.1-1.2-0.5-0.6 0.5-0.4 0.1-0.7 1.4-1-1.1-0.7-0.4-1 0.3-1.2 0.4-0.8 0.5-1.7 0.5-0.9 0.2-0.8-1.8 0.1-0.7 1.1 0.1 0.9-0.6 0.9-1 0.4-1.1-0.5-0.4 0.6-1.3-0.1-1.8-1.6-1.7 0.3-0.6 0.8-0.9-0.1-1-0.6-1-1.2 0.1-0.7-1.7-0.7-1.3-0.2-0.5-1-1-0.7-1.7-0.4-2.2-0.5-0.2-0.9-1.3 0-0.9-0.2 0.3-1-0.9-0.3-0.4-0.8-1.1 0.1-0.9-0.8-2.6-0.1-0.5 1.4-1-0.2 0.4-0.8-1.7-1.9-0.2-1-1.4-0.8-1.5 0.1-0.6-0.1-0.2-0.5 0-1.6 1-1.3 0.1-1.6-1.1-0.5 0-0.6-0.7-0.6-0.3-1.1 0.2-0.5-0.5-0.6 0-0.6-0.8-0.9-0.2-1 0.1-1 1-1.2-0.1-0.9 1.3-0.8-1-1.1 0.3-1.1 0.9-0.6-0.5-0.5 0.1-1.4-1.1-1.2-0.9-0.8 0.2-1-0.2-1.1 1-0.8 0.2-0.8-0.1-1.4-1.2-1.1 0-0.6 0.5-2.4 0.6-1.5-0.4-1-1-0.8-1.2-2.9-0.2-2.5-0.4-0.8-0.1-2.5-0.2-1.5 0-2.1-0.4-0.2-0.2-1.3-0.9-1.9-0.6-1.7-0.9-0.3-0.2-1 0.5-0.4 0.5-1.8-0.1-1.4 0.4-0.9-0.1-1.4 0.4-0.5 0-1.1 0.6-0.7 2.6 0.2 0.6-0.7 2.2 0.3 0.7 0.8 0.4 0 0.4-0.9-0.1-0.8 1.3-1.9-1.1-0.7 1-2 0.3 0 1-2.2 1.4-1.1 1.7 0.1 0.7-0.9 2-0.2 0.9 0.1 0.3-0.6 0.9-0.4 0.2-0.8 1.6-0.6 0.8-0.8-0.1-0.8 1.2-0.9-0.4-2.3 1.4-0.9-0.2-0.9-1-0.6 0.9-2 1.2-0.3 0.2-0.4-0.4-0.3z", "37": "M319.4 815.3l0.2-1.5-0.4-0.4 0.2-1-0.3-0.1-0.4-0.9 0.5-1.5-0.2-0.9-0.4-0.6-0.1-1.6 0.4-1 0-0.9-0.3-1.3 0.5-0.6 0.8-0.1 0.6-0.6 0.8-0.4 0.5 0.4 0.4-0.9-0.3-0.6-1.6-0.9-0.6-0.6-1.3-0.3-1.5 0.2-0.9 0.4-1.3-0.6-0.7 0.1-0.7-0.4-1.6-0.6-0.7-0.9-0.4-1.4 1.3-0.2 0.2-0.6 1 0.4 1.4-0.1 0.1-0.7 0.4-0.3 1.2-0.2 0-1-0.5-0.1-0.4-0.6 1.1 0 0.5-0.6 0.7 0-0.1-0.9 0.6-1.3-0.4-0.2-0.9 0.4-0.6-0.9 1.7-0.6 0.1-1-1.6-0.3 0.5-1.7-0.1-0.5 1.1 0 0.2-0.7-0.5-1 0.1-0.7-0.2-2.3 0.4-0.3-0.1-1.3 0.5-0.5 0-0.8 0.7-0.6-0.2-0.9-0.5-1 0-0.6-0.6-0.6 0.1-0.4-2-0.6-1-0.6-0.5-0.8 0.3-1 0.7-0.1 0.1-0.7-0.4-0.3 2.5-2-0.7-0.4 0.5-1 0.3-1.1-0.2-0.9 0.8 0.1 0.3 0.5 1.3-0.3 0-0.9 0.4-0.4-0.8-0.5 0-0.5 0.8-0.5 1.3 0.4 0-0.9 0.8 0.4 0.5 0 0-0.9 0.8-0.1 0.5-0.3 1.2 0.3 0.2-1-1.1-0.8-1.2 0-1-0.4-0.2-0.9-1.3 0.3-0.7-0.8-0.9 1.1-0.4-0.9-0.5 0-0.5-0.4-0.7-0.1 0-0.8 0.4-1.1-0.2-0.9 0.4-1.4 1.1-0.3 0.2-0.4 1.1-0.4 0.4 0.1 0.8-0.8-0.3-0.5-1.1-0.6-0.6-0.1 0.2-0.7 0.5-0.4 0-0.5 1-0.2 0.3-0.4 0.2-0.8 0.8-0.5-0.2-1.1 1 0.2 0.1-1.5 0.9 0 0.3-0.8-0.3-0.9-0.6 0-0.7-0.9-1.8-0.6-0.3-0.7 0.7-0.8 1.1-0.3 0.1-0.5-0.3-1 0.2-0.9-0.6-0.4-0.4-0.9 0.6-1-0.5-0.9 1.1-1.3-1.1-0.5-0.7 0 0.6-0.6-0.5-0.9-0.9-0.2-0.2-1 0.9-0.8 0.2-1.1-1-0.3 0.1-0.5 1.1 0.2 0.8-0.3-0.4-0.8 0.2-0.6 0.8 0.3 0.1-0.6-0.6-0.4 0.4-1.6 1.4-0.3 0.2 0.7 0.4 0.3 1.9-1 0.5 0.1 0.7-1.3-0.2-1.2-0.4-0.8 0.1-1.2 0.6-0.5 1.2-0.1 0.6-0.8 0-0.5 0.7-1.4 0.5-1.4 2.4-0.8 1.2 0.3 0-0.8-0.6-0.6-0.9-0.3-0.4-0.6-0.2-0.9-0.9 0.1-0.5-0.2 0.4-1.4-1.4 0.1 0.2-1.2-1.7 0-0.1-1.4-0.3-0.3 0.2-1.2 1.2 0.4-0.1-0.7 0.2-1 0.5-0.2 0.5 0.7 0.4-0.1 0.1-1-0.3-0.7 0.5-0.8 0.1-0.7-0.3-0.5 0.8-2.1 0.6-0.5 0.5 0.2 0-0.8-1.3-0.2 0-0.7 1.7-0.6 0.5-0.5 0.8-0.3 0.9 0.7 0.3 0.5 0.9 0.3 0.6 0.8 0.6 0.3 0.1 0.8 0.3 0.3 0.8-0.6 0.6 0.4 1-0.1 0.7 0.6 1.2-0.4 0-1.3 0.3-0.9 0.2-1.1-0.6-0.7 0.2-1.6 1.3-1.4 0.9 0.2 0.8-0.9 0.8 0.2 0.5-0.6-0.1-0.8-0.4-0.6-0.1-2 0.5-0.4 0-1.2-0.8-1.8-0.6-0.4 0.6-0.9 1-0.1 0.2-0.4 0.8-0.4 0-0.7 0.5-0.8 0.3-0.9-0.3-0.9-0.7-0.3 0-0.9-1.5-0.4 0.5-2.3 0.9 1.1 1.6 0.1 0.1 1 0.4 0.6 1.1 0.4 1.6 0.3 0.6 0.8 1.1-1 2 0.4 0.6-0.3 0.6 0.4 2.8 0.8 0.5 0.7 0.7-0.5 0.9 0.2 0.7-0.2 0.8 0.8 1.3 0 0.4 1 0.2 1.2-0.1 1.5 1 0 0.9-0.4 0.9 0.1 0.9 0.5-0.2 1.2 0.5 1 0 0.4-0.8 0.6 0 0.4 0.8 0 0.5-0.4 0.9 0.8 1.1-0.2 0.4 0.5 1.4 0.1 0 0.6 1.3 0.4 0.9 1.2 0.7 0.4 1-0.3-0.3-0.7 0.2-0.9 0.8-0.6 0.1-1.2 0.3-0.7-0.4-1.1 0.6-0.1 1.7 0.8 0.3 0.9 0.9-0.3 1 0.1 0 0.3 1.5 1 0.9 0 0.6 0.6 0.4 0.7 1.5-0.7 0.1-0.9 0.9-0.2 0.2 0.8 0.6 0.6 0.9 0.3 0.3-0.2 0.2-1.2 0.5-0.9 0.6-0.4 1.3 0 1.2-0.3 1-0.7 1.2 0.2 0.6 0.7 0.8 0.4 0.4 1.1 1.7 1.3 1.1 0.3 1.1 1.2 0.1 0.7 0.9 1.4-0.3 1.9-0.2 0.5 0.1 1.4-0.6 0.5-0.8 2.1 0.1 0.8 0.7 1-1.3 1.2-1.2 0.7-0.4 0.7 0.1 1.6-0.2 0.6 0.5 0.3 0.7-0.4 1.2 0.1 0.3 0.8-0.1 1.7 0.3 1.3-0.1 2.8-0.4 0.8-1.1 0.2 0.8 1.3 0.5 0.4 2.7 0.7 0.3 0.5 0.4 0.2 0.5 0.9 1.2 0.7 0.9 0.9 1.7-0.7 0.3 0.6 0.8 0.1 0.4-0.7 1.5-0.2 0.8-0.6 0.9 1.2 0.8 2.3 0.8 1.3 0.9-0.7 0.5 0.4 0.7-0.5 1.6-0.7 1.3 0 0.8 0.4 0.7 1.1 2.3 1.5 0.5 0.6 0.6 0.3 0.2 0.9 0.4 0.8 1.1 0.6 0.5 0.7-0.2 0.6 0.8 0.5 0.3 1.6 0.7 1.6 0 0.5 0.8 0.9 0.6 1.2-1.7 0.9 0 1.7 1 0.3 1.2-0.1 0.7-0.9-0.1-1.2 0.3-0.3 1.2 0.2 0.2 0.7-0.6 0.3 0.2 2 0.3 0.4 1.3-0.1 1.5-0.8 0.3-0.3 0.7-0.1-0.1 0.9-0.8 0.7 0 1.2 0.6 1.7-0.1 0.4 0.3 1.4 0.4 2.5 0.4 0.3 0.3 2.8 0.3 0.7 0.7 1 0.8 0.2 0.6-0.1 0.8-1.1 2.1-1.3 1.1 0.2 2.1 1.3 2.1 0 2.4 0.2 0.8 0.1 0.6-0.6 0.4 0.2 1.1-0.3 0.4 0.7 2.5-0.5 0.7-0.4 1.2 0.5 1.1-0.9 0.1-0.6 0.6-0.7 0.9-0.3 0.5 0.8 1.9-1.1 0.8 0.8 0.4 0.9-0.4 0.5-0.6 0.1-0.4 0.4-0.8-0.1-0.9 0.7-0.2 0.6-0.8 0.6-1.8 0.2-0.4 0.6-1 0.5-0.3 0.4 0 1.1-0.6 0.8-0.7 1.3-0.8 0.7-0.3 0.8 0.8 0.6-0.8 1.2-0.3 3.2-1.8 2.4-0.7 0.4-0.1 0.3-1.1 0.3-1.2-0.5-0.2-0.6-0.7-0.2-1.2 1.9-0.7 0.6-1.7 0-0.9-0.2-0.7 0.7 0 1.4 0.3 0.5-0.6 0.7-0.6 0.1-2 0.6-0.8 0.4-0.6-0.1-0.6 0.7-1.4 0.2-1-0.3-0.9-0.6-0.9 0.2 0.4 1.1-0.1 0.8-0.8 0.2-0.7-0.2-0.1 0.8-0.4 0.5 0.3 0.5-0.2 1 0 0.6-0.9 0.9-0.3-0.4-2.6-0.6-0.7-0.4-1.4-0.1-1.2 0.5-0.4-0.6 0.6-0.4-0.9-1-1.2-0.3-1.2-0.7-0.3 0.5-1.8 0.8-0.4 0.7 0 0.9-0.5 0.7-0.6 0-0.2 0.7-0.9-0.2-0.7-1.1-0.2-0.8-0.9 0.7 0.7 1.6-0.6 0.6-0.4 0.9 1.3 0.5 1.5 0.4 1.2 0.9 0.5-1 1 0.4 0.4-0.5 1.3 0.9 0.5 0-0.1 0.8 0.2 1.1-0.8 0.1-0.1 1.2-0.2 0.4 1 0.7 0.4 0.7-1.2 0.8-2.5-0.4-1.1-0.5-0.1-1-1-0.5-0.2-0.4-0.6-0.3 0 0.7-0.9 0.7-0.5-1.6-0.8 0-0.6-0.5-0.2-1.5-0.4-1.6-1.3-1.9-0.7 0.3-0.8-0.6-0.8 0 0-0.9-0.5 0-0.5 0.7-0.8 0.8-0.3 0.6-1 0.1-0.6-0.2-0.1 0.9-1.3-0.1-0.3 1-1 1.1-0.6 1.5 0.8 0.4 0.7 0 0.2 1 1 0.4-0.6 1.5-0.1 1-1.1 1.1-0.9 0.7-0.6 1.2-1 1-0.7 0-0.7-0.2-0.4-0.4-0.6-1.4-0.4-0.4-1.8 0.3-0.9-1.2-0.3-0.2-0.8 0.3-0.9 1-1.4 0.1-0.9 0.6-0.3 0.4-1.6 0-0.9 0.7-1.3 0.4-1.3 0-1.6 0.8-0.3 0.6-0.6 0.3-2.7 0.2-0.9 0.1-1.8 0.5-0.2 0.5-1.1 1-0.2 1 0.4 1.2-0.5 0.7-0.3 2.7 0.6 0.9 0 1.3-0.1 1.8-0.6 0.7-1.1 0.5-1.8-0.8-1.9 0-0.9-0.2-0.7 0-1 0.6-1.1 0.4-1.8 0.9-0.1 0.9 0.6 1.5-0.7 0.9-1-0.4-0.2-1.2-0.3-0.6-0.9 0.3 0.2 2.3-1 1.4-1.1 0.8-1.2 0.1-0.9-0.2-0.9-0.5-0.7-0.5-1-1.3-1.2-0.2-1.5 1.5-2.2-0.6-1.5-0.3-1.5 0-1.2 0.7-1.1 0.3-0.8 0.8-0.8 0.1-0.8-0.3-0.6 0.4 0.3 1.1-0.4 0.9-0.2 1.1-0.5 0.5-0.8 0.2-0.8 0.6 0 0.5-0.6 1.3-1.3 0 0.1 0.5-0.9 0.3-1.3-0.6-0.5-0.9-0.3-1-0.8 0.1-0.5 1.3-1-0.6-1.5 0-1.4-0.7-0.7 0.1-0.4 0.6-0.7 0-1.2 0.4-2.9-0.8-1.1 0.5-1.5-0.4-1.1-1-0.6 0.2-2.7-0.5z", "38": "M203.7 83.7l-1.5-1.4-1 0.4-0.7-0.2-0.7-0.6-0.3-0.8-1.4 0.4-1.3-1.6-1.8 0.1-0.6-0.8-1.3-0.6-1.1 0-1 0.9-0.7 0.2-0.5-0.5 0.4-2.3-0.9-1.6 0-1.5 0.3-1 0.9-1.7 1-1 1.1-0.5-0.3-1.7 0-1.1-1.1-0.1-1.2-1.1-1.6 0.2-1.1-0.9-2 0.6-0.8 0-0.8-0.6-1.1 0.2-0.6-0.5-2.8 0.5-1.2-1.6-2.2-0.5-2.1-1.4-0.8-0.9-1.1-0.7-1.1-1-0.7-0.4 0.1-2-0.1-1 0.6-1.9-0.9-0.7-1.2-1.3-0.6 0-0.6 0.9-1.1 0.4-0.7-0.4-0.8 0.2-0.7 0.5-1.6 0-0.3-0.3-0.1-1.1-1.7 0.1-0.6-0.4-0.4 0.5-0.8 0.3 0 0.5-1.1 0.5-0.8-0.6-0.7 0.2-1 0.9-1-0.6-0.6-0.8-1.6-0.3-1.1-1.5-0.5 0-0.8-0.6 0-1.3 0.7-0.6 0.2-1.2 0.6 0 0.3-1 0.5-0.3-0.4-1-1.2-0.3-0.7-0.7 0.1-1.4 0.5-1.1 0.9-0.7-0.8-1.3 0.3-1.3 0.9-0.8 0.3-1.4 1.4-0.6 1 0.6 0.6 0 0.4-0.6 0.8-0.1 1.2-1.1 0.9-0.2 1.5-1.8 0.8-0.8 0.7 0 0.7-0.8 0.1-1.4-0.4-0.6 1.7-1.1 0.9-0.1 1.4 0.3-0.1-1.6 0.3-0.7 0.7-0.6 1.2-0.4 0.6-1.1 1.3-1.9-0.7-1.2 0.1-1.3-0.3-0.6 1.6-0.3 0.9-0.8 1.4-0.5 0.3 0.7 0.9 0.1 0.6-0.4 1.8 0 1.3-0.4 0.6 0.1 0.3-0.7 1.3 0 1-0.6 1.2 0.7 0.8 0.1 0.7 0.5 0.6-0.2 1.8 0.2 0.7 0.7 1.2 0.4 0.4-0.3 1.9 0.4 0.6-1 2 0.4 0.9-0.7 1.9 0.8 1.2-0.3 0.2-1.1-0.4-0.9-0.9-1.3-1.2-0.2-0.8-1-1.1-0.1-0.5-0.5-1.3-0.3-0.1-0.7-0.7-1-0.7-0.5 0.4-1.3 0.8 0.1 1.1 0.7 0.4-0.4 1 0.5 0.7-0.1 0.7 0.5 0.4-0.7 1.7 0.6 0.4 0.5 0.9-0.1 0.5 0.3 0.8 1.3 1 0.7 0.9-0.1 1 0.9 1.1-1.3 1 0.1 0.9-0.3 0.6-2.6 0.4-0.2 2 0.4 1.1 0.4 0.6-0.7 1.3-0.6 1.7-1.8 1.3-0.4 0.8-0.9 1.6-0.2 0.6 0.3 1.3 0 0.9 1.5 0.6 0 0.6-4 1.6-0.5 0.6 0 1.2-0.9 0.9 0.6 0.3 1.6 0.8 0.7 0.7-0.8 0.9 0.2 1.4 0 0.1 1.2 2.3 3.4 2.6-1.7 0.8-0.3 0.3-0.5 1.4 0.5 1 0.9 0.9-0.2 1.3-0.8 1.6-2.2 0.3-0.8 0.8-0.1 0.9-0.5 1.1 0.1 0.6-0.3 1.3 0.2 0 2.2 0.2 0.8 0.8 0.9 0.9-0.4 0.9 0.5 0 0.9-0.5 0.5 0.1 1.6 1 0 0.3 0.7 0.2 1.7 0.7 1.1 1.3 0.6 0.7 0.1 2.8 1.6 1.8 2.3 2.5 4.7 0.9 0.7 1.7 0.9 0.5 0 2.9 2 1.9 0.6 1.6 0 1.8 0.5 3.2 3.6 1.5 0.7 1.3 1.1 1.1 0 1.3-0.6 0.7 0 1.3 1 0.6 0.8 1 0.4 0.2 0.9 0.5 0.9-0.1 0.9 1.2 1.5 2.3 0.9 0.5 0.8 1.1 0.2 1.6-0.7 0.8 1.1 1.4 1.3 0.3 1.7 2.2 1.2 0.6 0.7 0.4 0.9-0.9 0.1-0.6 0.5-0.8 1.4-0.7 0.8 1.2 1.5 0.8 0.8 0.6 1.8 1.1 0.9 0.9 0.1 1.3 1.4 1.4 0.7 1.1 0 1.2 0.3 1.7-0.2 0.8-0.7 1.4-0.1 0.9 1.3 0.8 0.1 0.1 1.4 1.8 0.1 0.1 0.7 2 0.1 1 0.5 0.4-0.9 1.1 0.2 0.8 1 0.6 1.3 0.8 0 0.5 0.8 0 0.8-0.4 0.5 1 0.8 0.3 0.5-0.2 1 0.2 0.5 0.8 0.5-1.8 0.7-0.8-0.4-0.7-0.9-1.1-0.1-1.3 0.7 0.8 0.9 0.1 0.8 0.7 0 0.3 0.6 1.3 0.1 1.2 0.6 0.9-0.7 1.4-0.5 0.8 0.4 1-0.3 1.5 0.8 1.2-0.9 0.6 0.8 0.6-0.3 1.3 0.1 0.2-2 1.5 1.2 0.6 0 0.8-0.8 0.5 0.1 1.3 1.3 0.5-0.3 0.9 0.8 0.4-0.9 1.8 0.6-0.2-1-1.1-0.7 1.2-2.3 0.1-1.3 0.7 0.9 1.9-0.3 1.1 1.6 0.5-0.3 0.8 0.3 0.5 0.5 0.9-0.7-0.2-0.7 0.5-1.8 0.7-0.4 0.4-1 0-0.9 1.5 0.9 0.5-0.1 0.5-0.8-0.1-2 0.4-0.4 0.8 0.2 1.2 0 1.4-0.5 0.6-0.5 0.7-1.5 0.8-0.1 0.6 0.3 1.9 0.2 0.7-0.2 1.5-1.2 1.6-0.7 1.2-1.5 1.1 0 0.9-0.5 2 0 0.3 0.4 1.6 0.1 3.8-1 0.4-0.5 2.2 1.9 1.4 0 1.9 0.5 0.9-0.3 1.7-1.9-0.2-2.5 0.8-1.3 0.7-0.4 2-0.1 2.5 0 0.8 0.5 0.6 2.7 0.6 0.7 1.1 0.3 1.8 0.1 1.9 1.2 0.9 0.1 1.9 0.8 0.4 0 1.6 0.7 0.7 0.7 1 0.2 1.5 0 1.5 0.5 1.2 0.2 1-1.3 1-0.7 1.3-0.5 1.3 0.4 1.2 1.9 0.6 1.8 0.9 0.8 0.2 1 0.6 1 3.8 1.3 1.6 1 0.7 0.6 0.7 2.3 0.3 2.3 0.3 1.3-1.1 0.3-0.5 0.8 0.1 2-0.6 2.5-1.1 2.4-0.2 2-0.3 0.8-1.3 1.8-0.2 0.9 0.3 3.5-0.5 3-0.7 1.8-1.5 3.3-0.8 0.7-0.5 1.7 0.1 3.8-0.3 0.3-1.4 0.5-0.9 0.2-1.8 0.6-0.9-0.4-2 0-1.2 1.2-0.2 0.7-0.5 0-1.1 0.9 0.5 0.6 0.1 0.9-0.6 0.1-0.4 0.8 1.9 1.7 0 0.9-0.6 0.6-1 0.3-3 0-1-0.4-1.5-0.1-0.9 0.1-1.5 0.5-1 0.1 0.7 1.2 0 1.1 1.1 0.4-0.2 0.9 0.3 1.2-0.1 1.1 1.1 2.1-0.2 1.6-0.3 0.6-1.1 0.9-0.9-0.3-0.4 0.3-0.6 1.9 0.2 1-1.2 1.5-0.9 0.2-0.5 0.6-0.2 1 0.8 0.9-0.1 0.5-0.8 0.3-0.4-0.5-0.8-0.3-2.4-0.4-1.2 0.2-0.8-0.5-1.7 0-0.7-0.9-1 0.4 0 0.7-0.5 0.9-1.3 0.2-1.7-0.6-0.8-0.7-2.9 1.2-1.1 2.1 0.6 0.7 1 2.1 0 0.6 1.8 3.7 0.5 0.9 0.8 0.4 0.6-0.1 0.3 0.6-0.9 0.2 0 0.5-0.8 1.3 0.6 0.8 0.9 0.4 0.7-0.5 0.3 0.5-0.1 0.8 0.6 1.8-1.4-0.6-1.6 0.1-0.7 0.5-0.7 0-1.9-0.8-0.2 0.5 0 1.7 0.4 0.7 0.5 2.2-0.4 1.2 0 1.9 0.7 1.2 0 0.9 0.7 0.5 0.7 1.6 1.1 0 1.2 0.8 1.7 0.8 3.4 0 1.4-0.3 0.8 0.5 1.3 0.5 0.7 0 1.5-0.3 2.7 1-0.1 1.3-0.4 1.4-0.8 1.2-1 1.9-0.4 1.2 0.6 1.2 0 0.8-1 0.6-0.5 0.6 0.6 0.6 0.6 0.2 0 0.8 1.2 0.1 1.5 1.8 0.6 1.2 1.2 1.5 1.8 2.7 1.1 0.4 0.5 0.6 0.4 1.1-1.8 2.4-0.3 0.2-1.7 2.6-1.7 1.4 0 0.4-0.7 1.3-1.1 0.2-0.5-0.3-0.1-1.5-1.8-0.8-0.8-0.1-0.5 1.2-1 1.2-0.9 0-0.3 1-1.6 1.1-1.6 0-0.6 0.5 0.6 1.4-0.2 0.7-0.6 0.1-0.1 0.9-0.8 0.2-1.3-0.1-1.6 0.5-0.8 1.6-0.4-0.1-0.6-1-1.9-1-1.7-2.1-0.9 0.1-0.2-1-0.5-0.7-0.5-2-0.5-1.1 0-0.6 0.6-0.6-0.1-1.2-1-1.5 0.2-1.3-1.8 1.2-1.6 0-0.5 0.6-0.5 1.4-0.5 0.4-1.2-0.7-0.6-0.1-1.3 0.4-1.2 1.1-0.9-0.2-1 0.6-0.5 0.9-0.1 0.7-0.7 0-0.2 0.2-0.2 0.2-0.7 0.5-1.6 1.5-0.1-0.1-0.2-0.3-0.8-0.8 0.8-1-0.1-1.9 0.7-0.1 2.4-1.8-0.6-0.5-0.2-1.5 0.1-1.1 0.4-0.8-0.3-0.6 0.1-1.1-0.3-0.1-0.4 0-0.3 0-1.9 1.1 0.3 0.7-0.4 0.5-1.7 0.5-0.4 0.8-0.8 0.5-0.6 0-0.1-0.3-0.3-0.2-0.5-0.2-0.1 0-0.1 0-0.5 0.4-0.3 0.9-0.4 0.2-0.3-0.2 0-0.1-0.3-0.4-0.3 0-0.1 0.1-0.3 0.3-0.2 0.2-0.2 0.9-1.2-0.2 0.3 1.1-0.4 0.5-1.6 0-0.2-0.1 0-0.2-0.5-0.8-0.3-1-0.5-0.3-0.6-1.3-0.6-0.6 0.5-2.3 0-0.5-0.6-0.5-0.3 0-0.1 0-0.2 0-0.1-0.1-0.1 0-0.3-0.5-0.1-0.9-1.4-1.1-0.2 0-0.1 0.1-0.2 0-0.2-0.2-0.1-0.1-0.4-0.3-0.9-0.5 0.1-0.7 0.7-0.4 0.2-0.6-1.1-0.9-1.6-1.8-0.6-0.3-0.5 0-0.5-0.3 0 0.3-0.1 0.2-0.1 0.2-0.3 0.5-0.9 0.5-1.1 0.1-0.8 0.9-0.7 0.2-1 1.1-0.9 0.3-0.3-0.3-1 1-0.2 0-0.3-0.1-0.2 0-0.3-0.7-0.3 0.2-0.1 0-0.2 0-0.2-0.1 0-0.1-0.1 0-0.1-0.2-0.1 0-0.2 0.2-0.3 0.1-0.7 0.9-0.1 1.3-0.7 0.4-0.3-0.1-0.1-0.1-0.1-0.1-0.5-1.2-1.1-0.2-0.5-0.8-0.2 0.4-0.2 0.1-0.3 0-0.1-0.2 0-0.1-0.3-0.2 0-0.1 0.1-0.3-0.8-0.7-0.8-0.4-0.2-0.7-0.8 0.5-0.2-1.5-0.3-1-1.2-0.2-0.1 0.1-0.1 0.2-0.7 0.2-0.1-0.1 0-0.1-0.2-0.3-0.3 0-0.8-0.5-0.3 0.1-0.2 0.1-0.7 0.2-0.3-0.2-0.1 0 0-0.1-0.2-0.2-0.5-0.3-0.2-0.2-1.6-1-0.8-1.8-0.2-0.7-0.6-0.9-0.3 0.2-0.2 0.2-0.3-0.1-0.2-0.1-0.2-0.2-1-1.4-0.2-0.8 0.2-0.8 0.5-0.4-0.2-0.8 0.6-0.8-0.3-0.3-0.1 0-0.1 0.1-0.2 0.1 0 0.1-0.1 0.1 0 0.1-0.1 0-0.2-0.1-0.2-0.2-0.2-0.3-0.3-0.1-0.5 0-0.2 0.2-0.4 0-0.3 0-0.2-0.1-0.1-0.2-0.3-0.2 0-0.1 0.1-0.1-0.1-0.1-0.1-0.1-0.1-0.2 0-0.2-0.2-0.1 0-0.2 0.1-0.1 0.1-0.3 0-0.1 0-0.1-0.1-0.1 0-0.1-0.1-0.1 0-0.2-0.3-0.6-0.2 0-0.1 0-0.3 0.1-0.1-0.1-0.2 0-0.2-0.2-0.2-0.1-0.2-0.1 0-0.1 0-0.1 0-0.1 0-0.1-0.2-0.1-0.2-0.1-0.1-0.2 0-0.2 0-0.1-0.1-0.1-0.1-0.1 0-0.3-0.1-0.2-0.1-0.1-0.1-0.1-0.1-0.1-0.1-0.4-0.1-0.2 0-0.1 0.1-0.2 0-0.1-0.1-0.1-0.1-0.1-0.1-0.3 0-0.1 0-0.1 0-0.1-0.1-0.1-0.3-0.1-0.1 0-0.1 0.1-0.1 0.1-0.1 0.1-0.1 0-0.2 0.1-0.1 0.2-0.4 0-0.1-0.1 0-0.1 0-0.3 0-0.2-0.1-0.3 0-0.2-0.2-0.4-0.1 0-0.3 0-0.3 0-0.3-0.2-0.3-0.5-0.1-0.1-0.1-0.1-0.1-0.3-0.2-0.1-0.2 0-0.1-0.1 0-0.2-0.1-0.3 0-0.1-0.1-0.1-0.2 0-0.2 0-0.4-0.5-0.2 0-0.4-0.1-0.1-0.2 0-0.2 0.1-0.1 0.1-0.2-0.1-0.2-0.2-0.2-0.2-0.3-0.1 0-0.1 0.1-0.1 0.2 0 0.4-0.2 0.2-0.3 0.2-0.4-0.1-0.3-0.1-0.2-0.1-0.3-0.2-0.2-0.1-0.2 0-0.1-0.3-0.1-0.3 0.1-0.2 0.1-0.1 0-0.1-0.1-0.1-0.1-0.1-0.3-0.3-0.2-0.3 0-0.2 0-0.1-0.2-0.1-0.2 0-0.2-0.1-0.1 0-0.1-0.1-0.1 0.1-0.1 0.1-0.2 0.1-0.1 0-0.1-0.1-0.1-0.1-0.1-0.1-0.2 0.1-0.1 0.2-0.1 0.2 0.2 1.2-1.6 0.2-0.8 0.6-0.4 0-0.6-1 0.6-0.1 0.2-0.5-0.2-0.5 0.1-0.1 0.4 0 0.1-0.2-0.2-0.4-0.3-0.4 0.1-0.1 1.5-0.6 0-0.3 0.3-0.4-0.5-0.6-0.1-0.1 0.1-0.2-0.1-0.4-0.1-0.5 0.2-0.6 0-0.5-0.3-0.9-0.3-0.3-0.4-0.4-0.6-0.1-0.9-0.1-0.9-0.8-0.6-0.9 0-0.8-0.3-0.3-0.6-0.5-1.4-1.3-0.2-0.4-1.1-1.3-0.2-0.6-0.2-0.4 0.1-0.4-0.3-1.1-0.2-0.3-0.4-0.1-0.4 0-0.7 0-0.1 0.1 0.1 0.3 0 0.4-0.2 0-1.1-0.2-0.9 0-0.5 0.2-0.8 0.1-0.4 0-0.3 0.3-0.1-0.4 0-0.3 0.2-0.4 0.2-0.6-0.2-0.4-0.5 0-0.3-0.2-0.5-0.8-0.3 0.1-0.2 0.1-0.6-0.2-0.7-0.5-0.3-0.6-0.4-0.8-0.1-0.3-0.4-0.4-0.7-0.2-0.4-1.1-0.3-0.5-0.1-0.6 0.2-0.4 0.1-0.5 0-1.4-0.1-0.2-0.2-0.1-0.4 0.1-0.5-0.2-0.3-0.4-2 1.9-0.5-0.7-0.4 0.2-0.7-0.2-0.2-0.4-0.4-0.1-0.2-0.1-0.4 0-0.3-0.3-0.3 0.1-0.1-0.4-0.2-0.4-0.1-0.5-0.1-0.3-0.3-0.4-0.4-0.1-0.2-0.2-0.3 0.3-0.6-0.1-0.9 0-0.2-0.3-0.2-0.5 0-0.3 0.2-0.4 0-0.1-0.3-0.3-0.1-0.4-0.2-0.4 0.2-0.2-0.1-0.3 0.1-0.3-0.4-0.3 0.2-0.2-0.2-0.3 2-3.7-2.2-2.6-0.2-0.1-0.3-0.5-0.2-0.3-0.2-0.1-0.3-0.1-0.1-0.1-0.3 0.2-0.2-0.3-0.1-0.2-0.1-0.1-0.1 0-0.2-0.3-0.1-0.1-0.1 0-0.1-0.1-0.2-0.2-0.2 0-0.3-0.1-0.1 0-0.1-0.2-0.1 0.1-0.2 0.1-0.2-0.1-0.1-0.1 0.2-0.4 0-0.2 0.1-0.1 0.1 0.1 0.1 0 0.2-0.1 0-0.1 0-0.1 0.1-0.1 0-0.2-0.1-0.1 0-0.1-0.1-0.1-0.1 0-0.1 0-0.1 0.1-0.7-0.2-0.3 0-0.3-0.1-0.1 0-0.1-0.1-0.1 0 0 0.3-0.1-0.2 0.7-0.7 0-0.2 0.1-0.2 0-0.1 0.3-0.2 0.1-0.2 0.5-0.2 0-0.1-0.1-0.2 0-0.2-0.1-0.1 0.3-0.3-0.1-0.2 0.1-0.2 0.1-0.1 0-0.1 0-0.2-0.2-0.5-0.2-0.4 0-0.4 0-0.3-0.1-0.2-0.1-0.4 0.1-0.1 0-0.2-0.1-0.1-0.2-0.3-0.1-0.2-0.1 0-0.1-0.1-0.2-0.1 0-0.2-0.4-0.1-0.2-0.2-0.3 0 0-0.1-0.4-0.3-0.3-0.2 0-0.1-0.4 0.1-0.3-0.1-0.2 0.1-0.2-0.1 0-0.4 0.1-0.1-0.2-0.4 0.1-0.3-0.2-0.2-0.2-0.1-0.4-0.2-0.1 0 0-0.2-0.1-0.2-0.3-0.1-0.1-0.5-0.5-0.1-0.3 0.2-0.4 0.1 0.2 0.3 0.2 0 0.1 0.1-0.1 0.1 0 0.2-0.1 0.1-0.1 0.1-0.1 0.1 0 0.2-0.1 0 0 0.2 0.1 0.2-0.1 0.2 0.1 0.4-0.1 0.1 0.1 0.3 0 0.2-0.2 0.1-0.3 0.1 0.1-0.3-0.2-0.2-0.5-0.4-0.6-0.4-0.5-0.3-0.7-0.3-0.9-0.3-0.5 0-0.2 0-0.9-0.4-1-0.4-0.4-0.7-0.5-0.6-0.6-0.3-0.6 0-0.4-0.2-0.6 1.1-0.2-1 0.2-0.6-0.1-0.4 0.1-1.7 0.4-1 0.4-0.9-1.4-0.6-1.4-1.2-1.1-0.3-1.8-1.8-0.4-0.6-0.5 0.4-0.2 0.2-0.5 0.1-0.8 0.5-1.5 0.6-1.6 1.4-1-0.1-0.4-0.1-0.5-0.9-0.4-0.5-0.8 0-1.5-0.7-2-0.3-0.9 0.1-1.5-0.2-0.8 0.1-2.5 0.7-0.2 0.1z" }, names: { "1": "Andaman And Nicobar", "2": "Andhra Pradesh", "3": "Arunachal Pradesh", "4": "Assam", "5": "Bihar", "6": "Chandigarh", "7": "Chhattisgarh", "8": "Dadra And Nagar Haveli", "9": "Daman And Diu", "10": "Delhi", "11": "Goa", "12": "Gujarat", "13": "Haryana", "14": "Himachal Pradesh", "16": "Jharkhand", "17": "Karnataka", "18": "Kerala", "19": "Lakshadweep", "20": "Madhya Pradesh", "21": "Maharashtra", "22": "Manipur", "23": "Meghalaya", "24": "Mizoram", "25": "Nagaland", "26": "Orissa", "27": "Puducherry", "28": "Punjab", "29": "Rajasthan", "30": "Sikkim", "31": "Tamil Nadu", "32": "Tripura", "33": "Uttar Pradesh", "34": "Uttaranchal", "35": "West Bengal", "36": "Jammu And Kashmir", "37": "Telangana", "38": "Ladakh" }, default_regions: {}, proj: "mercator", default_labels: {}, proj_coordinates: [ { x: 50.9, y: 1082.7, lat: 8.27, lng: 69.648 }, { x: 549.9, y: 654.3, lat: 20.4, lng: 84.26 }, { x: 949.1, y: 65.3, lat: 35.562, lng: 95.95 } ], initial_view: { x: -10, y: 1, x2: 1020, y2: 1146 }} /* Map logic - do not edit */ !function(e){var t={};(function(){var e,t,o,i,n,a,r,s,l,c,m,u=this||Function("return this")(),p=function(){"use strict";var e,t,o,i,n,a="linear",r=Date.now||function(){return+new Date},s="undefined"!=typeof SHIFTY_DEBUG_NOW?SHIFTY_DEBUG_NOW:r;function l(){}function c(e,t){for(var o in e)Object.hasOwnProperty.call(e,o)&&t(o)}function m(e,t){return c(t,function(o){e[o]=t[o]}),e}function p(e,t){c(t,function(o){void 0===e[o]&&(e[o]=t[o])})}function d(t,o,i,n,a,r,s){var l,c,m=t0)&&oo(!1,e)},ao=function(e){var t=e.sm.type;"state"==t&&po("over_state",[e.sm.id]),"location"==t&&po("over_location",[e.sm.id]),"region"==t&&po("over_region",[e.sm.id])},ro=function(e){var t=e.sm.type;"state"==t&&po("out_state",[e.sm.id]),"location"==t&&po("out_location",[e.sm.id]),"region"==t&&po("out_region",[e.sm.id])},so=function(e,t){var o=e.sm.type;"state"==o&&po("click_state",[e.sm.id,t]),"region"==o&&po("click_region",[e.sm.id,t]),"location"==o&&po("click_location",[e.sm.id,t])},lo=function(e,t){var o=e.sm.type;"state"==o&&po("preclick_state",[e.sm.id,t]),"region"==o&&po("preclick_region",[e.sm.id,t]),"location"==o&&po("preclick_location",[e.sm.id,t])},co=function(e,t){var o=e.sm.type;"state"==o&&po("zoomable_click_state",[e.sm.id,t]),"region"==o&&po("zoomable_click_region",[e.sm.id,t])},mo=!1,uo=(mo=!1,!1);uo=!1;yi(),oi()}else console.log("The mapdata or mapinfo object is missing or corrupted.");function po(t,o){(a=se[t])&&a.apply(null,o);for(var i=e.plugin_hooks[t],n=0;n-1?_.popup_shadow:1,ee=_.popup_corners?_.popup_corners:5,te="yes"==_.popup_nocss,J=!!_.popup_maxwidth&&_.popup_maxwidth,oe=_.popup_font?_.popup_font:"12px/1.5 Verdana, Arial, Helvetica, sans-serif",V="no"!=_.zoom_out_incrementally,W=_.adjacent_opacity?_.adjacent_opacity:.3,S=_.zoom_time?_.zoom_time:.5,B=_.zoom_increment?_.zoom_increment:2,O="no"!=_.zoom_mobile,D=_.fade_time?1e3*_.fade_time:200,q=i.labels,F=_.custom_shapes?_.custom_shapes:{},j=!(!_.initial_back||"no"==_.initial_back)&&_.initial_back,H="yes"==_.hide_eastern_labels,N=_.link_text?_.link_text:"View Website",!!_.order_number&&_.order_number,R=_.zoom_percentage?_.zoom_percentage:.99}function ho(e){return"on_click"==e||!("detect"!=e||!me)}function fo(e){return"off"==e}function vo(e){if(he.style.width="",fe.style.width="",b?((xe=he.offsetWidth)<1&&(xe=he.parentNode.offsetWidth),fe.style.width=xe+"px"):(xe=void 0===_.width?800:_.width,he.style.width=xe+"px"),xe*=1,n.calibrate?((Ee={}).x=-1*n.calibrate.x_adjust,Ee.y=-1*n.calibrate.y_adjust,Ee.x2=Ee.x+n.calibrate.width,Ee.y2=(Ee.x2-Ee.x)/n.calibrate.ratio):Ee=n.initial_view,ze=Ee.x2-Ee.x,Me=Ee.y2-Ee.y,we=xe/(Te=ze/Me),Ae=ze/1e3,_e.style.height=we+"px",!e){if(ke=xe/ze,Ce=1,y){var t=[];for(var i in n.state_bbox_array){var a=n.state_bbox_array[i];t.push(a)}var r=o.bbox_union(t),s=.5*(r.x2+r.x)*ke,l=.5*(r.y2+r.y)*ke;be="r"+y+","+s+","+l;var c=o.rotate_bbox(Ee,be);ze=c.width,Me=c.height}je="s"+ke+","+ke+",0,0",Re=y?je+be:je}}function yo(){if(r)if(location.hostname.match("simplemaps.com"))r=!1;else{if(Lt){if(Math.random()>.05)return;o.delete_element(Lt)}Lt=document.createElement("div");var e=s||l?"20px":"5px";Lt.style.cssText="overflow: visible !important; clip-path: none !important; display:inline !important; opacity:1 !important; transform: none !important; visibility: visible !important; z-index: 1 !important; right: 5px !important; bottom:"+e+" !important; z-index: 1 !important; position: absolute !important; filter: opacity(1) !important;",_e.appendChild(Lt),Lt.innerHTML='Simplemaps.com Trial',ne||503!=Lt.innerHTML.length&&(_e.innerHTML="")}}function go(){var t,o,i=_.navigation_color?_.navigation_color:"#f7f7f7",n=_.navigation_border_color?_.navigation_border_color:"#636363",a=_.navigation_opacity?_.navigation_opacity:.8,r=_.arrow_color?_.arrow_color:i,s=_.arrow_color_border?_.arrow_color_border:n,l=_.arrow_border_color?_.arrow_border_color:s,u=void 0===_.navigation_size?40:_.navigation_size,p=void 0===_.navigation_size_mobile?pe*u:_.navigation_size_mobile,d=me?p:u,h="yes"==_.arrow_box?1:0,f=d*=1,v=.1*d,y=d/10;!function(){Ze=Se.set();var s=d,u=d;if(c){var p=new Image;p.onload=function(){t=p.width,o=p.height,_()},p.src=c}else _();function _(){if(c){var p=(Ue=Raphael(de,t,o)).image(c,0,0,t,o);f=o,p.attr({cursor:"pointer"}),Ze.push(p),Ze.click(Pt)}else{Ue=Raphael(de,s,u);var _=Ue.path(m.rounded_box).attr({fill:r,"stroke-width":1,stroke:l,"stroke-opacity":h,"fill-opacity":0,cursor:"pointer"}),b={stroke:l,"stroke-width":1.5,"stroke-opacity":1,fill:r,"fill-opacity":1,cursor:"pointer"},k=Ue.path(m.arrow).attr(b);(Ze=Se.set()).push(_,k);var M="S"+y+","+y+",0,0 T0,0";Ze.transform(M)}j||Ze.hide(),de.style.left=v+"px",de.style.top=v+"px",g&&function(){Ke=Raphael(ve,d,2*d+v);var t=m.plus,o=m.minus,r=m.rounded_box,s=Ke.path(r).attr({fill:i,"stroke-width":1,stroke:n,"stroke-opacity":1,"fill-opacity":a,cursor:"pointer"}),l=Ke.path(t).attr({"stroke-width":0,"stroke-opacity":0,fill:n,"fill-opacity":1,opacity:1,cursor:"pointer"});(Ge=Se.set()).push(s,l);var c="S"+y+","+y+",0,0 T0,0";Ge.transform(c);var u=Ke.path(r).attr({fill:i,"stroke-width":1,stroke:n,"stroke-opacity":1,"fill-opacity":a,cursor:"pointer"}),p=Ke.path(o).attr({"stroke-width":0,"stroke-opacity":0,fill:n,"fill-opacity":1,opacity:1,cursor:"pointer"});(Je=Se.set()).push(u,p);var c="S"+y+","+y+",0,0 T0,"+(d+v);function _(e,t){if(void 0===t&&(t="z"),z&&"region"!=z.sm.type)Ot.call(z,!0,function(){z=!1,_(e)});else{if("z"==t&&!function(e){var t=yt.sm.zooming_dimensions.w/e,o=e<1;if(-1!=x&&("manual"==yt.sm.type||w)){var i=vt[x].sm.zooming_dimensions.w,n=t>i-1;if(o&&n){var a=Po(yt,vt[x]);if(a||w)return Bo(vt[x]),!1}}if(o&&t>vt[-1].sm.zooming_dimensions.w-1)return w||Bo(vt[-1]),!1;return!0}(e))return;var o={sm:{type:"manual",zp:1}};dt&&((yt={sm:{type:"manual",zp:1}}).sm.zooming_dimensions=_t,yt.sm.bbox={x:_t.x/ke,y:_t.y/ke,width:_t.w/ke,height:_t.h/ke});var i=function(e,t){var o=yt.sm.zooming_dimensions.w,i=yt.sm.zooming_dimensions.h,n=yt.sm.zooming_dimensions.x,a=yt.sm.zooming_dimensions.y;if("x"==t)var n=yt.sm.zooming_dimensions.x+yt.sm.zooming_dimensions.w*e;else if("y"==t)var a=yt.sm.zooming_dimensions.y+yt.sm.zooming_dimensions.h*e;else var o=yt.sm.zooming_dimensions.w/e,i=yt.sm.zooming_dimensions.h/e,n=yt.sm.zooming_dimensions.x+(yt.sm.zooming_dimensions.w-o)/2,a=yt.sm.zooming_dimensions.y+(yt.sm.zooming_dimensions.h-i)/2;return{x:n,y:a,w:o,h:i,r:o/(ze*ke)}}(e,t);if(!i)return;o.sm.zooming_dimensions=i,Bo(o)}}Je.transform(c),ve.style.top=f+2*v+"px",ve.style.left=v+"px",(Je=Se.set()).push(u,p),$e=function(){_(B)},tt=function(e,t){_(e,t)},et=function(){_(1/B)},e.zoom_in=$e,e.zoom_out=et,Ge.click($e),Je.click(et),Ge.touchend($e),Je.touchend(et)}()}}()}function bo(){lt=i.locations,ot=[],it=[],rt=[],st=[],nt=[],ut=[];!function(){var e={color:!1,hover_color:!1};if(e.opacity=_.region_opacity?_.region_opacity:1,e.hover_opacity=_.region_hover_opacity?_.region_hover_opacity:.6,e.url=!1,e.description=!1,e.description_mobile=!1,e.inactive=!1,e.zoomable=!0,e.hide_name="yes"==_.region_hide_name,e.popup=_.region_popups?_.region_popups:ue,e.cascade="yes"==_.region_cascade_all,e.zoom_percentage=R,e.x=!1,e.y=!1,e.x2=!1,e.y2=!1,E)for(var t in E)for(var o=0;oo.to_float(n[1]))return!1;var a=/lat[ ]?>[-]?(\d+[\.]?\d+)/g.exec(d);if(a&&eo.to_float(r[1]))return!1;var s=/lng[ ]?>[-]?(\d+[\.]?\d+)/g.exec(d);return!(s&&eTe?(a-=(m*(t=r/c)-s)/2,s=r/Te):(n-=(c*(t=s/m)-r)/2,r=s*Te),{x:n,y:a,w:r,h:s,r:t}}function ko(e){if(e){qe.stop();for(var t=0;t-1;return i}if(Raphael.isPointInsideBBox(t.sm.bbox,o.x,o.y))return!0;return!1}(e,t);if("state"==i&&"state"==a)return function(e,t){var o=e.sm.point0;if(e.sm.display_ids){var i=e.sm.display_ids.indexOf(t.sm.id)>-1;return i}if(Raphael.isPointInsideBBox(t.sm.bbox,o.x,o.y)){var a=n.paths[t.sm.id];if(Raphael.isPointInsidePath(a,o.x,o.y))return!0}return!1}(e,t);var r=o.to_float(i);return!!(r&&Ceo.sm.scale_limit?Ce:o.sm.scale_limit)*ke),t))})}(e,t),function(e,t){for(var o in Xe.hide(),bt){var i=bt[o];if(!i.sm.hide){if(Eo(i,e)&&xt[i.sm.id].show(),i.sm.line){var n=qo(i);i.sm.line.attr({path:n,transform:Re})}if(i.sm.scale){var a=Wo(i,(Ce>i.sm.scale_limit?Ce:i.sm.scale_limit)*ke);Ao(i,a,t),i.sm.pill&&Ao(kt[i.sm.id],a,t)}}}}(e,t),o.x_in_array(i,["state","region","out"])&&Mo(),"region"==i?ko(e):"state"==i?ko(vt[e.sm.region]):"manual"==i&&We.forEach(function(e){-1!=e.sm.id&&(e.sm.zooming_dimensions.r>Ce&&e.sm.zoomable?ko(e):zo(e))}),"out"!=i&&"manual"!=i?(qe.stop(),He.stop(),qe.attr({"fill-opacity":W}),He.attr({"fill-opacity":W}),e.stop(),e.attr({"fill-opacity":1}),e.sm.labels.forEach(function(e){e.sm&&e.sm.pill&&(e.sm.pill.stop(),e.sm.pill.attr({"fill-opacity":1}))}),e.animate({"stroke-width":e.sm.border_hover_size*(xe/ze)*Ae*1.25},1e3*S)):(qe.attr({"fill-opacity":1}),He.attr({"fill-opacity":1})),qe.animate({"stroke-width":Z*(xe/ze)*Ae*1.25},1e3*S)}function To(e){if(w&&"-1"!=x&&"region"==e.sm.type){if(!j)return;Ze.show()}else"state"==e.sm.type||"region"==e.sm.type||j?Ze.show():g&&"out"!=e.sm.type&&Ze.show()}function So(e){return{x:e.x,y:e.y,w:e.w,h:e.h}}function Oo(){z.sm&&M&&(jt.hide(),M=!1,z.sm&&Ot.call(z),re=!1)}function Bo(i,n,a){if(!Ht){Oo(),$t&&($t.stop(),$t=!1),Kt&&i!=Kt&&Ot.call(Kt),z=!1,i,jt.hide(),M=!1,Ht=!0,i.sm.zooming_dimensions=wo(i);var r=So(i.sm.zooming_dimensions),s=So(yt.sm.zooming_dimensions);if(Ce=i.sm.zooming_dimensions.r,Co(i,n),ie||me&&!O||n)_t=r,Se.setViewBox(r.x,r.y,r.w,r.h,!1),c();else{var l=t.Tweenable?new t.Tweenable:new Tweenable;dt=l.tween({from:s,to:r,duration:1e3*S,easing:"easeOutQuad",step:function(e){!function(e){_t=e,Se.setViewBox(e.x,e.y,e.w,e.h,!1)}(e)},finish:function(){c()}})}}function c(){To(i),yt=i,Ht=!1,re=!1,e.zoom_level=yt.sm.type,e.zoom_level_id=!!yt.sm.id&&yt.sm.id,po("zooming_complete",[]),o.isFunction(a)&&a()}}function Fo(e){var t="",o={};for(var i in n.paths){var a=n.paths[i];a=Raphael._pathToAbsolute(a);var r,s=Raphael.pathBBox(a);r=s.x2-s.x<10?10:1;var l=Math.round(s.x*r)/r,c=Math.round(s.y*r)/r,m=Math.round(s.y2*r)/r;t+="'"+i+"':{x: "+l+",y:"+c+",x2:"+Math.round(s.x2*r)/r+",y2:"+m+"},",o[i]=s}return t=t.substring(0,t.length-1),t+="}",e||console.log("The new state_bbox_array is: \n\n{"+t),o}function Io(e){var t=e.sm.description,i=ie?'X':'Close';i='
    '+i+"
    ";var n=e.sm.url?e.sm.url:"",a=n,r="javascript:"==a.substring(0,11),s='return (function(e){window.open("'+n+'","_blank"); return false})()',l=r?'return (function(){window.location.href="'+n+'"; return false;})()':'return (function(){window.top.location.href="'+n+'"; return false;})()',c=o.replaceAll(a,"'",'"'),m=X?s:l;r&&(m="(function(){"+c+"})()");var u=e.sm.description_mobile?e.sm.description_mobile:'";e.sm.on_click||(i="",u=""),""!=e.sm.url||e.sm.description_mobile||(u="");var p=""==t?p="":'
    '+t+"
    ";return'
    '+(!!e.sm.hide_name?"":'
    '+e.sm.name+"
    ")+i+'
    '+p+u+"
    "}function Po(e,t){var o=e.sm.zooming_dimensions;if(o.w>t.sm.zooming_dimensions.w)return!1;var i=t.sm.bbox,n=i.x*ke,a=i.y*ke,r=i.x2*ke,s=i.y2*ke,l=o.x+o.w/2,c=o.y+o.h/2;return l>n&&c>a&&l1?e>w?1:e/w:o>k?1/z:o/k/z:b&&(n=i/z,n=i>z?n:1/n):n>1&&(n=t.image_size*Ae/w),n}(),s=w*r,l=s/i,c=0,u=0;if(v?(n=r,a=r*z/i):g?(n=1,a=1,c=t.image_x*w,u=t.image_y*k):b&&(n=1,a=1,c=.5*(w-s),u=.5*(k-l)),d.setAttribute("x",0),d.setAttribute("y",0),d.setAttribute("width",w),d.setAttribute("height",k),d.setAttribute("fill",_),d.setAttribute("opacity","1"),m.setAttribute("y",0),m.setAttribute("x",0),m.setAttribute("y",0),m.setAttribute("width",n),m.setAttribute("height",a),p.setAttribute("x",c),p.setAttribute("y",u),p.setAttribute("width",s),y){var h=c+.5*s,x=u+.5*l;p.setAttribute("transform","rotate(-"+y+","+h+","+x+")")}p.setAttribute("height",l)}),'url("#'+m.id+'")'}function jo(e){e||({},ft={}),Vt=n.state_bbox_array;var t=Z*ke*Ae*1.25;for(var o in ht=function(e){var o=!ft[e],i=ot[e],a=i.path?i.path:n.paths[e],r=o?Se.path(a):ft[e];o&&(r.sm={id:e}),ie||r.node.setAttribute("class","sm_state_"+e);var s={fill:i.color,opacity:i.opacity,stroke:i.border_color,cursor:"pointer","stroke-opacity":1,"stroke-width":t,"stroke-linejoin":"round"},l=i.border_hover_color?i.border_hover_color:_.border_color,c=i.border_hover_size?i.border_hover_size:Z,m=c*ke*Ae*1.25,u={opacity:i.hover_opacity,fill:i.hover_color,stroke:l,"stroke-width":m};if(r.sm.image=!1,i.image_url&&!ie){var d=Ro(r,{hover:!1,image_url:i.image_url,image_size:i.image_size,image_position:i.image_position,image_x:i.image_x,image_y:i.image_y,image_color:i.image_color,bg_opacity:i.image_background_opacity});if(r.sm.image=!0,s.fill=d,i.image_hover_url){d=Ro(r,{hover:!0,image_url:i.image_hover_url,image_size:i.image_hover_size,image_position:i.image_hover_position,image_x:i.image_hover_x,image_y:i.image_hover_y,image_color:i.image_hover_color,bg_opacity:i.image_background_opacity});u.fill=d}else u.fill=d}i.inactive&&(s.cursor="default"),i.image_source&&(r.sm.ignore_hover=!0,s.fill="url("+p+i.image_source+")"),(i.border_hover_color||i.border_hover_size)&&i.emphasize?r.sm.emphasizable=!0:r.sm.emphasizable=!1,r.sm.border_hover_size=c,r.attr(s),r.transform(Re),r.sm.attributes=s,r.sm.over_attributes=u,r.sm.description=i.description,r.sm.adjacent_attributes={"fill-opacity":W},r.sm.hide=i.hide,r.sm.hide_label=i.hide_label,r.sm.hide_name=i.hide_name,o&&(r.sm.region=!1),r.sm.name=i.name?i.name:n.names[e],r.sm.name||(r.sm.name=e),r.sm.url=i.url,r.sm.inactive=i.inactive,r.sm.on_click=ho(i.popup),r.sm.popup_off=fo(i.popup),r.sm.labels=[],r.sm.zp=i.zoom_percentage,r.sm.zoomable=i.zoomable,r.sm.description_mobile=i.description_mobile,r.sm.type="state",r.sm.hide_labels=i.hide_label,r.sm.content=Io(r);var h=Vt[e];h||(h=Raphael.pathBBox(n.paths[e]));var f={x:h.x,x2:h.x2,y:h.y,y2:h.y2};r.sm.bbox=f,r.sm.bbox.width=f.x2-f.x,r.sm.bbox.height=f.y2-f.y,r.sm.pulse_speed=i.pulse_speed,r.sm.pulse_size=i.pulse_size,r.sm.pulse_color=i.pulse_color?i.pulse_color:i.border_color,r.sm.hide?r.hide():o&&Be.push(r),o&&(ft[e]=r,qe.push(r))},at)ht(o);ht[-1],qe.hide()}function No(){Le.attr({fill:_.background_color,"fill-opacity":Y,stroke:"none"})}function Lo(e){if(e||(vt={}),E)for(var t in E){var i=nt[t],n=E[t],a=e?vt[t]:Se.set();if(!e){if(a.sm={},a.sm.states=[],vt[t]){console.log("Duplicate Regions");continue}for(var r=[],s=0;sk.x&&Ok.y&&Bn.sm.zooming_dimensions.r||!n.sm.zoomable?n:t:void 0:t}function Qo(t){var o=e.zoom_level,i=e.zoom_level_id;if("state"==o)return i!=t.sm.id;if("region"!=o)return!1;var n=!!t.sm.region&&vt[t.sm.region];return!n||i!=n.sm.id&&void 0}function Xo(e,t,o,i){e.sm.labels&&e.sm.labels.forEach(function(e){if(e.sm){var n=e.sm.pill;"over"==t?(e.stop(),Ut(e,"over"),n&&Zt(n,"over")):"reset"!=t&&"out"!=t||(Ut(e,"out"),n&&(Zt(n,"out",i),o&&Zt(n,"adjacent",i)))}})}function Uo(){Bt=function(){this.sm.parent&&St.call(this.sm.parent)},Ft=function(){this.sm.parent&&Ot.call(this.sm.parent)},Ct=function(e){this.sm.parent&&Tt.call(this.sm.parent,e)},Et=function(e,t){if(e.sm.pulse||t){var o=e.sm.shape_type;if(!("location"!=e.sm.type||"image"==o||Ce<.05)){var i=e.clone();Ve.toFront(),Fe.toFront();var n=1*e.sm.pulse_size,a={"stroke-width":4*e.attrs["stroke-width"],"stroke-opacity":0};i.attr({"fill-opacity":0,stroke:e.sm.pulse_color});var r=e.sm.scale?Ce:1,s=.5*(n-1)*e.sm.size*r*ke,l="bottom-center"==e.sm.position?Wo(e,r*ke*n,"0,"+s):Wo(e,r*ke*n);a.transform=l,i.animate(a,1e3*e.sm.pulse_speed,"ease-out",function(){i.remove()})}}},At=function(e){if(!ie||!ne)for(var t=Array.isArray(e)?e:[e],o=0;o1){Wt=!0;var i=function(e){var t={x:e.touches[0].pageX,y:e.touches[0].pageY},i={x:e.touches[1].pageX,y:e.touches[1].pageY};return o.distance(t,i)}(t);if(e){var n=i-e;Math.abs(n)>10&&(n>0?$e():et(),e=i)}else e=i}}o.addEvent(fe,"touchstart",t),o.addEvent(fe,"touchmove",t),o.addEvent(fe,"touchend",function(t){e=!1,setTimeout(function(){Wt=!1},100)})}function Jo(){qe.toBack(),Qe.toBack(),Ne.toBack(),Ie&&Ie.toFront(),Xe.toFront(),Ve.toFront(),Fe.toFront()}function Ko(e){if(!e){ae?(qe.mouseup(Tt),Ne.mouseup(eo),Ze.mouseup(Pt),Ne.mouseup(si)):(qe.hover(St,Ot),qe.click(Tt),Ne.click(eo),Ze.click(Pt),Ne.hover(si,si)),b&&function(){function e(){$o()}var t;Rt=function(){clearTimeout(t),t=setTimeout(e,300)},window.addEventListener?(window.addEventListener("resize",Rt,!1),window.addEventListener("orientationchange",Rt,!1)):(window.attachEvent("resize",Rt,!1),window.attachEvent("orientationchange",Rt,!1));ie&&(document.body.onresize=function(){e()})}(),g&&(qe.touchstart(Tt),qe.touchend(Tt),Ze.touchend(It),function(){function e(e){var o=Zo(e),a=o.x,r=o.y,s=(i-a)*t.r,l=(n-r)*t.r,c=5*t.r;return(Math.abs(s)>c||Math.abs(l)>c)&&(qt=!0),{x:t.x+s,y:t.y+l,w:t.w,h:t.h,r:t.r}}var t,i,n,a=!1;function r(e){if(M)return!1;e.preventDefault?e.preventDefault():e.returnValue=!1,t={x:_t.x,y:_t.y,w:_t.w,h:_t.h,r:_t.w/ze/ke},a=!0;var o=Zo(e);i=o.x,n=o.y,jt.hide(),jt.pos(e,{l:i,u:n})}function s(t){if(a&&!(t.touches&&t.touches.length>1)){var o=e(t);Se.setViewBox(o.x,o.y,o.w,o.h)}}function l(t){if(!a||!qt)return qt=!1,void(a=!1);var o=e(t);Se.setViewBox(o.x,o.y,o.w,o.h),_t=o,(yt={sm:{}}).sm.zooming_dimensions=_t,yt.sm.type="manual",a=!1,setTimeout(function(){qt=!1},1),Ze.show()}o.addEvent(_e,"mousedown",r),o.addEvent(_e,"mousemove",s),o.addEvent(_e,"mouseup",l),o.addEvent(_e,"mouseleave",l),o.addEvent(_e,"touchstart",r),o.addEvent(_e,"touchmove",s),o.addEvent(_e,"touchend",l)}(),Go()),he.mouseIsOver=!1,he.onmouseover=function(){this.mouseIsOver=!0},he.onmouseout=function(){this.mouseIsOver=!1},he.onwheel=function(e){he.mouseIsOver&&g&&A&&(e.preventDefault(),e.deltaY<0?$e():et())},o.addEvent(document,"keyup",function(e){if("auto"==f){var t=fe.contains(document.activeElement);ye.style.display=t?"block":"none"}})}Ye.hover(St,Ot),Ye.click(Tt),Xe.hover(Bt,Ft),Xe.click(Ct),g&&(Ye.touchend(Tt),Ye.touchstart(Tt),Xe.touchend(Ct))}function $o(){if(!(he.offsetWidth<1)){vo(!0),Se.setSize(xe,we);var e=Z*(xe/ze)*Ae*1.25;qe&&Ye&&(qe.forEach(function(t){t.attr({"stroke-width":e}),t.sm.attributes["stroke-width"]=e,t.sm.over_attributes["stroke-width"]=t.sm.border_hover_size*(xe/ze)*Ae*1.25}),Ye.forEach(function(e){"image"!=it[e.sm.id].type&&(e.sm.attributes["stroke-width"]=it[e.sm.id].border*(xe/ze)*Ae*1.25,e.sm.over_attributes["stroke-width"]=it[e.sm.id].hover_border*(xe/ze)*Ae*1.25,e.attr({"stroke-width":e.sm.attributes["stroke-width"]}))}),Oe.forEach(function(e){var t=e.sm.size*(xe/ze)*Ae*1.25;e.attr({"stroke-width":t})}),Ie.forEach(function(e){var t=e.sm.size*(xe/ze)*Ae*1.25;e.attr({"stroke-width":t})})),yo(),pt=J||(xe/2>250?xe/2:250)}}function ei(e){var t=v?vt[-2]:vt[x],o=vt[x];if(j||Ze.hide(),!e){if(Qt)var i=Qt;else if(gt)i=gt;else i=t;Bo(i,!Qt&&!gt||!v)}if(w&&-1!=x){Ne.show(),j||Ze.hide();for(var n=0;n8}())?alert("The continent map can't be used with other data."):(_o(),function(){if(he=document.getElementById(ce),fe=!!document.getElementById(ce+"_holder")&&document.getElementById(ce+"_holder")){he.removeChild(fe);var e=document.getElementById("tt_sm_"+ce);e&&e.parentNode.removeChild(e)}fe=document.createElement("div"),de=document.createElement("div"),ye=document.createElement("div"),ve=document.createElement("div"),_e=document.createElement("div"),ge=document.createElement("div"),de.id=ce+"_outer",ve.id=ce+"_zoom",ye.id=ce+"_access",ge.id=ce+"_legend",_e.id=ce+"_inner",fe.id=ce+"_holder",fe.style.position="relative",fe.setAttribute("tabIndex",0),fe.style.outline="none",_e.style.position="relative",de.style.position="absolute",ve.style.position="absolute",ye.style.position="absolute",ye.style.maxWidth="75%",ge.style.position="absolute",ve.style.zIndex="1",de.style.zIndex="1",ye.style.zIndex="1",ye.style.display="yes"==f?"block":"none",ge.style.zIndex="1",he.appendChild(fe),fe.appendChild(ve),fe.appendChild(de),fe.appendChild(ye),fe.appendChild(ge),fe.appendChild(_e)}(),vo(),function(){if(Se=Raphael(_e,xe,we),Ne=Se.set(),Le=Se.rect(Ee.x-2*ze,Ee.y-2*Me,5*ze,5*Me),C){C.indexOf("/osm/noattr/")>-1&&(l=!0);var e=T||Ee;De=Se.image(C,e.x,e.y,e.x2-e.x,e.y2-e.y),Ne.push(De)}Ne.push(Le),Ne.transform(je),Ne.hide(),qe=Se.set(),Be=Se.set(),We=Se.set(),Ye=Se.set(),Ve=Se.set(),Qe=Se.set(),Xe=Se.set(),Fe=Se.set(),Pe=Se.set(),Ie=Se.set(),He=Se.set(),Oe=Se.set(),Se.set().push(qe,Ye,Ne,Xe,Ie)}(),yo(),function(){(Dt=document.createElement("div")).style.cssText="overflow: visible !important; clip-path: none !important; display:inline !important; opacity:1 !important; transform: none !important; visibility: visible !important; z-index: 1 !important; right: 5px !important; bottom: 5px !important; z-index: 1 !important; position: absolute !important; filter: opacity(1) !important;",_e.appendChild(Dt);var e="font: 12px Verdana, Arial, Helvetica, sans-serif !important; cursor: pointer !important; float: right !important; color: #000000 !important; text-decoration: none !important;";if(l){var t=document.createElement("a");t.href="https://www.openstreetmap.org/copyright",t.title="Background © OpenStreetMap contributors",t.innerHTML=s?"| OSM":"© OSM",t.style.cssText=e,t.style.marginLeft=".5em",Dt.appendChild(t)}if(s){var o=document.createElement("a");o.style.cssText=e,o.href="https://simplemaps.com",o.title="Built with with SimpleMaps",o.innerHTML="© Simplemaps.com",Dt.appendChild(o)}}(),te||function(){if(!Yt){var e=s(["borderRadius","MozBorderRadius","WebkitBorderRadius"]),t=e?e+": "+(me?2*ee:ee)+"px;":"";pt=J||(xe/2>250?xe/2:250);var i=s(["boxShadow","MozBoxShadow","WebkitBoxShadow"]),n=i?i+": "+3*$+"px "+3*$+"px "+4*$+"px rgba(0,0,0,.5);":"";if($<.01&&(n=""),me){var a=/(\d+)(px|em)(.*)/g.exec(oe);oe=parseFloat(a[1])*pe+a[2]+a[3]}var r=".tt_mobile_sm{margin-top: .4em;} .tt_sm{"+t+n+"z-index: 1000000; background-color: "+G+"; padding: .6em; opacity:"+K+"; font: "+oe+"; color: black;} .tt_name_sm{float: left; font-weight: bold} .tt_custom_sm{overflow: hidden;}";r+=".btn_simplemaps{color: black;text-decoration: none;background: #ffffff;display: inline-block;padding: .5em .5em;margin: 0; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; line-height: 1.43;text-align: center;white-space: nowrap;vertical-align: middle;-ms-touch-action: manipulation;touch-action: manipulation;cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;border: 1px solid;border-radius: .3em;} .btn_simplemaps:hover{ text-decoration: underline;}",r+=".xmark_sm{float: "+(ie?"left":"right")+"; margin-left: .5em; cursor: pointer; line-height: 0px; width: 1.3em !important;}",o.new_style(r),Yt=!0}function s(e){for(var t=document.documentElement,o=0;o0?.5*(xe-D):0,a=we-N>0?.5*(we-N):0;B.style.top=a+"px",B.style.left=n+"px",B.style.right="auto",B.style.bottom="auto"}else{if(O=0+.5*we,t>(S=0+.5*xe)&&e>O)r=4;else if(tO)r=3;else if(t>S&&e-61&&c<61){s.x<=l.x&&(c*=-1);var m=Raphael.transformPath(r,"R"+c+","+s.x+","+s.y+"S2").toString(),u=Raphael.transformPath(r,"R-90S2").toString(),p=Raphael.pathIntersection(m,u)[0];r="M "+s.x+","+s.y+" C"+s.x+","+s.y+","+p.x+","+p.y+","+l.x+","+l.y}}}var d=r||o.path,_=Se.path(d);_.transform(Re),_.attr({stroke:n.color,fill:"none",cursor:"pointer","stroke-dasharray":[n.dash],"stroke-width":a,"stroke-linejoin":"round","stroke-miterlimit":4}),_.sm={},_.sm.size=n.size,_.sm.bbox=_.getBBox(!0),ie||_.node.setAttribute("class","sm_line_"+t),Ie.push(_)}Ie.hide()}}(),function(){ye.style.right="0em",ye.style.top="0em";var e=void 0===_.navigate_title?"Navigate":_.navigate_title,t=void 0===_.keyboard_omit?"":_.keyboard_omit;if(!(t.indexOf("navigat")>-1)){var i=document.createElement("select");i.options.add(new Option(e,"-1")),i.options.add(new Option("Back","back")),g&&(i.options.add(new Option("Zoom in","in")),i.options.add(new Option("Zoom out","out")),i.options.add(new Option("Left","left")),i.options.add(new Option("Right","right")),i.options.add(new Option("Up","up")),i.options.add(new Option("Down","down"))),i.style.marginRight=".5em",i.style.marginTop=".5em",i.style.float="left",ye.appendChild(i),i.onchange=function(e){if("-1"==this.value)return!1;"back"==this.value&&It(),"out"==this.value&&et(),"in"==this.value&&$e(),"left"==this.value&&tt("-.25","x"),"right"==this.value&&tt(".25","x"),"up"==this.value&&tt("-.25","y"),"down"==this.value&&tt(".25","y"),setTimeout(function(){i.value="-1"},1e3)}}var n=void 0===_.states_title?"States":_.states_title,a=void 0===_.regions_title?"Regions":_.regions_title,r=void 0===_.locations_title?"Locations":_.locations_title,s={state:{title:n,array:ft},location:{title:r,array:zt},region:{title:a,array:vt}};for(var l in s){var c=s[l],m=t.indexOf(l)>-1,u=Object.size(c.array);if(!(u<1||u<2&&"region"==l||m)){var p=document.createElement("select");p.options.add(new Option(c.title,"-1")),p.style.marginRight=".5em",p.style.marginTop=".5em",p.style.float="left";var d=[];for(var h in c.array)d.push(c.array[h]);var f=d.sort(function(e,t){e.sm.name,t.sm.name});for(h=0;h-1?(r.setAttribute("stroke-width","10"),n.setAttribute("viewBox","0 0 100 100"),n.setAttribute("width","100"),n.setAttribute("height","100")):["diamond","star"].indexOf(o.shape)>-1?(n.setAttribute("viewBox","-.5 -.6 1 1.2"),n.setAttribute("height","1.8")):["triangle"].indexOf(o.shape)>-1?(n.setAttribute("viewBox","-.6 -.7 1.2 1.1"),n.setAttribute("width","1.8"),n.setAttribute("height","1.8")):["heart"].indexOf(o.shape)>-1?(n.setAttribute("viewBox","-.7 -.5 1.3 1"),n.setAttribute("width","2")):["marker"].indexOf(o.shape)>-1&&(n.setAttribute("viewBox","-.6 -.9 1.1 .8"),n.setAttribute("width","1.7"),n.setAttribute("height","1.7")),r.setAttribute("fill",o.color),r.setAttribute("stroke","white"),n.appendChild(r),i.appendChild(n);var l=document.createTextNode(o.name);i.appendChild(l),t.appendChild(i)}}();var l=fe.getElementsByClassName("sm_legend_item");for(r=0;r-1&&e[t].push(a):a.sm.attributes.fill!=o.color||a.sm.hide||e[t].push(a)}}}(),Mo(),Jo(),jt.create(),Uo(),Ko(),ei(),gi(),po("complete",[]),o.isFunction(t)&&t(),no()},1))}function ii(e,t){Bo(vt[e],!1,t)}function ni(e,t){Bo(ft[e],!1,t)}function ai(e,t,o){void 0===t&&(t=4),void 0===o&&(o=function(){}),Bo({sm:{type:"manual",zp:t,bbox:e}},!1,function(){o(),Ze.show()})}function ri(e,t,o){void 0===t&&(t=4),void 0===o&&(o=function(){});var i={sm:{type:"manual",zp:t}},n=zt[e],a=n.sm.size*ke*t,r=a*Me/ze,s=n.sm.x-.5*a,l=n.sm.y-.5*r,c=a/(ze*ke);i.sm.zooming_dimensions={x:s,y:l,w:a,h:r,r:c},Bo(i,!1,function(){o(),Ze.show()})}function si(){Kt&&Ot.call(Kt),k&&(k=!1,re||(jt.hide(),M=!1))}function li(t,o,i){if(void 0===i&&(i=function(){}),"state"==t)var n=ft[o];else if("region"==t)n=vt[o];else n=zt[o];var a=n.sm.on_click,r=yt.sm.zooming_dimensions;if("location"!=t){var s=n.sm.bbox,l=.5*(s.x+s.x2),c=.5*(s.y+s.y2);l*=ke,c*=ke}else l=n.sm.x,c=n.sm.y;var m=(l-r.x)/Ce,u=(c-r.y)/Ce,p=m>1.1*xe||u>1.1*we,d=!n.sm.region&&"region"==e.zoom_level;return p||d?ii("-1",function(){li(t,o,i)}):n.sm.region&&"out"==e.zoom_level?ii(n.sm.region,function(){li(t,o,i)}):(k=!0,a?Tt.call(n):St.call(n),jt.reset_pos(m,u,n),h=!0,k=!1,i(),!0)}function ci(e){var t=zt[e];t&&Et(t,!0)}function mi(){jt.hide(),M=!1,re?Ot.call(z):Kt&&Ot.call(Kt)}function ui(e,t){ct(e);var i=ft[e].sm.labels;ht(e);for(var n=0;n https://www.planindia.org/wp-content/uploads/map_data/mapdata-mobile.js var simplemaps_countrymap_mapdata={ main_settings: { //General settings width: "responsive", //'700' or 'responsive' background_color: "#ececec", background_transparent: "no", border_color: "#ffffff", state_description: "", state_color: "#0a80e6", state_hover_color: "#88a4bc", state_url: "", border_size: 1.5, all_states_inactive: "no", all_states_zoomable: "yes", //Location defaults location_description: "Location description", location_color: "#FF0067", location_opacity: 0.8, location_hover_opacity: 1, location_url: "", location_size: "18", location_type: "circle", location_image_source: "frog.png", location_border_color: "#FFFFFF", location_border: 2, location_hover_border: 2.5, all_locations_inactive: "no", all_locations_hidden: "no", //Label defaults label_color: "#d5ddec", label_hover_color: "#d5ddec", label_size: "12", label_font: "Arial", hide_labels: "no", hide_eastern_labels: "no", //Zoom settings zoom: "no", back_image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/05/20095505/button.png", back_image: "button.png", initial_back: "no", initial_zoom: "-1", initial_zoom_solo: "no", region_opacity: 1, region_hover_opacity: 0.6, zoom_out_incrementally: "yes", zoom_percentage: 0.99, zoom_time: 0.5, zoom_mobile: "yes", //Popup settings popup_color: "white", popup_opacity: 0.9, popup_shadow: 1, popup_corners: 5, popup_font: "14px/1.5 Verdana, Arial, Helvetica, sans-serif", popup_nocss: "no", //Advanced settings div: "mapmobile", auto_load: "yes", url_new_tab: "no", images_directory: "default", fade_time: 0.1, link_text: "View Website", popups: "on_click", state_image_url: "", state_image_position: "", location_image_url: "", manual_zoom: "yes" }, state_specific: { "1": { name: "Andaman And Nicobar" }, "2": { name: "Andhra Pradesh" }, "3": { name: "Arunachal Pradesh" }, "4": { name: "Assam" }, "5": { name: "Bihar", description: "Bihar is a state in East India, bordering Nepal. It is divided by the River Ganges, which floods its fertile plains.
    Zoom in and tap on the home icons to see the details of the villages to support." }, "6": { name: "Chandigarh" }, "7": { name: "Chhattisgarh" }, "8": { name: "Dadra And Nagar Haveli" }, "9": { name: "Daman And Diu" }, "10": { name: "Delhi" }, "11": { name: "Goa" }, "12": { name: "Gujarat" }, "13": { name: "Haryana" }, "14": { name: "Himachal Pradesh" }, "16": { name: "Jharkhand", description: "Jharkhand is a state in eastern India. It's known for its waterfalls, the elegant Jain temples of Parasnath Hill and the elephants and tigers of Betla National Park.
    Zoom in and tap on the home icons to see the details of the villages to support." }, "17": { name: "Karnataka" }, "18": { name: "Kerala" }, "19": { name: "Lakshadweep" }, "20": { name: "Madhya Pradesh", }, "21": { name: "Maharashtra" }, "22": { name: "Manipur" }, "23": { name: "Meghalaya" }, "24": { name: "Mizoram" }, "25": { name: "Nagaland" }, "26": { name: "Orissa", description: "Odisha (formerly Orissa), an eastern Indian state on the Bay of Bengal, is known for its tribal cultures and its many ancient Hindu temples.
    Zoom in and tap on the home icons to see the details of the villages to support." }, "27": { name: "Puducherry" }, "28": { name: "Punjab" }, "29": { name: "Rajasthan", description: "Rajasthan is a state in northern India. It covers 342,239 square kilometres or 10.4 percent of India's total geographical area.
    Zoom in and tap on the home icons to see the details of the villages to support." }, "30": { name: "Sikkim" }, "31": { name: "Tamil Nadu" }, "32": { name: "Tripura" }, "33": { name: "Uttar Pradesh", description: "Uttar Pradesh is a state in northern India. With over 200 million inhabitants, it is the most populated state in India as well as the most populous country subdivision in the world.
    Zoom in and tap on the home icons to see the details of the villages to support." }, "34": { name: "Uttarakhand", description: "Uttarakhand, a state in northern India crossed by the Himalayas, is known for its Hindu pilgrimage sites.
    Zoom in and tap on the home icons to see the details of the villages to support." }, "35": { name: "West Bengal" }, "36": { name: "Jammu And Kashmir" }, "37": { name: "Telangana" }, "38": { name: "Ladakh" } }, locations: { "0": { lat: "26.1938669", lng: "85.3368636", name: "Dhamauli Ramnath", description: "
  • 3873 Household
  • 3750 Girls
  • 34.9% Female population of age 6 years and above never attended school
  • 66.2% Women didn't complete 10 or more years of schooling
  • 32.9%Females in the age group of 20-24 years got married before 18 years
  • 34.7% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "1": { lat: "26.2168156", lng: "85.425363", name: "Pakari", description: "
  • 680 Household
  • 662 Girls
  • 34.9% Female population of age 6 years and above never attended school
  • 66.2% Women didn't complete 10 or more years of schooling
  • 32.9% Females in the age group of 20-24 years got married before 18 years
  • 34.7% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "2": { lat: "25.59585", lng: "86.255867", name: "Bakhri", description: "
  • 432 Household
  • 440 Girls
  • 34.9% Female population of age 6 years and above never attended school
  • 66.2% Women didn't complete 10 or more years of schooling
  • 32.9% Females in the age group of 20-24 years got married before 18 years
  • 34.7% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "3": { lat: "26.2246", lng: "85.620354", name: "Dhanaur", description: "
  • 279 Household
  • 233 Girls
  • 34.9% Girls population of age 6 years and above never attended school
  • 66.2% Women didn't complete 10 or more years of schooling
  • 32.9% Females in the age group of 20-24 years got married before 18 years
  • 34.7% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "4": { lat: "25.927828", lng: "85.7615733", description: "
  • 1533 Household
  • 1426 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", name: "Birsinghpur", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "5": { lat: "25.9269873", lng: "85.770317", name: "Akbarpur", description: "
  • 610 Household
  • 615 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "6": { lat: "25.918098", lng: "85.892728", name: "Balbhadarpur Khajuri", description: "
  • 354 Household
  • 325 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "7": { lat: "25.9122302", lng: "85.7950917", name: "Chak Jafar", description: "
  • 248 Household
  • 237 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "8": { lat: "25.9145715", lng: "85.9894419", name: "Mahbalipur", description: "
  • 318 Household
  • 284 Girls
  • 39.1% Female population of age 6 years and above never attended school
  • 73.5% Women didn't complete 10 or more years of schooling
  • 49.8% Females in the age group of 20-24 years got married before 18 years
  • 42.8% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "10": { lat: "26.231185", lng: "85.531264", name: "Berai", description: "
  • 319 Household
  • 387 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "11": { lat: "25.767921", lng: "85.296882", description: "
  • 427 Household
  • 476 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ", name: "Bhojpatti Urf Bhedpatti", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "12": { lat: "26.147784", lng: "85.347053", description: "
  • 597 Household
  • 621 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ", name: "Damodarpur", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "13": { lat: "25.777966", lng: "85.298973", description: "
  • 288 Household
  • 341 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ", name: "Matiara", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "14": { lat: "25.736169", lng: "85.351926", description: "
  • 391 Household
  • 474 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ", name: "Bhalui", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "15": { lat: "25.717478", lng: "85.366894", description: "
  • 271 Household
  • 334 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ", name: "Rahim Alipur Urf Ehiapur", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "16": { lat: "25.7108", lng: "85.39162", description: "
  • 959 Household
  • 1111 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ", name: "Jafarpatti", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "17": { lat: "25.707558", lng: "85.411206", name: "Majhepur Alipur", description: "
  • 321 Household
  • 324 Girls
  • 35.5% Female population of age 6 years and above never attended school
  • 66.0% Women didn't complete 10 or more years of schooling
  • 44.9% Females in the age group of 20-24 years got married before 18 years
  • 38.4% Children under the age of 5 years are underweight
  • 63.1% Women in the age group of 15-49 years are anemic
  • ", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "18": { lat: "26.336337255059505", lng: "84.6144008180471", description: "
  • 188 Household
  • 244 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ", name: "Bishunpur Pratap", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "19": { lat: "25.584877", lng: "84.585685", description: "
  • 796 Household
  • 1010 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ", name: "Ketuka Lachchhi", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "20": { lat: "26.352925", lng: "84.610505", description: "
  • 380 Household
  • 476 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ", name: "Bishunpur Piprahi", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "21": { lat: "25.933044", lng: "85.043324", description: "
  • 233 Household
  • 261 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ", name: "Banauta Makund", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "22": { lat: "25.760903", lng: "84.968413", description: "
  • 260 Household
  • 322 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2%Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ", name: "Mujauna", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "23": { lat: "25.92864472562828", lng: "85.062337866399", description: "
  • 250 Household
  • 262 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ", name: "Patti Mujauna", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "24": { lat: "25.917487772602357", lng: "85.000821326809", description: "
  • 336 Household
  • 373 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ", name: "Shaguni", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "25": { lat: "25.9252065055444", lng: "85.0063159091956", description: "
  • 303 Household
  • 361 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 64.5% Women didn't complete 10 or more years of schooling
  • 26.2% Females in the age group of 20-24 years got married before 18 years
  • 45% Children under the age of 5 years are underweight
  • 62.8% Women in the age group of 15-49 years are anemic
  • ", name: "Sirampur", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21083637/home-yellow1.png" }, "26": { lat: "27.3503977868793", lng: "72.8425814457632", name: "Ghantiyali", description: "
  • 655 Household
  • 838 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 65.4% Women didn't complete 10 or more years of schooling
  • 28.1% Females in the age group of 20-24 years got married before 18 years
  • 25.4% Children under the age of 5 years are underweight
  • 43.4% Women in the age group of 15-49 years are anemic
  • ", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "27": { lat: "25.51320377504584", lng: "71.771895491778", description: "
  • 103 Household
  • 133 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 65.4% Women didn't complete 10 or more years of schooling
  • 28.1% Females in the age group of 20-24 years got married before 18 years
  • 25.4% Children under the age of 5 years are underweight
  • 43.4% Women in the age group of 15-49 years are anemic
  • ", name: "Sajnaniyon Ki Dhani", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "28": { lat: "25.206762911372326", lng: "74.1243161467449", description: "
  • 216 Household
  • 239 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 65.4% Women didn't complete 10 or more years of schooling
  • 28.1% Females in the age group of 20-24 years got married before 18 years
  • 25.4% Children under the age of 5 years are underweight
  • 43.4% Women in the age group of 15-49 years are anemic
  • ", name: "Khajoosar", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "29": { lat: "27.411555970692433", lng: "72.8643470720955", description: "
  • 208 Household
  • 271 Girls
  • 35.2% Female population of age 6 years and above never attended school
  • 65.4% Women didn't complete 10 or more years of schooling
  • 28.1% Females in the age group of 20-24 years got married before 18 years
  • 25.4% Children under the age of 5 years are underweight
  • 43.4% Women in the age group of 15-49 years are anemic
  • ", name: "Imam Nagar", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "30": { lat: "28.48533913606067", lng: "73.3598269128466", description: "
  • 320 Household
  • 410 Girls
  • 35.4% Female population of age 6 years and above never attended school
  • 69.8% Women didn't complete 10 or more years of schooling
  • 33.3% Females in the age group of 20-24 years got married before 18 years
  • 28.5% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ", name: "Makrasar", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "31": { lat: "28.523822040645406", lng: "73.4640331827413", description: "
  • 310 Household
  • 437 Girls
  • 35.4% Female population of age 6 years and above never attended school
  • 69.8% Women didn't complete 10 or more years of schooling
  • 33.3% Females in the age group of 20-24 years got married before 18 years
  • 28.5% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ", name: "Binjharwali", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "32": { lat: "28.520930780859175", lng: "73.4710682564614", description: "
  • 64 Household
  • 84 Girls
  • 35.4% Female population of age 6 years and above never attended school
  • 69.8% Women didn't complete 10 or more years of schooling
  • 33.3% Females in the age group of 20-24 years got married before 18 years
  • 28.5% Children under the age of 5 years are underweight
  • 58.9% Women in the age group of 15-49 years are anemic
  • ", name: "Moosalki", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "33": { lat: "26.03216767181368", lng: "72.7149707557747", description: "
  • 346 Household
  • 301 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", name: "Chali", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "36": { lat: "24.612016621055187", lng: "73.5024022002034", description: "
  • 350 Household
  • 345 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", name: "Undithal", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "37": { lat: "24.360634482183617", lng: "73.6632409579082", name: "Paduna", description: "
  • 106 Household
  • 114 Girls
  • 36.2% Girls population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "38": { lat: "24.715256955803255", lng: "73.7278621673752", description: "
  • 495 Household
  • 470 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", name: "Sare", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "39": { lat: "25.13221749876497", lng: "76.5193446170084", name: "Bara", description: "
  • 443 Household
  • 422 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "40": { lat: "23.857971416550818", lng: "73.4216630370975", description: "
  • 267 Household
  • 281 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", name: "Patiya", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "41": { lat: "26.453376230761833", lng: "76.9541605174678", description: "
  • 175 Household
  • 162 Girls
  • 36.2% Female population of age 6 years and above never attended school
  • 69.9% Women didn't complete 10 or more years of schooling
  • 18.2% Females in the age group of 20-24 years got married before 18 years
  • 26.6% Children under the age of 5 years are underweight
  • 60.5% Women in the age group of 15-49 years are anemic
  • ", name: "Kalyari", color: "#E1E621", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084407/home-yellow2.png" }, "42": { name: "Sonatangiri", lat: "21.479703", lng: "85.67789", description: "
  • 302 Household
  • 259 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ", color: "#D22630", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png" }, "43": { name: "Rutisila", lat: "21.497437", lng: "85.707393", description: "
  • 218 Household
  • 212 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ", color: "#D22630", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png" }, "44": { name: "Ankalpada", lat: "21.480915", lng: "85.713583", description: "
  • 189 Household
  • 188 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ", color: "#D22630", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png" }, "45": { name: "Sarupat", lat: "21.519124", lng: "85.718671", description: "
  • 250 Household
  • 209 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ", color: "#D22630", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png" }, "46": { name: "Dumardaga", lat: "23.398942", lng: "85.398776", description: "
  • 144 Household
  • 154 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "47": { name: "Chiruhatu", lat: "23.098886521589773", lng: "85.22793322", description: "
  • 89 Household
  • 89 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "48": { name: "Rewa", lat: "23.9302548", lng: "85.4519003", description: "
  • 280 Household
  • 266 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "49": { name: "Manhu", lat: "24.34757879735865", lng: "84.25118873", description: "
  • 112 Household
  • 118 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "50": { name: "Bhut", lat: "23.0805898", lng: "85.3481652", description: "
  • 228 Household
  • 214 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "51": { name: "Patratoli", lat: "23.459629522965084", lng: "85.19815707", description: "
  • 96 Household
  • 101 Girls
  • 36.9% Female population of age 6 years and above never attended school
  • 70.7% Women didn't complete 10 or more years of schooling
  • 21.7% Females in the age group of 20-24 years got married before 18 years
  • 44.0% Children under the age of 5 years are underweight
  • 70.0% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "52": { name: "Uparlota", lat: "23.771494", lng: "84.531184", description: "
  • 173 Household
  • 163 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "53": { name: "Pandrasali", lat: "22.632698", lng: "85.814928", description: "
  • 202 Household
  • 208 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "54": { name: "Torsinduri", lat: "22.658522221696323", lng: "85.82096239", description: "
  • 109 Household
  • 120 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "55": { name: "Patahatu", lat: "22.654638484579348", lng: "85.80186547", description: "
  • 183 Household
  • 219 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "56": { name: "Khunta", lat: "22.526339699159568", lng: "85.7691", description: "
  • 141 Household
  • 151 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "57": { name: "Ruidih", lat: "22.658399426475075", lng: "85.83563962", description: "
  • 255 Household
  • 287 Girls
  • 41.6% Female population of age 6 years and above never attended school
  • 77.1% Women didn't complete 10 or more years of schooling
  • 24.4% Females in the age group of 20-24 years got married before 18 years
  • 62.4% Children under the age of 5 years are underweight
  • 72.6% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "58": { name: "Khurandih", lat: "23.95085036565603", lng: "85.50717076", description: "
  • 200 Household
  • 231 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "59": { name: "Jamdiha", lat: "23.930953928213423", lng: "85.51516464", description: "
  • 197 Household
  • 213 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "60": { name: "Nagri", lat: "23.321942", lng: "85.187817", description: "
  • 129 Household
  • 140 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "61": { name: "Tasnalo", lat: "23.92140820902455", lng: "85.50148034", description: "
  • 75 Household
  • 79 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "62": { name: "Lara", lat: "23.926564092849414", lng: "85.48656989", description: "
  • 137 Household
  • 142 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "63": { name: "Dumar", lat: "24.0615998", lng: "85.6485502", description: "
  • 93 Household
  • 87 Girls
  • 33.9% Female population of age 6 years and above never attended school
  • 59.9% Women didn't complete 10 or more years of schooling
  • 38.6% Females in the age group of 20-24 years got married before 18 years
  • 32.5% Children under the age of 5 years are underweight
  • 56.1% Women in the age group of 15-49 years are anemic
  • ", color: "#E17800", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21085119/home-orange1.png" }, "64": { name: "Naugaon", lat: "30.7868982", lng: "78.1328893", description: "
  • 110 Household
  • 103 Girls
  • 31.0% Female population of age 6 years and above never attended school
  • 46.4% Women didn't complete 10 or more years of schooling
  • 5.7% Females in the age group of 20-24 years got married before 18 years
  • 23.5% Children under the age of 5 years are underweight
  • 60.9% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "65": { name: "Chakon", lat: "30.676183", lng: "78.454506", description: "
  • 138 Household
  • 112 Girls
  • 31.0% Female population of age 6 years and above never attended school
  • 46.4% Women didn't complete 10 or more years of schooling
  • 5.7% Females in the age group of 20-24 years got married before 18 years
  • 23.5% Children under the age of 5 years are underweight
  • 60.9% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "66": { name: "Baun", lat: "30.770013", lng: "78.361552", description: "
  • 227 Household
  • 228 Girls
  • 31.0% Female population of age 6 years and above never attended school
  • 46.4% Women didn't complete 10 or more years of schooling
  • 5.7% Females in the age group of 20-24 years got married before 18 years
  • 23.5% Children under the age of 5 years are underweight
  • 60.9% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "67": { name: "Jhuma Khet Talla", lat: "29.957347", lng: "79.439665", description: "
  • 82 Household
  • 84 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "68": { name: "Sarkot", lat: "30.087997627157755", lng: "79.23656338", description: "
  • 218 Household
  • 247 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "69": { name: "Kali Mati", lat: "29.94060750622902", lng: "79.3834286", description: "
  • 75 Household
  • 77 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "70": { name: "Gogana Malla", lat: "29.950715099274827", lng: "79.31110735", description: "
  • 76 Household
  • 70 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "71": { name: "Pajyana Malla", lat: "30.119606", lng: "79.221566", description: "
  • 61 Household
  • 65 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "72": { name: "Sirana", lat: "30.124325", lng: "79.275407", description: "
  • 85 Household
  • 86 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "73": { name: "Farakande Talli", lat: "30.067870521150642", lng: "79.25922954", description: "
  • 97 Household
  • 110 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "74": { name: "Taituna", lat: "29.948748", lng: "79.397266", description: "
  • 90 Household
  • 102 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "75": { name: "Mehargaon", lat: "30.03220205178612", lng: "79.2472553", description: "
  • 122 Household
  • 125 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "76": { name: "Kotha", lat: "30.16042367246745", lng: "78.343957", description: "
  • 165 Household
  • 139 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "77": { name: "Bina", lat: "30.03312903948037", lng: "78.39316965", description: "
  • 142 Household
  • 145 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "78": { name: "Haragarh", lat: "29.971329", lng: "79.290508", description: "
  • 166 Household
  • 176 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "79": { name: "Parawari", lat: "30.09956323348601", lng: "79.22991492", description: "
  • 112 Household
  • 129 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "80": { name: "Maikholi", lat: "29.989409926180624", lng: "79.31240811", description: "
  • 135 Household
  • 127 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "81": { name: "Gaul", lat: "30.013813", lng: "79.258307", description: "
  • 102 Household
  • 105 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "82": { name: "Panchali", lat: "30.023522112423954", lng: "79.29504454", description: "
  • 101 Household
  • 94 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "83": { name: "Pindawali Talli", lat: "29.831728", lng: "78.993741", description: "
  • 213 Household
  • 228 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "84": { name: "Gair", lat: "30.107214094791864", lng: "79.28661439", description: "
  • 661 Household
  • 530 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "85": { name: "Malasi", lat: "30.12581698387851", lng: "79.2759441", description: "
  • 149 Household
  • 156 Girls
  • 20.9% Female population of age 6 years and above never attended school
  • 41.0% Women didn't complete 10 or more years of schooling
  • 3.4% Females in the age group of 20-24 years got married before 18 years
  • 21.6% Children under the age of 5 years are underweight
  • 41.8% Women in the age group of 15-49 years are anemic
  • ", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "86": { lat: "29.877986", lng: "78.116470", description: "
  • 194 Household
  • 191 Girls
  • 31.0% Female population of age 6 years and above never attended school
  • 46.4% Women didn't complete 10 or more years of schooling
  • 5.7% Females in the age group of 20-24 years got married before 18 years
  • 23.5% Children under the age of 5 years are underweight
  • 60.9% Women in the age group of 15-49 years are anemic
  • ", name: "Kishanpur", color: "#F1C400", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21082852/home1.png" }, "87": { name: "Gohitangiri", lat: "21.481731", lng: "85.697285", description: "
  • 120 Household
  • 109 Girls
  • 68.2% Female population of age 6 years and above never attended school
  • 29.5% Women didn't complete 10 or more years of schooling
  • 29.0% Females in the age group of 20-24 years got married before 18 years
  • 37.1% Children under the age of 5 years are underweight
  • 69.2% Women in the age group of 15-49 years are anemic
  • ", color: "#D22630", type: "image", image_url: "https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/02/21084806/home-redf1.png" }, "88": { name: "Gahndo", lat: "27.042581", lng: "80.685704", description: "
  • 948 Household
  • 991 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ", color: "#00843D", type: "image", image_url: " https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png" }, "89": { name: "Kedaura", lat: "25.947988", lng: "81.549477", description: "
  • 235 Household
  • 288 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ", color: "#00843D", type: "image", image_url: " https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png" }, "90": { name: "Masirha ratan", lat: "27.005419", lng: "80.722703", description: "
  • 647 Household
  • 639 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ", color: "#00843D", type: "image", image_url: " https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png" }, "91": { name: "Siswara", lat: "27.032549", lng: "80.674270", description: "
  • 373 Household
  • 402 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ", color: "#00843D", type: "image", image_url: " https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png" }, "92": { name: "Thari", lat: "27.010475", lng: "80.694006", description: "
  • 972 Household
  • 1035 Girls
  • 19.2% Female population of age 6 years and above never attended school
  • 48.1% Women didn't complete 10 or more years of schooling
  • 9.9% Females in the age group of 20-24 years got married before 18 years
  • 25.5% Children under the age of 5 years are underweight
  • 55.8% Women in the age group of 15-49 years are anemic
  • ", color: "#00843D", type: "image", image_url: " https://plan-india.s3.ap-south-1.amazonaws.com/wp-content/uploads/2022/03/22060437/homegreen.png" } }, labels: { "0": { name: "Bihar", x: 571.85678, y: 473.02937, parent_id: "5" }, "1": { name: "Rajasthan", x: 169.23288, y: 410.99865, parent_id: "29" }, "2": { name: "Uttarakhand", x: 378.69724, y: 272.47748, parent_id: "34" }, "3": { name: "Uttar Pradesh", x: 424.89169, y: 412.0253, parent_id: "33" }, "4": { name: "Madhya Pradesh", x: 349.43694, y: 543.86087, parent_id: "20" }, "5": { name: "Madhya Pradesh", x: 349.43694, y: 543.86087, parent_id: "20" }, "6": { name: "Jharkhand", x: 583.24837, y: 560.17228, parent_id: "16" }, "7": { name: "Orissa", x: 564.7, y: 640.5, parent_id: "26" } }, legend: { entries: [] }, regions: {} }; // source --> https://www.planindia.org/wp-content/uploads/map_data/countrymap-mobile.js /*Copyright 2010-2021 Simplemaps.com html5countrymapv4.17 Use pursuant to license agreement at https://simplemaps.com/license */ /* shifty - v1.5.3 - http://jeremyckahn.github.io/shifty, embedded within map logic*/ /* Raphaël 2.1.2 (tweaked, always global)- JavaScript Vector Library, Copyright © 2008-2016 Dmitry Baranovskiy (http://raphaeljs.com), Copyright © 2008-2016 Sencha Labs (http://sencha.com), Licensed under the MIT (http://raphaeljs.com/license.html) license. */ !function(t){var e,f,p,a,d,g,x,y,m;t.eve=(e="0.4.2",f="hasOwnProperty",p=/[\.\/]/,a=function(){},d=function(t,e){return t-e},(m=function(t,e){t=String(t);var r,i=x,n=Array.prototype.slice.call(arguments,2),s=m.listeners(t),a=0,o=[],l={},h=[],u=g;g=t;for(var c=x=0,f=s.length;c',(J=K.firstChild).style.behavior="url(#default#VML)",!J||"object"!=typeof J.adj)return j.type="";K=null}function tt(t){if("function"==typeof t||Object(t)!==t)return t;var e,r=new t.constructor;for(e in t)t[L](e)&&(r[e]=tt(t[e]));return r}j.svg=!(j.vml="VML"==j.type),j._Paper=o,j.fn=K=o.prototype=j.prototype,j._id=0,j._oid=0,j.is=function(t,e){return"finite"==(e=y.call(e))?!p[L](+t):"array"==e?t instanceof Array:"null"==e&&null===t||e==typeof t&&null!==t||"object"==e&&t===Object(t)||"array"==e&&Array.isArray&&Array.isArray(t)||c.call(t).slice(8,-1).toLowerCase()==e},j.angle=function(t,e,r,i,n,s){if(null!=n)return j.angle(t,e,n,s)-j.angle(r,i,n,s);r=t-r,i=e-i;return r||i?(180+180*B.atan2(-i,-r)/T+360)%360:0},j.rad=function(t){return t%360*T/180},j.deg=function(t){return 180*t/T%360},j.snapTo=function(t,e,r){if(r=j.is(r,"finite")?r:10,j.is(t,v)){for(var i=t.length;i--;)if(S(t[i]-e)<=r)return t[i]}else{var n=e%(t=+t);if(n"),e.close(),r=e.body}catch(t){r=createPopup().document.body}var n=r.createTextRange();at=ot(function(t){try{r.style.color=P(t).replace(i,"");var e=n.queryCommandValue("ForeColor");return"#"+("000000"+(e=(255&e)<<16|65280&e|(16711680&e)>>>16).toString(16)).slice(-6)}catch(t){return"none"}})}else{var s=d.doc.createElement("i");s.title="Raphaël Colour Picker",s.style.display="none",d.doc.body.appendChild(s),at=ot(function(t){return s.style.color=t,d.doc.defaultView.getComputedStyle(s,"").getPropertyValue("color")})}return at(t)};function ot(n,s,a){function o(){var t=Array.prototype.slice.call(arguments,0),e=t.join("␀"),r=o.cache=o.cache||{},i=o.count=o.count||[];return r[L](e)?function(t,e){for(var r=0,i=t.length;r=s[n]&&(a.push([e][M](i.splice(0,s[n]))),s[n]););}),a.toString=j._path2string,e.arr=bt(a),a},j.parseTransformString=ot(function(t){if(!t)return null;var n=[];return j.is(t,v)&&j.is(t[0],v)&&(n=bt(t)),n.length||P(t).replace(W,function(t,e,r){var i=[];y.call(e);r.replace(X,function(t,e){e&&i.push(+e)}),n.push([e][M](i))}),n.toString=j._path2string,n});var ut=function(e){var r=ut.ps=ut.ps||{};return r[e]?r[e].sleep=100:r[e]={sleep:100},setTimeout(function(){for(var t in r)r[L](t)&&t!=e&&(r[t].sleep--,r[t].sleep||delete r[t])}),r[e]};function ct(t,e,r,i,n){return t*(t*(-3*e+9*r-9*i+3*n)+6*e-12*r+6*i)-3*e+3*r}function ft(t,e,r,i,n,s,a,o,l){null==l&&(l=1);for(var h=(l=1_(n,a)||_(e,i)_(s,o))){var l=(t*i-e*r)*(n-a)-(t-r)*(n*o-s*a),h=(t*i-e*r)*(s-o)-(e-i)*(n*o-s*a),u=(t-r)*(s-o)-(e-i)*(n-a);if(u){var c=l/u,l=h/u,h=+c.toFixed(2),u=+l.toFixed(2);if(!(h<+k(t,r).toFixed(2)||h>+_(t,r).toFixed(2)||h<+k(n,a).toFixed(2)||h>+_(n,a).toFixed(2)||u<+k(e,i).toFixed(2)||u>+_(e,i).toFixed(2)||u<+k(s,o).toFixed(2)||u>+_(s,o).toFixed(2)))return{x:c,y:l}}}}(d.x,d.y,g.x,g.y,x.x,x.y,y.x,y.y);b&&h[b.x.toFixed(4)]!=b.y.toFixed(4)&&(h[b.x.toFixed(4)]=b.y.toFixed(4),d=d.t+S((b[m]-d[m])/(g[m]-d[m]))*(g.t-d.t),x=x.t+S((b[v]-x[v])/(y[v]-x[v]))*(y.t-x.t),0<=d&&d<=1.001&&0<=x&&x<=1.001&&(r?u++:u.push({x:b.x,y:b.y,t1:k(d,1),t2:k(x,1)})))}return u}function dt(t,e,r){t=j._path2curve(t),e=j._path2curve(e);for(var i,n,s,a,o,l,h,u,c,f,p=r?0:[],d=0,g=t.length;d=t.x&&e<=t.x2&&r>=t.y&&r<=t.y2},j.isBBoxIntersect=function(t,e){var r=j.isPointInsideBBox;return r(e,t.x,t.y)||r(e,t.x2,t.y)||r(e,t.x,t.y2)||r(e,t.x2,t.y2)||r(t,e.x,e.y)||r(t,e.x2,e.y)||r(t,e.x,e.y2)||r(t,e.x2,e.y2)||(t.xe.x||e.xt.x)&&(t.ye.y||e.yt.y)},j.pathIntersection=function(t,e){return dt(t,e)},j.pathIntersectionNumber=function(t,e){return dt(t,e,1)},j.isPointInsidePath=function(t,e,r){var i=j.pathBBox(t);return j.isPointInsideBBox(i,e,r)&&dt(t,[["M",e,r],["H",i.x2+10]],1)%2==1},j._removedFactory=function(t){return function(){N("raphael.log",null,"Raphaël: you are calling to method “"+t+"” of removed object",t)}};function gt(t,e,r,i){return[t,e,r,i,r,i]}function xt(t,e,r,i,n,s){return[1/3*t+2/3*r,1/3*e+2/3*i,1/3*n+2/3*r,1/3*s+2/3*i,n,s]}function yt(t,e,r,i,n,s,a,o,l){var h=1-l;return{x:m(h,3)*t+3*m(h,2)*l*r+3*h*l*l*n+m(l,3)*a,y:m(h,3)*e+3*m(h,2)*l*i+3*h*l*l*s+m(l,3)*o}}function mt(t){var e=t[0];switch(e.toLowerCase()){case"t":return[e,0,0];case"m":return[e,1,0,0,1,0,0];case"r":return 4==t.length?[e,0,t[2],t[3]]:[e,0];case"s":return 5==t.length?[e,1,1,t[3],t[4]]:3==t.length?[e,1,1]:[e,1]}}var vt=j.pathBBox=function(t){var e=ut(t);if(e.bbox)return tt(e.bbox);if(!t)return{x:0,y:0,width:0,height:0,x2:0,y2:0};for(var r,i,n=0,s=0,a=[],o=[],l=0,h=(t=Ct(t)).length;lu&&(d=_,g=o,x=l,_=b+u*(a&&b<_?1:-1),o=m+r*B.cos(_),l=v+i*B.sin(_),f=wt(o,l,r,i,n,0,a,g,x,[_,d,m,v])),y=_-b;var m=B.cos(b),v=B.sin(b),b=B.cos(_),_=B.sin(_),y=B.tan(y/4),r=4/3*r*y,i=4/3*i*y,y=[t,e],m=[t+r*v,e-i*m],b=[o+r*_,l-i*b],l=[o,l];if(m[0]=2*y[0]-m[0],m[1]=2*y[1]-m[1],h)return[m,b,l][M](f);for(var w=[],k=0,C=(f=[m,b,l][M](f).join()[z](",")).length;k":function(t){return m(t,.48)},"<>":function(t){var e=.48-t/1.04,r=B.sqrt(.1734+e*e),t=r-e,e=-r-e,e=m(S(t),1/3)*(t<0?-1:1)+m(S(e),1/3)*(e<0?-1:1)+.5;return 3*(1-e)*e*e+e*e*e},backIn:function(t){return t*t*(2.70158*t-1.70158)},backOut:function(t){return--t*t*(2.70158*t+1.70158)+1},elastic:function(t){return t==!!t?t:m(2,-10*t)*B.sin(2*T*(t-.075)/.3)+1},bounce:function(t){var e=7.5625,r=2.75,t=t<1/r?e*t*t:t<2/r?e*(t-=1.5/r)*t+.75:t<2.5/r?e*(t-=2.25/r)*t+.9375:e*(t-=2.625/r)*t+.984375;return t}};o.easeIn=o["ease-in"]=o["<"],o.easeOut=o["ease-out"]=o[">"],o.easeInOut=o["ease-in-out"]=o["<>"],o["back-in"]=o.backIn,o["back-out"]=o.backOut;var Ht=[],Ut=t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||t.msRequestAnimationFrame||function(t){setTimeout(t,16)},$t=function(){for(var t=+new Date,e=0;ei*t.top){r=t.percents[x],u=t.percents[x-1]||0,c=c/t.top*(r-u),h=t.percents[x+1],a=t.anim[r];break}i&&e.attr(t.anim[t.percents[x]])}if(a){if(o)o.initstatus=i,o.start=new Date-o.ms*i;else{for(var m in a)if(a[L](m)&&(D[L](m)||e.paper.customAttributes[L](m)))switch(f[m]=e.attr(m),null==f[m]&&(f[m]=q[m]),p[m]=a[m],D[m]){case F:d[m]=(p[m]-f[m])/c;break;case"colour":f[m]=j.getRGB(f[m]);var v=j.getRGB(p[m]);d[m]={r:(v.r-f[m].r)/c,g:(v.g-f[m].g)/c,b:(v.b-f[m].b)/c};break;case"path":var b=Ct(f[m],p[m]),_=b[1];for(f[m]=b[0],d[m]=[],x=0,y=f[m].length;x"));h=h.getBoundingClientRect();d.W=u.w=(h.right-h.left)/100,d.H=u.h=(h.bottom-h.top)/100,d.X=u.x,d.Y=u.y+d.H/2,("x"in e||"y"in e)&&(d.path.v=j.format("m{0},{1}l{2},{1}",k(u.x*M),k(u.y*M),k(u.x*M)+1));for(var x=["x","y","text","font","font-family","font-weight","font-style","font-size"],y=0,m=x.length;y')}}catch(t){R=function(t){return e.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}},j._engine.initWin(j._g.win),j._engine.create=function(){var t=j._getContainer.apply(0,arguments),e=t.container,r=t.height,i=t.width,n=t.x,s=t.y;if(!e)throw new Error("VML container not found.");var a=new j._Paper,o=a.canvas=j._g.doc.createElement("div"),t=o.style,n=n||0,s=s||0,i=i||512,r=r||342;return(a.width=i)==+i&&(i+="px"),(a.height=r)==+r&&(r+="px"),a.coordsize=216e5+A+216e5,a.coordorigin="0 0",a.span=j._g.doc.createElement("span"),a.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;",o.appendChild(a.span),t.cssText=j.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden",i,r),1==e?(j._g.doc.body.appendChild(o),t.left=n+"px",t.top=s+"px",t.position="absolute"):e.firstChild?e.insertBefore(o,e.firstChild):e.appendChild(o),a.renderfix=function(){},a},j.prototype.clear=function(){j.eve("raphael.clear",this),this.canvas.innerHTML="",this.span=j._g.doc.createElement("span"),this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;",this.canvas.appendChild(this.span),this.bottom=this.top=null},j.prototype.remove=function(){for(var t in j.eve("raphael.remove",this),this.canvas.parentNode.removeChild(this.canvas),this)this[t]="function"==typeof this[t]?j._removedFactory(t):null;return!0};var e,r=j.st;for(e in t)t[b](e)&&!r[b](e)&&(r[e]=function(r){return function(){var e=arguments;return this.forEach(function(t){t[r].apply(t,e)})}}(e))}}(),r.was?d.win.Raphael=j:t.Raphael=j}(t,t.eve)}(this); /* Map path and default settings - you can edit this */ var simplemaps_countrymap_mapinfo={ map_name: "country", state_bbox_array:{"1":{y:851,x:821,x2:892,y2:1135},"2":{y:699,x:294,x2:567,y2:932},"3":{y:312,x:799,x2:999,y2:421},"4":{y:370,x:735,x2:951,y2:516},"5":{y:388,x:518,x2:688,y2:511},"6":{y:260,x:291,x2:296,y2:265},"7":{y:518,x:413,x2:554,y2:749},"8":{y:656,x:163,x2:173,y2:667},"9":{y:633,x:86,x2:161,y2:655},"10":{y:335,x:296,x2:314,y2:354},"11":{y:820,x:189,x2:211,y2:852},"12":{y:495,x:1,x2:216,y2:664},"13":{y:255,x:215,x2:322,y2:383},"14":{y:161,x:253,x2:370,y2:276},"16":{y:471,x:518,x2:677,y2:597},"17":{y:725,x:203,x2:356,y2:968},"18":{y:926,x:229,x2:315,y2:1082},"19":{y:963,x:135,x2:189,y2:1083},"20":{y:413,x:201,x2:500,y2:630},"21":{y:594,x:153,x2:435,y2:827},"22":{y:458,x:848,x2:908,y2:527},"23":{y:442,x:740,x2:842,y2:483},"24":{y:502,x:823,x2:864,y2:597},"25":{y:406,x:860,x2:925,y2:476},"26":{y:575,x:452,x2:660,y2:748},"27":{y:786,x:241,x2:483,y2:995},"28":{y:188,x:195,x2:300,y2:309},"29":{y:284,x:45,x2:345,y2:556},"30":{y:364,x:678,x2:709,y2:405},"31":{y:899,x:275,x2:416,y2:1089},"32":{y:501,x:785,x2:826,y2:561},"33":{y:275,x:305,x2:562,y2:526},"34":{y:233,x:321,x2:439,y2:342},"35":{y:399,x:603,x2:742,y2:613},"36":{y:82,x:179,x2:295,y2:200},"37":{y:672,x:311,x2:466,y2:819},"38":{y:1,x:149,x2:416,y2:198}},paths: { "1": "M877.3 1118.2l-0.2 0.4 0.3 0.5 0.7-0.1 0.4 1-0.1 0.4 0.3 0.9 0.1 1-0.1 1.2 0.4 0.3 0.6 1 0.1 1.3-0.2 0.4 0.5 0.5 0.2 0.7-0.6 0.7-0.3 0.7 0.2 0.4-0.6 0.3 0.1 0.7-0.2 0.5 0 0.7 0.5 0.3-0.4 1.2-0.4 0.3-0.6-0.7-0.5 0-0.3 0.5 0.1 0.7-0.7 0.9-0.7-0.3 0.2-1.5-0.4-0.2-0.5-0.8 0.3-0.4-0.7-0.6 0.2-0.6-0.6-0.9-0.4 0-0.3-0.6 0.3-0.4-0.2-0.8-0.5-0.3-0.3-0.8-0.5 0.1-0.3-0.7-0.4-0.3-0.6 0.2-0.1-1 0.1-1.3-0.3-0.2-0.2-1.4 0.7-0.5 0-1.2 0.4-0.5 0.9-0.1 0.7 0.2 0.7-0.8 1.8-0.1 0.1-0.5 0.6-0.3 0.7-0.1z m-4.6-7l0.3 0.8 0.1 0.8 1.1 0.8-0.1 0.5-0.4 0.4-0.6 1.3-0.6 0.2-0.9 0.7-0.4 0.8-0.7 0.6-0.7-0.9 0.2-0.7-0.3-0.6 0.4-0.5-0.2-1.4 1.1-0.7 1.5-0.4 0-1.5 0.2-0.2z m-11.4-20l1 0.6-0.2 1.1 0.6 0.5 0.3-0.3 1.1 1.1 0.4 1.4-0.4 0.8-0.7-0.9-0.8-0.3-0.7 0.2-0.7 0.7-0.7-0.3-0.4-0.4 0.1-0.8-1-0.6-0.2-0.7 0.4-0.5 0-0.5 0.4-0.7 0.7 0.1 0.8-0.5z m5.7-0.2l0.6 0.2 0.7 1.1-0.2 2-0.2 0.2-2.2-2 1.2-1 0.1-0.5z m1.1-3.3l0.4 0.5 0 1.5 0.4 0.8-0.3 0.2-0.7-1 0.3-0.5-0.4-0.3-0.3-1 0.6-0.2z m-1.8-3.7l0.6 0.2 0.1 1-0.7 0.9-0.5 0.2-0.2 0.7 0.7 0.9 0.2 0.7 0.6 0.4 0.1 0.7-0.4 1-1.1 0.1 0 1.2-0.6 0-0.1-1.3 1.3-0.6 0.1-0.7-0.4-0.3-1.1 1.1 0-0.9-0.9-1.6-0.1-1.7 0.7-0.4 0.5-0.4 0.1-0.9 1.1-0.3z m-9.9-1.1l0.6 1.2-0.5 0.3-0.6-0.8 0.5-0.7z m-3.7-3.2l0.5 0.4-0.4 1.2-0.1 1.1 0.9 1.2 1.4 0.7 0.4 0.4-0.4 0.7-1-0.3-1.4-0.7-0.8-0.9-0.5-0.9 0-1.2 0.3-1.1 1.1-0.6z m-2.9-4l0.5 0.4-0.2 0.8-0.6-0.5 0.3-0.7z m19.6-3.5l0.2 1.5 0.4 0.2 0.3 2-0.6 0 0-1.7-0.5-1 0.2-1z m-28.3-23.2l0.9 0.9 0.4 0.9 0.2 1-0.3 0.9-0.4 0.5-0.8 0.2-0.6-0.3-1.3 0.1-0.4-0.8 0-2.3 1.5 0 0.8-1.1z m-9.3-57.3l1.5 1.2 0.1 1.8 0.9 0.8-0.2 1.6 0.5 1.2 0 0.8-0.7 0.5 0.1 0.4-0.9 0.7-0.4 0.9 0.1 0.7 0.7 0.2 0.1 0.4-1.2 1.6-0.1 0.4-1.1 0.2-0.6-0.2-0.6-0.6-1-0.5-0.5 0.1-0.6 0.5-0.6-0.4 0.9-1.4 0.4-1.1-0.5-1.2-0.4-0.6-0.5 0 0.1-1.8-0.2-0.7-0.1-1.5 0.7 0.1 0.6-0.3 0.6-1.2 0.9-0.6 0.1-0.8 0.7-0.3 0.4-0.6 0.8-0.3z m4.3-21.3l0.9 0.7 0.6 1.9-0.7 1.4 0.9 0.2 0 0.7-1.8 0.8-1.3 0-0.7-0.7 0.4-0.5-0.1-0.7 1.2-0.2 0-1.2-0.4-0.6 0.1-1 0.6-1 0.3 0.2z m-1-2.8l0.2 0.8-0.6-0.1 0.4-0.7z m-13.4-0.1l0.7 0 1 0.3 0 1 0.2 0.7-0.5 0.6-0.4-0.3-1.1-0.1-0.3-0.6 0.4-1.6z m10.9-0.4l0.2 0.3 0.8 0.1-0.1 0.6-0.4 0.5-0.5 0-0.2-1.2 0.2-0.3z m16.5-8.4l0.4 0.3 1-0.3 0.3 0.3-0.7 0.8-1.2-0.6 0.2-0.5z m-14.5-4.6l0.3 1.1-0.3 0.2 0-1.3z m12.7-2l0.5-0.3 0.7 0.5 0.1 1 1 1.8 0.6 1.8-0.3 0.4-0.7-0.1-0.1-0.5-1.1-1.7-0.6 0.1-0.4-1.1-0.9-0.2-0.1-0.7 0.7-0.3 0.6-0.7z m0.8-2.6l0.4 0.1-0.2 2.1-0.3 0-1-0.9 0-1.3 1.1 0z m1.2-1.7l-0.1 0.6 0.4 0.5 0 1 0.6 0.7 0 0.6-0.4 0.5-0.6-0.9-0.6-0.2 0-1.1-1-0.2-0.5-0.3-0.3-0.7 0.3-0.3 1 0.4 1.2-0.6z m1.4-1.9l0.6 0.6 0.3 1.6-0.2 0.6 0.1 0.8-0.3 0.7-0.5 0-1.1-1.6 0.7-2 0.4-0.7z m-12.6-0.8l0.2 0.2 0.3 2.1 0.8-0.5 0.7 0.2-0.1 0.8-0.6 1.5-0.1 0.8 0.6 0.6 0.8 1.4-0.5 0.4-0.7-0.5 0.6 1.6-1.1 0.5-0.3 0.8 0.5 1.8 0.5-1.2 1-0.2 0.4 0.5-0.3 1.1 0.3 0.8-1.1 5.3-0.5 0.3-0.8 0.1-0.5 0.5-0.1 0.9-0.5 0.6-0.6-0.2 0 0.8 0.8 0 0.9-1.2 0.9-0.3 0.4 0.3-0.1 2-0.8 1.8-0.2 1.1 0.2 0.3-0.7 1-0.4-0.6-1.1 0-0.6-0.6 0.1-1-0.8-0.6-0.7-0.9 0.1-1.4-0.5-1 0.2-0.9-0.4-1-0.5 0.1-0.4 0.8-0.3-1 0.1-1.8-0.4-1.9-0.7 0.1-0.4-0.8 0.4-0.8 0.1-0.9 0.4-0.3 0.1-0.6 0.8-0.7 0.5 0.5 0.2 1.4 0.9 0.6-0.2-1.8 0.2-0.6 0-2.4 0.5-1.9-0.2-0.3 0.1-1.1 0.3-0.7 0.5-2 1.4-1.9 0.4 0z m1.1-0.3l0.2 0.3 0.8 0.2 0.2 0.9-0.1 0.7-1.4-0.2 0-1.4 0.3-0.5z m5.8-0.5l0.4 0.9-1.5-0.2 1.1-0.7z m6-0.2l0.3 0.9-0.1 0.5-0.6-0.2 0.2-1 0.2-0.2z m-12.5-1.2l0.4 0.1-0.4 1.7-0.3-0.8 0.3-1z m7.8 0.6l-0.6 0.7-0.7-0.7 0.4-0.4 0.4 0.4 0.5 0z m-5.6-1.1l0.6 0.2 0.5-0.2 0.7 0.4 1-0.2 0.4 0.2 0.6 1.4-1 0.5 0.5 0.7 0.1 1.1-0.8-0.3-0.1 1.4-0.4-0.2-1.3 2.1-0.2 0.9-1 0.7-0.9-0.8 0.1-0.5 0.8-2.7 0.2-0.9-0.1-0.9-0.5-0.1-0.4-0.5 0.4-1 0.4 0.4 0.6-0.8-0.2-0.9z m36.3-0.3l0.6 0.9 0.7 0.4-0.2 0.5 0.3 1.1-1.3 0-0.5-0.3-0.4-1.4 0.3-0.8 0.5-0.4z m-33.7-3.1l0.7 0.1 0.6 0.5-0.8 0.5-0.6-0.6 0.1-0.5z m3.5-0.2l-0.4 0.5 0 0.5-0.4 0.9-0.4-0.2 0.3-0.7 0.2-1.2 0.5-0.3 0.2 0.5z m-8.3-14.5l0.1 1.9-0.7-0.8 0.6-1.1z m6.4-3l0.4 0.2-0.1 0.9 0.7 0 0.5 2 0.4 0.6-0.7 1 0.2 0.4 0.7 0.5 0.1 0.9 0.5 0.4-0.5 0.7 0.1 0.6-0.3 1.3 0 1.2 0.1 1.1 0.5 1.2-0.5 2-0.5-0.4-0.4 0.6 0.5 0.6-0.2 0.5-0.7 0.4-0.2 0.9-0.7-0.6-0.6 0.4-1.7-0.4 0.3 1.1 1.2 1.5 0.5 1.1-0.3 0.3-0.7 0-0.9 0.4-0.8-0.4-0.4 0.3-0.8-0.4-0.9 0.6-0.9 0-0.7-1.3-0.1-2.9 0.3-1.1-0.2-0.7 0.3-0.7-0.5-0.8 0.2-0.9 0.3-0.6-0.1-1.2-0.4-0.5 0.5-0.4 0.2-0.7 0.7-0.1-0.1-0.5 0.4-0.6-0.5-0.9 0.4-0.1 0-0.8-0.3-0.7-0.4-1.6 0.1-1.4 0.5 0 1.1-1.2 0.8 0 0-0.9 1.1-0.2 0.1 0.3 0.2 0 0.2-0.2 0.1 0.2-0.1 0.3 0 0.1 0.1 0 1.1-0.3 0.6-0.4 0.2-0.7z m-6.9-2.7l0.8 0.4 0 3.2-0.2 0.9-0.8 1-0.1 0.6-0.6 0.8-0.6-1.5-0.1-0.8 0.5-0.7 0.1-1.3 0.4-0.8-0.3-0.4 0.5-1.3 0.4-0.1z m10.6-0.2l-0.5 0.4-0.7 1.1-0.4 0 0-1.2 0.6 0.3 1-0.6z m-2.8-0.9l0.4-0.1 0.2 1-0.8-0.1 0.2-0.8z m46-15.5l0.1 0.8-0.7 0.4-0.2-0.6 0.8-0.6z m-42.4-3.8l0.3 0.9 0.1 1.5-0.2 0.7-0.1 0.9 0.1 1.4 0.5 0.5 0.4 1.5 0.6 0.7-0.3 0.7-0.6-0.2-0.5 0.2 0-1-0.4 0.2-0.8-0.3-0.9 0.6-0.5-0.8-0.3 0.5 0.2 0.6 0.6 0.1 1.2 0.6 1.1 1.7 0.5-0.1-0.1 1-0.8 2 0.1 1.3-0.2 0.4 0.2 1.3-0.2 0.8-0.8 1.3-0.6 0.2-0.6-0.1-0.4 0.5-0.8-0.9-0.3-0.8-0.4 0.3-0.4 1.1 0.1 0.8 1.1 0.8-0.4 0.7-0.6-0.2-0.1-0.7-0.9 0-0.2 0.7 0.1 0.6-0.7 0.4 0 1.1 0.5 0 0 0.7-0.5 0.2-0.2 0-0.3 0-0.1 0 0.1-0.3 0-0.2-1.4-0.3-0.3-0.5 0.3-0.8-0.3-0.5 0-1 0.7-0.1 0.2-0.6-1-0.4 0.2-1.3 0-1.4 0.8-0.4-0.3-1 1.1-0.6-1.1-0.3 0.7-2.1-0.1-0.8 0.7-0.1 0.2-0.6-0.6-0.1-0.5-0.6 0.7-0.9-0.6-0.2 0-0.7 0.3-0.4 0.1-1 0.5-0.7-0.2-0.7 0.9-0.3 0.4-0.5-0.4-0.6 0.1-1 0.9-0.1 0.1-0.6 0.8-0.2-0.5-1 0.2-0.2 1.5-0.3 0.4 0.6 0.6-0.3-0.4-0.6 0.4-0.5 0.8 0.6 0.1-0.8 0.4 0z m-0.5-3.6l0.3 0.5-0.3 0.6-1 0-0.2-0.7 1.2-0.4z m12-16.9l0.4 1.2-0.2 1-0.2 0.9-0.4-0.2 0.3-0.8-0.4-1.9 0.5-0.2z m9.4-26.3l-0.3 1-0.7 0 0.4-0.9 0.6-0.1z", "2": "M409.5 896.6l0.6 1-0.5 1.4-0.8-1 0.2-0.7 0.5-0.7z m72.1-108.7l0.9-0.3 1-0.2 0.6-0.7 0.3 0.7-0.1 0.7-0.7 1.2 0 1.2-0.7 0.2-0.5-1.1-0.9-0.4 0.3-0.6-0.2-0.7z m1.3-0.8l-0.6-0.3-2.1 0.1-0.8-0.6-0.6 0.7 0.5 0.3 0.8-0.1 1 0.7 0.4 0 0.1 0.9-0.2 0.4 0.8 0.6 0.7 1.6-0.3 0.7-0.4 0-0.6 0.8-1.3 0.5-5.1 2.6-1.5 0.9-2.9 1.5-1.8 0.3-1.7 0.6-2.3 1.3-1.9 0.8-1.1-0.7-1.3-0.1-3-0.4-0.6-0.5-1.2 0.2-1.3 0-2.6 0.4-2.5 1-1.3 0.8-1.3 1.5-0.9 1.4-0.4 1.2-0.1 1.1-0.5 1.5-1.6 3-0.1 0.8 0.2 0.8-0.5 0.4-1.4 1.1-1.4 1.7-0.9 1-0.8 0.9-0.1 1 0.4 0.7 0 0.9-0.3 0.2-2.1 1.2-0.7-0.1-2.7 0.4-0.5-0.1-0.7-1.1 0.3-0.6-0.6-1.7 0.6-0.3 0.1-0.5-0.9-1.1-2.6-0.7-0.9 0-1.4 0.1-2.6 0.6-2 0.7-2 0.9-2.3 1.4-1.5 1-0.9 1-1.4 1.7-1.2 2.5-0.4 1.7 0.1 0.4-0.4 0.9-0.5 1.8-2.5 3.2-0.6 1.1-0.5 1.1-0.4 1.8 0.1 1.6-0.1 0.8-0.6 1.4-0.6 2.4 0.1 2.1 0.6 3.6 0.5 1.3 0.1 2.4 0.5 1.9 0.3 0.9 1.1 1.5 0.8 2.8 0.2 0.4 0.9 0.6 0 0.5-0.6 1.7-0.3 3.7-0.1 2.3-0.8 2.1-0.3 1.1-0.3 2 0 1.6 0.2 2.3 0.5 2.6 0.3 1 0.5 0.5 0.8 2.1 0.8 1.7 0.6 1.6 0.3 0.4 0.2 1.3-0.5 2.5-0.1 1.5 0.3 2 1 1.9 1 3 0.5 1-0.8-0.1-0.4-1.8-0.3-0.6-0.3-1.6-1.3-1.7-0.4-0.6-0.9-0.7 0-0.8-1.1-1.2-0.4 0.3 0.1 1.2-0.2 1.7-0.5 0-0.7-1.5-0.5 0.1-0.6 0.6 0 1-0.7 0.8 0.7 0.9 0.5 0.2 0.7 1.2 1 0.2 0.8 0.8 0.6-0.2 2 0.4 0.9 0.4 0.4 1 0.7 0.6 0.6 0 0.1 2-1.4-0.6 0.1-0.7-0.3-0.2-0.3-1.2-0.5-0.6-1-0.6-0.8 0.2-1-0.1-0.2 0-0.2 0-0.2-0.2-0.4-0.3 0-0.1-0.5-0.2-0.7-0.1-0.1-0.2-0.3-0.5-0.3-0.2-0.1 0.1-0.2-0.4-0.8 0.6-1-0.1-0.3-0.3-0.6 0.2 1 0.9 0.6 0.1 0 0.5-1.1-0.1-0.3 1-1.2 0.3 0.1 1.1-1.1 0.5 0.1 0.7 0.6 0.4-0.9 1.3-0.8 0.1-1.8 1.1-1.7-0.1-0.7 0.8-0.9-0.7-0.2 0.8-0.9 0.5 1.1 0.8 1 0.5-1.3 1.2-0.4-0.7-0.6 0-0.5 0.4-0.2-0.7-0.8-0.5 0.4-0.7-0.5-0.9-1.2 0.3-0.4 0.5-0.7-0.3-0.5 0.7-0.7 0-0.8-1.1-0.2-1.1-1.3-0.1-1.5-0.4-1.3 0.1-1.4 0.7 1 0.6 0.6-0.1-0.1 0.8-0.4 1 0.1 0.9 0.9-0.7 0.3 0.5-0.8 0.3-0.1 0.8-1.2 0-0.5 0.3-0.3 0.7-0.5-0.2 0.1 1.3-1.7 0.4-0.9-0.2-0.1-0.6-1.5 0.1-0.4 1.3-0.7 0.3-0.8 1.2 0.2 0.6-0.2 0.8-0.6 0.2-1.2-0.5-0.5 0-0.7 0.4-0.5-0.1-0.5-0.8-1.8-0.7-0.7-0.7-1.2 0.5-1.1-0.2-1.1 1.7 0-1.7-1.7 0-1-0.2-0.8 0.7-1.3 0.3-1.3-0.4-0.3 1.8-1.4-0.4-0.4 0.5-0.7 0.7 0 0.3 0.9 1.9-0.7 0.2-0.7 1.4 0 0.6-0.5 0.7 0.2 0.9-0.3 0.2-0.3 1.4-0.7 0.5-0.4 0.8 0.2 1.1-1 0.6-0.3-0.8-0.7-1 0 2.2-0.7 0.3-0.5-0.1 0 1.6-3.1 0.2-2-1.3-0.7-0.1-0.8-1.4-1.3 0.1 0 0.5-0.9 0-0.2-0.7 0.8-0.3 0.3-0.6-0.2-1.1 0.3-0.4 0.4-1.7 0-1.3 0.7-0.3 0.4 0.3 1 0.1 0-0.7 0.4-0.9 0.4 0.1 0.6-1.4 1.1 1.2 0.4-0.4 0.5 0.5 0.5 0.1 0.6-0.4 0.1 0.7 0.6 0.5 0-0.9-1.2-1.1 0.1-1.6 1.2 0.2 0.1-0.6-0.4-1.2 0-0.6 0.6-0.3 1.3-0.4-0.3-0.6 0.6-0.6 0.1-0.5-0.3-0.7 0.9-0.4 0.1-0.7 1.1-0.2-0.6-1.1 0.2-1.6 0.6-1-0.3-0.3-1.3-0.2-0.3 0.7-0.7-0.7-1-0.6-0.1-0.6-1.1 0.4-0.2-0.6-0.5 0-0.8 0.5 0.2-1.1-1.4-0.8 0.5-1.2-0.3-2.2 0.2-1.5 0.6-1.3 0.4-1.2-0.6-0.5-1.2 0.1-1.1-0.2-2.1 0.4-0.8-0.5-0.7 0.2-0.6 0.9-0.3-0.8 0.4-0.6 0-0.7-1.1-0.3 0-0.7-0.5-0.2-1.3 0.1-0.9 0.4 0-0.5-0.5-0.5-0.1-0.9 0.7 0.3 0.7-0.1 0.2-0.9-0.9-0.8 0.9-1 0.3-0.6-0.4-0.9 0.3-0.6-0.4-1.2-1 0-0.2-0.6-1-0.5-0.1 1.2-1.8-0.4-0.6 1.5-0.6-0.2-0.3-1.6 0.3-0.5 1-0.3-0.2-1.1 0.2-0.8-0.6-0.1-0.4 0.8-1.3 1.1-0.7-0.5-0.1-0.7-0.9 0.2-1.6-0.2-0.3 0.5 0.2 0.8 0.3 0.2 0.2 1-0.8 0.7-1 0.3-0.2 0.8-1.4 0.3-0.5 0.4 0 1.8-0.6-0.8-0.9 0.3 0.1-0.9-0.8 0.1-1.1 0.5 0 1.1-0.7-0.5-0.5 0.5-1.1 0.3-0.3-0.8-0.7 0 0.3 1.3-0.2 0.7-0.5-0.1-0.2-0.5-0.7 0 0.1 0.6-0.3 0.3-0.9 0.1-0.1-0.7 0.4-0.6 0.2-1.1-0.4-1.5-0.4-0.6-0.4 0.5-0.7-0.4 0.6-0.9-1.8-0.2-0.7-0.4-1.1 0.6-0.4-1.1-0.8 0.4-1.2 0.2-0.3-1.9-0.5 0-1.1 1.3-0.6-0.1 0.2-1.4-0.2-0.6-0.7 0.6 0.3 1.2-0.9 0.2-0.4 0.6 0.7 0.3 0.5 0.7-0.3 0.5 0.6 1-0.1 0.6-1.5 0.1-1-0.3-0.5 0.3 0 0.5-0.7 0-0.8-1.1-0.5 0-0.3 1.3-0.7-0.4-0.4-1.5 0.1-0.6-0.5-0.2 1.3-1.4 0.4-1.6 0.8-0.1-0.2-1-0.9-0.8-0.7-0.3 0.2-0.9-0.7-0.5-0.9-0.4-0.6-0.5 0.3-0.9 1.1-0.2-0.1-0.9-0.6-0.2-0.3-1-0.7-0.6-0.3 0.3-1-0.3 0.3-1 0.8 0 0.7-0.3 0.2-0.8 0.6 0.5 2.1 0.1-0.3 1.6 0.1 0.7-0.2 0.5 0.5 0.3 0 1.1 1.5 0.2 0.8 0.3 1-0.1 0.5 1.5 0.6 0.3 0.6-0.6 0.8 0.2 0.8-0.2 0.9 0.1 0.9-0.8 0.3 0.7 0.8-0.7 0.4 0.1 0.7 1.3 0.7 0.2-0.4 1.1 0.7 0.3-0.7 1.1 0.2 0.5 1.4 0 0.2 0.6 0.8-0.5-0.4-1.5 0.7-0.2 0.1-0.9-0.4-0.3-1.1 0.1-0.5-0.3 0.4-0.9-0.8-0.3-1.2-0.2 0.4-1.1 0.4 0 0.8-0.6 0.2-0.7 0.6-0.5-0.2-0.5-1.3 0.5-0.1-0.7 0.9-0.2 0.5-1.2 2.5 0 1.3 0.5 0.3-0.8-0.7-1.9 0.3-1.2-0.7-0.8-0.8 0.4-0.4-0.2 0-1.1-0.6-0.4-1-0.3-0.6 0.4-0.1 0.8 0.5 1.2 0.4 0 0.4 2-1 0.4-0.3-0.8-0.7-0.5 0.1-1.4-2.7-0.2 0.1-2-0.8 0.2-0.5 0.4-1.6 0-1.5-0.8-0.7 0.2-0.2 1.1-0.5 0.5-0.2 0.9 0.3 0.1-0.2 1.3-0.5 0.4-0.7 0-0.8-1.1-0.6 0-1 0.3-0.7-0.2-1.1 0.1-0.4-0.2-0.5-1.1 0.7-0.3-0.1-0.9-1.5-0.5-0.7-1.1 0.2-1.4 0.4-0.1 0.6-0.7 1 0.5 0.1-1.6 0.5 0 0.5-1.2-2.3-0.2-0.9 0.5-0.6-0.1-0.7-1.3-1.5-0.6-0.4-0.9-0.3-0.9-0.6-0.6 0.4-2.8 0.9-2.1-0.6-1.6 1.8-0.2 0.2-1.6 0.3-0.3 0.1-0.8-0.2-1 0.5 0 0.2-1.7-0.1-0.9-0.7 0.1-0.5 0.3-0.4-0.4-0.7 0-1.1-0.2-0.2-0.5 0.9-1.2-0.4-1.3 0-0.4 0.8-0.9 0.9 0.6 0.5 0 0.8 0.6 0.6 1 1.2-0.1 1.3 0.2 0.5 0.4 1.2-0.5 1.6 0-0.2 0.8 1.3 0.2 0.1-0.8 0.9-0.2 0.6-1.4 0-0.9 0.7-0.5 0.2-0.8-0.6-0.2 0.1-0.5 0.7 0 0.2-0.6-0.2-0.9-0.6-0.9-0.7-0.1 0.7-1.1 0.8 0-0.6-0.7 0-0.5-1.1-0.1-0.2-1.4-1.4 0.3-0.2-0.6-0.8-0.8 0.2-0.9-0.5-0.6-0.1-1.2-0.7-0.5-0.4-0.6-0.8-0.9 0-0.5 0.8 0.2 1.1 0 0.1-0.9-0.2-1.8 0.2-0.8-0.1-1.1 1.4-0.4 0.5-0.4 1.1 1 0.3-1.2-0.8-0.7-0.8-0.5 0.3-0.6-0.3-0.4-1-0.2 0-0.9 0.5-1 0.1-1.5-1.3-0.1 0.2-1 1.5-2 0.9-0.5 0.9-0.3 0.5-0.3 1.2-0.4 1.9 0 0.5-0.2 1.1 0.3 2.5 0.2 0.7 0.3 1.1 0 0.6-0.3 1.4 0.5 1.5 0.3 2.7 0.5 0.6-0.2 1.1 1 1.5 0.4 1.1-0.5 2.9 0.8 1.2-0.4 0.7 0 0.4-0.6 0.7-0.1 1.4 0.7 1.5 0 1 0.6 0.5-1.3 0.8-0.1 0.3 1 0.5 0.9 1.3 0.6 0.9-0.3-0.1-0.5 1.3 0 0.6-1.3 0-0.5 0.8-0.6 0.8-0.2 0.5-0.5 0.2-1.1 0.4-0.9-0.3-1.1 0.6-0.4 0.8 0.3 0.8-0.1 0.8-0.8 1.1-0.3 1.2-0.7 1.5 0 1.5 0.3 2.2 0.6 1.5-1.5 1.2 0.2 1 1.3 0.7 0.5 0.9 0.5 0.9 0.2 1.2-0.1 1.1-0.8 1-1.4-0.2-2.3 0.9-0.3 0.3 0.6 0.2 1.2 1 0.4 0.7-0.9-0.6-1.5 0.1-0.9 1.8-0.9 1.1-0.4 1-0.6 0.7 0 0.9 0.2 1.9 0 1.8 0.8 1.1-0.5 0.6-0.7 0.1-1.8 0-1.3-0.6-0.9 0.3-2.7 0.5-0.7-0.4-1.2 0.2-1 1.1-1 0.2-0.5 1.8-0.5 0.9-0.1 2.7-0.2 0.6-0.3 0.3-0.6 1.6-0.8 1.3 0 1.3-0.4 0.9-0.7 1.6 0 0.3-0.4 0.9-0.6 1.4-0.1 0.9-1 0.8-0.3 0.3 0.2 0.9 1.2 1.8-0.3 0.4 0.4 0.6 1.4 0.4 0.4 0.7 0.2 0.7 0 1-1 0.6-1.2 0.9-0.7 1.1-1.1 0.1-1 0.6-1.5-1-0.4-0.2-1-0.7 0-0.8-0.4 0.6-1.5 1-1.1 0.3-1 1.3 0.1 0.1-0.9 0.6 0.2 1-0.1 0.3-0.6 0.8-0.8 0.5-0.7 0.5 0 0 0.9 0.8 0 0.8 0.6 0.7-0.3 1.3 1.9 0.4 1.6 0.2 1.5 0.6 0.5 0.8 0 0.5 1.6 0.9-0.7 0-0.7 0.6 0.3 0.2 0.4 1 0.5 0.1 1 1.1 0.5 2.5 0.4 1.2-0.8-0.4-0.7-1-0.7 0.2-0.4 0.1-1.2 0.8-0.1-0.2-1.1 0.1-0.8-0.5 0-1.3-0.9-0.4 0.5-1-0.4-0.5 1-1.2-0.9-1.5-0.4-1.3-0.5 0.4-0.9 0.6-0.6-0.7-1.6 0.9-0.7 0.2 0.8 0.7 1.1 0.9 0.2 0.2-0.7 0.6 0 0.5-0.7 0-0.9 0.4-0.7 1.8-0.8 0.3-0.5 1.2 0.7 1.2 0.3 0.9 1-0.6 0.4 0.4 0.6 1.2-0.5 1.4 0.1 0.7 0.4 2.6 0.6 0.3 0.4 0.9-0.9 0-0.6 0.2-1-0.3-0.5 0.4-0.5 0.1-0.8 0.7 0.2 0.8-0.2 0.1-0.8-0.4-1.1 0.9-0.2 0.9 0.6 1 0.3 1.4-0.2 0.6-0.7 0.6 0.1 0.8-0.4 2-0.6 0.6-0.1 0.6-0.7-0.3-0.5 0-1.4 0.7-0.7 0.9 0.2 1.7 0 0.7-0.6 1.2-1.9 0.7 0.2 0.2 0.6 1.2 0.5 1.1-0.3 0.1-0.3 0.7-0.4 1.8-2.4 0.3-3.2 0.8-1.2-0.8-0.6 0.3-0.8 0.8-0.7 0.7-1.3 0.6-0.8 0-1.1 0.3-0.4 1-0.5 0.4-0.6 1.8-0.2 0.8-0.6 0.2-0.6 0.9-0.7 0.8 0.1 0.4-0.4 0.6-0.1 0.4-0.5-0.4-0.9-0.8-0.8 0.9-0.7 0.5-0.9 1.1-0.5 0.5 0 1.8-0.6 0.5-0.4 0.7-0.2 2.3-1.4 0-0.8 0.8-0.4 0.7 0.4 0.5 0 0.4-0.7 0.7 0.5 1.2 0.1 0.1 0.5 1.1-0.2 0.5 1.1 0.6 0 0.8 0.6 0.6 0 0.2 0.5 0.8-0.3 0.2-0.8-0.5-0.9 0.3-0.5 0.7-0.4 0.6 0.7 0.6-0.4 0.5 0.2 0.2-1.3-0.3-0.4 0-1.8 0.8 0.7 0.3-0.6-0.6-0.8-1.3-0.4-0.1-0.8 0.9-0.7-0.1-0.6 0.2-1.2 1.1-0.2 0.5-0.5 0.3-0.8-0.3-0.4-1.3-0.1 0.5-0.8 0.6-0.3 0.2-0.7-0.7-1.4 0.5-0.4 0.7-1.1 1-0.9 0.3-0.7 1.3-1.5 0.3 0.8 0.5 0.4 0.9 0 0.1 1.3-0.4 0.5 0.5 0.4 0.8 0.2-0.6 1.1 0 0.6 0.7 0.1 1.5 0.8-0.3 1.7-0.2 1.4 0.1 0.8 0.7 0.3 0.8 0.7 0.5-0.5-0.1-0.5 0.7-1.2 1.2-0.2 0.1-0.4 1.1-0.2 0.6-0.5 0.5-0.1 0.6-0.9-0.2-0.6 0.3-0.7-0.4-1 0.8-0.7 0.7 0.2 1.7 0.9 0.5-0.2 0.2 0.8-0.2 0.4 0.6 0.9 0.9-0.2 0.2 0.3 0.9-0.2 0.6 0.1 0.5-0.7 0.7-0.1 0.9 0.2 0.6-0.2 0.3-0.5-0.8-1-0.2-0.6-0.7-0.4 1.2-1.1 0.8-1.4 0.5-0.6-0.6-0.4-0.7 0.3-0.6-0.5-0.3-0.5 0.4-0.5-1-0.4 0.5-0.6-0.3-1.2 1.3-0.6 0.9-1.8 0.4-0.3 1.5-2.1 0.6 0.5 0.6-0.1 0.6 0.6 1.3-0.2 0.5-0.4 1 0.1 0.4-1.2 0.9-0.3 0.6 0 1.3-0.3 0.4-0.5 0.9-0.4-0.1-0.6 0.5-0.4-0.8-0.4-1.4-1.8 0.6-0.3-0.1-0.9-1.2-0.1-0.4-0.4-0.2-0.8 0.7 0.1 0.2-0.7 0.7-0.1 0.2 0.5 0.9-0.2 0.7 0.2 0.2 0.6 1 1.1 0.7-0.4-0.5-0.8 0-0.6 0.9-0.1 0.1-0.9-0.4-0.4-0.2-1.2 0.6-0.2 0.5 0.8 0.4-0.4 0.3 1.4-0.7 0 0.1 0.5 1.2 0.2 0.1-0.8 0.6-0.8 0.9 0 0.1-0.9 0.8-0.6-0.3-1 0.8-0.8 0.9 1 0.4 1 0 0.4 0.9 1.2 0.6 1 0.2 1.1 0.7 0.3 0.6 2.1 0.9 0.6 0.2-0.6-0.5-1-0.4 0.1-0.3-1.5 1.6-0.8 0.9 2.1-0.1 0.5 0.8 0.9 0.2 0.8-0.2 0.5 0.3 0.8 0.7 0.5 0.2 0.7 1.3 0.1 0.8 0.3 1.7 0.3 0.9-0.2 1.4 0.8 0.6 1.1 0.8 0.2 1.5-0.7 0.9-0.3 0.7 0.2 1.2-0.7 1 0.5 0.5 0 0.8-0.6 0.6 0.3 1.1-0.4-0.1-0.6 0.5-0.1-0.4-1.8 1 0.4 0.8-1.1 0.8-0.3 0.7-0.8-0.5-0.9 0.9-1.1-0.2-0.3-0.3-0.3-0.1-0.2 0-0.2-0.3-0.6 0.2 0 0 0.1 0.6 0.4 1.1 0.6 0.2-0.4 0-0.5 0.4-0.5 0.3-0.2 0.4-0.4 1.3-0.3 0.4-0.5 0.3-0.2 0.1 0.2 0.3-0.1-0.2 1 0.5 0.8 0.4-0.7 0.3-0.5 0.1-0.2 0.4-0.2 0.1 0.1 0.1 0.2 0.2-0.3 0.4 0 0.3 0.2 0.3-0.5-0.7-0.7-0.3 0.3-0.4 0.1-0.2-0.6-0.4-0.1-0.3-0.8 1.1-0.2 0.6 0 0.5-0.1 0.2-0.4-0.1-0.8 0.6 0.2 0.5 0 0.2 0-0.2 0.9-0.1 0.1 0.2 0.5-0.1 0 0.8 0.5 0.4 0.2 1 0.7-2.5 3.5-0.8 0.3 0.2 0.5-1.9 1.8-0.9 1-0.4 1.3-0.7 0.7 0 0.8-0.8 0.9-1.4 1.1-1.7 2.2 0 0.6-2.7 2.7-0.2 1.1-2.4 2-2.3 2.2-2.3 2.3-0.9 1.8 0.1 0.5-2 1.3-2 1-2.1 1.2-2.2 0.7-0.8 0.7-2.6 1.1-2.5 1.3-1.5 0.9-0.9 0.8-2.5 1.7-0.3 0.6 0 0.5-1 1.3-1.5 0.8-1.2 0.9 0.1 0.5-0.4 0.5-0.8 0.6-0.3 1.7-0.7 0.6-0.2 0.5-1 0.8-0.5 1.2-0.9 0.5-0.5 0.5-0.1 0.7-1.3 1.1-0.6 0.4-0.2 0.8-0.7 0.6-1.3 0.7-0.5 0.5-2 0.6-0.8 0.4-1.6 0.7-0.9 0.5-0.7 1.1-1.1 0.3-1 0.6-1.4 0.6-0.5 0.4-1 0.3-2.8 1.3-1.9 1-2.7 1.6-3.1 2-1.4 1-1.8 1.5-3.7 3.6-0.9 1.1-0.9 1.7 0.2 0.6-0.5 0.7 0.1 0.6-0.7 0.2 0 1 0.6 1.1 0.4-0.1 1.1 0.8 0.8 0 0.8 0.3-0.3 0.9 0.2 0.4-0.5 2.1 0 0.6-0.8 0.1-0.7 0.7z", "3": "M924.8 419.9l-0.1-1-0.7-0.8 0.1-0.8 0.8-1.1-0.9-0.5-0.6-1.6-0.5-1 1-0.8 0.6 0 0.1-1.3-0.5-0.5-0.4-1.1 0.3-0.3-0.7-0.8 0.2-0.6-0.2-1.4 0.6 0.3 0.9-0.3 0.3 0.5 1-0.8 0-0.2 1.1-1 2-1.2 1.3-0.2 0.5-0.5 1.3-0.2 0.3-0.7 0.1-1.4-0.4-0.7 1-1.4 1.6-1 1.4 0.8 0.5 0.8 1.6-0.3 1.6-0.7 1.4-0.1 0.2-0.3 1.8-0.5 0.9 0 1.7-0.6 0.4 1.1 0.9 0.1 0.3-1.1 1.9-0.9 0.3-0.8 0.8-0.6 0.7-0.9-0.5-1.1-0.9-1.2-1.4-0.4-0.7 0.2-0.4 1.1-0.6-1.2-0.6 0.6-0.5-0.1 0.3-1.2 0.6-0.4 0.1-1.1 0-2-0.6 0-1.4-1.1 0.1-0.8-0.9-0.2-0.4-1 0.5-0.6-0.7-0.5 0-0.7 0.4-0.5-0.7-0.3 0-0.8-0.5-0.4 1-0.4-0.2-0.6 0.7-0.7 0.8-1.3 0.9-1 0.9-0.3 1.6-1.7 1.1-1.5-0.1-0.6 0.8-1-5.2-0.4-7.4 0.8-0.7 0.6-0.5 0-0.3 0.7-0.7 0.4-0.9 1.2-4.5 1.5-2.3-1.1-2.8 0.9-6.3 2.2-0.4 0.5-1.8 0.3-1.9 0.5-1.6 0.6-0.8 0.1-0.4 1.1-1 0.6-0.8-0.1-1.8 1.3-0.8-0.2-0.8 0.1-1.7 1-0.3 0.4-1.6 0.3-0.6 0.6-1.6 0.4-0.9 0.7-1.6 0.3-1.1-1.2-0.6 0.6-0.6-0.1-0.7 0.5-1.8-0.5-0.9-0.1-1.1-0.9 0.3-0.8-1 0.1-0.7 1.1 0.3 0.1 0.1 1 1.1 0.7 0 1.4-2.1 0.9-1.3 0.8 0.1 0.4-2.6 2.4-0.8 1.6-2.1 1.1-1.5 1.5-0.6 0.8-1.3 1.3-1.1 1.6-1 1-0.4 0.1-0.7 0.8 0 0.6 0.6 0.6 0.1 0.7 0.3 0.8-0.9 0.4-1.4 1-1.7 0.9-1.5 1.8-1.7 0.3-1.4 0.4-2 0.2-1.2 0.4-0.8 0-0.7-0.6-3.4-0.4-2.7 0.3-1.6 0.3-1.3 0.4-2.5 0.4-0.6 0.5-0.8-0.4-1.7 0.3-0.7-0.5-2.8-1.3 0-0.8-1.5-0.9-1.2-0.2-2.3-0.7-1.9 0.2-1.9-0.4-0.5 1 0 0.9-2 1-1.1 0.1-1.7-0.3-2 0.2-0.7 0.7-0.4 0-0.4 0.7-1.6-0.4-1.8 0.4 0.1 0.6-1 0.3-0.7-0.4-2 0.8-2.6 0-0.4-0.1 0.3-1.5-0.1-1.6-0.4-0.3 0-1-0.8-0.5-0.1-0.7-0.4-0.5-0.7 0-0.5-1-0.2-1.4 0.4-0.9-0.4-0.6 0.1-0.7 1-0.6 0.5-1.3-0.2-0.9-0.8-0.6 1-0.6 1.1 0.3 0.6-0.3-0.1-0.6-1.3-0.7-0.7-0.6 0.1-0.7-0.4-0.5-0.1-0.8 0.3-0.8-0.5-0.5-0.1-0.9-0.5-0.2-0.2-0.7 0-0.8-2.7 0.7-0.5-0.4-0.9 0.1-1.7-0.5-0.7 0.5-0.6-0.1-1.2 0.3-0.6-0.3-1.5-0.1-0.1-0.6-0.7-0.5-1.2 0.8-0.4-0.6-0.8-0.6-0.3-1.1-0.5 0.1-1.2-1.7 0.6-0.6-0.7-1.3 0.3-0.7 0.8-0.8 0.1-0.4 1.1-0.9 0.2-1.6 0.3-0.4-0.3-0.5-0.1-1.2-1-0.7-1.1 0.2-0.7-1.2 0.8-0.6 0.8 0 0.5 0.3 2.1-0.1 0.9 1.3 0.5 0.3 1.2 0.4 0.9 0.1 1.1-0.3 0.8 0.1 0.2 1 0.4 0.2 0.5 1.5 0.7 0.6 1-0.2 0.3 0.4 0.9-0.5 0.4-0.8 1-0.8 1.8 0.5 0.6-0.1 1-0.8 1.2-1.1 1.2-1.1 1.5-0.7 1.9-0.2 0.4 0.3 0.6 1.8 0.8 1.1 2.5-0.6 0.1-0.8 1-0.3 1.1 0.8 0.3-0.1 1.3-1.3 0.8-0.1 1 0.9 0.5-0.2 0.9-1.3 0.7-0.8 2.2-0.9 1-1.3 1.4-2.2-1.6-2.2-1.1-0.6 0.6-2.1 0.9-0.8 1.1-0.5 1.5-1.3 0.6-0.7 0.7 0.2 0 0.9 2.6-1.2 0.6-1.2 1.7-1 0.8 0.4 0.5 0.8 1.1-1.3-0.4-1.4 1.7-0.3 0.8 0 1-0.7 1 0.3 1.4 0 1-0.9-0.2-0.8 0.5-1.5-1.4-1-0.3-0.5 0.8-0.5 0.8-1 1.6-1 0.4-1.5 0.6-0.9-0.2-1.3 0.9-0.4 0.2-0.9 2.7-0.8 1.2-0.9 0.9 0.9 0.2-0.9 0.6-0.3 0.8 0.4 0.2 0.5 2.8 0.2 1.1-0.2 1.6-0.7 1.5-0.4 1.5 0.8 2.4-1.5 0.7 0.1 1.3 1.1 1.1 0 0.7-1.1 0.3-0.7 0.1-1.1 1.1-1-0.5-0.9 0.5-0.8-0.2-0.8 1.2-0.5 0.5-0.8 1.2-1.2 2-1.4 0.6-0.6 0.1-0.7 0.5-0.7 0-0.6 0.4-1.3 1-1.7 1.5-1.3 1-1.2 2.2-0.1 0.4-0.3 0.3-1.3 1.4-0.8 0.6-0.6 2.2 0.4 1.3-0.1 0.8-0.4 0.5-0.8 0.1-1 1.3-1 0.2-0.5 0.3-1.4 0.5 0.1 1.2 0.8 1.2 0.9 1.9 2 0.8 1 0.2 0.7-0.1 1.1 0.1 0.6 1.7-0.7 0.9 0 1.6 0.8 1.6 0.1 1.5 1.1-0.2-1.5 1.2 0.7 2 0.4 0.8 1 1.9 0.3 2.5 0 0 1.6 0.5 0.4 1.3-0.2 1.4 0.7 2.3 0.4 0.3-0.2 1.2 0.1 1.1-2 0.1-1.4 0.4-0.7 1.5 0.5 0-2-0.3-1.1 0.3-0.3 1.4 0 0-1 0.4-0.8 1.1 0.5 1.4-0.8 1-1.2 0.9-0.1 0.5-0.5 0.1-0.5 1.1-1.1 0.5 0.8 1.2-0.7 0.4 0 1.4-1.4 2.6 0.3 1.3-1.1 0.7-0.4 1.4-1.5 0.8-0.2 0.5 0.3 0.7 1.1 1.2 1.2 1.2 2.1-0.1 1.4 0.7 0.6 0.3 0.7 0.8 1.3 0.6 0.4 1.4-0.1 0.7-1 1.1-0.3 0.6-0.7 0.4 0.1 0.6 1-0.2 0.9-0.5 0.7-0.5 1.4-0.4 0.4-1.3 0.1-1.6 0.3-0.4 0.4-1.1 0.5-0.6 1.2-1 0.8-1.6 0.2 0.9 1.1 0.5 1.3 0.7 1.2-0.1 0.8-0.9 0.5-0.3 0.7 0.6 0.6 0.1 0.6 2.1-0.9 0.7-0.5 0.2-0.6 1.3-1.6 1-0.5 0.8-0.8 3.1-0.2 0.8-0.3 0.6-0.6 1.6-0.7-1.6 3.3 0.3 1.1 1.2 0 0.1 0.7 0.5 1.1-0.1 1.4 1.6 2.4 0.9 1 0.2 1.2-1 1.7-0.9 0.4-0.9 0-1.5 0.9-0.6 0.2 0.8 1.6-0.8 0.8-0.9 0.6-0.8 0.8-0.5-0.3-0.2 1.2-1.6 0.1-1 1.2 1.2 0.8 0.4 0.5-0.2 0.6-1.1 0.7-2.3 1.8 0 0.2 1.3 0.3 0.5 0.7 1.8-0.3 0.3 1.1 0.6 0.8 0.8-0.3 0.3-1.5 0.9-1.1 0.8-0.2 1 0.2 1.4-0.9 0.3-0.4 1.3-0.5 2.3 0 0.6 0.5 1.2 0.8 0.6 0 0.8 0.6 0.5 1.6 1.8 0.3 0.9 0 0.3-0.4 1.3-0.3 0.7 0.9 0.2 0.7 0.9 0.2 0.8 0.6 0.7 0.3 0.9-0.4 1-1.2 1.4-0.5 1.1 0.5 1.2 1.2 0.3 0.9 0.8 0.3 1.1-0.2 0.6 1 1.4-0.1 0.8 0.5 0.2 0.5 0.7 0.1 1.4 0.9 0.9 1-0.3 0.3-0.7-0.3-1.4 1.4-0.2 0.6 0.5 1.1-1 1 0.1 0.9 0.7 0.2 1.1-0.1 0.4 1.1 0.8 0.2 0.4 0.7-0.7 0.2-0.4 1-0.1 1.6 0.4 0.5-0.3 0.5 0.3 0.8-0.8 0.5-0.7-0.4-0.8 0.2 0.1-0.9-0.5-0.7-1.8 0.8-0.7 0.8-1.1 1-1.5 1.6-0.8 0.3-0.4 0.6-0.8 0.2 0.1 0.7-0.3 1-0.9-0.4-1.1 0.3-0.7 0.5-0.4 1.1-0.7 0.8-0.2 0.7-0.7-0.1-1 0.7-0.3 1-0.8 0.4 0.1 1 0.5 0.2 0.1 1.2 0.7 1.1-0.8 1.6-0.1 1 0.8 0.4 0.2 0.9 0.9 0.5 0.3 0.7-0.2 0.4 0.5 0.9 0.5 0.3 0.2 1 1.2 0.8 0.1 0.7 1.3 1.4 0.5 0.2 0 1 0.7 0.5 0.4 0.9 0.8 0.3 0.6 0.9 0.1 0.7-0.5 0.4-0.4 0.9-0.5 0-0.7-0.7-1.1 0.4-0.5 0-1.1-1.2-1.1-0.5-0.5-0.5-1-0.2-1.2-0.1-1.8-0.9-0.1-0.8 0.9-0.7-0.2-1.1-0.6-0.1-0.4-0.4-0.2-1-0.4-0.2-0.7-0.7-0.5-1-1-0.4-1.1 0-1-0.6-0.6 0.6-0.8-0.3-0.8 0.2-0.9-0.2-0.8 0.6 0.1 0.5-1.3 0.7-1.1 1.1-1-0.4-1-0.2-1.3 0.1-1.4 0.6-1-0.2-0.5 0.5-1.3-0.6-0.7 0.3-0.4 0.6-1.5-0.2-0.6 0.6-0.7 0.2-0.5 0.4-0.6 0-1.7 0.8-0.5 0.1-0.5 0.5-1.7 0.8-0.6 1.6-1.3 1.7-0.8 1.6-2.7 1.8-0.7 0-0.6 0.2-0.8-0.2-1.2 1.2-0.7 1 0.1 0.7-0.4 0.6 0.1 0.9-0.8 0.7-0.9 0.1-1.1-0.9-0.7 1-0.5 0.2-0.2 1.1-0.7 1.1-1.2-0.2-0.4-0.4-0.6-0.1-1.1 1-0.4 1.2-0.6 1-0.7 0.2-1.4 2-0.6 0-1.4 0.8-0.6 0-1.5 0.8-1.1-0.3-0.4-0.9-0.7 0z", "4": "M741.5 463.6l0.2 0.4-0.1 0.5 0.2 1-0.4 0.4-0.4 0.1 0.2-1.6 0.3-0.8z m181.8-57.3l-1.4 1.4-1.3 0.9-0.2 0.6-0.8 0.5-1.7 0.6-0.5 0.5-1.2 0.3-1-1-0.8 0.2-0.7-0.2-0.9 0.4-0.6 0.7-0.6 1.3-1.1 1-0.2 1.1-0.4 0.8-1 0.4-0.6 0.9-0.3-0.4-0.5 0.7-1.6 1.2-1.1 0.3-1.1 0.1-0.4-0.7-0.5 0.5-0.1 0.9-1.6-0.3-0.8 0.4-0.2 0.5-0.6 0.5-1 0.2-0.5 1.1-1.5 0.9-0.1 0.6 0.3 0.7-0.7 2-0.6 0.7-0.9 0.1 0 0.5-0.9 0.6-0.3 0.7-0.8-0.7-0.2-1.1-0.2-2.1-0.6 0.8-0.8 1.2-1 0.8-0.3 0.8-0.5 0.4-0.4 1.1 0.1 1.6-0.5 1.1 0 0.8-0.9-0.1-1 0.6-0.2 0.6-1.1 1.9-0.6 0.2-0.4 0.8-0.2 1.2-0.8 0.6-0.4 1.1 0.2 0.4-0.7 2.4 0.2 0.4-0.9 1.2-0.3 1.3 0 1.3 0.4 0.5 0.5 1.3-0.8 0.8-1.5 0.7-0.7 0.8-0.4 0.7-1.1-0.6-0.9 0.6-0.2 0.8-0.8 0.4-0.5-1.2 0.6-2.4-0.4-1.8-0.6 0.1-0.6 0.7-2.2 1 0.1 0.8 0.6 1.4-0.8 0.4-0.2 0.5-1 0.2-0.7 0.7-0.2 0.9-1.3 0.9-1.3 1.2-0.1 0.9-0.8 0.7-1.2 1.4-0.7 0.1-1.6 0.9-0.4 0.9-0.5 0.1-0.6 0.9-1 0.3-0.4 0.5 0.9 0.8 0.4 1 0.7 0.6 0 0.6 0.9 0.6 0.6 0 0.8 0.4 0.2 1.2 0.5 1.2-0.9 1.3 0.1 0.8 0.6 0.6-0.4 0.5-0.6 0.1-1.4 1.1-0.5 0.8 0 0.4-1.2 1.9-0.2 0.6 0.1 0.8-0.5 1.8-0.4 0.2-0.9 1.6-1 0-0.7 1.1 0 0.6 0.5 1.4-0.1 0.6-0.5 0.2 0.3 1-0.7 0.7 0 0.6-1.3 1.4-0.1 1.5-1.2 0.5-0.9-0.5-0.6 0.2-0.8 3.5 0.3 1.6-0.5 0.7 0.1 1.3-0.4 0.6 0.8 0.5-1.6 1.4 0.1 1-0.6 0.8 0.4 0.8-0.4 0.6-0.2 1.2 0.3 0.7-1.3 0.3-0.7-0.3-0.7 0.5-0.8 0-0.9-0.6-0.2 0.7-0.7-0.3-0.7 0.1-0.6 0.6-1.4-1.4-1.4-3.8-1.2 2.6-0.5 1.8-0.8 1.8-1.1 0.5-0.5 0.6-0.6-0.3-0.2 0.9 0 0.9-0.3 1.3-0.8 0.3-1.3 0-0.1 0.8-0.6 1.8-0.6 0.1-0.1 0.1 0.1 0.3-0.1 0-0.2-0.2 0 0.2-0.5 0-0.1 0.1-0.1 0.1 0 0.1-0.3 0.4-0.3 0.3-0.1 0-0.7-0.7-0.2 0.1 0-0.4-0.1-0.5-0.5-0.7 0.1-2.2-1.5 0.1-2.2-0.1-0.6 0-2.8 0.1 1.7-4.2 0.3-1-0.6-1.1 0.1-0.7-0.9-0.9 0-1.6 0.1-2.2 0.2-1.4 0.3-1.1 0.1-0.9 0.4-1.4 1.2-1.8-0.5-0.2 0.4-0.7-0.1-0.8-0.4-0.9-0.1-0.9-0.8-0.1-0.4-0.6 0-0.9 0.2-0.4-0.1-1 2.3 0.1 1.2 1.1 0.6-0.1 1 1 0.7-0.3 1.1 0 1.5-0.4 0.3-1.4-0.2-1-1.2-0.3 0.4-0.7-0.4-0.5-0.8 0.4-0.4-1.1 0.3-1.2-0.3-0.2 0.9-0.3 0.5-0.6 0.5-1.1 0.1-0.8 1.5 0-0.1-1.3 1 0.4 1 0 1.3 0.5 0.8-1.3 0.4-0.1 0.2-0.7 0.5-0.3 2.4-1 1.1 0.2 0.8-0.7-1-0.5-0.3-0.6 0.2-0.7 0.8-0.7-0.3-0.8 0-0.9-0.8-0.1-0.9-1.5-0.6 0-0.6-0.5-0.9-1.1-0.5 0.2-0.3-0.8-1.5 0.5 0-1.1-0.3-0.9-0.9 0.3-0.1-0.6 0.4-0.6 1.4-0.7 0.8-0.9 0.6-1.8-0.7-0.1-0.4 0.7-0.7 0.2-0.7 0.4-0.9-0.8-0.2-1.4-2-0.6-0.6-1.4-0.5-0.7-1.1-0.2-0.2-0.8 0.5-0.4-0.9-0.8-1.5-0.2-1.1 0.8-1.1 0.1-1.3 0.5-1.1 0.1-0.4-0.3-0.5 0.7-1.4 1.1-0.5-1.6 0.3-1.3-0.4-1.5 0-1.1 1-1.5 0-0.7 1.5-1.2-0.1-0.3-1.4 0.1-0.7-0.3-0.2-1.1 0.4-0.8 0.8-0.7 0.4-0.1 1.8-1.6 1.6-1.8-1 0.4-1.1 0.1-1-0.3-0.7 0.1-0.4-0.4-1 0.5-0.6 0.7-1.3-0.1-1.4 0.6-0.6-0.2-1.5-0.1-0.4 0.6-1.6 0.4-0.2 0.6-0.7-1-0.8-0.1-0.5-1.1 0.3-1.5-2-0.8-1 1.2-0.4-0.2-0.6 0.8-1 0.4-0.3 1.1-0.1 2.9-1.7 1.9-0.7-0.3-1.3-1 0.7-0.2 0.2-0.8-0.4-0.8 0.2-1.4-0.4-0.1-0.8 0.2-0.9-0.3-0.1 1-0.5 1-0.5 0.5-0.6 0.2 0 0.6-0.6 0.8 0 0.8-0.6 0.3-0.5 1.2-1 0.7-1-0.5-2.1 0.6-0.6 0.3-0.9 1.3-1 1.9-0.7 0-1.1 0.9-1.2-0.6 0-0.9-0.3-0.5 0.8-2.5-1.7-0.3-1.1 0.7-1.9 0.2 0-0.8-0.6-0.1-0.9 1-0.7-0.1 0.4-1.2 0.5-0.3-0.5-0.7-1-0.2-0.6 0.1-0.3-1.8-1.4-0.3 0.1 1.1-1.2-1.5-0.5 0.4-1.7-0.2-0.8 0.2-0.6 1.3-1.3-0.3 0-1-0.9-0.4-1 0.1-0.3 0.5-1.7 0.7 0.1-0.7-1.7-0.8-0.3 0.7-0.6 0.4-1 1.1-0.2-0.4 0.5-0.8 0.1-1-1-1.5-1-0.7-0.7 0.6-1 0.4-1.1-0.9-1 0.1-1.2 0.8-0.2 0.6-1.3 0.4-2.5 0.3-0.7-0.1-2.7 0-0.5 0.6-0.1 0.1-0.2 0.4-0.3 0.2-0.1 0.2-0.2 0-0.3 0.1-0.2 0.2-0.2 0.4-0.8 0.2-0.5 0.2 0 0.7 0.1 0 0.2 0.2-0.4 0.6-0.5 0.2 0.2 0.1-1.2 0.6-0.6 0-0.1 0.2-0.1 0.2 0.3 0.2 0 1 0.1 0.4-1.4 1.3-0.5-0.2-0.2 0.6 0.6 0.8 0.2 0.2 0.5 0.5 0.3 0.4 0.2 0.7 1.1 0.8 0.7 0.6 0.2 0 0.4 0.5-0.4 0.8-0.4 0.1-0.5-0.2-0.2 0.6-1.9 0.5-1.1 0.2-0.3 0.3-0.2 0.2 0.5-2.4 0-0.9-0.4-1-0.7-1 0-1-0.5-0.1-0.3-0.9 0.5-0.8-0.5-1.9-0.5-0.4 0.5-0.7 0-0.6 0.8-1.4 1-1.1 0.1-1-1.8 0.1 0.3-0.8 1.1-0.3-0.7-0.6-0.2-0.7-0.7-0.2-0.4-1.2-1-1.8 0.1-0.4-1-0.5 0.4-0.4-0.8-1.3-0.9 0.1-0.1-0.4 0.5-0.3 0-0.1-0.6 0-0.3 0.1-0.2-0.1-0.2-0.5 0.5 0 0.2-0.1-0.1-0.5 0.4 0 0-0.5-0.3 0.1-0.6 0 0-0.1 0.3 0 0.2-0.4 0.2-0.1 0.3-0.3-0.4-0.3 0-0.3-0.2-0.1-0.3-0.1 0.3-0.2 0.3 0.2 0.5 0 0-0.2-0.4-0.9-0.2-0.5 0.2-0.2 0 0.4 0.8 0.2 0.4 0.1 0.1-0.1-0.3-1.2 0.4 0.2 0.6-0.5 0.1-0.9 1.5-0.5 1-0.6-0.4-1 0.4-0.9 0.4-0.6 0.1-0.6-0.6-0.9 0-1.3 0.3-0.3 0.1-1.5 0.4-0.6 0-1.1-0.5 0-0.2-0.7 0.6-0.4-0.2-0.5 0.1-1.1-0.5-0.7 0.2-1.3 0.9 0.5 2.4 0 1.5-0.4 1.8 0.2 2.5-0.8 2-0.8-0.2-1.3 0.5-1.1 1-0.9 1.3 0.1 0.9 0.2 0.7-0.1 1.2-0.9 0.3-0.8 1.9-0.2 0.4 0.1 1.1 1 3.8 2.8 2.2 0.3 0.7 0.7 1-0.3 0.7 0.5 1.2 0 0.2-0.3 2.1 0.1 2.3-0.2 0.9 0 3.4-0.4 2 0.4 1.2-1.5 1.4 0.4 1.7-0.1 2.8 0.2 1.1 0.8 1.4 0.2 1.5-0.9 0.8-1.3 0.2 0 2.4 1.7 0.5 0.1 3.3-0.6 1.2-0.6 1.8 0.6 0.7-0.3 1 0 2.5-1.5 1.1-0.9 0.7-1.4 1.5-0.2 1.9 1.1 1.1 1.2 1.1 0.2 1.3 0.2 1.4-0.8 0.4-1 0.4 0.1 2.6 0 2-0.8 0.7 0.4 1-0.3-0.1-0.6 1.8-0.4 1.6 0.4 0.4-0.7 0.4 0 0.7-0.7 2-0.2 1.7 0.3 1.1-0.1 2-1 0-0.9 0.5-1 1.9 0.4 1.9-0.2 2.3 0.7 1.2 0.2 1.5 0.9 0 0.8 2.8 1.3 0.7 0.5 1.7-0.3 0.8 0.4 0.6-0.5 2.5-0.4 1.3-0.4 1.6-0.3 2.7-0.3 3.4 0.4 0.7 0.6 0.8 0 1.2-0.4 2-0.2 1.4-0.4 1.7-0.3 1.5-1.8 1.7-0.9 1.4-1 0.9-0.4-0.3-0.8-0.1-0.7-0.6-0.6 0-0.6 0.7-0.8 0.4-0.1 1-1 1.1-1.6 1.3-1.3 0.6-0.8 1.5-1.5 2.1-1.1 0.8-1.6 2.6-2.4-0.1-0.4 1.3-0.8 2.1-0.9 0-1.4-1.1-0.7-0.1-1-0.3-0.1 0.7-1.1 1-0.1-0.3 0.8 1.1 0.9 0.9 0.1 1.8 0.5 0.7-0.5 0.6 0.1 0.6-0.6 1.1 1.2 1.6-0.3 0.9-0.7 1.6-0.4 0.6-0.6 1.6-0.3 0.3-0.4 1.7-1 0.8-0.1 0.8 0.2 1.8-1.3 0.8 0.1 1-0.6 0.4-1.1 0.8-0.1 1.6-0.6 1.9-0.5 1.8-0.3 0.4-0.5 6.3-2.2 2.8-0.9 2.3 1.1 4.5-1.5 0.9-1.2 0.7-0.4 0.3-0.7 0.5 0 0.7-0.6 7.4-0.8 5.2 0.4-0.8 1 0.1 0.6-1.1 1.5-1.6 1.7-0.9 0.3-0.9 1-0.8 1.3-0.7 0.7 0.2 0.6-1 0.4 0.5 0.4 0 0.8 0.7 0.3-0.4 0.5 0 0.7 0.7 0.5-0.5 0.6 0.4 1 0.9 0.2-0.1 0.8 1.4 1.1 0.6 0 0 2-0.1 1.1-0.6 0.4-0.3 1.2 0.5 0.1 0.6-0.6 0.6 1.2 0.4-1.1 0.7-0.2 1.4 0.4 0.9 1.2 0.5 1.1-0.7 0.9-0.8 0.6-0.3 0.8-1.9 0.9-0.3 1.1-0.9-0.1-0.4-1.1-1.7 0.6-0.9 0-1.8 0.5-0.2 0.3-1.4 0.1-1.6 0.7-1.6 0.3-0.5-0.8-1.4-0.8-1.6 1-1 1.4 0.4 0.7-0.1 1.4-0.3 0.7-1.3 0.2-0.5 0.5-1.3 0.2-2 1.2-1.1 1 0 0.2-1 0.8-0.3-0.5-0.9 0.3-0.6-0.3z", "5": "M681.2 425.7l0.9 0.9 1.2-0.4 0.1-0.6 0.6-0.2 0.7 0.3 0.8-0.6 0.1 0.7-1.4 0.9-0.5 0.6 0.5 0.8 1 0.2 0.2 0.8 0.5-0.1 0.3 0.6 0.1 0.7-0.8 0.8 0 0.3 0.5 0.4 0.3 0 0.5-0.1 0.4 0.7 0.3 0.1 0 0.2-0.4 0.2-0.2 0.6-0.1-0.1-0.1-0.1-1.2 1-0.1 0.5-0.2 0.3-0.3 0.3-0.3 0.1-0.7 0.1-0.3 0.5-0.4 0.2-0.2 0-0.7 0.5-0.4 0.7-0.2-0.1-0.1 0.2-0.4 0.3-0.1 0.1-0.3 0.2-0.1 0.2-0.1 0.3-0.5 0.3-0.1 0.4-0.4 0.1-0.7-0.2-0.1 0.3-0.8 0.6 0.1 0.5-0.3-0.1-0.3 0.1-0.5-0.7-0.6 0.4 0.1 0.4 0 0.3 0 0.2 0.1 0.6-0.5 0.3 0.5 0.4 0.1 0.3-0.2 0.1-0.3-0.1-0.7 0-0.2 0.6-0.4-0.3-0.1-0.5-0.8 0.4-0.1-0.1-0.1 0.4-0.4 0.2-0.9 0.8-0.3 0.5-0.3 1.1-0.2 0.4 0 0.3 0.1 0.8-0.1 0.4-0.1 0.2 0.1 0.2 0 0.4-0.7 0.1 0.3 0.6 0 1 0.3 0.6 1.6 0.4 0.5-0.2 0.9 0.5-0.8 0.7 0.8 0.7-0.5 0.6 0.1 0.7 1.3 0.9 0.2 0.5 1.2 1 2.4 1 0 0.4-0.2 1.1 0.2 0.3-0.1 0-0.1 0-0.3 0.3 0.3 0.1-0.2 0.7 0.1 0.2 0 0.2-0.4 0.2 0.2 0.1 0.1 0.1-0.2 0.2-0.2 0.7 0.3 0.4-0.2 0-0.1 0.2 0.4 0.8 0.3-0.1 0.3 0.2 0.3 0.9 0.1 0.1 0.1 0.1-0.1 0.4 0 0.4-1.2-0.2-0.6-0.6-0.3 0.3-0.6-0.4-0.3-0.5-0.8-0.8-1.1 0.1-0.7 0.6-0.1 0.5-1 0.1-0.4 1 0.1 0.5-1 0-0.2 0.7-0.6 0.4-0.8-0.5-0.8 2 0.1 0.7 0.8 0.2-0.3 1.3 1.7 1.3 0.7 0.2 0.2 0.7-0.2 1-0.9 0.7 0.3 0.8-0.1 0.3-1.4-0.6-0.2-1-2.6-0.3 0-0.6-0.5-0.4 0-0.8-0.3-0.3-1.1 0.1-0.9-0.3-0.6 0.2-1.4-0.9-0.6 0.1-0.4 1.4-0.4 0.5-0.4-0.4-1.1-0.1 0.5 1.1-0.8 0.9 0 1.8-0.6-0.1-2.2-1.2-0.5 0.2-0.3 0.6-1.5-0.6-0.5 2.8-0.4 0.5-0.2 1.8-0.7-0.2-0.4-0.4-0.6 0.2-0.3 0.5-0.7-0.2-0.8 0.9-0.4 0.1-1.1 2 0.3 0.8-0.2 2.7 0.4 1.2-0.4 0.9-1.4 0.6-1 1.4 0.6 0.4-0.4 0.7 0.1 0.8-0.4 0.5 0.3 0.8-0.4 1.1-0.6 0.9-0.3 1.8 0.2 0.6-1.4 0-1.5-0.9-1 0-1.3 1.7 0.3 1.6-1.1-0.9-0.7 0.6-0.6-0.6-1 0.1-0.1-1.1-0.4-0.8-1.3 0-0.3 1-0.5 0.5-0.4-0.1-1.8 0.7-0.7-0.3-1.6-1.2-0.5 0.5-0.1 0.5-0.9 0.5-0.3 0.9-0.8 0-0.6 0.7-0.5 1.2 0 1.7-0.1 0.5-0.8 0.2 0.1 1-0.2 0.7-0.5 0.3-1.1-0.4-0.6-0.8-0.8-0.6-0.7-1-1.2 0.1-0.6-0.7-0.3-0.7 0.7-1.2-0.4-0.9 0.1-1 0.5-0.6-0.9-0.4-1.5 0-1.1-1 0 0.8-1.7 0.3-0.5-0.6-0.9-0.5-0.3-1.1 0.6-1.3-0.3-1.1-0.7-1.1-1.4-0.6-0.6-1-1.4 0.4-0.2 0.6-0.8 0.1-0.2 0.6-0.7 0-1.3-0.8-1.2-1.8-1.7-0.3-0.6 0.6-1.1-0.2-0.4-0.5-1-0.4-0.5 1.3-0.4 0.3-0.2 0.9 0 1-0.8 1.3-1.1 0.3 0.4 0.5 0 0.9 0.4 1.1-0.2 1.5-0.7 0.1-1.3-0.3-0.3-0.4-0.7-0.2-0.6 0.7 0.3 0.7-1 0.5-0.2 0.7-1 0.1-0.4-0.8-2 0.6-1.1-0.4-0.7 0.5-2.2 0.3-0.7-0.1-0.6 0.3 0.1 0.8-0.9 0-1.1 1-0.7-0.1-1.7 0.4 0.5 1.3-0.7 0.4-1.1 0.3-0.8 1.1-0.9-0.2 0.3-0.8-0.2-1.1-0.5 0.8-0.7-0.4-1.5 0.5-0.7 1.4-0.7 0.1-0.8-0.2-0.7 0.2-0.2-0.8-0.7-1.1 0.1-1.5-0.6 0.2-1.2-0.5 0.1-1.5-0.4-0.5-1.2 0.3-0.2 0.4-1.2 0.4-0.6 0.8-0.7 0.1-0.9 0.6-0.4 0.9 0 0.7-0.3 0.7-1.3-0.3-0.7 0-0.9-0.4-0.5 0.6 0.2 0.5-0.6 0.4-0.9-0.1-0.1 1.6-0.8 1.7-1-0.8-0.4-1.1-1.2 0.3 0.1-1.1-0.9-0.3-0.4-0.8-0.7 0.1-0.9-0.4-0.4-0.5 0.2-0.8-0.5-0.6-0.8-0.1-0.2-0.6 0.3-0.6 0.9-0.3 0.2-0.5-0.3-0.7-0.9-1.6-0.8 0 0 0.9-0.4 0.1-1.2-0.5-1.7 0.4 0.3 0.6-0.1 0.5-0.8-0.2 0.3-0.6-0.6-0.3-0.3 0.4 0.1 0.9-1 0.9-0.7-0.8 0-1.1-0.4-0.5-0.2-0.9-0.4-0.3-0.5-1.3-0.8-0.6-1.1-0.4-0.6 1.6-0.5 0.8-1 1-2.1 0.6-0.3-0.2-2 0.3-1.8 0.7-1.1 0.2-1.1-0.4-2.8 0.1-2-0.5-1.5 0-0.2-0.6 0.8-0.2 0.3-1.4-0.3-0.6 0.6-0.5-0.6-1-0.6-0.4 0-0.6 0.5-0.4-0.8-1-0.3 0 0-1.2-1 0.2-0.6-0.9-0.8-0.7-0.8-0.4 0.3-1-0.2-0.8-0.8-1.1-0.5-1.5 0.2-0.4 0-1.6-0.5-0.3 0-1.8-0.8-0.2-0.1-0.8 0.2-0.4 0.6-2.4 0.4 0.1 0-1.5-0.3-0.4 0.2-1.5 0.4 0.1 0.9-0.4 0.7-1.6 1.2-0.4 0.6 0.3 0.7-1.1 0.9-0.2 1.3-1 0.9-0.2 1.3-0.5 0.3 0.1 1.3-1.3 1-0.2 0.8-1 1.3-0.3 1.2 0.2 0.5-0.4 0.2-0.9 1.2-0.2-0.2-1 0.6-0.4 0.7-1.1 0.1-0.6 0.7-0.2 0.9-1.4 0.8-0.2 2.4-1.8 2.1-0.9 0.1-0.5-0.3-1.7 0.4-0.6 0.9-0.4 1.4-0.1 0.6 0.2 0.9 0.6 0.2 1.2 0.6 0.3 2.5 0.1 1-0.4 0.2-2.4 1-0.3 1.4 0.6 0.2 1.1 0.8 0.2 0-0.7 0.8-0.1 0.6 1.1 0.8-0.2 0.9 0.5 0.6-0.6 0.7 0.4 0.2-0.7-0.1-1.3 1.4-0.1 0.5 0.3 0.5-0.4-0.9-0.7 0.7-1.2-1.1-1.1-1.4-0.8-0.7 0.3 0.1-1.7-0.8 0.2-0.7-0.6-1.9-0.1-0.7-1.5-0.8-0.3-1.2-0.8-1.3 0.5-0.7 0-1.8-1.4-1.3-0.6-0.3 0.4-0.7-0.4-0.2-1-1-0.8-0.7-1.1-0.9-0.8-1.4-0.1-0.2-1.2-0.9-0.5 0.4-0.7-0.9-0.6 0-0.4 1.1-1.6 1.3 0.2 0.7-0.5 0.6-0.1 0.1-0.8 1.5 0.1 0.4-0.5 0.1-1.2 0.3-0.5-0.5-0.8 0.2-1.3-1.9-0.5-1.9-0.2-0.2-0.4-0.6-0.2-0.7-0.9 0-0.4-0.9-0.2-0.3 0.4-1.2-0.1-1.5-0.4 0.1-2.2-0.1-0.4 0.9-0.3 1.2 0.5 0.3-0.8 0.9 0.3 1.6-0.7 0.1-0.7 1.2-1.9-0.1-1.1 0.8 0.1 1.6 0 0.5 0.5 1.2 0 2.4 1 0.9-0.7 0.9 0.1 3.1-0.5-0.4-0.6 0-1.1-1.3-0.3-0.5-0.1-0.5 0-0.4-0.2-0.2-1.1-0.4-0.8-0.3-0.6-0.7 0.1-0.4 0.3-0.4 0.3-0.4 0.1-0.6-1 0.5-0.7 0.3-0.6 0.1-0.6-0.1-0.5-0.2 0 0.3-0.7-0.2-0.8-0.3-0.2-0.5-0.2-0.4 0-1.2 0.7 0 0.2-0.2 0.5-0.6-0.2-0.7-0.6 0.3-0.7 0-0.4-0.3-0.1-1.1-0.1-0.2 0.4-0.2-0.2-0.4 0.2-0.6-0.5-0.3-0.3 0-0.1-0.1-0.1-0.1-0.2 0.2-0.2-0.1-0.6-0.6-0.4-0.1-0.1 0.2-0.2 0.1 0 0.1-0.3 0.3-0.2-0.2-0.2 0.1-0.5-0.2-0.2 0.4-0.2-0.2-0.5-0.3-0.6 0-1-0.4 0-1.1-0.9 0.9-0.6 0.1-0.3-0.2-0.3-0.3-0.2-0.9 0.5-1.1 0.2-0.2-0.1 0-0.5 0-0.7 0.3-0.2 0.1-0.2-0.1-0.4 0.6-0.9 0.6-0.5 0-0.1-0.3-0.9-0.4-0.6-0.1-0.3-0.5-0.4-1.3-0.4-0.2-0.1-0.2-1 0.7-0.6 0.2-0.9-0.5-0.5-0.7 0.1-1.1 0.6-0.9-0.6 0.7-0.3 0.3-0.6 1.1-0.3 0.5-0.7 0-0.5-1-0.1-0.2-1.4 2.1-0.8 0.5 0.3 1.6-0.1 1.2 0.2 0.9-0.2 0.5-1.4 0.9-0.4 0.5-1.2 0.7 0.4 0.7-0.2 0 1.2 0.7 0.4 1.2 0.2 0.1 1 0.8-0.5 0.8 0.2 0.6 0.9 0.1 1 0.5 0.7 3.5 0.6 1.7-0.1 0.9 0.6 0.6-0.1 2.7 0.4 1.9 0.4 0.7 1.2 1.6 3.2-0.4 2 0.2 1-0.2 1.6-0.4 0.6-0.6 0.4-0.2 1.1 2 0.8 1.9 0.9 0.6-0.5 0.7 0.8 0.8-0.9 1.3 0.4 0.1 0.8 1.8 0.8 0.6-0.1 1.1 0.4 0.6 0.7-0.3 0.9 1 0.2 0.2 0.7 1.3 0.1-0.5 1.2 0.5 0.4 1.6-0.4 0.7-0.5 0.8 0.2 1.9-0.1 0.2 1.1-0.6 1 0.6 1.2 0.1 0.6 0.5 0.4 0.7-0.2 0.9 0.3 2 0.2 0.5 0.3 0.8-0.7 0.6 0 1.2-1.2 0.8 0.1 0.7 0.3 1.5-0.6 0-0.6 0.8 0 0.8-1 0.8-0.1 1.4-0.6 0.5-0.6 0.7 0.8 1.3 0.3 1.4 0.9 0.4 1-0.4 3.6 0 1 0.8 1.3 0.8 0.4 1.1 0.2 0.6 0.8 0.4-0.3 0.7 0.1 0.3 1.5 1.1-1 1.2-0.6 1-0.7 0-0.7 0.7-0.4 0.8 0.2 1-0.5 1.4 0.4 0.1 0.2 1.5 0.8 0.7 0 0.6 0.8 0.6-0.3 0.7 0.1 0.1 0.8 1.2 0 0.7-0.9 1.4 0.1 0.5-0.2 1.2 0.1-0.1 0.4 1.8 0.4 0.1 0.4 2 0.7 1.5 1 1.5 0.1 0.8 1.4 2.1 0.8 0.2 0.5 2.2 0.7 0.1 0.5 0.9 0.4 0.7-0.1 0.2-0.7 0.6-0.5 2.2 0.8 0.9-0.7 0.4 0.1 0.8-0.5-0.1-0.8 1.2 0 0.1-1.1 1-0.2 0.5 0.1 1.4-0.5 0.9-1.3 0.1-0.8 0.9 0.1 0 1.7 0.3 0.7 0.4 2.8 1.6 1.3 0.8 0.4 0.8-0.4 2 0 0.7 0.4 0 1.2 1.6 0.2 1 0.8 0.6-0.5-0.1-1.1 0.4-0.7 0.7-0.4 1.4-0.2 1.3-0.7 1.7 0.4 1 0.5 0.2 0.5 1.2 0.5 0.8 0.1 1.4-0.2 0-0.4 0.9-0.4 0-0.8 1.1 0.3 0.8 0.8 0.7 0 0.6-0.5 0.2-1 0.5-0.8 1.9 1.2 0.5-0.5-0.1-0.6 1.4-0.5 0.3 0.8 0.5 0.4 0.3 1.1 1.1 0.8 0.9 0.2 0 0.8 0.6 0.4 0.7-0.2-0.1-0.6 1.8-1.5 0.5-0.7 0.3-1.1-0.3-1.9 0.3-0.7z", "6": "M295.5 264.2l-0.2 0.2-0.3 0.5-0.9-0.4-0.8-0.5-0.3 0.1-0.1-0.3-0.3-0.3 0-0.2-0.3-0.2 0-0.1-0.2-0.8-0.6-0.8-0.1-0.1 1-0.4 0.3-0.3 0.2-0.3 0.1-0.2 0.1-0.1 0.2-0.1 0.2-0.1 0.5 0.1 0.3 0.4-0.1 0 0.3 0.4 0.5-0.5 0.2 0.2 0.1 0.2-0.4 0.4 1.2 0.1-0.1 1.3 0.4 0.7-0.5 0.7-0.4 0.4z", "7": "M541.1 576.4l-0.9 0.1 0 0.6 1.3 0.7 0.3 0.4 0.6 0.3 0 1.2-0.9 1-0.4 1.3-1.2 0.5-1.8-0.1-0.6 0.7-1.2-0.1-0.6 0.6-0.7 0.4-0.1 0.7-0.8 0.3-0.6 0.5-0.3 0.7-0.9 0.6-1.8-0.2-1.2 0.8-0.4 0-0.9 1-0.4 1.4-1.7 2.2 1.5 1.2-0.6 0.4-1.5 0-0.2 1.2 0.5 0.6-0.5 1.1 0 0.5 0.8 0.7-0.1 0.5 1.1 0.2 0.5 0.5-1 1.5 0.4 0.7-0.3 0.8-0.6-0.2-0.9 0.1 0.2 1.4-0.5 0-1.1-0.5-0.5 1.3 0.3 1.2-1 1.7-0.8 0-0.4 0.7 0.7 0.7 1.5 0.6-0.5 0.5-0.2 0.8-0.8-0.5 0-1.1-0.9 0.4-1.1 0.9-0.5 0.6-0.2 0.9 0.2 0.8-0.4 0.5-0.5 1.9 0.3 1.5 0.7 0.3 0.4 1 0.4 0.3 0 1.4 0.3 0.5-0.9 0.3-2.3-0.9-1.3-0.4-0.1 1.1-0.4 0.5 0.1 1.1 0.5 0.2-0.2 1-0.9-0.3-0.6 0.4-0.3 0.6 0.1 1-0.3 0.8-0.6 2.3-1 0.2-1 1-0.4 0.2-1.7-0.3-1-0.4-1.1-1-1-0.4-0.5 0.1-0.3-0.8-0.5 0.5-0.7 0.2-0.7-0.2-0.8 0.5-1.3-0.5-0.9 0.2-1.1 0.6-0.8-0.6-1.3-0.1-0.7 0.2-0.5-0.1-0.8 0.2-0.9 0.1 0 0.5 0.3 1.2-0.6 0.9-0.6 0.5 0.5 1-0.6 1.1-0.8 0.7-1 1.7-2.4 1.5 0.1 1-0.3 1-0.6 0.4-0.2 0.5-0.6-0.3-0.7 0.1-0.3-0.4-0.2-0.9-0.6-0.3-0.5 0.2-0.7-0.7-0.5 1.6 0.2 1.8-0.1 1.2 0.3 1.1-0.1 1.1 0.3 0.7 0.5 0.6 0.1 1.2-0.4 0.9-0.6 0.4 0.1 0.7-0.6 0.8 0.6 0.5 0.2 0.6 1.1 0.5 0.3 2 1-0.1 0 0.7 0.4 0.4-0.2 0.6-0.5 0.3 0 0.9-0.4 0.8-0.1 0.7 0.9 1 0.2 1.1-0.7 0.5-0.1 0.9 0.3 1.4-0.2 0.8-0.8 0.7-0.1 0.6 0.4 0.9 0.1 1.1-0.1 1 0.1 0.4 1.6 0.5 1.2 0.2 0.9 0.6 1.4 0.1 1.1 0.5 0.2 0.3 1.1 0.1 0.3-0.4 0.9-0.1 1.7 0.3 0.4 0.3-0.1 1.4-0.3 1.4 0.4 2.1-0.4 0.8-1.8 0.1-0.9 1.4-1.4 0.4-0.3-1 0-0.9 0.9-1.2-1-0.4-0.8 0.1-0.5-0.5-1.1-0.1-0.7-0.6-0.6 0.2-0.6-0.3-0.9 0.3-0.9 0.5-0.7 1-1 0.9-0.4-0.3-0.3-0.8-0.7-0.9-0.1-0.5-0.9-1.7-0.2-1-1.1-0.9-0.9 0.6-0.7 0-0.6-0.5-1.2-0.6-0.5 0-2-1.4-0.3 0.5-1.2 0.6 0-0.8-0.7-0.2-0.7-1-1-1-0.3 0.1-1.6 2-0.5-0.1-0.5 0.9-0.4 1.9-0.3 0.7 0.4 0.4-0.1 0.9 0.4 0.6 1.3 0.7 2.2 0.9-0.1 0.7 0.7 1.4 0.7-0.1 1.8 0.3 0.3 0.3-0.1 1.1-0.5 0.5-0.2 1.3 0.3 1.2 0.2 1.6-0.6 1.5 0.3 0.7 0.1 1-0.8 1.3 1.3-0.1 0.3-0.4 0.8 0.2-0.1 0.6 0.4 0.7-0.2 0.5 0.8 1.3 1.7-0.2 0.5 0.6-0.3 1.3-0.3 0.4-0.9 0 0.1 0.7 1.3 0.5-0.4 1.5-0.6 0.9 0 1.6 0.3 0.5-0.2 0.4 0.6 0.5 0.2 0.9-0.3 0.9 0.7 0.6 0.6 1.4-0.5 0.7 1 1.4 0.6 4-0.9-0.1-1.5 0.8 0 0.5-0.4 0.9 0.2 0.8-0.3 1.1 0.2 0.3-0.5 0.6-1.9 0.6-0.4 1.6-1.5-0.2-0.6 0.2-0.9 0.5-0.5 0.1-0.7 0.6 0.2 0.4-0.5 0.5 0 0.9-1.1-0.2-0.7-0.7-0.2 1.2 0.4 0.1 1 0.8 0.9 0.3-0.3 1-1.6 0.1-0.1 1.1-0.5-0.1-0.7 0.5-0.4 1-1.8 1.7-1.2 1.1-0.6 2.3-3 0.3 0.1 0.8-1.5 0.5-0.8 0-0.8 1-0.7 0.4-0.7 0.1-0.1 0.9-0.7 1.8 0.6 1-0.4 1-0.1 1.3-0.9 1.6-0.2 0.7 0.1 0.9-0.1 1.1-0.7 1-0.4 0.8 0.2 0.7-0.4 1-1.4-0.4-0.2 1 0.3 0.5-0.5 0.7 0 0.7-2.4-0.2-2.1 0-2.1-1.3-1.1-0.2-2.1 1.3-0.8 1.1-0.6 0.1-0.8-0.2-0.7-1-0.3-0.7-0.3-2.8-0.4-0.3-0.4-2.5-0.3-1.4 0.1-0.4-0.6-1.7 0-1.2 0.8-0.7 0.1-0.9-0.7 0.1-0.3 0.3-1.5 0.8-1.3 0.1-0.3-0.4-0.2-2 0.6-0.3-0.2-0.7-1.2-0.2-0.3 0.3 0.1 1.2-0.7 0.9-1.2 0.1-1-0.3 0-1.7 1.7-0.9-0.6-1.2-0.8-0.9 0-0.5-0.7-1.6-0.3-1.6-0.8-0.5 0.2-0.6-0.5-0.7-1.1-0.6-0.4-0.8-0.2-0.9-0.6-0.3-0.5-0.6-2.3-1.5-0.7-1.1-0.8-0.4-1.3 0-1.6 0.7-0.7 0.5-0.5-0.4-0.9 0.7-0.8-1.3-0.8-2.3-0.9-1.2-1-1.1 0.5-0.6 0.6 0.1 0.9-1.1 0.7-0.1 0.9-0.5 0.1-0.5-0.4-1.2-1.5-1.8-0.7-0.6-0.3-0.6 0.2-1.7 0.9-1.5-0.2-0.6 0.9-0.7 0.1-0.8 0.4-0.5-0.3-0.9 0.1-0.6 0.7-0.7 1.2-0.7 0.2-0.5-0.3-0.8 0.4-1 1-0.2 0.9-0.7 0.9-2.1 0.3-0.4 1.2-0.3 0.6-1 0.9-0.8 0.5-0.1 0.4 0.8 0 0.9 0.6 1.5 0.5 0.2 1.6-0.8 0.7 0.5 0 1 0.5 0.1 1.7-0.1 0.6-0.8 2.5-1.7 0.1-0.4-1-0.6-0.2-0.5-0.7-1.1 1.6-0.6 1.1 0 0.9-0.8-0.1-1.2-0.4-0.7-0.9-0.2-0.4-0.4-0.2-0.8-0.5-0.3-1.2 0.2-0.6-0.3-0.1-0.6-1.5-0.9-2 0-0.2-0.6 0.4-2.4-1.1-1-1.8-0.7-0.4-0.6-1.1-0.7 0.2-1.3-0.9-0.7-1.4 0.1-0.6 0.6 0.5 0.3 0.3 0.8-1-0.5-1.2-0.1-0.6 0.1-0.1-0.8 1.2 0.2 0.9-0.6 0.5-1.1 0.8-0.4-0.3-0.9-0.9-0.4-0.6 0.4-1.4-0.6 0.1-0.8 0.6-0.2 0.7-0.6 0.7 0.3 0.2 0.4 1.1 0.3 0.6-0.2 0.4-1.3 0.4-0.5-0.4-0.8 0.5-2.3-0.4-0.7 0.2-0.9-0.6-0.5-2.5-0.8-0.2 0.6-0.6 0-1.1-0.5-0.3-0.5 0.3-0.9 0.6-0.2 0-0.5-0.5-0.4-0.5-1.1 1.2-0.3 1.3-0.7 1.3-0.2 0.6 0.2 1-1.3 2.6-0.7-0.5-1.9-0.6-0.6 0.2-0.7 0.4-0.8-0.3-0.4 0.3-0.6 0.3-2.6-0.1-0.8 0.4-0.4-0.3-0.9 0.4-0.5-1.5-0.3-0.7 0.1-0.2 0.4-1.1 0.5-0.7-0.1-0.6-1.1 0.2-0.8 1-0.8 2.1-0.6-0.1-0.7-0.5-0.5-0.2-1.3-0.4-0.7 0-0.9 0.4-1.1-0.2-0.9 0-1.6-0.5-1.5-2.6 0.1-0.7-1.6 0-0.8-0.5-0.6 0.7-0.8 0.1-0.7-0.4-1.8 0.7-2.7 0.6 0.1 1.2-0.5 0.4-0.7 0.5 0.2 0.9-0.3 0.3-0.4 1.1-0.4 1.2-1 0.6-1.2 0.6-0.4 0-0.4-0.6-0.8 1-1.5 0.5-1.5-0.1-0.5 0.7-0.7 0.5-0.9-0.3-0.9 0.3-1.6-0.6-0.6 0.2-0.6-0.3-0.5-0.1-0.7 0.5-0.5-0.1-0.9-0.4-1.1 0.5-0.8 0.1-1.3 0.5-1 0.7 0 0.7 0.6 1-0.3 0-0.6 0.7-1.5 0.2-0.9-0.2-0.6 0.3-0.4 0-0.7-0.5-0.4 0-0.8 0.4-0.7-0.1-0.7 0.6-1 0.6-1.4 0-0.8 0.3-1 0.5-0.2 0.2-1.3 0.6-0.7 1.2 0.3 0.5 1.1-0.1 0.9 0.5 0.4 0.7-0.5 0.2-1.2-0.5-0.6-0.6-0.2 0.5-0.6 1 0 0.1-1.2-0.2-0.7 0.4-0.5-0.3-0.6 0.1-0.6 1-0.5 1.3-0.1 0.4-1.2 0.6-0.6-0.2-1.3 0.2-0.5-0.5-1.5 0.2-1.8 0.1-0.3 1.3-0.6 0.8-1.2 0.7 0.3 0.1 0.7 1 0.4 1.1-0.8 0.2-0.8 0.6-0.2 0.8 0.7 0.5-0.3-0.1-1 0.3-0.3 1.9 0.7 0.3 2.2 0.9-0.1 0.1-0.9 1-0.8 1.2 0.1 0.4-1 0.8-0.7 1.4 0.2 0.2-0.7 1.6 0.6 0.4-0.3 0.1-0.8 0.5 0.1 0.3-0.5-0.3-0.4 0.1-0.8 1.2-1.5 0.7 0.1 0.6-0.3 0.3-0.8 0.4 0.3 0.4 0.8 0.6-1.1-0.6-1.9 1.3-1.5-0.4-0.7 0.1-0.5-0.5-1.3 0.2-0.6 0-0.8 0.9-0.3 1.3-0.1 1-0.4 0.4-0.7 1-0.7 0.4-0.6 0.9-0.3-0.1-2-0.7-1.1 0.7-1.4 1.1-0.1 0.3-0.2 0.8 0.3 0.9-0.1 1.1-1.3 1.9 0.4 0.4-0.3 0.2-0.7 0.6-0.4 0-0.7-0.5-0.1 0.2-2.4 0.9-1.5 0.7-0.6-0.1-1.4-0.9-0.3-0.8-1.2-0.8 0.3-0.3-0.3-0.2-1.3-1.4 0.2-0.3 0.5-0.9-0.2-0.3-0.3 0.3-0.6-0.8-0.1-1-0.5 0-0.8-0.7-0.7 0-1.2-0.5-0.3-0.6-1-0.5-0.1-0.8 0.6-1.8 0.3-0.6-0.4-0.4-1-1.4-0.1-0.3-0.5-0.6 0-0.8 1.2-0.5 0.3-1.3-0.3-0.2 1.1-0.6 0.4-0.5-0.1-0.4-0.6-0.1-1.6-0.8 0-0.3-1.3 1.1-0.4 0.4-2.3 1 0 0.2-0.8 0.9-0.4 0.4-1-0.5-0.7-0.1-0.7-0.8-0.4-0.2-0.4 0.1-0.9-0.6-1.2-0.5 0-0.4-0.7 0.6-0.7-0.5-0.4 0.2-0.7 0.8-0.2 1.1-0.7 0.6 0.7 0.1 0.7 0.5 0.1 0.2 0.9 0.6 0.1 0.2 0.7 1.6 1 1.3 0.2 0.7-0.5 0.7-0.1 0.3-0.4 1.1-0.3 0.8-1.1 1.1 0.7 1.7-0.3 1.2 0.7 0.4 0.9 1.1 0.1 1.3-0.2 0.6 0.1 1.2-0.2 0.1-0.5 1.1-0.6-0.2 0.8 1.1 0.9 0.8-0.5 1.5 0.5 1.7 0.2 0.7-0.3 0.7 0.4 2.1-0.4 0.4 0 0.8 0.9 1 0.1 1-0.4-0.2-0.6 0.3-0.6 1.3 0.2 0.7-0.5 0.8-0.1 0.4-0.7 0.7-0.5-0.5-0.7 0.3-0.6 0.9-0.3 0.7-0.4 1.6 0.1 0.2-0.6 0.7-0.1 0.7-0.8 0.4-0.1 0.4 0 1 0.6 0.5 0.8 0.6 0.6 1.5 0.7 0.5 0.6 0.5 0.1 1-0.2 1.8-0.2 0.9 0.3 0.8-0.1 1.4-0.4 0.6-0.8 1.5-0.4 0.8-1.5 0.1-1.1 2.1-1.2 0-0.9 0.6-1.1 1-0.9 0.8 0.1 1.3-0.1 0.5 0.7 0.9-0.1 0.3 1.1 0.5 0.5 1 0.1 1.1 0.5-0.1 0.9 0.2 1.3 0.9 1.2-0.1 0.7 0.4 0.9 0.7 0.1 0.4 1 0.7 0.3 1.9 0.4 0 0.6 0.5 0.3 0.8 0 0 0.4 0.5 0.7 0.1 0.7 0.6 0.6 0.1 1.9-0.6 0.8 1.2 1.3-0.1 0.8 0.6 0.2 0.3 0.8 1.1 0.6 0.5-0.1 3.9 0.9-0.2-1.2 0.3-1.1 1.3-0.3 0.9 0.4 0.6 0.8 0.2 1.3-0.1 0.8-0.5 1.6-0.4 0.3-0.9 1.7 0.3 0.7-0.4 1.3 0 0.7 0.5 0.5 0.8 0.3 0.5-0.9 0.8 0.1 0.2 0.8 0.7 0.8-0.3 0.8 0.1 0.6-0.5 1.9 0.2 1.7-0.4 0.4-0.5 1.2 0.2 0.6 1.1 1.1 0.7-0.1 0.9 0.9 0.4 0 0.2 0.8-0.2 1.3 0.6 1.5 0.2 0.9 0.6-0.2 0.1-0.9 0.3-1 0.7 0.2-0.1 0.4 0.7 1.1 0.7-0.2 0.5 0.4 0.6-0.3 0.3 0.6 1-0.2 0.8-0.4 1.4 0.1 0.2 0.9 0.4 0.5-0.4 1.5 0 0.9-0.7 0.5-0.9 0-0.3 0.4-0.1 1.2-0.3 0.6-0.7 0.5-0.1 0.9-0.9-0.1-1.2 1.1 0.2 1.7-0.6 0.9-0.6 0-0.5 0.6-1.1 0.5-2.3 0-1.1 1.5-1 0.3-0.5 0.6-0.2 1.1 0.1 0.7z", "8": "M165.1 658.2l1 0 0-0.9 0.2 0.8 0.4 0.1 0.2 0 0.4-1.2 0.4 0 0.3-0.2 0.3 0.2 0.4-0.4 0.2-0.8 0.1-0.1 0.2 0.2 0.1 0.1 0.1 0.3 0.1 0.4-0.2 1.1 0.8-0.2 0.3-0.3 1 0.2 0.1 0-0.1 0.1 0.1 0.7-0.4 0.2-0.2-0.3-0.1 0-0.1 0.2-0.1 0.3-0.2-0.1-0.1 0.4-0.2 0.3-0.8 0.6-0.2 0.2-0.2 0.4-0.5-0.2-0.4 0.2-0.3 1.1 0.1 0 0.2 1.4 0.3 0.1 0.2-0.5 0.2-0.1 0.1 0 0.3 0.5 0.3 0 0.2 0.1 0.8-1 0-0.1-0.2-0.6 0.3-0.1 0.1 0.1 0 0.1 0.9-0.3 0.3 0.3 0.6 0.1 0.2 0 0.6 0.5-0.1 0.3-0.9 0.5-0.1 0.4 0 0.4 0.5 0.6 0.2 0.6-0.1 0.6-0.6 0.5 0.1 0.6-0.5 0.3-0.3-0.2-0.2-0.3-0.9-0.4-0.3-0.3-0.3 0.3-0.1 0-0.4-0.2 0-0.1-0.2-0.1-0.6-0.2-1-0.1 0 1-0.5-0.1-1.2-1.4 0.3-0.7 0-0.2-0.4 0.1 0 0.1-0.1 0.4-0.6 0.2-0.4-0.6 0.4-1 0-0.2 0-0.3 0-0.2-0.3-0.1-0.2-1.2 0.1-0.1-0.3-0.8-0.7-0.3-0.8-1.1 0.1-0.1 0.5-0.4 0.4-0.1 0.6 0.6 0.4 0.2 0.3-0.2 0.1-0.6z", "9": "M160.8 651.8l-0.5 0.5-0.4 0.6 0 0.7 0.2 0.1 0.2 0.1 0.6 0.2 0 0.1 0.2 0.4 0 0.5-0.2-0.4-0.6-0.6-0.3 0.3-0.4 1.1-0.3-0.1 0.2-0.5 0-1.8 0.5-0.9 0.8-0.3z m-65-9.6l1.2 0.6-0.7 0.4-2-0.2-0.9 0 0.4-0.6 0.9-0.2 0.6-0.1 0.5 0.1z m-3.7-0.8l-0.5 0.8 1.1 0.4-0.1 0.5-1.4-0.1-0.4-0.2-0.8 0.1-1.2-0.4-0.5 0.1-1.8-1-0.5-0.8 0-0.1 0.3-0.5-0.1-0.6-0.2-0.6 0.1-0.9 0.5-1.5 0.8-1 0.1-0.9 0.4-0.9 0.3-0.6-0.2-0.4 0.3-0.1 0.4 0.6 0.5 0.4 0.1 0.1 0.2-0.2 0.5 0.2 0.5-0.1 0.6 0.1 0.7-0.4 0.2 0.3 0.4 0.1 0.6 0.2 0.3 0.7 0.4 1.2 0 0.6-0.6 0.5-1.5 0.6 0 0.7 0.4 0.2 1.3 0 0.3 0.6-0.1 0.8-1.1 0.4 0 0.7-0.3 0.4z", "10": "M308.6 338.3l0.1 0.3 0.4 0.3 0.2 0 0.3 0-0.1 0.3 0.3 0.3 0.6 0.5 0.2 0.2 0.1 0.5 0.4 0 0.1 0.1 0.5 0.7 0.3 0.4 0.1-0.1 0.7-0.2 0.2 0.2 0.2 0.8-0.4 0.8-0.2 1 0.9 0.9-0.3 0.7-0.6 0.2-0.6 0.6 0 0.2 0.3 1.1 0.4 0.3 0.6 0.7 0.2 0.3-0.3 0.3-0.5 0.6-0.4 0.1-0.8-0.3-0.9 0.5-0.7 0.4-0.2 0.4 0.6 0.7-0.1 0.7-0.9 0.5-0.7 0.1-1 0.2-0.4-0.8-0.7-0.4-0.7-0.4-0.3-1.3 0.2-0.4-0.6-0.5-0.6-0.5-0.2-0.1-0.4 0.3-0.3 0-0.2-0.2-0.8-0.5-0.1 0-0.5-0.4 0.4 0.7-0.2 0.4-1-0.4-0.3-0.1-0.8 0.5-0.4-0.1-0.8 0.1-0.6-0.1-0.4 0.3 0-0.6-0.7-0.7-0.8-0.6-0.1-1 0-0.3 0.7 0 0.8-1.8 0.5 0.2 0.6-0.2 0.3-0.6 0.1-0.6 0.7-0.3 0.2 0 0.1-0.7-0.3-0.9 0.3-1.1-0.4-0.5 0.3-0.6-0.4-1.2 0-0.2 0.2-0.4 0.2 0.1 0.3-0.5 0.8-0.3 0.1 0 1.7 0 0.2-0.6 0.4-0.8 1.1 0 0.6 0.1 0.3 0.2 0.7 0 0.2 0.5 0.5 0.2 0.5-0.5 0.6-0.1 0.4-0.1 0.4 0.1 0.4 1.1-0.1 0.9-0.7 0.4z", "11": "M203.8 824.9l0.6 0.1 1.1-0.2 0-0.6 0.7 0.2 1 0.5 0.2-0.6 0.8 0.4 0.2 1.1 0.3 0.3-0.1 0.9-0.4 0.9 0.6 0.4 0.5 1-0.1 0.5-0.9 0.8 0.9 1.6-0.3 0.7 0.5 1.5 0.6 0 0.7 0.5-0.1 1.3 0.6 1.3-0.3 0.4-1-0.1-0.9 0.4-0.5 1.2 1.3 0.4 0.7 1.6-0.4 0.8-0.7 0.6 0.1 0.9-0.4 0.6 0.2 1.2 0.6 1-0.5 0.3 0 0.3-0.2 0.3-0.4 0.6 0.1 0.8-0.3 0.3-0.1 0.3-0.4-0.1-0.2 0.1-0.1 0.4-0.8 0.5-0.5 0.2 0-0.4-0.2-0.2-0.4-0.3-0.6 0.2 0 0.2-0.1 0.1 0.3 0.8 0 0.2-1-0.3-0.4 0.1-1 0.4-0.2 0.3-1.9-0.8 0.2-1.4-0.5-1.5-0.5-0.4-0.9-0.2-0.3-1.2-0.6-0.5-1.2-0.5-0.3-1.1 0.6-0.3-0.1-0.5 0.4-0.5-0.7-2.7-0.7-2.4-0.7-2.1-0.5-0.7-1.1 0.4-0.2-0.4-0.9-0.2-0.2-0.7-0.4 0.1-0.3-0.7 1.2 0.3 0.9-0.2 1.3 0.4 0.5-0.6-0.3-0.5-0.9 0-0.4-0.8-0.5 0.1-1.2-0.4 0.2-1.2-1.3 0.1-0.4-1.9-0.8-1.6 0.8-0.9-0.8-0.1-0.3-0.4-0.4-1.4-0.8-1.8-0.3-0.1 0.4-0.1 0.5 0.2 0.4 0 0.8 0.1 0.2-0.5 1 0 0.3 0.3 1.2-0.6 0.4 0.1 0.2-0.8 0.9-1.3 0.8 0.9-0.3 0.7 1 0.3 1.3 0 0.4 1.1 0 0.5 0.5 0.4 0.1 0.9-0.2 0.6 0.2 0.5 0.9 0.7 0.9 0.2 0.4-0.6 1.4-0.2 1.5-0.8z", "12": "M92.7 642.6l-1.1-0.4 0.5-0.8 0.6 1.2z m61.6-15.9l0.9 0.3-0.1 1.4-0.8 0.1-0.4-1.6 0.4-0.2z m1.6-18.8l0.8 0.3 0 0.4-0.8 0.2 0-0.9z m-105.7-29.2l0.5 0.3 0.4 0.7-0.6 1-1.4-0.7 0-0.8 1.1-0.5z m-11.1-0.5l0.9 0.4-0.3 0.4-0.9-0.3 0.3-0.5z m0.8-2l0.9 0 0.4 0.6-0.6 0.3-1-0.6 0.3-0.3z m20.3-1l0.4 0.3 0.3 1-0.8 0.3-0.7-0.1 0.1-1.2 0.7-0.3z m3-1.4l0.6 0.2 0.1 0.7-0.7 0.5-1.5 0.3-0.2-0.5 0.3-0.7 1.4-0.5z m15.1-17l-0.4 1.1-0.5 0.8-0.4-0.6 1.3-1.3z m-64.6-9.8l0.2 0.5 1.5 0.1 0.2 0.9-1.4 0.5-0.1 0.4-1-0.6 0-0.7 0.6-1.1z m-1.8-1l0.8 0.2 0.2 0.7-0.8 0-0.2-0.9z m2.9-1.2l0.9 1-0.8 0.3-0.8-1.3 0.7 0z m-2.9-3.1l0.5 0.8-0.5 0.2 0-1z m-1.1-0.9l0.7 0.9-0.3 2-0.6-0.1-0.3-1 0.1-0.8-0.9 0.5 0.3-0.9 1-0.6z m0.3-4.3l0.1 0.8-0.6 0.9-0.9 0.6-0.2-0.7 0.5-0.4 0.6-1 0.5-0.2z m-0.9-1l0.4 0.8-0.9 0-0.2-0.5 0.7-0.3z m-3.3-6.8l1.3 0.8 1-0.4-0.4 1.6 0.1 0.9-0.9 2.7-1.1 1.1-0.4 1.1-1.8 0.7-1-0.9-1.6 0.4-0.8-0.5-0.3-0.7 0.7-0.7 2.1-0.3 0.4-0.7 1.1-1.2 0.1-0.5 0.8-0.7-0.1-0.9 0.8-1.8z m-1.7-0.7l0.4 0.8-0.2 1.4 0.3 1.2-0.8 0.2-1.1 0.9-0.4-0.4 0.3-0.4 0.1-1-0.1-0.3 0.4-1.4 0.7-0.2-0.1-0.6 0.5-0.2z m6.4-0.2l0.4 0.2 0.5 0.8-0.4 0.5 0.2 0.4 0.2 0.2-0.2 0.7-1 0.7-0.8-0.3-0.9 0 0.6-1.1-0.3-1.2 0.4-0.4 1.3-0.5z m-3.4-1.8l0.7 0.3 0.7 1.3-0.5 0.9-0.8 0.8-0.7-0.2-0.3-0.5-0.6-0.1-0.4-0.9 1.1-0.9 0.1-0.5 0.7-0.2z m-5.1-0.1l0.1 0.7-0.6 0.7-0.6-0.2 0-0.7 1.1-0.5z m6.9-2.1l0.2 0.1-0.2 1.6 0.1 0.4-0.9 0.6-0.3-0.3-0.7-0.2-0.6 0.1-0.2 0.3 0 0.3-0.6 0-0.2-1.2 0.2-0.4 1-0.1 1.2-0.6 0.2-0.5 0.8-0.1z m2.9-0.3l0.3 0.4 0.5 0.1 0 0.1 0 0.2 0.1 0 0.9 0.1-1.6 2-0.7 0.4-1-0.4-0.1-0.9 0.9-0.4 0.6-0.5 0.1-1.1z m-1.8-1.8l0.7 0.8-0.2 0.5 0.7 0.6 0 0.7-1.1 0.9-0.4 1.4-1 0.5-0.4-0.2 0.7-1 0.1-1.8 0.2-0.2-0.5-0.2-0.6 0.1 0.6-1.6 0.6-0.5 0.6 0z m-1.8-0.1l0.3 0.3-0.2 1.1-0.5 0.9-0.5 0.5-1.8 0.5-0.3 0.7 0.2 1.1-0.4 0.8 0.1 0.7-0.8-0.2-0.3 0-0.4 0.2 0 0.6-0.7 0.2-0.4 1.4 0.1 0.6-0.3 1.2 0.4 0.6-0.4 0.6-0.6 0-1.1-1-0.5-0.9 0.5-0.9 0.7-0.3-0.6-1.8 0.2-0.9 0.7 0 0.6-0.9 0.2-0.8 0.5-0.7 0.3-0.8 1.5 0.3 0.5-0.4 0.2-1.5 0.9-0.8 0.5 0.8 0.4-0.1 1-1.1z m201.3 34.8l0.1 0.7 0.8 0.5 0.2 1 0.5 0.8-1 0.6 1.4 2 0.6 0.4 0.6-0.7 1.1-0.2 0.4 0.4 0.6 2-0.5 1.6-0.9 0.3 0 0.8-1.2 2.1-0.2 1.4-0.4 0.8-0.1 1-0.6 0.3-1.3-0.3-1.1 0.1-0.6-0.3-0.7 0.5 0 0.4-0.7 0.4-0.3 1.1-0.5 0.6-0.5-0.1-0.2 0.6-1.2 0.8-0.1 0.6-0.9-0.3-1.5-0.9-0.6-0.1-0.7 0.3-0.1 1 1.4 0.3-0.2 1.6 0.8-0.2 0.1 1.4 0.6 0.4 0.6-1.2 0.6 0.5 1-0.1-0.1-0.8 0.7-0.1 0 1.1 1.1-0.1 0.9 0.6 0.4 1.2-1.2 0.6-0.4 0.6-1 0.6-0.2 0.8-2-0.4-0.2-0.8-0.5-0.7-0.6 0.4-0.8 0.1 0.1 0.7-0.2 0.4-0.3 1.6 0.6 0.7-0.1 1.7 1.3 0.1 0.3 0.2 0.1 1.7 0.3 0.2-0.2 1.1 0.2 1.3 0.7-0.3 0.5 0.1-0.2 1.5-0.9 0.3-0.4 0.6-0.8 0.7 0 0.6 1.8 0.6-0.4 0.6 0.1 0.5-3.4 1.2-0.8 0.6-1.5 0.7-1.9 1.1-0.8 0.1-0.7 0.6-1.3 0-1 0.6 0.5 0.4 0.6 1.4-0.4 0.4 0.5 0.7 1.5 1.2 0.2 0.4 0.1 1.2-0.5 0.8-0.8 0.1-0.6 0.3-0.5-0.2-1 0.2-0.4 0.3 0.6 0.9 0.6 0.1 0.4 1.7 0.5 1.5 0.4 0.6 2.6-0.9 0.1 0.4 1.2-0.5 0.3-0.7 0.7 0 0.7-0.4 0.7 0.1 0.8-0.3 2.3 0.1 1.7-0.2 0.7 1.1 1.1-0.7 0.6 0.5 0.5 0 0.7-0.8 0.7-0.3 0.1 0.8 0.7 0.2-0.3 1.6-0.7 0.6-1.2 0.1-0.3 0.4-1.4 0.2-1.2-0.3-0.9 0.5-0.7-0.3-0.6 0.5-1.4-0.3-0.4-0.9-0.4 1-0.2 1-1.4 0.5-1 0.6-0.7 0.2-0.2 0.6 0.1 1.1-0.3 1.8-0.5 0.4-1.5 0.8-1.1-0.2-0.9 0.1 0.1 0.9-0.5 0.7 0.1 1.9-0.9-0.4-0.6 0.6-1.3-0.1 0.2 0.6-0.4 0.5-0.8-0.4-1.1-0.1-1.5 0.7 0-0.7-0.6-0.2-0.4-0.8-0.6 0.4 0 0.5 0.8 0 0.6 1.3 0.9-0.1 1.3 0.8 0.5-0.5 0.9 0.4 0.3 0.8-0.1 0.9 0.2 0.6 0.6 0 0.7 0.7 0.8-0.1 0.3 1 1 0.1 2 0.4-0.3 1.8 0.7 0.7 0.5 1 0 1.4 0.5 0.3-0.2 1.1 0 1.5 0.3 1-1 0.7-1.1-0.3-0.4 0.3-0.4 1-0.7-0.3-0.7 0.3 0.1 0.8 0.5-0.1 0.2 0.7 0 1.2-1.4 0.8-0.6 0-1.4 1.3-0.3-0.3-1.3-0.1-1.2 0.5-1-0.6-0.5-1.7-1-0.7-1-0.1-0.6-0.8-0.5-0.1-1.1 0.7-0.4-0.8 0.4-0.4-0.5-1.1-0.9 0.1 0 0.8-0.6 1-1.2 0.5-0.1 0.3 0.9 0.7 0.4 1 1.4 0.5 0.2 0.7-0.2 0.7 0.7 0.1-1 1 0.1 0.7-0.9 1-0.9 1.9-0.8 0.6-0.2 0.9 0.7-0.3 0.4 1.6 0 0.6 0.4 1.5-0.4 0.1-0.2 0.8 0.3 2-1.8 0.2-2.2-0.4-0.6 0.5 0 1.4-0.9 0.6-0.1 0.4-0.9-0.1-0.7 0.3-0.2-0.1-0.5-0.6 0-0.4 0.1-0.4 0.9-0.5 0.1-0.3-0.6-0.5-0.2 0-0.6-0.1-0.3-0.3-0.9 0.3 0-0.1-0.1-0.1-0.3 0.1 0.2 0.6 0 0.1-0.8 1-0.2-0.1-0.3 0-0.3-0.5-0.1 0-0.2 0.1-0.2 0.5-0.3-0.1-0.2-1.4-0.1 0 0.3-1.1 0.4-0.2 0.5 0.2 0.2-0.4 0.2-0.2 0.8-0.6 0.2-0.3 0.1-0.4 0.2 0.1 0.1-0.3 0.1-0.2 0.1 0 0.2 0.3 0.4-0.2-0.1-0.7 0.1-0.1-0.1 0-1-0.2-0.3 0.3-0.8 0.2 0.2-1.1-0.1-0.4-0.1-0.3-0.1-0.1-0.2-0.2-0.1 0.1-0.2 0.8-0.4 0.4-0.3-0.2-0.3 0.2-0.4 0-0.4 1.2-0.2 0-0.4-0.1-0.2-0.8 0 0.9-1 0-0.1 0.6-0.3 0.2-0.4-0.2-0.6-0.6-0.4 0.1-0.5 0.4-0.1 0.1 0.8 1.1 0.7 0.3 0.3 0.8-0.1 0.1-1.5-0.4-1.5-0.1-0.4 0.6-0.7 0.1-0.6 0.8-0.2 1-0.9 0.3-0.5 0.7-1.7-0.2 0.3-2.3-0.2-1.7 0.3-0.4 0.2-1.3 0.7-0.4 0-1.1 0.5-0.6 0.6-0.1 0.5-0.7 0.3 0.1 0.4-1.1 0.3-0.3 0.6 0.6 0.2 0.4 0-0.5-0.2-0.4 0-0.1-0.6-0.2-0.2-0.1-0.2-0.1 0-0.7 0.4-0.6 0.5-0.5-0.1-0.4 0.7-0.7 0.1-0.6 0-1.3 0.4-0.9-0.4-2.4-0.4-0.5-0.8-2.9 0.6-0.5-0.4-0.7-0.8-0.6 0.2-0.6-0.5-0.6-0.2-0.7-0.9-2.3-0.2-0.9-1.1-0.8-0.7-1.8-0.4-1.6 1-0.9-1.6-0.4-0.2-1 0.3-1 0.3-0.5-1.2-0.6-0.6 0.1-0.1 0.6-0.1 1.8-0.2 0.4-0.9-0.4-0.2-2 0-2.9-0.8-1-0.2-1 0.1-1.3 1-1.2 0-1.1 1.4-1.9-0.4-0.3 0-1 0.4-0.6 0.4-1.5-0.2-0.6-0.9 1.1-0.6 0.2-0.9-1.6 0.2-1.3 0.8-1.4 0.7 0 0.8-0.4 1.1-0.8 0.6 0.4 0.9-0.1 0.1-0.3 1.2 0.2 0.4-0.6-1.3-0.3-0.8-0.7-0.9 0.4-3.9-0.1-1.3 0.8-0.4 0-0.8-0.8-0.1-1.2 0.8-1.1 0-0.7 0.3-1.1 0.5-1.2-1.1-0.8-0.4-0.1-0.2-1.5-0.3-0.3-0.2-1.4 0.2-2.1 0.3-1.3 0.3-1.8 0.7-2.7 0.8-1.4 1.1-0.9 1.6-0.1 1.7 1.2 2 0.3 0.6-0.7 0.8-1.6 0.7-0.4 1.7 0.9 1-0.3 0.5-0.5-1.6 0.1-0.5-1.4-0.3-0.1-1.1 0.7-1.7 1.2-2.4-0.2-1.1-1.2-0.7-0.5-1 0.2-1.2 0.9-0.5-0.2-0.6 0.6-0.6-0.1-0.5 0.5-0.7 1.3-0.5-0.1 0.7-1.6-0.8 0-1.2-2.2-1.6-0.4 0.5-0.5 0-0.9-0.8 0.6-0.1 1.1 1.2 0.2 0.1 0.6-0.1 1.2 0.2 0.9-0.6 0.9-0.8-1.1-0.6 0.3 0.2 0.9 0.9 0.6-0.1 0.9-1-0.6-0.1 0.9-0.5 0.6-0.6-0.5-0.4 0.4 0.4 0.5-0.3 0.8-1.2 5-0.7 0.2 0.1-0.7-0.4-0.3 0.3-1.2-0.5-0.5-0.1-0.6 1.5-0.9 0.6-0.1-0.1-1.1-0.9 0.5 0.1 0.5-1.3 0.7-0.3 0.5-0.6 1.8 0.6-0.2-0.4 2.1 1.3 2.1 0.1 3.9 0.4 1-0.8 0.2 0.4 1 0.7 1.3 0.2 0.8 0.6 0.8 0.1 0.6-1.3 2.1-0.1 1.1-0.5 1.8-0.9 1.9-1.8 1.9-0.2 0.5-1.1 1.2-0.8 1.5 0 0.6-1 1.5 0.3 0.6 0.7 0.3 0.2 0.7-2 1-0.3 0.5-1.3 0.5 0.4-1.3-1.2 0.9 0.1 0.5-1.3 0.9-1.2 0.3-4.1 1.9-0.3 0.7-0.8 0.7-1.5 0-1.4 0.9-0.5-0.1-0.9 0.3-0.1 0.6-1.3 0.3-2.3 0.8-0.7 0-0.1 1-0.5 0-0.5 1-1 0.3-0.4 0.5-1.4 0.1-0.8 0.4-1.7 0.3-3 1.5-0.8 0.1-0.3 0.5-1.4 0.3-0.4 0.8-1.3-0.1-0.9 0.2-0.2 0.6-1 0.3-0.5-0.3-1.3-0.1-0.2-0.2-1 0.6-0.5-0.1-0.6 0.1-0.9 0.2-0.4 0.6-0.1 0-0.5 0 0-0.7-0.7-0.9 0.3-0.4 0-0.7 1.1-0.4 0.1-0.8-0.3-0.6-1.3 0-0.4-0.2 0-0.7 1.5-0.6 0.6-0.5 0-0.6-0.4-1.2-0.3-0.7-0.6-0.2-0.4-0.1-0.2-0.3-0.7 0.4-0.6-0.1-0.5 0.1-0.5-0.2-0.2 0.2-0.1-0.1-0.5-0.4-0.4-0.6-0.3 0.1 0.2 0.4-0.3 0.6-0.4 0.9-0.1 0.9-0.8 1-0.5 1.5-0.1 0.9 0.2 0.6 0.1 0.6-0.3 0.5 0 0.1-0.1 0.3-0.9-0.1-2.1-0.7-1.2-0.8-1.7-0.7-0.8-0.6-0.5 0-1.2-0.8-1.1-1.2-1-0.2-3.6-2.6-4-3.6-0.3-0.4-1.2-0.9-1.3-1.4-1.1-1.3-0.7-0.7-2.9-3.4-1.4-1.8-3.8-4.7-2-2.2 0.6-0.5-0.1-0.5 0.7-0.3 0.6-0.6 0-0.6-0.5-0.5-0.2-1-0.7 0.2-0.9-0.5-0.2 0.6 0.7 0.7-0.3 0.7 0.7 0.8-0.3 1.1-0.3 0-1.1-1-2.5-2.6-0.6 0-1.8-1.6-2-2.2-1.3-0.9-1.1-1.2-0.9-1-0.8-0.5-3.2-2.9-1.6-1.7-2.9-3.4-1.3-1.5-1-1.1-1.5-1.8-1.2-1.4-0.9-1.3 0.1-0.5-0.7-1.9 0.2-0.7 0.5-0.1 0-1.2 1-1.7 0.8-1 2.4-1.4-0.2 0.9-1 0.8 0.9 1.4 0.4 0.1 0.9-0.7 0.5 0.4 0.9-0.1 0.7-0.7 0.7 0 0.3 1.1-0.7 0.6-0.4 1.1-0.2 1.5 0.3 0.4 1.2 1.1 1.1 0.2 0.7-0.4 1.1-0.2 1.5-1.1 0.2-0.9 0.9 0.3 1.9 0.2 1.1-0.7 0.4 0.2 0.8-0.3 0-0.7 1.1-0.8-0.2-0.6 0.2-1.2 1 0.8 0.3 1.4 0.5 0 0.9 0.7 0.6 0 0-0.7 0.9 0.4 0.3-0.1 0.4-1.3 1.2 0-0.3-1 0.4-0.5-0.4-0.6 1-0.4 0.7 0.2 0.2 1 0.5-0.1 1.1 1.1 0.4-0.1 0.6-0.8 0.2-0.9 0.4-0.2 1.2 0.3 0.6-0.6 0.6-0.1 0.1-0.8 0.7-0.9 0.3 0.1 0.1-0.6 1.3-0.6 2.1-0.4 0.7 0.2 2.4 0 0.9-0.1 1-1.3 0.2-1.1 0.7-0.5 0.9-1.5-0.2-1 0.5-0.3 0-0.8 0.6-0.2 1-0.9 0-0.5 1.3-2.2 0.1-0.7 1.5-2.3 0.9-0.3 0.4-0.5 0.2-0.9 0.9-1.1 0.5-1 0.8-2.3-1.6 0.4-0.6 0.3-1.1 1.1-0.1 2.4-0.4 0.6-1.3 0.6-0.8-0.3-0.6-0.5-0.6 0.2-1.2-1-0.7-0.2-0.2 0.7-0.5 0.3-1.1 0-1.3 0.4-0.3 0.6-0.8 0.6-4 0.3-1.3 0.3-1.6 1-1.3-0.3-1.7 0.8-0.7 0-1.5 1.2-0.2 0.9-1.1 1.6-0.1 0.5-1.3-0.7-1.8-0.4-0.8 0.3-1-0.4-0.5-0.6-1-0.1-1.7 0.6-1-0.3-1.9-1.2-1.5-0.3-0.9-0.4-1.8 0.3-1.5-0.4-0.9-0.1-1.6-1-0.8-0.4-0.6-0.5-2.2-1.5-1.9-1-1.5-0.9-1.3-1-0.8-0.3-2.4-1.7-1.7-0.6-0.9-0.9-1.9-1.4-0.8-0.4-1.1-1.3-1.4-1.3 1-0.3 0.9-1.4-0.3-1.1 1 0-0.9-0.8 0.1-1-0.8-0.6-0.3-0.7-0.5 0.2-0.3-0.6-0.5 0.4-0.3-1.5-0.8-0.1-0.1-1-0.8-0.5-0.1-1-0.5-0.5 0.3-0.4-0.3-1 0.1-0.6-0.2-1.5 0.2-0.4-0.2-1 0.4-0.8 0.6-0.2 0.4-1 0.6-0.3 0.3-0.8 1.4-0.5 0.3-0.7 0.9-0.3 1-1.7 0.8-0.6 1.5-0.4 0-0.9-1.9-0.3-0.9 0.9-1.7-0.1-0.7 0.7-0.4 0.9-1 1.5-0.3 0 0-0.5-0.3-0.4 0-0.4 0.3-0.3-0.1-0.6 0.9-0.9 0.8-1.5 1.4-0.8 0.2-0.5-0.4-0.7-0.7-0.2 0 0.7-0.3-0.1-0.7 0 0.1-0.2-0.1-0.1-0.5-0.1-0.2-0.4 0.3-0.7 6.9 0.1 0.1-1.4 0.3-1.4 0-2.4 0.1-6.9 0.3-0.4 1.9-0.5 0.4 3 0.3 0.8 1 0.4 0.7-0.1 0.8-2.2 0.9-0.7 0.8 1.5 0.5 0.4 1-0.1 2.4-1.5 1.1 0.2 0.7 0.4 2.1 0.7 1-0.6 1.6-0.7 1.2-0.3 1.7 0.4 0.7 0 1.7-0.3 2.4 0.7 2.7-0.6 0.7-0.2 0.6 0.6 2.2 2.1 1.4 1.1 3.5 0.3 2.9 0.1 2.3 0 1.6-0.2 0.8-0.5 1-1.2 1.1-2.6 1.4-0.6 2.9-0.6 2.1-0.9 1-0.3 1.5-0.2 3-1.2 0.8-0.2 1.7-0.7 1.5-0.4 1.2 0.7-0.6 1.6-0.7 0.6 0.3 1-0.3 0.7 0.5 0.5-0.5 0.7 0 0.5 0.7 0.5 0.7 0 1.4 0.5 2.4 0.2 2.8-0.1 1-0.4 0.6-0.5 1.4-0.4-0.3-1.2 1.3-1 1.2-1.1 1.3-0.5 0.5 0.5 1.2 0 0.7-0.4 0.7-0.9 1.2-0.4 0.4-0.8-0.6-0.7-0.8-0.2-2.2 0.1-0.8-0.3 0-0.9 0.3-2.1-0.6-0.7 0.2-1-0.1-1.2 0.7-1.2 0.9-0.3 1.3-0.8 0.7-0.8 0.5 0.5 1.7 0.7 1.3 0.4 1.1 0.5 0.7 0.2 1.3 0.5 0.9-1.3 1.1-0.5 0.3 1 0.5 0.3 1.4-0.7 1-0.7 0.8-0.2 0.5-0.4 1.6-0.2 0.5 0.3 1.1-0.2 0.5 0.5 0.6-0.3 1 0.7 0.6 0.7 1.8-0.8 1.1 0 1.3-0.5 0.9 0.3 0.2 0.5-0.2 1 1.2 0.2 0.7-0.3-0.2-1 0.3-0.8 0.8 0.2 0.6-0.1 0.5 0.2-0.2 0.6 0.5 0.8 1.1-0.5 0.9-0.7 0-0.7 1.6-0.7 0.4-0.4 1.1 0.3 0.3 0.9-0.3 0.8 1.1 0.7 1.2 0 0.4 0.7 0.8 0.2 1-0.4 0.5-0.5 0.6 0.5 0.9-0.1 1.4 0.5 0.9-0.5 0.4 0.2-0.4 0.9-0.9 0.3-0.5-0.5-0.8 0-0.9 0.7 0.7 1.1 0.6-0.3 0.2 0.8 1.3-0.2 0-0.5 0.9 0.2 0.9 1.9 1.2-0.3 0.7 0.2 0.2 0.4-0.4 1.2 0.7 0.8 0.3 1.2 0.8 0.1 0.7-0.5-0.3-1.2 1.4-2.1 1.1 0.7 0.5 0.6 2.4 0.6 1.2-0.2 0 1.6 0.5 1 0.8 1.1 2.9 0.1 0.5-0.2 1.3 0 1.1 0.5 0.8 0.9 1.8-1.2 0.4-0.6-0.8-0.6 0.9-1.1-0.4-1.1 1.1-1.2 0.3 0.6 1 0 1.5-1.1 0.4 1.4 0 1.4-0.7 1 0.9 0.3 0.5 0.6 1.2 0.7 0.6 0 1.1-0.9 0.7 0.4-0.7 1.1-0.8 0-0.1 1-0.4 0.3-1-0.3-0.2 1.1-0.8 0.6-0.8 1.6-0.3 1.3 1.2 1.2 0.2 0.5 0.8 0.7 0.8 0.4 1 0.1 0.8 0.4-0.8 2 1.8 1.2 0.8-0.6 0.5 0 0.6-0.9 0.6-0.4 0.3-0.7 0-1.3 1.2 0.1 0 1 0.9 0.5 0.6 0.8-0.1 2 0.4 0.9-0.1 1.9-0.8 0.3-0.3 0.4-0.9 1.9 0.4 1.2-0.4 1.1 0.5 1 0.8-0.7 0.7 0.2 0.4 0.6 0.7 0.4 0.1 0.5 0.6 0.5 0.2 0.6 0.8 0.1 0.3 0.4-0.3 2.3 0.4 0.7 0.5 0.2 0.9-0.8 0.6-0.8 1.6 0.1 0.8 0.7 0.6 0.3-0.3 0.6 0 1.2-0.4 0.5-0.1 1.1 0.8 0.7-0.5 0.6-0.4 1.7 0.7 0.4 0.5-0.4 1.2-0.1 0.5 1.3 0.5-0.2 1.1-1.2 0.6 0.8 1.5-0.4 1.4 1.9 0.4 1 0.5 0.6 0 0.6 1.5-0.2 0.3-1.2 0.5-0.3 0.8 0.8 0.2 0.9 1.4 0.1 0 0.5 0.6 0.9 1.4-0.1 0.6 0.2 0.2 0.6 0.8 0.5 0.1 1.4-0.5 0.7 0.1 1.1 0.6 0.1 0.3 0.6 1 0.2 0.2-0.7 0.6-0.7 1.5 0.5 0.7 0.8 0.6 1.4-0.2 0.9 0.9 0.5 0.5 0.7z", "13": "M321.6 276.1l0.6 0.6-0.8 1.3 0.1 1-1.4 1-0.4 1.1-0.8 1-0.8 1.8-0.9 0.8-0.8 0-0.4 0.9 0.1 1.4-0.7 0.6-0.7 0.1-1.4 1.1-1.2 0.2-0.9 0.4 0.1 0.6-0.8 1.8-1.6 2.3-0.5 0.3-0.3 0.8 0.1 1.1-0.5 1.1 0 0.7-0.4 0.5-0.1 0.9-1.2 0.7-0.2 1 1 1.3 0 0.6-0.5 0.2-0.2 0.6 0.3 0.9-0.7 0.4-0.8 1.8 0.6 1 0.2 0.9-0.8 0.8 0.4 0.8 0.6 0.4 0.3 0.7-0.2 1.1 0.7 0.6-0.5 0.8 0.5 1.5-0.7 0.2 0.1 1.1 0.9 0.2 0.2 1.1-0.8 1.7 0.5 1.4-0.6 0.4 0.5 1.8-0.5 1.1 0.4 0.7-0.5 1.3 1.1 0.9 0.2 1.2 1 1 0.8 0.6-0.8 1.8 0 0.6 0.5 0.4-0.3 0.6 0.7 0.8-1.2 0.4 0.2 0.9-0.2 0.1-0.6 0.1-0.5 0.5-0.5-0.2-0.2-0.5-0.7 0-0.3-0.2-0.6-0.1-1.1 0-0.4 0.8-0.2 0.6-0.9 0.1-0.8-0.1-0.1 0-0.8 0.3-0.3 0.5-0.4 0.5 0.2 0.4 0.2 0.8-0.3 0.6 0.4 0.5-0.3 1.1 0.3 0.9-0.1 0.7-0.2 0-0.7 0.3-0.1 0.6-0.3 0.6-0.6 0.2-0.5-0.2-0.8 1.8-0.7 0 0 0.3 0.1 1 0.8 0.6 0.7 0.7 0 0.6 0.4-0.3 0.6 0.1 0.8-0.1 0.4 0.1 1.1-0.4 1 0.4 0.2-0.4-0.4-0.7 0.5 0.4 0.1 0 0.8 0.5 0.2 0.2 0.3 0 0.6-0.2 0.6 0.5 0.6 0.5-0.2 0.4 0.3 1.3 0.7 0.4 0.7 0.4 0.4 0.8 1-0.2 0.7-0.1 0.9-0.5 0.1-0.7-0.6-0.7 0.2-0.4 0.7-0.4 0.9-0.5 0.8 0.3 0.4-0.1 0.5-0.6 0.3 0 0.8 0.4 0.5 0.9 0.8 0.2 0 0.5 0.9 0.1 0.4 0.9 1.3 0.7-0.2 0.8 0.6 0.5 0.3 0.9-1 0.6 1 1.3-0.1 1.1-0.7-0.1-0.2 0.5 1.6 0.6 0.9 0-0.1 0.5-0.7 0.4 0.2 0.9 0.5 0.6-0.2 0.8-1.1 0.3 0 1.6-0.9 0.7-0.1 0.7 0.5 1-0.2 0.4 1 1.1 0.2 0.4 0.8 0.7-0.9 0.8 0.9 0.3 0 0.6-0.6 0.7-1.7-0.1 0.2 0.8-0.2 0.7-0.9 0.6-0.7-0.6-0.7 0.5 0.4 0.9-1.4-0.2-1.1 0.2-0.9 1.1-1.3 0.9-1.4 0.8-0.4-0.4-1.2-0.1-0.5-0.7-0.8 0.2-0.1 1-1.6 0-1-0.9-1.1-0.4-0.5 1.3 0.9 1 0.7 0.1 0.2 0.8-0.8 0.3-0.7-0.7-1.3 0.2-0.5 1.4-0.3 1.9-1.3-0.7-0.8 0.7-0.6-0.9 0.8-0.8-0.9-0.7 0.2-2.6 0.4-0.8-0.2-0.6 0.2-0.5 0.7 0 0.1-0.8-0.1-1.5 0.4 0 0-0.9-0.7-0.3 0.2-2-0.2-0.8 0.4-1.7 0.6-1.1 0.5-2.8-0.7-0.2-2-1.7 0.6-0.5-1.2-0.3-0.1-0.5-1 0-1 1-0.5 0.2 0.2 0.9-0.1 0.5-1.3 0.5-0.5 0.6-1-0.1-1 1.4-1.1 0.2 0.1 1.8 0.3 1-0.8 0.3-1.3 0.1-1.8 1.4-0.5-0.3 0.2-1.4 0-0.9-0.9 0.2-0.7-0.5-1.2 0 0.1-0.6 0.8 0.2 0.5-0.3-0.9-0.8-0.8-0.3 0.3-0.6 1.4 0.1-0.2-1-0.6-0.7-1.2-0.1-0.4 0.3-1-0.1-0.7 0.4-0.6-0.2-0.2-0.9-0.6-0.4-0.9-0.3-1 0.2-0.1 0.4 1.5 0.8 1.2 0.8-0.8 0.8-0.9-0.2 1 1.5 0.6 0.3-0.6 1.4-0.7 0.3-0.9-0.3 0-0.8-0.6-0.6-0.7-0.2-0.6 0.6-1.9-0.2 0 0.4 0.9 0.8-1 0.3-0.7 1.1 0.9 0.8-0.4 2.4 1 0.4-0.3 0.7 0.1 0.7 0.5 0.6-1.2 1.6-1.5-1-0.2-0.8-1.2-0.6-0.2 0.7-0.7-0.2-0.4 0.3-1.4-0.6-1.1 0 0.1-1.8-0.8-0.4-0.9 0.2-0.2-0.7 0.7-0.2 0.7 0.1 0.1-1 0.7-0.9-1.1-0.1 0-0.5 0.6-0.7 0.1-0.7 1.2 0 0.2-0.7 0.6-0.5-0.7-0.5-0.4 0.8-0.9-0.9-0.6 0-0.8-0.4 0.3-0.5 1.1-0.8 0.5 0 0.1-0.9 1.2-0.9 1.3 0.2-0.1 0.9 0.7 0.1 0.3-0.5-0.6-0.6-0.3-1.1-0.7-0.1 0.2-0.8-1.4-0.7-0.1-0.5 0.4-1-1.1-0.6-1.1-1.7-1-0.2-0.1-1-1.7-0.8-1.3-0.3-0.2-0.4-0.9-0.2-0.5 0.4-0.6-0.2-0.2-0.5 0.7-0.7-0.2-0.7-1.5-0.6 0-0.6-1.6-0.4-0.8-0.9 0-0.4-1.2-0.5-0.4-1.7-0.3-0.7-0.8 0-0.3-0.4-0.7 0.1-0.3-1.1-0.3-0.2-0.3-3.3-0.5-1.5-0.6-0.6 0.5-1.9-0.9-0.9 0.1-1.6-0.8-1 0.1-0.5 1-0.1 0.2-0.8 0.4-0.6-0.2-1.3-1.3-0.4-1.3 0.1 0.2-0.9-0.3-1-1.7-0.2 0-1.5 0.5-0.7-1.2-0.6 0.3-1.1 0.6 0 0.5-0.7-0.5-1.6 0.4-0.4-0.1-0.9-0.6 0-1 0.6-0.1 0.8-1.1-0.3 0.3-0.7 0.1-1-0.2-0.6-1.5 0.8-0.1 0.7-1.3 0.1-0.4 0.7-1-0.4-0.5-0.9-0.5 0.1-0.6 0.8-1.1 0.1-0.2 0.6-1.1-0.2-0.9-1.2-0.4-1-0.5-0.1-1.1 0.8-0.5-0.4-0.8 0-0.5-0.9 0.4-0.6-0.5-0.7-0.3-1.1-1.3-0.8-0.6 0-0.8-0.7-1.3 0.2-1.2 1.5-1.5 0.2-0.7-0.6-0.8 0.2-1.3-0.3-0.3 1.6-1.5 0.1 0.1-1-0.9-1.2-0.1-0.8-0.6-0.7-0.7-0.1 0.1-1.5 1.5 0.2 0.5-1.3 0.6-1.1 0-0.4-1.3-1-0.1-1.2 0.2-1.6 0.3-0.3-0.2-0.8 0.8-2.6 0.1-1.2-0.4-0.6-0.8 0.6-1.1-0.1-0.4 0.5-1.9-0.1-0.2-1.7 0.2-0.6 0.7-0.9 1.4-0.5 0.7-1.1-0.6-1.4-1-0.2 0.5-1.4 1.8 0.7 0.4 0.4 1.9 0.4 0-0.7 1.4-1.1 0.5-0.8 1 0.3 0.4-0.2 1.3-0.3 0.9-0.7 0.7 0.8 0.9 0.6 0.8 0 1.8 0.6 0.6 1.6 1 0.5-0.1 0.3 0.7 1 0.9-0.3 0.8-0.7 0.9 0.1 0.4-1.3 0.9 0.6-0.1 1.1-0.5 0.4 0 0.6 0.6 0.2-0.3 0.8 0.3 0.6 0.7-0.1 0.3 0.8 0.6-0.3 0.2-1.1 0.9-0.7 0.6 0.3-0.1 1.4 0.5 0.3 0.7 1.4-0.4 0.8-0.8 0-0.3 0.8 0.3 0.6-0.3 0.6-1 0.5 0.5 0.7 0 0.8 0.9 0.3 0.7 0.6-0.3 1 0.9 1.2 1.8-0.4 0.5-1.1-0.8-0.5 0.2-0.7 0.7-0.5 0.3-1.5 1 0-0.4-0.7 0.9-1 0.6 0.1 0.2-0.9 0.4-1 1.6-1 0-0.9 2.2 1.3 1.7 0.4 0.2 0.8 2-0.4 0.1-0.7 1.4 0 0.4 0.6 0.7 0.1 0.3-2.1 1.4-0.2 0.8-0.5 0.9 0.7 0.8-0.3 0.8 1.6 0.7 0.9 0.5 0.2 0.6-0.3 0.6 0.6 0.7 0.3 1.3 0 1.1-0.8 0.7-0.1 0.5 0.2 0.6-0.9 0.6-0.3 0.1-1 0.6-0.2 0.7 0.6 0.8-0.8 0.9-0.1 1-1.1 1.1-0.3 0.5-0.6-0.6-0.6-0.9 0-0.5-0.4-0.1-1.1-0.5-0.2 0.4-0.7 0.9 0-0.5-2.3 0.3-1.2 1.1-1.8 0.8-1-0.8-0.1-0.9-0.8 0.2-1.1 1.4 1.4 1 0.3 0.4-0.2 1.2 0.3 0.7-0.7 1.4 0-0.1-0.7 0.5-0.5-0.7-1 0.6-0.6 0.8 0 0.3 0.7-0.1 1.3 0.6 1 0.3 0.9 1.3 0.1 0.3 0.8 1.1-0.2 0.8-0.7 1.2 0.8 1-0.6 0.3-1.6-0.2-1.4 0.6-0.6-0.1-0.8-1.1-0.4 0.2-0.4-0.7-1.1-0.5-0.1-1 0.9 0-1 1.2-0.4 1.1-0.2 1.3-1 0.6-0.8 1-0.2 1.3-1.4-1.3-1.3 0.9-0.5 0-0.6 0.8-0.2 1.1 0.4 0.9 0.2 0.9-0.9 0.5 0.7 0.6 0.3 0.5 1-0.1 0.8 0.7 0 1-1-0.6-0.6-0.3-1-0.4-0.3 0.2-0.8 0-1.3 0.6-0.2 0.2-1.2-1.2-0.6 0.6-0.4-0.1-0.7 0.5-1.3-0.5-0.8-0.9-0.8-0.5 0 0.2-1.2-1.5 0.4 0-1 0.1-0.4 0.5-0.7-0.4-0.7 0.1-1.3 0.6-1.1-0.4-0.5-0.2-1.1-0.9-0.4-1.1-1.4-0.2-0.6 0.2-0.6 1.4-0.9 0 0.9 0.4 0.8 1 0.7 1.7-1.1 0.9 1.7 0 0.7 0.5 0.3 0.4 0.7 0.5 0.1 1-0.2 0.1 1-0.4 0.5 0.5 0.4 0.3 1 1.2-0.3 1 0.2 0.9 0.5 0.7 1 1 0.7 0 1.4 0.3 0.6-0.1 1.5-0.6 0.7-1 0.6 0.4 0.8 0.5 0.3 1.6 0.5 0.5 0.8 0.1 1.1 0.8-0.4 0.9 0.2 0.4 0.7 1.6 0.5 0.4-0.3 0.8 0 0.4 0.8 0.8-0.2 0.5 1 1-0.8 0.7-1 0.3 1-0.5 0.7-0.2 0.8 0.9-0.1 1.1-0.5 0-0.6 0.6-0.6 0.5 1.3 0.6 0.7 1.1 0.5z", "14": "M367.1 241.4l0.1 1 0.9 0.4 0.3 1.2 0.9 0.4 0.2 1.5 0.7 1.1-1.1 0.1-0.8 0.4-1.3-0.4-0.8 0.5-0.6-0.4-1.5-1.4-0.6-1.2-0.2-1.1-1.6 0.5-1.8-0.1-0.7-0.3-0.9 0.2-0.5-0.9-1.2-0.6-1.1 0.1-1 1.1-2.3 0.1-0.1-0.7-0.8-0.9-0.9-0.7-0.9-0.1-0.8-1-0.4-0.1-1.4 0.2-0.6-0.1-0.2 0.9-0.8-0.2-1.2 1.4-0.9-0.1-0.8 0.6-0.4-0.3-0.8 0-0.5 0.6-0.5 0.1-0.9 0.8-1.3 0-0.9 0.3-0.7 1.1-0.5-0.4-0.8 0.1-0.5-0.5-1.4 0.9-0.4-0.1-0.8 0.8 0 0.5-0.9 0.6-0.3 1.2-0.7 0.2-0.6 0.9 0.6 1.9-0.5 0.5-0.4 0.9-1.5-0.3-0.6 0.6-0.1 0.5 0.4 1.1 1.7-0.1 0.2 0.5-0.5 0.6-0.1 1-0.6 0.3-0.7-0.7-0.4 1.2 0.4 0.6-0.9 1.1-0.5 1.2-0.5 0.4 0.2 0.9 0.4 0 1.2 1.4-0.3 1 1.1 0.8 0.3 1-0.6 0.8 0 0.6-0.8-0.1 0.7 1.5 0.9 0.5 0.9-0.1 0.2 0.9-0.4 1-1.1 0.3-1.6 1.1-0.3 0-1.7 1.1-0.8-0.1-0.3 0.6-0.9 0-1.4 0.8 0 0.5 0.4 0.7-1.1-0.5-0.6-0.7-0.5-1.3-0.6 0.6 0 0.6-1.1 0.5-0.9 0.1 0.2-0.8 0.5-0.7-0.3-1-0.7 1-1 0.8-0.5-1-0.8 0.2-0.4-0.8-0.8 0-0.4 0.3-1.6-0.5-0.4-0.7-0.9-0.2-0.8 0.4-0.1-1.1-0.5-0.8-1.6-0.5-0.5-0.3-0.4-0.8 1-0.6 0.6-0.7 0.1-1.5-0.3-0.6 0-1.4-1-0.7-0.7-1-0.9-0.5-1-0.2-1.2 0.3-0.3-1-0.5-0.4 0.4-0.5-0.1-1-1 0.2-0.5-0.1-0.4-0.7-0.5-0.3 0-0.7-0.9-1.7-1.7 1.1-1-0.7-0.4-0.8 0-0.9-1.4 0.9-0.7-0.9-0.8-0.4-0.4-0.9-0.7-0.4-0.9 0.1-0.5-0.5-1.4-0.9 0.1-0.7-0.5-1.2 0.2-1 0.7-1.3-1.2-0.7 0.3-0.9-0.3-0.3 0-1 0.7-0.8 0.8-0.4-0.6-0.6-1 0.5-0.4-0.4 0.9-1-1.1-1.2-0.8 1-1.2-1.1-0.8 0.4-0.7-1.5-0.7 0.2-0.7-0.8-1.2-2.1 0-0.8-1-1.7-0.1 1-0.4 0.4-1.1 0.1 0.5 1 0 1.3-1.2 0.1 0.2 0.7-0.4 0.4-1 0.4-0.1-0.4-1.2 0.1-0.5 0.3-1.2 0-0.2-1.4-0.9-0.5-0.2-1.2 0.8-0.8-0.5-1.2-0.5-0.4-0.7-2.1-0.8-1.7-1.4-2.2 0-0.4-0.7-0.5-0.7-1.2 0.1-0.7-0.9-1.7-1.1-3-0.3-0.2-0.5-1.3 1-0.3-0.1-0.9-1.9-4.1-0.9-0.8-1.1-0.5-1.4-0.3-0.7-0.5-1.4-1.4-0.8 0-0.6-0.9-1.4-0.8-1.8 0.5-0.7-0.6 1.1-0.8 1.6-1.8 0-1.3-1.2-0.3 0-2 1.1-0.8 0.8-0.4 2-0.4 0.6-0.5 0.3-0.6 2.8-3.1 1-0.8 1.8-0.6 0.3-0.5-0.7-1-2-2-0.1-0.9 0.1-0.7 0.5-0.8 0.1-0.7 1.2-1.8 0.5-1 0-0.5-0.8-1 0-0.8 0.3-0.8 0.1-1.5-0.4-0.5-0.9-1.8-1.8-1.1-0.9-1.2-0.2-0.9 0.4-0.4 0.3-1.1 0.9-0.2 0.5 0.2 0.6 0 1.1 0.6 1.2 1.3 0.4-0.1 1.3-0.6 1.1-0.7 0.4-0.8 0.5-0.1 1.3-1.2 0.4-1.4 1.2-0.2 0.8-0.6 2.9-0.4 0.6-0.8 0.7-2.1 0.6-0.6 0.8-0.4 1.5-1.2 0.9-1 0.7-0.2 0.5 0.3 0.7 0 0.3-0.1 0.2 0 0.4 0.1 1-0.6 1.3-0.2 0.4-0.4 0.3 0.1 0.3 0.1 0.1-0.1 0.6 0.1 0.5 1.3 0.9 0.4 0.5 0 0.4-0.3 1.1-0.1 0.4-0.3 0.4 0 0.2 0.1 0.6 0 1-1.9 0.1-1.2 0.5-0.1 0.2 0.1 0.4 0.5 0.4 0.2 0.1-0.3 0.1-0.1 0.3-0.1 0.2 0.1 0 0.2-0.2 0.2-0.1 0.2-0.3 0.7 0.3 0.4-0.5 0.5-0.2 0.8 0.2 0.7 0.8 0.8 0.2 0.7 0.6 0.3 0.3-0.2 0.3-0.1 0.3 0.2 0 0.3 0.2 0.4 0.4 0.1-0.2 0.6 1 1.9 1.5 0.8 1.2 1 0.5-0.2 0.3 0.1 0.1-0.2 0.4-0.1 0.6 0.3 0.2 0.2 0.2 0.1 0.3 0.5 0.4-0.1 0.4-0.1 0.2-0.4 0.3 0.1 0.3 0.1 0.5 0.1 0 0.9 0.8 1.8 0.8-0.1 1.6 0.8-0.2 0.5 0.8 0.8 0.4-0.5 0.4 0.4 0.1 0.3 0.5 0.3 0.6-0.1 0.6 1.3 0.4 0.1 0.2 0 0.3-0.1 0.2-0.1 0.1-1.3 0.7-1 0.6-0.2 0.2 0.2 0.3 0.1 0.2 0 0.3-0.2 0.2 0.3 0 0.2 0.2 0.2 0.6 0.2 0.6-0.7 0.4-0.3 1.2-0.1 0.9-0.9 0.8-0.4 0.4-0.8 1.1 0 1.4-0.8 0.4-1.1 0.5 0.4 0.4-0.1 0.1 0.1 0.2 0.3 0.4-0.1 1.6 1.8 1.1 0.9-0.6 0.6-0.4 1.1 1.3 0.7 0.3 0.4 0.2 0 0.1-0.1 0.3 0 0.2 0.2 0.5 0.2 0.5 0.5 0.2 1.1 0.5 0.6 0.3 0 0.3 0 0.1 0.1 0.2 0 0.2 0.3 0.1 0.3-0.5 2.6 0.6 0.6 1.9 3.5 0.4 0.2 1 0 0.6-0.2 0-0.9 0.3-0.6 0.8 0.2 0.2-0.8 0.7-0.7 0.2 0.1 0.3 0.4 0.3 0.3 0.2 0 0.1-0.3 0.4-0.8 1.1-0.3 0.4 0.3 0.1 0.2 0.4-0.1 0.2 0.1 0.8-0.4 0.4-0.8 2-0.8-0.3-1 2-1 0.7 0 0.2 0.1 0.1 0-0.1 1.1 0.2 0.6-0.3 0.8-0.2 1.1 0.3 1.4 0.6 0.6-1.9 1.5-1.2 0.3 0 2-0.7 0.8 1.1 1.3 1.6-1.4 0.9-0.7 0.6 0.1 0 0.1 0 0.2 0.3 0.3 0.8 0.1 0.5 0.8-0.3 1.3 0.8 0.4 0.6 0.9 0.8 0 0.5 0.3-0.7 1.1-0.1 0.5-0.9 0.8-0.2 0.9 0.2 1.8-0.1 0.6-0.9 1.2 1.5 0.2 1.4-0.3 0.7 0 1.7 1.2 0 1.3-0.7 1.2 0.5 0.4 0.3 1 1.7 0.6 0.2 0.8 1.2 1.2 0.1 0.5 1.6 1.7 1.2 0.2-0.4 1.4-0.5 1.6-0.5 0.5-0.2 1.1-0.2 2-0.9 0.8-0.1 0.9 0.4 0.9 0.8 0.3-0.5 0.7 0.4 0.6 0.4 1.5 0.5 0.3 1-0.2 0.2 1.2 1.5 1.3-0.2 1.1-0.9 1-0.9 0.4-0.7 0.7-0.9 0.3-0.5 0.8 0.3 1.3 0.9-0.1 1.8 1.5-0.1 1.4-0.6 0.6 1.8 0.9 0.4 1.1-0.4 0.9 0.7 0.3 0.6 0.9 0.5 1.2 0.9 0.5z", "16": "M670.4 475.6l-0.6 2.6 0 2 0.7 0.9 1.5 0.7 1 0.6 1.3 1.6 0.1 0.5 1.9 1.8 0.3 0.5 0.1 1-0.2 0.6-1.9 1-0.5 0.4-1.1 2.6-0.5 0.5-1.1-0.2 0.7 1.1 2.1 0.6-0.1 1.2-0.4 0.4 0.9 0.6-0.4 1.9 0.3 0.7-0.6 0.5-0.1 0.7-0.8 0-0.6 0.4-0.8-0.3-0.5-0.6-0.5 0.5 0.2 1.7-0.1 0.9 0.7 0.9-1 1.4 0 0.7 0.3 0.5 0 0.6-1.2 1.9-0.2 1.1-1 0.6-0.6-0.2-0.1 0.9-0.9 0.8-1.1 0-0.4 1.3 1.2 0.3 0.8 1.1-0.2 0.9-1.7-0.1-0.4-0.3-1.6 0 0.2 0.5 0.6 0.6-0.8 0.3-0.4 0.7 0 0.7-1 0-0.6-0.6-0.9-0.5-0.2 1.2 0.5 0.1-0.5 1.1 0.6 0.2-0.2 0.9-1 0.4-0.8-0.2-0.3 0.5 0.6 0.4-0.6 0.6-1.7-0.9-1.2-0.3-0.6 0.5-0.8-0.3 0.6-1-2 0-1-0.4-0.4 0.6 0.5 1.1 0.7 0.4-0.3 0.6 1.1 0.5-0.2 0.8 0.3 1.7-1 0.5-0.2-1-0.5 0.1 0.1 1.6 0.3 0.7-0.3 0.4-0.9 0 0.1-1.1-1 0.6-0.2-0.6-1.8-0.4-0.2 0.6 0.8 1 0.4 0.2-0.6 0.9-1.4-0.2-1.7-0.6-0.8-0.8-1.1-0.5-1.3-0.5-0.7 0.8-0.6-0.4 0-0.4-1-0.6-0.7 0.7 0.2 0.7-0.7 0-0.6 0.8-0.8 0.4-0.6-0.1-0.1 0.6 0.6 0.8 0 1.2-0.4 0.2-0.5 1.5 0.1 0.4-1.9 0.4-0.2-0.6-0.7-0.1-2.1 0.5-2 0.8-2.1 1.2-1.7-0.2-1.2 0.1-1.3 1.6-0.9 0.2 0.1 0.4-0.9 1.1 0.4 0.8-0.4 0.3-0.2 1.9-0.8 0.2-0.9 0.5 0.4 0.7-0.4 0.2-0.6-0.3-0.1-0.4-1.2 0.2-0.7-0.1-0.1-0.8-0.6-0.1-0.9-0.6-1.2 0 0.4-1-0.4-0.9 0.3-0.9-0.5-0.7-1.2-0.1-1 0.2 0-0.4-1.2-0.2-0.9 0.8 0 0.4 0.7 1.2 0.3 1.1-0.7 0.1-2.8 1.2-1.1-0.6-1.1-0.2-0.5 0.9 0.1 1.6 0.6 0 0.6 1.2-1.1 0.4 0.2 1.3-0.3 1-1 0.9-0.2 0.6 0.3 2.7 0.7-0.1 0.7 0.8 0 0.5 0.8 0.4 0.5 0.7 1 0 0.3-0.3 1-0.3 1.9 0.1 0.4 0.5-0.2 0.6 1.6 0.8 0.9-0.1 0.7 0.5-0.1 0.7 0.9 0.8 0.5 1 0.9-0.1 0.4 0.9 1.6-0.1 0.7-0.6 1.8 0.8 0.9-0.3 0.7 0.2 0.4 0.6 0.8-0.7 1.6 0.3 1.2-0.1 0.5 0.8 0.8-0.5 0.1 0.7-0.7 0.7-0.7-0.2-0.4 0.5-0.5-0.4-0.4 0.5-0.8 0.2-0.1 0.4 1 0.7-0.4 0.5-0.1 0.9-0.5 0 0 1.1-0.4 0.8-0.2 1.2 1.3 0.6 0.9 1.4 2.4 0.4 1 0.8 1.3 0.6 0.7 0.7-0.1 2.1 0.4 0.2 0.2 0.6 0.7 0.1 1.1-0.3 1.7 0.3 0.3 0.8 0.7 0.3 0.2 0.9 0 1.6-1.3-0.2-0.2 0.4 0.6 1.8 1.4 0.2 1.3 0.7-0.1 1-0.4 1.1 0 0.6 1.5 0.9 0.6 0.7-0.1 1.1-1.3-0.3-1-0.1-0.8 0.4 0.5 0.5-0.7 0.7-1.5 0.4-0.8-0.3-1.4-0.1-0.4-0.7-0.8 0.1 0-1-1.1-0.5-0.8-0.2-0.4-0.6-0.9 0.1-1-0.3 0-0.6-0.5-0.2-0.3-0.6-1.4 0.7-0.7-0.1-0.5 0.7-1.7-1.2-0.7-0.3-0.5-0.7-0.5-0.3-0.2-0.7-1.1-1.2-0.2-0.8-0.5 0.2-1.6-0.3-0.6-0.8-1.9-0.3-1.5-0.4-1.1-2-1.1-0.7-0.7 0.7 0.4 0.3-1.1 1-0.9 0.3-0.1 0.7-0.5 0.9 1.4 1.3 0.5-0.1 0.4 1.6-0.1 0.7-0.8 0.9 0.9 0.3-0.5 0.5 0.4 0.4-1.1 1.4-0.5 0.9 0.8 1 0.8 0.6 0.3 0.5-1.1 2 0.3 0.7-0.8 1.1-0.1 0.4-1.1 1.9-0.5 0-0.6 0.6-0.6 1-1.8 0-2-0.1-0.8-0.4-0.1-0.7 0.8-1-0.3-0.5 0.6-1 0.9 0.3 0.5-0.3-0.9-1.2-0.4 0.4-1.2 0.5-0.4 0.6-0.8 0.4-1.1 0.1-0.3 0.3-1.2-1.6-0.5 0.3-1.4 0.3-0.3-0.2-1.5-0.5-1.1-0.7-0.6-0.1-1-0.7-1.6-0.8-1.6 0.1-0.1 1.1-1.3-0.1-1.7 1.7-1.1 2.5-0.4 0.4-0.5-0.3-0.1-1.2-2.4-1.2-0.8 0.3-0.6-0.7-0.1-0.4-1-0.4-0.8-0.1-0.9 0.2-0.6 0.9-0.5 0.1-0.2-0.5 1.5-0.8 0.2-0.9-0.2-0.6 0.9-1-0.1-0.2 0.7-1.6 0.2-0.8-0.1-0.8 1.2-0.7 0.3-0.8-1-0.1 0.2-0.9-0.6-0.3 0.3-1.1-0.3-1.3-0.4-0.4-0.2-0.8 0.5-0.4 0.1-0.6-0.8-0.2-3.1 1.3-0.3-0.3-1.2 0.6-0.3 0.6-0.9 0.1-0.1-1-1.4 0.6-0.8-0.2-0.4-0.4-1.7 0-0.3 1.1-2.8 0-1-0.6-2 0.3-1 0.2-1.5 0-0.9 0.5 0 0.7-0.9 0.2-0.7 0.5 0 0.5-1.1 0.3-0.8-0.2-1.6 0.4-1.2 0-0.8-0.4-0.7-0.9-1.8 0-0.3-0.4-1.1-0.6-0.5-0.8-0.1-0.9 0.1-0.8-1.1-0.2-0.9-0.6-0.7-0.8-1.9-0.4-0.1-0.7 0.2-1.1 0.5-0.6 1-0.3 1.1-1.5 2.3 0 1.1-0.5 0.5-0.6 0.6 0 0.6-0.9-0.2-1.7 1.2-1.1 0.9 0.1 0.1-0.9 0.7-0.5 0.3-0.6 0.1-1.2 0.3-0.4 0.9 0 0.7-0.5 0-0.9 0.4-1.5-0.4-0.5-0.2-0.9-1.4-0.1-0.8 0.4-1 0.2-0.3-0.6-0.6 0.3-0.5-0.4-0.7 0.2-0.7-1.1 0.1-0.4-0.7-0.2-0.3 1-0.1 0.9-0.6 0.2-0.2-0.9-0.6-1.5 0.2-1.3-0.2-0.8-0.4 0-0.9-0.9-0.7 0.1-1.1-1.1-0.2-0.6 0.5-1.2 0.4-0.4-0.2-1.7 0.5-1.9-0.1-0.6 0.3-0.8-0.7-0.8-0.2-0.8-0.8-0.1-0.5 0.9-0.8-0.3-0.5-0.5 0-0.7 0.4-1.3-0.3-0.7 0.9-1.7 0.4-0.3 0.5-1.6 0.1-0.8-0.2-1.3-0.6-0.8-0.9-0.4-1.3 0.3-0.3 1.1 0.2 1.2-3.9-0.9-0.5 0.1-1.1-0.6-0.3-0.8-0.6-0.2 0.1-0.8-1.2-1.3 0.6-0.8-0.1-1.9-0.6-0.6-0.1-0.7-0.5-0.7 0-0.4-0.8 0-0.5-0.3 0-0.6-1.9-0.4-0.7-0.3-0.4-1-0.7-0.1-0.4-0.9 0.1-0.7-0.9-1.2-0.2-1.3 0.1-0.9-1.1-0.5-1-0.1-0.5-0.5-0.3-1.1-0.9 0.1-0.5-0.7-1.3 0.1-0.8-0.1 0.9-1 0.3-1.1 0.7-1.7-0.1-1.1 0.9-1.3-0.2-1-0.7-0.8 0.9-0.9 1.1-0.4 0.3-0.9-0.5-1.2-1-0.3 0-0.9-0.6-0.7 0.4-0.9 0-0.8 1.1-0.5 2.5-0.5 1.5 0 2 0.5 2.8-0.1 1.1 0.4 1.1-0.2 1.8-0.7 2-0.3 0.3 0.2 2.1-0.6 1-1 0.5-0.8 0.6-1.6 1.1 0.4 0.8 0.6 0.5 1.3 0.4 0.3 0.2 0.9 0.4 0.5 0 1.1 0.7 0.8 1-0.9-0.1-0.9 0.3-0.4 0.6 0.3-0.3 0.6 0.8 0.2 0.1-0.5-0.3-0.6 1.7-0.4 1.2 0.5 0.4-0.1 0-0.9 0.8 0 0.9 1.6 0.3 0.7-0.2 0.5-0.9 0.3-0.3 0.6 0.2 0.6 0.8 0.1 0.5 0.6-0.2 0.8 0.4 0.5 0.9 0.4 0.7-0.1 0.4 0.8 0.9 0.3-0.1 1.1 1.2-0.3 0.4 1.1 1 0.8 0.8-1.7 0.1-1.6 0.9 0.1 0.6-0.4-0.2-0.5 0.5-0.6 0.9 0.4 0.7 0 1.3 0.3 0.3-0.7 0-0.7 0.4-0.9 0.9-0.6 0.7-0.1 0.6-0.8 1.2-0.4 0.2-0.4 1.2-0.3 0.4 0.5-0.1 1.5 1.2 0.5 0.6-0.2-0.1 1.5 0.7 1.1 0.2 0.8 0.7-0.2 0.8 0.2 0.7-0.1 0.7-1.4 1.5-0.5 0.7 0.4 0.5-0.8 0.2 1.1-0.3 0.8 0.9 0.2 0.8-1.1 1.1-0.3 0.7-0.4-0.5-1.3 1.7-0.4 0.7 0.1 1.1-1 0.9 0-0.1-0.8 0.6-0.3 0.7 0.1 2.2-0.3 0.7-0.5 1.1 0.4 2-0.6 0.4 0.8 1-0.1 0.2-0.7 1-0.5-0.3-0.7 0.6-0.7 0.7 0.2 0.3 0.4 1.3 0.3 0.7-0.1 0.2-1.5-0.4-1.1 0-0.9-0.4-0.5 1.1-0.3 0.8-1.3 0-1 0.2-0.9 0.4-0.3 0.5-1.3 1 0.4 0.4 0.5 1.1 0.2 0.6-0.6 1.7 0.3 1.2 1.8 1.3 0.8 0.7 0 0.2-0.6 0.8-0.1 0.2-0.6 1.4-0.4 0.6 1 1.4 0.6 0.7 1.1 0.3 1.1-0.6 1.3 0.3 1.1 0.9 0.5 0.5 0.6 1.7-0.3 0-0.8 1.1 1 1.5 0 0.9 0.4-0.5 0.6-0.1 1 0.4 0.9-0.7 1.2 0.3 0.7 0.6 0.7 1.2-0.1 0.7 1 0.8 0.6 0.6 0.8 1.1 0.4 0.5-0.3 0.2-0.7-0.1-1 0.8-0.2 0.1-0.5 0-1.7 0.5-1.2 0.6-0.7 0.8 0 0.3-0.9 0.9-0.5 0.1-0.5 0.5-0.5 1.6 1.2 0.7 0.3 1.8-0.7 0.4 0.1 0.5-0.5 0.3-1 1.3 0 0.4 0.8 0.1 1.1 1-0.1 0.6 0.6 0.7-0.6 1.1 0.9-0.3-1.6 1.3-1.7 1 0 1.5 0.9 1.4 0-0.2-0.6 0.3-1.8 0.6-0.9 0.4-1.1-0.3-0.8 0.4-0.5-0.1-0.8 0.4-0.7-0.6-0.4 1-1.4 1.4-0.6 0.4-0.9-0.4-1.2 0.2-2.7-0.3-0.8 1.1-2 0.4-0.1 0.8-0.9 0.7 0.2 0.3-0.5 0.6-0.2 0.4 0.4 0.7 0.2 0.2-1.8 0.4-0.5 0.5-2.8 1.5 0.6 0.3-0.6 0.5-0.2 2.2 1.2 0.6 0.1 0-1.8 0.8-0.9-0.5-1.1 1.1 0.1 0.4 0.4 0.4-0.5 0.4-1.4 0.6-0.1 1.4 0.9 0.6-0.2 0.9 0.3 1.1-0.1 0.3 0.3 0 0.8 0.5 0.4 0 0.6 2.6 0.3 0.2 1z", "17": "M320.8 730.6l0.7 0 1.1 0.5-1.1 1.3 0.5 0.9-0.6 1 0.4 0.9 0.6 0.4-0.2 0.9 0.3 1-0.1 0.5-1.1 0.3-0.7 0.8 0.3 0.7 1.8 0.6 0.7 0.9 0.6 0 0.3 0.9-0.3 0.8-0.9 0-0.1 1.5-1-0.2 0.2 1.1-0.8 0.5-0.2 0.8-0.3 0.4-1 0.2 0 0.5-0.5 0.4-0.2 0.7 0.6 0.1 1.1 0.6 0.3 0.5-0.8 0.8-0.4-0.1-1.1 0.4-0.2 0.4-1.1 0.3-0.4 1.4 0.2 0.9-0.4 1.1 0 0.8 0.7 0.1 0.5 0.4 0.5 0 0.4 0.9 0.9-1.1 0.7 0.8 1.3-0.3 0.2 0.9 1 0.4 1.2 0 1.1 0.8-0.2 1-1.2-0.3-0.5 0.3-0.8 0.1 0 0.9-0.5 0-0.8-0.4 0 0.9-1.3-0.4-0.8 0.5 0 0.5 0.8 0.5-0.4 0.4 0 0.9-1.3 0.3-0.3-0.5-0.8-0.1 0.2 0.9-0.3 1.1-0.5 1 0.7 0.4-2.5 2 0.4 0.3-0.1 0.7-0.7 0.1-0.3 1 0.5 0.8 1 0.6 2 0.6-0.1 0.4 0.6 0.6 0 0.6 0.5 1 0.2 0.9-0.7 0.6 0 0.8-0.5 0.5 0.1 1.3-0.4 0.3 0.2 2.3-0.1 0.7 0.5 1-0.2 0.7-1.1 0 0.1 0.5-0.5 1.7 1.6 0.3-0.1 1-1.7 0.6 0.6 0.9 0.9-0.4 0.4 0.2-0.6 1.3 0.1 0.9-0.7 0-0.5 0.6-1.1 0 0.4 0.6 0.5 0.1 0 1-1.2 0.2-0.4 0.3-0.1 0.7-1.4 0.1-1-0.4-0.2 0.6-1.3 0.2 0.4 1.4 0.7 0.9 1.6 0.6 0.7 0.4 0.7-0.1 1.3 0.6 0.9-0.4 1.5-0.2 1.3 0.3 0.6 0.6 1.6 0.9 0.3 0.6-0.4 0.9-0.5-0.4-0.8 0.4-0.6 0.6-0.8 0.1-0.5 0.6 0.3 1.3 0 0.9-0.4 1 0.1 1.6 0.4 0.6 0.2 0.9-0.5 1.5 0.4 0.9 0.3 0.1-0.2 1 0.4 0.4-0.2 1.5-1.5-0.3-1.4-0.5-0.6 0.3-1.1 0-0.7-0.3-2.5-0.2-1.1-0.3-0.5 0.2-1.9 0-1.2 0.4-0.5 0.3-0.9 0.3-0.9 0.5-1.5 2-0.2 1 1.3 0.1-0.1 1.5-0.5 1 0 0.9 1 0.2 0.3 0.4-0.3 0.6 0.8 0.5 0.8 0.7-0.3 1.2-1.1-1-0.5 0.4-1.4 0.4 0.1 1.1-0.2 0.8 0.2 1.8-0.1 0.9-1.1 0-0.8-0.2 0 0.5 0.8 0.9 0.4 0.6 0.7 0.5 0.1 1.2 0.5 0.6-0.2 0.9 0.8 0.8 0.2 0.6 1.4-0.3 0.2 1.4 1.1 0.1 0 0.5 0.6 0.7-0.8 0-0.7 1.1 0.7 0.1 0.6 0.9 0.2 0.9-0.2 0.6-0.7 0-0.1 0.5 0.6 0.2-0.2 0.8-0.7 0.5 0 0.9-0.6 1.4-0.9 0.2-0.1 0.8-1.3-0.2 0.2-0.8-1.6 0-1.2 0.5-0.5-0.4-1.3-0.2-1.2 0.1-0.6-1-0.8-0.6-0.5 0-0.9-0.6-0.8 0.9 0 0.4 0.4 1.3-0.9 1.2 0.2 0.5 1.1 0.2 0.7 0 0.4 0.4 0.5-0.3 0.7-0.1 0.1 0.9-0.2 1.7-0.5 0 0.2 1-0.1 0.8-0.3 0.3-0.2 1.6-1.8 0.2 0.6 1.6-0.9 2.1-0.4 2.8 0.6 0.6 0.3 0.9 0.4 0.9 1.5 0.6 0.7 1.3 0.6 0.1 0.9-0.5 2.3 0.2-0.5 1.2-0.5 0-0.1 1.6-1-0.5-0.6 0.7-0.4 0.1-0.2 1.4 0.7 1.1 1.5 0.5 0.1 0.9-0.7 0.3 0.5 1.1 0.4 0.2 1.1-0.1 0.7 0.2 1-0.3 0.6 0 0.8 1.1 0.7 0 0.5-0.4 0.2-1.3-0.3-0.1 0.2-0.9 0.5-0.5 0.2-1.1 0.7-0.2 1.5 0.8 1.6 0 0.5-0.4 0.8-0.2-0.1 2 2.7 0.2-0.1 1.4 0.7 0.5 0.3 0.8 1-0.4-0.4-2-0.4 0-0.5-1.2 0.1-0.8 0.6-0.4 1 0.3 0.6 0.4 0 1.1 0.4 0.2 0.8-0.4 0.7 0.8-0.3 1.2 0.7 1.9-0.3 0.8-1.3-0.5-2.5 0-0.5 1.2-0.9 0.2 0.1 0.7 1.3-0.5 0.2 0.5-0.6 0.5-0.2 0.7-0.8 0.6-0.4 0-0.4 1.1 1.2 0.2 0.8 0.3-0.4 0.9 0.5 0.3 1.1-0.1 0.4 0.3-0.1 0.9-0.7 0.2 0.4 1.5-0.8 0.5-0.2-0.6-1.4 0-0.2-0.5 0.7-1.1-0.7-0.3 0.4-1.1-0.7-0.2-0.7-1.3-0.4-0.1-0.8 0.7-0.3-0.7-0.9 0.8-0.9-0.1-0.8 0.2-0.8-0.2-0.6 0.6-0.6-0.3-0.5-1.5-1 0.1-0.8-0.3-1.5-0.2 0-1.1-0.5-0.3 0.2-0.5-0.1-0.7 0.3-1.6-2.1-0.1-0.6-0.5-0.2 0.8-0.7 0.3-0.8 0-0.3 1 1 0.3 0.3-0.3 0.7 0.6 0.3 1 0.6 0.2 0.1 0.9-1.1 0.2-0.3 0.9 0.6 0.5 0.9 0.4 0.7 0.5-0.2 0.9 0.7 0.3 0.9 0.8 0.2 1-0.8 0.1-0.4 1.6-1.3 1.4 0.5 0.2-0.1 0.6 0.4 1.5 0.7 0.4 0.3-1.3 0.5 0 0.8 1.1 0.7 0 0-0.5 0.5-0.3 1 0.3 1.5-0.1 0.1-0.6-0.6-1 0.3-0.5-0.5-0.7-0.7-0.3 0.4-0.6 0.9-0.2-0.3-1.2 0.7-0.6 0.2 0.6-0.2 1.4 0.6 0.1 1.1-1.3 0.5 0 0.3 1.9 1.2-0.2 0.8-0.4 0.4 1.1 1.1-0.6 0.7 0.4 1.8 0.2-0.6 0.9 0.7 0.4 0.4-0.5 0.4 0.6 0.4 1.5-0.2 1.1-0.4 0.6 0.1 0.7 0.9-0.1 0.3-0.3-0.1-0.6 0.7 0 0.2 0.5 0.5 0.1 0.2-0.7-0.3-1.3 0.7 0 0.3 0.8 1.1-0.3 0.5-0.5 0.7 0.5 0-1.1 1.1-0.5 0.8-0.1-0.1 0.9 0.9-0.3 0.6 0.8 0-1.8 0.5-0.4 1.4-0.3 0.2-0.8 1-0.3 0.8-0.7-0.2-1-0.3-0.2-0.2-0.8 0.3-0.5 1.6 0.2 0.9-0.2 0.1 0.7 0.7 0.5 1.3-1.1 0.4-0.8 0.6 0.1-0.2 0.8 0.2 1.1-1 0.3-0.3 0.5 0.3 1.6 0.6 0.2 0.6-1.5 1.8 0.4 0.1-1.2 1 0.5 0.2 0.6 1 0 0.4 1.2-0.3 0.6 0.4 0.9-0.3 0.6-0.9 1 0.9 0.8-0.2 0.9-0.7 0.1-0.7-0.3 0.1 0.9 0.5 0.5 0 0.5 0.9-0.4 1.3-0.1 0.5 0.2 0 0.7 1.1 0.3 0 0.7-0.4 0.6 0.3 0.8 0.6-0.9 0.7-0.2 0.8 0.5 2.1-0.4 1.1 0.2 1.2-0.1 0.6 0.5-0.4 1.2-0.6 1.3-0.2 1.5 0.3 2.2-0.5 1.2 1.4 0.8-0.2 1.1 0.8-0.5 0.5 0 0.2 0.6 1.1-0.4 0.1 0.6 1 0.6 0.7 0.7 0.3-0.7 1.3 0.2 0.3 0.3-0.6 1-0.2 1.6 0.6 1.1-1.1 0.2-0.1 0.7-0.9 0.4 0.3 0.7-0.1 0.5-0.6 0.6 0.3 0.6-1.3 0.4-0.6 0.3 0 0.6 0.4 1.2-0.1 0.6-1.2-0.2-0.1 1.6 1.2 1.1 0 0.9-0.6-0.5-0.1-0.7-0.6 0.4-0.5-0.1-0.5-0.5-0.4 0.4-1.1-1.2-0.6 1.4-0.4-0.1-0.4 0.9 0 0.7-1-0.1-0.4-0.3-0.7 0.3 0 1.3-0.4 1.7-0.3 0.4-1.9-0.5-0.3 0.2-1.3-0.3-0.2-0.6-0.9-0.6-0.8-0.9-1.4-0.4-1 0.9 0.3 0.7-0.7 0 0-0.6-0.8-0.9-0.6 0.3-0.3 0.6-0.8-0.4 0.2-0.7 0.5-0.3-0.5-0.8-0.9 0.3-0.2 0.3-1.9-0.1-0.2 0.4-1.3 0.7 0.6 0.3-0.4 1.4-0.6 0.7 0.5 0.5-0.3 0.4-0.6 0.2 0.1 0.5-0.4 1-0.8 0.1-0.3 0.7-0.5-0.4-0.3 0.8-0.9 0 0.1-0.7-0.6-0.1-2.2 0.6 0 0.5 0.3 0.8-0.5 0.5-0.1 0.8-0.4 0.9 0.3 1.8 0.9 0.1-0.1 0.4-0.9 0.8 0.8 0.1 0.7-0.7 0.2 0.3-0.3 2.5-0.4 1.8-1.2 1.1-0.4 0.9-0.5 0.5-0.6 0.1-0.2 0.4-0.9-0.1-0.8 0.3-0.2 0.9 0.4 0.4-0.3 0.8 0.6 0.4 0.9 0.3 1-0.4 0.6 0.2 1.6-0.2 0.9 0.3 0.9-0.1 2.4 0.7 0.4 0.7 0.1 0.7 0.9 0.7-0.7 1.4-0.9 0.5-1.1 1.5-0.9 2 0.1 0.5-1 0-2.1 0.5-0.9-0.2-0.8 0.3-1.2-0.3-0.5 1.4-0.7 0 0.1 1.8-0.9 2.3-0.6 0.4-1.1-0.5-0.9-0.1-0.3 0.5-0.7 0.2-1.4-1.4-0.2 0.3-1.3-0.4-0.5 0.6-1.2 0.1-0.9 0.3-0.9 0-0.8 0.4-0.6 1.3-0.7 0-0.9-1.2 0.4-0.5-0.7-0.2-0.6-0.6-0.7-0.2-1 0.4-0.5 0.9-0.5-0.6-1.5-0.1-0.5 0.6-0.2 1.5-0.9 0.9-0.8 1.7 0 0.7 0.7 1-0.5 0.6-0.7-0.5-2.2-0.3-4.3 0.1-0.6 0.1-1.9-0.4-0.4-2-1.3-1-1 0.7-0.8 0.8-0.9-0.1-0.5-0.2-0.2-0.7 0-0.8 0.5-0.5-0.5-1-1.1 0.5-0.5-0.1-0.7 0.3-0.9-0.5-0.3-1.1-0.6-0.3-0.3-0.6-1 0.2-0.9-0.1-0.5-0.7 0-1.1-0.7-0.5-1.5 0.3-0.5 0.4-0.6-0.2 0-4.2-0.6 0.3-0.6 0-1.5 1-0.8 0.1-0.2 0.2-0.8 0-0.9-0.3-0.6 0.1-1.9-0.4-0.9-0.5-0.2-0.5-0.7-0.5 0.1-0.6-0.9-1-0.2-1.5-1.1-0.2-1.5 0.6-0.1-0.2-0.3-0.5-0.2-0.2-0.3-0.5-0.6 0.4-0.4 0-0.7-1 0-0.4-0.2-0.3-0.2-0.1-0.1-0.1-0.7-0.1-0.4 0.1-0.1 0.1-0.3-0.3-0.7-0.5-0.4-0.7-0.2-0.2-0.2 0-0.2-0.3 0.2-0.2-0.5-0.5 0-0.3-0.2-0.2 0-0.1-0.2-0.4-0.1-0.2-0.2-0.3-0.4-0.1-0.3-0.7-0.6-0.3-0.8 0.2-0.4-0.1-0.4 0.2 0.4-0.5-0.3-0.3-0.4-1 0.1-0.2 0.3-0.7-0.1-0.2-0.5-0.1-0.1-0.1-0.3-0.2-0.5-0.2-0.4-0.7 0.1-1.4-0.1-0.2 0.9 0.2 0.4-0.1 0.3-0.2 0.4-0.4-0.4-1.1-0.3 0.3-0.3-0.3-0.3 0.2-0.2 0-0.1 0.2-0.2 0.3-0.6 0.7-0.5 0 0-0.3-0.2-0.7-0.5-0.2-0.5-0.2 0-0.7-0.8 0-0.4-1.3 0.7-0.7 0.9 0.2-0.5-1.1-0.9-0.4-1.3 1.7-0.8-0.4-0.2-0.8-0.3-0.3 0.1-0.7-0.7-0.1-0.4 0.4-0.5-0.1-0.2-0.8 0.4-0.7-0.6-0.3-1.1-0.1-0.3-0.6-0.6 0.1-0.1 0.8-0.4 0.3-0.8-0.1-0.1-1 0.4 0.1-0.2-1-0.4-0.1-1.2 0.1-0.4-0.8 0.6-0.8-0.1-0.9-1.2 0.5-0.6-0.3-2 0.8-0.3 0.3-0.7-0.2-0.7-1.5-0.6-1.7-0.2-0.2-0.5-2.4-0.3-1.9-0.7-2.8 0.1-0.3-0.4-1.1-0.4-2-0.8-3-0.4-1.5 0-0.8-0.3-1.1-0.5-0.7-0.2-3.5-0.1-0.3-0.3-3.1-0.7-3.7-0.3-0.4-0.3-0.9-0.5-3.3-0.7-2.7-0.5-0.9-0.1-0.6-0.8-1.5-0.6 0-1.2-1.3-0.4-1.3-0.1-1-0.4-1.3-0.5-2.9-0.2-0.9-0.5-0.2-1.4-4.1-0.2-1.9-0.5-1.7-1.1-2.9 0-0.6 0.8-0.6-0.5-0.8-0.6 0.5 0.1 0.8-1.3 0.1-0.1-1.2-1.3-2.6 0.3-0.2-0.2-0.9 0.2-0.7-1.1-2.2-2 0.2-0.4-0.6-0.7-0.1-0.6-0.8-1.1-0.3-0.6-0.6 1.1-0.5 0-0.7-0.9-1.6 0.2-0.8 1-0.4 0.4-0.1 1 0.3 0-0.2-0.3-0.8 0.1-0.1 0-0.2 0.6-0.2 0.4 0.3 0.2 0.2 0 0.4 0.5-0.2 0.8-0.5 0.1-0.4 0.2-0.1 0.4 0.1 0.1-0.3 0.3-0.3-0.1-0.8 0.4-0.6 0.2-0.3 0-0.3 0.5-0.3-0.6-1-0.2-1.2 0.4-0.6-0.1-0.9 0.7-0.6 0.4-0.8-0.7-1.6-1.3-0.4 0.5-1.2 0.9-0.4 1 0.1 0.3-0.4-0.6-1.3 0.1-1.3-0.7-0.5-0.6 0-0.5-1.5 0.3-0.7-0.9-1.6 0.9-0.8 0.1-0.5-0.5-1-0.6-0.4 0.4-0.9 0.1-0.9-0.3-0.3-0.2-1.1-0.8-0.4-0.2 0.6-1-0.5-0.7-0.2 0 0.6-1.1 0.2-0.6-0.1-0.9-0.6 1.2-0.4 0.3-0.8-0.3-0.8 0.9-0.4 0.3-0.5 1-0.1 0.4-0.3 0.3-0.7 0.7 0-0.1 0.7 0.3 0.5 1-0.3 0.6 0.5 1.1-0.6 0.2-0.5 0.7 0.3 0.5-0.4 0.4-0.8-0.3-0.6 0.7-1.2-1.2 0 0-0.4 0.6-0.6 1 0-0.3-0.9 1.5-1.8 0.5-1.1 0-0.6 0.5-0.8 0.1-0.9-0.9-0.4-1 0.3-0.8 0.5-0.6-0.8 1.1-1.2 1.1-0.7 1 0.3 0.8 0.6 0.3-0.9-0.2-1.1 0.2-1.4 0.5-0.2-0.3-0.8 0.2-0.5-0.8-0.8-2.1-0.4-0.1-0.8-1 0.2-0.4-0.7-0.6 0.3-0.9 0.7-0.2-0.5 0.6-0.4-0.5-1.7-0.3-0.5 0.4-1.2 0.3-0.1 0.2 0.8 0.6-0.8-0.1-0.5-0.8 0.1-0.1-1.8-0.6 0.1-0.9-0.9 0.2-1-0.4 0-0.7 0.9-0.2-0.8 0.8-0.3-0.3-0.4 0-0.9 1 0.5 0.9-0.8 1.8 0.9 0.3-0.3 0-0.8 0.3-0.7 0.9-0.2 0.4-0.5 1.1-0.2-0.3-1.1 0-0.7 0.4-0.2 0.7 1.1 1.9-0.2-0.1 1.5 0.5 0.1-0.2 1.1 0.5 0.2 1.5-0.5 0.8-0.5 0-0.8 0.8 0.1 1-0.5-1.1-0.8 0.4-0.9 0.8-0.4 0.1-1.5 1.3 0 1.4-1.2 2.5-0.4 0.1-0.4 2.4 0.1-0.3-0.6-0.1-2.5 1.2-0.9 0.6 0.1 0.1-1-0.5 0-0.9-0.7 0.4-0.5 0.5 0.4 0.4-0.2 0.7 0.2 0.6-0.6 1.5 0.2 1.6-0.3 0 1 0.4 0.4 1.1 0.6 0.1 0.7 1 0.3 0.8-0.2-0.4 1 1.6 0 0.4-0.8 0.9 0.1 0.5-0.5 0.3-0.9-0.2-0.3 0-1.6 2.1 0.1 0.9-0.6 0.8-0.3 1.2 0.5 0.4-0.6 0.9-0.2 0.7 0.7 0.1 0.7 0.8-0.2 0.5-0.5 1.4 0.1-0.1-1.6 1.4 0.1 0 1.2 0.9 0.2 0.3 0.5 1.1-0.5-0.3-0.6 0.1-1.9-0.6 0.2-0.2-0.6 1.1-0.9-0.2-1.5-0.7 0 0-0.7-0.8-1 0-0.9 1.1-1-0.2-2-0.8-0.1-0.3-0.7-0.6-0.4 0.3-0.9-0.1-0.5-1-0.3-0.2-1.1 1.3-0.4 0-1 0.3-1.3 0.4-0.7 0.9 0.6 0.6 0.2 0 0.7 0.4 0.8 0.6 0.2 0.9-0.5 1.2 0.5 0.4 1 1 0.3 0.3-1.7 0.6-0.1 0.6 0.5 0.1 0.7 1.2-0.7 0 1.9 0.6 0.3 0.7 0.8 1.4-0.5 0.9 0 0.6-0.5 1.6 0 0.5 0.8 0.8-1.2 0.7-0.1 0.5 0.5 0.9 0.4 0 1.4 0.5-0.5-0.2-1.2 0.4-0.3 1.5-0.2 1.5 0.2 0.1 0.9 1.5 0.1-0.2-0.5 1.1-0.3 0.3 1.5 1-0.1 0.3-0.9 0.6-0.4 0-0.7-1.6-0.2 0.4-2.2-1.4 0.1-0.1-1.3 0.7-0.1 0.7-0.5-0.2-0.4-0.7 0.2 0.1-0.7 0.6-0.2-0.1-0.7-0.8-0.2-0.2-1.9 2.8-0.4 0.5-1.4 0.8-0.4 1.2-0.2-0.1-0.3 0-1.6 1.3 0 0-1.6 1.2-0.1 0.3 0.8 0.1 1.3 0.6-0.2 0.4-0.7 0.2-1 0.7 0 0.2 1 0.8 0.4 0.3 1 0.9 0.3 0.1-0.9 0.8-1.5 0.1-1.3 0.7 0.2 0.8-0.3 0.4-0.4 0.4-1-0.7-0.9-1-0.2 0.1-1.5 0.9 0 0.3 0.8 0.9 0.3 0.2-0.6 1.6-0.5 0.9 0.2 0.7-0.8 0.5 0-0.1-0.8 0.2-1.7 0-1.7 1.1-0.2 0-1.6 0.6-0.5-0.5-0.5-1.1-0.2 0.8-1.4 0.3-1.1 1.3-0.1 0.2 0.8 0.9 0.1 0.3-0.8 0.6 0.4 0.2 0.8 1.8 0 0.2-0.6-0.7-1 0.9-0.4 0.6 0 0.6-1.6 0.7-1.1 1 0.2-0.4-1.3 0.5 0 0.6-1.1 0.2-1.5 0.3-0.8 2.5-1.1 0.4-0.6 0.6 0.9 0.4-0.7 0.3 0.7 0.2 1 1.1 0.2 0.2 0.6-0.5 0.5 0 0.9-0.9 0.7-0.1 0.5 1.5 0.3 1-0.3 0 0.9 1 0.8 0.9-0.2 0.7-0.6-0.2-0.7 0.4-0.2 1.1 0.6z", "18": "M282.7 1038.4l-0.1 0.8-0.9 0 0-0.5 1-0.3z m0 0l1 0.3 0 0.4-1 0.1 0-0.8z m-0.7-0.4l0.3 0.5-1.4 0.5 0-0.3 1.1-0.7z m-2.2-10.8l0.5 0.7 0.2 0.7-0.8-0.1 0.1-1.3z m-3.1-3.3l0.5 0.1 0.5 1-0.8-0.1-0.2-1z m-0.6-1.5l0.4 0.3 0.2 0.8-0.5 0.2-0.1-1.3z m-26.5-79.4l0.6 0.3 0.3 0.7 0.4 0.1 0.2 0.3 0.1 0.2 0.2 0.4 0 0.1 0.2 0.2 0 0.3 0.5 0.5-0.2 0.2 0.2 0.3 0.2 0 0.2 0.2 0.4 0.7 0.7 0.5 0.3 0.3 0.1-0.1 0.4-0.1 0.7 0.1 0.1 0.1 0.2 0.1 0.2 0.3 0 0.4 0.7 1 0.4 0 0.6-0.4 0.3 0.5 0.2 0.2 0.3 0.5 0.1 0.2 1.5-0.6 1.1 0.2 0.2 1.5 0.9 1-0.1 0.6 0.7 0.5 0.2 0.5 0.9 0.5 1.9 0.4 0.6-0.1 0.9 0.3 0.8 0 0.2-0.2 0.8-0.1 1.5-1 0.6 0 0.6-0.3 0 4.2 0.6 0.2 0.5-0.4 1.5-0.3 0.7 0.5 0 1.1 0.5 0.7 0.9 0.1 1-0.2 0.3 0.6 0.6 0.3 0.3 1.1 0.9 0.5 0.7-0.3 0.5 0.1 1.1-0.5 0.5 1-0.5 0.5 0 0.8 0.2 0.7 0.5 0.2 0.4 0.9-0.5 0.3-1.4 0.1-0.3 1-1.2 0.5-0.3-0.4-1 0.9-0.2-0.6-0.7-0.4-1.6 1 0.6 1.4-0.3 0.2 0.4 0.8-0.2 1.2 0.6-0.4 0.7-0.1 1.5 1 0.4-0.4 1 0.3 1 0.7 0.6-0.2 0 0.7 1.3 1.2 2.1 0.7 0 0.5 1-0.2 0.1 1.1-0.9 2-2.3 1.1-0.1 1.1 0.3 0.7 0.4-0.7 1.4-0.1 0.5 0.4 2-0.2 0.8 0 0.7 0.4 2.5-1.6 1 0.8-0.1 0.8-0.5 0.2-0.7 0.7 0.3 0.9 1.5 0.8-0.2 0.6 0.4 0.3-0.4 0.7 0.1 0.6 0.5 0 0.2 0.8-1.6-0.3-0.7 0.5-0.4 0.6 0 0.7-0.6 0.7-0.3 1.4 1.1 0.6 0.5 0.1 1.1 0.7 1.4-0.1 0.4 0.4 1.1 0.3 1 1.3-0.3 0.3 0.8 0.6 1 0 0.3 1-0.2 0.7-0.6 1.5-0.7 1.2 0.5 0.3 0.1 1.2-2.3 0.1 0 0.4 0.4 0.9 0.5 0.2-0.2 1.6 0.2 0.3-0.4 1.3-0.1 1.8-0.3 0.9 0.5 0.7-0.2 0.2 0.8 1-0.4 0.7-0.3 1.5 0.4 0.4 1.1 0.1 0 0.5 0.7 0.4 0.3 0.8 0.6 0.3 0.6-0.2 1.1 0.4 0.7-0.1 1.3-0.7 0.7-0.2 0.2-1 1-0.7 1.4-0.5 1.6-1.3 2.1 0.3-0.3 1.2 1.2 1.8 0.1 1 0.6 0 0.4 0.6-0.6 0.9-0.2 0.9 0.1 0.9-0.3 0.6-0.8-0.3-1.4 0.8 0.2 0.8 0.4 0.2 1.5 1.8-0.3 0.5 0.3 1 0.4 0.3-0.4 0.8-0.3-0.1-0.6 0.7-0.6 1-0.2 1 0.8 0.8-0.1 1 0.5 0.9-0.9 0.3 0.1 0.8-0.1 1.2-0.6 0.2 0 1-0.4 0.9-0.5 0.5-0.3 1.1 0 0.5 0.6 0.1 0.4-0.3 1.3 1.2 1.3 0.2 0.9-0.7 0.6-0.2 0.5 0.9 1 0.9 0 0.5 0.7 0.6 0.9 0.4-0.4 0.6 0.1 0.4-0.5 0.8-0.7-0.2-0.6 0.7-0.4 0.8 0.2 0.5-0.3 0.6 0 0.8-1.1 1.5-0.7 0.6 0 1-0.3 1.3 0.3 0.6-0.6 0.6 0.1 1.6-0.7 0.9-0.7 0.4-0.5 0.6-0.1 0.8-0.5 0.7-0.9 0.3-0.7 0.9 0.1 0.4 0.8 0.7 0.1 0.6 0.6 0.5 0 1.1 0.5-0.2 0.4 1 0.6 0.3 0.6 0.5 0.2 1.3-1 1.2-0.1 0.7-1.3 1.4-0.7 0 0.4 1 0.4 0.3 0.7 2 1 1 0 0.5 0.8 0.9 0.4 1.2-0.6 1.2-0.8 0.5-0.6-0.6-0.5 0.6 0.6 1.7-0.7 0.1-0.3 0.9-0.9 1.1-0.6 0 0.7 1.1-0.2 0.8-1 0-0.6 0.7-0.4 0.1-2.6-2-0.5-0.5-0.8-0.4-0.5-1.2-2.5-3-0.8-1.1-2.7-3.3-0.6-0.8-2.2-2.7-0.9-1.4-2-2.6-0.9-0.9-0.9-0.1-0.5-0.6-0.4-0.7-0.4-1.8-0.4-1.7-0.2-0.4-0.9-2.2-0.9-1.7-1.6-3.8-2.1-4.4-0.7-2.4-0.7-2.6-0.3-2.2-0.6-5.7-0.8-4.4-0.8-3 0.8 0.1 0.3 1 0.8 0.4-0.2 0.6-0.9 0.2 0.3 1.1 0.4-0.2 0.3-0.7 1.4 0.7 0.3 0.5 0.1 0.8 1 0.6-0.4 0.7 0.3 0.7 0.1 1.2-0.2 0.5 0 1.1 0.3 0.4 0.6 0.2 0 0.7-0.8 1.6 0 1-0.3 0.3-0.2 1.2 0.1 0.5 4.9-0.1-2.8-1.1 0-0.4 0.4-1.4-0.4-0.8-0.5-0.4 0.1-0.9 0.3-0.8-1.1-0.3 0.3-1.3-0.2-0.6-0.4-0.5-0.2-0.7 0.6-0.6 0-1-0.7-1.8-0.4-0.6-0.7-0.1 0.3 0.9-0.8-0.1-0.1-0.8-0.5-0.9-0.3-0.1-0.7-1.7 0-0.9-0.6-0.9-0.1-0.4 0.4-0.6-0.1-0.5-1.3-1.4-0.6-0.3 1.2 3.6-0.1 0.8 0.2 0.8-0.6 0.3-0.2-1-0.6-1.7-0.7-2.7-0.7-2-0.8-2.4-0.8-2.9-1.2-3-2.7-5.6-0.1-0.4-2.2-4.8-0.7-1.9-1.2-5.2-0.8-2.9-0.2-1.3-0.5-1.4-0.8-2-0.2 0-1-2.8-0.9-2.7-0.5-0.5 0.2-0.5-1.2-2.4-0.8-1.1-1.2-0.7-0.4 0.2-0.5-0.5 0-0.4-1.1-3.1-1.1-2.6-0.8-1.8-0.8-1-1.2-1-0.6-0.3-0.4-0.9-1.2-1.4-1-0.8-0.4 0.3-1.4-1.9-0.9-1.2 0.1-0.8-0.4-0.8-0.9-0.8 0.5-0.5 0.7 0.2 0.4-1.1-0.2-0.2-0.2-0.1-0.1-0.2 0.6-0.9-0.2-0.5 0.4-0.1 0.3 0.1 0.3 0.1 0.5-0.3 0.6-0.5 0.3 0 0.1-0.2 0.4 0.1 0.3-0.3-0.1-0.2-0.4-0.2-0.3 0-0.2 0-0.2 0.4-0.7-0.2-0.7-0.2-0.2 0.1-0.3 0.2 0 0.2-0.9 0.6-0.2 0.4-0.4 0-0.4-0.2-0.3 0.2-0.2-0.2-0.1-0.1-0.5 0.2-0.1 0.2 0.1 0.5 0 0.3 0 0.1 0 0.3 0 0.4 0.1 0.3 0.2 0.7-0.9 0.7-0.6-1.1-0.5-1.6-0.1-1.1-0.5-1.1-0.2-0.8-0.4-0.6-0.3-0.9-0.4 0.2-1.6-4-0.9-2.1-1-1.3-0.8-1.7-0.6-1.1-0.4-1.2-1.8-4.3-0.9-1.9-0.6-1.6 0.7 0.2 0.3-0.3 2-0.8 0.6 0.3 1.2-0.5 0.1 0.9-0.6 0.8 0.4 0.8 1.2-0.1 0.4 0.1 0.2 1-0.4-0.1 0.1 1 0.8 0.1 0.4-0.3 0.1-0.8 0.6-0.1 0.3 0.6 1.1 0.1 0.6 0.3-0.4 0.7 0.2 0.8 0.5 0.1 0.4-0.4 0.7 0.1-0.1 0.7 0.3 0.3 0.2 0.8 0.8 0.4 1.3-1.7 0.9 0.4 0.5 1.1-0.9-0.2-0.7 0.7 0.4 1.3 0.8 0 0 0.7 0.5 0.2 0.5 0.2 0.2 0.7 0 0.3 0.5 0 0.6-0.7 0.2-0.3 0.1-0.2 0.2 0 0.3-0.2 0.3 0.3 0.3-0.3 0.4 1.1-0.4 0.4-0.3 0.2-0.4 0.1-0.9-0.2 0.1 0.2-0.1 1.4 0.4 0.7 0.5 0.2 0.3 0.2 0.1 0.1 0.5 0.1 0.1 0.2-0.3 0.7-0.1 0.2 0.4 1 0.3 0.3-0.4 0.5 0.4-0.2 0.4 0.1 0.8-0.2z", "19": "M165.7 1082.3l0 0.1 0.1 0 0 0.1-0.1 0 0-0.1 0-0.1z m2.4-1.6l0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0-0.1 0-0.2 0-0.1 0-0.1 0-0.1 0-0.1 0 0-0.1-0.1 0-0.1 0-0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0 0.1 0.1 0 0 0.1 0.1 0 0.1 0 0.1 0 0.1 0 0-0.1 0.2 0 0 0.1 0-0.1 0.1 0 0.1 0 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1z m-27-59.6l0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0-0.1 0 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1z m46.5-1.9l0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0-0.1 0 0-0.1-0.1 0 0-0.1 0.1 0-0.1 0 0-0.1 0-0.1-0.1 0 0-0.1 0-0.1 0 0.1 0.1 0 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.2z m-45.2-1.1l0 0.1 0.1 0 0 0.1 0 0.1 0.1 0 0 0.1-0.1 0-0.1 0 0-0.1 0-0.1 0-0.1 0-0.1z m45.6-0.7l0 0.1 0 0.1 0 0.1 0 0.1 0.1 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1-0.1 0 0-0.1 0-0.1 0-0.1 0.1 0z m-34.8-14.6l0.1 0 0 0.1 0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0-0.1 0 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0.1 0z m-16.2-8.2l0 0.1-0.1 0 0-0.1 0.1 0z m51.6-0.3l0 0.1-0.1 0 0 0.1 0.1 0 0-0.1 0 0.1 0.1 0 0.1 0 0.1 0 0.1 0 0-0.1 0 0.1 0.1 0 0.1 0 0.1 0 0.1 0 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0-0.1 0 0 0.1-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0 0-0.1-0.1 0 0-0.1-0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0.1 0 0 0.1 0-0.1 0 0.1 0.1 0 0-0.1 0 0.1 0-0.1 0.1 0 0-0.1 0.1 0z m-51.5 0.1l0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.2 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0.1 0 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0z m4.1-4.4l-0.1 0 0 0.1 0 0.1 0 0.1 0.1 0 0 0.1-0.1 0-0.1 0-0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.2 0z m1.2-0.2l-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0-0.1 0 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0-0.1 0.1 0 0.1 0z m13.8-6.4l0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1-0.1 0 0.1 0 0 0.1-0.1 0 0-0.1-0.1 0 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0 0-0.1 0.1 0 0.1 0 0-0.1 0.1 0z m-21.4-2.7l0.1 0 0 0.1-0.1 0 0 0.1 0-0.1 0-0.1z m23.4-1.6l0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0.1 0-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1 0 0.1 0 0.1-0.1 0 0-0.2 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1-0.1 0 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0.1 0z m7.2-8.3l0.1 0 0 0.1 0.1 0 0 0.1 0 0.1 0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0.1 0 0 0.1 0 0.1-0.1 0-0.1 0 0-0.1 0-0.1 0-0.1-0.1 0 0-0.1 0-0.1 0-0.1 0-0.1 0-0.1-0.1 0-0.1 0 0-0.1 0-0.1 0.1 0z m-27.8-3.6l0.1 0 0 0.1 0 0.1-0.1 0 0-0.1-0.1 0 0-0.1 0.1 0z m18-3.7l0 0.1 0.1 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0.1-0.1 0 0 0.1-0.1 0 0 0.1 0 0.1-0.1 0-0.1 0 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0.1 0 0-0.1 0-0.1 0-0.1z", "20": "M500.3 522.8l-0.4 0.1-0.7 0.8-0.7 0.1-0.2 0.6-1.6-0.1-0.7 0.4-0.9 0.3-0.3 0.6 0.5 0.7-0.7 0.5-0.4 0.7-0.8 0.1-0.7 0.5-1.3-0.2-0.3 0.6 0.2 0.6-1 0.4-1-0.1-0.8-0.9-0.4 0-2.1 0.4-0.7-0.4-0.7 0.3-1.7-0.2-1.5-0.5-0.8 0.5-1.1-0.9 0.2-0.8-1.1 0.6-0.1 0.5-1.2 0.2-0.6-0.1-1.3 0.2-1.1-0.1-0.4-0.9-1.2-0.7-1.7 0.3-1.1-0.7-0.8 1.1-1.1 0.3-0.3 0.4-0.7 0.1-0.7 0.5-1.3-0.2-1.6-1-0.2-0.7-0.6-0.1-0.2-0.9-0.5-0.1-0.1-0.7-0.6-0.7-1.1 0.7-0.8 0.2-0.2 0.7 0.5 0.4-0.6 0.7 0.4 0.7 0.5 0 0.6 1.2-0.1 0.9 0.2 0.4 0.8 0.4 0.1 0.7 0.5 0.7-0.4 1-0.9 0.4-0.2 0.8-1 0-0.4 2.3-1.1 0.4 0.3 1.3 0.8 0 0.1 1.6 0.4 0.6 0.5 0.1 0.6-0.4 0.2-1.1 1.3 0.3 0.5-0.3 0.8-1.2 0.6 0 0.3 0.5 1.4 0.1 0.4 1 0.6 0.4 1.8-0.3 0.8-0.6 0.5 0.1 0.6 1 0.5 0.3 0 1.2 0.7 0.7 0 0.8 1 0.5 0.8 0.1-0.3 0.6 0.3 0.3 0.9 0.2 0.3-0.5 1.4-0.2 0.2 1.3 0.3 0.3 0.8-0.3 0.8 1.2 0.9 0.3 0.1 1.4-0.7 0.6-0.9 1.5-0.2 2.4 0.5 0.1 0 0.7-0.6 0.4-0.2 0.7-0.4 0.3-1.9-0.4-1.1 1.3-0.9 0.1-0.8-0.3-0.3 0.2-1.1 0.1-0.7 1.4 0.7 1.1 0.1 2-0.9 0.3-0.4 0.6-1 0.7-0.4 0.7-1 0.4-1.3 0.1-0.9 0.3 0 0.8-0.2 0.6 0.5 1.3-0.1 0.5 0.4 0.7-1.3 1.5 0.6 1.9-0.6 1.1-0.4-0.8-0.4-0.3-0.3 0.8-0.6 0.3-0.7-0.1-1.2 1.5-0.1 0.8 0.3 0.4-0.3 0.5-0.5-0.1-0.1 0.8-0.4 0.3-1.6-0.6-0.2 0.7-1.4-0.2-0.8 0.7-0.4 1-1.2-0.1-1 0.8-0.1 0.9-0.9 0.1-0.3-2.2-1.9-0.7-0.3 0.3 0.1 1-0.5 0.3-0.8-0.7-0.6 0.2-0.2 0.8-1.1 0.8-1-0.4-0.1-0.7-0.7-0.3-0.8 1.2-1.3 0.6-0.1 0.3-0.2 1.8 0.5 1.5-0.2 0.5 0.2 1.3-0.6 0.6-0.4 1.2-1.3 0.1-1 0.5-0.1 0.6 0.3 0.6-0.4 0.5 0.2 0.7-0.1 1.2-1 0-0.5 0.6 0.6 0.2 0.5 0.6-0.2 1.2-0.7 0.5-0.5-0.4 0.1-0.9-0.5-1.1-1.2-0.3-0.6 0.7-0.2 1.3-0.5 0.2-0.3 1 0 0.8-0.6 1.4-0.6 1 0.1 0.7-0.4 0.7 0 0.8 0.5 0.4 0 0.7-0.3 0.4 0.2 0.6-0.2 0.9-0.7 1.5 0 0.6-1 0.3-0.7-0.6-0.7 0-0.5 1-0.1 1.3-0.5 0.8 0.4 1.1 0.1 0.9-0.5 0.5 0.1 0.7 0.3 0.5-0.2 0.6 0.6 0.6-0.3 1.6 0.3 0.9-0.5 0.9-0.7 0.7 0.1 0.5-0.5 1.5-1 1.5-1.3 0.5-0.8-0.2-0.4-0.7-0.7 0 0.1-0.5-0.9-0.5-0.6-0.7-1.5-0.2-1-0.3-0.2 1.1-0.3 0.1-1.1-0.4-0.4-1 0.8-1.1-0.4-1-0.9-0.9-0.1-1.1-1.1-0.7-0.6-1.3-0.9 0-1.2-1.7-1.3 0-0.6-0.5-0.6 0-1.5 1.1-0.8-0.2-0.3 0.6-0.6 0.3-1 1.1-1.3 0-1.1 0.8-0.7-0.8-1.6 0.1-0.4 1-0.8 0.1-1.2-0.3-1.1-0.6-0.2-0.4-0.9-0.9-2-0.7-0.7 0.4-0.6 0-0.3 0.4-1 0.1-0.2 0.7-1.4 0.1-1.2 0.4-0.5-0.1-0.8 0.1 0.1-0.8-1.2-0.9-0.2-0.8 0.5-0.5-0.8-1.8-1.1-0.4-0.6 0.1-1-0.3-0.5 0.6-3.8-0.7-0.9-0.9-0.8 0.1-0.5 0.6-0.1 0.7 0.4 0.3-0.4 0.8-2.4-0.4-0.2 0.8-0.5 0.4-0.9 0.4 0.1 0.3-2.5 0.2-0.7 0.1-0.5-0.6-0.7 0-1.2 0.9-0.9 0 0 1.1 0.4 1.5 0.4 0.1-0.2 1.2-1.2-0.5-0.3 0.6-1.2-0.4-0.2 0.2-2.1 0-0.4 0.8-0.4-0.8-0.5-0.1-0.2 0.7-0.5 0.3-1.4-0.6-0.9 0.1-0.7-0.2-0.6 0.3-0.5-0.4-0.7 0-0.9-1-0.7-0.4-1-0.1-1 0.8-1.4 0.1-0.6-2.2-0.3-0.5 0.4-0.9-0.7-0.3-1.1-0.2 0.2 0.7-0.5 0.7-0.9-0.5-0.6 0.6-1.6-0.7-0.1 0.8-1 0.2-0.8 0.5-1.2-0.2-0.3 0.2 0 0.9 0.2 0.5-0.3 0.6-3.6 2.2-0.7 0.1-0.8 0.6-0.7 0.1-0.6 0.5-1.4 0.1-0.1 0.5-1.3 0.3-1.2-0.4-1.6-0.7-0.6-0.1-0.2 0.7-1.6 0.3-0.3 0.6-1.1 0.3-0.1-0.7-1.1 0.2-0.3-0.6-0.6-0.2-1.5 0.2 0 0.9-1.3-0.3-0.5-0.3-2.1 0.1-0.2-1.4-0.4-0.8 0-0.7-1.1-0.6 0.1-0.6-0.7-1 0.1-0.9 0.7-0.1 0.5-0.4 1.6 0 0.8 0.5 1.3 0.4 0.8 0 0.6-0.4-0.6-0.7-0.6-0.1 0-0.9-0.5-3-0.5-1.1-1.6-1.8-0.7-0.3-0.1-0.5-0.8 0.3-1.6 0.2-2.2-0.2-0.6 0.2-1.5-0.1 0.4 0.9-0.7 0.2-0.3 0.5-1.2-0.1-0.1 0.7-0.4 0.2-0.8-0.4 0.1-0.6-1.4 0.3-0.9-0.4-0.9 0.2-0.9-0.1-0.3 0.4-2.1 1.1-3.6 2.9-1.4-0.5-0.6 0.8-1.3-0.1-0.5 1.2 0.2 1-0.8 0.5 1 1.2-0.3 0.9-1.4 0.8-0.4 1.3-2.1 1.4-1.4 1.1-0.1 0.4 1.2 1.7-0.1 1.3-0.5 0-0.4 0.7 0 0.8-0.3 0.5-2.2-0.5-1 0.6-1.3-0.3-0.3 0.4-0.3 1.3-0.5 0.5-0.2 0.9-0.7 0.3-0.7-0.1-0.1 0.5-1.1 0.6-0.5-0.1-2.8 0.2-0.4-0.6-2.9 0.1-0.5-0.6-1.1-0.8 0.1-0.5-0.9-0.9 0.5-0.5 1.3 0.3-0.1-1.9-0.6-0.4 0.5-0.9-0.5-1.1-0.6-0.3-0.7-2.3-0.3-0.5-1.6 0.7-0.6-0.4-1.7-0.5-0.5-0.6-1.8 0.2-1-0.4-0.9 0.5-1 0.1-1.1-0.2-1.4 0.1-0.5-0.2-1.3 0-1.1 0.4-1.5 0-0.4-0.5-0.9 0.1-0.4 0.4-1.1 0.3-0.8-0.5-1.9-0.3-2.9 0.3-0.8-0.6-0.2 0.3-1.8 0 0-0.7-1.6 0.3-0.8-0.4-0.4 0.2-1.1-0.6-2-0.8-0.8-0.7-0.5-1.7-1.1-1.8-1.4-0.3-0.2-0.3-1.1-0.6-1.8-0.5-0.8-0.7-1.3-0.1-1.4 0.8-0.8 0-2.6-0.5-1-0.4-1.4-0.7-2.3-0.4-0.1-0.7-0.8-0.2-0.4-1.1-0.9 0-0.4-0.4 0.2-1.4-0.3-0.3-0.2-1.1 0.3-0.6 0.2-2.4 0.3-0.8-0.4-0.9-0.7-0.8-0.7-0.4-0.7 0-0.3-0.6 0-1.2-0.3-0.6-1.6 0.4-0.4 0.7-1.1 1-1.5 0.3-0.3 1.1-3.1 0.4-1-0.7-0.9-0.4-0.1-0.5 0.4-0.6-1.8-0.6 0-0.6 0.8-0.7 0.4-0.6 0.9-0.3 0.2-1.5-0.5-0.1-0.7 0.3-0.2-1.3 0.2-1.1-0.3-0.2-0.1-1.7-0.3-0.2-1.3-0.1 0.1-1.7-0.6-0.7 0.3-1.6 0.2-0.4-0.1-0.7 0.8-0.1 0.6-0.4 0.5 0.7 0.2 0.8 2 0.4 0.2-0.8 1-0.6 0.4-0.6 1.2-0.6-0.4-1.2-0.9-0.6-1.1 0.1 0-1.1-0.7 0.1 0.1 0.8-1 0.1-0.6-0.5-0.6 1.2-0.6-0.4-0.1-1.4-0.8 0.2 0.2-1.6-1.4-0.3 0.1-1 0.7-0.3 0.6 0.1 1.5 0.9 0.9 0.3 0.1-0.6 1.2-0.8 0.2-0.6 0.5 0.1 0.5-0.6 0.3-1.1 0.7-0.4 0-0.4 0.7-0.5 0.6 0.3 1.1-0.1 1.3 0.3 0.6-0.3 0.1-1 0.4-0.8 0.2-1.4 1.2-2.1 0-0.8 0.9-0.3 0.5-1.6-0.6-2-0.4-0.4-1.1 0.2-0.6 0.7-0.6-0.4-1.4-2 1-0.6-0.5-0.8-0.2-1-0.8-0.5-0.1-0.7 0.8-0.3 0.5-0.8 1-0.8 1.4 0.3 0.4 0.4 0.8 0.3 1.5-0.1 0.8-0.5 0.4-0.6 0-0.5 2.1-0.5 0.6-0.7 1-0.7 0.5-0.7 1.6 0.3 1-0.7 0.2-0.7-1.1 0.4-0.8-0.3 0.9-0.5-0.7-1.1-1-0.1-0.7 0.5-0.7-0.1-0.6-0.8-0.9 0-0.7-0.5-0.6 0.4-0.5-1.3 0.3-0.6 0.1-0.9 0.5 0 0.4-0.7 0-1.4 0.9-0.4 0.5-1.2 1.5-0.2 0.4-0.6 1.4-0.8 0.8 0.2 0.3-0.7 0.7-0.2 0.4-0.7 0.7-0.1 0.2 0.4 1.7-0.8 0.6-0.7 0.6-1.2 0.7-0.6 1.1-0.2-0.5-1.5-0.5-0.3 0.5-0.7 0-0.9 0.5-0.5-0.2-0.9 0.2-0.3-0.4-1.2-0.6-0.1 0.2-1.7-0.4-0.8 0.4-1.7 0.9-1.8 0.7-0.5 0.3-1.1 0.6-0.4 0.1-0.6-0.4-0.4 0-1.1-0.5-0.4-0.2-1.1-0.7-0.4-0.4-1.3-0.9-0.7-0.7-1.5 0.9-0.7-0.4-1-0.7-0.6-0.7 0.3-1.3-0.3-1.5 0.2-0.6-0.3 0.1-0.6 0.9-0.8 0-1.9 0.6-0.7 0.4-0.9 1.5-1.6-1.5-1.5-0.7 0-0.5 0.4-0.7-0.3-1.4-1.2 0.4-0.5 0.7 0 0.3-1.1-0.3-1.2 1.4-0.5-0.2-1 0.4-0.7 0.7-0.6-0.1-0.6-1.3 0 0.5-1.5-0.3-0.6 0.8-0.4-0.2-1.6 0.4 0 0.3 1.2 1 2.1 0.6 0.7 0.3 0.8 0.9 0.5 1.5-0.3 0.7-1.4 1.2-0.3-0.3-1 0.1-0.7 0.9 0 0-0.7-0.3-0.8-0.5-0.2-0.9 0.3-2.3-0.2-0.7-0.2-0.2-0.4-0.7 0 0-1.5-1-1.8-0.1-1.5 0.3-1 0.7-0.3 0.3 0.3 0.1 1.1 1.2-0.1 0.4 0.4 0 1.1 1.2 0.2-0.1 0.6 2.3 0.2 1.1 0.5 1-1 0.6 0.3 0.9-0.4-0.1-2.9 0.8-0.8 0.9-0.2 0.2-0.6-0.5-0.8 0.1-0.6 0.5-0.3 0.9 0.7 3.8-0.4 1.3 0.2 0.1 0.6-1.1 0.7 0.1 0.9 0.5 0.7-0.4 1-0.3 1.1-0.9-1.7-0.2-0.9-0.6 0.6 0.7 1.3-0.7 0.5-0.2 0.9 1.7 0.7 0.5-0.6 1.6 0.3 1.2-0.5 0.6 0-0.3 1.1-2.5 1.1-0.4 0.1-0.6 0.6-0.5 0-0.5-1.3-1.5-0.4 0.3-1.3-1.6 0.4 0.9 1.4 0.8 0.4-0.2 0.5-1 0.1-0.9 1.2 0.2 1.1 0.7 1.4 0.4-0.5 0.7 0.2 0.6-0.1 1.3 0.4 1.6 0.2 0.4 0.3 3 0.6 1.1-0.2 1.8-0.8 0.5 0.2 1-0.3 1.1 1.3 1.6-0.5 0.7-1 2.1-1.3 1.5-0.1 0.7 0.3 1.1 1 0.1 0.5-0.4 1.8 0.5 0 0.1 1.4 0.2 0.6 0.7 0.3 0.4 1 0.9 0.1-0.1 1 0.6 0.5-0.7 1.2 0.2 0.5-0.1 1.4-0.2 0.3-1.4 0.9-1.1 0-0.6-0.5 0.1-1.1-0.8-0.3-0.2 0.6-1 1.1 0 0.7-0.7 0.2 0.1 0.6 0 1.5 0.9 1.4 1.1-0.1 0.5 0.5 0 1.5-0.2 1.2-1.1 0.3-1 3 1.2 0.2 0.3 0.9 0.8 0.3 0.6-0.2 0 1.4-1.7 0.3 0 1-0.6 1.4-0.8 0.1-0.1 0.6-1.2 0.4-0.6-1.1 0.1-0.7-0.6-0.6-0.9 0.6-0.2 0.7-2.3 0 0.1-0.7-1.4-0.5-0.6-0.7-0.7 1.7-1 0.9-0.2 2.2 1 0.4 0.6 0.7 1.1 0.6 0.9 0.7 0.2 0.8-0.1 0.7 0.6 0.6 1.1-0.2 1.2 0.2 1.3 1 0.3-0.5-0.3-1.2 0.8 0.1 0.3-0.4 0.2-1.4-1-0.5 0.2-1 0.8 0.1 1.1 0.8 0.1 0.9 0.6 0.1 0.8-0.6 1.7-0.9 0.9 0.4 1.4-0.8 0.4 0.1 0.6-0.7 0.9-0.4 0.2-1.6-0.7-0.9 0-1 1-0.2 1.2-0.7 0.6-0.9 1.9-0.6 0.2-0.2 1 0-0.2-0.9 0.3-0.5-0.2-1.4-0.4-0.3 0.1-1 1-1.2 0.1-0.3-0.4-1.4 0.2-0.4 0.7-0.1 0.1-0.8 0.5-0.6 0.7 0.8-0.4 1 0.3 0.6 0.1 1.3 0.6 0.4 0.8-0.2 1 0.5 0.4-0.8 1-0.5 1.2 0 2 1.5 0.4-0.6 1 0.3 0.4-0.4 1.1 0.6 0.4 0.5 0.1 0.8 0.4 0.6 1.1-0.2 0.8-0.5-0.5-0.8 0.2-0.4 1.5-1.1 0.1-0.8 0.8 0 1.3-0.3 0.5-0.5 0.3 1.3-0.5 0.7-0.4 1.4 0.9 0.8 0.6 0.4 0.3-0.3 0.9-0.1 0.5 0.3 0.7 1.5 0.4 0.2 0.9-0.2 1-0.5 0.5-0.1 1 0.4 0.5-2.2 0.6 0.1 0.4-0.5-0.9-0.8-0.1-0.4-1.4-1.5-0.5-1.5-0.5-0.6-0.3-1.2 0.4-0.3 0.1-0.8-0.3-0.7 0.3-1.1-0.3-0.2 0.3-1-0.2-0.7-0.4-0.4-0.7-1.4 1.1-0.6 0.7 0.1 0.3 0.8 0.5 0 0.4-0.8 0.6 0.5-0.1 1.8 0.9 0.8 0.6 0.2 1.1-0.5 1.1-1 0.3-1.1 0.6 0.1 0.5-1.4-0.2-1.1 0-1.8-0.8-1.5-0.1-0.8-0.5-0.4-0.9-0.1-0.7-0.6-0.3-1-0.6-0.2-0.8 0.6-0.6 0.1-0.6-0.3-0.9 0.2-0.5-0.1 0-0.7-1-1.3-0.5-0.8 1.2-0.6 2 0.1 1.1-0.4 0.7-0.9-1.2-0.6 0.4-0.8-1.8-1.7-0.2-0.6 0.1-1.5 0.4-0.9 0.7 0 1.8-0.5 0.5-0.3 0.5-0.8 3.2 0.7 1.3-0.4 0.5-0.7 1 0 0.4-1 0.9-0.1 0.8 0.3 1.4-0.4 0.8 0.6 0.6 0.8 1-0.5 0.6-0.1 1.3-0.9 0.1-2.5 0.9-0.2-0.3-1.2-0.9-0.7-0.6-0.2-0.5-0.8 0.6-0.5 0.3-0.8-0.4-1-0.7-0.2 0.4-1.2-0.4-0.7 0.6-1-1.9-0.8-0.8 0.4-0.7 1-1.4 0.9-0.1 1.6-0.7 0.1-0.2 0.7-1.3-0.1-1.3-0.8-1.3-0.2-0.5 0.6-0.8 0-0.5 0.9-1.1-0.1-1.1 0.2-0.2 0.7-0.9 0 0.1-0.7-1.3-0.9-1.7-0.3-2.4 0.5-0.2-0.8-0.9-0.4-0.9 0.2-1.1-0.1-1.5-1.3-0.4 0.2-0.8-0.6-0.5-1.6-0.8-0.4-0.2-1.1-0.7-1.4-0.6-0.8 0.1-0.8-0.5-1.1 0.2-1 0-1-0.5-0.6 0.4-0.9-1.2-0.8 0.2-0.9 0.7-0.4 0.8-0.1 0.1-0.5-0.2-0.8 0.2-1.2 0.7-1.1 0.6-0.5 0.6-1.1 0.4-0.3 1.2 0 0.3-1.1 1.2-0.3 1.3 0.5 0.7-0.1 1-0.7-0.1-0.8 1.2-0.1 0.8-1 0-0.5 0.7-1-0.3-0.7 1.4-1.1 0.5-1.4 1.8-0.4 1.9-1.2 0.3-0.9 0.7-0.6 1-0.4 1.1 0 0.4-0.3 0.6-1.4 0.5-0.3 1.2-0.2 1 0.3 1.5-1 1-0.5 1.4-1.5 0.3-1.2 1.7-0.9 0.7 0.3 0.5-0.2 1 0.1 0.3-0.5-0.4-1.1 1.6-0.3 1.6 0 1-1 1.6-0.5 1-1.1 1.5-1 0.8 0.3 1.1-0.5 0.4-1.1 1-0.4 1 0.1 0.5-0.1 0.4-0.7-0.1-1.1 0.7-0.5 1.3-0.2 0.3-0.5 0.1-0.8 0.4-0.5 1.3 0.1 1-0.5 0.8-1 1.9 0.5 0.9 0.4 0.4-0.3 0.1-1.9 0.7-0.5-0.5-0.8 0-0.7 0.8-0.5 0.9 0.4 1 0 0.1-0.4-0.6-0.9 1.7-0.4 0.4 0 1.2 0.6 0.3-0.2 0.1-0.9 0.5-0.6 2-0.3 0.7 0.1 0.8 1.6 1.4-0.1 0.6 1.1 0.5 0.3 1.9 0.4 1.7 1 1.3 0.1 0.6-0.8 1.3 0.3 0.7-0.9 1.3-0.3 0.1 0.7 0.7-0.4 0.7 1 1.7 0 1 1.5 0.9 0.8 1.3-0.3 1.5 0.6-0.4 1 0.4 0.3 1.2-0.8 0.6 0.4-0.5 1 0.6 0.8 0.1 0.6-0.8 0.7 0.5 0.7 0 0.9 1.2 0.6-0.1 0.4 1.1 0.8 0 0.7-0.5 0.9 0.7 0.6 0.8-0.4 1.2 0.5-0.3 1-1.3 0.5 0.3 1-0.4 0.6 1.4 0.3 0.3 1.5-1 0-0.7 1.1-0.7 0.1-0.3 1.1 0.5 0.3-0.7 0.7-0.8-0.1 0 0.7-0.5 0.6-1 0.2 1 0.7-0.1 0.7-1.4 0-0.5 0.7 0.7 0.4 0.2 0.7 1.1 1-0.7 0.3-1.3 1.4 0.2 0.4-0.3 1.3-0.9 1.6-0.7 0.9-0.6 0.4 0.3 0.6-0.1 0.9-0.9 0.2-0.5 1 0.8 0.4-0.1 1.2-0.7-0.1-0.1-0.6-0.8-0.4 0.1 1.2-0.7 0-0.8 1.4-1 0.5 0 0.4 0.5 0.7 1 0.4 0.7 1.3 0 1.1-0.2 0.8-0.3 0.3-2.2 0.5-0.7-0.1-1.2 0.5-0.9 1.1-1-0.3-0.5-0.6-0.8 0.9-1.2 0-0.7-0.3-1.5-0.3-1.1 1.1-0.8-0.4-0.6 1.1 0 0.9 0.4 1.1-0.9 0.3-0.3 0.7-0.8 0.3-0.5-0.3-0.4 0.9-0.1 1-1.3 1.4 1 0.4 0.2 0.7-0.8 1 1.3 0.5 0 0.6 0.6 0.6-0.2 0.6 0.6 0.9 0.7 0.2-0.3 1 0.6 0.2 0.5 0.6 0.9 0-0.1 0.6-0.6 0.4 0 0.8-1.2-0.1-0.7 0.9-1.2 0.4-0.3 0.4 0.2 1.4 0.3 0.7-0.4 1-0.7 0.4-0.6 0.8-0.9 0.6-0.2 0.4-1.5 1-0.5 0.7-1 0.4-0.2 0.6 0.1 0.8 0.7 0.2 0.8 1.2 0.5 1.3-0.2 0.7 0.3 0.9 0.8 1.1 0.6 1.4-0.4 0.7 0.4 1.3-0.5 2.4-1 0.4-0.2 0.7 0.7 0.4 0 0.8 0.8 0.3-0.1 0.8 0.2 0.5 1.8 1.4 0.6 0.2 0.9 1-1.2 1.5 0.5 1.1 0.7 0.5 0.8 0.8 0.7-0.1 0.2-0.4 0.8-0.4 0.2-1 0.9-0.5 0.3-1.1 0.8-1 0.5 0.1 0.4 0.6 0.9 0.6 0.9 0.1 0.9 1.5 0.6 0.3-0.2 0.5 1.3 0.8 0.5 1.1 1 0.4 0.7-0.2 0.2-0.5 0.7 0.5 0.3-0.3 0.7 1.3 0.3 1 0.7 0.1 0.2-0.9 0.6 0.2 0.4-0.5 0.6 0.1 0.8-0.6-0.1-1 1.1-0.7-0.1-1 0.9-0.7 1.2-1.4 0-0.6 0.4-1.7 0.3-0.4-0.2-0.7-1.3 0.2-0.5-0.7-0.6-0.1-0.4-0.9 0.4-0.5 0.4 0.6 0.6 0 0.8-0.5-0.7-0.4-0.2-1.3 0.2-0.4-1.1-1-0.3-0.9-0.4-0.3-0.4-1-0.6-0.1-0.6 0.5-0.5 0.7-1 0.1-0.8 0.5-0.9-0.3-0.1-1.3-0.3-0.9 0.6-0.6 0.5-1-0.3-2.4 0-1.1 0.6-0.7-0.6-1.8-2.3-1.2-1-0.3-0.5-1.6-0.9-0.6 0.2-0.9 0.2-1.5 0.2-0.4-0.1-1-0.7-1.1-0.8-0.3-0.1-2.2-0.8-1.7-0.3-1 0.2-1.1-0.5-0.5-0.6 0-0.5-0.6-0.5 0.2-0.6-0.4-1.2 0.8-0.8-0.4 0-0.6 1.3-0.2 0.7-0.7 0.6 0.7 0.7-0.1 0.2-1-0.1-1.3 0.9 0.7 0.7-0.2 0.1-0.9 0.8-1.5 1.1 0.3-0.1-0.9 0.9-0.4 1.1-0.1 0.3 0.7-1 0.9-0.4 0.6 1.8 0.4-0.2 0.7 1 0.3 1-0.3-0.2-1.7-0.4-0.5 1.7-0.4-0.2-0.6-0.8 0.5-0.6-0.7-0.8-0.6 0-1 1.1 0.6 1.1-0.3 2.2 1.2 0.1-0.6-0.4-0.9-0.6-0.5 0.2-0.5 1.4-0.3-0.2-0.7 0.6-0.7 1.3 0.1 0.6 0.3 0 0.8-0.9 0.5 0.7 0.9-0.2 0.9-0.9 0.9 0.9 0.7 0.4-0.5 0.6 0.1 0.4 0.7-0.1 0.9 0.2 0.9-0.9 0.1-0.3 0.6-1.4-0.5-0.1-0.5 1.2 0.1 0.4-1-0.9 0.1-0.5 0.4-0.9 0.1-1.3 1.3-0.1 0.8-0.7 0.8-0.7-0.2 0 0.9 0.7-0.1-0.3 0.9 1 1.4 0.4 0 0.6-1.9 0.3-0.3-0.5-0.9 1-1.2 1.5 0.6 0.9-0.6-0.1 1.4 0.6 0.7-0.9 0.5-0.2 0.6-1-0.4-0.5 0.9-0.8 0-0.2 0.7 0.5 0.6-0.5 1 0.4 1 0.8-0.7 0.8-1.1 1-0.4 0.5 0.2 0.5 0.6 0.6-0.6-0.2-0.6-0.8-0.4 0.5-1.2 0.9 0 0.1 1 0.4 0.5 1 0.3-1.1 1.5 0.4 0.5-0.5 1.1 0.6 0.3 0.7-0.6 0.2-0.8 0.7-0.7 0.2 0.6 0.9 0.5-0.3 0.7 0.5 0.6 0.3 0.6 1.6-0.2-0.4-1.1 0.6-0.2 0.4 0.9 1.4 0.4 0-1-0.4-0.5 0.8-0.2 0.4 0.8-0.2 0.4 0.7 0.4 0.2-0.5 0.7 0.1 0.4-0.8-0.4-0.9-0.6-0.5-0.2-0.8 0.5-1.1 0.6 0.7 1-0.4 0-1.6-0.9 0.5-0.9-0.8-0.6 0.6-0.5-0.5 0.2-1.2 1.1-1.1 1.8 0.3-0.4 0.6 0.5 1 0.1 0.9 0.5-0.1 0.2-0.9 1 0.5 0 0.6 1.7 0.3-0.6 0.5 0.3 0.8-0.4 0.7-0.7-0.2-0.2 0.7-0.7 0.7-0.1 0.8 0.3 1.1 0.6 0.2 0.4-0.7 0.5 0.3 0.1 0.7 1.1-0.9-0.3 1.3 1 0.5 0.4-0.6 0.5-0.1-0.1-0.9 0.5-0.5 0.8-1.2 0.6-0.2 0.2 0.6 0.8 0.5 0.7 0.1 0.5 0.4 1.1 0.2 0.4-0.3 1 0.1 1.1-0.4 1 0.7 2 1 1 0-0.5-0.7 0.7-1.5 0-0.7-0.3-1 0.3-0.6-0.6-0.7 1-0.6 0.7 0.2 0.9-0.1 1-0.6 1.6-0.2-0.1-0.7 0.7-0.5-0.1-0.8 0.3-0.7 1.7 0 0.5-0.5 1.5 0.6 0.3-0.6 0.8-0.4 0-0.4 0.9-0.3 0.1-0.8 0.8 0.1 0.6-0.3 0.5 0.2 0.4-0.9 0.6 0.2 1.2 1.2 0.1 0.8-0.3 0.5 0.3 0.9-0.1 0.9-0.2 0.5 0.3 0.6 1 0.1 0.5 1.1 0.7 0.5 0.7-0.2 0.1 0.8 0.8 1.8-0.3 0.3-1 0.1-1.3 0.8 0 0.4-0.9 0.9-0.6 1.2-0.8 0.4-0.5 1.3 0.8 0.3 0.8 0.7 0.5 0 1.4-0.8 0.4-1.2 0.5-0.6 1 0 0.6-0.4 0.6 0.5 0.4 0.9 1.1-0.6-0.5-1.1 0.7-0.4 0.3 0.7 0.9 0.6 1.2-0.8 0.9 0.5-0.6-1.3 0.2-1.7 1 1.2-0.5 0.9 1.1 0.2 0.4 0.6 0.9-0.2-0.2 1.1 1.9-0.7 0.2 0.4 1.4 0 0-0.9-1-0.5-0.9-0.2-0.1-0.9 1.2-0.5 1 0.2 0.6-0.4 0.7 0.6 0.4-0.4 0.4-1-0.2-0.9 1.1 0.1 1.2 0.9-0.6 0.9-0.7 0.7 0.2 0.8-0.3 0.5 0.3 0.6-1.1 0.8-0.4 0.8 0.8 1-1.1 1.1-0.7 0 0.1 1.1 0.7 0.3 1.2 0 1.1-0.4 0.3-0.3 1.3-0.6 0.6 1.2 1.6 0 0.9-0.6 1.7 0.1 0.4 1.1 1.3 1.1 0.5-0.8 0.5-0.6 0.2-1 1.5 0.7-0.2-1.2 0.4-0.2-0.3-0.7 0.6-0.4 0.9-1.3 0.5-1.1-0.1-0.7-0.4-0.7 0.4-0.4 0-0.9 0.6-0.5-0.3-0.4 2.1-0.3 0.7 0.2 0.6 0.9 0.8 0.7 1.3-0.3 0.3 0.7 0 0.7 1.6 0.8 0.4-0.3-0.1-1-0.5-0.4 0-0.7 0.5-0.4 0.9-0.1 0.3-0.6-0.6-0.2 0.1-0.6 0.7 0.1 1.1-0.4 0.7 0.5-0.2 0.6 0.8 0.1 0.5 0.4-0.9 0.7 0 0.5 0.8 0 0.5 0.7-1.2 1 0.9 0.8 0.9-0.7 1 0.4 0.2 0.8 0.8 0.2 0.3-0.6 2.6 1.6 1.3-0.3 0.6 0.5 0.9 0.1 1 0.8 0 1.5 0.3 0.8-0.4 0.6 0.1 0.8 0.9 0.4-0.1 0.5 1.2 1.1 0.1-0.4 1.4-0.4 2 1.1 0.6 0 0.6 0.5 0.4 0.6 0.7-0.4 1 0.4 0.4-0.3 1.2 0.1-0.4 1.3 1.1 0 0.4 0.4 0.1 1.9-0.5 0.5 0 0.6 1.4-0.3 0.8 0.6 0.2 1.4 0.4 0.6 0.7-0.4 0.5 0.2 0.5 0.6 1.7 0.2-0.2-1.5 0.3-0.8-0.4-1 0.7-0.8 0.4 0 0.5 0.6 0 0.4 1-0.2 0.3 0.3 1.1-0.1 0.4 1 1.5-0.4 0.5-0.4 1.7-0.5 0.9-0.5 1.1 0.9-0.2 1 0.4 0.3 0.9-0.2 1.3 0.2 0.1 1.7 0.9-0.1 0.2 1.7-1.9 0.5-1-0.6 0 1.6 0.7 0.5-0.5 0.9 0.1 1.9-0.4 0.4-0.2 1.1 0.4 0.6 1.4-0.1 0.1 0.9-0.1 1.1 0.1 1-0.5 0.9 0 1.2-0.8 0.5 0.4 2.1-0.5 0.4-0.1 0.7-1.1-0.2-0.6-0.6-0.4 0.9 0.2 0.4 1.3 1 0.2 0.6 0.6 0 1 0.3 0 1.1-0.5 0.5 0.2 0.7 1.9 0.4-0.1 0.9 0.3 0.5z", "21": "M426.8 620.2l0.6 0.8 0 0.4-0.6 0.4-0.6 1.2-1.2 1-1.1 0.4-0.3 0.4-0.9 0.3-0.5-0.2-0.4 0.7-1.2 0.5-0.6-0.1-0.7 2.7 0.4 1.8-0.1 0.7-0.7 0.8 0.5 0.6 0 0.8 0.7 1.6 2.6-0.1 0.5 1.5 0 1.6 0.2 0.9-0.4 1.1 0 0.9 0.4 0.7 0.2 1.3 0.5 0.5 0.1 0.7-2.1 0.6-1 0.8-0.2 0.8 0.6 1.1 0.7 0.1 1.1-0.5 0.2-0.4 0.7-0.1 1.5 0.3-0.4 0.5 0.3 0.9-0.4 0.4 0.1 0.8-0.3 2.6-0.3 0.6 0.3 0.4-0.4 0.8-0.2 0.7 0.6 0.6 0.5 1.9-2.6 0.7-1 1.3-0.6-0.2-1.3 0.2-1.3 0.7-1.2 0.3 0.5 1.1 0.5 0.4 0 0.5-0.6 0.2-0.3 0.9 0.3 0.5 1.1 0.5 0.6 0 0.2-0.6 2.5 0.8 0.6 0.5-0.2 0.9 0.4 0.7-0.5 2.3 0.4 0.8-0.4 0.5-0.4 1.3-0.6 0.2-1.1-0.3-0.2-0.4-0.7-0.3-0.7 0.6-0.6 0.2-0.1 0.8 1.4 0.6 0.6-0.4 0.9 0.4 0.3 0.9-0.8 0.4-0.5 1.1-0.9 0.6-1.2-0.2 0.1 0.8 0.6-0.1 1.2 0.1 1 0.5-0.3-0.8-0.5-0.3 0.6-0.6 1.4-0.1 0.9 0.7-0.2 1.3 1.1 0.7 0.4 0.6 1.8 0.7 1.1 1-0.4 2.4 0.2 0.6 2 0 1.5 0.9 0.1 0.6 0.6 0.3 1.2-0.2 0.5 0.3 0.2 0.8 0.4 0.4 0.9 0.2 0.4 0.7 0.1 1.2-0.9 0.8-1.1 0-1.6 0.6 0.7 1.1 0.2 0.5 1 0.6-0.1 0.4-2.5 1.7-0.6 0.8-1.7 0.1-0.5-0.1 0-1-0.7-0.5-1.6 0.8-0.5-0.2-0.6-1.5 0-0.9-0.4-0.8-0.5 0.1-0.9 0.8-0.6 1-1.2 0.3-0.3 0.4-0.9 2.1-0.9 0.7-1 0.2-0.4 1 0.3 0.8-0.2 0.5-1.2 0.7-0.7 0.7-0.1 0.6 0.3 0.9-0.4 0.5-0.1 0.8-0.9 0.7 0.2 0.6-0.9 1.5-0.2 1.7 0.3 0.6 0.7 0.6 1.5 1.8 0.4 1.2-0.1 0.5-0.9 0.5-0.7 0.1-0.9 1.1-0.6-0.1-0.5 0.6 1 1.1-0.8 0.6-1.5 0.2-0.4 0.7-0.8-0.1-0.3-0.6-1.7 0.7-0.9-0.9-1.2-0.7-0.5-0.9-0.4-0.2-0.3-0.5-2.7-0.7-0.5-0.4-0.8-1.3 1.1-0.2 0.4-0.8 0.1-2.8-0.3-1.3 0.1-1.7-0.3-0.8-1.2-0.1-0.7 0.4-0.5-0.3 0.2-0.6-0.1-1.6 0.4-0.7 1.2-0.7 1.3-1.2-0.7-1-0.1-0.8 0.8-2.1 0.6-0.5-0.1-1.4 0.2-0.5 0.3-1.9-0.9-1.4-0.1-0.7-1.1-1.2-1.1-0.3-1.7-1.3-0.4-1.1-0.8-0.4-0.6-0.7-1.2-0.2-1 0.7-1.2 0.3-1.3 0-0.6 0.4-0.5 0.9-0.2 1.2-0.3 0.2-0.9-0.3-0.6-0.6-0.2-0.8-0.9 0.2-0.1 0.9-1.5 0.7-0.4-0.7-0.6-0.6-0.9 0-1.5-1 0-0.3-1-0.1-0.9 0.3-0.3-0.9-1.7-0.8-0.6 0.1 0.4 1.1-0.3 0.7-0.1 1.2-0.8 0.6-0.2 0.9 0.3 0.7-1 0.3-0.7-0.4-0.9-1.2-1.3-0.4 0-0.6-1.4-0.1-0.4-0.5-1.1 0.2-0.9-0.8-0.5 0.4-0.8 0 0-0.4 0.8-0.6 0-0.4-0.5-1 0.2-1.2-0.9-0.5-0.9-0.1-0.9 0.4-1 0 0.1-1.5-0.2-1.2-0.4-1-1.3 0-0.8-0.8-0.7 0.2-0.9-0.2-0.7 0.5-0.5-0.7-2.8-0.8-0.6-0.4-0.6 0.3-2-0.4-1.1 1-0.6-0.8-1.6-0.3-1.1-0.4-0.4-0.6-0.1-1-1.6-0.1-0.9-1.1-0.5 2.3 1.5 0.4 0 0.9 0.7 0.3 0.3 0.9-0.3 0.9-0.5 0.8 0 0.7-0.8 0.4-0.2 0.4-1 0.1-0.6 0.9 0.6 0.4 0.8 1.8 0 1.2-0.5 0.4 0.1 2 0.4 0.6 0.1 0.8-0.5 0.6-0.8-0.2-0.8 0.9-0.9-0.2-1.3 1.4-0.2 1.6 0.6 0.7-0.2 1.1-0.3 0.9 0 1.3-1.2 0.4-0.7-0.6-1 0.1-0.6-0.4-0.8 0.6-0.3-0.3-0.1-0.8-0.6-0.3-0.6-0.8-0.9-0.3-0.3-0.5-0.9-0.7-0.8 0.3-0.5 0.5-1.7 0.6 0 0.7 1.3 0.2 0 0.8-0.5-0.2-0.6 0.5-0.8 2.1 0.3 0.5-0.1 0.7-0.5 0.8 0.3 0.7-0.1 1-0.4 0.1-0.5-0.7-0.5 0.2-0.2 1 0.1 0.7-1.2-0.4-0.2 1.2 0.3 0.3 0.1 1.4 1.7 0-0.2 1.2 1.4-0.1-0.4 1.4 0.5 0.2 0.9-0.1 0.2 0.9 0.4 0.6 0.9 0.3 0.6 0.6 0 0.8-1.2-0.3-2.4 0.8-0.5 1.4-0.7 1.4 0 0.5-0.6 0.8-1.2 0.1-0.6 0.5-0.1 1.2 0.4 0.8 0.2 1.2-0.7 1.3-0.5-0.1-1.9 1-0.4-0.3-0.2-0.7-1.4 0.3-0.4 1.6 0.6 0.4-0.1 0.6-0.8-0.3-0.2 0.6 0.4 0.8-0.8 0.3-1.1-0.2-0.1 0.5 1 0.3-0.2 1.1-0.9 0.8 0.2 1 0.9 0.2 0.5 0.9-0.6 0.6-1.1-0.6-0.4 0.2 0.2 0.7-0.7 0.6-0.9 0.2-1-0.8 0-0.9-1 0.3-1.5-0.3 0.1-0.5 0.9-0.7 0-0.9 0.5-0.5-0.2-0.6-1.1-0.2-0.2-1-0.3-0.7-0.4 0.7-0.6-0.9-0.4 0.6-2.5 1.1-0.3 0.8-0.2 1.5-0.6 1.1-0.5 0 0.4 1.3-1-0.2-0.7 1.1-0.6 1.6-0.6 0-0.9 0.4 0.7 1-0.2 0.6-1.8 0-0.2-0.8-0.6-0.4-0.3 0.8-0.9-0.1-0.2-0.8-1.3 0.1-0.3 1.1-0.8 1.4 1.1 0.2 0.5 0.5-0.6 0.5 0 1.6-1.1 0.2 0 1.7-0.2 1.7 0.1 0.8-0.5 0-0.7 0.8-0.9-0.2-1.6 0.5-0.2 0.6-0.9-0.3-0.3-0.8-0.9 0-0.1 1.5 1 0.2 0.7 0.9-0.4 1-0.4 0.4-0.8 0.3-0.7-0.2-0.1 1.3-0.8 1.5-0.1 0.9-0.9-0.3-0.3-1-0.8-0.4-0.2-1-0.7 0-0.2 1-0.4 0.7-0.6 0.2-0.1-1.3-0.3-0.8-1.2 0.1 0 1.6-1.3 0 0 1.6 0.1 0.3-1.2 0.2-0.8 0.4-0.5 1.4-2.8 0.4 0.2 1.9 0.8 0.2 0.1 0.7-0.6 0.2-0.1 0.7 0.7-0.2 0.2 0.4-0.7 0.5-0.7 0.1 0.1 1.3 1.4-0.1-0.4 2.2 1.6 0.2 0 0.7-0.6 0.4-0.3 0.9-1 0.1-0.3-1.5-1.1 0.3 0.2 0.5-1.5-0.1-0.1-0.9-1.5-0.2-1.5 0.2-0.4 0.3 0.2 1.2-0.5 0.5 0-1.4-0.9-0.4-0.5-0.5-0.7 0.1-0.8 1.2-0.5-0.8-1.6 0-0.6 0.5-0.9 0-1.4 0.5-0.7-0.8-0.6-0.3 0-1.9-1.2 0.7-0.1-0.7-0.6-0.5-0.6 0.1-0.3 1.7-1-0.3-0.4-1-1.2-0.5-0.9 0.5-0.6-0.2-0.4-0.8 0-0.7-0.6-0.2-0.9-0.6-0.4 0.7-0.3 1.3 0 1-1.3 0.4 0.2 1.1 1 0.3 0.1 0.5-0.3 0.9 0.6 0.4 0.3 0.7 0.8 0.1 0.2 2-1.1 1 0 0.9 0.8 1 0 0.7 0.7 0 0.2 1.5-1.1 0.9 0.2 0.6 0.6-0.2-0.1 1.9 0.3 0.6-1.1 0.5-0.3-0.5-0.9-0.2 0-1.2-1.4-0.1 0.1 1.6-1.4-0.1-0.5 0.5-0.8 0.2-0.1-0.7-0.7-0.7-0.9 0.2-0.4 0.6-1.2-0.5-0.8 0.3-0.9 0.6-2.1-0.1 0 1.6 0.2 0.3-0.3 0.9-0.5 0.5-0.9-0.1-0.4 0.8-1.6 0 0.4-1-0.8 0.2-1-0.3-0.1-0.7-1.1-0.6-0.4-0.4 0-1-1.6 0.3-1.5-0.2-0.6 0.6-0.7-0.2-0.4 0.2-0.5-0.4-0.4 0.5 0.9 0.7 0.5 0-0.1 1-0.6-0.1-1.2 0.9 0.1 2.5 0.3 0.6-2.4-0.1-0.1 0.4-2.5 0.4-1.4 1.2-1.3 0-0.1 1.5-0.8 0.4-0.4 0.9 1.1 0.8-1 0.5-0.8-0.1 0 0.8-0.8 0.5-1.5 0.5-0.5-0.2 0.2-1.1-0.5-0.1 0.1-1.5-1.9 0.2-0.7-1.1-0.4 0.2 0 0.7 0.3 1.1-1.1 0.2-0.4 0.5-0.9 0.2-0.3 0.7 0 0.8-0.3 0.3-1.8-0.9-0.9 0.8-1-0.5 0 0.9 0.3 0.4-0.8 0.3 0.2 0.8 0.7-0.9 0.4 0-0.2 1 0.9 0.9 0.6-0.1 0.1 1.8 0.8-0.1 0.1 0.5-0.6 0.8-0.2-0.8-0.3 0.1-0.4 1.2 0.3 0.5 0.5 1.7-0.6 0.4 0.2 0.5 0.9-0.7 0.6-0.3 0.4 0.7 1-0.2 0.1 0.8 2.1 0.4 0.8 0.8-0.2 0.5 0.3 0.8-0.5 0.2-0.2 1.4 0.2 1.1-0.3 0.9-0.8-0.6-1-0.3-1.1 0.7-1.1 1.2 0.6 0.8 0.8-0.5 1-0.3 0.9 0.4-0.1 0.9-0.5 0.8 0 0.6-0.5 1.1-1.5 1.8 0.3 0.9-1 0-0.6 0.6 0 0.4 1.2 0-0.7 1.2 0.3 0.6-0.4 0.8-0.5 0.4-0.7-0.3-0.2 0.5-1.1 0.6-0.6-0.5-1 0.3-0.3-0.5 0.1-0.7-0.7 0-0.3 0.7-0.4 0.3-1 0.1-0.3 0.5-0.9 0.4 0.3 0.8-0.3 0.8-1.2 0.4 0.9 0.6-1.5 0.8-1.4 0.2-0.4 0.6-0.9-0.2-0.9-0.7-0.2-0.5 0.2-0.6-0.1-0.9-0.5-0.4 0-0.5-0.4-1.1-1.3 0-1-0.3 0.3-0.7-0.8-0.9-0.9 1.3-0.2 0.8-0.4-0.1-1.2 0.6-0.3-0.3-1 0-0.2 0.5-0.8-0.1-0.4 0-0.5-0.2-0.4 0.1-0.9-0.7 0.3-0.5-0.4-1.6-0.8-1.8-0.6-0.3-0.5-1.3-0.3-0.4-1.3-0.6-1.3-0.5-0.1-0.8-0.5-0.7-0.1-1-0.2-1-0.9-0.7 0.3-0.5-0.6-2.9-0.4-1.6-0.7-1.7-0.4-1.8-0.4-0.7 0.1-0.5-0.3-1.1-0.7-0.1 0.3-0.8-0.3-0.4-0.4-1.7-0.8-1.5-0.2-0.9-0.5-1 0.8-0.7 0.4 1.1 0.3 0-0.4-1.3-0.7-0.6-0.2-0.6 0.8-0.1 0.4-0.7-0.6-0.7-0.1-1.6-0.9-1.5 0-1.3 0.4-1.5-0.7-0.3-0.1-1.9 0.2-0.8-0.7-0.4 0.3-0.5-0.2-1.1 0.4-0.3 0-1-0.6-0.3 0.3-0.6-0.3-0.5-0.6 0.2 0-1.1 0.7 0.5 0.3-0.8-0.1-1.7-0.4-0.6-0.9-3.1-0.8-2-0.6-0.1-0.2-0.8 0.8-0.5 0.4 0.6 0.2-1.1-0.7-0.5 0-0.8-0.4-1.1-1.1-0.1-0.3-0.6 0.6-0.3 0-1.6 0.3-0.3-0.4-1.5-1.4-1.4 0-0.8 0.7 0 0-0.8-0.6-0.4-0.6-1.2 0.2-0.6-0.4-0.4-0.2-0.9 0.7-0.7-0.2-1-0.6-1.8-0.5-0.8-0.5-2-0.4-0.9-0.6-0.4 0-1.1-0.8-0.4 0-0.9 0.4-0.4-0.7-0.4-0.4-1.2 0.7-0.3-1.4-0.9 0.3-0.7-0.2-0.8-0.4-0.3-0.3-0.9 0.4-0.2 0.2-0.8-0.3-1.2-0.8-0.9-0.4-0.2-0.2-2.2 0.8 0.2 0.4 1.2 0.9-0.1 2 0.7 0.7-0.1-0.6-0.7 0.2-0.6-1.1 0.1-0.9-0.7-0.6 0.2-0.7-0.8-0.6-1.1-0.6-0.6-0.8-0.2 0.4-0.7 0-0.6-0.5-0.3-0.1-1.5-0.4-0.6 0.5-2.4 0.6-0.4-0.3-0.9-0.8-1.9-0.4-0.9-0.4-0.1-0.6-2 0.3-0.9 0.1-1.3-0.1-1.2 0.5-0.4 0.8-0.1 0.5 0.4 1-1.2 0.4 0.9 0.5 0.4 0.4-0.7-0.2-1.9-1.2 0.6-0.5-0.2-0.7-1.2 0-0.6 0.5-0.4 1.2 0.1 0.2-0.4-0.8-0.9 0.6-1 0.5 0.4 1-0.3 0.6-0.4-0.6-1 0.1-0.7-0.4-1.1-1 0-0.3 1.2-1.2 1-1.9-0.2-0.5 1.8-0.1 0.9-0.7-0.2-0.8-1.2 0.4-0.5-0.1-0.7 1-1.2-0.5-0.3 0.1-1.9-0.3-1-1-1-0.2-0.4 0.4-0.6-0.5-0.6-0.2-1 0.3-1.1 0-1.8 0.5-1-1.4-1.7 0.1-1.4-0.5-1.4 0.3-0.7 0.9-0.6-1.3-0.9-0.5-0.5-0.4-1.6 0-0.6 0.5-0.3-0.1-1-0.5-0.5-0.2-1.5 0.1-0.8-0.8-1.6 0-1.8-0.3-0.6-0.9-0.6 0-1 0.6 0.2 0.4-0.5 0-0.9-0.1-1.1-0.4-0.5 0.8-0.8 0.9-0.7 0.2-0.4-0.2-2-0.3-1 0.6-0.5 0.4-1.2 0-0.7 1.7 0.2 0.5-0.7 0.9-0.3 0.2-1 0.6-0.8 0.7-0.1 0.4-0.6 1.5 0.1 1.5 0.4 0.2 1.2 0.3 0.1 0 0.2 0 0.3 0 0.2-0.4 1 0.4 0.6 0.6-0.2 0.1-0.4 0-0.1 0.4-0.1 0 0.2-0.3 0.7 1.2 1.4 0.5 0.1 0-1 1 0.1 0.6 0.2 0.2 0.1 0 0.1 0.4 0.2 0.1 0 0.3-0.3 0.3 0.3 0.9 0.4 0.2 0.3 0.3 0.2 0.5-0.3-0.1-0.6 0.6-0.5 0.1-0.6 0-0.5 0.7-0.3 0.9 0.1 0.1-0.4 0.9-0.6 0-1.4 0.6-0.5 2.2 0.4 1.8-0.2-0.3-2 0.2-0.8 0.4-0.1-0.4-1.5 0-0.6-0.4-1.6-0.7 0.3 0.2-0.9 0.8-0.6 0.9-1.9 0.9-1-0.1-0.7 1-1-0.7-0.1 0.2-0.7-0.2-0.7-1.4-0.5-0.4-1-0.9-0.7 0.1-0.3 1.2-0.5 0.6-1 0-0.8 0.9-0.1 0.5 1.1-0.4 0.4 0.4 0.8 1.1-0.7 0.5 0.1 0.6 0.8 1 0.1 1 0.7 0.5 1.7 1 0.6 1.2-0.5 1.3 0.1 0.3 0.3 1.4-1.3 0.6 0 1.4-0.8 0-1.2-0.2-0.7-0.5 0.1-0.1-0.8 0.7-0.3 0.7 0.3 0.4-1 0.4-0.3 1.1 0.3 1-0.7-0.3-1 0-1.5 0.2-1.1-0.5-0.3 0-1.4-0.5-1-0.7-0.7 0.3-1.8-2-0.4-1-0.1-0.3-1-0.8 0.1-0.7-0.7-0.6 0-0.2-0.6 0.1-0.9-0.3-0.8-0.9-0.4-0.5 0.5-1.3-0.8-0.9 0.1-0.6-1.3-0.8 0 0-0.5 0.6-0.4 0.4 0.8 0.6 0.2 0 0.7 1.5-0.7 1.1 0.1 0.8 0.4 0.4-0.5-0.2-0.6 1.3 0.1 0.6-0.6 0.9 0.4-0.1-1.9 0.5-0.7-0.1-0.9 0.9-0.1 1.1 0.2 1.5-0.8 0.5-0.4 0.3-1.8-0.1-1.1 0.2-0.6 0.7-0.2 1-0.6 1.4-0.5 0.2-1 0.4-1 0.4 0.9 1.4 0.3 0.6-0.5 0.7 0.3 0.9-0.5 1.2 0.3 1.4-0.2 0.3-0.4 1.2-0.1 0.7-0.6 0.3-1.6-0.7-0.2-0.1-0.8-0.7 0.3-0.7 0.8-0.5 0-0.6-0.5-1.1 0.7-0.7-1.1-1.7 0.2-2.3-0.1-0.8 0.3-0.7-0.1-0.7 0.4-0.7 0-0.3 0.7-1.2 0.5-0.1-0.4-2.6 0.9-0.4-0.6-0.5-1.5-0.4-1.7-0.6-0.1-0.6-0.9 0.4-0.3 1-0.2 0.5 0.2 0.6-0.3 0.8-0.1 0.5-0.8-0.1-1.2-0.2-0.4-1.5-1.2-0.5-0.7 0.4-0.4-0.6-1.4-0.5-0.4 1-0.6 1.3 0 0.7-0.6 0.8-0.1 1.9-1.1 1.5-0.7 0.8-0.6 3.4-1.2 0.9 0.4 1 0.7 3.1-0.4 0.3-1.1 1.5-0.3 1.1-1 0.4-0.7 1.6-0.4 0.3 0.6 0 1.2 0.3 0.6 0.7 0 0.7 0.4 0.7 0.8 0.4 0.9-0.3 0.8-0.2 2.4-0.3 0.6 0.2 1.1 0.3 0.3-0.2 1.4 0.4 0.4 0.9 0 0.4 1.1 0.8 0.2 0.1 0.7 2.3 0.4 1.4 0.7 1 0.4 2.6 0.5 0.8 0 1.4-0.8 1.3 0.1 0.8 0.7 1.8 0.5 1.1 0.6 0.2 0.3 1.4 0.3 1.1 1.8 0.5 1.7 0.8 0.7 2 0.8 1.1 0.6 0.4-0.2 0.8 0.4 1.6-0.3 0 0.7 1.8 0 0.2-0.3 0.8 0.6 2.9-0.3 1.9 0.3 0.8 0.5 1.1-0.3 0.4-0.4 0.9-0.1 0.4 0.5 1.5 0 1.1-0.4 1.3 0 0.5 0.2 1.4-0.1 1.1 0.2 1-0.1 0.9-0.5 1 0.4 1.8-0.2 0.5 0.6 1.7 0.5 0.6 0.4 1.6-0.7 0.3 0.5 0.7 2.3 0.6 0.3 0.5 1.1-0.5 0.9 0.6 0.4 0.1 1.9-1.3-0.3-0.5 0.5 0.9 0.9-0.1 0.5 1.1 0.8 0.5 0.6 2.9-0.1 0.4 0.6 2.8-0.2 0.5 0.1 1.1-0.6 0.1-0.5 0.7 0.1 0.7-0.3 0.2-0.9 0.5-0.5 0.3-1.3 0.3-0.4 1.3 0.3 1-0.6 2.2 0.5 0.3-0.5 0-0.8 0.4-0.7 0.5 0 0.1-1.3-1.2-1.7 0.1-0.4 1.4-1.1 2.1-1.4 0.4-1.3 1.4-0.8 0.3-0.9-1-1.2 0.8-0.5-0.2-1 0.5-1.2 1.3 0.1 0.6-0.8 1.4 0.5 3.6-2.9 2.1-1.1 0.3-0.4 0.9 0.1 0.9-0.2 0.9 0.4 1.4-0.3-0.1 0.6 0.8 0.4 0.4-0.2 0.1-0.7 1.2 0.1 0.3-0.5 0.7-0.2-0.4-0.9 1.5 0.1 0.6-0.2 2.2 0.2 1.6-0.2 0.8-0.3 0.1 0.5 0.7 0.3 1.6 1.8 0.5 1.1 0.5 3 0 0.9 0.6 0.1 0.6 0.7-0.6 0.4-0.8 0-1.3-0.4-0.8-0.5-1.6 0-0.5 0.4-0.7 0.1-0.1 0.9 0.7 1-0.1 0.6 1.1 0.6 0 0.7 0.4 0.8 0.2 1.4 2.1-0.1 0.5 0.3 1.3 0.3 0-0.9 1.5-0.2 0.6 0.2 0.3 0.6 1.1-0.2 0.1 0.7 1.1-0.3 0.3-0.6 1.6-0.3 0.2-0.7 0.6 0.1 1.6 0.7 1.2 0.4 1.3-0.3 0.1-0.5 1.4-0.1 0.6-0.5 0.7-0.1 0.8-0.6 0.7-0.1 3.6-2.2 0.3-0.6-0.2-0.5 0-0.9 0.3-0.2 1.2 0.2 0.8-0.5 1-0.2 0.1-0.8 1.6 0.7 0.6-0.6 0.9 0.5 0.5-0.7-0.2-0.7 1.1 0.2 0.7 0.3-0.4 0.9 0.3 0.5 0.6 2.2 1.4-0.1 1-0.8 1 0.1 0.7 0.4 0.9 1 0.7 0 0.5 0.4 0.6-0.3 0.7 0.2 0.9-0.1 1.4 0.6 0.5-0.3 0.2-0.7 0.5 0.1 0.4 0.8 0.4-0.8 2.1 0 0.2-0.2 1.2 0.4 0.3-0.6 1.2 0.5 0.2-1.2-0.4-0.1-0.4-1.5 0-1.1 0.9 0 1.2-0.9 0.7 0 0.5 0.6 0.7-0.1 2.5-0.2-0.1-0.3 0.9-0.4 0.5-0.4 0.2-0.8 2.4 0.4 0.4-0.8-0.4-0.3 0.1-0.7 0.5-0.6 0.8-0.1 0.9 0.9 3.8 0.7 0.5-0.6 1 0.3 0.6-0.1 1.1 0.4 0.8 1.8-0.5 0.5 0.2 0.8 1.2 0.9-0.1 0.8 0.8-0.1 0.5 0.1 1.2-0.4 1.4-0.1 0.2-0.7 1-0.1 0.3-0.4 0.6 0 0.7-0.4 2 0.7 0.9 0.9 0.2 0.4 1.1 0.6 1.2 0.3 0.8-0.1 0.4-1 1.6-0.1 0.7 0.8 1.1-0.8 1.3 0 1-1.1 0.6-0.3 0.3-0.6 0.8 0.2 1.5-1.1 0.6 0 0.6 0.5 1.3 0 1.2 1.7 0.9 0 0.6 1.3 1.1 0.7 0.1 1.1 0.9 0.9 0.4 1-0.8 1.1 0.4 1 1.1 0.4 0.3-0.1 0.2-1.1 1 0.3 1.5 0.2 0.6 0.7 0.9 0.5-0.1 0.5 0.7 0 0.4 0.7 0.8 0.2 1.3-0.5z", "22": "M905.8 466.6l-0.2 1.5-0.9 0.5-0.6 0.7-0.4 1.9-0.8 1.8 0.1 0.9-0.5 1.9 0.5 0.8 1 0.1 0.6 0.6 3.4 1.5 0 1.3 0.1 1.4-0.3 1.5-0.5 0.9-0.4 0.3-0.4 0.9 0.6 1-0.5 0.3-0.5 1.3-1.2 1-0.5 0.9-0.5 2.4 0.2 0.8-0.5 0.8-0.2 0.8-0.7 0.4-1.4-0.2 0 1.6-0.3 0.9-0.7 1.2-1.2 1.3-0.7 0.3-1.2 3.1-0.9 0.2 0.3 0.7-0.2 1.4-0.3 0.7-1.1 0.5 0.7 0.6-1.2 1.6-0.9 0.1 0.1 1.7-0.5 1.4-0.6 0.6-0.4 1.4 0 0.8-0.7 0.5-0.2 0.9 0.1 2-0.5 1 0 0.7-1.8 3 0.1 1-0.9 0.3-0.1 1.5-0.2 1.4-0.7-0.2-0.6 0.5-0.3-0.9-0.6-1-1.6-0.2-0.2-0.7-0.9-0.6-1.6 0-0.6-0.6-1.1-0.2-0.9 0-1 0.7-0.9 0.2-1.1 0-0.5-1.3-0.6-0.6-0.4-0.8-0.8 0.2-3-0.6-1.2 0.2 0.2 0.7-0.4 0.6-1 0.2-0.4-0.7-0.5 0.9-0.8 0.1-0.6 0.5-1.4-0.9-0.2-1-0.8-1.1-0.4-1.3-0.6-0.6-2.1-0.7-0.6 0.3 0.2 0.8-0.1 0.6-1.7 0-0.5 0.7-0.7 0 0.4-1.5-0.6-0.4-0.7-0.1-0.3 1.4-0.8-0.3-0.7 0.1-0.1-0.8-0.8-0.4-0.6 0.9-1 0.2 0-0.6-0.7-1.1-0.9 0.5-1.1-0.4-1.2-1.1 0.2-0.9 0.4-0.3 0.7-2.1-0.6-1.3 0-1 1-1.5 0.2-0.9-0.7-0.1 0.1-1.7-0.8-0.4 1.3-0.3-0.3-0.7 0.2-1.2 0.4-0.6-0.4-0.8 0.6-0.8-0.1-1 1.6-1.4-0.8-0.5 0.4-0.6-0.1-1.3 0.5-0.7-0.3-1.6 0.8-3.5 0.6-0.2 0.9 0.5 1.2-0.5 0.1-1.5 1.3-1.4 0-0.6 0.7-0.7-0.3-1 0.5-0.2 0.1-0.6-0.5-1.4 0-0.6 0.7-1.1 1 0 0.9-1.6 0.4-0.2 0.5-1.8-0.1-0.8 0.2-0.6 1.2-1.9 0-0.4 0.5-0.8 1.4-1.1 0.6-0.1 0.4-0.5 0.1 1.1 1.2 0.1-0.2 0.9 1.2 0.3 0.8-0.1 0.4 0.7 0.5 0.3 0.1 0.6 0.5 0.1 1.4-2.5 0.8-1.6 0-0.7 0.5-0.1 0.2-1.1 0.6 0.1 0.4-0.6 0.6-0.4 0.2-0.8 1.2-0.7 1-1.6 0.1-0.7-0.8-0.8-0.8 0.3-0.1-0.6 0.6-0.9 1.3-0.2 0.6-0.7 0.9 0.2 1-0.4 1.8 0.1 0.7 0.3 0.5-0.5 1.1-0.2 0-0.8 2 1.4 0.5 0 0.2 1 1.6 0.4 0.5-1 1.3-0.1 0 0.8 1.1 1.3 1.8-0.3 0.4-0.3 0.5 0.7 2.2-1.1 0.8-0.5 1.2-0.7-0.1-0.8 0.3-0.7 0.5-0.1 1-1 0.6 0.1 0.8-0.4 0.8-0.8 0.9-1.1 0.3-0.6 0.8 0.4-0.7 1.6 0.2 0.4-0.9 1.8 0.2 1.7-0.2 1.1 2.4 1.6 1.1 0.5 0.8-0.1z", "23": "M828.7 482.7l-0.8-0.3-1.8-0.4 0.3-0.8-0.6-0.3-1 0.3-1.7-0.6-1.1-0.5-0.9-1-0.3 0.3-1.8-1-0.3-0.8-1-0.5-1.3-0.3-1.2 0.3-0.4-0.3-1 0.5-0.5-0.2-1.8-0.2-2.2 0.3-0.6-0.2-1 0.4-1.1 0.2-0.7-0.5-0.6 1.1-1.1-0.3-0.4 0.8-0.6 0-1.1 0.6-0.6-0.2-0.1-0.6-0.6 0-0.1-0.6 0.4-0.6-1.2 0.1-0.8 0.9-1.5 0.1-0.3 0.4-1.1 0.1-0.1-0.6-0.7 0-0.8-0.6-1.7-0.1-0.3-0.3-0.9 0.1-1.1-0.4-1.2-0.8-0.6 0.4-1.9-0.2-2.1 0.2-1.9-0.1-0.4 0.2-2.3 0.5-2.5 0.7-1.6-0.2-1 0.4-1.4-0.3-1-0.8-0.7 0.5-0.8 0.3-0.7-0.2-0.5 0.5-0.9-0.6-0.4-0.6-1 0.5-1.4-0.1-3 0.2-0.5 0.3-1.2 0.4-0.2 0.3-1.3-0.6-1.1-0.1-1.6-1.2-0.6 0.2-1.4-0.4-2.7-0.5-0.8-0.4-1.9-0.1-1.3-0.7-0.9-0.7-0.7-0.1-1-0.7-0.7 0.1-0.3-0.7-1 0.1-1.4-0.4-0.6 0.7-1 0.1-0.9-0.3 0.5-0.6-0.4-0.5-0.4-1-0.1-1.3 0.6-2 0.6-0.8 0-0.6 0.4-0.1 0.4-0.4-0.2-1 0.1-0.5-0.2-0.4 0.1-0.1-0.1-0.1 0.2-0.2 0.3-0.3 1.1-0.2 1.9-0.5 0.2-0.6 0.5 0.2 0.4-0.1 0.4-0.8-0.4-0.5-0.2 0-0.7-0.6-1.1-0.8-0.2-0.7-0.3-0.4-0.5-0.5-0.2-0.2-0.6-0.8 0.2-0.6 0.5 0.2 1.4-1.3-0.1-0.4 0-1-0.3-0.2 0.1-0.2 0.1-0.2 0.6 0 1.2-0.6-0.2-0.1 0.5-0.2 0.4-0.6-0.2-0.2-0.1 0 0-0.7 0.5-0.2 0.8-0.2 0.2-0.4 0.2-0.2 0.3-0.1 0.2 0 0.1-0.2 0.3-0.2 0.2-0.4 0.1-0.1 0.5-0.6 2.7 0 0.7 0.1 2.5-0.3 1.3-0.4 0.2-0.6 1.2-0.8 1-0.1 1.1 0.9 1-0.4 0.7-0.6 1 0.7 1 1.5-0.1 1-0.5 0.8 0.2 0.4 1-1.1 0.6-0.4 0.3-0.7 1.7 0.8-0.1 0.7 1.7-0.7 0.3-0.5 1-0.1 0.9 0.4 0 1 1.3 0.3 0.6-1.3 0.8-0.2 1.7 0.2 0.5-0.4 1.2 1.5-0.1-1.1 1.4 0.3 0.3 1.8 0.6-0.1 1 0.2 0.5 0.7-0.5 0.3-0.4 1.2 0.7 0.1 0.9-1 0.6 0.1 0 0.8 1.9-0.2 1.1-0.7 1.7 0.3-0.8 2.5 0.3 0.5 0 0.9 1.2 0.6 1.1-0.9 0.7 0 1-1.9 0.9-1.3 0.6-0.3 2.1-0.6 1 0.5 1-0.7 0.5-1.2 0.6-0.3 0-0.8 0.6-0.8 0-0.6 0.6-0.2 0.5-0.5 0.5-1 0.1-1 0.9 0.3 0.8-0.2 0.4 0.1-0.2 1.4 0.4 0.8-0.2 0.8-0.7 0.2 1.3 1 0.7 0.3 1.7-1.9 0.1-2.9 0.3-1.1 1-0.4 0.6-0.8 0.4 0.2 1-1.2 2 0.8-0.3 1.5 0.5 1.1 0.8 0.1 0.7 1 0.2-0.6 1.6-0.4 0.4-0.6 1.5 0.1 0.6 0.2 1.4-0.6 1.3 0.1 0.6-0.7 1-0.5 0.4 0.4 0.7-0.1 1 0.3 1.1-0.1 1-0.4-1.6 1.8-1.8 1.6-0.4 0.1-0.8 0.7-0.4 0.8 0.2 1.1 0.7 0.3 1.4-0.1 0.1 0.3-1.5 1.2 0 0.7-1 1.5 0 1.1 0.4 1.5-0.3 1.3 0.5 1.6 1.4-1.1 0.5-0.7 0.4 0.3 1.1-0.1 1.3-0.5 1.1-0.1 1.1-0.8 1.5 0.2 0.9 0.8-0.5 0.4 0.2 0.8 1.1 0.2 0.5 0.7 0.6 1.4 2 0.6 0.2 1.4 0.9 0.8 0.7-0.4 0.7-0.2 0.4-0.7 0.7 0.1-0.6 1.8-0.8 0.9-1.4 0.7-0.4 0.6 0.1 0.6 0.9-0.3 0.3 0.9 0 1.1 1.5-0.5 0.3 0.8 0.5-0.2 0.9 1.1 0.6 0.5 0.6 0 0.9 1.5 0.8 0.1 0 0.9 0.3 0.8-0.8 0.7-0.2 0.7 0.3 0.6 1 0.5-0.8 0.7-1.1-0.2-2.4 1-0.5 0.3-0.2 0.7-0.4 0.1-0.8 1.3-1.3-0.5-1 0-1-0.4 0.1 1.3-1.5 0-0.1 0.8-0.5 1.1-0.5 0.6-0.9 0.3z", "24": "M848.4 506.4l0.8 0.4-0.1 1.7 0.7 0.1-0.2 0.9-1 1.5 0 1 0.6 1.3-0.7 2.1-0.4 0.3-0.2 0.9 1.2 1.1 1.1 0.4 0.9-0.5 0.7 1.1 0 0.6 1-0.2 0.6-0.9 0.8 0.4 0.1 0.8 0.7-0.1 0.8 0.3 0.3-1.4 0.7 0.1 0.6 0.4-0.4 1.5 0.7 0 0.5-0.7 1.7 0 0.1 0.8-0.1 1.8 0.5 0.2 0.4 1.2 1.2 0.6-0.1 1.6 0.1 2.3 0.3 0.4-0.1 1.5 0.4 1.5 0 0.8 0.9 1.1-0.5 1.1 0.1 2.6-0.3 0.5 0.2 1.3-0.7 1 0 1.2-0.4 1.6 0 0.8 0.6 0.9-1.7 1.2 0.5 0.8 0.1 1.6-0.1 1.3 0.5 1.2-0.7 2.7 0.7 0.4-1 0.9-0.2 1.4-0.5 0.5-0.4 1.1-1 1-1.7 0.1-0.7-0.6-0.4-0.9-0.5-0.4-0.8-0.1-0.5 0.4-0.9-0.5-0.3 0.5 0.1 1.3-0.2 0.5 0.6 0.7-0.2 0.6 0.7 1.9-0.8 0 0 0.7-0.6 1.2-0.2 1.7-0.6 0.2 0.5 2.5-0.7 1.3 0.4 0.5 0 0.8 0.5 0.8-0.1 0.5 0.7 0.6 0.3 1.3-0.5 0.5-0.5 0.7-0.1 0.8 0.6 0.2 0 0.6 0.3 0.6-0.2 0.7 0.4 0.6 1 0.3 0.6 0.9-0.1 0.5 0.3 1.2-0.2 0.4 0.3 1.2 0 2.1 0.3 0.7-0.6 0.4-1.5 0.2 0.4 1.3 0.3 0.4-0.2 0.6-1.1 0.2-0.4-0.9-0.6 0.1-0.8-0.4-1.1 0.6 0.3 1.1-0.2 0.9 0.4 0.5 0.2 0.9-1.7-0.1-0.1 0.7-0.4 1.1-0.1 0.6 0.4 1 0 1-0.8 0.1-0.7-1.6-0.8 0.3-0.5 0.8-0.4 1.1-0.4-0.5-0.4-1.2-0.6-0.7-0.2-1.1-0.7 0-0.8-0.7-0.3-0.6-1.5-0.5-0.3-0.6-0.9-0.5-0.2-0.4-1-0.1-0.2 2-0.4-0.2 0.2 2.3-0.4 1-0.7 0-0.7 1-0.9 0.3-0.2-1.9 0-1-1.2-2.7 0.9-0.2 0.6-0.4 0-0.9-0.3-0.4-0.3-1.8 0-0.9-0.4-1.2 0.1-1.2-0.8-2.6-0.3-2.6-0.5-3.4-0.3-3.8-0.5-1.9-0.5-1.2-0.6-0.9-0.3-1.2-0.6-1.1 0.2-1.1-0.2-0.6-1-0.6-0.4-0.9-0.5-0.1-0.3-0.6-0.7-0.3 0.2-0.6 0-2 0.4-1.8-0.2-0.9-0.7-1 0.3-0.7-0.3-0.3 0.2-0.8-0.4-1.4 0-1.5 1.7-0.2-0.7-1.6-0.1-0.9-0.4-0.4 0.3-1.2-0.8-1.1 0-1-0.2-0.8-0.5 0-0.5-2.9-0.4-1 0.2-0.7-0.5-1.4-0.4-0.2 0.3-1.1-0.7-0.7 0.5-1.1 0-0.7-0.9-1.3-0.1-0.4 0-0.9-0.1-1.6 0.2-0.4 0.4 0.1 0.2-0.1-0.1-0.3-0.1-0.2-0.1-0.2-0.1-0.3 0.4-0.9 0.2-0.1 0.1 0 0.2 0.1 0.2 0.1 0.4 0 0-0.1 0.1-0.1-0.1-0.3-0.1 0 0-0.1 0.1-0.1 0-0.2 0.1-0.1 0.1-0.5 0.2 0 0-0.6-0.3-0.2-0.3-0.3 0-0.9 0-0.1 0-0.3 0.2-0.2 0.3-0.6-0.4-1 0.1-0.1 0.1 0.1-0.2-0.4 0.1-0.1-0.1-0.2 0-0.5 0.1-0.1 0.1-0.2-0.2-0.3 0.4-0.4 0.1-0.9 0-0.2-0.1-0.2 0.1-0.1-0.1-0.4 0-0.4 0-0.2 0.1-0.1 0.2 0-0.1-0.3-0.1-0.5 0-0.4-0.1-0.4 0.1-0.2-0.5-0.8-0.2-0.1-0.3-0.3-0.1-0.1 0-0.2-0.1-0.1 0-0.2 0-0.1 0-0.2 0-0.2 0.6 0 2.2 0.1 1.5-0.1-0.1 2.2 0.5 0.7 0.1 0.5 0 0.4 0.2-0.1 0.7 0.7 0.1 0 0.3-0.3 0.3-0.4 0-0.1 0.1-0.1 0.1-0.1 0.5 0 0-0.2 0.2 0.2 0.1 0-0.1-0.3 0.1-0.1 0.6-0.1 0.6-1.8 0.1-0.8 1.3 0 0.8-0.3 0.3-1.3 0-0.9 0.2-0.9 0.6 0.3 0.5-0.6 1.1-0.5 0.8-1.8 0.5-1.8 1.2-2.6 1.4 3.8 1.4 1.4 0.6-0.6 0.7-0.1 0.7 0.3 0.2-0.7 0.9 0.6 0.8 0 0.7-0.5 0.7 0.3z", "25": "M924.8 419.9l-1.1 1.5-0.8 0.2-1 0.9 0 1.5-0.5 0.7-0.8 0.5 0.2 0.7-0.6 0.7-1.2 1.7-0.1 0.6 0.7 0 0.8 1.1-0.2 0.8 1.1 0.5-0.3 1.3 0.1 2.4-0.3 0.6 0.3 0.7-0.3 0.7 0.7 0.9-0.5 0.5-0.4 1.5 0.4 1-0.2 0.6 0.2 0.8 0.8 0.2 0.5-0.2 0.7 0.6-0.7 1.2 0 0.7-0.8 1-0.8 0.8-0.4 0.7-1 0.7-0.7 0.1-1 1-0.3 0.8-0.1 1.1 0.6 0.9 0.1 1 0.4 0.4-0.1 1 0.2 0.8-0.6 0.8-0.8 0.1-0.9 1.3-1.4 1.1-0.3 0.4-0.5 1.9-1.1 1 0.6 0.8-1.8 0.2-0.5 0.4-0.9 2.1-0.9 0.2-0.4 0.4-0.6-0.5-0.3 0.5-2 0.6-0.2 0.2-0.8 0.1-1.1-0.5-2.4-1.6 0.2-1.1-0.2-1.7 0.9-1.8-0.2-0.4 0.7-1.6-0.8-0.4-0.3 0.6-0.9 1.1-0.8 0.8-0.8 0.4-0.6-0.1-1 1-0.5 0.1-0.3 0.7 0.1 0.8-1.2 0.7-0.8 0.5-2.2 1.1-0.5-0.7-0.4 0.3-1.8 0.3-1.1-1.3 0-0.8-1.3 0.1-0.5 1-1.6-0.4-0.2-1-0.5 0-2-1.4 0 0.8-1.1 0.2-0.5 0.5-0.7-0.3-1.8-0.1-1 0.4-0.9-0.2-0.6 0.7-1.3 0.2-0.6 0.9 0.1 0.6 0.8-0.3 0.8 0.8-0.1 0.7-1 1.6-1.2 0.7-0.2 0.8-0.6 0.4-0.4 0.6-0.6-0.1-0.2 1.1-0.5 0.1 0 0.7-0.8 1.6-1.4 2.5-0.5-0.1-0.1-0.6-0.5-0.3-0.4-0.7-0.8 0.1-1.2-0.3 0.2-0.9-1.2-0.1-0.1-1.1-0.6-0.6-0.1-0.8 0.9-1.3-0.5-1.2-0.2-1.2-0.8-0.4-0.6 0-0.9-0.6 0-0.6-0.7-0.6-0.4-1-0.9-0.8 0.4-0.5 1-0.3 0.6-0.9 0.5-0.1 0.4-0.9 1.6-0.9 0.7-0.1 1.2-1.4 0.8-0.7 0.1-0.9 1.3-1.2 1.3-0.9 0.2-0.9 0.7-0.7 1-0.2 0.2-0.5 0.8-0.4-0.6-1.4-0.1-0.8 2.2-1 0.6-0.7 0.6-0.1 0.4 1.8-0.6 2.4 0.5 1.2 0.8-0.4 0.2-0.8 0.9-0.6 1.1 0.6 0.4-0.7 0.7-0.8 1.5-0.7 0.8-0.8-0.5-1.3-0.4-0.5 0-1.3 0.3-1.3 0.9-1.2-0.2-0.4 0.7-2.4-0.2-0.4 0.4-1.1 0.8-0.6 0.2-1.2 0.4-0.8 0.6-0.2 1.1-1.9 0.2-0.6 1-0.6 0.9 0.1 0-0.8 0.5-1.1-0.1-1.6 0.4-1.1 0.5-0.4 0.3-0.8 1-0.8 0.8-1.2 0.6-0.8 0.2 2.1 0.2 1.1 0.8 0.7 0.3-0.7 0.9-0.6 0-0.5 0.9-0.1 0.6-0.7 0.7-2-0.3-0.7 0.1-0.6 1.5-0.9 0.5-1.1 1-0.2 0.6-0.5 0.2-0.5 0.8-0.4 1.6 0.3 0.1-0.9 0.5-0.5 0.4 0.7 1.1-0.1 1.1-0.3 1.6-1.2 0.5-0.7 0.3 0.4 0.6-0.9 1-0.4 0.4-0.8 0.2-1.1 1.1-1 0.6-1.3 0.6-0.7 0.9-0.4 0.7 0.2 0.8-0.2 1 1 1.2-0.3 0.5-0.5 1.7-0.6 0.8-0.5 0.2-0.6 1.3-0.9 1.4-1.4 0.2 1.4-0.2 0.6 0.7 0.8-0.3 0.3 0.4 1.1 0.5 0.5-0.1 1.3-0.6 0-1 0.8 0.5 1 0.6 1.6 0.9 0.5-0.8 1.1-0.1 0.8 0.7 0.8 0.1 1z", "26": "M566 701.8l0.9 0.1 0-0.4 0.8-0.2-0.7 1.2-1-0.7z m52.5-35.1l0.8 0.5 0.2 0.6-0.6 0-1.2-0.4 0.8-0.7z m20.5-26l0.7 0.2 2.5 0 0.9-0.2 0.6 1-0.2 1-0.7 0.1-1.5-0.1-1.5 0.8-1.3 1.4-0.5 0.1-0.1-0.4-0.3-0.3-0.9-0.1 0.7 1.1-1.3 0.1-0.3-0.3 0.9-1.2 0.1-0.8 0.4-0.4 0.5-1.6 0.6-0.5 0.7 0.1z m0.4-0.6l2.1 0.3-2 0.3-0.1-0.6z m-5.4-52.4l-0.3 1.4 0 1.3 1.3-0.1 1.3-0.3 0.3 0.3 0.2 1.1 0.6 0.1 0.3 0.6 0.6-0.1 2 0.5 1.7 0.1 1.3 1.4 0.8 0.1 0.2 0.5-0.1 0.6 0.4 0.9-1 1.7-0.2 1.3 0.7 0.8 0.4 0.7 1.6 0.2 0.6 0 0-0.8 0-0.2-0.2-0.2 0-0.1 0.1-0.1 0.4-0.7 0.2 0 0.2-0.2 0.5 0.2 0.7-0.4 0.3-0.1 0-0.7 0.3-0.9 0.2 0.3 1 0.4 0.6 0.1 0.1-0.1 0.4 0-0.1 0.5 0.1 0.3 0.6 0.6-0.6 0.8 0.5 1.1-0.2 0.3 0.4 0.5 0.2 0.4 0.2 0.5-0.2 0.2 0.4 0.3 0 0.1 0.2 0.1 0.5-0.1 0.1 0.3 0.3 0 0.4 0.2 0.2 0.1 0.1 0 0.2 0 0.2 0.3 0.1-0.2 0.5 0.2 0.5 0.4 0.4-0.1 0.4 0.1 1.1 0.1 0.5 0 0.1 0.2 0 0.6 0.3 0.3-0.3 0.1 0.7 0.2 0.1 0.1-0.1 0.3 0.2 0.6-0.1 0.2 0 0.6-0.2 0.8 0 0.4 0.7 0.7 0 0.5 0 0.1-0.9 0.5-2.5 1.7-2.7-0.2-2.1 0.1-1.2 0.2-1.8 0.8-1.4 0.6-1.6 1.7-0.4 0-1 0.9-1 0.7-1.7 1.7-1.3 1.6-0.5 0.5-0.3 0.8-0.5 0.6-0.8 1.5 0 0.6-0.8 1 0.2 0.6-0.1 1.4 0.6 1.9 0.5 1.1 1.1 1.5 0.3 0.6 0.4 1.6 1.7 3.3 0.3 1.4-0.4 1.5-2.6-0.4-1.6 0.7-0.6 0.6 0 1.3-0.5 0.6-0.5 1.2-0.7 1.1 1.4 0.1 0.5-0.1 0.1-1 0.4 0.6 0.2 0.2 0.2 0 1.8-1.6 1.2-0.6 1.1 0.1 1.3 0.4 0.7 0.1-3.7 2.5-1.6 1-3 2.3-0.5 1.2-0.4-0.1-0.5 1.3-0.3 0.6 0 1.8 0.5 0 1.1 0.6 0.3 1-0.7 1.1-1.2 0.8-0.9 0.4 0.3 0.4-1.4 0.7 0 0.3-2 0.8-1.2 0.7-1.6 0.6-0.9 0.9-0.7 0.3 0.2 0.5 0.7-0.7 0.3 0.1-1.6 2.6-2.1 2.1-0.3 0.8 0.1 0.7-0.8 0.9-1.3-0.2-0.3-0.3-0.4-1.5-1.2-0.9-1-0.2-0.5 0.3-0.3 0.8 0.5 0.4 1.4-0.2 1.1 1.7 1.2 0.9-2.3 0.7-2.3 1.2-3.3 1.1-1.2 0.4-1.7 0.3-0.1 0.2-3.1 0.6-3.7 1-5.6 2-3.4 1.8-1.7 0.8-1.3 0.8-2.5 1.1-2.8 1.6-1.5 0.9-5.3 4-1.1 1-0.7 1.1-0.9 0.8-2.5 1.6-1.8 1.5-1.6 1.4-1.5 1.5-1.3 1.8-0.3 0.7-0.6 0.7-1.1-0.3 0-0.9-0.8 0.1-0.7 0.8 0.6 0.8-0.8-0.5 0.1 0-0.2-0.5 0.1-0.1 0.2-0.9-0.2 0-0.5 0-0.6-0.2 0.1 0.8-0.2 0.4-0.5 0.1-0.6 0-1.1 0.2 0.3 0.8 0.4 0.1 0.2 0.6 0.4-0.1 0.3-0.3 0.7 0.7-0.3 0.5-0.3-0.2-0.4 0-0.2 0.3-0.1-0.2-0.1-0.1-0.4 0.2-0.1 0.2-0.3 0.5-0.4 0.7-0.5-0.8 0.2-1-0.3 0.1-0.1-0.2-0.3 0.2-0.4 0.5-1.3 0.3-0.4 0.4-0.3 0.2-0.4 0.5 0 0.5-0.2 0.4-1.1-0.6-0.6-0.4 0-0.1-0.2 0 0.3 0.6 0 0.2 0.1 0.2 0.3 0.3 0.2 0.3-0.9 1.1 0.5 0.9-0.7 0.8-0.8 0.3-0.8 1.1-1-0.4 0.4 1.8-0.5 0.1 0.1 0.6-1.1 0.4-0.6-0.3-0.8 0.6-0.5 0-1-0.5-1.2 0.7-0.7-0.2-0.9 0.3-1.5 0.7-0.8-0.2-0.6-1.1-1.4-0.8-0.9 0.2-1.7-0.3-0.8-0.3-1.3-0.1-0.2-0.7-0.7-0.5-0.3-0.8 0.2-0.5-0.2-0.8-0.8-0.9 0.1-0.5-0.9-2.1-1.6 0.8 0.3 1.5 0.4-0.1 0.5 1-0.2 0.6-0.9-0.6-0.6-2.1-0.7-0.3-0.2-1.1-0.6-1-0.9-1.2 0-0.4-0.4-1-0.9-1-0.8 0.8 0.3 1-0.8 0.6-0.1 0.9-0.9 0-0.6 0.8-0.1 0.8-1.2-0.2-0.1-0.5 0.7 0-0.3-1.4-0.4 0.4-0.5-0.8-0.6 0.2 0.2 1.2 0.4 0.4-0.1 0.9-0.9 0.1 0 0.6 0.5 0.8-0.7 0.4-1-1.1-0.2-0.6-0.7-0.2-0.9 0.2-0.2-0.5-0.7 0.1-0.2 0.7-0.7-0.1 0.2 0.8 0.4 0.4 1.2 0.1 0.1 0.9-0.6 0.3 1.4 1.8 0.8 0.4-0.5 0.4 0.1 0.6-0.9 0.4-0.4 0.5-1.3 0.3-0.6 0-0.9 0.3-0.4 1.2-1-0.1-0.5 0.4-1.3 0.2-0.6-0.6-0.6 0.1-0.6-0.5-1.5 2.1-0.4 0.3-0.9 1.8-1.3 0.6 0.3 1.2-0.5 0.6 1 0.4-0.4 0.5 0.3 0.5 0.6 0.5 0.7-0.3 0.6 0.4-0.5 0.6-0.8 1.4-1.2 1.1 0.7 0.4 0.2 0.6 0.8 1-0.3 0.5-0.6 0.2-0.9-0.2-0.7 0.1-0.5 0.7-0.6-0.1-0.9 0.2-0.2-0.3-0.9 0.2-0.6-0.9 0.2-0.4-0.2-0.8-0.5 0.2-1.7-0.9-0.7-0.2-0.8 0.7 0.4 1-0.3 0.7 0.2 0.6-0.6 0.9-0.5 0.1-0.6 0.5-1.1 0.2-0.1 0.4-1.2 0.2-0.7 1.2 0.1 0.5-0.5 0.5-0.8-0.7-0.7-0.3-0.1-0.8 0.2-1.4 0.3-1.7-1.5-0.8-0.7-0.1 0-0.6 0.6-1.1-0.8-0.2-0.5-0.4 0.4-0.5-0.1-1.3-0.9 0-0.5-0.4-0.3-0.8-1.3 1.5-0.3 0.7-1 0.9-0.7 1.1-0.5 0.4 0.7 1.4-0.2 0.7-0.6 0.3-0.5 0.8 1.3 0.1 0.3 0.4-0.3 0.8-0.5 0.5-1.1 0.2-0.2 1.2 0.1 0.6-0.9 0.7 0.1 0.8 1.3 0.4 0.6 0.8-0.3 0.6-0.8-0.7 0 1.8 0.3 0.4-0.2 1.3-0.5-0.2-0.6 0.4-0.6-0.7-0.7 0.4-0.3 0.5 0.5 0.9-0.2 0.8-0.8 0.3-0.2-0.5-0.6 0-0.8-0.6-0.6 0-0.5-1.1-1.1 0.2-0.1-0.5-1.2-0.1-0.7-0.5-0.4 0.7-0.5 0-0.7-0.4-0.8 0.4 0 0.8-2.3 1.4-0.7 0.2-0.5 0.4-1.8 0.6-0.5 0-1.1 0.5-0.5 0.9-0.9 0.7-1.9 1.1-0.5-0.8-0.9 0.3-0.6 0.7-0.1 0.6-1.1 0.9-1.2-0.5-0.7 0.4-2.5 0.5-0.4-0.7-1.1 0.3-0.4-0.2-0.6 0.6-0.8-0.1 0-0.7 0.5-0.7-0.3-0.5 0.2-1 1.4 0.4 0.4-1-0.2-0.7 0.4-0.8 0.7-1 0.1-1.1-0.1-0.9 0.2-0.7 0.9-1.6 0.1-1.3 0.4-1-0.6-1 0.7-1.8 0.1-0.9 0.7-0.1 0.7-0.4 0.8-1 0.8 0 1.5-0.5-0.1-0.8 3-0.3 0.6-2.3 1.2-1.1 1.8-1.7 0.4-1 0.7-0.5 0.5 0.1 0.1-1.1 1.6-0.1 0.3-1-0.9-0.3-1-0.8-0.4-0.1 0.2-1.2 0.7 0.7 1.1 0.2 0-0.9 0.5-0.5-0.2-0.4 0.7-0.6 0.5-0.1 0.9-0.5 0.6-0.2 1.5 0.2 0.4-1.6 1.9-0.6 0.5-0.6-0.2-0.3 0.3-1.1-0.2-0.8 0.4-0.9 0-0.5 1.5-0.8 0.9 0.1-0.6-4-1-1.4 0.5-0.7-0.6-1.4-0.7-0.6 0.3-0.9-0.2-0.9-0.6-0.5 0.2-0.4-0.3-0.5 0-1.6 0.6-0.9 0.4-1.5-1.3-0.5-0.1-0.7 0.9 0 0.3-0.4 0.3-1.3-0.5-0.6-1.7 0.2-0.8-1.3 0.2-0.5-0.4-0.7 0.1-0.6-0.8-0.2-0.3 0.4-1.3 0.1 0.8-1.3-0.1-1-0.3-0.7 0.6-1.5-0.2-1.6-0.3-1.2 0.2-1.3 0.5-0.5 0.1-1.1-0.3-0.3-1.8-0.3-0.7 0.1-0.7-1.4 0.1-0.7-2.2-0.9-1.3-0.7-0.4-0.6 0.1-0.9-0.4-0.4 0.3-0.7 0.4-1.9 0.5-0.9 0.5 0.1 1.6-2 0.3-0.1 1 1 0.7 1 0.7 0.2 0 0.8 1.2-0.6 0.3-0.5 2 1.4 0.5 0 1.2 0.6 0.6 0.5 0.7 0 0.9-0.6 1.1 0.9 0.2 1 0.9 1.7 0.1 0.5 0.7 0.9 0.3 0.8 0.4 0.3 1-0.9 0.7-1 0.9-0.5 0.9-0.3 0.6 0.3 0.6-0.2 0.7 0.6 1.1 0.1 0.5 0.5 0.8-0.1 1 0.4-0.9 1.2 0 0.9 0.3 1 1.4-0.4 0.9-1.4 1.8-0.1 0.4-0.8-0.4-2.1 0.3-1.4 0.1-1.4-0.4-0.3-1.7-0.3-0.9 0.1-0.3 0.4-1.1-0.1-0.2-0.3-1.1-0.5-1.4-0.1-0.9-0.6-1.2-0.2-1.6-0.5-0.1-0.4 0.1-1-0.1-1.1-0.4-0.9 0.1-0.6 0.8-0.7 0.2-0.8-0.3-1.4 0.1-0.9 0.7-0.5-0.2-1.1-0.9-1 0.1-0.7 0.4-0.8 0-0.9 0.5-0.3 0.2-0.6-0.4-0.4 0-0.7-1 0.1-0.3-2-1.1-0.5-0.2-0.6-0.6-0.5 0.6-0.8-0.1-0.7 0.6-0.4 0.4-0.9-0.1-1.2-0.5-0.6-0.3-0.7 0.1-1.1-0.3-1.1 0.1-1.2-0.2-1.8 0.5-1.6 0.7 0.7 0.5-0.2 0.6 0.3 0.2 0.9 0.3 0.4 0.7-0.1 0.6 0.3 0.2-0.5 0.6-0.4 0.3-1-0.1-1 2.4-1.5 1-1.7 0.8-0.7 0.6-1.1-0.5-1 0.6-0.5 0.6-0.9-0.3-1.2 0-0.5 0.9-0.1 0.8-0.2 0.5 0.1 0.7-0.2 1.3 0.1 0.8 0.6 1.1-0.6 0.9-0.2 1.3 0.5 0.8-0.5 0.7 0.2 0.7-0.2 0.5-0.5 0.3 0.8 0.5-0.1 1 0.4 1.1 1 1 0.4 1.7 0.3 0.4-0.2 1-1 1-0.2 0.6-2.3 0.3-0.8-0.1-1 0.3-0.6 0.6-0.4 0.9 0.3 0.2-1-0.5-0.2-0.1-1.1 0.4-0.5 0.1-1.1 1.3 0.4 2.3 0.9 0.9-0.3-0.3-0.5 0-1.4-0.4-0.3-0.4-1-0.7-0.3-0.3-1.5 0.5-1.9 0.4-0.5-0.2-0.8 0.2-0.9 0.5-0.6 1.1-0.9 0.9-0.4 0 1.1 0.8 0.5 0.2-0.8 0.5-0.5-1.5-0.6-0.7-0.7 0.4-0.7 0.8 0 1-1.7-0.3-1.2 0.5-1.3 1.1 0.5 0.5 0-0.2-1.4 0.9-0.1 0.6 0.2 0.3-0.8-0.4-0.7 1-1.5-0.5-0.5-1.1-0.2 0.1-0.5-0.8-0.7 0-0.5 0.5-1.1-0.5-0.6 0.2-1.2 1.5 0 0.6-0.4-1.5-1.2 1.7-2.2 0.4-1.4 0.9-1 0.4 0 1.2-0.8 1.8 0.2 0.9-0.6 0.3-0.7 0.6-0.5 0.8-0.3 0.1-0.7 0.7-0.4 0.6-0.6 1.2 0.1 0.6-0.7 1.8 0.1 1.2-0.5 0.4-1.3 0.9-1 0-1.2-0.6-0.3-0.3-0.4-1.3-0.7 0-0.6 0.9-0.1 1.9 0.4 0.7 0.8 0.9 0.6 1.1 0.2-0.1 0.8 0.1 0.9 0.5 0.8 1.1 0.6 0.3 0.4 1.8 0 0.7 0.9 0.8 0.4 1.2 0 1.6-0.4 0.8 0.2 1.1-0.3 0-0.5 0.7-0.5 0.9-0.2 0-0.7 0.9-0.5 1.5 0 1-0.2 2-0.3 1 0.6 2.8 0 0.3-1.1 1.7 0 0.4 0.4 0.8 0.2 1.4-0.6 0.1 1 0.9-0.1 0.3-0.6 1.2-0.6 0.3 0.3 3.1-1.3 0.8 0.2-0.1 0.6-0.5 0.4 0.2 0.8 0.4 0.4 0.3 1.3-0.3 1.1 0.6 0.3-0.2 0.9 1 0.1-0.3 0.8-1.2 0.7 0.1 0.8-0.2 0.8-0.7 1.6 0.1 0.2-0.9 1 0.2 0.6-0.2 0.9-1.5 0.8 0.2 0.5 0.5-0.1 0.6-0.9 0.9-0.2 0.8 0.1 1 0.4 0.1 0.4 0.6 0.7 0.8-0.3 2.4 1.2 0.1 1.2 0.5 0.3 0.4-0.4 1.1-2.5 1.7-1.7 1.3 0.1 0.1-1.1 1.6-0.1 1.6 0.8 1 0.7 0.6 0.1 1.1 0.7 1.5 0.5 0.3 0.2 1.4-0.3 0.5-0.3 1.2 1.6 0.3-0.3 1.1-0.1 0.8-0.4 0.4-0.6 1.2-0.5 0.4-0.4 0.9 1.2-0.5 0.3-0.9-0.3-0.6 1 0.3 0.5-0.8 1 0.1 0.7 0.8 0.4 2 0.1 1.8 0 0.6-1 0.6-0.6 0.5 0 1.1-1.9 0.1-0.4 0.8-1.1-0.3-0.7 1.1-2-0.3-0.5-0.8-0.6-0.8-1 0.5-0.9 1.1-1.4-0.4-0.4 0.5-0.5-0.9-0.3 0.8-0.9 0.1-0.7-0.4-1.6-0.5 0.1-1.4-1.3 0.5-0.9 0.1-0.7 0.9-0.3 1.1-1-0.4-0.3 0.7-0.7 1.1 0.7 1.1 2 1.5 0.4 1.9 0.3 0.6 0.8 1.6 0.3 0.5-0.2 0.2 0.8 1.1 1.2 0.2 0.7 0.5 0.3 0.5 0.7 0.7 0.3 1.7 1.2 0.5-0.7 0.7 0.1 1.4-0.7 0.3 0.6 0.5 0.2 0 0.6 1 0.3 0.9-0.1 0.4 0.6 0.8 0.2 1.1 0.5 0 1 0.8-0.1 0.4 0.7 1.4 0.1z", "27": "M399.3 989l0.1 0.2 0 4.8-0.1 0.6-0.5 0.1-0.8-0.1 0.1-0.2-0.1-0.3-0.1-0.1-0.2-0.1-0.3-0.2-0.1-0.3 0.5-0.1-0.6-0.4-0.1-0.4-0.3-0.1-0.2 0 0.2-0.2-0.1-0.2-0.5 0.2-0.2-0.1-0.2-0.3-0.2-0.2-0.5-0.1 0-0.1-0.1-0.1-0.2 0.1 0.1-0.2-0.4-0.1 0-0.2-0.2 0 0.1-0.1 0.5-0.4-0.2-0.1-0.4-0.3 0.4-0.2 0.4 0 0.4 0.3 0.2-0.2-0.2-0.2 0.1-0.3-0.1-0.1 0-0.1-0.2-0.2-0.1-0.4 0.4 0 0.6 0.2 0.5 0.1 0.5 0.2 0.3-0.4 0.2 0 0.2 0.1 0.5-0.1 0.4 0.2 0.5 0.1z m-4.6-34.6l0 0.4 0.6 0.3 0.3 1.4 0.2-0.3 0-0.4 0.6-0.2 0.1-0.3 0.2-0.2 0.1 0.1 0.5 0.1 0-0.5 0.2-0.2 0.2 0 0.2 0.5 0.6 0.3 0.4 0-0.5 2-0.4 1.1-0.4 1.5-0.5-1.1-0.6-0.1-0.4-0.6-0.9 0.4-0.8 0-0.4-0.2 0-0.7-1.2 0.3 0-0.4 0.7-0.1 1 0.2 0.5-0.6-0.7-0.8 0.1-0.5-0.8 0 0-0.7 0.6-0.2-0.2-0.8-1.8 0 0.2-0.6 0.1-0.2 0.3 0.1 0.3-0.4 0.8-0.3 0 0.7 0.5 0.7 0.4 0 0.2 0 0.2-0.3 0.8 0.3-0.3 0.2-0.6 0.3-0.3-0.2-0.1 0z m-150.4-2.8l-0.4 0.7-1.1 0.1-0.1 0.8 0.6 0.6 0.2 1-1.3-1.7-0.6-0.7-0.2-0.7-0.1-0.3 0-0.7 0-0.1-0.1-0.8 0.1-0.2 0.5-0.2 0.1 0.1 0.2 0.2 0.3-0.2 0.4 0.2 0.4 0 0.2-0.4 0.9-0.6 0-0.2 0.3-0.2 0.2-0.1 0.7 0.2 0.7 0.2 0.2-0.4 0.2 0 0.3 0 0.4 0.2 0.1 0.2-0.3 0.3-0.4-0.1-0.1 0.2-0.3 0-0.6 0.5-0.5 0.3-0.3-0.1-0.3-0.1-0.4 0.1 0.2 0.5-0.6 0.9 0.1 0.2 0.2 0.1 0.2 0.2z m238.2-164l-0.9 0.3 0.2-0.4 0.7 0.1z m0.4-0.5l-0.9 0.2-0.6-0.4-0.4 0.4 0.5 0.6-0.4 0-1-0.7-0.8 0.1-0.5-0.3 0.6-0.7 0.8 0.6 2.1-0.1 0.6 0.3z", "28": "M294.1 255.4l-0.2 0.6 0.2 0.6 1.1 1.4 0.9 0.4 0.2 1.1 0.4 0.5-0.6 1.1-1.2-0.1 0.4-0.4-0.1-0.2-0.2-0.2-0.5 0.5-0.3-0.4 0.1 0-0.3-0.4-0.5-0.1-0.2 0.1-0.2 0.1-0.1 0.1-0.1 0.2-0.2 0.3-0.3 0.3-1 0.4 0.1 0.1 0.6 0.8 0.2 0.8 0 0.1 0.3 0.2 0 0.2 0.3 0.3 0.1 0.3 0.3-0.1 1.7 0.9 0.3-0.5 0.2-0.2 0.3 0 0 1 1.5-0.4-0.2 1.2 0.5 0 0.9 0.8 0.5 0.8-0.5 1.3 0.1 0.7-0.6 0.4 1.2 0.6-0.2 1.2-0.6 0.2 0 1.3-0.2 0.8 0.4 0.3 0.3 1 0.6 0.6-1 1-0.7 0 0.1-0.8-0.5-1-0.6-0.3-0.5-0.7-0.9 0.9-0.9-0.2-1.1-0.4-0.8 0.2 0 0.6-0.9 0.5 1.3 1.3-1.3 1.4-1 0.2-0.6 0.8-1.3 1-1.1 0.2-1.2 0.4 0 1 1-0.9 0.5 0.1 0.7 1.1-0.2 0.4 1.1 0.4 0.1 0.8-0.6 0.6 0.2 1.4-0.3 1.6-1 0.6-1.2-0.8-0.8 0.7-1.1 0.2-0.3-0.8-1.3-0.1-0.3-0.9-0.6-1 0.1-1.3-0.3-0.7-0.8 0-0.6 0.6 0.7 1-0.5 0.5 0.1 0.7-1.4 0-0.7 0.7-1.2-0.3-0.4 0.2-1-0.3-1.4-1.4-0.2 1.1 0.9 0.8 0.8 0.1-0.8 1-1.1 1.8-0.3 1.2 0.5 2.3-0.9 0-0.4 0.7 0.5 0.2 0.1 1.1 0.5 0.4 0.9 0 0.6 0.6-0.5 0.6-1.1 0.3-1 1.1-0.9 0.1-0.8 0.8-0.7-0.6-0.6 0.2-0.1 1-0.6 0.3-0.6 0.9-0.5-0.2-0.7 0.1-1.1 0.8-1.3 0-0.7-0.3-0.6-0.6-0.6 0.3-0.5-0.2-0.7-0.9-0.8-1.6-0.8 0.3-0.9-0.7-0.8 0.5-1.4 0.2-0.3 2.1-0.7-0.1-0.4-0.6-1.4 0-0.1 0.7-2 0.4-0.2-0.8-1.7-0.4-2.2-1.3 0 0.9-1.6 1-0.4 1-0.2 0.9-0.6-0.1-0.9 1 0.4 0.7-1 0-0.3 1.5-0.7 0.5-0.2 0.7 0.8 0.5-0.5 1.1-1.8 0.4-0.9-1.2 0.3-1-0.7-0.6-0.9-0.3 0-0.8-0.5-0.7 1-0.5 0.3-0.6-0.3-0.6 0.3-0.8 0.8 0 0.4-0.8-0.7-1.4-0.5-0.3 0.1-1.4-0.6-0.3-0.9 0.7-0.2 1.1-0.6 0.3-0.3-0.8-0.7 0.1-0.3-0.6 0.3-0.8-0.6-0.2 0-0.6 0.5-0.4 0.1-1.1-0.9-0.6-0.4 1.3-0.9-0.1-0.8 0.7-0.9 0.3-0.7-1 0.1-0.3-1-0.5-0.6-1.6-1.8-0.6-0.8 0-0.9-0.6-0.7-0.8-0.9 0.7-1.3 0.3-0.4 0.2-1-0.3-0.5 0.8-1.4 1.1 0 0.7-1.9-0.4-0.4-0.4-1.8-0.7-1.8-0.1-1.4-0.2-0.8 0.1-3.9-0.3-1.3 0-6.2-0.5-6.1-0.1-0.3-1 0.6-2.3 0.6-0.5 1.5-2.4 0-0.6 0.2-2.1-0.3-2.6-0.8-1.6-1.3-1.8-0.7-0.5-0.1-0.9 1-1.3 0.9-0.2 0.3-0.9-0.2-0.6 1.1 0.1 0.3-1.3 0.5-0.6 1.8-1.3 0.5 0.6 0.8-0.3 0.2-0.6-0.6-0.4 0.8-0.7 0.1-1 1.1-1.2 0.9-0.2 1.6-1.5 1.2-1.9 0.7-0.2 0.7-0.8-0.3-1.2 0.9-0.2-0.2-0.7 0.7-1 0.3-1 0.5-0.2 1.1 0.2 0.3-0.2-0.3-0.8 0.1-0.5 1-0.8 0.8-0.3 0.1-0.5 1.7-1.6 0.9-0.1 0.3-0.4 1.1-0.8-0.2-0.5 0.2-0.9 0.4-0.4 0.1-0.8 0.7-0.2 0.9 1 1.9-0.5 1-0.7 0.3-0.9-0.5-1.3-1.8-0.3-1.1 0.3 0.2 0.7-0.4 0.7-0.7 0.3-0.7-0.1-0.1-1.2-1.3-0.7-0.2-1.8 0.5-1.1-0.1-0.6 0.4-1-0.4-1 0.6-1 0.8 0 1.4-3.9 1.1-1.1 0.6-1.5-1.6-1.6-0.6 0.2-0.2-0.9 0.9-0.4 0.2-0.5-0.1-1.1-0.8-2.2-1.7-3-0.4-1 0-0.9 1.2-0.5-0.3-0.8 0.6-1.5-0.2-0.6 1.4-1.4 0.1-0.8 0.8 0.1 1-1.1 0.8-0.5 0.9-0.1 0.2-1.4 1 0.9 2.2-1 0.6-0.6 0-0.7 0.9-0.6 0.8-0.9-0.2-0.6 1.3-0.2 0.2-0.5 0.6-0.1 1.2 0.4 1.3 1.1 0.9-0.4 0.9-0.1 0.6-0.7 0.6-0.2 1.2-0.8 1.1 0.1 0.2 0.5 0.9-0.6 0.3-1.3 0.6-0.1 0.9 1.2 1.2-1 0.4-1.2 0.8-0.5 0.5-1.9-0.2-0.6 1 0 0.6-0.9-0.2-0.8 0.3-0.4-0.9-0.8-0.1-1.4-0.5-0.6 0.1-0.1 0-0.1 0.2-0.1 0.4 0.2 0.1 0.1 1.1 0.4 1.3 0.2 0.5-0.1 0.1 0 1.3-0.5-0.1 0.8 0.7 0.3 0 0.9 0.5 0.4 0-0.1 0.4-0.7 0.3-1.7 0.7-0.8 1.6-0.8 1.9-0.3 1.3-0.5 0.9-0.7 1.2-2.4 1.1 0.1 0.8-0.5 0.8-0.9 0.4-1.2 1.2-1.5-0.1 0.7-0.5 0.8-0.1 0.7 0.1 0.9 2 2 0.7 1-0.3 0.5-1.8 0.6-1 0.8-2.8 3.1-0.3 0.6-0.6 0.5-2 0.4-0.8 0.4-1.1 0.8 0 2 1.2 0.3 0 1.3-1.6 1.8-1.1 0.8 0.7 0.6 1.8-0.5 1.4 0.8 0.6 0.9 0.8 0 1.4 1.4 0.7 0.5 1.4 0.3 1.1 0.5 0.9 0.8 1.9 4.1 0.1 0.9-1 0.3 0.5 1.3 0.3 0.2 1.1 3 0.9 1.7-0.1 0.7 0.7 1.2 0.7 0.5 0 0.4 1.4 2.2 0.8 1.7 0.7 2.1 0.5 0.4 0.5 1.2-0.8 0.8 0.2 1.2 0.9 0.5 0.2 1.4 1.2 0 0.5-0.3 1.2-0.1 0.1 0.4 1-0.4 0.4-0.4-0.2-0.7 1.2-0.1 0-1.3-0.5-1 1.1-0.1 0.4-0.4 0.1-1 1 1.7 0 0.8 1.2 2.1 0.7 0.8 0.7-0.2 0.7 1.5 0.8-0.4 1.2 1.1 0.8-1 1.1 1.2-0.9 1 0.4 0.4 1-0.5 0.6 0.6-0.8 0.4-0.7 0.8 0 1 0.3 0.3-0.3 0.9 1.2 0.7-0.7 1.3-0.2 1 0.5 1.2-0.1 0.7 1.4 0.9 0.5 0.5 0.9-0.1 0.7 0.4 0.4 0.9 0.8 0.4 0.7 0.9z", "29": "M217.3 293.6l-0.5 1.4 1 0.2 0.6 1.4-0.7 1.1-1.4 0.5-0.7 0.9-0.2 0.6 0.2 1.7 1.9 0.1 0.4-0.5 1.1 0.1 0.8-0.6 0.4 0.6-0.1 1.2-0.8 2.6 0.2 0.8-0.3 0.3-0.2 1.6 0.1 1.2 1.3 1 0 0.4-0.6 1.1-0.5 1.3-1.5-0.2-0.1 1.5 0.7 0.1 0.6 0.7 0.1 0.8 0.9 1.2-0.1 1 1.5-0.1 0.3-1.6 1.3 0.3 0.8-0.2 0.7 0.6 1.5-0.2 1.2-1.5 1.3-0.2 0.8 0.7 0.6 0 1.3 0.8 0.3 1.1 0.5 0.7-0.4 0.6 0.5 0.9 0.8 0 0.5 0.4 1.1-0.8 0.5 0.1 0.4 1 0.9 1.2 1.1 0.2 0.2-0.6 1.1-0.1 0.6-0.8 0.5-0.1 0.5 0.9 1 0.4 0.4-0.7 1.3-0.1 0.1-0.7 1.5-0.8 0.2 0.6-0.1 1-0.3 0.7 1.1 0.3 0.1-0.8 1-0.6 0.6 0 0.1 0.9-0.4 0.4 0.5 1.6-0.5 0.7-0.6 0-0.3 1.1 1.2 0.6-0.5 0.7 0 1.5 1.7 0.2 0.3 1-0.2 0.9 1.3-0.1 1.3 0.4 0.2 1.3-0.4 0.6-0.2 0.8-1 0.1-0.1 0.5 0.8 1-0.1 1.6 0.9 0.9-0.5 1.9 0.6 0.6 0.5 1.5 0.3 3.3 0.3 0.2 0.3 1.1 0.7-0.1 0.3 0.4 0.8 0 0.3 0.7 0.4 1.7 1.2 0.5 0 0.4 0.8 0.9 1.6 0.4 0 0.6 1.5 0.6 0.2 0.7-0.7 0.7 0.2 0.5 0.6 0.2 0.5-0.4 0.9 0.2 0.2 0.4 1.3 0.3 1.7 0.8 0.1 1 1 0.2 1.1 1.7 1.1 0.6-0.4 1 0.1 0.5 1.4 0.7-0.2 0.8 0.7 0.1 0.3 1.1 0.6 0.6-0.3 0.5-0.7-0.1 0.1-0.9-1.3-0.2-1.2 0.9-0.1 0.9-0.5 0-1.1 0.8-0.3 0.5 0.8 0.4 0.6 0 0.9 0.9 0.4-0.8 0.7 0.5-0.6 0.5-0.2 0.7-1.2 0-0.1 0.7-0.6 0.7 0 0.5 1.1 0.1-0.7 0.9-0.1 1-0.7-0.1-0.7 0.2 0.2 0.7 0.9-0.2 0.8 0.4-0.1 1.8 1.1 0 1.4 0.6 0.4-0.3 0.7 0.2 0.2-0.7 1.2 0.6 0.2 0.8 1.5 1 1.2-1.6-0.5-0.6-0.1-0.7 0.3-0.7-1-0.4 0.4-2.4-0.9-0.8 0.7-1.1 1-0.3-0.9-0.8 0-0.4 1.9 0.2 0.6-0.6 0.7 0.2 0.6 0.6 0 0.8 0.9 0.3 0.7-0.3 0.6-1.4-0.6-0.3-1-1.5 0.9 0.2 0.8-0.8-1.2-0.8-1.5-0.8 0.1-0.4 1-0.2 0.9 0.3 0.6 0.4 0.2 0.9 0.6 0.2 0.7-0.4 1 0.1 0.4-0.3 1.2 0.1 0.6 0.7 0.2 1-1.4-0.1-0.3 0.6 0.8 0.3 0.9 0.8-0.5 0.3-0.8-0.2-0.1 0.6 1.2 0 0.7 0.5 0.9-0.2 0 0.9-0.2 1.4 0.5 0.3 1.8-1.4 1.3-0.1 0.8-0.3-0.3-1-0.1-1.8 1.1-0.2 1-1.4 1 0.1 0.5-0.6 1.3-0.5 0.1-0.5-0.2-0.9 0.5-0.2 1-1 1 0 0.1 0.5 1.2 0.3-0.6 0.5 2 1.7 0.7 0.2-0.5 2.8-0.6 1.1-0.4 1.7 0.2 0.8-0.2 2 0.7 0.3 0 0.9-0.4 0 0.1 1.5-0.1 0.8-0.7 0-0.2 0.5 0.2 0.6-0.4 0.8-0.2 2.6 0.9 0.7-0.8 0.8 0.6 0.9 0.8-0.7 1.3 0.7 0.3-1.9 0.5-1.4 1.3-0.2 0.7 0.7 0.8-0.3-0.2-0.8-0.7-0.1-0.9-1 0.5-1.3 1.1 0.4 1 0.9 1.6 0 0.1-1 0.8-0.2 0.5 0.7 1.2 0.1 0.4 0.4 1.4-0.8 1 0.7-0.1 1.2 0.3 0.8-0.5 0.3 0.2 0.6 1.1 0.2 0.3 2.1-1.1 1.6 0.5 0.6 0.8 0.1-0.6 0.9 0 1.2 0.3 0.6 1.2 0.2 0.6 0.6 0 0.8 1.2 0.8-0.4 1.4 0.5 1 1.2 0.6 1.1 0.1 1.5 1.5 1.1 0.6 0.6-0.4 0.8-0.1-0.1 1-0.7 0.5 0.6 0.5-0.1 0.6 0.6 0.3 0.7 1-0.1 0.9 1.1 0.5-0.7 1-0.8 0.2-0.5-0.2-0.3 0.8-0.5 0.6 0.2 0.4-1.8 0.5-0.9 1.1 0.3 0.8 0.6-0.6 0.7 0.1-0.2 1.2 1.3 0.7 2 0.3 0.5-1 1.1 1.8 0.6 0 0-1 0.5-0.3 0.3 0.8-0.3 1-0.7-0.1-0.8 0.4-1.7 0.5-2.1 1.4-3.3 1-1 0.6-0.1 0.5-1 0.3-0.2 1 0.8 0.9-0.4 1.2 0.8 0.2 0.4 0.5-0.5 0.8 1.1-0.2 0.4-0.5-0.4-0.8 0.6-2.3 0.5 0.1 0.3 0.8 1.5 0 0.2-0.3 1.3-0.1 0.5-0.5 1.1-0.4 0.5-0.6 1.5-0.3-0.2-0.9 0.5-0.7 0.8-0.2 0.6-0.4 0.8 0.6 0.6-0.2 2.2 0.9 0.7 0.6 0.6-1 0.7 0.1 0.4 0.5 0.8-0.5 0.4 0.6 0.5-0.6 0.8 0.1 0.7 1.3 0.3-0.3 0-1.2 0.6 0 0.9 0.5 0.5-0.3 0.4-0.7 0-1 0.9-0.1 1.7 0.4 1.5 0.5 0.9 0-0.4 1.2-0.7 0.7-0.8 0.2 0.2 1.6-1.7 0.4 0.6 0.9-0.1 0.4-1 0-0.9-0.4-0.8 0.5 0 0.7 0.5 0.8-0.7 0.5-0.1 1.9-0.4 0.3-0.9-0.4-1.9-0.5-0.8 1-1 0.5-1.3-0.1-0.4 0.5-0.1 0.8-0.3 0.5-1.3 0.2-0.7 0.5 0.1 1.1-0.4 0.7-0.5 0.1-1-0.1-1 0.4-0.4 1.1-1.1 0.5-0.8-0.3-1.5 1-1 1.1-1.6 0.5-1 1-1.6 0-1.6 0.3 0.4 1.1-0.3 0.5-1-0.1-0.5 0.2-0.7-0.3-1.7 0.9-0.3 1.2-1.4 1.5-1 0.5-1.5 1-1-0.3-1.2 0.2-0.5 0.3-0.6 1.4-0.4 0.3-1.1 0-1 0.4-0.7 0.6-0.3 0.9-1.9 1.2-1.8 0.4-0.5 1.4-1.4 1.1 0.3 0.7-0.7 1 0 0.5-0.8 1-1.2 0.1 0.1 0.8-1 0.7-0.7 0.1-1.3-0.5-1.2 0.3-0.3 1.1-1.2 0-0.4 0.3-0.6 1.1-0.6 0.5-0.7 1.1-0.2 1.2 0.2 0.8-0.1 0.5-0.8 0.1-0.7 0.4-0.2 0.9 1.2 0.8-0.4 0.9 0.5 0.6 0 1-0.2 1 0.5 1.1-0.1 0.8 0.6 0.8 0.7 1.4 0.2 1.1 0.8 0.4 0.5 1.6 0.8 0.6 0.4-0.2 1.5 1.3 1.1 0.1 0.9-0.2 0.9 0.4 0.2 0.8 2.4-0.5 1.7 0.3 1.3 0.9-0.1 0.7 0.9 0 0.2-0.7 1.1-0.2 1.1 0.1 0.5-0.9 0.8 0 0.5-0.6 1.3 0.2 1.3 0.8 1.3 0.1 0.2-0.7 0.7-0.1 0.1-1.6 1.4-0.9 0.7-1 0.8-0.4 1.9 0.8-0.6 1 0.4 0.7-0.4 1.2 0.7 0.2 0.4 1-0.3 0.8-0.6 0.5 0.5 0.8 0.6 0.2 0.9 0.7 0.3 1.2-0.9 0.2-0.1 2.5-1.3 0.9-0.6 0.1-1 0.5-0.6-0.8-0.8-0.6-1.4 0.4-0.8-0.3-0.9 0.1-0.4 1-1 0-0.5 0.7-1.3 0.4-3.2-0.7-0.5 0.8-0.5 0.3-1.8 0.5-0.7 0-0.4 0.9-0.1 1.5 0.2 0.6 1.8 1.7-0.4 0.8 1.2 0.6-0.7 0.9-1.1 0.4-2-0.1-1.2 0.6 0.5 0.8 1 1.3 0 0.7 0.5 0.1 0.9-0.2 0.6 0.3 0.6-0.1 0.8-0.6 0.6 0.2 0.3 1 0.7 0.6 0.9 0.1 0.5 0.4 0.1 0.8 0.8 1.5 0 1.8 0.2 1.1-0.5 1.4-0.6-0.1-0.3 1.1-1.1 1-1.1 0.5-0.6-0.2-0.9-0.8 0.1-1.8-0.6-0.5-0.4 0.8-0.5 0-0.3-0.8-0.7-0.1-1.1 0.6 0.7 1.4 0.4 0.4 0.2 0.7-0.3 1 0.3 0.2-0.3 1.1 0.3 0.7-0.1 0.8-0.4 0.3 0.3 1.2 0.5 0.6 0.5 1.5 1.4 1.5 0.1 0.4 0.9 0.8-0.4 0.5-0.6-0.1-0.5 2.2-1-0.4-0.5 0.1-1 0.5-0.9 0.2-0.4-0.2-0.7-1.5-0.5-0.3-0.9 0.1-0.3 0.3-0.6-0.4-0.9-0.8 0.4-1.4 0.5-0.7-0.3-1.3-0.5 0.5-1.3 0.3-0.8 0-0.1 0.8-1.5 1.1-0.2 0.4 0.5 0.8-0.8 0.5-1.1 0.2-0.4-0.6-0.1-0.8-0.4-0.5-1.1-0.6-0.4 0.4-1-0.3-0.4 0.6-2-1.5-1.2 0-1 0.5-0.4 0.8-1-0.5-0.8 0.2-0.6-0.4-0.1-1.3-0.3-0.6 0.4-1-0.7-0.8-0.5 0.6-0.1 0.8-0.7 0.1-0.2 0.4 0.4 1.4-0.1 0.3-1 1.2-0.1 1 0.4 0.3 0.2 1.4-0.3 0.5 0.2 0.9-1 0-0.2 0.2-1.9 0.6-0.6 0.9-1.2 0.7-1 0.2 0 1 0.7 0.9-0.2 1.6-0.9 0.4-0.6 0.7-0.4-0.1-1.4 0.8-0.9-0.4-1.7 0.9-0.8 0.6-0.6-0.1-0.1-0.9-1.1-0.8-0.8-0.1-0.2 1 1 0.5-0.2 1.4-0.3 0.4-0.8-0.1 0.3 1.2-0.3 0.5-1.3-1-1.2-0.2-1.1 0.2-0.6-0.6 0.1-0.7-0.2-0.8-0.9-0.7-1.1-0.6-0.6-0.7-1-0.4 0.2-2.2 1-0.9 0.7-1.7 0.6 0.7 1.4 0.5-0.1 0.7 2.3 0 0.2-0.7 0.9-0.6 0.6 0.6-0.1 0.7 0.6 1.1 1.2-0.4 0.1-0.6 0.8-0.1 0.6-1.4 0-1 1.7-0.3 0-1.4-0.6 0.2-0.8-0.3-0.3-0.9-1.2-0.2 1-3 1.1-0.3 0.2-1.2 0-1.5-0.5-0.5-1.1 0.1-0.9-1.4 0-1.5-0.1-0.6 0.7-0.2 0-0.7 1-1.1 0.2-0.6 0.8 0.3-0.1 1.1 0.6 0.5 1.1 0 1.4-0.9 0.2-0.3 0.1-1.4-0.2-0.5 0.7-1.2-0.6-0.5 0.1-1-0.9-0.1-0.4-1-0.7-0.3-0.2-0.6-0.1-1.4-0.5 0 0.4-1.8-0.1-0.5-1.1-1-0.7-0.3-1.5 0.1-2.1 1.3-0.7 1-1.6 0.5-1.1-1.3-1 0.3-0.5-0.2-1.8 0.8-1.1 0.2-3-0.6-0.4-0.3-1.6-0.2-1.3-0.4-0.6 0.1-0.7-0.2-0.4 0.5-0.7-1.4-0.2-1.1 0.9-1.2 1-0.1 0.2-0.5-0.8-0.4-0.9-1.4 1.6-0.4-0.3 1.3 1.5 0.4 0.5 1.3 0.5 0 0.6-0.6 0.4-0.1 2.5-1.1 0.3-1.1-0.6 0-1.2 0.5-1.6-0.3-0.5 0.6-1.7-0.7 0.2-0.9 0.7-0.5-0.7-1.3 0.6-0.6 0.2 0.9 0.9 1.7 0.3-1.1 0.4-1-0.5-0.7-0.1-0.9 1.1-0.7-0.1-0.6-1.3-0.2-3.8 0.4-0.9-0.7-0.5 0.3-0.1 0.6 0.5 0.8-0.2 0.6-0.9 0.2-0.8 0.8 0.1 2.9-0.9 0.4-0.6-0.3-1 1-1.1-0.5-2.3-0.2 0.1-0.6-1.2-0.2 0-1.1-0.4-0.4-1.2 0.1-0.1-1.1-0.3-0.3-0.7 0.3-0.3 1 0.1 1.5 1 1.8 0 1.5 0.7 0 0.2 0.4 0.7 0.2 2.3 0.2 0.9-0.3 0.5 0.2 0.3 0.8 0 0.7-0.9 0-0.1 0.7 0.3 1-1.2 0.3-0.7 1.4-1.5 0.3-0.9-0.5-0.3-0.8-0.6-0.7-1-2.1-0.3-1.2-0.4 0 0.2 1.6-0.8 0.4 0.3 0.6-0.5 1.5 1.3 0 0.1 0.6-0.7 0.6-0.4 0.7 0.2 1-1.4 0.5 0.3 1.2-0.3 1.1-0.7 0-0.4 0.5 1.4 1.2 0.7 0.3 0.5-0.4 0.7 0 1.5 1.5-1.5 1.6-0.4 0.9-0.6 0.7 0 1.9-0.9 0.8-0.1 0.6 0.6 0.3 1.5-0.2 1.3 0.3 0.7-0.3 0.7 0.6 0.4 1-0.9 0.7 0.7 1.5 0.9 0.7 0.4 1.3 0.7 0.4 0.2 1.1 0.5 0.4 0 1.1 0.4 0.4-0.1 0.6-0.6 0.4-0.3 1.1-0.7 0.5-0.9 1.8-0.4 1.7 0.4 0.8-0.2 1.7 0.6 0.1 0.4 1.2-0.2 0.3 0.2 0.9-0.5 0.5 0 0.9-0.5 0.7 0.5 0.3 0.5 1.5-1.1 0.2-0.7 0.6-0.6 1.2-0.6 0.7-1.7 0.8-0.2-0.4-0.7 0.1-0.4 0.7-0.7 0.2-0.3 0.7-0.8-0.2-1.4 0.8-0.4 0.6-1.5 0.2-0.5 1.2-0.9 0.4 0 1.4-0.4 0.7-0.5 0-0.1 0.9-0.3 0.6 0.5 1.3 0.6-0.4 0.7 0.5 0.9 0 0.6 0.8 0.7 0.1 0.7-0.5 1 0.1 0.7 1.1-0.9 0.5 0.8 0.3 1.1-0.4-0.2 0.7-1 0.7-1.6-0.3-0.5 0.7-1 0.7-0.6 0.7-2.1 0.5 0 0.5-0.4 0.6-0.8 0.5-1.5 0.1-0.8-0.3-0.4-0.4-1.4-0.3-1 0.8-0.5 0.8-0.8 0.3-0.5-0.7-0.9-0.5 0.2-0.9-0.6-1.4-0.7-0.8-1.5-0.5-0.6 0.7-0.2 0.7-1-0.2-0.3-0.6-0.6-0.1-0.1-1.1 0.5-0.7-0.1-1.4-0.8-0.5-0.2-0.6-0.6-0.2-1.4 0.1-0.6-0.9 0-0.5-1.4-0.1-0.2-0.9-0.8-0.8-0.5 0.3-0.3 1.2-1.5 0.2 0-0.6-0.5-0.6-0.4-1-1.4-1.9-1.5 0.4-0.6-0.8-1.1 1.2-0.5 0.2-0.5-1.3-1.2 0.1-0.5 0.4-0.7-0.4 0.4-1.7 0.5-0.6-0.8-0.7 0.1-1.1 0.4-0.5 0-1.2 0.3-0.6-0.6-0.3-0.8-0.7-1.6-0.1-0.6 0.8-0.9 0.8-0.5-0.2-0.4-0.7 0.3-2.3-0.3-0.4-0.8-0.1-0.2-0.6-0.6-0.5-0.1-0.5-0.7-0.4-0.4-0.6-0.7-0.2-0.8 0.7-0.5-1 0.4-1.1-0.4-1.2 0.9-1.9 0.3-0.4 0.8-0.3 0.1-1.9-0.4-0.9 0.1-2-0.6-0.8-0.9-0.5 0-1-1.2-0.1 0 1.3-0.3 0.7-0.6 0.4-0.6 0.9-0.5 0-0.8 0.6-1.8-1.2 0.8-2-0.8-0.4-1-0.1-0.8-0.4-0.8-0.7-0.2-0.5-1.2-1.2 0.3-1.3 0.8-1.6 0.8-0.6 0.2-1.1 1 0.3 0.4-0.3 0.1-1 0.8 0 0.7-1.1-0.7-0.4-1.1 0.9-0.6 0-1.2-0.7-0.5-0.6-0.9-0.3 0.7-1 0-1.4-0.4-1.4-1.5 1.1-1 0-0.3-0.6-1.1 1.2 0.4 1.1-0.9 1.1 0.8 0.6-0.4 0.6-1.8 1.2-0.8-0.9-1.1-0.5-1.3 0-0.5 0.2-2.9-0.1-0.8-1.1-0.5-1 0-1.6-1.2 0.2-2.4-0.6-0.5-0.6-1.1-0.7-1.4 2.1 0.3 1.2-0.7 0.5-0.8-0.1-0.3-1.2-0.7-0.8 0.4-1.2-0.2-0.4-0.7-0.2-1.2 0.3-0.9-1.9-0.9-0.2 0 0.5-1.3 0.2-0.2-0.8-0.6 0.3-0.7-1.1 0.9-0.7 0.8 0 0.5 0.5 0.9-0.3 0.4-0.9-0.4-0.2-0.9 0.5-1.4-0.5-0.9 0.1-0.6-0.5-0.5 0.5-1 0.4-0.8-0.2-0.4-0.7-1.2 0-1.1-0.7 0.3-0.8-0.3-0.9-1.1-0.3-0.4 0.4-1.6 0.7 0 0.7-0.9 0.7-1.1 0.5-0.5-0.8 0.2-0.6-0.5-0.2-0.6 0.1-0.8-0.2-0.3 0.8 0.2 1-0.7 0.3-1.2-0.2 0.2-1-0.2-0.5-0.9-0.3-1.3 0.5-1.1 0-1.8 0.8-0.6-0.7-1-0.7-0.6 0.3-0.5-0.5-1.1 0.2-0.5-0.3-1.6 0.2-0.5 0.4-0.8 0.2-1 0.7-1.4 0.7-0.5-0.3-0.3-1-1.1 0.5-0.9 1.3-1.3-0.5-0.7-0.2-1.1-0.5-1.3-0.4-1.7-0.7-0.5-0.5-1.1-1.1-1.3-3.3-1.1-2-0.8-1.4-0.8-1-0.4-0.7-0.7-2.3-0.4-1.9-0.6-3.7-1.3-1.4-1.6-1.6-1.7-1.9-0.5-1.8-0.8-0.9-1.6-1.7 0.1-1 0-1.2 0.3-2.6-0.4-0.3 0.1-2.4 0.1-2.7-0.5-1.4-0.7-0.4-1.5 0.2-1.2 0.6-1.2 0.4-1.4 0-2.2 0.2-0.9 0.2-0.9-0.1-3-1.2-0.5-0.4-0.4-1.2-0.5-0.9-1.4-1.5-0.9-0.6-0.4-0.9-2-3-0.5-1.6-0.1-1.2-0.3-2.3 0.5-1.5 1.7-2.6 0.5-1.1 0.4-1.9-0.2-1.3 0-1.1 0.4-1.6-0.1-3.2 0.3-2-0.5-2.5-0.6-0.7-1.5-0.8-1.4-0.3-1.4 0-3.7 0.6-2.1 0-1.4-0.4-1.5-0.8-1.7-1.5-6.8-3.2-0.5-0.4-0.8-2.2 0.6-3.6 0.1-1.7 0.3-2.8 0.8-2 1-2.7 0.7-1.5 2.7-2.8 5-4.2 1.7-1.6 1.6-2.2 1-1.7 2.7-2 0.3-0.6 2.8-7.6 1.7-2.6 1.7-1.9 2.5-1.8 0.8-0.6 1.1-1.4 1-1 2.3-0.5 1.6-0.5 1.7 0.1 1.1 0.5 3.4 3.4 0.4 0.6 0 1.8 0.2 1.2 2 3.7 0.7 1 2.1 0.5 2.2 0.2 0.8-0.1 4.3-2.2 6-2.6 2.2-0.7 4.7-0.9 4.1 0 1.9-0.2 2.5 0.1 1.3-0.5 2.3-1.1 3.2-1.2 1.3-0.6 0.5-2.7 0-0.8 0.7-2.9 1.2-1.7 1-1.6 0.8-0.7 3.6-3 1.1-1.3 0.9-0.8 0.9-1.7 3.1-10.3 0.9-1.3 2-2.5 0.6-0.6 1.5-0.6 2.5-1.3 2.3-1.5 2.2-1.5 3.1-1.7 6.3-2.8 0.6-0.4 1.9-4.6 2.7-3.3 2-3.8 1.8-3.9 1.1-2 1.6-3 0.9-3 0.5-2.1 1-3.3 0.6-2.6 0.3-0.7 0.6-2.8 0.2-0.5 0.8-0.5 6.8-2.8 1.4-0.4 1.9-0.6 1.5-0.4 1.4-0.5 1.5-1.5 2.9-2.4 1.5-1.1-0.2 2.1 0 0.6-1.5 2.4-0.6 0.5-0.6 2.3 0.3 1 6.1 0.1 6.2 0.5 1.3 0 3.9 0.3 0.8-0.1 1.4 0.2 1.8 0.1z", "30": "M703.3 402.2l-0.7 0.5-0.5-0.3-0.2-0.8-0.9-0.6-0.9 0.7-0.7-0.2-0.7-0.8-0.9-0.2-1.7 0.4-0.7 0.3 0 1-0.9 0.9-1 0.5-0.4 0.9-0.7 0.3-0.8-0.3-1.3-0.4-0.7 0-0.2-0.3-0.7 0.1-0.1-0.4-0.6-0.5-0.2 0-0.7-0.1-1.6 0.4-0.6-0.5-1.2 0-0.7 0.7-0.7 0-1.8-1 0-0.9-0.6-1 0.3-0.3-0.6-0.6-1.4-0.2 0.5-1.1 0.1-1.4 0.7-1.5 0.5-0.4-0.3-0.8-0.6-0.6 0.3-1.6 1-0.7-0.8-1.4-0.4-0.4 0.1-0.9 0.5-0.4 0-1.1 0.5-1.2 0.6-1 0.7-0.5 0.2-1.4 0.8-0.7 0.4-1-0.2-0.5 0.3-1.4 0.7-0.3 0.1-1.1 0.5-0.6-0.4-0.7 0.6-1.1-0.2-0.6-0.6-0.1-1-0.8-0.8-0.2-0.5-1.2 0.5-1-0.2-0.5 0.6-0.5 1.1 0.8 0.8-0.1 0.3-0.8 1 0.1 0.3 0.6 1-0.4 0.3-0.3 0.8-0.1 1.1-0.7 0.9 0 0.9 0.4 0.4-0.2 0.9-1 1.2-0.4 0.7-1 0.6-0.2 1.1 0.5 0.7-1.1 0-0.7 0.7-0.1 1.5-0.7-0.3-0.9 0.4-0.1 0.6 1 1 1.2 0.6-0.2 2.3 0.2 1 0.9 0.6 0.7 1 0.6 0.4 1-0.1 2.3 0.7 0.2 0.8 1.2 0 2.2-0.9 0.8-0.1 1.5 0.4 1.5-0.6 1.5 0 1.2-0.8 1-0.4 0.1-0.2 1.5-0.7 1-0.6 0.4 0.3 1.1 0.4 0.3-0.1 1.3 0 1.5 0.3 0.4 0.5 1.6 1 1 0.7-0.3 0.7 0.8 0.4 1.1 1.1 0.4-0.4 0.8-0.4 1.2-0.9 0.6-1.3-0.2-1.1 0.6 0 1.1-0.6 1.5-0.9 0.3-0.2 0.9z", "31": "M380.9 1046.1l0.8 0.6-0.6 0.9 0.4 0.9 1.7 1.5 0.6 0.9-2.5-1.6-1.6-0.6-1.9-0.5-0.5-0.4 0.5-0.4 1.6-0.1 0.8-0.9 0.7-0.3z m34.2-142.8l0.5-0.1 0.1 1.1 0.5 2.5 0 1.2-0.3 1.4-0.9 3.2-0.3 0.7 0.1 1.7-0.7 1.3-0.1 1.1-0.7 3.2-0.4 2.6-0.1 1.9 0.3 0.9-1.4 4.3-0.5 1.5-1.1 3.1-0.3 1.9-0.5 0.9-0.9 1.4-1.6 1.9-0.9-0.4-0.3 0.9 0.5 0.5-1.1 1.7-0.1 0.4-1 0.4-0.1 0.6 0.3 0.3-2 3.1-1.6 2.5-1.3 3-0.3 1.4-0.4 0-0.6-0.3-0.2-0.5-0.2 0-0.2 0.2 0 0.5-0.5-0.1-0.1-0.1-0.2 0.2-0.1 0.3-0.6 0.2 0 0.4-0.2 0.3-0.3-1.4-0.6-0.3 0-0.4 0.1 0 0.3 0.2 0.6-0.3 0.3-0.2-0.8-0.3-0.2 0.3-0.2 0-0.4 0-0.5-0.7 0-0.7-0.8 0.3-0.3 0.4-0.3-0.1-0.1 0.2-0.2 0.6 1.8 0 0.2 0.8-0.6 0.2 0 0.7 0.8 0-0.1 0.5 0.7 0.8-0.5 0.6-1-0.2-0.7 0.1 0 0.4 1.2-0.3 0 0.7 0.4 0.2 0.8 0 0.9-0.4 0.4 0.6 0.6 0.1 0.5 1.1-0.2 1.4-0.6 2-0.5 3.1-0.2 1.3 0.1 1.1 0.5 1.5 0.5 1.1 0.6 1.2 0.8 3.1 0.3 0.2-0.1 1.2 0.1 1.1 0.4 1.7 0.3 3.3-0.1 5.6-0.2 0.1-0.5-0.1-0.4-0.2-0.5 0.1-0.2-0.1-0.2 0-0.3 0.4-0.5-0.2-0.5-0.1-0.6-0.2-0.4 0 0.1 0.4 0.2 0.2 0 0.1 0.1 0.1-0.1 0.3 0.2 0.2-0.2 0.2-0.4-0.3-0.4 0-0.4 0.2 0.4 0.3 0.2 0.1-0.5 0.4-0.1 0.1 0.2 0 0 0.2 0.4 0.1-0.1 0.2 0.2-0.1 0.1 0.1 0 0.1 0.5 0.1 0.2 0.2 0.2 0.3 0.2 0.1 0.5-0.2 0.1 0.2-0.2 0.2 0.2 0 0.3 0.1 0.1 0.4 0.6 0.4-0.5 0.1 0.1 0.3 0.3 0.2 0.2 0.1 0.1 0.1 0.1 0.3-0.1 0.2 0.8 0.1 0.5-0.1 0 1.9 0.2 6 0.1 1.3 0.2 4.6 0.2 1.7 0.5 2.1-0.6 0.7-1.1 0.4-1.3 0.1-1.8-0.1 0.7-0.9-0.1-0.4-1.1 0.1-0.3-0.3-1.2-0.2-0.5 0.2-0.8 0-0.7-0.9-0.5 0.9-1 0.6 1.2 0.1 1.6 0.3 0.7 0 1.4 0.6-6.8-1.1 0.7-0.4 0.4-0.6 0.9 0.2 0.1-0.4-1.4-0.3-0.5 0.4 0.3 0.4-1.4 0.2 0.4 0.3-4-0.3-0.5 0.1-0.4 0.7-1.5 0.5-1.1 0.7-0.9 1.1 0.5 0.5-1.4 1.2 0 0.9-0.4 0.2 0.1 0.8-0.2 0.9 0.4 0.9 0.5 0.3 0.3 0.8-0.7 0.6-1.7 2-1.2 1.2-0.1 0.4-0.9 0.9-0.3 0.7 0.2 0.4-0.6 0.9-0.5 0.3-0.5 1-0.6 0.9-0.7 0.3-0.7 1.1-1.3 1.6-0.3 1.1-0.5 1-0.8 0.7-0.5 2.4-0.1 1.5-0.6 0.2 0.1 0.7 1.2 2 1.8 1.9 1.1 0.9 1.5 1 1.4 0.4 1.3-0.1 0.9 0.4-1.7 0.4-0.9 0.3-1 0-1.3-0.3-1.6-0.2-0.9 0.1-1 0.2-0.6 0.6-0.9-0.3-0.7 0.1-3.5 1.3-0.8 0.2-0.6 0.3 0.1 0.4-1.8-0.2-0.6 0.4-0.2 0.5 0.3 0.4-1.3 0.2-1.3 0.7-0.8-0.2-1.4 0.1-0.7 0.2-1.1 0.1-1.6 0.5-1 0.8-1.3 1.1-1.2 0.9-2.5 1.6-0.9 0.8-0.9 1.5-0.1 0.8-0.4 0.5-0.2 2-0.1 0.7 0.1 1 1.2 0.3 0 0.4-0.8 0.2-0.4 0.4-0.3 0.8-0.7 0.8-0.2 1.1-0.4-0.1-0.2 0.7-0.3 0.1 0 0.9 1 0.3 0.3 0.5-0.6 2.5 0.3 0.6-1.1 1.2-1.1 1.4-0.4 1.4 0.4 0.4-1.5 0.4-1.4 0.7-0.9 0.6-0.1 0.3-1.8 0.9-0.4 0.5-1.1 0.5-1.4 0.4-1.1 0.9 0 0.5-1.4 1.1-0.9 0.3-3.5 0.5-1.3 0.5-0.5 0.6 0 1-0.3 0.4-0.5 0-4.3-0.9-2.1-0.6-1.5-0.2-0.3-0.7-0.7-0.5-1-0.3-1.1-1.1-1-0.6-0.8-0.9-2.4-1.8 0.4-0.1 0.6-0.7 1 0 0.2-0.8-0.7-1.1 0.6 0 0.9-1.1 0.3-0.9 0.7-0.1-0.6-1.7 0.5-0.6 0.6 0.6 0.8-0.5 0.6-1.2-0.4-1.2-0.8-0.9 0-0.5-1-1-0.7-2-0.4-0.3-0.4-1 0.7 0 1.3-1.4 0.1-0.7 1-1.2-0.2-1.3-0.6-0.5-0.6-0.3-0.4-1-0.5 0.2 0-1.1-0.6-0.5-0.1-0.6-0.8-0.7-0.1-0.4 0.7-0.9 0.9-0.3 0.5-0.7 0.1-0.8 0.5-0.6 0.7-0.4 0.7-0.9-0.1-1.6 0.6-0.6-0.3-0.6 0.3-1.3 0-1 0.7-0.6 1.1-1.5 0-0.8 0.3-0.6-0.2-0.5 0.4-0.8 0.6-0.7 0.7 0.2 0.5-0.8-0.1-0.4 0.4-0.6-0.9-0.4-0.7-0.6 0-0.5-1-0.9-0.5-0.9-0.6 0.2-0.9 0.7-1.3-0.2-1.3-1.2-0.4 0.3-0.6-0.1 0-0.5 0.3-1.1 0.5-0.5 0.4-0.9 0-1 0.6-0.2 0.1-1.2-0.1-0.8 0.9-0.3-0.5-0.9 0.1-1-0.8-0.8 0.2-1 0.6-1 0.6-0.7 0.3 0.1 0.4-0.8-0.4-0.3-0.3-1 0.3-0.5-1.5-1.8-0.4-0.2-0.2-0.8 1.4-0.8 0.8 0.3 0.3-0.6-0.1-0.9 0.2-0.9 0.6-0.9-0.4-0.6-0.6 0-0.1-1-1.2-1.8 0.3-1.2-2.1-0.3-1.6 1.3-1.4 0.5-1 0.7-0.2 1-0.7 0.2-1.3 0.7-0.7 0.1-1.1-0.4-0.6 0.2-0.6-0.3-0.3-0.8-0.7-0.4 0-0.5-1.1-0.1-0.4-0.4 0.3-1.5 0.4-0.7-0.8-1 0.2-0.2-0.5-0.7 0.3-0.9 0.1-1.8 0.4-1.3-0.2-0.3 0.2-1.6-0.5-0.2-0.4-0.9 0-0.4 2.3-0.1-0.1-1.2-0.5-0.3 0.7-1.2 0.6-1.5 0.2-0.7-0.3-1-1 0-0.8-0.6 0.3-0.3-1-1.3-1.1-0.3-0.4-0.4-1.4 0.1-1.1-0.7-0.5-0.1-1.1-0.6 0.3-1.4 0.6-0.7 0-0.7 0.4-0.6 0.7-0.5 1.6 0.3-0.2-0.8-0.5 0-0.1-0.6 0.4-0.7-0.4-0.3 0.2-0.6-1.5-0.8-0.3-0.9 0.7-0.7 0.5-0.2 0.1-0.8-1-0.8-2.5 1.6-0.7-0.4-0.8 0-2 0.2-0.5-0.4-1.4 0.1-0.4 0.7-0.3-0.7 0.1-1.1 2.3-1.1 0.9-2-0.1-1.1-1 0.2 0-0.5-2.1-0.7-1.3-1.2 0-0.7-0.6 0.2-1-0.7-1-0.3-0.4 0.4-1.5-1-0.7 0.1-0.6 0.4 0.2-1.2-0.4-0.8 0.3-0.2-0.6-1.4 1.6-1 0.7 0.4 0.2 0.6 1-0.9 0.3 0.4 1.2-0.5 0.3-1 1.4-0.1 0.5-0.3-0.4-0.9 0.9 0.1 0.8-0.8 1-0.7 1.3 1 0.4 2 1.9 0.4 0.6-0.1 4.3-0.1 2.2 0.3 0.7 0.5 0.5-0.6-0.7-1 0-0.7 0.8-1.7 0.9-0.9 0.2-1.5 0.5-0.6 1.5 0.1 0.5 0.6 0.5-0.9 1-0.4 0.7 0.2 0.6 0.6 0.7 0.2-0.4 0.5 0.9 1.2 0.7 0 0.6-1.3 0.8-0.4 0.9 0 0.9-0.3 1.2-0.1 0.5-0.6 1.3 0.4 0.2-0.3 1.4 1.4 0.7-0.2 0.3-0.5 0.9 0.1 1.1 0.5 0.6-0.4 0.9-2.3-0.1-1.8 0.7 0 0.5-1.4 1.2 0.3 0.8-0.3 0.9 0.2 2.1-0.5 1 0-0.1-0.5 0.9-2 1.1-1.5 0.9-0.5 0.7-1.4-0.9-0.7-0.1-0.7-0.4-0.7-2.4-0.7-0.9 0.1-0.9-0.3-1.6 0.2-0.6-0.2-1 0.4-0.9-0.3-0.6-0.4 0.3-0.8-0.4-0.4 0.2-0.9 0.8-0.3 0.9 0.1 0.2-0.4 0.6-0.1 0.5-0.5 0.4-0.9 1.2-1.1 0.4-1.8 0.3-2.5-0.2-0.3-0.7 0.7-0.8-0.1 0.9-0.8 0.1-0.4-0.9-0.1-0.3-1.8 0.4-0.9 0.1-0.8 0.5-0.5-0.3-0.8 0-0.5 2.2-0.6 0.6 0.1-0.1 0.7 0.9 0 0.3-0.8 0.5 0.4 0.3-0.7 0.8-0.1 0.4-1-0.1-0.5 0.6-0.2 0.3-0.4-0.5-0.5 0.6-0.7 0.4-1.4-0.6-0.3 1.3-0.7 0.2-0.4 1.9 0.1 0.2-0.3 0.9-0.3 0.5 0.8-0.5 0.3-0.2 0.7 0.8 0.4 0.3-0.6 0.6-0.3 0.8 0.9 0 0.6 0.7 0-0.3-0.7 1-0.9 1.4 0.4 0.8 0.9 0.9 0.6 0.2 0.6 1.3 0.3 0.3-0.2 1.9 0.5 0.2 1.1-0.3 0.6-0.8 0.3 0.2 0.7 0.9 0 0-0.5 1.3-0.1 0.8 1.4 0.7 0.1 2 1.3 3.1-0.2 0-1.6 0.5 0.1 0.7-0.3 0-2.2 0.7 1 0.3 0.8 1-0.6-0.2-1.1 0.4-0.8 0.7-0.5 0.3-1.4 0.3-0.2-0.2-0.9 0.5-0.7 0-0.6 0.7-1.4 0.7-0.2-0.9-1.9 0-0.3 0.7-0.7 0.4-0.5 1.4 0.4 0.3-1.8 1.3 0.4 1.3-0.3 0.8-0.7 1 0.2 1.7 0 0 1.7 1.1-1.7 1.1 0.2 1.2-0.5 0.7 0.7 1.8 0.7 0.5 0.8 0.5 0.1 0.7-0.4 0.5 0 1.2 0.5 0.6-0.2 0.2-0.8-0.2-0.6 0.8-1.2 0.7-0.3 0.4-1.3 1.5-0.1 0.1 0.6 0.9 0.2 1.7-0.4-0.1-1.3 0.5 0.2 0.3-0.7 0.5-0.3 1.2 0 0.1-0.8 0.8-0.3-0.3-0.5-0.9 0.7-0.1-0.9 0.4-1 0.1-0.8-0.6 0.1-1-0.6 1.4-0.7 1.3-0.1 1.5 0.4 1.3 0.1 0.2 1.1 0.8 1.1 0.7 0 0.5-0.7 0.7 0.3 0.4-0.5 1.2-0.3 0.5 0.9-0.4 0.7 0.8 0.5 0.2 0.7 0.5-0.4 0.6 0 0.4 0.7 1.3-1.2-1-0.5-1.1-0.8 0.9-0.5 0.2-0.8 0.9 0.7 0.7-0.8 1.7 0.1 1.8-1.1 0.8-0.1 0.9-1.3-0.6-0.4-0.1-0.7 1.1-0.5-0.1-1.1 1.2-0.3 0.3-1 1.1 0.1 0-0.5-0.6-0.1-1-0.9 0.6-0.2 0.3 0.3 1 0.1 0.8-0.6 0.2 0.4 0.1-0.1 0.3 0.2 0.3 0.5 0.1 0.2 0.7 0.1 0.5 0.2 0 0.1 0.4 0.3 0.2 0.2 0.2 0 0.2 0 1 0.1 0.8-0.2 1 0.6 0.5 0.6 0.3 1.2 0.3 0.2-0.1 0.7 1.4 0.6-0.1-2z", "32": "M822.1 502.6l0 1.6 0.9 0.9-0.1 0.7 0.6 1.1-0.3 1-1.7 4.2 2.8-0.1 0 0.2 0 0.2 0 0.1 0 0.2 0.1 0.1 0 0.2 0.1 0.1 0.3 0.3 0.2 0.1 0.5 0.8-0.1 0.2 0.1 0.4 0 0.4 0.1 0.5 0.1 0.3-0.2 0-0.1 0.1 0 0.2 0 0.4 0.1 0.4-0.1 0.1 0.1 0.2 0 0.2-0.1 0.9-0.4 0.4 0.2 0.3-0.1 0.2-0.1 0.1 0 0.5 0.1 0.2-0.1 0.1 0.2 0.4-0.1-0.1-0.1 0.1 0.4 1-0.3 0.6-0.2 0.2 0 0.3 0 0.1 0 0.9 0.3 0.3 0.3 0.2 0 0.6-0.2 0-0.1 0.5-0.1 0.1 0 0.2-0.1 0.1 0 0.1 0.1 0 0.1 0.3-0.1 0.1 0 0.1-0.4 0-0.2-0.1-0.2-0.1-0.1 0-0.2 0.1-0.4 0.9 0.1 0.3 0.1 0.2 0.1 0.2 0.1 0.3-0.2 0.1-0.4-0.1-0.2 0.4 0.1 1.6 0 0.9 0.1 0.4-0.7 0.2-0.3 0.5 0.2 0.7-0.6 1.2-0.5-0.2 0.1-1.2-1.2-0.9 0-0.8-1.1 0.3-1.5 2.1-0.5 0-0.1 0.9-0.6 0.3-1.2-0.6-0.3 0.1-0.8-1.1-0.7-1.6-0.7 0.1-0.2 1.1-0.5 0.6 0.5 2.4 0 0.8 0.3 0.7 0 0.9-0.1 1.4 0.5 0.8-1.2 1.3 0 0.8-1.3-0.1-1.1 1-0.7 0.4-0.2 0.9-1.2 1.5-0.7 1.1-0.6 1.7 0.2 0.8 0.5 0.5-0.1 0.5 0.4 0.7 0.5 2.1-0.1 0.3 0.8 1.5-0.4 0.6-1.6 0.4 0.3 1-0.5 0-0.5 0.8-1 0.7-1-0.2-0.4 0.5-1 0.1-0.8 0.7-0.3 0.6-0.7-0.2-1.4-0.7 0-0.5-0.6-0.4 0.3-1.3-0.6 0 0.1-1-0.8-1.6 0.1-0.6-0.7-1.1 0.2-1.3-0.5-0.6-1-1.5-0.1-0.5-1.2-0.1-0.9 1.3-0.3 1.6 0.1 1 0.7 1.7-0.1 0.5 0.5 1.3-0.7 0.3-0.8-0.5-0.9-1.4-0.5-1.8-0.3-0.3 0.1-2.1-0.2-1.4-0.7-1.4 0.5-0.4-0.2-0.5-0.6-0.2 0.4-1.3-0.6-0.4-0.3-0.8 0-0.9-0.8-1.4-0.2-1.5-0.9-0.4 0-0.5-0.8-0.4 0.2-0.8-0.4-0.1-0.1-1-0.9-0.7-0.2-1.3 0.5-1 1 0.2 0.1-1.2-0.3-0.4-1.4 0.1-0.1-1.2 0.5-1.1 1.4 0 0.4 0.5 0.3-1.1-0.1-0.9 0.3-0.7 0.6-1.1-0.6-1.5-0.2-0.7 0.6-0.3-0.2-0.6 1.1-0.1-0.4-0.8 0.6-1.2 0.6 0.3 0.2-1 1.9 0.5 0.6 0.3-0.2-1.1 0.6-0.8 0.2-0.9-0.7-1.1 0-1 1.2-0.1 1.8 0.5 0.9 0 0.2 0.3 0.8 0.1 0.9 0.4 1.7-0.1 0.5-0.6 0.8-0.3 0.3-0.5-0.2-0.9 0.3-1.1 0.5-0.7-0.4-1 0.7 0.2 0.5 1.5 0.9 0.7 1 0.4 0.8-0.1-0.7-3.9 2.5 1.4 0.9-0.4 0 0.9 1 0.8 0.3 1 0.3 0.4 0.7-0.2 0.1-1.1 1-3.6-0.7-2.5 1.2-0.8 0.5 0.3 0.1 0.6 0.7 0.4 0.1-0.6-0.6-1.6 0.7-0.4 0.3 0.4 2.2 0.2 0.8 0 0.8-0.3 0.6-1 0.1-0.5 1.1-0.3-0.5-1.1-0.1-0.7 0.2-1.2-0.2-0.5 0.6-0.3 1.2 1 0.8 0.1z", "33": "M396.3 334.9l0.4-0.1 0.6 0.6 0.1 0.3 0.4 0 0.1 0.2 0 0.2-0.3 0.2-0.2 0.4 0.2 0.3 0 0.2-0.1 0.4-0.1 0.2-0.2-0.2-0.2 0.6 0.7 0 0.1-0.2 0.2-0.1 0.1 0 0-0.3 0.3-1 1.1 0.3 0.7 0.3 0 0.3-0.8 0.1-0.2-0.1 0 0.7 0.7 0.3 0.4 0 0.5-0.2 0.2 0.1-0.4 0.5 0.1 0.2 0.3 0.3 0.4 0.4 0.2 0.4 0.2 0.8 1 0.6 1.2 0 0.9-0.8 0.9-1.8-0.5-0.6 1.1-1.4 0.5 0.2 0.1 0.2 1.5-0.1 1.8 1.8 1.6 1 1.1-0.1 0.5 0.6-0.3 0.5 0.8 0.8 0.5-0.1 0.8 0.5 0.3 1.3 1.2 0.8 0.4 0.6 1.4-0.4 0.8 0.2 0.8 0.6 0.4 1.1 1.2 0.9 0.5-0.3-0.6-3.5 1.2-1 1 0.1 0.7 0.4-0.3 0.7 0.9 0.3 0.2 0.5 1.3 0.2 0.6-0.3 0.4 0.9-0.1 0.6 0.4 0.7 0.9 0.7 0.8-0.2 1 0.3 0.1 0.6 0.7 0.3-0.2 0.5 1 0.3 1.4 1 0.7-0.5 1.1 0.4-0.2 0.5 0.1 0.8 1.3 0.4 1.2 0.8 0.7-0.8 0.5 0.7 0.7 0.4 0.4 0.6 1.2 1 4.4 1 0.8 1.4 0 1.3 1.6 2.1 1.4 1.5-0.1 2.5 0.5-0.3 1.3-0.1 0.1-1.3 1.3 0.1 1.2 0.5 0.1 0.8 1.2 0.9-0.2 1.3 2.3 1.3 3.3 2.2 2 0.3 3.5 3.2 1 0.2 1.4 1.1 0.9 0.6 0.9-0.2-0.1-0.6 1.5-2.1 0.8 0 2.7 0.2 0.7 1.1 1.1 1.2 1-0.1 1.9 0.9 0.8 0.9 0.7 0.4 1.7 1.4 2.2 1.2 1.2 1.5 1.6 0.9 0.8 0.1 1.5-0.5 0.9 0.2 2.1-0.8 0.5 0.1 1.6-0.5 1.4 0 0.4 1.1-0.1 1 0.8 0.8-0.2 0.9 0.8 1.1-0.6 1.6 0.4 1-0.5 0.7 2.3 0.3 1.1-0.2 1.2 0.1 2-0.1 0.9 1.3 2.7 0.7 4.5-0.3 0.8 0.1 0.7 1.1 2.1 1.6-0.2 0.7 1 1.2 1.3 0.1 0.7-0.3 1.2-1.4-0.1-0.5 0.7-0.6-0.8-1.4 0.7-0.6-0.5-0.9 7.7 0.4 7.4 3.8 0.9 0.8-0.3 0.6-0.7 0.3 0.9 0.6 1.1-0.6 0.7-0.1 0.5 0.5-0.2 0.9-0.7 0.6 0.2 1 0.2 0.1 1.3 0.4 0.5 0.4 0.1 0.3 0.4 0.6 0.3 0.9 0 0.1-0.6 0.5-0.6 0.9 0.1 0.4-0.1 0.2-0.3 0.2 0 0.7 0 0.5 0.2 0.1 1.1-0.2 0.9-0.5 0.3 0.2 0.2 0.3-0.1 0.3-0.9 0.6 1.1 0.9 0.4 0 0 1 0.3 0.6 0.2 0.5-0.4 0.2 0.2 0.2-0.1 0.5 0.2 0.2-0.3 0.2-0.1 0.3-0.1 0-0.2 0.2 0.1 0.1 0.6 0.4 0.1 0.6-0.2 0.2 0.1 0.2 0.1 0.1 0 0.1 0.3 0.3 0.6 0.5 0.4-0.2 0.2 0.2 0.2-0.4 1.1 0.1 0.3 0.1 0 0.4-0.3 0.7 0.7 0.6 0.6 0.2 0.2-0.5 0-0.2 1.2-0.7 0.4 0 0.5 0.2 0.3 0.2 0.2 0.8-0.3 0.7 0.2 0 0.1 0.5-0.1 0.6-0.3 0.6-0.5 0.7 0.6 1 0.4-0.1 0.4-0.3 0.4-0.3 0.7-0.1 0.3 0.6 0.4 0.8 0.2 1.1 0.4 0.2 0.5 0 0.5 0.1 1.3 0.3 0 1.1 0.4 0.6-3.1 0.5-0.9-0.1-0.9 0.7-2.4-1-1.2 0-0.5-0.5-1.6 0-0.8-0.1 0.1 1.1-1.2 1.9-0.1 0.7-1.6 0.7-0.9-0.3-0.3 0.8-1.2-0.5-0.9 0.3 0.1 0.4-0.1 2.2 1.5 0.4 1.2 0.1 0.3-0.4 0.9 0.2 0 0.4 0.7 0.9 0.6 0.2 0.2 0.4 1.9 0.2 1.9 0.5-0.2 1.3 0.5 0.8-0.3 0.5-0.1 1.2-0.4 0.5-1.5-0.1-0.1 0.8-0.6 0.1-0.7 0.5-1.3-0.2-1.1 1.6 0 0.4 0.9 0.6-0.4 0.7 0.9 0.5 0.2 1.2 1.4 0.1 0.9 0.8 0.7 1.1 1 0.8 0.2 1 0.7 0.4 0.3-0.4 1.3 0.6 1.8 1.4 0.7 0 1.3-0.5 1.2 0.8 0.8 0.3 0.7 1.5 1.9 0.1 0.7 0.6 0.8-0.2-0.1 1.7 0.7-0.3 1.4 0.8 1.1 1.1-0.7 1.2 0.9 0.7-0.5 0.4-0.5-0.3-1.4 0.1 0.1 1.3-0.2 0.7-0.7-0.4-0.6 0.6-0.9-0.5-0.8 0.2-0.6-1.1-0.8 0.1 0 0.7-0.8-0.2-0.2-1.1-1.4-0.6-1 0.3-0.2 2.4-1 0.4-2.5-0.1-0.6-0.3-0.2-1.2-0.9-0.6-0.6-0.2-1.4 0.1-0.9 0.4-0.4 0.6 0.3 1.7-0.1 0.5-2.1 0.9-2.4 1.8-0.8 0.2-0.9 1.4-0.7 0.2-0.1 0.6-0.7 1.1-0.6 0.4 0.2 1-1.2 0.2-0.2 0.9-0.5 0.4-1.2-0.2-1.3 0.3-0.8 1-1 0.2-1.3 1.3-0.3-0.1-1.3 0.5-0.9 0.2-1.3 1-0.9 0.2-0.7 1.1-0.6-0.3-1.2 0.4-0.7 1.6-0.9 0.4-0.4-0.1-0.2 1.5 0.3 0.4 0 1.5-0.4-0.1-0.6 2.4-0.2 0.4 0.1 0.8 0.8 0.2 0 1.8 0.5 0.3 0 1.6-0.2 0.4 0.5 1.5 0.8 1.1 0.2 0.8-0.3 1 0.8 0.4 0.8 0.7 0.6 0.9 1-0.2 0 1.2 0.3 0 0.8 1-0.5 0.4 0 0.6 0.6 0.4 0.6 1-0.6 0.5 0.3 0.6-0.3 1.4-0.8 0.2 0.2 0.6-2.5 0.5-1.1 0.5 0 0.8-0.4 0.9 0.6 0.7 0 0.9 1 0.3 0.5 1.2-0.3 0.9-1.1 0.4-0.9 0.9 0.7 0.8 0.2 1-0.9 1.3 0.1 1.1-0.7 1.7-0.3 1.1-0.9 1-1 0.9-0.6 1.1 0 0.9-2.1 1.2-0.1 1.1-0.8 1.5-1.5 0.4-0.6 0.8-1.4 0.4-0.8 0.1-0.9-0.3-1.8 0.2-1 0.2-0.5-0.1-0.5-0.6-1.5-0.7-0.6-0.6-0.5-0.8-1-0.6-0.4 0-0.3-0.5 0.1-0.9-1.9-0.4-0.2-0.7 0.5-0.5 0-1.1-1-0.3-0.6 0-0.2-0.6-1.3-1-0.2-0.4 0.4-0.9 0.6 0.6 1.1 0.2 0.1-0.7 0.5-0.4-0.4-2.1 0.8-0.5 0-1.2 0.5-0.9-0.1-1 0.1-1.1-0.1-0.9-1.4 0.1-0.4-0.6 0.2-1.1 0.4-0.4-0.1-1.9 0.5-0.9-0.7-0.5 0-1.6 1 0.6 1.9-0.5-0.2-1.7-0.9 0.1-0.1-1.7-1.3-0.2-0.9 0.2-0.4-0.3 0.2-1-1.1-0.9-0.9 0.5-1.7 0.5-0.5 0.4-1.5 0.4-0.4-1-1.1 0.1-0.3-0.3-1 0.2 0-0.4-0.5-0.6-0.4 0-0.7 0.8 0.4 1-0.3 0.8 0.2 1.5-1.7-0.2-0.5-0.6-0.5-0.2-0.7 0.4-0.4-0.6-0.2-1.4-0.8-0.6-1.4 0.3 0-0.6 0.5-0.5-0.1-1.9-0.4-0.4-1.1 0 0.4-1.3-1.2-0.1-0.4 0.3-1-0.4-0.7 0.4-0.4-0.6-0.6-0.5-0.6 0-2-1.1-1.4 0.4-0.1 0.4-1.2-1.1 0.1-0.5-0.9-0.4-0.1-0.8 0.4-0.6-0.3-0.8 0-1.5-1-0.8-0.9-0.1-0.6-0.5-1.3 0.3-2.6-1.6-0.3 0.6-0.8-0.2-0.2-0.8-1-0.4-0.9 0.7-0.9-0.8 1.2-1-0.5-0.7-0.8 0 0-0.5 0.9-0.7-0.5-0.4-0.8-0.1 0.2-0.6-0.7-0.5-1.1 0.4-0.7-0.1-0.1 0.6 0.6 0.2-0.3 0.6-0.9 0.1-0.5 0.4 0 0.7 0.5 0.4 0.1 1-0.4 0.3-1.6-0.8 0-0.7-0.3-0.7-1.3 0.3-0.8-0.7-0.6-0.9-0.7-0.2-2.1 0.3 0.3 0.4-0.6 0.5 0 0.9-0.4 0.4 0.4 0.7 0.1 0.7-0.5 1.1-0.9 1.3-0.6 0.4 0.3 0.7-0.4 0.2 0.2 1.2-1.5-0.7-0.2 1-0.5 0.6-0.5 0.8-1.3-1.1-0.4-1.1-1.7-0.1-0.9 0.6-1.6 0-0.6-1.2-1.3 0.6-0.3 0.3-1.1 0.4-1.2 0-0.7-0.3-0.1-1.1 0.7 0 1.1-1.1-0.8-1 0.4-0.8 1.1-0.8-0.3-0.6 0.3-0.5-0.2-0.8 0.7-0.7 0.6-0.9-1.2-0.9-1.1-0.1 0.2 0.9-0.4 1-0.4 0.4-0.7-0.6-0.6 0.4-1-0.2-1.2 0.5 0.1 0.9 0.9 0.2 1 0.5 0 0.9-1.4 0-0.2-0.4-1.9 0.7 0.2-1.1-0.9 0.2-0.4-0.6-1.1-0.2 0.5-0.9-1-1.2-0.2 1.7 0.6 1.3-0.9-0.5-1.2 0.8-0.9-0.6-0.3-0.7-0.7 0.4 0.5 1.1-1.1 0.6-0.4-0.9-0.6-0.5-0.6 0.4-1 0-0.5 0.6-0.4 1.2-1.4 0.8-0.5 0-0.8-0.7-0.8-0.3 0.5-1.3 0.8-0.4 0.6-1.2 0.9-0.9 0-0.4 1.3-0.8 1-0.1 0.3-0.3-0.8-1.8-0.1-0.8-0.7 0.2-0.7-0.5-0.5-1.1-1-0.1-0.3-0.6 0.2-0.5 0.1-0.9-0.3-0.9 0.3-0.5-0.1-0.8-1.2-1.2-0.6-0.2-0.4 0.9-0.5-0.2-0.6 0.3-0.8-0.1-0.1 0.8-0.9 0.3 0 0.4-0.8 0.4-0.3 0.6-1.5-0.6-0.5 0.5-1.7 0-0.3 0.7 0.1 0.8-0.7 0.5 0.1 0.7-1.6 0.2-1 0.6-0.9 0.1-0.7-0.2-1 0.6 0.6 0.7-0.3 0.6 0.3 1 0 0.7-0.7 1.5 0.5 0.7-1 0-2-1-1-0.7-1.1 0.4-1-0.1-0.4 0.3-1.1-0.2-0.5-0.4-0.7-0.1-0.8-0.5-0.2-0.6-0.6 0.2-0.8 1.2-0.5 0.5 0.1 0.9-0.5 0.1-0.4 0.6-1-0.5 0.3-1.3-1.1 0.9-0.1-0.7-0.5-0.3-0.4 0.7-0.6-0.2-0.3-1.1 0.1-0.8 0.7-0.7 0.2-0.7 0.7 0.2 0.4-0.7-0.3-0.8 0.6-0.5-1.7-0.3 0-0.6-1-0.5-0.2 0.9-0.5 0.1-0.1-0.9-0.5-1 0.4-0.6-1.8-0.3-1.1 1.1-0.2 1.2 0.5 0.5 0.6-0.6 0.9 0.8 0.9-0.5 0 1.6-1 0.4-0.6-0.7-0.5 1.1 0.2 0.8 0.6 0.5 0.4 0.9-0.4 0.8-0.7-0.1-0.2 0.5-0.7-0.4 0.2-0.4-0.4-0.8-0.8 0.2 0.4 0.5 0 1-1.4-0.4-0.4-0.9-0.6 0.2 0.4 1.1-1.6 0.2-0.3-0.6-0.5-0.6 0.3-0.7-0.9-0.5-0.2-0.6-0.7 0.7-0.2 0.8-0.7 0.6-0.6-0.3 0.5-1.1-0.4-0.5 1.1-1.5-1-0.3-0.4-0.5-0.1-1-0.9 0-0.5 1.2 0.8 0.4 0.2 0.6-0.6 0.6-0.5-0.6-0.5-0.2-1 0.4-0.8 1.1-0.8 0.7-0.4-1 0.5-1-0.5-0.6 0.2-0.7 0.8 0 0.5-0.9 1 0.4 0.2-0.6 0.9-0.5-0.6-0.7 0.1-1.4-0.9 0.6-1.5-0.6-1 1.2 0.5 0.9-0.3 0.3-0.6 1.9-0.4 0-1-1.4 0.3-0.9-0.7 0.1 0-0.9 0.7 0.2 0.7-0.8 0.1-0.8 1.3-1.3 0.9-0.1 0.5-0.4 0.9-0.1-0.4 1-1.2-0.1 0.1 0.5 1.4 0.5 0.3-0.6 0.9-0.1-0.2-0.9 0.1-0.9-0.4-0.7-0.6-0.1-0.4 0.5-0.9-0.7 0.9-0.9 0.2-0.9-0.7-0.9 0.9-0.5 0-0.8-0.6-0.3-1.3-0.1-0.6 0.7 0.2 0.7-1.4 0.3-0.2 0.5 0.6 0.5 0.4 0.9-0.1 0.6-2.2-1.2-1.1 0.3-1.1-0.6 0 1 0.8 0.6 0.6 0.7 0.8-0.5 0.2 0.6-1.7 0.4 0.4 0.5 0.2 1.7-1 0.3-1-0.3 0.2-0.7-1.8-0.4 0.4-0.6 1-0.9-0.3-0.7-1.1 0.1-0.9 0.4 0.1 0.9-1.1-0.3-0.8 1.5-0.1 0.9-0.7 0.2-0.9-0.7 0.1 1.3-0.2 1-0.7 0.1-0.6-0.7-0.7 0.7-1.3 0.2 0 0.6 0.8 0.4 1.2-0.8 0.6 0.4 0.5-0.2 0.5 0.6 0.6 0 0.5 0.5-0.2 1.1 0.3 1 0.8 1.7 0.1 2.2 0.8 0.3 0.7 1.1 0.1 1-0.2 0.4-0.2 1.5-0.2 0.9 0.9 0.6 0.5 1.6 1 0.3 2.3 1.2 0.6 1.8-0.6 0.7 0 1.1 0.3 2.4-0.5 1-0.6 0.6 0.3 0.9 0.1 1.3 0.9 0.3 0.8-0.5 1-0.1 0.5-0.7 0.6-0.5 0.6 0.1 0.4 1 0.4 0.3 0.3 0.9 1.1 1-0.2 0.4 0.2 1.3 0.7 0.4-0.8 0.5-0.6 0-0.4-0.6-0.4 0.5 0.4 0.9 0.6 0.1 0.5 0.7 1.3-0.2 0.2 0.7-0.3 0.4-0.4 1.7 0 0.6-1.2 1.4-0.9 0.7 0.1 1-1.1 0.7 0.1 1-0.8 0.6-0.6-0.1-0.4 0.5-0.6-0.2-0.2 0.9-0.7-0.1-0.3-1-0.7-1.3-0.3 0.3-0.7-0.5-0.2 0.5-0.7 0.2-1-0.4-0.5-1.1-1.3-0.8 0.2-0.5-0.6-0.3-0.9-1.5-0.9-0.1-0.9-0.6-0.4-0.6-0.5-0.1-0.8 1-0.3 1.1-0.9 0.5-0.2 1-0.8 0.4-0.2 0.4-0.7 0.1-0.8-0.8-0.7-0.5-0.5-1.1 1.2-1.5-0.9-1-0.6-0.2-1.8-1.4-0.2-0.5 0.1-0.8-0.8-0.3 0-0.8-0.7-0.4 0.2-0.7 1-0.4 0.5-2.4-0.4-1.3 0.4-0.7-0.6-1.4-0.8-1.1-0.3-0.9 0.2-0.7-0.5-1.3-0.8-1.2-0.7-0.2-0.1-0.8 0.2-0.6 1-0.4 0.5-0.7 1.5-1 0.2-0.4 0.9-0.6 0.6-0.8 0.7-0.4 0.4-1-0.3-0.7-0.2-1.4 0.3-0.4 1.2-0.4 0.7-0.9 1.2 0.1 0-0.8 0.6-0.4 0.1-0.6-0.9 0-0.5-0.6-0.6-0.2 0.3-1-0.7-0.2-0.6-0.9 0.2-0.6-0.6-0.6 0-0.6-1.3-0.5 0.8-1-0.2-0.7-1-0.4 1.3-1.4 0.1-1 0.4-0.9 0.5 0.3 0.8-0.3 0.3-0.7 0.9-0.3-0.4-1.1 0-0.9 0.6-1.1 0.8 0.4 1.1-1.1 1.5 0.3 0.7 0.3 1.2 0 0.8-0.9 0.5 0.6 1 0.3 0.9-1.1 1.2-0.5 0.7 0.1 2.2-0.5 0.3-0.3 0.2-0.8 0-1.1-0.7-1.3-1-0.4-0.5-0.7 0-0.4 1-0.5 0.8-1.4 0.7 0-0.1-1.2 0.8 0.4 0.1 0.6 0.7 0.1 0.1-1.2-0.8-0.4 0.5-1 0.9-0.2 0.1-0.9-0.3-0.6 0.6-0.4 0.7-0.9 0.9-1.6 0.3-1.3-0.2-0.4 1.3-1.4 0.7-0.3-1.1-1-0.2-0.7-0.7-0.4 0.5-0.7 1.4 0 0.1-0.7-1-0.7 1-0.2 0.5-0.6 0-0.7 0.8 0.1 0.7-0.7-0.5-0.3 0.3-1.1 0.7-0.1 0.7-1.1 1 0-0.3-1.5-1.4-0.3 0.4-0.6-0.3-1 1.3-0.5 0.3-1-1.2-0.5-0.8 0.4-0.7-0.6 0.5-0.9 0-0.7-1.1-0.8 0.1-0.4-1.2-0.6 0-0.9-0.5-0.7 0.8-0.7-0.1-0.6-0.6-0.8 0.5-1-0.6-0.4-1.2 0.8-0.4-0.3 0.4-1-1.5-0.6-1.3 0.3-0.9-0.8-1-1.5-1.7 0-0.7-1-0.7 0.4-0.1-0.7-1.3 0.3-0.7 0.9-1.3-0.3-0.6 0.8-1.3-0.1-1.7-1-1.9-0.4-0.5-0.3-0.6-1.1-1.4 0.1-0.8-1.6-0.7-0.1-2 0.3-0.5 0.6-0.1 0.9-0.3 0.2-1.2-0.6-0.4 0-0.2-1.6 0.8-0.2 0.7-0.7 0.4-1.2-0.9 0-1.5-0.5-1.7-0.4-0.9 0.1 0 1-0.4 0.7-0.5 0.3-0.9-0.5-0.6 0 0 1.2-0.3 0.3-0.7-1.3-0.8-0.1-0.5 0.6-0.4-0.6-0.8 0.5-0.4-0.5-0.7-0.1-0.6 1-0.7-0.6-2.2-0.9-0.6 0.2-0.8-0.6-0.6 0.4-0.8 0.2-0.5 0.7 0.2 0.9-1.5 0.3-0.5 0.6-1.1 0.4-0.5 0.5-1.3 0.1-0.2 0.3-1.5 0-0.3-0.8-0.5-0.1-0.6 2.3 0.4 0.8-0.4 0.5-1.1 0.2 0.5-0.8-0.4-0.5-0.8-0.2 0.4-1.2-0.8-0.9 0.2-1 1-0.3 0.1-0.5 1-0.6 3.3-1 2.1-1.4 1.7-0.5 0.8-0.4 0.7 0.1 0.3-1-0.3-0.8-0.5 0.3 0 1-0.6 0-1.1-1.8-0.5 1-2-0.3-1.3-0.7 0.2-1.2-0.7-0.1-0.6 0.6-0.3-0.8 0.9-1.1 1.8-0.5-0.2-0.4 0.5-0.6 0.3-0.8 0.5 0.2 0.8-0.2 0.7-1-1.1-0.5 0.1-0.9-0.7-1-0.6-0.3 0.1-0.6-0.6-0.5 0.7-0.5 0.1-1-0.8 0.1-0.6 0.4-1.1-0.6-1.5-1.5-1.1-0.1-1.2-0.6-0.5-1 0.4-1.4-1.2-0.8 0-0.8-0.6-0.6-1.2-0.2-0.3-0.6 0-1.2 0.6-0.9-0.8-0.1-0.5-0.6 1.1-1.6-0.3-2.1-1.1-0.2-0.2-0.6 0.5-0.3-0.3-0.8 0.1-1.2-1-0.7 1.3-0.9 0.9-1.1 1.1-0.2 1.4 0.2-0.4-0.9 0.7-0.5 0.7 0.6 0.9-0.6 0.2-0.7-0.2-0.8 1.7 0.1 0.6-0.7 0-0.6-0.9-0.3 0.9-0.8-0.8-0.7-0.2-0.4-1-1.1 0.2-0.4-0.5-1 0.1-0.7 0.9-0.7 0-1.6 1.1-0.3 0.2-0.8-0.5-0.6-0.2-0.9 0.7-0.4 0.1-0.5-0.9 0-1.6-0.6 0.2-0.5 0.7 0.1 0.1-1.1-1-1.3 1-0.6-0.3-0.9-0.6-0.5 0.2-0.8-1.3-0.7-0.4-0.9-0.9-0.1 0-0.5-0.8-0.2-0.5-0.9-0.8-0.4 0-0.3-0.2-0.3-0.6-0.7-0.4-0.3-0.3-1.1 0-0.2 0.6-0.6 0.6-0.2 0.3-0.7-0.9-0.9 0.2-1 0.4-0.8-0.2-0.8-0.2-0.2-0.7 0.2-0.1 0.1-0.3-0.4-0.5-0.7-0.1-0.1-0.4 0-0.1-0.5-0.2-0.2-0.6-0.5-0.3-0.3 0.1-0.3-0.3 0-0.2 0-0.4-0.3-0.1-0.3 0.7-0.4 0.1-0.9-0.4-1.1-0.4-0.1-0.2 0-0.2-0.9 1.2-0.4-0.7-0.8 0.3-0.6-0.5-0.4 0-0.6 0.8-1.8-0.8-0.6-1-1-0.2-1.2-1.1-0.9 0.5-1.3-0.4-0.7 0.5-1.1-0.5-1.8 0.6-0.4-0.5-1.4 0.8-1.7-0.2-1.1-0.9-0.2-0.1-1.1 0.7-0.2-0.5-1.5 0.5-0.8-0.7-0.6 0.2-1.1-0.3-0.7-0.6-0.4-0.4-0.8 0.8-0.8-0.2-0.9-0.6-1 0.8-1.8 0.7-0.4-0.3-0.9 0.2-0.6 0.5-0.2 0-0.6-1-1.3 0.2-1 1.2-0.7 0.1-0.9 0.4-0.5 0-0.7 0.5-1.1-0.1-1.1 0.3-0.8 0.5-0.3 1.6-2.3 0.8-1.8-0.1-0.6 0.9-0.4 1.2-0.2 1.4-1.1 0.7-0.1 0.7-0.6-0.1-1.4 0.4-0.9 0.8 0 0.9-0.8 0.8-1.8 0.8-1 0.4-1.1 1.4-1-0.1-1 0.8-1.3-0.6-0.6-0.4-0.7 2.5-0.3 0.9 1 0.4 0 0.8 1.4 0.4 0.5 1.4 0.5 2.1 1.4 1.8 0.8 0.2-0.2 1.6 0.7 0.4 0.7-0.8 0.9-0.3 1.2-0.8 0.9-0.6 1.2-1.2 1.5-1.2-0.2-0.9 2.1 0.5 0.6-0.7 0.6-0.4 0.9 0 1.4-0.8 0.9 0.5 0.9-0.4 0.4-0.6 1.4 0.9 0.5 0.4 1.7 0.8 1-0.1 1.6 0.2 0.4-0.3 0.7 1.3 0.7-0.2 0.7 1 0.5 0.5-0.1 1.3-1.2 0.9 0.1 0.6-0.5 0.8-0.1 0.2 1.1 0.6 0.6 0.4 1.1 0 1.1-0.8 0.5-0.1 0.5 1.2 0.2-0.2 1.2 1.8 0.1 0.4-0.8 0-0.8 0.5-0.4 0.7 0.1 0.4-1 0.6-0.3 0.9-1 0.2-0.7 0.9-0.1 0.9-1.2 1-0.3 0.3 0.5 2.5-2.1 1-1.5 1.8 0.8 0.9 0.1 0.4 0.4 2.2 0.8 0.7 2 0.1 1.6 0.6 1 1.6 1.7 1.5 1.1 0.7 0.2 1.8 1.6 1.1 0 1.4 0.9 3.4 1 1.2 0.1-0.2 1.3-0.3 0.6-1 0.9-1.5 0.6-1 1.1-0.9-0.3-1.1 0.8 0.1 0.6 1 1.1 1.4 1.1 0.5 0.2 0.6-0.3 1.1 0.4 1.2 1.9 0.2 1.5 1.4 0.5 0.7-0.6 1.2 1.9 0.6 0-0.2-1.3 1.1-0.2 1 0.1 0.9 0.8 0.6-0.1 0.8 0.6 0.1 0.8-0.3 0.7 0.3 0.8 0.7 0.4-0.4 0.9 0.5 0.5 1.2-0.6 1.2 0.9 1.4 1.6 2.4 0.5 0.4-0.7 0.6 1.4 0.8 0.1-0.2 1.8 0.5 1.2 0.8-0.2 0.9 0.1 0.5-0.3 1.1 0.1 0.9-1 0.7 0.4-0.1 1.3 0.9-0.2 0.5-0.6 0.9-0.1 1.2 0.8 0.4 0 0.7-0.7 0.8-0.5 1.8-0.4z", "34": "M406.9 337.2l-0.5-0.2-1.1 1.4 0.5 0.6-0.9 1.8-0.9 0.8-1.2 0-1-0.6-0.2-0.8-0.2-0.4-0.4-0.4-0.3-0.3-0.1-0.2 0.4-0.5-0.2-0.1-0.5 0.2-0.4 0-0.7-0.3 0-0.7 0.2 0.1 0.8-0.1 0-0.3-0.7-0.3-1.1-0.3-0.3 1 0 0.3-0.1 0-0.2 0.1-0.1 0.2-0.7 0 0.2-0.6 0.2 0.2 0.1-0.2 0.1-0.4 0-0.2-0.2-0.3 0.2-0.4 0.3-0.2 0-0.2-0.1-0.2-0.4 0-0.1-0.3-0.6-0.6-0.4 0.1-1.8 0.4-0.8 0.5-0.7 0.7-0.4 0-1.2-0.8-0.9 0.1-0.5 0.6-0.9 0.2 0.1-1.3-0.7-0.4-0.9 1-1.1-0.1-0.5 0.3-0.9-0.1-0.8 0.2-0.5-1.2 0.2-1.8-0.8-0.1-0.6-1.4-0.4 0.7-2.4-0.5-1.4-1.6-1.2-0.9-1.2 0.6-0.5-0.5 0.4-0.9-0.7-0.4-0.3-0.8 0.3-0.7-0.1-0.8-0.8-0.6-0.6 0.1-0.9-0.8-1-0.1-1.1 0.2 0.2 1.3-0.6 0-1.2-1.9-0.7 0.6-1.4-0.5-0.2-1.5-1.2-1.9-1.1-0.4-0.6 0.3-0.5-0.2-1.4-1.1-1-1.1-0.1-0.6 1.1-0.8 0.9 0.3 1-1.1 1.5-0.6 1-0.9 0.3-0.6 0.2-1.3-1.2-0.1-3.4-1-1.4-0.9-1.1 0-1.8-1.6-0.7-0.2-1.5-1.1-1.6-1.7-0.6-1-0.1-1.6-0.7-2-2.2-0.8-0.4-0.4-0.9-0.1-1.8-0.8-1 1.5-2.5 2.1-0.3-0.5-1 0.3-0.9 1.2-0.9 0.1-0.2 0.7-0.9 1-0.6 0.3-0.4 1-0.7-0.1-0.5 0.4 0 0.8-0.4 0.8-1.8-0.1 0.2-1.2-1.2-0.2 0.1-0.5 0.8-0.5 0-1.1-0.4-1.1-0.6-0.6-0.2-1.1-0.8 0.1-0.6 0.5-0.9-0.1-1.3 1.2-0.5 0.1-1-0.5 0.2-0.7-1.3-0.7 0.3-0.7-0.2-0.4 0.1-1.6-0.8-1-0.4-1.7-0.9-0.5 0.6-1.4 0.4-0.4-0.5-0.9 0.8-0.9 0-1.4 0.4-0.9 0.7-0.6-0.5-0.6 0.9-2.1 1.2 0.2 1.2-1.5 0.6-1.2 0.8-0.9 0.3-1.2 0.8-0.9-0.4-0.7-1.6-0.7-0.2 0.2-1.8-0.8-2.1-1.4-1.4-0.5-0.4-0.5-0.8-1.4-0.4 0-0.9-1-2.5 0.3 0-0.5 1.4-0.8 0.9 0 0.3-0.6 0.8 0.1 1.7-1.1 0.3 0 1.6-1.1 1.1-0.3 0.4-1-0.2-0.9-0.9 0.1-0.9-0.5-0.7-1.5 0.8 0.1 0-0.6 0.6-0.8-0.3-1-1.1-0.8 0.3-1-1.2-1.4-0.4 0-0.2-0.9 0.5-0.4 0.5-1.2 0.9-1.1-0.4-0.6 0.4-1.2 0.7 0.7 0.6-0.3 0.1-1 0.5-0.6-0.2-0.5-1.7 0.1-0.4-1.1 0.1-0.5 0.6-0.6 1.5 0.3 0.4-0.9 0.5-0.5-0.6-1.9 0.6-0.9 0.7-0.2 0.3-1.2 0.9-0.6 0-0.5 0.8-0.8 0.4 0.1 1.4-0.9 0.5 0.5 0.8-0.1 0.5 0.4 0.7-1.1 0.9-0.3 1.3 0 0.9-0.8 0.5-0.1 0.5-0.6 0.8 0 0.4 0.3 0.8-0.6 0.9 0.1 1.2-1.4 0.8 0.2 0.2-0.9 0.6 0.1 1.4-0.2 0.4 0.1 0.8 1 0.9 0.1 0.9 0.7 0.8 0.9 0.1 0.7 2.3-0.1 1-1.1 1.1-0.1 1.2 0.6 0.5 0.9 0.9-0.2 0.7 0.3 1.8 0.1 1.6-0.5 0.2 1.1 0.6 1.2 1.5 1.4 0.6 0.4 0.8-0.5 1.3 0.4 0.8-0.4 1.1-0.1-0.7-1.1-0.2-1.5-0.9-0.4-0.3-1.2-0.9-0.4-0.1-1 0.3-0.3 0.5-2.9 1.7-0.7 0.4-0.5 0.5-1.3 0.9-1.1 0.1-1.2 0.7-0.6 0.7 0.6 1.8 0.8 1.2 1.6 0.4 1 1.5 1.4 0 0.7 0.9 1-0.4 1.1 0 0.6 0.9 0.3 0.9 2-0.2 0.6 0.6 1.3 0.9 0.7 1.9 0.5 0.3 1.4 0.5 0.2 0.3 1.6 2.8-0.1 0.3 0.7 1.1 1.3-0.2 0.6 1.8 1.2 1.4-0.8 0.8-0.2 0.2-0.6 1.5 0.1 0.9-0.3 0.7-0.6 0.5 0.5 1.7 0.6 0.7-0.3 0.9 0.2 0.8 2.2 0.6 0.1 0.6 1.2 0.9 0 1.8 1 1.1 0.9 0.6 0 0.9 1 0.1 0.8 1 0.8 1.2-0.7 0.1-0.6 0.7 0 0.8 1 0.2 0.9 0.6 0.3 0.5-0.4 0.5 1-0.6 1.7-1.2 0.7-0.1 0.4 1 1-0.4 0.7 0.4 0.5 0 1.3 1 0.7 1.3-0.4 1 0.3 0.3 0.5 1.8 1.1 1.1-0.2 0.8 1.1 1.1 0.4 1 0.2 0.6 0.7 0.9 0.4 0.9-0.2 0.4-0.9 0.9 0.3 1.9 1.4 0.4 0 1.3 1.1 1.1 0.6 1 1.1 0.4 1.1 1.3 1.1 1.2 0.5 1.3 0.3 1.1 0.5 2.7 0.7 0.5 0.3 0.3 1-1-0.4-0.4 0.3-1.6 0.1-0.6 0.5-1.7 2.2 0.6 1.4-1.2 0.7 0 0.5-0.8 0.1-0.5 0.4-0.9 1.3-0.6 0.3-0.1 0.9-0.7 1.1-0.6-0.1-1.5 1.7-1 0.1-0.4-0.3-1.1 0.2-1 1.4-0.1 1.1-0.5 0.9-0.1 0.7-1.1 1.1-0.5 0.1-0.5 1.1-1-0.3-1.9 0.4-0.7 1.7-0.8 0.4 0.7 2.5 0.2 0.4 0.9 0.6 0.2 0.8-0.6 0.7 0.1 0.7-1 1.3-1 0.2-0.3 0.6 0.6 0.3-0.6 0.9-1.5 0.9-0.3 0.6 0.5 0.7-1.9 0.3-0.2 1.4 1.2 0.7-0.2 1.1 0.9 1.6 0.7 0.3 0 0.6-0.4 0.6-0.4 3.5-0.6-0.4-1.2 0.1 0.6 0.7 0 0.8 0.5 0.8-0.6 0.3-0.8 0.7-0.8-0.1-0.8-0.6-1.4 1.4-0.5 1.6-0.1 2.1-0.3 1-0.7 0.2-1.3 2.3 0.2 3.1 0.2 0.3z", "35": "M694.6 610.4l1.1 0.6 0 1.5-0.8 0-0.9-0.5 0.2-1.2 0.4-0.4z m11.5-0.3l1.4 0.6 0.6 0.4 0.2 1-1.5 0.1-0.6-0.4-0.3-0.6 0.2-1.1z m-3.6-1.1l0.2 1 0.8 0.4-0.4 0.4-0.2 0.6-0.9-0.2-0.2-0.5 0.1-1.2 0.6-0.5z m-6.5-0.1l0.6 0.3 0.9 0.8 0.1 0.8-0.3 0.5-0.9 0.4-0.5-0.9-0.9-0.5 0.5-0.9 0.5-0.5z m8-0.5l0 1.2 0.9 1.1-0.4 0.4-1.3 0 0-0.4 0.3-0.2 0-0.2-0.2-0.1-0.5-0.2-0.3-0.9 0.2-0.4 1.3-0.3z m6.6 0.4l0.8-0.1 0.2 0.7-0.3 0.5-1-0.2-0.6-1.1 0.5-1 0.4 1.2z m-13.3-1.8l0.3 1.2 0.5 0.7-0.3 0.8-1.2-0.6 0-0.5 0.5-0.7 0.2-0.9z m0.5-0.1l0.5 0.5-0.6 0.9-0.3-1 0.4-0.4z m13.4-0.4l0.2 0.1 0.1 1.2-0.2 0.2 0 0.4 0.3 0.2 0.9-0.2 0.1 0.8 0.4 0.3-0.3 0.7-0.9 0.1-0.3-1.5-0.1-0.1-0.8 0-0.1-0.6-0.4-1.4 0.7 0.1 0.4-0.3z m-6-0.1l0 1.6-0.4 0.3-0.6-0.3-0.7 0-0.3-0.3-0.6-0.4 1 0 0.1-0.3 1.5-0.6z m-17 0.1l0.6 0 0.8 1-0.2 0.6 0.3 0.4-0.6 1.1-1 0.4-0.1-0.7 0.4-1.3-0.2-1.5z m4.9-0.2l0.6 1.3-0.7 2-1-1.1-0.1-1.4 0.6-0.6 0.6-0.2z m8.3-0.1l0.2 1 1.3 1.2-0.5 0.6-1.3-1.7 0.3-1.1z m-16.8-0.3l0.4 0.8-0.6 0.2 0 0.6 0.6 0.3 0.3 0 0.2 1.1-0.9 1.1-0.3-0.8-0.5-2.1 0.2-0.7 0.6-0.5z m29.2 0l0.4 1.2 0.7 0.8 0 1.1-0.8 0.6-0.7 0-0.8-0.8 0.1-1.7-0.3-0.7 0.6-0.5 0.8 0z m-2.8-0.2l0.5 0.2 0.9 0.8 0.2 0.5-0.2 0.9-0.4 0.3-0.6 0 0.2-0.7-0.2-1.2-0.4-0.8z m-14.8-0.3l0.9 0.1 0.5 0.8 0 0.4-0.7 0.3 0.1 1-0.9 0.9-0.5-0.6 0.1-0.8-0.4-1.2 0.9-0.9z m11.6-0.4l1 0.7 0.2 0.5 0.8 0.9-0.7 2.1-1.2-1.1-0.5-1.2 0-1 0.4-0.9z m-16.1 0.5l0.5 1.1-0.5 0.4-0.1 1.2 0.8 1.1-0.7 0.3-0.4 0.9-0.5-0.6 0-1.2-0.2-1.3 0.6-0.7 0.5-1.2z m-6.5-1.1l1.7 0.3-0.4 0.8 0.4 0.2 1.4 2-0.7 1.3-0.1 1.5 0.6 0.6-0.5 0.6-0.8 0.2-0.7-0.2-0.3-0.4 0.2-0.6-1-1.1 0.6-0.5 0-1.3-0.3-0.2-0.6 0-0.3-0.3 0.1-0.3 0.7-0.4-0.4-0.6 0.1-1.2 0.3-0.4z m24.1 0l0.7 0.2 0.6 0.3 0.1 0.4 0.3 0.1-0.2 0.6 0 0.7-0.7-0.1-1-0.7 0.3-0.5-0.1-1z m-19.2-0.1l-0.2 0.7 0 0.4 0.2 0.5 1.1 0.3-0.4 0.5-1 0.5-0.7-0.9 0.4-0.6-0.2-1 0.3-0.4 0.5 0z m21.8 0l0.7 0.3 1.1 1-1.2 0.5-0.2-0.7-0.5-0.5 0.1-0.6z m-5.9 0l1 0.1-0.7 1.7 0 1 0.7 1.7-0.7 0.8-0.9-0.3-0.2-0.4 0.5-1.1-0.1-1.2-0.6-0.5-0.6 0.2-0.1-0.8 0.3-0.6 0.8-0.1 0.6-0.5z m-15.2 0l-0.2 1-0.7 0.1 0-0.4 0.4-0.6 0.5-0.1z m6.7-0.5l0 0.6 0.2 0.4 0.9 0.4 0 0.5-0.8 0.3-0.4-0.3 0.2-0.6-0.6-1 0.5-0.3z m-9.6 2l-0.2 0.6-0.6-0.7 0.2-1 0.5-0.5 0.2 1.3-0.1 0.3z m23.8-2.3l0 1.3 0.5 0.6-0.3 0.7-0.3-0.3-0.6-0.2 0.4-0.4-0.2-0.3-0.5 0.3-0.1-0.3-0.2-0.2 0.2-0.7 0.3-0.1 0.5-0.5 0.3 0.1z m-13.3-0.1l0.5 0.6 0.2 1.2-0.3 0-1.2-0.6 0.1-0.8 0.1-0.2 0.6-0.2z m-5.1 0l0.5-0.1-0.2 2-0.5 1-0.4 0-0.3 0.2-0.3-1.3 0-0.9 0.8-1.2 0.4 0.3z m8.8-0.7l0.3 1 0.1 0.1 0.1 0 0.1 0.1 0.4 0.2 0.4 0.4-0.2 1 0.8 0.3-0.6 0.7 0.1 0.4-0.1 0.4-0.4 0-0.5-0.2 0 0.3 0.8 0.5-0.3 0.3-1.2-1.1-0.6-2 0.6-1.6 0.2-0.8z m-5.9-0.1l0.9 0.6-0.3 1.3 0.4 0.9-1.1-0.1-0.6 0.7-0.7-1.2 0-0.8 0.9-1.1 0.5-0.3z m-4.2 0l0.2 0.1 0 0.2 0.2 0.2 0.3-0.1-0.1 0.4-0.6 0.7 0 1.9-0.7-0.9 0-0.4-0.6-0.9 0.4-0.4 0.2-0.2 0.4-0.3 0.1-0.2 0.2-0.1z m19.7 0l0.6 0-0.2 1-0.7-0.2 0.3-0.8z m-8.5 0.6l-0.1 0.8-0.4-0.1 0-0.1-0.2 0 0-0.5 0-0.1 0.3-0.1 0.3-0.5 0.1 0.6z m2.7-0.3l-0.2 0.8 0.3 0.5-0.7 0.6-0.7 0.1-0.2-0.7 1.2-2 0.3 0.7z m-1.4 2.1l-0.4 0.6-0.7-0.1 0.3-0.9-0.5-0.4 0.5-0.6 0.7-1.5 0.3 0.6-0.3 1.3 0.1 1z m4.4-2.9l0.1 0.1 0.5 0 0.1 0.2-0.3 0.5 0 0.1-0.4 0.3 0.2 0.2-0.6 1.3-0.3-0.1 0.2-0.8-0.6-1 0-0.3 0.4-0.1 0.2-0.2 0.5-0.2z m-14.7-0.4l0.5 0.9-0.5 0.5-0.9-0.1-0.1-0.7 1-0.6z m15.6-0.4l0.1 0.3 0.3 0.5 0.7 0.1-0.2 0.7-0.5-0.2-0.5 0.7 0.3 0.9-1-0.4 0.2-0.4-0.2-0.2 0.3-0.3 0.2-0.5 0.2-0.1-0.1-0.2-0.3 0-0.1-0.5 0.3 0 0-0.3 0.3-0.1z m-12-0.1l0.8 0.7-0.3 0.6 0.2 0.6-0.9-0.2-0.3-0.5 0.2-0.8 0.3-0.4z m-8.9-0.4l0.7 0.2 0 1.3 0.3 0.9 0.7 0.3-0.1 0.7-0.7 0-0.5 0.3-0.1 0.3 0.2 1.1-0.5 0.4-0.8-0.3 0.1-0.4-0.2-1.1-0.8-1.2-0.6-0.1-0.1-0.5 0.2-0.2 1.4-0.6 0.3-0.5-0.1-0.4 0.1-0.1 0.5-0.1z m17.9-0.2l0 0.3 0.2 0.1 0.6 0.1-0.1 0.2 0.2 0.7-0.1 0.7 0.6 1-0.2 0.7 0.1 0.4 0.2 0.2 0.8 0.1-0.3 0.6-1.2-0.8-0.1-0.7-0.5-0.4-0.9-0.1 0.2-1.2 0-1.3 0.5-0.6z m-24.5-0.3l0.7 1.6 0.4 0.5-0.2 0.6 0.2 1.2 0 0.8-0.5 2 0 1.4-0.7 0.9-1.5 0-1.7-0.7-0.1-0.9 0.2-1.7 0.6-0.6 0.4-1.6 1.7-3.2 0.5-0.3z m22.3-0.2l0.1 0.2-0.2 0.2 0.1 0.2 0.3-0.3 0.1 0.2 0.9 0.1-0.3 1.4-0.9 0.5-0.3-0.5-0.6-0.2 0.3-1.3 0.3-0.3 0.2-0.2z m6.4-0.5l1.2 0.6 0.6 0.5-0.1 1.3-0.3 0.4-0.9 0.2-0.3 0.9-0.4 0.4-0.4-0.3-0.6 0 0.3-0.6 0.5 0 0.3-0.1 0.2-0.6-0.3-0.3-0.5 0-0.2-0.5 1-1-0.1-0.9z m-12.2-0.2l0.2 0.2 0 0.2 0.3 0.4-0.1 0.2 0.5 0 0.2 0.1-0.1 1.3-0.4 1.8-0.5-0.3-0.4-0.9 0.3-0.3-0.5-0.8-0.4-0.3 0.3-0.8 0.6-0.8z m6.7-0.1l0.8 0.5-0.3 0.8-0.8-0.1 0.3-1.2z m-8.7 0.1l0.5 0.5-0.5 2-0.6 0.1-0.5-0.8 0.4-0.8 0.3-0.4-0.1-0.8 0.5 0.2z m-3.9-0.2l0.4 0.4 0.8 0.3 0.3 1.3-1.3 1-0.4 0.7-0.3 0.1-0.1 0-0.1-0.4-0.1 0-0.2 0-0.5 0.5-0.4-1.3 0.3-1.5 0.6-0.5 0-0.6 0.6 0.1 0.4-0.1z m9.2-0.1l0.3 0.3 0.7 0.1 0.4 0.6 0.6 0.5-0.4 1.2 0.1 0.3 0.3 0-0.4 1.4-0.5-0.5 0.1-0.5-0.1-0.1-0.3 0.4-0.1 0.2-0.4 0.2-0.2-0.4-0.4-0.2-0.4-1.1 0.1-0.7 0.6-1.7z m-7.3-0.2l0.2 0.1-0.6 0.7-0.5-0.3 0.4-0.5 0.5 0z m4.7-0.4l0.9 0.3-0.5 1.2-0.4 0.3-0.4-0.4 0-0.3-0.2-0.3 0.6-0.8z m-17.3-0.1l0.3 0.4-0.5 0.6-0.4-0.6 0.6-0.4z m24 0.3l0.7 0.2 1-0.1 0.9-0.5 2 1.1-0.3 1.3-0.5 0.8-0.1 0-0.2-0.5 0 0.2-0.2 0.1 0 0.3-0.4 0.1-0.3 0.3-0.3 0.2-0.5 0.4-0.3-0.3 0-0.4-0.1-0.6 0-0.2-0.1-0.1-0.5 0-0.4-1.5-0.4-0.8z m-3.9-0.5l0.3 0.4 0.8-0.2 0.7 0 0.6 0.3 0.2-0.1 0.5 0.6-0.6 1-0.1 0.3-0.2 0.1 0.2-0.3 0-0.2-0.2 0-0.4 0.4-0.1-0.4-0.5 0-0.3-0.6-0.3-0.2-0.4 0-0.4-0.6 0.2-0.5z m0.8-1.8l0.1 0.8 1.7 1.2-0.4 0.2-0.9-0.4-1 0.2-0.3-0.6 0.1-1.4 0.7 0z m-3-1.5l0.5 0 1.5 0.7-0.8 1.2-0.1 0.5-0.4 0.5-0.7-0.5-0.9 0.1-0.1-0.6 0.2-1 0.8-0.9z m-17.7-0.2l-0.6 1.4-1 1.4-0.2 0.6-1.1 0.8-0.3-0.1 0.3-1.7 0.5-1.1 0.8-0.8 1.6-0.5z m23 0.2l1.2 0.1 0.6-0.2 0.3 0.4 0.8 0 0.3 1.6 0 1.4-0.3 0.3-1.4 0.1-1.1-0.7-1.7-0.2-0.8-0.5-0.1-0.9 0.4-0.5 0-0.7 0.5 0 0.9-0.5 0.4 0.3z m-1.7-1.1l0.4 0 0.1 1.1-0.6 0-0.3-1.1 0.4 0z m4.7 0.2l0 1-0.8 0.1-0.8-1 1.6-0.1z m3.9-0.2l0.8 0 1 1.4 0.3 1-0.5 1.9-1.1 0.3-1.1-0.9 0.7-0.9-1.5-0.7 0.1-0.6-0.3-0.2 0.6-1.3 0.5-0.3 0.5 0.3z m-7-0.4l0.7 0.4 0 0.9-0.6 0-0.3-0.3-0.3 0.1-0.5-0.2 0.4-0.7 0.6-0.2z m2-0.7l0 0.6 0.4 0.7-0.7 0-0.4 0.1-1-0.7 0.3-0.3 0.3-0.1 0.6-0.3 0.5 0z m1.2-0.1l-0.5 0.8-0.6-0.1-0.1-0.9 1.2 0.2z m-3.5-0.1l0.1 0.7-0.8 0.7-1.2-0.4 0.4-0.8 0.7-0.8 0.6-0.3 0.2 0.9z m0.5-1.4l1 0.2 0.1 0.6 0.6 0.8-0.5 0-0.5 0.3-0.3-0.6-0.8 0.1-0.2-1 0.6-0.4z m1.7-1.6l0.7 0.1 0.7 1.3 0.5 0.7-0.2 0.7-1.5 0.1-0.6-0.5-0.3-0.7 0.7-1.7z m2.8-0.8l1.2 1.5 0 1.1-0.5 1.3-0.4 0.3-0.7 0.1-0.5 0.6 0.1 1.1 0.2 1 0.5 0-0.4-1 0.2-1.3 0.6 0 0.7 0.8-0.4 0.8 0.3 0.5-0.1 0.6 0.7 0.6 0.1 1.1 0.9 0.7-0.2 0.7-0.8-0.1-1.6-0.9-0.5-0.4-0.6-1.9 0.1-0.6-0.5-2 0.2-0.5 0.8-0.8-0.1-0.5-0.6-0.8-0.4-1.4 0.7 0.4 1-1z m1.8-0.4l0.4 0.1 0 1.2 0.3 0.6 0.9 0.6-0.6 1.4 0.3 1.4-0.7 0.2-0.6-0.4-1.3 0 0.6-0.7 0.5-1.9-0.1-0.6-0.5-0.8-0.2-0.9 1-0.2z m-10.5-0.3l1.3 0.5 1.1 0.1 0.2 0.4 0.7 0.4-0.8 0.9-1.1 0.5-0.4 0.7-1.2 0.8 0 1.2 1.4 0.7 0.4 0.7-0.7 0.5-0.6 0-1.3-0.6-0.1-1.1-0.3-1-0.6-1 0.6-2.1 0.9-0.7 0.5-0.9z m5.2 0.7l0.2-0.2 0-0.3 0.2-0.1 0.2 0.3 0.2 0.9-0.6 0-0.1 1.1-1.7 0.6-0.1 0.4-0.8 0.3-0.1 0.6-0.7 0.4-0.4 0.9-1.1-0.3-0.1-0.5 1.1-1 0.5-1.1 0.7-0.3 1.2-1.3 0.9 0.5 0.5-0.9z m2.9-1.3l0.8 0.1 0.2 1-0.5 0-0.5 0.6-0.7-0.6 0.2-0.4 0.1-0.9 0.4 0.2z m-4-2.2l0.4 0.7 0 0.9-0.8 0.4 0.1 0.8 0.7 0.4-0.4 0.6-0.9 0.1-0.7-0.6-0.7-0.2 0.2-1.1 0.7-0.8 0.4-0.2 0.2-0.1 0.1-0.1 0.1-0.5 0.6-0.3z m1.2-2.9l0.7 0.1 0.8 0.6 0.6 1.2 0.9 0.5-0.2 1.2 0.7 0.8 0.1 0.6-1-0.1-0.2-0.1-0.1 0.3-0.5 1.7-0.6 0.4-0.4-0.2-0.2-0.9-0.2-0.3-0.2-0.1-0.2 0.2-0.4-0.2-1 0-0.1-0.5 0.7-0.7 0.1-0.9-0.8-1.2 0.2-0.6-0.1-0.7 0.4-1 0.4 0 0.6-0.1z m4.6-0.8l0.2 0.7-0.2 1.4 0.6 0.1 0.7 0.9-0.7 0.1-0.2 0.5 1.3 1.1 0.2 1.2 0.9 0.7 0.1 0.5-0.3 0.8 0.5 0.8-0.4 0.6-0.4-0.7-0.9-0.6 0.1-0.9-0.3-0.7-1.1 0.1-0.6-0.4-0.3-1-0.4-0.5 0.2-0.7-0.1-0.8 0.1-2.4 0.3-0.2 0.2-0.8 0.5 0.2z m-4.2-0.6l0.8 1 0.5 0.3-0.2 0.7-1.1-0.9 0-1.1z m-2.7-3.7l0.3 0 0.3 0.5 0.4 0.2-0.3 0.7-0.7-1.4z m4-1.8l0.2 1 0 1-0.4 0.3 0.1 0.5-0.1 0.3 0.2 0.2 0.1 0.6 0.2 0.3-0.1 0.9 0.6 0.4-1.3 0.9-0.1-1-0.7-0.4-0.2-0.8 0.2-0.4 0-2 0.2-1.1 0.6-0.7 0.5 0z m0.7-0.6l1.3 0.5 0.3 0.6 0.4 2 0.6 0.5-0.2 1 0.3 0.4-1 0.6-0.2 1.5-0.5 0.7-0.2 1.6-0.3 0-0.9-0.9-0.4-1.7 0.7-0.4 0.3 0.2 0-0.7-0.6-0.4 0.4-0.5-0.5-0.6-0.1-0.3-0.2-0.4 0.1-0.4-0.1-0.3 0.3-0.3 0.3-0.8-0.3-0.5-0.3-1.2 0.8-0.2z m-5.7-172.6l1.1 0.5 0.5 0 0.9 0.7 1.5 0.4 0.3 2.7-0.3 1 0.1 2.1 0.6-0.2 0.1-0.6 0.6-0.7 1.2 0.7 0.3 0.9-0.4 0.6 0.7 0.5 0.7 0.2 1.5-0.7 0.6 0.7 0.1 0.7 1.3 0.2 0.1 0.8 0.5 0.6-0.1 0.9 1 1 1.5-0.4 0.5 0.5 1.6-0.5 0.6 0.2 1.2-0.7 1.1-0.7 0.3 0.5 1-0.9 0.9 0 0.2 0.8 2 0.3 0.3 1.1 1.3 0.1 0.5-0.6 0.6 0 1.3 0.6 1.5 0.5 0.6 0.5 0.4-0.3 0.5 0.5-0.4 0.9-1 0.8 1.5 0.3 0.4-0.8 1.2 0.1 0.8 0.6 0.9 0 0.8 0.8 1-0.6 1.7 0.5 0.5 0.7-0.1 1.1 0.2 0.5-0.6 0.4 0.2 0.7 0.5 0 0 1.1-0.4 0.6-0.1 1.5-0.3 0.3 0 1.3 0.6 0.9-0.1 0.6-0.4 0.6-0.4 0.9 0.4 1-1 0.6-1.5 0.5-0.1 0.9-0.6 0.5-0.4-0.2 0.3 1.2-0.1 0.1-0.4-0.1-0.8-0.2 0-0.4-0.2 0.2 0.2 0.5 0.4 0.9 0 0.2-0.5 0-0.3-0.2-0.3 0.2 0.3 0.1 0.2 0.1 0 0.3 0.4 0.3-0.3 0.3-0.2 0.1-0.2 0.4-0.3 0 0 0.1 0.6 0 0.3-0.1 0 0.5-0.4 0 0.1 0.5-0.2 0.1-0.5 0 0.2 0.5 0.2 0.1 0.3-0.1 0.6 0 0 0.1-0.5 0.3-0.2 0.4-0.8-0.1 0.2-0.7-1.2-1.6-0.8-0.4 0.2 1.2 0 0.7-0.6 0-0.9 1.5 0.2 0.5 0.9 0.4 0.7 1.8-1.6 0.9-0.7 0.5-0.1 2-0.8 0.5-0.5-0.2 0.1-0.9-0.8-0.5-0.5 0.3-1.4 0.1-1.2-0.7 0.1-1-0.7 0.1-0.6 0.7-1.1 0.5-0.5-0.2-0.7-0.9-1.4-0.8-0.9-0.2-0.3-1.5-0.8-0.8-1.1 0.1-0.8-0.3-0.5-0.5-0.6-1.5 0.1-0.7 0.1-1.4-0.7-0.7-0.6-1.3 1.1-0.4-1.3-1.3-0.1-2-1-0.5-0.9 0-0.6-0.7-0.9-0.1-0.4-0.4 0-0.7-0.9-0.5-0.3 0.4-0.1 0.9-0.9 0.9-0.3 1.1 0.4 0.5 0.9 0.1 1.8 1-0.5 0.5 0.4 0.7 1-0.2-0.2 0.6 0.8 0.2 0.5-0.3 0.1 1.3-0.4 0.6-1.9-0.2-1.3 0.2-1-1.7-1.8-0.1-0.4 0.5-0.1 0.8 0.6 0.8-1.1 0-1.1-0.9-0.1-0.8 0.2-0.7-0.6-0.5-1.5 0.5 0-1.3-0.4-0.8-0.7 0.3-1.1 0.1 0.1-0.5-0.5-1 0.1-1-0.6 0.1-0.7-0.8-0.9-0.4-0.1-1.2-0.9-0.1 0.1 0.9-1.4-0.3 0.2-0.6-0.4-0.4-0.8 0.1-0.1-1-1.1-0.4-0.2-0.9-0.8-0.2-0.4 0.4-0.6-0.6-0.3-1.2-0.2-1.8-0.6 0.1-0.8 1.3-0.1 1.1-0.4 0.5-0.4 1.5-0.6 0.7 0 0.6 1 0.9 0.4-1.3 1.3 0.6 2.4 0.5-0.1 0.3 0.6 0.7-0.1 0.6 1 1.7-0.5 0.5-1.1 0.1-0.6-0.2-0.5 0.2-0.2 0.8-0.8 0-0.4 0.7-1.3 0.7-0.5 0.7 0 1.1 0.3 0.3-0.3 0.9-1.1 0.7-1.1 0.2-0.4 0.4-0.8-0.1-0.6 0.7-1.8 1-0.2 1.4-0.5 0.6 0.9 1.1-0.5 0.7 0.5 0.8-1 0.2-0.9 1.2-0.7 2-0.6 0.2-0.2 0.6 0.7 1.3 0.2 1.2-0.3 0.9 1.8 1.8 1-0.9 0.5 0.4 0.6-0.3 0.5 0.1 0.7-0.6 0.5 0.1 0.1 1 0.6 0.3 1.7 1.5 1.3 0.8-0.1 0.7 1 0.4 0.1 0.5 1.7 0.4 0 1.3-0.3 0.5 0.8 1.2 0.9 0-0.1 0.8 0.9 0.9 0.7 0.2 0.3 0.5 0.9 0.4 0.7 0.1 0.4-0.4 0.5 0.7 0.7 0 0.1 0.6 0.6 0.4 1.2 0 0.4-1 1-0.2 0.9 0.4 1.1-1.2 0.4 0.2 0.1 1.1 0.6 0.1 0.4 1.2-0.5 0.5 0.3 0.6-0.4 1 0.7 0.2-0.1 1.2 1 0.5 0.5 0.9 0.6-0.4 0.5 1 1.3 0 1.1 0.5 0.6-0.1 0 0.6-0.8 0.1-0.9 0.7-0.2 0.7 0.3 0.8-0.9 0.1 0.1 0.7-0.5 1.2-0.8-0.6-0.8 0.1-0.9-1.1-1.5 1.4-0.9-0.3-0.2-0.3-0.9 0.1-1.3-0.9-0.8 0-0.5 0.4-1-0.3-0.9 0.1-1.3 1-0.6 0-0.2-0.7-2.6-0.6-0.4 0.6-0.7 0.1 0.6 1.6-0.1 0.6-0.6 0.4 0.4 1.7-0.6 1.3 0.6 0.2-0.5 1.2-0.5 0.1-0.9 1.4 0.1 0.9-0.7 0.2-0.7-0.4-0.6 0.4-0.6 0.9 0.6 1.3-0.5 0.4-0.4-0.4-1.7-0.5-0.1-0.9-1.1-1.5-1.7 0.2-0.8 0.7-0.6 0.1 0 0.5 0.6 0.7-0.1 0.6 0.4 0.8-1.9 1.9-0.2 1.2-0.5-0.1-0.8 1.2 0.2 0.4-0.4 0.9-1.7 1.7 0.1 0.3 1.1 1 0.8 1.2 1.3 2.2 1.4 1.5 0.9 0.6 1 1.2 2 0.5 2.2 2.2 0.7 0.4 1.5 0.1 1.6-0.3 2.3 1.4 0.8 0.1 0.9 1.7 0.4-1.2 0.7 0.5 1.3 0 0.1 0.3 1.5-0.3 1 0.1 0.7 0.5 0.5 1.1-0.2 2.7-0.4 0-0.7 1.1 0.4 1.8-0.5 0 0 0.8 1 0.1-0.1 1.1 0.5 0.4 0 1.5 0.7 0.2 0.4 0.8-1 0.1-0.2 1 0.2 0.9-0.3 0.8-0.9 0-0.1 0.5-1.2 0.6-0.1 0.4-1.1 0.4-0.3-0.4-1.6 0.5 0.9 1.6-0.8 1-0.7 0.3 0.7 0.6-0.2 1.1-0.3 0.8 0.3 1.7-0.4 0.9 1.1 0.7-0.2 1 1.9-0.3 0.6 2.2 0.8 0.4 0.4 0.8 0.7 0.3 0.9 1 1.2-0.6 0.6 0 0.1 0.6-0.4 0.6 0.1 0.9-0.9 0-0.4 2 0.4 0.7-0.9 0.7 0 0.8 0.3 0.4-1.7 0.9 0.9 0.9-0.1 0.6 0.9 0.6 0.8-0.1 0.5 0.8 1 0.1-0.2-1.3 0.8 0.2 0.7 0.8 2.1-0.2 0.6 0.6 0.7 0.4 1-0.8 0.3 0.2-0.2 1-0.8 0-0.8 0.8-0.2 1.1-0.8 0.7-0.3 0.6-1 0.3-0.1 1 0.4 1.5-0.2 0.4-0.1 1.8-0.3 0.6 1.2 0.2 0 0.8 0.6 0.3-0.3 0.5 0.2 1 0.8 0.4 0.4-0.4 0.7 1.3-0.3 1.8-0.6 0.3-0.7 0.8 0.1 1.2 0.6 0.9 0.7 0.6-0.4 1.2-0.6 0.7 0 0.7 0.9 0.4-0.7 0.6 0 0.9-1.4 0.3-0.6 0.7-0.3-0.1-0.4 1.3 0.1 0.5-0.3 2.4-0.6-0.2-0.7-0.7-0.1-0.9-0.5-0.6-0.4-0.2-0.4-0.4-0.7-0.1-0.4 0-0.2 0.2-0.3-0.3-0.3-0.1-0.3-0.3-0.3 0-0.3 0.3 0.7-0.2 0.2 0.3 0.5 0.3 0.5-0.1 0.3-0.1 0.5 0.2 0.3 0.3 0 0.4 0.4 0.4 0.4 1.4 0.6 0.5 1 0 0.2 0.8-0.2 1.6-0.5 0.2-0.4 0-0.2 0.1-0.5 1 0.3 0.4-0.3 0.9 0.1 0.4-0.4 0.3 0 0.2-0.1 0.4-0.2 0-0.4 0.3-1 0.8 0.2 0.3-0.5 0.9-1.2-0.5-0.9 0.2-0.3 0.8-0.9 1 0.1 0.5-0.5 0.5-0.2 0.9 0.2 1.7 0.3 0.6-0.7 0.8-0.6 1.9 0.6 1.2-0.4 1.1-0.8 0.6-0.3-0.5-0.3 0.2-0.6-0.3 0.1 0.9-0.7 1.1-1-0.8-0.1-0.4 0.5-0.8 0.4-0.2-0.6-0.1-0.7 0.2-0.3 0.5-0.6-0.1 0.2-0.7-0.7 0.2-0.3 0.3-0.3-0.1-0.3 0.2-0.6 0.6-0.1 1.2-0.3 0.5 0.2 1.3-0.4 0.4-0.6-0.2-0.2-0.8-0.1-1.3-1-0.3-0.3 0.1-0.2 0.2-0.1 0.9-1.3 0.5-0.3 0.3-0.1 0.3 0.7 1.1 0.2 0.6-2.3-0.4 0.1-0.4-0.6-1.6-0.8-1-0.5-1.2 0.4-1.5 0-0.5-0.7-1 1.4-1.6 0.6-1.1 0.4-2.1-0.5-1.5 0-0.7-0.8-1.3-0.8-0.5-1.6-0.4-1.5 0 0.3-0.8 0.2-1.1 0.6-1.6-0.6 0.1-0.3 0.7-0.1 1.1-0.9 1.2-0.8 0-1.4-0.9-0.9-1.3 0-2.5-0.3-1.9-0.7-0.1 0.5 1.4 0 1.5-0.4 0.4 0.2 1.7 1.1 1.1 0.7 1 1.1 0.4 0.4-0.4 1 0.8 1.4-0.1 1 0.2 0.4 0.7 1.6 2.1-0.9 1.3-2.8 2-0.8 0.3-1.2-1.3 0.1-0.8-0.6 0 0.2 1.1 1.2 1-0.6 1.1-1.1 2.9-0.8 1.7-1.4 1.4-0.4 0.7-1.1 0.6-2.2 1.8-0.7 1.1-0.7 0.4-1.2-0.1-0.5 0.7-2.1 0.9-4 0.8-2.7 0.8 0-0.1 0-0.5-0.7-0.7 0-0.4 0.2-0.8 0-0.6 0.1-0.2-0.2-0.6 0.1-0.3-0.1-0.1-0.7-0.2 0.3-0.1-0.3-0.3 0-0.6-0.1-0.2-0.5 0-1.1-0.1-0.4-0.1-0.4 0.1-0.5-0.4-0.5-0.2-0.1 0.2-0.2-0.3-0.2 0-0.1 0-0.2-0.1-0.4-0.2-0.3 0-0.1-0.3-0.5 0.1-0.2-0.1 0-0.1-0.4-0.3 0.2-0.2-0.2-0.5-0.2-0.4-0.4-0.5 0.2-0.3-0.5-1.1 0.6-0.8-0.6-0.6-0.1-0.3 0.1-0.5-0.4 0-0.1 0.1-0.6-0.1-1-0.4-0.2-0.3-0.3 0.9 0 0.7-0.3 0.1-0.7 0.4-0.5-0.2-0.2 0.2-0.2 0-0.4 0.7-0.1 0.1 0 0.1 0.2 0.2 0 0.2 0 0.8-0.6 0-1.6-0.2-0.4-0.7-0.7-0.8 0.2-1.3 1-1.7-0.4-0.9 0.1-0.6-0.2-0.5-0.8-0.1-1.3-1.4-1.7-0.1-2-0.5-0.6 0.1-0.3-0.6-0.6-0.1-0.2-1.1-0.3-0.3-1.3 0.3-1.3 0.1 0-1.3 0.3-1.4 0.8 0.3 1.5-0.4 0.7-0.7-0.5-0.5 0.8-0.4 1 0.1 1.3 0.3 0.1-1.1-0.6-0.7-1.5-0.9 0-0.6 0.4-1.1 0.1-1-1.3-0.7-1.4-0.2-0.6-1.8 0.2-0.4 1.3 0.2 0-1.6-0.2-0.9-0.7-0.3-0.3-0.8-1.7-0.3-1.1 0.3-0.7-0.1-0.2-0.6-0.4-0.2 0.1-2.1-0.7-0.7-1.3-0.6-1-0.8-2.4-0.4-0.9-1.4-1.3-0.6 0.2-1.2 0.4-0.8 0-1.1 0.5 0 0.1-0.9 0.4-0.5-1-0.7 0.1-0.4 0.8-0.2 0.4-0.5 0.5 0.4 0.4-0.5 0.7 0.2 0.7-0.7-0.1-0.7-0.8 0.5-0.5-0.8-1.2 0.1-1.6-0.3-0.8 0.7-0.4-0.6-0.7-0.2-0.9 0.3-1.8-0.8-0.7 0.6-1.6 0.1-0.4-0.9-0.9 0.1-0.5-1-0.9-0.8 0.1-0.7-0.7-0.5-0.9 0.1-1.6-0.8 0.2-0.6-0.4-0.5-1.9-0.1-1 0.3-0.3 0.3-1 0-0.5-0.7-0.8-0.4 0-0.5-0.7-0.8-0.7 0.1-0.3-2.7 0.2-0.6 1-0.9 0.3-1-0.2-1.3 1.1-0.4-0.6-1.2-0.6 0-0.1-1.6 0.5-0.9 1.1 0.2 1.1 0.6 2.8-1.2 0.7-0.1-0.3-1.1-0.7-1.2 0-0.4 0.9-0.8 1.2 0.2 0 0.4 1-0.2 1.2 0.1 0.5 0.7-0.3 0.9 0.4 0.9-0.4 1 1.2 0 0.9 0.6 0.6 0.1 0.1 0.8 0.7 0.1 1.2-0.2 0.1 0.4 0.6 0.3 0.4-0.2-0.4-0.7 0.9-0.5 0.8-0.2 0.2-1.9 0.4-0.3-0.4-0.8 0.9-1.1-0.1-0.4 0.9-0.2 1.3-1.6 1.2-0.1 1.7 0.2 2.1-1.2 2-0.8 2.1-0.5 0.7 0.1 0.2 0.6 1.9-0.4-0.1-0.4 0.5-1.5 0.4-0.2 0-1.2-0.6-0.8 0.1-0.6 0.6 0.1 0.8-0.4 0.6-0.8 0.7 0-0.2-0.7 0.7-0.7 1 0.6 0 0.4 0.6 0.4 0.7-0.8 1.3 0.5 1.1 0.5 0.8 0.8 1.7 0.6 1.4 0.2 0.6-0.9-0.4-0.2-0.8-1 0.2-0.6 1.8 0.4 0.2 0.6 1-0.6-0.1 1.1 0.9 0 0.3-0.4-0.3-0.7-0.1-1.6 0.5-0.1 0.2 1 1-0.5-0.3-1.7 0.2-0.8-1.1-0.5 0.3-0.6-0.7-0.4-0.5-1.1 0.4-0.6 1 0.4 2 0-0.6 1 0.8 0.3 0.6-0.5 1.2 0.3 1.7 0.9 0.6-0.6-0.6-0.4 0.3-0.5 0.8 0.2 1-0.4 0.2-0.9-0.6-0.2 0.5-1.1-0.5-0.1 0.2-1.2 0.9 0.5 0.6 0.6 1 0 0-0.7 0.4-0.7 0.8-0.3-0.6-0.6-0.2-0.5 1.6 0 0.4 0.3 1.7 0.1 0.2-0.9-0.8-1.1-1.2-0.3 0.4-1.3 1.1 0 0.9-0.8 0.1-0.9 0.6 0.2 1-0.6 0.2-1.1 1.2-1.9 0-0.6-0.3-0.5 0-0.7 1-1.4-0.7-0.9 0.1-0.9-0.2-1.7 0.5-0.5 0.5 0.6 0.8 0.3 0.6-0.4 0.8 0 0.1-0.7 0.6-0.5-0.3-0.7 0.4-1.9-0.9-0.6 0.4-0.4 0.1-1.2-2.1-0.6-0.7-1.1 1.1 0.2 0.5-0.5 1.1-2.6 0.5-0.4 1.9-1 0.2-0.6-0.1-1-0.3-0.5-1.9-1.8-0.1-0.5-1.3-1.6-1-0.6-1.5-0.7-0.7-0.9 0-2 0.6-2.6 1.4 0.6 0.1-0.3-0.3-0.8 0.9-0.7 0.2-1-0.2-0.7-0.7-0.2-1.7-1.3 0.3-1.3-0.8-0.2-0.1-0.7 0.8-2 0.8 0.5 0.6-0.4 0.2-0.7 1 0-0.1-0.5 0.4-1 1-0.1 0.1-0.5 0.7-0.6 1.1-0.1 0.8 0.8 0.3 0.5 0.6 0.4 0.3-0.3 0.6 0.6 1.2 0.2 0-0.4 0.1-0.4-0.1-0.1-0.1-0.1-0.3-0.9-0.3-0.2-0.3 0.1-0.4-0.8 0.1-0.2 0.2 0-0.3-0.4 0.2-0.7 0.2-0.2-0.1-0.1-0.2-0.1 0.4-0.2 0-0.2-0.1-0.2 0.2-0.7-0.3-0.1 0.3-0.3 0.1 0 0.1 0-0.2-0.3 0.2-1.1 0-0.4-2.4-1-1.2-1-0.2-0.5-1.3-0.9-0.1-0.7 0.5-0.6-0.8-0.7 0.8-0.7-0.9-0.5-0.5 0.2-1.6-0.4-0.3-0.6 0-1-0.3-0.6 0.7-0.1 0-0.4-0.1-0.2 0.1-0.2 0.1-0.4-0.1-0.8 0-0.3 0.2-0.4 0.3-1.1 0.3-0.5 0.9-0.8 0.4-0.2 0.1-0.4 0.1 0.1 0.8-0.4 0.1 0.5 0.4 0.3 0.2-0.6 0.7 0 0.3 0.1 0.2-0.1-0.1-0.3-0.5-0.4 0.5-0.3-0.1-0.6 0-0.2 0-0.3-0.1-0.4 0.6-0.4 0.5 0.7 0.3-0.1 0.3 0.1-0.1-0.5 0.8-0.6 0.1-0.3 0.7 0.2 0.4-0.1 0.1-0.4 0.5-0.3 0.1-0.3 0.1-0.2 0.3-0.2 0.1-0.1 0.4-0.3 0.1-0.2 0.2 0.1 0.4-0.7 0.7-0.5 0.2 0 0.4-0.2 0.3-0.5 0.7-0.1 0.3-0.1 0.3-0.3 0.2-0.3 0.1-0.5 1.2-1 0.1 0.1 0.1 0.1 0.2-0.6 0.4-0.2 0-0.2-0.3-0.1-0.4-0.7-0.5 0.1-0.3 0-0.5-0.4 0-0.3 0.8-0.8-0.1-0.7-0.3-0.6-0.5 0.1-0.2-0.8-1-0.2-0.5-0.8 0.5-0.6 1.4-0.9-0.1-0.7-0.8 0.6-0.7-0.3-0.6 0.2-0.1 0.6-1.2 0.4-0.9-0.9 0-0.2 0.1-0.8 0.5-0.2 0.7-1.5 0-0.7 0.8-0.8 0.1-2 0.5-0.8 0.2-2-0.7-2.5 0.2-1.2-1.2-1.2 0.3-0.8-0.9-1.2-0.1-1.4-1-0.8-0.2-0.8-1.5-0.3-0.8-1.5-0.1-0.8-0.7-0.3 0-1 0.5-0.4 0.3-2.2 0-0.8 1.4 0.2 0.6 0.6-0.3 0.3 0.6 1 0 0.9 1.8 1 0.7 0 0.7-0.7 1.2 0 0.6 0.5 1.6-0.4 0.7 0.1 0.2 0 0.6 0.5 0.1 0.4 0.7-0.1 0.2 0.3 0.7 0 1.3 0.4 0.8 0.3 0.7-0.3 0.4-0.9 1-0.5 0.9-0.9 0-1 0.7-0.3 1.7-0.4 0.9 0.2 0.7 0.8 0.7 0.2 0.9-0.7 0.9 0.6 0.2 0.8 0.5 0.3 0.7-0.5z", "36": "M203.7 83.7l0.2-0.1 2.5-0.7 0.8-0.1 1.5 0.2 0.9-0.1 2 0.3 1.5 0.7 0.8 0 0.4 0.5 0.5 0.9 0.4 0.1 1 0.1 1.6-1.4 1.5-0.6 0.8-0.5 0.5-0.1 0.2-0.2 0.5-0.4 0.4 0.6 1.8 1.8 1.1 0.3 1.4 1.2 1.4 0.6-0.4 0.9-0.4 1-0.1 1.7 0.1 0.4-0.2 0.6 0.2 1 0.6-1.1 0.4 0.2 0.6 0 0.6 0.3 0.5 0.6 0.4 0.7 1 0.4 0.9 0.4 0.2 0 0.5 0 0.9 0.3 0.7 0.3 0.5 0.3 0.6 0.4 0.5 0.4 0.2 0.2-0.1 0.3 0.3-0.1 0.2-0.1 0-0.2-0.1-0.3 0.1-0.1-0.1-0.4 0.1-0.2-0.1-0.2 0-0.2 0.1 0 0-0.2 0.1-0.1 0.1-0.1 0.1-0.1 0-0.2 0.1-0.1-0.1-0.1-0.2 0-0.2-0.3 0.4-0.1 0.3-0.2 0.5 0.1 0.1 0.5 0.3 0.1 0.1 0.2 0 0.2 0.1 0 0.4 0.2 0.2 0.1 0.2 0.2-0.1 0.3 0.2 0.4-0.1 0.1 0 0.4 0.2 0.1 0.2-0.1 0.3 0.1 0.4-0.1 0 0.1 0.3 0.2 0.4 0.3 0 0.1 0.3 0 0.2 0.2 0.4 0.1 0 0.2 0.2 0.1 0.1 0.1 0.1 0 0.1 0.2 0.2 0.3 0.1 0.1 0 0.2-0.1 0.1 0.1 0.4 0.1 0.2 0 0.3 0 0.4 0.2 0.4 0.2 0.5 0 0.2 0 0.1-0.1 0.1-0.1 0.2 0.1 0.2-0.3 0.3 0.1 0.1 0 0.2 0.1 0.2 0 0.1-0.5 0.2-0.1 0.2-0.3 0.2 0 0.1-0.1 0.2 0 0.2-0.7 0.7 0.1 0.2 0-0.3 0.1 0 0.1 0.1 0.1 0 0.3 0.1 0.3 0 0.7 0.2 0.1-0.1 0.1 0 0.1 0 0.1 0.1 0 0.1 0.1 0.1 0 0.2-0.1 0.1 0 0.1 0 0.1-0.2 0.1-0.1 0-0.1-0.1-0.1 0.1 0 0.2-0.2 0.4 0.1 0.1 0.2 0.1 0.2-0.1 0.1-0.1 0.1 0.2 0.1 0 0.3 0.1 0.2 0 0.2 0.2 0.1 0.1 0.1 0 0.1 0.1 0.2 0.3 0.1 0 0.1 0.1 0.1 0.2 0.2 0.3 0.3-0.2 0.1 0.1 0.3 0.1 0.2 0.1 0.2 0.3 0.3 0.5 0.2 0.1 2.2 2.6-2 3.7 0.2 0.3-0.2 0.2 0.4 0.3-0.1 0.3 0.1 0.3-0.2 0.2 0.2 0.4 0.1 0.4 0.3 0.3 0 0.1-0.2 0.4 0 0.3 0.2 0.5 0.2 0.3 0.9 0 0.6 0.1 0.3-0.3 0.2 0.2 0.4 0.1 0.3 0.4 0.1 0.3 0.1 0.5 0.2 0.4 0.1 0.4 0.3-0.1 0.3 0.3 0.4 0 0.2 0.1 0.4 0.1 0.2 0.4 0.7 0.2 0.4-0.2 0.5 0.7 2-1.9 0.3 0.4 0.5 0.2 0.4-0.1 0.2 0.1 0.1 0.2 0 1.4-0.1 0.5-0.2 0.4 0.1 0.6 0.3 0.5 0.4 1.1 0.7 0.2 0.4 0.4 0.1 0.3 0.4 0.8 0.3 0.6 0.7 0.5 0.6 0.2 0.2-0.1 0.3-0.1 0.5 0.8 0.3 0.2 0.5 0 0.2 0.4-0.2 0.6-0.2 0.4 0 0.3 0.1 0.4 0.3-0.3 0.4 0 0.8-0.1 0.5-0.2 0.9 0 1.1 0.2 0.2 0 0-0.4-0.1-0.3 0.1-0.1 0.7 0 0.4 0 0.4 0.1 0.2 0.3 0.3 1.1-0.1 0.4 0.2 0.4 0.2 0.6 1.1 1.3 0.2 0.4 1.4 1.3 0.6 0.5 0.3 0.3 0 0.8 0.6 0.9 0.9 0.8 0.9 0.1 0.6 0.1 0.4 0.4 0.3 0.3 0.3 0.9 0 0.5-0.2 0.6 0.1 0.5 0.1 0.4-0.1 0.2 0.1 0.1 0.5 0.6-0.3 0.4 0 0.3-1.5 0.6-0.1 0.1 0.3 0.4 0.2 0.4-0.1 0.2-0.4 0-0.1 0.1 0.2 0.5-0.2 0.5-0.6 0.1 0.6 1 0.4 0 0.8-0.6 1.6-0.2-0.2-1.2 0.1-0.2 0.1-0.2 0.2-0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0 0.2-0.1 0.1-0.1 0.1-0.1 0.1 0.1 0.1 0 0.2 0.1 0.2 0 0.2 0.1 0 0.1 0 0.2 0.2 0.3 0.3 0.3 0.1 0.1 0.1 0.1 0 0.1-0.1 0.1-0.1 0.2 0.1 0.3 0.1 0.3 0.2 0 0.2 0.1 0.3 0.2 0.2 0.1 0.3 0.1 0.4 0.1 0.3-0.2 0.2-0.2 0-0.4 0.1-0.2 0.1-0.1 0.1 0 0.2 0.3 0.2 0.2 0.1 0.2-0.1 0.2-0.1 0.1 0 0.2 0.1 0.2 0.4 0.1 0.2 0 0.4 0.5 0.2 0 0.2 0 0.1 0.1 0 0.1 0.1 0.3 0 0.2 0.1 0.1 0.2 0 0.2 0.1 0.1 0.3 0.1 0.1 0.1 0.1 0.3 0.5 0.3 0.2 0.3 0 0.3 0 0.1 0 0.2 0.4 0 0.2 0.1 0.3 0 0.2 0 0.3 0 0.1 0.1 0.1 0.4 0 0.1-0.2 0.2-0.1 0.1 0 0.1-0.1 0.1-0.1 0.1-0.1 0.1 0 0.3 0.1 0.1 0.1 0 0.1 0 0.1 0 0.1 0.1 0.3 0.1 0.1 0.1 0.1 0 0.1-0.1 0.2 0 0.1 0.1 0.2 0.1 0.4 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.2 0 0.3 0.1 0.1 0.1 0.1 0 0.1 0 0.2 0.1 0.2 0.2 0.1 0.2 0.1 0 0.1 0 0.1 0 0.1 0 0.1 0.2 0.1 0.2 0.1 0.2 0.2 0.2 0 0.1 0.1 0.3-0.1 0.1 0 0.2 0 0.3 0.6 0 0.2 0.1 0.1 0 0.1 0.1 0.1 0 0.1 0 0.1-0.1 0.3-0.1 0.1 0 0.2 0.2 0.1 0 0.2 0.1 0.2 0.1 0.1 0.1 0.1-0.1 0.1 0 0.1 0.3 0.2 0.1 0.2 0.2 0.1 0.3 0 0.4 0 0.2 0.4-0.1 0.6-1 1.9-0.6 0.1-0.2-0.1-0.4-0.2-0.1 0.2 0 0.1-0.2 0.1-1.2 0.1-0.8 0.4-0.5-0.1-0.5-0.4-0.6-1.3-1.2-0.2-0.1 0.2-0.3 0.2-1.2 0.1-1 0.8-1 0-0.4-0.2-0.3 0-0.4-0.2-0.3 0.1-0.1 0-0.2 0-1.1 1.1-1.5 1.1-0.8 0.4-0.6 0.8-0.7 2.1-0.6 0.7-2.9 0.5-0.8 0.5-1.2 0.1-0.5 1.6-1.8 1.3-0.3 0.7-2.5 1.3-0.4 0-0.4-0.4-0.3-0.4-0.4-0.4-1.2-0.6-1.1-0.2-0.4 0.1-0.5 0.1-0.3 1.1-0.4 0.4 0.2 1 0.9 1.1 1.9 1.1 0.8 1.8 0.5 0.5-0.1 1.5-0.5 1.2 0.3 0.8 0.7 0.6-0.1 0.6-1.2 2.1-1.1 1.3-0.3 0.5-0.3 0.4-0.4 1.1-0.7 0.9-0.9 0.5-1.2 0.2-1.1 2.1-0.9 0.7-1.3 0.5-1.9 0.3-0.8 0.3-1.3 1-0.4 2-0.4 0.7-0.4 0.1-0.1-0.2 0-0.1 0-1-0.8-0.3 0.2-0.8-0.2 0-0.4 0.2-1.4 0.4-0.3-0.1-0.3 0-0.4 0-1.8-0.8-0.3 0.2-0.1 0-0.4 0-0.2 0.3-1-0.8-0.1-0.5-1 0.1 0-0.9-0.7 0.2-1.5-0.7 0.3-0.6-0.4-0.3-0.9 0.1-1.1 0.6-0.3-1.7-0.5-1.1-0.6 0.3-0.7-0.4-0.6 0-0.6-0.5-0.5 0.1-0.1 0.7-0.7 0.8-1.3 0-0.8-0.7-1.4 0.2-0.6-0.9-1 0-1.1-0.2-0.7 0.7-0.9-0.2-0.6 0.2-1.4-0.1-0.1-0.5-0.8 0.1-0.2-0.8 0.4-0.8-1-0.7-0.3-0.8-0.1-1.2-0.5-0.6 0.5-0.4 0.1-0.7 1.4-1-1.1-0.7-0.4-1 0.3-1.2 0.4-0.8 0.5-1.7 0.5-0.9 0.2-0.8-1.8 0.1-0.7 1.1 0.1 0.9-0.6 0.9-1 0.4-1.1-0.5-0.4 0.6-1.3-0.1-1.8-1.6-1.7 0.3-0.6 0.8-0.9-0.1-1-0.6-1-1.2 0.1-0.7-1.7-0.7-1.3-0.2-0.5-1-1-0.7-1.7-0.4-2.2-0.5-0.2-0.9-1.3 0-0.9-0.2 0.3-1-0.9-0.3-0.4-0.8-1.1 0.1-0.9-0.8-2.6-0.1-0.5 1.4-1-0.2 0.4-0.8-1.7-1.9-0.2-1-1.4-0.8-1.5 0.1-0.6-0.1-0.2-0.5 0-1.6 1-1.3 0.1-1.6-1.1-0.5 0-0.6-0.7-0.6-0.3-1.1 0.2-0.5-0.5-0.6 0-0.6-0.8-0.9-0.2-1 0.1-1 1-1.2-0.1-0.9 1.3-0.8-1-1.1 0.3-1.1 0.9-0.6-0.5-0.5 0.1-1.4-1.1-1.2-0.9-0.8 0.2-1-0.2-1.1 1-0.8 0.2-0.8-0.1-1.4-1.2-1.1 0-0.6 0.5-2.4 0.6-1.5-0.4-1-1-0.8-1.2-2.9-0.2-2.5-0.4-0.8-0.1-2.5-0.2-1.5 0-2.1-0.4-0.2-0.2-1.3-0.9-1.9-0.6-1.7-0.9-0.3-0.2-1 0.5-0.4 0.5-1.8-0.1-1.4 0.4-0.9-0.1-1.4 0.4-0.5 0-1.1 0.6-0.7 2.6 0.2 0.6-0.7 2.2 0.3 0.7 0.8 0.4 0 0.4-0.9-0.1-0.8 1.3-1.9-1.1-0.7 1-2 0.3 0 1-2.2 1.4-1.1 1.7 0.1 0.7-0.9 2-0.2 0.9 0.1 0.3-0.6 0.9-0.4 0.2-0.8 1.6-0.6 0.8-0.8-0.1-0.8 1.2-0.9-0.4-2.3 1.4-0.9-0.2-0.9-1-0.6 0.9-2 1.2-0.3 0.2-0.4-0.4-0.3z", "37": "M319.4 815.3l0.2-1.5-0.4-0.4 0.2-1-0.3-0.1-0.4-0.9 0.5-1.5-0.2-0.9-0.4-0.6-0.1-1.6 0.4-1 0-0.9-0.3-1.3 0.5-0.6 0.8-0.1 0.6-0.6 0.8-0.4 0.5 0.4 0.4-0.9-0.3-0.6-1.6-0.9-0.6-0.6-1.3-0.3-1.5 0.2-0.9 0.4-1.3-0.6-0.7 0.1-0.7-0.4-1.6-0.6-0.7-0.9-0.4-1.4 1.3-0.2 0.2-0.6 1 0.4 1.4-0.1 0.1-0.7 0.4-0.3 1.2-0.2 0-1-0.5-0.1-0.4-0.6 1.1 0 0.5-0.6 0.7 0-0.1-0.9 0.6-1.3-0.4-0.2-0.9 0.4-0.6-0.9 1.7-0.6 0.1-1-1.6-0.3 0.5-1.7-0.1-0.5 1.1 0 0.2-0.7-0.5-1 0.1-0.7-0.2-2.3 0.4-0.3-0.1-1.3 0.5-0.5 0-0.8 0.7-0.6-0.2-0.9-0.5-1 0-0.6-0.6-0.6 0.1-0.4-2-0.6-1-0.6-0.5-0.8 0.3-1 0.7-0.1 0.1-0.7-0.4-0.3 2.5-2-0.7-0.4 0.5-1 0.3-1.1-0.2-0.9 0.8 0.1 0.3 0.5 1.3-0.3 0-0.9 0.4-0.4-0.8-0.5 0-0.5 0.8-0.5 1.3 0.4 0-0.9 0.8 0.4 0.5 0 0-0.9 0.8-0.1 0.5-0.3 1.2 0.3 0.2-1-1.1-0.8-1.2 0-1-0.4-0.2-0.9-1.3 0.3-0.7-0.8-0.9 1.1-0.4-0.9-0.5 0-0.5-0.4-0.7-0.1 0-0.8 0.4-1.1-0.2-0.9 0.4-1.4 1.1-0.3 0.2-0.4 1.1-0.4 0.4 0.1 0.8-0.8-0.3-0.5-1.1-0.6-0.6-0.1 0.2-0.7 0.5-0.4 0-0.5 1-0.2 0.3-0.4 0.2-0.8 0.8-0.5-0.2-1.1 1 0.2 0.1-1.5 0.9 0 0.3-0.8-0.3-0.9-0.6 0-0.7-0.9-1.8-0.6-0.3-0.7 0.7-0.8 1.1-0.3 0.1-0.5-0.3-1 0.2-0.9-0.6-0.4-0.4-0.9 0.6-1-0.5-0.9 1.1-1.3-1.1-0.5-0.7 0 0.6-0.6-0.5-0.9-0.9-0.2-0.2-1 0.9-0.8 0.2-1.1-1-0.3 0.1-0.5 1.1 0.2 0.8-0.3-0.4-0.8 0.2-0.6 0.8 0.3 0.1-0.6-0.6-0.4 0.4-1.6 1.4-0.3 0.2 0.7 0.4 0.3 1.9-1 0.5 0.1 0.7-1.3-0.2-1.2-0.4-0.8 0.1-1.2 0.6-0.5 1.2-0.1 0.6-0.8 0-0.5 0.7-1.4 0.5-1.4 2.4-0.8 1.2 0.3 0-0.8-0.6-0.6-0.9-0.3-0.4-0.6-0.2-0.9-0.9 0.1-0.5-0.2 0.4-1.4-1.4 0.1 0.2-1.2-1.7 0-0.1-1.4-0.3-0.3 0.2-1.2 1.2 0.4-0.1-0.7 0.2-1 0.5-0.2 0.5 0.7 0.4-0.1 0.1-1-0.3-0.7 0.5-0.8 0.1-0.7-0.3-0.5 0.8-2.1 0.6-0.5 0.5 0.2 0-0.8-1.3-0.2 0-0.7 1.7-0.6 0.5-0.5 0.8-0.3 0.9 0.7 0.3 0.5 0.9 0.3 0.6 0.8 0.6 0.3 0.1 0.8 0.3 0.3 0.8-0.6 0.6 0.4 1-0.1 0.7 0.6 1.2-0.4 0-1.3 0.3-0.9 0.2-1.1-0.6-0.7 0.2-1.6 1.3-1.4 0.9 0.2 0.8-0.9 0.8 0.2 0.5-0.6-0.1-0.8-0.4-0.6-0.1-2 0.5-0.4 0-1.2-0.8-1.8-0.6-0.4 0.6-0.9 1-0.1 0.2-0.4 0.8-0.4 0-0.7 0.5-0.8 0.3-0.9-0.3-0.9-0.7-0.3 0-0.9-1.5-0.4 0.5-2.3 0.9 1.1 1.6 0.1 0.1 1 0.4 0.6 1.1 0.4 1.6 0.3 0.6 0.8 1.1-1 2 0.4 0.6-0.3 0.6 0.4 2.8 0.8 0.5 0.7 0.7-0.5 0.9 0.2 0.7-0.2 0.8 0.8 1.3 0 0.4 1 0.2 1.2-0.1 1.5 1 0 0.9-0.4 0.9 0.1 0.9 0.5-0.2 1.2 0.5 1 0 0.4-0.8 0.6 0 0.4 0.8 0 0.5-0.4 0.9 0.8 1.1-0.2 0.4 0.5 1.4 0.1 0 0.6 1.3 0.4 0.9 1.2 0.7 0.4 1-0.3-0.3-0.7 0.2-0.9 0.8-0.6 0.1-1.2 0.3-0.7-0.4-1.1 0.6-0.1 1.7 0.8 0.3 0.9 0.9-0.3 1 0.1 0 0.3 1.5 1 0.9 0 0.6 0.6 0.4 0.7 1.5-0.7 0.1-0.9 0.9-0.2 0.2 0.8 0.6 0.6 0.9 0.3 0.3-0.2 0.2-1.2 0.5-0.9 0.6-0.4 1.3 0 1.2-0.3 1-0.7 1.2 0.2 0.6 0.7 0.8 0.4 0.4 1.1 1.7 1.3 1.1 0.3 1.1 1.2 0.1 0.7 0.9 1.4-0.3 1.9-0.2 0.5 0.1 1.4-0.6 0.5-0.8 2.1 0.1 0.8 0.7 1-1.3 1.2-1.2 0.7-0.4 0.7 0.1 1.6-0.2 0.6 0.5 0.3 0.7-0.4 1.2 0.1 0.3 0.8-0.1 1.7 0.3 1.3-0.1 2.8-0.4 0.8-1.1 0.2 0.8 1.3 0.5 0.4 2.7 0.7 0.3 0.5 0.4 0.2 0.5 0.9 1.2 0.7 0.9 0.9 1.7-0.7 0.3 0.6 0.8 0.1 0.4-0.7 1.5-0.2 0.8-0.6 0.9 1.2 0.8 2.3 0.8 1.3 0.9-0.7 0.5 0.4 0.7-0.5 1.6-0.7 1.3 0 0.8 0.4 0.7 1.1 2.3 1.5 0.5 0.6 0.6 0.3 0.2 0.9 0.4 0.8 1.1 0.6 0.5 0.7-0.2 0.6 0.8 0.5 0.3 1.6 0.7 1.6 0 0.5 0.8 0.9 0.6 1.2-1.7 0.9 0 1.7 1 0.3 1.2-0.1 0.7-0.9-0.1-1.2 0.3-0.3 1.2 0.2 0.2 0.7-0.6 0.3 0.2 2 0.3 0.4 1.3-0.1 1.5-0.8 0.3-0.3 0.7-0.1-0.1 0.9-0.8 0.7 0 1.2 0.6 1.7-0.1 0.4 0.3 1.4 0.4 2.5 0.4 0.3 0.3 2.8 0.3 0.7 0.7 1 0.8 0.2 0.6-0.1 0.8-1.1 2.1-1.3 1.1 0.2 2.1 1.3 2.1 0 2.4 0.2 0.8 0.1 0.6-0.6 0.4 0.2 1.1-0.3 0.4 0.7 2.5-0.5 0.7-0.4 1.2 0.5 1.1-0.9 0.1-0.6 0.6-0.7 0.9-0.3 0.5 0.8 1.9-1.1 0.8 0.8 0.4 0.9-0.4 0.5-0.6 0.1-0.4 0.4-0.8-0.1-0.9 0.7-0.2 0.6-0.8 0.6-1.8 0.2-0.4 0.6-1 0.5-0.3 0.4 0 1.1-0.6 0.8-0.7 1.3-0.8 0.7-0.3 0.8 0.8 0.6-0.8 1.2-0.3 3.2-1.8 2.4-0.7 0.4-0.1 0.3-1.1 0.3-1.2-0.5-0.2-0.6-0.7-0.2-1.2 1.9-0.7 0.6-1.7 0-0.9-0.2-0.7 0.7 0 1.4 0.3 0.5-0.6 0.7-0.6 0.1-2 0.6-0.8 0.4-0.6-0.1-0.6 0.7-1.4 0.2-1-0.3-0.9-0.6-0.9 0.2 0.4 1.1-0.1 0.8-0.8 0.2-0.7-0.2-0.1 0.8-0.4 0.5 0.3 0.5-0.2 1 0 0.6-0.9 0.9-0.3-0.4-2.6-0.6-0.7-0.4-1.4-0.1-1.2 0.5-0.4-0.6 0.6-0.4-0.9-1-1.2-0.3-1.2-0.7-0.3 0.5-1.8 0.8-0.4 0.7 0 0.9-0.5 0.7-0.6 0-0.2 0.7-0.9-0.2-0.7-1.1-0.2-0.8-0.9 0.7 0.7 1.6-0.6 0.6-0.4 0.9 1.3 0.5 1.5 0.4 1.2 0.9 0.5-1 1 0.4 0.4-0.5 1.3 0.9 0.5 0-0.1 0.8 0.2 1.1-0.8 0.1-0.1 1.2-0.2 0.4 1 0.7 0.4 0.7-1.2 0.8-2.5-0.4-1.1-0.5-0.1-1-1-0.5-0.2-0.4-0.6-0.3 0 0.7-0.9 0.7-0.5-1.6-0.8 0-0.6-0.5-0.2-1.5-0.4-1.6-1.3-1.9-0.7 0.3-0.8-0.6-0.8 0 0-0.9-0.5 0-0.5 0.7-0.8 0.8-0.3 0.6-1 0.1-0.6-0.2-0.1 0.9-1.3-0.1-0.3 1-1 1.1-0.6 1.5 0.8 0.4 0.7 0 0.2 1 1 0.4-0.6 1.5-0.1 1-1.1 1.1-0.9 0.7-0.6 1.2-1 1-0.7 0-0.7-0.2-0.4-0.4-0.6-1.4-0.4-0.4-1.8 0.3-0.9-1.2-0.3-0.2-0.8 0.3-0.9 1-1.4 0.1-0.9 0.6-0.3 0.4-1.6 0-0.9 0.7-1.3 0.4-1.3 0-1.6 0.8-0.3 0.6-0.6 0.3-2.7 0.2-0.9 0.1-1.8 0.5-0.2 0.5-1.1 1-0.2 1 0.4 1.2-0.5 0.7-0.3 2.7 0.6 0.9 0 1.3-0.1 1.8-0.6 0.7-1.1 0.5-1.8-0.8-1.9 0-0.9-0.2-0.7 0-1 0.6-1.1 0.4-1.8 0.9-0.1 0.9 0.6 1.5-0.7 0.9-1-0.4-0.2-1.2-0.3-0.6-0.9 0.3 0.2 2.3-1 1.4-1.1 0.8-1.2 0.1-0.9-0.2-0.9-0.5-0.7-0.5-1-1.3-1.2-0.2-1.5 1.5-2.2-0.6-1.5-0.3-1.5 0-1.2 0.7-1.1 0.3-0.8 0.8-0.8 0.1-0.8-0.3-0.6 0.4 0.3 1.1-0.4 0.9-0.2 1.1-0.5 0.5-0.8 0.2-0.8 0.6 0 0.5-0.6 1.3-1.3 0 0.1 0.5-0.9 0.3-1.3-0.6-0.5-0.9-0.3-1-0.8 0.1-0.5 1.3-1-0.6-1.5 0-1.4-0.7-0.7 0.1-0.4 0.6-0.7 0-1.2 0.4-2.9-0.8-1.1 0.5-1.5-0.4-1.1-1-0.6 0.2-2.7-0.5z", "38": "M203.7 83.7l-1.5-1.4-1 0.4-0.7-0.2-0.7-0.6-0.3-0.8-1.4 0.4-1.3-1.6-1.8 0.1-0.6-0.8-1.3-0.6-1.1 0-1 0.9-0.7 0.2-0.5-0.5 0.4-2.3-0.9-1.6 0-1.5 0.3-1 0.9-1.7 1-1 1.1-0.5-0.3-1.7 0-1.1-1.1-0.1-1.2-1.1-1.6 0.2-1.1-0.9-2 0.6-0.8 0-0.8-0.6-1.1 0.2-0.6-0.5-2.8 0.5-1.2-1.6-2.2-0.5-2.1-1.4-0.8-0.9-1.1-0.7-1.1-1-0.7-0.4 0.1-2-0.1-1 0.6-1.9-0.9-0.7-1.2-1.3-0.6 0-0.6 0.9-1.1 0.4-0.7-0.4-0.8 0.2-0.7 0.5-1.6 0-0.3-0.3-0.1-1.1-1.7 0.1-0.6-0.4-0.4 0.5-0.8 0.3 0 0.5-1.1 0.5-0.8-0.6-0.7 0.2-1 0.9-1-0.6-0.6-0.8-1.6-0.3-1.1-1.5-0.5 0-0.8-0.6 0-1.3 0.7-0.6 0.2-1.2 0.6 0 0.3-1 0.5-0.3-0.4-1-1.2-0.3-0.7-0.7 0.1-1.4 0.5-1.1 0.9-0.7-0.8-1.3 0.3-1.3 0.9-0.8 0.3-1.4 1.4-0.6 1 0.6 0.6 0 0.4-0.6 0.8-0.1 1.2-1.1 0.9-0.2 1.5-1.8 0.8-0.8 0.7 0 0.7-0.8 0.1-1.4-0.4-0.6 1.7-1.1 0.9-0.1 1.4 0.3-0.1-1.6 0.3-0.7 0.7-0.6 1.2-0.4 0.6-1.1 1.3-1.9-0.7-1.2 0.1-1.3-0.3-0.6 1.6-0.3 0.9-0.8 1.4-0.5 0.3 0.7 0.9 0.1 0.6-0.4 1.8 0 1.3-0.4 0.6 0.1 0.3-0.7 1.3 0 1-0.6 1.2 0.7 0.8 0.1 0.7 0.5 0.6-0.2 1.8 0.2 0.7 0.7 1.2 0.4 0.4-0.3 1.9 0.4 0.6-1 2 0.4 0.9-0.7 1.9 0.8 1.2-0.3 0.2-1.1-0.4-0.9-0.9-1.3-1.2-0.2-0.8-1-1.1-0.1-0.5-0.5-1.3-0.3-0.1-0.7-0.7-1-0.7-0.5 0.4-1.3 0.8 0.1 1.1 0.7 0.4-0.4 1 0.5 0.7-0.1 0.7 0.5 0.4-0.7 1.7 0.6 0.4 0.5 0.9-0.1 0.5 0.3 0.8 1.3 1 0.7 0.9-0.1 1 0.9 1.1-1.3 1 0.1 0.9-0.3 0.6-2.6 0.4-0.2 2 0.4 1.1 0.4 0.6-0.7 1.3-0.6 1.7-1.8 1.3-0.4 0.8-0.9 1.6-0.2 0.6 0.3 1.3 0 0.9 1.5 0.6 0 0.6-4 1.6-0.5 0.6 0 1.2-0.9 0.9 0.6 0.3 1.6 0.8 0.7 0.7-0.8 0.9 0.2 1.4 0 0.1 1.2 2.3 3.4 2.6-1.7 0.8-0.3 0.3-0.5 1.4 0.5 1 0.9 0.9-0.2 1.3-0.8 1.6-2.2 0.3-0.8 0.8-0.1 0.9-0.5 1.1 0.1 0.6-0.3 1.3 0.2 0 2.2 0.2 0.8 0.8 0.9 0.9-0.4 0.9 0.5 0 0.9-0.5 0.5 0.1 1.6 1 0 0.3 0.7 0.2 1.7 0.7 1.1 1.3 0.6 0.7 0.1 2.8 1.6 1.8 2.3 2.5 4.7 0.9 0.7 1.7 0.9 0.5 0 2.9 2 1.9 0.6 1.6 0 1.8 0.5 3.2 3.6 1.5 0.7 1.3 1.1 1.1 0 1.3-0.6 0.7 0 1.3 1 0.6 0.8 1 0.4 0.2 0.9 0.5 0.9-0.1 0.9 1.2 1.5 2.3 0.9 0.5 0.8 1.1 0.2 1.6-0.7 0.8 1.1 1.4 1.3 0.3 1.7 2.2 1.2 0.6 0.7 0.4 0.9-0.9 0.1-0.6 0.5-0.8 1.4-0.7 0.8 1.2 1.5 0.8 0.8 0.6 1.8 1.1 0.9 0.9 0.1 1.3 1.4 1.4 0.7 1.1 0 1.2 0.3 1.7-0.2 0.8-0.7 1.4-0.1 0.9 1.3 0.8 0.1 0.1 1.4 1.8 0.1 0.1 0.7 2 0.1 1 0.5 0.4-0.9 1.1 0.2 0.8 1 0.6 1.3 0.8 0 0.5 0.8 0 0.8-0.4 0.5 1 0.8 0.3 0.5-0.2 1 0.2 0.5 0.8 0.5-1.8 0.7-0.8-0.4-0.7-0.9-1.1-0.1-1.3 0.7 0.8 0.9 0.1 0.8 0.7 0 0.3 0.6 1.3 0.1 1.2 0.6 0.9-0.7 1.4-0.5 0.8 0.4 1-0.3 1.5 0.8 1.2-0.9 0.6 0.8 0.6-0.3 1.3 0.1 0.2-2 1.5 1.2 0.6 0 0.8-0.8 0.5 0.1 1.3 1.3 0.5-0.3 0.9 0.8 0.4-0.9 1.8 0.6-0.2-1-1.1-0.7 1.2-2.3 0.1-1.3 0.7 0.9 1.9-0.3 1.1 1.6 0.5-0.3 0.8 0.3 0.5 0.5 0.9-0.7-0.2-0.7 0.5-1.8 0.7-0.4 0.4-1 0-0.9 1.5 0.9 0.5-0.1 0.5-0.8-0.1-2 0.4-0.4 0.8 0.2 1.2 0 1.4-0.5 0.6-0.5 0.7-1.5 0.8-0.1 0.6 0.3 1.9 0.2 0.7-0.2 1.5-1.2 1.6-0.7 1.2-1.5 1.1 0 0.9-0.5 2 0 0.3 0.4 1.6 0.1 3.8-1 0.4-0.5 2.2 1.9 1.4 0 1.9 0.5 0.9-0.3 1.7-1.9-0.2-2.5 0.8-1.3 0.7-0.4 2-0.1 2.5 0 0.8 0.5 0.6 2.7 0.6 0.7 1.1 0.3 1.8 0.1 1.9 1.2 0.9 0.1 1.9 0.8 0.4 0 1.6 0.7 0.7 0.7 1 0.2 1.5 0 1.5 0.5 1.2 0.2 1-1.3 1-0.7 1.3-0.5 1.3 0.4 1.2 1.9 0.6 1.8 0.9 0.8 0.2 1 0.6 1 3.8 1.3 1.6 1 0.7 0.6 0.7 2.3 0.3 2.3 0.3 1.3-1.1 0.3-0.5 0.8 0.1 2-0.6 2.5-1.1 2.4-0.2 2-0.3 0.8-1.3 1.8-0.2 0.9 0.3 3.5-0.5 3-0.7 1.8-1.5 3.3-0.8 0.7-0.5 1.7 0.1 3.8-0.3 0.3-1.4 0.5-0.9 0.2-1.8 0.6-0.9-0.4-2 0-1.2 1.2-0.2 0.7-0.5 0-1.1 0.9 0.5 0.6 0.1 0.9-0.6 0.1-0.4 0.8 1.9 1.7 0 0.9-0.6 0.6-1 0.3-3 0-1-0.4-1.5-0.1-0.9 0.1-1.5 0.5-1 0.1 0.7 1.2 0 1.1 1.1 0.4-0.2 0.9 0.3 1.2-0.1 1.1 1.1 2.1-0.2 1.6-0.3 0.6-1.1 0.9-0.9-0.3-0.4 0.3-0.6 1.9 0.2 1-1.2 1.5-0.9 0.2-0.5 0.6-0.2 1 0.8 0.9-0.1 0.5-0.8 0.3-0.4-0.5-0.8-0.3-2.4-0.4-1.2 0.2-0.8-0.5-1.7 0-0.7-0.9-1 0.4 0 0.7-0.5 0.9-1.3 0.2-1.7-0.6-0.8-0.7-2.9 1.2-1.1 2.1 0.6 0.7 1 2.1 0 0.6 1.8 3.7 0.5 0.9 0.8 0.4 0.6-0.1 0.3 0.6-0.9 0.2 0 0.5-0.8 1.3 0.6 0.8 0.9 0.4 0.7-0.5 0.3 0.5-0.1 0.8 0.6 1.8-1.4-0.6-1.6 0.1-0.7 0.5-0.7 0-1.9-0.8-0.2 0.5 0 1.7 0.4 0.7 0.5 2.2-0.4 1.2 0 1.9 0.7 1.2 0 0.9 0.7 0.5 0.7 1.6 1.1 0 1.2 0.8 1.7 0.8 3.4 0 1.4-0.3 0.8 0.5 1.3 0.5 0.7 0 1.5-0.3 2.7 1-0.1 1.3-0.4 1.4-0.8 1.2-1 1.9-0.4 1.2 0.6 1.2 0 0.8-1 0.6-0.5 0.6 0.6 0.6 0.6 0.2 0 0.8 1.2 0.1 1.5 1.8 0.6 1.2 1.2 1.5 1.8 2.7 1.1 0.4 0.5 0.6 0.4 1.1-1.8 2.4-0.3 0.2-1.7 2.6-1.7 1.4 0 0.4-0.7 1.3-1.1 0.2-0.5-0.3-0.1-1.5-1.8-0.8-0.8-0.1-0.5 1.2-1 1.2-0.9 0-0.3 1-1.6 1.1-1.6 0-0.6 0.5 0.6 1.4-0.2 0.7-0.6 0.1-0.1 0.9-0.8 0.2-1.3-0.1-1.6 0.5-0.8 1.6-0.4-0.1-0.6-1-1.9-1-1.7-2.1-0.9 0.1-0.2-1-0.5-0.7-0.5-2-0.5-1.1 0-0.6 0.6-0.6-0.1-1.2-1-1.5 0.2-1.3-1.8 1.2-1.6 0-0.5 0.6-0.5 1.4-0.5 0.4-1.2-0.7-0.6-0.1-1.3 0.4-1.2 1.1-0.9-0.2-1 0.6-0.5 0.9-0.1 0.7-0.7 0-0.2 0.2-0.2 0.2-0.7 0.5-1.6 1.5-0.1-0.1-0.2-0.3-0.8-0.8 0.8-1-0.1-1.9 0.7-0.1 2.4-1.8-0.6-0.5-0.2-1.5 0.1-1.1 0.4-0.8-0.3-0.6 0.1-1.1-0.3-0.1-0.4 0-0.3 0-1.9 1.1 0.3 0.7-0.4 0.5-1.7 0.5-0.4 0.8-0.8 0.5-0.6 0-0.1-0.3-0.3-0.2-0.5-0.2-0.1 0-0.1 0-0.5 0.4-0.3 0.9-0.4 0.2-0.3-0.2 0-0.1-0.3-0.4-0.3 0-0.1 0.1-0.3 0.3-0.2 0.2-0.2 0.9-1.2-0.2 0.3 1.1-0.4 0.5-1.6 0-0.2-0.1 0-0.2-0.5-0.8-0.3-1-0.5-0.3-0.6-1.3-0.6-0.6 0.5-2.3 0-0.5-0.6-0.5-0.3 0-0.1 0-0.2 0-0.1-0.1-0.1 0-0.3-0.5-0.1-0.9-1.4-1.1-0.2 0-0.1 0.1-0.2 0-0.2-0.2-0.1-0.1-0.4-0.3-0.9-0.5 0.1-0.7 0.7-0.4 0.2-0.6-1.1-0.9-1.6-1.8-0.6-0.3-0.5 0-0.5-0.3 0 0.3-0.1 0.2-0.1 0.2-0.3 0.5-0.9 0.5-1.1 0.1-0.8 0.9-0.7 0.2-1 1.1-0.9 0.3-0.3-0.3-1 1-0.2 0-0.3-0.1-0.2 0-0.3-0.7-0.3 0.2-0.1 0-0.2 0-0.2-0.1 0-0.1-0.1 0-0.1-0.2-0.1 0-0.2 0.2-0.3 0.1-0.7 0.9-0.1 1.3-0.7 0.4-0.3-0.1-0.1-0.1-0.1-0.1-0.5-1.2-1.1-0.2-0.5-0.8-0.2 0.4-0.2 0.1-0.3 0-0.1-0.2 0-0.1-0.3-0.2 0-0.1 0.1-0.3-0.8-0.7-0.8-0.4-0.2-0.7-0.8 0.5-0.2-1.5-0.3-1-1.2-0.2-0.1 0.1-0.1 0.2-0.7 0.2-0.1-0.1 0-0.1-0.2-0.3-0.3 0-0.8-0.5-0.3 0.1-0.2 0.1-0.7 0.2-0.3-0.2-0.1 0 0-0.1-0.2-0.2-0.5-0.3-0.2-0.2-1.6-1-0.8-1.8-0.2-0.7-0.6-0.9-0.3 0.2-0.2 0.2-0.3-0.1-0.2-0.1-0.2-0.2-1-1.4-0.2-0.8 0.2-0.8 0.5-0.4-0.2-0.8 0.6-0.8-0.3-0.3-0.1 0-0.1 0.1-0.2 0.1 0 0.1-0.1 0.1 0 0.1-0.1 0-0.2-0.1-0.2-0.2-0.2-0.3-0.3-0.1-0.5 0-0.2 0.2-0.4 0-0.3 0-0.2-0.1-0.1-0.2-0.3-0.2 0-0.1 0.1-0.1-0.1-0.1-0.1-0.1-0.1-0.2 0-0.2-0.2-0.1 0-0.2 0.1-0.1 0.1-0.3 0-0.1 0-0.1-0.1-0.1 0-0.1-0.1-0.1 0-0.2-0.3-0.6-0.2 0-0.1 0-0.3 0.1-0.1-0.1-0.2 0-0.2-0.2-0.2-0.1-0.2-0.1 0-0.1 0-0.1 0-0.1 0-0.1-0.2-0.1-0.2-0.1-0.1-0.2 0-0.2 0-0.1-0.1-0.1-0.1-0.1 0-0.3-0.1-0.2-0.1-0.1-0.1-0.1-0.1-0.1-0.1-0.4-0.1-0.2 0-0.1 0.1-0.2 0-0.1-0.1-0.1-0.1-0.1-0.1-0.3 0-0.1 0-0.1 0-0.1-0.1-0.1-0.3-0.1-0.1 0-0.1 0.1-0.1 0.1-0.1 0.1-0.1 0-0.2 0.1-0.1 0.2-0.4 0-0.1-0.1 0-0.1 0-0.3 0-0.2-0.1-0.3 0-0.2-0.2-0.4-0.1 0-0.3 0-0.3 0-0.3-0.2-0.3-0.5-0.1-0.1-0.1-0.1-0.1-0.3-0.2-0.1-0.2 0-0.1-0.1 0-0.2-0.1-0.3 0-0.1-0.1-0.1-0.2 0-0.2 0-0.4-0.5-0.2 0-0.4-0.1-0.1-0.2 0-0.2 0.1-0.1 0.1-0.2-0.1-0.2-0.2-0.2-0.2-0.3-0.1 0-0.1 0.1-0.1 0.2 0 0.4-0.2 0.2-0.3 0.2-0.4-0.1-0.3-0.1-0.2-0.1-0.3-0.2-0.2-0.1-0.2 0-0.1-0.3-0.1-0.3 0.1-0.2 0.1-0.1 0-0.1-0.1-0.1-0.1-0.1-0.3-0.3-0.2-0.3 0-0.2 0-0.1-0.2-0.1-0.2 0-0.2-0.1-0.1 0-0.1-0.1-0.1 0.1-0.1 0.1-0.2 0.1-0.1 0-0.1-0.1-0.1-0.1-0.1-0.1-0.2 0.1-0.1 0.2-0.1 0.2 0.2 1.2-1.6 0.2-0.8 0.6-0.4 0-0.6-1 0.6-0.1 0.2-0.5-0.2-0.5 0.1-0.1 0.4 0 0.1-0.2-0.2-0.4-0.3-0.4 0.1-0.1 1.5-0.6 0-0.3 0.3-0.4-0.5-0.6-0.1-0.1 0.1-0.2-0.1-0.4-0.1-0.5 0.2-0.6 0-0.5-0.3-0.9-0.3-0.3-0.4-0.4-0.6-0.1-0.9-0.1-0.9-0.8-0.6-0.9 0-0.8-0.3-0.3-0.6-0.5-1.4-1.3-0.2-0.4-1.1-1.3-0.2-0.6-0.2-0.4 0.1-0.4-0.3-1.1-0.2-0.3-0.4-0.1-0.4 0-0.7 0-0.1 0.1 0.1 0.3 0 0.4-0.2 0-1.1-0.2-0.9 0-0.5 0.2-0.8 0.1-0.4 0-0.3 0.3-0.1-0.4 0-0.3 0.2-0.4 0.2-0.6-0.2-0.4-0.5 0-0.3-0.2-0.5-0.8-0.3 0.1-0.2 0.1-0.6-0.2-0.7-0.5-0.3-0.6-0.4-0.8-0.1-0.3-0.4-0.4-0.7-0.2-0.4-1.1-0.3-0.5-0.1-0.6 0.2-0.4 0.1-0.5 0-1.4-0.1-0.2-0.2-0.1-0.4 0.1-0.5-0.2-0.3-0.4-2 1.9-0.5-0.7-0.4 0.2-0.7-0.2-0.2-0.4-0.4-0.1-0.2-0.1-0.4 0-0.3-0.3-0.3 0.1-0.1-0.4-0.2-0.4-0.1-0.5-0.1-0.3-0.3-0.4-0.4-0.1-0.2-0.2-0.3 0.3-0.6-0.1-0.9 0-0.2-0.3-0.2-0.5 0-0.3 0.2-0.4 0-0.1-0.3-0.3-0.1-0.4-0.2-0.4 0.2-0.2-0.1-0.3 0.1-0.3-0.4-0.3 0.2-0.2-0.2-0.3 2-3.7-2.2-2.6-0.2-0.1-0.3-0.5-0.2-0.3-0.2-0.1-0.3-0.1-0.1-0.1-0.3 0.2-0.2-0.3-0.1-0.2-0.1-0.1-0.1 0-0.2-0.3-0.1-0.1-0.1 0-0.1-0.1-0.2-0.2-0.2 0-0.3-0.1-0.1 0-0.1-0.2-0.1 0.1-0.2 0.1-0.2-0.1-0.1-0.1 0.2-0.4 0-0.2 0.1-0.1 0.1 0.1 0.1 0 0.2-0.1 0-0.1 0-0.1 0.1-0.1 0-0.2-0.1-0.1 0-0.1-0.1-0.1-0.1 0-0.1 0-0.1 0.1-0.7-0.2-0.3 0-0.3-0.1-0.1 0-0.1-0.1-0.1 0 0 0.3-0.1-0.2 0.7-0.7 0-0.2 0.1-0.2 0-0.1 0.3-0.2 0.1-0.2 0.5-0.2 0-0.1-0.1-0.2 0-0.2-0.1-0.1 0.3-0.3-0.1-0.2 0.1-0.2 0.1-0.1 0-0.1 0-0.2-0.2-0.5-0.2-0.4 0-0.4 0-0.3-0.1-0.2-0.1-0.4 0.1-0.1 0-0.2-0.1-0.1-0.2-0.3-0.1-0.2-0.1 0-0.1-0.1-0.2-0.1 0-0.2-0.4-0.1-0.2-0.2-0.3 0 0-0.1-0.4-0.3-0.3-0.2 0-0.1-0.4 0.1-0.3-0.1-0.2 0.1-0.2-0.1 0-0.4 0.1-0.1-0.2-0.4 0.1-0.3-0.2-0.2-0.2-0.1-0.4-0.2-0.1 0 0-0.2-0.1-0.2-0.3-0.1-0.1-0.5-0.5-0.1-0.3 0.2-0.4 0.1 0.2 0.3 0.2 0 0.1 0.1-0.1 0.1 0 0.2-0.1 0.1-0.1 0.1-0.1 0.1 0 0.2-0.1 0 0 0.2 0.1 0.2-0.1 0.2 0.1 0.4-0.1 0.1 0.1 0.3 0 0.2-0.2 0.1-0.3 0.1 0.1-0.3-0.2-0.2-0.5-0.4-0.6-0.4-0.5-0.3-0.7-0.3-0.9-0.3-0.5 0-0.2 0-0.9-0.4-1-0.4-0.4-0.7-0.5-0.6-0.6-0.3-0.6 0-0.4-0.2-0.6 1.1-0.2-1 0.2-0.6-0.1-0.4 0.1-1.7 0.4-1 0.4-0.9-1.4-0.6-1.4-1.2-1.1-0.3-1.8-1.8-0.4-0.6-0.5 0.4-0.2 0.2-0.5 0.1-0.8 0.5-1.5 0.6-1.6 1.4-1-0.1-0.4-0.1-0.5-0.9-0.4-0.5-0.8 0-1.5-0.7-2-0.3-0.9 0.1-1.5-0.2-0.8 0.1-2.5 0.7-0.2 0.1z" }, names: { "1": "Andaman And Nicobar", "2": "Andhra Pradesh", "3": "Arunachal Pradesh", "4": "Assam", "5": "Bihar", "6": "Chandigarh", "7": "Chhattisgarh", "8": "Dadra And Nagar Haveli", "9": "Daman And Diu", "10": "Delhi", "11": "Goa", "12": "Gujarat", "13": "Haryana", "14": "Himachal Pradesh", "16": "Jharkhand", "17": "Karnataka", "18": "Kerala", "19": "Lakshadweep", "20": "Madhya Pradesh", "21": "Maharashtra", "22": "Manipur", "23": "Meghalaya", "24": "Mizoram", "25": "Nagaland", "26": "Orissa", "27": "Puducherry", "28": "Punjab", "29": "Rajasthan", "30": "Sikkim", "31": "Tamil Nadu", "32": "Tripura", "33": "Uttar Pradesh", "34": "Uttaranchal", "35": "West Bengal", "36": "Jammu And Kashmir", "37": "Telangana", "38": "Ladakh" }, default_regions: {}, proj: "mercator", default_labels: {}, proj_coordinates: [ { x: 50.9, y: 1082.7, lat: 8.27, lng: 69.648 }, { x: 549.9, y: 654.3, lat: 20.4, lng: 84.26 }, { x: 949.1, y: 65.3, lat: 35.562, lng: 95.95 } ], initial_view: { x: -10, y: 1, x2: 1020, y2: 1146 }} /* Map logic - do not edit */ !function(e){var t={};(function(){var e,t,o,i,n,a,r,s,l,c,m,u=this||Function("return this")(),p=function(){"use strict";var e,t,o,i,n,a="linear",r=Date.now||function(){return+new Date},s="undefined"!=typeof SHIFTY_DEBUG_NOW?SHIFTY_DEBUG_NOW:r;function l(){}function c(e,t){for(var o in e)Object.hasOwnProperty.call(e,o)&&t(o)}function m(e,t){return c(t,function(o){e[o]=t[o]}),e}function p(e,t){c(t,function(o){void 0===e[o]&&(e[o]=t[o])})}function d(t,o,i,n,a,r,s){var l,c,m=t0)&&oo(!1,e)},ao=function(e){var t=e.sm.type;"state"==t&&po("over_state",[e.sm.id]),"location"==t&&po("over_location",[e.sm.id]),"region"==t&&po("over_region",[e.sm.id])},ro=function(e){var t=e.sm.type;"state"==t&&po("out_state",[e.sm.id]),"location"==t&&po("out_location",[e.sm.id]),"region"==t&&po("out_region",[e.sm.id])},so=function(e,t){var o=e.sm.type;"state"==o&&po("click_state",[e.sm.id,t]),"region"==o&&po("click_region",[e.sm.id,t]),"location"==o&&po("click_location",[e.sm.id,t])},lo=function(e,t){var o=e.sm.type;"state"==o&&po("preclick_state",[e.sm.id,t]),"region"==o&&po("preclick_region",[e.sm.id,t]),"location"==o&&po("preclick_location",[e.sm.id,t])},co=function(e,t){var o=e.sm.type;"state"==o&&po("zoomable_click_state",[e.sm.id,t]),"region"==o&&po("zoomable_click_region",[e.sm.id,t])},mo=!1,uo=(mo=!1,!1);uo=!1;yi(),oi()}else console.log("The mapdata or mapinfo object is missing or corrupted.");function po(t,o){(a=se[t])&&a.apply(null,o);for(var i=e.plugin_hooks[t],n=0;n-1?_.popup_shadow:1,ee=_.popup_corners?_.popup_corners:5,te="yes"==_.popup_nocss,J=!!_.popup_maxwidth&&_.popup_maxwidth,oe=_.popup_font?_.popup_font:"12px/1.5 Verdana, Arial, Helvetica, sans-serif",V="no"!=_.zoom_out_incrementally,W=_.adjacent_opacity?_.adjacent_opacity:.3,S=_.zoom_time?_.zoom_time:.5,B=_.zoom_increment?_.zoom_increment:2,O="no"!=_.zoom_mobile,D=_.fade_time?1e3*_.fade_time:200,q=i.labels,F=_.custom_shapes?_.custom_shapes:{},j=!(!_.initial_back||"no"==_.initial_back)&&_.initial_back,H="yes"==_.hide_eastern_labels,N=_.link_text?_.link_text:"View Website",!!_.order_number&&_.order_number,R=_.zoom_percentage?_.zoom_percentage:.99}function ho(e){return"on_click"==e||!("detect"!=e||!me)}function fo(e){return"off"==e}function vo(e){if(he.style.width="",fe.style.width="",b?((xe=he.offsetWidth)<1&&(xe=he.parentNode.offsetWidth),fe.style.width=xe+"px"):(xe=void 0===_.width?800:_.width,he.style.width=xe+"px"),xe*=1,n.calibrate?((Ee={}).x=-1*n.calibrate.x_adjust,Ee.y=-1*n.calibrate.y_adjust,Ee.x2=Ee.x+n.calibrate.width,Ee.y2=(Ee.x2-Ee.x)/n.calibrate.ratio):Ee=n.initial_view,ze=Ee.x2-Ee.x,Me=Ee.y2-Ee.y,we=xe/(Te=ze/Me),Ae=ze/1e3,_e.style.height=we+"px",!e){if(ke=xe/ze,Ce=1,y){var t=[];for(var i in n.state_bbox_array){var a=n.state_bbox_array[i];t.push(a)}var r=o.bbox_union(t),s=.5*(r.x2+r.x)*ke,l=.5*(r.y2+r.y)*ke;be="r"+y+","+s+","+l;var c=o.rotate_bbox(Ee,be);ze=c.width,Me=c.height}je="s"+ke+","+ke+",0,0",Re=y?je+be:je}}function yo(){if(r)if(location.hostname.match("simplemaps.com"))r=!1;else{if(Lt){if(Math.random()>.05)return;o.delete_element(Lt)}Lt=document.createElement("div");var e=s||l?"20px":"5px";Lt.style.cssText="overflow: visible !important; clip-path: none !important; display:inline !important; opacity:1 !important; transform: none !important; visibility: visible !important; z-index: 1 !important; right: 5px !important; bottom:"+e+" !important; z-index: 1 !important; position: absolute !important; filter: opacity(1) !important;",_e.appendChild(Lt),Lt.innerHTML='Simplemaps.com Trial',ne||503!=Lt.innerHTML.length&&(_e.innerHTML="")}}function go(){var t,o,i=_.navigation_color?_.navigation_color:"#f7f7f7",n=_.navigation_border_color?_.navigation_border_color:"#636363",a=_.navigation_opacity?_.navigation_opacity:.8,r=_.arrow_color?_.arrow_color:i,s=_.arrow_color_border?_.arrow_color_border:n,l=_.arrow_border_color?_.arrow_border_color:s,u=void 0===_.navigation_size?40:_.navigation_size,p=void 0===_.navigation_size_mobile?pe*u:_.navigation_size_mobile,d=me?p:u,h="yes"==_.arrow_box?1:0,f=d*=1,v=.1*d,y=d/10;!function(){Ze=Se.set();var s=d,u=d;if(c){var p=new Image;p.onload=function(){t=p.width,o=p.height,_()},p.src=c}else _();function _(){if(c){var p=(Ue=Raphael(de,t,o)).image(c,0,0,t,o);f=o,p.attr({cursor:"pointer"}),Ze.push(p),Ze.click(Pt)}else{Ue=Raphael(de,s,u);var _=Ue.path(m.rounded_box).attr({fill:r,"stroke-width":1,stroke:l,"stroke-opacity":h,"fill-opacity":0,cursor:"pointer"}),b={stroke:l,"stroke-width":1.5,"stroke-opacity":1,fill:r,"fill-opacity":1,cursor:"pointer"},k=Ue.path(m.arrow).attr(b);(Ze=Se.set()).push(_,k);var M="S"+y+","+y+",0,0 T0,0";Ze.transform(M)}j||Ze.hide(),de.style.left=v+"px",de.style.top=v+"px",g&&function(){Ke=Raphael(ve,d,2*d+v);var t=m.plus,o=m.minus,r=m.rounded_box,s=Ke.path(r).attr({fill:i,"stroke-width":1,stroke:n,"stroke-opacity":1,"fill-opacity":a,cursor:"pointer"}),l=Ke.path(t).attr({"stroke-width":0,"stroke-opacity":0,fill:n,"fill-opacity":1,opacity:1,cursor:"pointer"});(Ge=Se.set()).push(s,l);var c="S"+y+","+y+",0,0 T0,0";Ge.transform(c);var u=Ke.path(r).attr({fill:i,"stroke-width":1,stroke:n,"stroke-opacity":1,"fill-opacity":a,cursor:"pointer"}),p=Ke.path(o).attr({"stroke-width":0,"stroke-opacity":0,fill:n,"fill-opacity":1,opacity:1,cursor:"pointer"});(Je=Se.set()).push(u,p);var c="S"+y+","+y+",0,0 T0,"+(d+v);function _(e,t){if(void 0===t&&(t="z"),z&&"region"!=z.sm.type)Ot.call(z,!0,function(){z=!1,_(e)});else{if("z"==t&&!function(e){var t=yt.sm.zooming_dimensions.w/e,o=e<1;if(-1!=x&&("manual"==yt.sm.type||w)){var i=vt[x].sm.zooming_dimensions.w,n=t>i-1;if(o&&n){var a=Po(yt,vt[x]);if(a||w)return Bo(vt[x]),!1}}if(o&&t>vt[-1].sm.zooming_dimensions.w-1)return w||Bo(vt[-1]),!1;return!0}(e))return;var o={sm:{type:"manual",zp:1}};dt&&((yt={sm:{type:"manual",zp:1}}).sm.zooming_dimensions=_t,yt.sm.bbox={x:_t.x/ke,y:_t.y/ke,width:_t.w/ke,height:_t.h/ke});var i=function(e,t){var o=yt.sm.zooming_dimensions.w,i=yt.sm.zooming_dimensions.h,n=yt.sm.zooming_dimensions.x,a=yt.sm.zooming_dimensions.y;if("x"==t)var n=yt.sm.zooming_dimensions.x+yt.sm.zooming_dimensions.w*e;else if("y"==t)var a=yt.sm.zooming_dimensions.y+yt.sm.zooming_dimensions.h*e;else var o=yt.sm.zooming_dimensions.w/e,i=yt.sm.zooming_dimensions.h/e,n=yt.sm.zooming_dimensions.x+(yt.sm.zooming_dimensions.w-o)/2,a=yt.sm.zooming_dimensions.y+(yt.sm.zooming_dimensions.h-i)/2;return{x:n,y:a,w:o,h:i,r:o/(ze*ke)}}(e,t);if(!i)return;o.sm.zooming_dimensions=i,Bo(o)}}Je.transform(c),ve.style.top=f+2*v+"px",ve.style.left=v+"px",(Je=Se.set()).push(u,p),$e=function(){_(B)},tt=function(e,t){_(e,t)},et=function(){_(1/B)},e.zoom_in=$e,e.zoom_out=et,Ge.click($e),Je.click(et),Ge.touchend($e),Je.touchend(et)}()}}()}function bo(){lt=i.locations,ot=[],it=[],rt=[],st=[],nt=[],ut=[];!function(){var e={color:!1,hover_color:!1};if(e.opacity=_.region_opacity?_.region_opacity:1,e.hover_opacity=_.region_hover_opacity?_.region_hover_opacity:.6,e.url=!1,e.description=!1,e.description_mobile=!1,e.inactive=!1,e.zoomable=!0,e.hide_name="yes"==_.region_hide_name,e.popup=_.region_popups?_.region_popups:ue,e.cascade="yes"==_.region_cascade_all,e.zoom_percentage=R,e.x=!1,e.y=!1,e.x2=!1,e.y2=!1,E)for(var t in E)for(var o=0;oo.to_float(n[1]))return!1;var a=/lat[ ]?>[-]?(\d+[\.]?\d+)/g.exec(d);if(a&&eo.to_float(r[1]))return!1;var s=/lng[ ]?>[-]?(\d+[\.]?\d+)/g.exec(d);return!(s&&eTe?(a-=(m*(t=r/c)-s)/2,s=r/Te):(n-=(c*(t=s/m)-r)/2,r=s*Te),{x:n,y:a,w:r,h:s,r:t}}function ko(e){if(e){qe.stop();for(var t=0;t-1;return i}if(Raphael.isPointInsideBBox(t.sm.bbox,o.x,o.y))return!0;return!1}(e,t);if("state"==i&&"state"==a)return function(e,t){var o=e.sm.point0;if(e.sm.display_ids){var i=e.sm.display_ids.indexOf(t.sm.id)>-1;return i}if(Raphael.isPointInsideBBox(t.sm.bbox,o.x,o.y)){var a=n.paths[t.sm.id];if(Raphael.isPointInsidePath(a,o.x,o.y))return!0}return!1}(e,t);var r=o.to_float(i);return!!(r&&Ceo.sm.scale_limit?Ce:o.sm.scale_limit)*ke),t))})}(e,t),function(e,t){for(var o in Xe.hide(),bt){var i=bt[o];if(!i.sm.hide){if(Eo(i,e)&&xt[i.sm.id].show(),i.sm.line){var n=qo(i);i.sm.line.attr({path:n,transform:Re})}if(i.sm.scale){var a=Wo(i,(Ce>i.sm.scale_limit?Ce:i.sm.scale_limit)*ke);Ao(i,a,t),i.sm.pill&&Ao(kt[i.sm.id],a,t)}}}}(e,t),o.x_in_array(i,["state","region","out"])&&Mo(),"region"==i?ko(e):"state"==i?ko(vt[e.sm.region]):"manual"==i&&We.forEach(function(e){-1!=e.sm.id&&(e.sm.zooming_dimensions.r>Ce&&e.sm.zoomable?ko(e):zo(e))}),"out"!=i&&"manual"!=i?(qe.stop(),He.stop(),qe.attr({"fill-opacity":W}),He.attr({"fill-opacity":W}),e.stop(),e.attr({"fill-opacity":1}),e.sm.labels.forEach(function(e){e.sm&&e.sm.pill&&(e.sm.pill.stop(),e.sm.pill.attr({"fill-opacity":1}))}),e.animate({"stroke-width":e.sm.border_hover_size*(xe/ze)*Ae*1.25},1e3*S)):(qe.attr({"fill-opacity":1}),He.attr({"fill-opacity":1})),qe.animate({"stroke-width":Z*(xe/ze)*Ae*1.25},1e3*S)}function To(e){if(w&&"-1"!=x&&"region"==e.sm.type){if(!j)return;Ze.show()}else"state"==e.sm.type||"region"==e.sm.type||j?Ze.show():g&&"out"!=e.sm.type&&Ze.show()}function So(e){return{x:e.x,y:e.y,w:e.w,h:e.h}}function Oo(){z.sm&&M&&(jt.hide(),M=!1,z.sm&&Ot.call(z),re=!1)}function Bo(i,n,a){if(!Ht){Oo(),$t&&($t.stop(),$t=!1),Kt&&i!=Kt&&Ot.call(Kt),z=!1,i,jt.hide(),M=!1,Ht=!0,i.sm.zooming_dimensions=wo(i);var r=So(i.sm.zooming_dimensions),s=So(yt.sm.zooming_dimensions);if(Ce=i.sm.zooming_dimensions.r,Co(i,n),ie||me&&!O||n)_t=r,Se.setViewBox(r.x,r.y,r.w,r.h,!1),c();else{var l=t.Tweenable?new t.Tweenable:new Tweenable;dt=l.tween({from:s,to:r,duration:1e3*S,easing:"easeOutQuad",step:function(e){!function(e){_t=e,Se.setViewBox(e.x,e.y,e.w,e.h,!1)}(e)},finish:function(){c()}})}}function c(){To(i),yt=i,Ht=!1,re=!1,e.zoom_level=yt.sm.type,e.zoom_level_id=!!yt.sm.id&&yt.sm.id,po("zooming_complete",[]),o.isFunction(a)&&a()}}function Fo(e){var t="",o={};for(var i in n.paths){var a=n.paths[i];a=Raphael._pathToAbsolute(a);var r,s=Raphael.pathBBox(a);r=s.x2-s.x<10?10:1;var l=Math.round(s.x*r)/r,c=Math.round(s.y*r)/r,m=Math.round(s.y2*r)/r;t+="'"+i+"':{x: "+l+",y:"+c+",x2:"+Math.round(s.x2*r)/r+",y2:"+m+"},",o[i]=s}return t=t.substring(0,t.length-1),t+="}",e||console.log("The new state_bbox_array is: \n\n{"+t),o}function Io(e){var t=e.sm.description,i=ie?'X':'Close';i='
    '+i+"
    ";var n=e.sm.url?e.sm.url:"",a=n,r="javascript:"==a.substring(0,11),s='return (function(e){window.open("'+n+'","_blank"); return false})()',l=r?'return (function(){window.location.href="'+n+'"; return false;})()':'return (function(){window.top.location.href="'+n+'"; return false;})()',c=o.replaceAll(a,"'",'"'),m=X?s:l;r&&(m="(function(){"+c+"})()");var u=e.sm.description_mobile?e.sm.description_mobile:'";e.sm.on_click||(i="",u=""),""!=e.sm.url||e.sm.description_mobile||(u="");var p=""==t?p="":'
    '+t+"
    ";return'
    '+(!!e.sm.hide_name?"":'
    '+e.sm.name+"
    ")+i+'
    '+p+u+"
    "}function Po(e,t){var o=e.sm.zooming_dimensions;if(o.w>t.sm.zooming_dimensions.w)return!1;var i=t.sm.bbox,n=i.x*ke,a=i.y*ke,r=i.x2*ke,s=i.y2*ke,l=o.x+o.w/2,c=o.y+o.h/2;return l>n&&c>a&&l1?e>w?1:e/w:o>k?1/z:o/k/z:b&&(n=i/z,n=i>z?n:1/n):n>1&&(n=t.image_size*Ae/w),n}(),s=w*r,l=s/i,c=0,u=0;if(v?(n=r,a=r*z/i):g?(n=1,a=1,c=t.image_x*w,u=t.image_y*k):b&&(n=1,a=1,c=.5*(w-s),u=.5*(k-l)),d.setAttribute("x",0),d.setAttribute("y",0),d.setAttribute("width",w),d.setAttribute("height",k),d.setAttribute("fill",_),d.setAttribute("opacity","1"),m.setAttribute("y",0),m.setAttribute("x",0),m.setAttribute("y",0),m.setAttribute("width",n),m.setAttribute("height",a),p.setAttribute("x",c),p.setAttribute("y",u),p.setAttribute("width",s),y){var h=c+.5*s,x=u+.5*l;p.setAttribute("transform","rotate(-"+y+","+h+","+x+")")}p.setAttribute("height",l)}),'url("#'+m.id+'")'}function jo(e){e||({},ft={}),Vt=n.state_bbox_array;var t=Z*ke*Ae*1.25;for(var o in ht=function(e){var o=!ft[e],i=ot[e],a=i.path?i.path:n.paths[e],r=o?Se.path(a):ft[e];o&&(r.sm={id:e}),ie||r.node.setAttribute("class","sm_state_"+e);var s={fill:i.color,opacity:i.opacity,stroke:i.border_color,cursor:"pointer","stroke-opacity":1,"stroke-width":t,"stroke-linejoin":"round"},l=i.border_hover_color?i.border_hover_color:_.border_color,c=i.border_hover_size?i.border_hover_size:Z,m=c*ke*Ae*1.25,u={opacity:i.hover_opacity,fill:i.hover_color,stroke:l,"stroke-width":m};if(r.sm.image=!1,i.image_url&&!ie){var d=Ro(r,{hover:!1,image_url:i.image_url,image_size:i.image_size,image_position:i.image_position,image_x:i.image_x,image_y:i.image_y,image_color:i.image_color,bg_opacity:i.image_background_opacity});if(r.sm.image=!0,s.fill=d,i.image_hover_url){d=Ro(r,{hover:!0,image_url:i.image_hover_url,image_size:i.image_hover_size,image_position:i.image_hover_position,image_x:i.image_hover_x,image_y:i.image_hover_y,image_color:i.image_hover_color,bg_opacity:i.image_background_opacity});u.fill=d}else u.fill=d}i.inactive&&(s.cursor="default"),i.image_source&&(r.sm.ignore_hover=!0,s.fill="url("+p+i.image_source+")"),(i.border_hover_color||i.border_hover_size)&&i.emphasize?r.sm.emphasizable=!0:r.sm.emphasizable=!1,r.sm.border_hover_size=c,r.attr(s),r.transform(Re),r.sm.attributes=s,r.sm.over_attributes=u,r.sm.description=i.description,r.sm.adjacent_attributes={"fill-opacity":W},r.sm.hide=i.hide,r.sm.hide_label=i.hide_label,r.sm.hide_name=i.hide_name,o&&(r.sm.region=!1),r.sm.name=i.name?i.name:n.names[e],r.sm.name||(r.sm.name=e),r.sm.url=i.url,r.sm.inactive=i.inactive,r.sm.on_click=ho(i.popup),r.sm.popup_off=fo(i.popup),r.sm.labels=[],r.sm.zp=i.zoom_percentage,r.sm.zoomable=i.zoomable,r.sm.description_mobile=i.description_mobile,r.sm.type="state",r.sm.hide_labels=i.hide_label,r.sm.content=Io(r);var h=Vt[e];h||(h=Raphael.pathBBox(n.paths[e]));var f={x:h.x,x2:h.x2,y:h.y,y2:h.y2};r.sm.bbox=f,r.sm.bbox.width=f.x2-f.x,r.sm.bbox.height=f.y2-f.y,r.sm.pulse_speed=i.pulse_speed,r.sm.pulse_size=i.pulse_size,r.sm.pulse_color=i.pulse_color?i.pulse_color:i.border_color,r.sm.hide?r.hide():o&&Be.push(r),o&&(ft[e]=r,qe.push(r))},at)ht(o);ht[-1],qe.hide()}function No(){Le.attr({fill:_.background_color,"fill-opacity":Y,stroke:"none"})}function Lo(e){if(e||(vt={}),E)for(var t in E){var i=nt[t],n=E[t],a=e?vt[t]:Se.set();if(!e){if(a.sm={},a.sm.states=[],vt[t]){console.log("Duplicate Regions");continue}for(var r=[],s=0;sk.x&&Ok.y&&Bn.sm.zooming_dimensions.r||!n.sm.zoomable?n:t:void 0:t}function Qo(t){var o=e.zoom_level,i=e.zoom_level_id;if("state"==o)return i!=t.sm.id;if("region"!=o)return!1;var n=!!t.sm.region&&vt[t.sm.region];return!n||i!=n.sm.id&&void 0}function Xo(e,t,o,i){e.sm.labels&&e.sm.labels.forEach(function(e){if(e.sm){var n=e.sm.pill;"over"==t?(e.stop(),Ut(e,"over"),n&&Zt(n,"over")):"reset"!=t&&"out"!=t||(Ut(e,"out"),n&&(Zt(n,"out",i),o&&Zt(n,"adjacent",i)))}})}function Uo(){Bt=function(){this.sm.parent&&St.call(this.sm.parent)},Ft=function(){this.sm.parent&&Ot.call(this.sm.parent)},Ct=function(e){this.sm.parent&&Tt.call(this.sm.parent,e)},Et=function(e,t){if(e.sm.pulse||t){var o=e.sm.shape_type;if(!("location"!=e.sm.type||"image"==o||Ce<.05)){var i=e.clone();Ve.toFront(),Fe.toFront();var n=1*e.sm.pulse_size,a={"stroke-width":4*e.attrs["stroke-width"],"stroke-opacity":0};i.attr({"fill-opacity":0,stroke:e.sm.pulse_color});var r=e.sm.scale?Ce:1,s=.5*(n-1)*e.sm.size*r*ke,l="bottom-center"==e.sm.position?Wo(e,r*ke*n,"0,"+s):Wo(e,r*ke*n);a.transform=l,i.animate(a,1e3*e.sm.pulse_speed,"ease-out",function(){i.remove()})}}},At=function(e){if(!ie||!ne)for(var t=Array.isArray(e)?e:[e],o=0;o1){Wt=!0;var i=function(e){var t={x:e.touches[0].pageX,y:e.touches[0].pageY},i={x:e.touches[1].pageX,y:e.touches[1].pageY};return o.distance(t,i)}(t);if(e){var n=i-e;Math.abs(n)>10&&(n>0?$e():et(),e=i)}else e=i}}o.addEvent(fe,"touchstart",t),o.addEvent(fe,"touchmove",t),o.addEvent(fe,"touchend",function(t){e=!1,setTimeout(function(){Wt=!1},100)})}function Jo(){qe.toBack(),Qe.toBack(),Ne.toBack(),Ie&&Ie.toFront(),Xe.toFront(),Ve.toFront(),Fe.toFront()}function Ko(e){if(!e){ae?(qe.mouseup(Tt),Ne.mouseup(eo),Ze.mouseup(Pt),Ne.mouseup(si)):(qe.hover(St,Ot),qe.click(Tt),Ne.click(eo),Ze.click(Pt),Ne.hover(si,si)),b&&function(){function e(){$o()}var t;Rt=function(){clearTimeout(t),t=setTimeout(e,300)},window.addEventListener?(window.addEventListener("resize",Rt,!1),window.addEventListener("orientationchange",Rt,!1)):(window.attachEvent("resize",Rt,!1),window.attachEvent("orientationchange",Rt,!1));ie&&(document.body.onresize=function(){e()})}(),g&&(qe.touchstart(Tt),qe.touchend(Tt),Ze.touchend(It),function(){function e(e){var o=Zo(e),a=o.x,r=o.y,s=(i-a)*t.r,l=(n-r)*t.r,c=5*t.r;return(Math.abs(s)>c||Math.abs(l)>c)&&(qt=!0),{x:t.x+s,y:t.y+l,w:t.w,h:t.h,r:t.r}}var t,i,n,a=!1;function r(e){if(M)return!1;e.preventDefault?e.preventDefault():e.returnValue=!1,t={x:_t.x,y:_t.y,w:_t.w,h:_t.h,r:_t.w/ze/ke},a=!0;var o=Zo(e);i=o.x,n=o.y,jt.hide(),jt.pos(e,{l:i,u:n})}function s(t){if(a&&!(t.touches&&t.touches.length>1)){var o=e(t);Se.setViewBox(o.x,o.y,o.w,o.h)}}function l(t){if(!a||!qt)return qt=!1,void(a=!1);var o=e(t);Se.setViewBox(o.x,o.y,o.w,o.h),_t=o,(yt={sm:{}}).sm.zooming_dimensions=_t,yt.sm.type="manual",a=!1,setTimeout(function(){qt=!1},1),Ze.show()}o.addEvent(_e,"mousedown",r),o.addEvent(_e,"mousemove",s),o.addEvent(_e,"mouseup",l),o.addEvent(_e,"mouseleave",l),o.addEvent(_e,"touchstart",r),o.addEvent(_e,"touchmove",s),o.addEvent(_e,"touchend",l)}(),Go()),he.mouseIsOver=!1,he.onmouseover=function(){this.mouseIsOver=!0},he.onmouseout=function(){this.mouseIsOver=!1},he.onwheel=function(e){he.mouseIsOver&&g&&A&&(e.preventDefault(),e.deltaY<0?$e():et())},o.addEvent(document,"keyup",function(e){if("auto"==f){var t=fe.contains(document.activeElement);ye.style.display=t?"block":"none"}})}Ye.hover(St,Ot),Ye.click(Tt),Xe.hover(Bt,Ft),Xe.click(Ct),g&&(Ye.touchend(Tt),Ye.touchstart(Tt),Xe.touchend(Ct))}function $o(){if(!(he.offsetWidth<1)){vo(!0),Se.setSize(xe,we);var e=Z*(xe/ze)*Ae*1.25;qe&&Ye&&(qe.forEach(function(t){t.attr({"stroke-width":e}),t.sm.attributes["stroke-width"]=e,t.sm.over_attributes["stroke-width"]=t.sm.border_hover_size*(xe/ze)*Ae*1.25}),Ye.forEach(function(e){"image"!=it[e.sm.id].type&&(e.sm.attributes["stroke-width"]=it[e.sm.id].border*(xe/ze)*Ae*1.25,e.sm.over_attributes["stroke-width"]=it[e.sm.id].hover_border*(xe/ze)*Ae*1.25,e.attr({"stroke-width":e.sm.attributes["stroke-width"]}))}),Oe.forEach(function(e){var t=e.sm.size*(xe/ze)*Ae*1.25;e.attr({"stroke-width":t})}),Ie.forEach(function(e){var t=e.sm.size*(xe/ze)*Ae*1.25;e.attr({"stroke-width":t})})),yo(),pt=J||(xe/2>250?xe/2:250)}}function ei(e){var t=v?vt[-2]:vt[x],o=vt[x];if(j||Ze.hide(),!e){if(Qt)var i=Qt;else if(gt)i=gt;else i=t;Bo(i,!Qt&&!gt||!v)}if(w&&-1!=x){Ne.show(),j||Ze.hide();for(var n=0;n8}())?alert("The continent map can't be used with other data."):(_o(),function(){if(he=document.getElementById(ce),fe=!!document.getElementById(ce+"_holder")&&document.getElementById(ce+"_holder")){he.removeChild(fe);var e=document.getElementById("tt_sm_"+ce);e&&e.parentNode.removeChild(e)}fe=document.createElement("div"),de=document.createElement("div"),ye=document.createElement("div"),ve=document.createElement("div"),_e=document.createElement("div"),ge=document.createElement("div"),de.id=ce+"_outer",ve.id=ce+"_zoom",ye.id=ce+"_access",ge.id=ce+"_legend",_e.id=ce+"_inner",fe.id=ce+"_holder",fe.style.position="relative",fe.setAttribute("tabIndex",0),fe.style.outline="none",_e.style.position="relative",de.style.position="absolute",ve.style.position="absolute",ye.style.position="absolute",ye.style.maxWidth="75%",ge.style.position="absolute",ve.style.zIndex="1",de.style.zIndex="1",ye.style.zIndex="1",ye.style.display="yes"==f?"block":"none",ge.style.zIndex="1",he.appendChild(fe),fe.appendChild(ve),fe.appendChild(de),fe.appendChild(ye),fe.appendChild(ge),fe.appendChild(_e)}(),vo(),function(){if(Se=Raphael(_e,xe,we),Ne=Se.set(),Le=Se.rect(Ee.x-2*ze,Ee.y-2*Me,5*ze,5*Me),C){C.indexOf("/osm/noattr/")>-1&&(l=!0);var e=T||Ee;De=Se.image(C,e.x,e.y,e.x2-e.x,e.y2-e.y),Ne.push(De)}Ne.push(Le),Ne.transform(je),Ne.hide(),qe=Se.set(),Be=Se.set(),We=Se.set(),Ye=Se.set(),Ve=Se.set(),Qe=Se.set(),Xe=Se.set(),Fe=Se.set(),Pe=Se.set(),Ie=Se.set(),He=Se.set(),Oe=Se.set(),Se.set().push(qe,Ye,Ne,Xe,Ie)}(),yo(),function(){(Dt=document.createElement("div")).style.cssText="overflow: visible !important; clip-path: none !important; display:inline !important; opacity:1 !important; transform: none !important; visibility: visible !important; z-index: 1 !important; right: 5px !important; bottom: 5px !important; z-index: 1 !important; position: absolute !important; filter: opacity(1) !important;",_e.appendChild(Dt);var e="font: 12px Verdana, Arial, Helvetica, sans-serif !important; cursor: pointer !important; float: right !important; color: #000000 !important; text-decoration: none !important;";if(l){var t=document.createElement("a");t.href="https://www.openstreetmap.org/copyright",t.title="Background © OpenStreetMap contributors",t.innerHTML=s?"| OSM":"© OSM",t.style.cssText=e,t.style.marginLeft=".5em",Dt.appendChild(t)}if(s){var o=document.createElement("a");o.style.cssText=e,o.href="https://simplemaps.com",o.title="Built with with SimpleMaps",o.innerHTML="© Simplemaps.com",Dt.appendChild(o)}}(),te||function(){if(!Yt){var e=s(["borderRadius","MozBorderRadius","WebkitBorderRadius"]),t=e?e+": "+(me?2*ee:ee)+"px;":"";pt=J||(xe/2>250?xe/2:250);var i=s(["boxShadow","MozBoxShadow","WebkitBoxShadow"]),n=i?i+": "+3*$+"px "+3*$+"px "+4*$+"px rgba(0,0,0,.5);":"";if($<.01&&(n=""),me){var a=/(\d+)(px|em)(.*)/g.exec(oe);oe=parseFloat(a[1])*pe+a[2]+a[3]}var r=".tt_mobile_sm{margin-top: .4em;} .tt_sm{"+t+n+"z-index: 1000000; background-color: "+G+"; padding: .6em; opacity:"+K+"; font: "+oe+"; color: black;} .tt_name_sm{float: left; font-weight: bold} .tt_custom_sm{overflow: hidden;}";r+=".btn_simplemaps{color: black;text-decoration: none;background: #ffffff;display: inline-block;padding: .5em .5em;margin: 0; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; line-height: 1.43;text-align: center;white-space: nowrap;vertical-align: middle;-ms-touch-action: manipulation;touch-action: manipulation;cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;border: 1px solid;border-radius: .3em;} .btn_simplemaps:hover{ text-decoration: underline;}",r+=".xmark_sm{float: "+(ie?"left":"right")+"; margin-left: .5em; cursor: pointer; line-height: 0px; width: 1.3em !important;}",o.new_style(r),Yt=!0}function s(e){for(var t=document.documentElement,o=0;o0?.5*(xe-D):0,a=we-N>0?.5*(we-N):0;B.style.top=a+"px",B.style.left=n+"px",B.style.right="auto",B.style.bottom="auto"}else{if(O=0+.5*we,t>(S=0+.5*xe)&&e>O)r=4;else if(tO)r=3;else if(t>S&&e-61&&c<61){s.x<=l.x&&(c*=-1);var m=Raphael.transformPath(r,"R"+c+","+s.x+","+s.y+"S2").toString(),u=Raphael.transformPath(r,"R-90S2").toString(),p=Raphael.pathIntersection(m,u)[0];r="M "+s.x+","+s.y+" C"+s.x+","+s.y+","+p.x+","+p.y+","+l.x+","+l.y}}}var d=r||o.path,_=Se.path(d);_.transform(Re),_.attr({stroke:n.color,fill:"none",cursor:"pointer","stroke-dasharray":[n.dash],"stroke-width":a,"stroke-linejoin":"round","stroke-miterlimit":4}),_.sm={},_.sm.size=n.size,_.sm.bbox=_.getBBox(!0),ie||_.node.setAttribute("class","sm_line_"+t),Ie.push(_)}Ie.hide()}}(),function(){ye.style.right="0em",ye.style.top="0em";var e=void 0===_.navigate_title?"Navigate":_.navigate_title,t=void 0===_.keyboard_omit?"":_.keyboard_omit;if(!(t.indexOf("navigat")>-1)){var i=document.createElement("select");i.options.add(new Option(e,"-1")),i.options.add(new Option("Back","back")),g&&(i.options.add(new Option("Zoom in","in")),i.options.add(new Option("Zoom out","out")),i.options.add(new Option("Left","left")),i.options.add(new Option("Right","right")),i.options.add(new Option("Up","up")),i.options.add(new Option("Down","down"))),i.style.marginRight=".5em",i.style.marginTop=".5em",i.style.float="left",ye.appendChild(i),i.onchange=function(e){if("-1"==this.value)return!1;"back"==this.value&&It(),"out"==this.value&&et(),"in"==this.value&&$e(),"left"==this.value&&tt("-.25","x"),"right"==this.value&&tt(".25","x"),"up"==this.value&&tt("-.25","y"),"down"==this.value&&tt(".25","y"),setTimeout(function(){i.value="-1"},1e3)}}var n=void 0===_.states_title?"States":_.states_title,a=void 0===_.regions_title?"Regions":_.regions_title,r=void 0===_.locations_title?"Locations":_.locations_title,s={state:{title:n,array:ft},location:{title:r,array:zt},region:{title:a,array:vt}};for(var l in s){var c=s[l],m=t.indexOf(l)>-1,u=Object.size(c.array);if(!(u<1||u<2&&"region"==l||m)){var p=document.createElement("select");p.options.add(new Option(c.title,"-1")),p.style.marginRight=".5em",p.style.marginTop=".5em",p.style.float="left";var d=[];for(var h in c.array)d.push(c.array[h]);var f=d.sort(function(e,t){e.sm.name,t.sm.name});for(h=0;h-1?(r.setAttribute("stroke-width","10"),n.setAttribute("viewBox","0 0 100 100"),n.setAttribute("width","100"),n.setAttribute("height","100")):["diamond","star"].indexOf(o.shape)>-1?(n.setAttribute("viewBox","-.5 -.6 1 1.2"),n.setAttribute("height","1.8")):["triangle"].indexOf(o.shape)>-1?(n.setAttribute("viewBox","-.6 -.7 1.2 1.1"),n.setAttribute("width","1.8"),n.setAttribute("height","1.8")):["heart"].indexOf(o.shape)>-1?(n.setAttribute("viewBox","-.7 -.5 1.3 1"),n.setAttribute("width","2")):["marker"].indexOf(o.shape)>-1&&(n.setAttribute("viewBox","-.6 -.9 1.1 .8"),n.setAttribute("width","1.7"),n.setAttribute("height","1.7")),r.setAttribute("fill",o.color),r.setAttribute("stroke","white"),n.appendChild(r),i.appendChild(n);var l=document.createTextNode(o.name);i.appendChild(l),t.appendChild(i)}}();var l=fe.getElementsByClassName("sm_legend_item");for(r=0;r-1&&e[t].push(a):a.sm.attributes.fill!=o.color||a.sm.hide||e[t].push(a)}}}(),Mo(),Jo(),jt.create(),Uo(),Ko(),ei(),gi(),po("complete",[]),o.isFunction(t)&&t(),no()},1))}function ii(e,t){Bo(vt[e],!1,t)}function ni(e,t){Bo(ft[e],!1,t)}function ai(e,t,o){void 0===t&&(t=4),void 0===o&&(o=function(){}),Bo({sm:{type:"manual",zp:t,bbox:e}},!1,function(){o(),Ze.show()})}function ri(e,t,o){void 0===t&&(t=4),void 0===o&&(o=function(){});var i={sm:{type:"manual",zp:t}},n=zt[e],a=n.sm.size*ke*t,r=a*Me/ze,s=n.sm.x-.5*a,l=n.sm.y-.5*r,c=a/(ze*ke);i.sm.zooming_dimensions={x:s,y:l,w:a,h:r,r:c},Bo(i,!1,function(){o(),Ze.show()})}function si(){Kt&&Ot.call(Kt),k&&(k=!1,re||(jt.hide(),M=!1))}function li(t,o,i){if(void 0===i&&(i=function(){}),"state"==t)var n=ft[o];else if("region"==t)n=vt[o];else n=zt[o];var a=n.sm.on_click,r=yt.sm.zooming_dimensions;if("location"!=t){var s=n.sm.bbox,l=.5*(s.x+s.x2),c=.5*(s.y+s.y2);l*=ke,c*=ke}else l=n.sm.x,c=n.sm.y;var m=(l-r.x)/Ce,u=(c-r.y)/Ce,p=m>1.1*xe||u>1.1*we,d=!n.sm.region&&"region"==e.zoom_level;return p||d?ii("-1",function(){li(t,o,i)}):n.sm.region&&"out"==e.zoom_level?ii(n.sm.region,function(){li(t,o,i)}):(k=!0,a?Tt.call(n):St.call(n),jt.reset_pos(m,u,n),h=!0,k=!1,i(),!0)}function ci(e){var t=zt[e];t&&Et(t,!0)}function mi(){jt.hide(),M=!1,re?Ot.call(z):Kt&&Ot.call(Kt)}function ui(e,t){ct(e);var i=ft[e].sm.labels;ht(e);for(var n=0;n