Slimstat Analytics - Version 3.4.2

Version Description

  • [New] Three new reports give you detailed information about your rankings (Google, Facebook, Alexa), your content and your site's security.
  • [Update] Complete Russian Localization (thank you, Vitaly!)
  • [Update] Top Browsers now groups browsers by name, if the user agent string is not enabled/displayed (thank you, Vitaly)
  • [Update] Much improved language detection and localization (thank you, Vitaly)
  • [Update] By default only admins can now see the stats (minimum capability to view: activate_plugins).
  • [Update] Removed unused languages from the dictionary (who is using operating systems in Herero, Igbo, Hiri Motu, Church Slavic anyway?)
  • [Update] Optimized code to manage the plugin's options (removed unnecessary db interactions)
  • [Update] World Map (AmMap) updated to version 3.7
  • [Update] MaxMind / Geolocation database updated to November 2013
  • [Update] Consolidated reports and improved performance on Overview tab
  • [Fix] Bug in converting some IP addresses to long integers (thank you, tkleinsteuber)
  • [Fix] Some PHP warnings about undefined variables
Download this release

Release Info

Developer coolmann
Plugin Icon 128x128 Slimstat Analytics
Version 3.4.2
Comparing to
See all releases

Code changes from version 3.4.1 to 3.4.2

admin/config/addons.php CHANGED
@@ -5,7 +5,7 @@ if (!function_exists('add_action')) exit(0);
5
 
6
  // Update license keys, if needed
7
  if (!empty($_POST['licenses'])){
8
- wp_slimstat_admin::update_option('addon_licenses', $_POST['licenses'], 'array');
9
  }
10
 
11
  echo '<div class="wrap"><h2>WP SlimStat Add-ons</h2>';
5
 
6
  // Update license keys, if needed
7
  if (!empty($_POST['licenses'])){
8
+ wp_slimstat::$options['addon_licenses'] = $_POST['licenses'];
9
  }
10
 
11
  echo '<div class="wrap"><h2>WP SlimStat Add-ons</h2>';
admin/config/index.php CHANGED
@@ -76,7 +76,7 @@ switch ($config_tabs[$current_tab-1]){
76
  if (is_array($user_array) && !empty($post_data)){
77
  $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s COLLATE utf8_bin'));
78
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
79
- if (!wp_slimstat_admin::update_option('ignore_users', $_POST['options']['ignore_users'], 'textarea')) wp_slimstat_admin::$faulty_fields[] = __('Ignore users','wp-slimstat');
80
  }
81
  else{
82
  wp_slimstat_admin::$faulty_fields[] = __('Ignore users (username not found)','wp-slimstat');
@@ -84,7 +84,7 @@ switch ($config_tabs[$current_tab-1]){
84
  }
85
  }
86
  else{
87
- wp_slimstat_admin::update_option('ignore_users', '', 'text');
88
  }
89
 
90
  if (!empty($_POST['options']['ignore_capabilities'])){
@@ -99,14 +99,14 @@ switch ($config_tabs[$current_tab-1]){
99
  }
100
 
101
  if (!$capability_not_found){
102
- if (!wp_slimstat_admin::update_option('ignore_capabilities', $_POST['options']['ignore_capabilities'], 'text')) wp_slimstat_admin::$faulty_fields[] = __('Users by capability','wp-slimstat');
103
  }
104
  else{
105
  wp_slimstat_admin::$faulty_fields[] = __('Invalid capability. Please check <a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_new">this page</a> for more information','wp-slimstat');
106
  }
107
  }
108
  else{
109
- wp_slimstat_admin::update_option('ignore_capabilities', '', 'text');
110
  }
111
  }
112
  break;
@@ -130,7 +130,7 @@ switch ($config_tabs[$current_tab-1]){
130
  if (is_array($user_array) && !empty($post_data)){
131
  $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s COLLATE utf8_bin'));
132
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
133
- if (!wp_slimstat_admin::update_option('can_view', $_POST['options']['can_view'], 'text')) wp_slimstat_admin::$faulty_fields[] = __('Read access','wp-slimstat');
134
  }
135
  else{
136
  wp_slimstat_admin::$faulty_fields[] = __('Read access: username not found','wp-slimstat');
@@ -138,19 +138,19 @@ switch ($config_tabs[$current_tab-1]){
138
  }
139
  }
140
  else{
141
- wp_slimstat_admin::update_option('can_view', '', 'text');
142
  }
143
 
144
  if (!empty($_POST['options']['capability_can_view'])){
145
  if (isset($GLOBALS['wp_roles']->role_objects['administrator']->capabilities) && array_key_exists($_POST['options']['capability_can_view'], $GLOBALS['wp_roles']->role_objects['administrator']->capabilities)){
146
- if (!wp_slimstat_admin::update_option('capability_can_view', $_POST['options']['capability_can_view'], 'text')) wp_slimstat_admin::$faulty_fields[] = __('Capability to Read','wp-slimstat');
147
  }
148
  else{
149
  wp_slimstat_admin::$faulty_fields[] = __('Invalid minimum capability. Please check <a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_new">this page</a> for more information','wp-slimstat');
150
  }
151
  }
152
  else{
153
- wp_slimstat_admin::update_option('capability_can_view', '', 'text');
154
  }
155
 
156
  if (!empty($_POST['options']['can_admin'])){
@@ -161,7 +161,7 @@ switch ($config_tabs[$current_tab-1]){
161
  if (is_array($user_array) && !empty($post_data)){
162
  $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s COLLATE utf8_bin'));
163
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
164
- if (!wp_slimstat_admin::update_option('can_admin', $_POST['options']['can_admin'], 'text')) wp_slimstat_admin::$faulty_fields[] = __('Config access','wp-slimstat');
165
  }
166
  else{
167
  wp_slimstat_admin::$faulty_fields[] = __('Config access: username not found','wp-slimstat');
@@ -169,19 +169,19 @@ switch ($config_tabs[$current_tab-1]){
169
  }
170
  }
171
  else{
172
- wp_slimstat_admin::update_option('can_admin', '', 'text');
173
  }
174
 
175
  if (!empty($_POST['options']['capability_can_admin'])){
176
  if (isset($GLOBALS['wp_roles']->role_objects['administrator']->capabilities) && array_key_exists($_POST['options']['capability_can_admin'], $GLOBALS['wp_roles']->role_objects['administrator']->capabilities)){
177
- if (!wp_slimstat_admin::update_option('capability_can_admin', $_POST['options']['capability_can_admin'], 'text')) wp_slimstat_admin::$faulty_fields[] = __('Capability to Admin','wp-slimstat');
178
  }
179
  else{
180
  wp_slimstat_admin::$faulty_fields[] = __('Invalid minimum capability. Please check <a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_new">this page</a> for more information','wp-slimstat');
181
  }
182
  }
183
  else{
184
- wp_slimstat_admin::update_option('capability_can_admin', '', 'text');
185
  }
186
  }
187
  break;
76
  if (is_array($user_array) && !empty($post_data)){
77
  $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s COLLATE utf8_bin'));
78
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
79
+ wp_slimstat::$options['ignore_users'] = $_POST['options']['ignore_users'];
80
  }
81
  else{
82
  wp_slimstat_admin::$faulty_fields[] = __('Ignore users (username not found)','wp-slimstat');
84
  }
85
  }
86
  else{
87
+ wp_slimstat::$options['ignore_users'] = '';
88
  }
89
 
90
  if (!empty($_POST['options']['ignore_capabilities'])){
99
  }
100
 
101
  if (!$capability_not_found){
102
+ wp_slimstat::$options['ignore_capabilities'] = $_POST['options']['ignore_capabilities'];
103
  }
104
  else{
105
  wp_slimstat_admin::$faulty_fields[] = __('Invalid capability. Please check <a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_new">this page</a> for more information','wp-slimstat');
106
  }
107
  }
108
  else{
109
+ wp_slimstat::$options['ignore_capabilities'] = '';
110
  }
111
  }
112
  break;
130
  if (is_array($user_array) && !empty($post_data)){
131
  $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s COLLATE utf8_bin'));
132
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
133
+ wp_slimstat::$options['can_view'] = $_POST['options']['can_view'];
134
  }
135
  else{
136
  wp_slimstat_admin::$faulty_fields[] = __('Read access: username not found','wp-slimstat');
138
  }
139
  }
140
  else{
141
+ wp_slimstat::$options['can_view'] = '';
142
  }
143
 
144
  if (!empty($_POST['options']['capability_can_view'])){
145
  if (isset($GLOBALS['wp_roles']->role_objects['administrator']->capabilities) && array_key_exists($_POST['options']['capability_can_view'], $GLOBALS['wp_roles']->role_objects['administrator']->capabilities)){
146
+ wp_slimstat::$options['capability_can_view'] = $_POST['options']['capability_can_view'];
147
  }
148
  else{
149
  wp_slimstat_admin::$faulty_fields[] = __('Invalid minimum capability. Please check <a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_new">this page</a> for more information','wp-slimstat');
150
  }
151
  }
152
  else{
153
+ wp_slimstat::$options['capability_can_view'] = '';
154
  }
155
 
156
  if (!empty($_POST['options']['can_admin'])){
161
  if (is_array($user_array) && !empty($post_data)){
162
  $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s COLLATE utf8_bin'));
163
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
164
+ wp_slimstat::$options['can_admin'] = $_POST['options']['can_admin'];
165
  }
166
  else{
167
  wp_slimstat_admin::$faulty_fields[] = __('Config access: username not found','wp-slimstat');
169
  }
170
  }
171
  else{
172
+ wp_slimstat::$options['can_admin'] = '';
173
  }
174
 
175
  if (!empty($_POST['options']['capability_can_admin'])){
176
  if (isset($GLOBALS['wp_roles']->role_objects['administrator']->capabilities) && array_key_exists($_POST['options']['capability_can_admin'], $GLOBALS['wp_roles']->role_objects['administrator']->capabilities)){
177
+ wp_slimstat::$options['capability_can_admin'] = $_POST['options']['capability_can_admin'];
178
  }
179
  else{
180
  wp_slimstat_admin::$faulty_fields[] = __('Invalid minimum capability. Please check <a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_new">this page</a> for more information','wp-slimstat');
181
  }
182
  }
183
  else{
184
+ wp_slimstat::$options['capability_can_admin'] = '';
185
  }
186
  }
187
  break;
admin/config/maintenance.php CHANGED
@@ -19,7 +19,7 @@ if (!empty($_POST['import-slimstat-settings'])){
19
  $new_options = array_intersect_key($new_options, wp_slimstat::$options);
20
  if (!empty($new_options)){
21
  foreach ($new_options as $a_option_name => $a_option_value){
22
- wp_slimstat_admin::update_option($a_option_name, $a_option_value);
23
  }
24
  }
25
  }
19
  $new_options = array_intersect_key($new_options, wp_slimstat::$options);
20
  if (!empty($new_options)){
21
  foreach ($new_options as $a_option_name => $a_option_value){
22
+ wp_slimstat::$options[$a_option_name] = $a_option_value;
23
  }
24
  }
25
  }
admin/css/slimstat.css CHANGED
@@ -146,6 +146,49 @@ a.image.first{margin-left:0}
146
  /* Options */
147
  .form-table .description{clear:both;display:block;margin-bottom:10px}
148
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  /* Mobile */
150
  @media screen and (max-width: 790px){
151
  a.nav-tab{font-size:.7em;margin:0 3px -1px 0;padding:10px 5px}
146
  /* Options */
147
  .form-table .description{clear:both;display:block;margin-bottom:10px}
148
 
149
+ .blink {
150
+ -webkit-animation: blink 1.4s linear infinite;
151
+ -moz-animation: blink 1.4s linear infinite;
152
+ -ms-animation: blink 1.4s linear infinite;
153
+ -o-animation: blink 1.4s linear infinite;
154
+ animation: blink 1.4s linear infinite;
155
+ }
156
+
157
+ @-webkit-keyframes blink {
158
+ 0% { opacity: 1; }
159
+ 50% { opacity: 1; }
160
+ 50.01% { opacity: 0; }
161
+ 100% { opacity: 0; }
162
+ }
163
+
164
+ @-moz-keyframes blink {
165
+ 0% { opacity: 1; }
166
+ 50% { opacity: 1; }
167
+ 50.01% { opacity: 0; }
168
+ 100% { opacity: 0; }
169
+ }
170
+
171
+ @-ms-keyframes blink {
172
+ 0% { opacity: 1; }
173
+ 50% { opacity: 1; }
174
+ 50.01% { opacity: 0; }
175
+ 100% { opacity: 0; }
176
+ }
177
+
178
+ @-o-keyframes blink {
179
+ 0% { opacity: 1; }
180
+ 50% { opacity: 1; }
181
+ 50.01% { opacity: 0; }
182
+ 100% { opacity: 0; }
183
+ }
184
+
185
+ @keyframes blink {
186
+ 0% { opacity: 1; }
187
+ 50% { opacity: 1; }
188
+ 50.01% { opacity: 0; }
189
+ 100% { opacity: 0; }
190
+ }
191
+
192
  /* Mobile */
193
  @media screen and (max-width: 790px){
194
  a.nav-tab{font-size:.7em;margin:0 3px -1px 0;padding:10px 5px}
admin/js/ammap/ammap.js CHANGED
@@ -1,217 +1,224 @@
1
  if(!AmCharts)var AmCharts={};AmCharts.inheriting={};
2
  AmCharts.Class=function(a){var b=function(){arguments[0]!==AmCharts.inheriting&&(this.events={},this.construct.apply(this,arguments))};a.inherits?(b.prototype=new a.inherits(AmCharts.inheriting),b.base=a.inherits.prototype,delete a.inherits):(b.prototype.createEvents=function(){for(var a=0,b=arguments.length;a<b;a++)this.events[arguments[a]]=[]},b.prototype.listenTo=function(a,b,c){a.events[b].push({handler:c,scope:this})},b.prototype.addListener=function(a,b,c){this.events[a].push({handler:b,scope:c})},
3
- b.prototype.removeListener=function(a,b,c){a=a.events[b];for(b=a.length-1;0<=b;b--)a[b].handler===c&&a.splice(b,1)},b.prototype.fire=function(a,b){for(var c=this.events[a],g=0,h=c.length;g<h;g++){var k=c[g];k.handler.call(k.scope,b)}});for(var c in a)b.prototype[c]=a[c];return b};AmCharts.charts=[];AmCharts.addChart=function(a){AmCharts.charts.push(a)};AmCharts.removeChart=function(a){for(var b=AmCharts.charts,c=b.length-1;0<=c;c--)b[c]==a&&b.splice(c,1)};AmCharts.IEversion=0;
4
- -1!=navigator.appVersion.indexOf("MSIE")&&document.documentMode&&(AmCharts.IEversion=Number(document.documentMode));if(document.addEventListener||window.opera)AmCharts.isNN=!0,AmCharts.isIE=!1,AmCharts.dx=0.5,AmCharts.dy=0.5;document.attachEvent&&(AmCharts.isNN=!1,AmCharts.isIE=!0,9>AmCharts.IEversion&&(AmCharts.dx=0,AmCharts.dy=0));window.chrome&&(AmCharts.chrome=!0);AmCharts.handleResize=function(){for(var a=AmCharts.charts,b=0;b<a.length;b++){var c=a[b];c&&c.div&&c.handleResize()}};
5
- AmCharts.handleMouseUp=function(a){for(var b=AmCharts.charts,c=0;c<b.length;c++){var d=b[c];d&&d.handleReleaseOutside(a)}};AmCharts.handleMouseMove=function(a){for(var b=AmCharts.charts,c=0;c<b.length;c++){var d=b[c];d&&d.handleMouseMove(a)}};AmCharts.resetMouseOver=function(){for(var a=AmCharts.charts,b=0;b<a.length;b++){var c=a[b];c&&(c.mouseIsOver=!1)}};AmCharts.onReadyArray=[];AmCharts.ready=function(a){AmCharts.onReadyArray.push(a)};
6
- AmCharts.handleLoad=function(){for(var a=AmCharts.onReadyArray,b=0;b<a.length;b++)(0,a[b])()};AmCharts.useUTC=!1;AmCharts.updateRate=40;AmCharts.uid=0;AmCharts.getUniqueId=function(){AmCharts.uid++;return"AmChartsEl-"+AmCharts.uid};AmCharts.isNN&&(document.addEventListener("mousemove",AmCharts.handleMouseMove,!0),window.addEventListener("resize",AmCharts.handleResize,!0),document.addEventListener("mouseup",AmCharts.handleMouseUp,!0),window.addEventListener("load",AmCharts.handleLoad,!0));
7
- AmCharts.isIE&&(document.attachEvent("onmousemove",AmCharts.handleMouseMove),window.attachEvent("onresize",AmCharts.handleResize),document.attachEvent("onmouseup",AmCharts.handleMouseUp),window.attachEvent("onload",AmCharts.handleLoad));
8
  AmCharts.clear=function(){var a=AmCharts.charts;if(a)for(var b=0;b<a.length;b++)a[b].clear();AmCharts.charts=null;AmCharts.isNN&&(document.removeEventListener("mousemove",AmCharts.handleMouseMove,!0),window.removeEventListener("resize",AmCharts.handleResize,!0),document.removeEventListener("mouseup",AmCharts.handleMouseUp,!0),window.removeEventListener("load",AmCharts.handleLoad,!0));AmCharts.isIE&&(document.detachEvent("onmousemove",AmCharts.handleMouseMove),window.detachEvent("onresize",AmCharts.handleResize),
9
- document.detachEvent("onmouseup",AmCharts.handleMouseUp),window.detachEvent("onload",AmCharts.handleLoad))};AmCharts.toBoolean=function(a,b){if(void 0===a)return b;switch(String(a).toLowerCase()){case "true":case "yes":case "1":return!0;case "false":case "no":case "0":case null:return!1;default:return Boolean(a)}};AmCharts.removeFromArray=function(a,b){var c;for(c=a.length-1;0<=c;c--)a[c]==b&&a.splice(c,1)};
 
10
  AmCharts.getStyle=function(a,b){var c="";document.defaultView&&document.defaultView.getComputedStyle?c=document.defaultView.getComputedStyle(a,"").getPropertyValue(b):a.currentStyle&&(b=b.replace(/\-(\w)/g,function(a,b){return b.toUpperCase()}),c=a.currentStyle[b]);return c};AmCharts.removePx=function(a){return Number(a.substring(0,a.length-2))};
11
- AmCharts.getURL=function(a,b){if(a)if("_self"!=b&&b)if("_top"==b&&window.top)window.top.location.href=a;else if("_parent"==b&&window.parent)window.parent.location.href=a;else{var c=document.getElementsByName(b)[0];c?c.src=a:window.open(a)}else window.location.href=a};AmCharts.formatMilliseconds=function(a,b){if(-1!=a.indexOf("fff")){var c=b.getMilliseconds(),d=String(c);10>c&&(d="00"+c);10<=c&&100>c&&(d="0"+c);a=a.replace(/fff/g,d)}return a};AmCharts.ifArray=function(a){return a&&0<a.length?!0:!1};
12
- AmCharts.callMethod=function(a,b){var c;for(c=0;c<b.length;c++){var d=b[c];if(d){if(d[a])d[a]();var f=d.length;if(0<f){var e;for(e=0;e<f;e++){var g=d[e];if(g&&g[a])g[a]()}}}}};AmCharts.toNumber=function(a){return"number"==typeof a?a:Number(String(a).replace(/[^0-9\-.]+/g,""))};
13
- AmCharts.toColor=function(a){if(""!==a&&void 0!==a)if(-1!=a.indexOf(",")){a=a.split(",");var b;for(b=0;b<a.length;b++){var c=a[b].substring(a[b].length-6,a[b].length);a[b]="#"+c}}else a=a.substring(a.length-6,a.length),a="#"+a;return a};AmCharts.toCoordinate=function(a,b,c){var d;void 0!==a&&(a=String(a),c&&c<b&&(b=c),d=Number(a),-1!=a.indexOf("!")&&(d=b-Number(a.substr(1))),-1!=a.indexOf("%")&&(d=b*Number(a.substr(0,a.length-1))/100));return d};
14
- AmCharts.fitToBounds=function(a,b,c){a<b&&(a=b);a>c&&(a=c);return a};AmCharts.isDefined=function(a){return void 0===a?!1:!0};AmCharts.stripNumbers=function(a){return a.replace(/[0-9]+/g,"")};AmCharts.extractPeriod=function(a){var b=AmCharts.stripNumbers(a),c=1;b!=a&&(c=Number(a.slice(0,a.indexOf(b))));return{period:b,count:c}};
15
- AmCharts.resetDateToMin=function(a,b,c,d){void 0===d&&(d=1);var f,e,g,h,k,l,m;AmCharts.useUTC?(f=a.getUTCFullYear(),e=a.getUTCMonth(),g=a.getUTCDate(),h=a.getUTCHours(),k=a.getUTCMinutes(),l=a.getUTCSeconds(),m=a.getUTCMilliseconds(),a=a.getUTCDay()):(f=a.getFullYear(),e=a.getMonth(),g=a.getDate(),h=a.getHours(),k=a.getMinutes(),l=a.getSeconds(),m=a.getMilliseconds(),a=a.getDay());switch(b){case "YYYY":f=Math.floor(f/c)*c;e=0;g=1;m=l=k=h=0;break;case "MM":e=Math.floor(e/c)*c;g=1;m=l=k=h=0;break;case "WW":0===
16
- a&&0<d&&(a=7);g=g-a+d;m=l=k=h=0;break;case "DD":g=Math.floor(g/c)*c;m=l=k=h=0;break;case "hh":h=Math.floor(h/c)*c;m=l=k=0;break;case "mm":k=Math.floor(k/c)*c;m=l=0;break;case "ss":l=Math.floor(l/c)*c;m=0;break;case "fff":m=Math.floor(m/c)*c}AmCharts.useUTC?(a=new Date,a.setUTCFullYear(f),a.setUTCMonth(e),a.setUTCDate(g),a.setUTCHours(h),a.setUTCMinutes(k),a.setUTCSeconds(l),a.setUTCMilliseconds(m)):a=new Date(f,e,g,h,k,l,m);return a};
17
- AmCharts.getPeriodDuration=function(a,b){void 0===b&&(b=1);var c;switch(a){case "YYYY":c=316224E5;break;case "MM":c=26784E5;break;case "WW":c=6048E5;break;case "DD":c=864E5;break;case "hh":c=36E5;break;case "mm":c=6E4;break;case "ss":c=1E3;break;case "fff":c=1}return c*b};AmCharts.roundTo=function(a,b){if(0>b)return a;var c=Math.pow(10,b);return Math.round(a*c)/c};
18
- AmCharts.toFixed=function(a,b){var c=String(Math.round(a*Math.pow(10,b)));if(0<b){var d=c.length;if(d<b){var f;for(f=0;f<b-d;f++)c="0"+c}d=c.substring(0,c.length-b);""===d&&(d=0);return d+"."+c.substring(c.length-b,c.length)}return String(c)};AmCharts.intervals={s:{nextInterval:"ss",contains:1E3},ss:{nextInterval:"mm",contains:60,count:0},mm:{nextInterval:"hh",contains:60,count:1},hh:{nextInterval:"DD",contains:24,count:2},DD:{nextInterval:"",contains:Infinity,count:3}};
19
- AmCharts.getMaxInterval=function(a,b){var c=AmCharts.intervals;return a>=c[b].contains?(a=Math.round(a/c[b].contains),b=c[b].nextInterval,AmCharts.getMaxInterval(a,b)):"ss"==b?c[b].nextInterval:b};
20
  AmCharts.formatDuration=function(a,b,c,d,f,e){var g=AmCharts.intervals,h=e.decimalSeparator;if(a>=g[b].contains){var k=a-Math.floor(a/g[b].contains)*g[b].contains;"ss"==b&&(k=AmCharts.formatNumber(k,e),1==k.split(h)[0].length&&(k="0"+k));("mm"==b||"hh"==b)&&10>k&&(k="0"+k);c=k+""+d[b]+""+c;a=Math.floor(a/g[b].contains);b=g[b].nextInterval;return AmCharts.formatDuration(a,b,c,d,f,e)}"ss"==b&&(a=AmCharts.formatNumber(a,e),1==a.split(h)[0].length&&(a="0"+a));("mm"==b||"hh"==b)&&10>a&&(a="0"+a);c=a+""+
21
  d[b]+""+c;if(g[f].count>g[b].count)for(a=g[b].count;a<g[f].count;a++)b=g[b].nextInterval,"ss"==b||"mm"==b||"hh"==b?c="00"+d[b]+""+c:"DD"==b&&(c="0"+d[b]+""+c);":"==c.charAt(c.length-1)&&(c=c.substring(0,c.length-1));return c};
22
- AmCharts.formatNumber=function(a,b,c,d,f){a=AmCharts.roundTo(a,b.precision);isNaN(c)&&(c=b.precision);var e=b.decimalSeparator;b=b.thousandsSeparator;var g;g=0>a?"-":"";a=Math.abs(a);var h=String(a),k=!1;-1!=h.indexOf("e")&&(k=!0);0<=c&&!k&&(h=AmCharts.toFixed(a,c));var l="";if(k)l=h;else{var h=h.split("."),k=String(h[0]),m;for(m=k.length;0<=m;m-=3)l=m!=k.length?0!==m?k.substring(m-3,m)+b+l:k.substring(m-3,m)+l:k.substring(m-3,m);void 0!==h[1]&&(l=l+e+h[1]);void 0!==c&&(0<c&&"0"!=l)&&(l=AmCharts.addZeroes(l,
23
- e,c))}l=g+l;""===g&&(!0===d&&0!==a)&&(l="+"+l);!0===f&&(l+="%");return l};AmCharts.addZeroes=function(a,b,c){a=a.split(b);void 0===a[1]&&0<c&&(a[1]="0");return a[1].length<c?(a[1]+="0",AmCharts.addZeroes(a[0]+b+a[1],b,c)):void 0!==a[1]?a[0]+b+a[1]:a[0]};
24
  AmCharts.scientificToNormal=function(a){var b;a=String(a).split("e");var c;if("-"==a[1].substr(0,1)){b="0.";for(c=0;c<Math.abs(Number(a[1]))-1;c++)b+="0";b+=a[0].split(".").join("")}else{var d=0;b=a[0].split(".");b[1]&&(d=b[1].length);b=a[0].split(".").join("");for(c=0;c<Math.abs(Number(a[1]))-d;c++)b+="0"}return b};
25
  AmCharts.toScientific=function(a,b){if(0===a)return"0";var c=Math.floor(Math.log(Math.abs(a))*Math.LOG10E);Math.pow(10,c);mantissa=String(mantissa).split(".").join(b);return String(mantissa)+"e"+c};AmCharts.randomColor=function(){return"#"+("00000"+(16777216*Math.random()<<0).toString(16)).substr(-6)};
26
- AmCharts.hitTest=function(a,b,c){var d=!1,f=a.x,e=a.x+a.width,g=a.y,h=a.y+a.height,k=AmCharts.isInRectangle;d||(d=k(f,g,b));d||(d=k(f,h,b));d||(d=k(e,g,b));d||(d=k(e,h,b));d||!0===c||(d=AmCharts.hitTest(b,a,!0));return d};AmCharts.isInRectangle=function(a,b,c){return a>=c.x-5&&a<=c.x+c.width+5&&b>=c.y-5&&b<=c.y+c.height+5?!0:!1};AmCharts.isPercents=function(a){if(-1!=String(a).indexOf("%"))return!0};AmCharts.dayNames="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" ");
27
- AmCharts.shortDayNames="Sun Mon Tue Wed Thu Fri Sat".split(" ");AmCharts.monthNames="January February March April May June July August September October November December".split(" ");AmCharts.shortMonthNames="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" ");AmCharts.getWeekNumber=function(a){a=new Date(a);a.setHours(0,0,0);a.setDate(a.getDate()+4-(a.getDay()||7));var b=new Date(a.getFullYear(),0,1);return Math.ceil(((a-b)/864E5+1)/7)};
28
- AmCharts.formatDate=function(a,b){var c,d,f,e,g,h,k,l,m=AmCharts.getWeekNumber(a);AmCharts.useUTC?(c=a.getUTCFullYear(),d=a.getUTCMonth(),f=a.getUTCDate(),e=a.getUTCDay(),g=a.getUTCHours(),h=a.getUTCMinutes(),k=a.getUTCSeconds(),l=a.getUTCMilliseconds()):(c=a.getFullYear(),d=a.getMonth(),f=a.getDate(),e=a.getDay(),g=a.getHours(),h=a.getMinutes(),k=a.getSeconds(),l=a.getMilliseconds());var n=String(c).substr(2,2),v=d+1;9>d&&(v="0"+v);var u=f;10>f&&(u="0"+f);var y="0"+e;b=b.replace(/W/g,m);m=g;24==
29
- m&&(m=0);var q=m;10>q&&(q="0"+q);b=b.replace(/JJ/g,q);b=b.replace(/J/g,m);m=g;0===m&&(m=24);q=m;10>q&&(q="0"+q);b=b.replace(/HH/g,q);b=b.replace(/H/g,m);m=g;11<m&&(m-=12);q=m;10>q&&(q="0"+q);b=b.replace(/KK/g,q);b=b.replace(/K/g,m);m=g;0===m&&(m=12);12<m&&(m-=12);q=m;10>q&&(q="0"+q);b=b.replace(/LL/g,q);b=b.replace(/L/g,m);m=h;10>m&&(m="0"+m);b=b.replace(/NN/g,m);b=b.replace(/N/g,h);h=k;10>h&&(h="0"+h);b=b.replace(/SS/g,h);b=b.replace(/S/g,k);k=l;10>k&&(k="00"+k);100>k&&(k="0"+k);h=l;10>h&&(h="00"+
30
- h);b=b.replace(/QQQ/g,k);b=b.replace(/QQ/g,h);b=b.replace(/Q/g,l);b=12>g?b.replace(/A/g,"am"):b.replace(/A/g,"pm");b=b.replace(/YYYY/g,"@IIII@");b=b.replace(/YY/g,"@II@");b=b.replace(/MMMM/g,"@XXXX@");b=b.replace(/MMM/g,"@XXX@");b=b.replace(/MM/g,"@XX@");b=b.replace(/M/g,"@X@");b=b.replace(/DD/g,"@RR@");b=b.replace(/D/g,"@R@");b=b.replace(/EEEE/g,"@PPPP@");b=b.replace(/EEE/g,"@PPP@");b=b.replace(/EE/g,"@PP@");b=b.replace(/E/g,"@P@");b=b.replace(/@IIII@/g,c);b=b.replace(/@II@/g,n);b=b.replace(/@XXXX@/g,
31
- AmCharts.monthNames[d]);b=b.replace(/@XXX@/g,AmCharts.shortMonthNames[d]);b=b.replace(/@XX@/g,v);b=b.replace(/@X@/g,d+1);b=b.replace(/@RR@/g,u);b=b.replace(/@R@/g,f);b=b.replace(/@PPPP@/g,AmCharts.dayNames[e]);b=b.replace(/@PPP@/g,AmCharts.shortDayNames[e]);b=b.replace(/@PP@/g,y);return b=b.replace(/@P@/g,e)};AmCharts.findPosX=function(a){var b=a,c=a.offsetLeft;if(a.offsetParent){for(;a=a.offsetParent;)c+=a.offsetLeft;for(;(b=b.parentNode)&&b!=document.body;)c-=b.scrollLeft||0}return c};
32
- AmCharts.findPosY=function(a){var b=a,c=a.offsetTop;if(a.offsetParent){for(;a=a.offsetParent;)c+=a.offsetTop;for(;(b=b.parentNode)&&b!=document.body;)c-=b.scrollTop||0}return c};AmCharts.findIfFixed=function(a){if(a.offsetParent)for(;a=a.offsetParent;)if("fixed"==AmCharts.getStyle(a,"position"))return!0;return!1};AmCharts.findIfAuto=function(a){return a.style&&"auto"==AmCharts.getStyle(a,"overflow")?!0:a.parentNode?AmCharts.findIfAuto(a.parentNode):!1};
33
- AmCharts.findScrollLeft=function(a,b){a.scrollLeft&&(b+=a.scrollLeft);return a.parentNode?AmCharts.findScrollLeft(a.parentNode,b):b};AmCharts.findScrollTop=function(a,b){a.scrollTop&&(b+=a.scrollTop);return a.parentNode?AmCharts.findScrollTop(a.parentNode,b):b};
34
  AmCharts.formatValue=function(a,b,c,d,f,e,g,h){if(b){void 0===f&&(f="");var k;for(k=0;k<c.length;k++){var l=c[k],m=b[l];void 0!==m&&(m=e?AmCharts.addPrefix(m,h,g,d):AmCharts.formatNumber(m,d),a=a.replace(RegExp("\\[\\["+f+""+l+"\\]\\]","g"),m))}}return a};AmCharts.formatDataContextValue=function(a,b){if(a){var c=a.match(/\[\[.*?\]\]/g),d;for(d=0;d<c.length;d++){var f=c[d],f=f.substr(2,f.length-4);void 0!==b[f]&&(a=a.replace(RegExp("\\[\\["+f+"\\]\\]","g"),b[f]))}}return a};
35
  AmCharts.massReplace=function(a,b){for(var c in b)if(b.hasOwnProperty(c)){var d=b[c];void 0===d&&(d="");a=a.replace(c,d)}return a};AmCharts.cleanFromEmpty=function(a){return a.replace(/\[\[[^\]]*\]\]/g,"")};
36
- AmCharts.addPrefix=function(a,b,c,d,f){var e=AmCharts.formatNumber(a,d),g="",h,k,l;if(0===a)return"0";0>a&&(g="-");a=Math.abs(a);if(1<a)for(h=b.length-1;-1<h;h--){if(a>=b[h].number&&(k=a/b[h].number,l=Number(d.precision),1>l&&(l=1),c=AmCharts.roundTo(k,l),!f||k==c)){e=g+""+c+""+b[h].prefix;break}}else for(h=0;h<c.length;h++)if(a<=c[h].number){k=a/c[h].number;l=Math.abs(Math.round(Math.log(k)*Math.LOG10E));k=AmCharts.roundTo(k,l);e=g+""+k+""+c[h].prefix;break}return e};
37
- AmCharts.remove=function(a){a&&a.remove()};AmCharts.copyProperties=function(a,b){for(var c in a)a.hasOwnProperty(c)&&"events"!=c&&(void 0!==a[c]&&"function"!=typeof a[c])&&(b[c]=a[c])};AmCharts.recommended=function(){var a="js";document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")||swfobject&&swfobject.hasFlashPlayerVersion("8")&&(a="flash");return a};
38
- AmCharts.getEffect=function(a){">"==a&&(a="easeOutSine");"<"==a&&(a="easeInSine");"elastic"==a&&(a="easeOutElastic");return a};AmCharts.extend=function(a,b){for(var c in b)void 0!==b[c]&&(a.hasOwnProperty(c)||(a[c]=b[c]))};AmCharts.fixNewLines=function(a){if(9>AmCharts.IEversion&&0<AmCharts.IEversion){var b=RegExp("\\n","g");a&&(a=a.replace(b,"<br />"))}return a};
39
- AmCharts.deleteObject=function(a,b){if(a){if(void 0===b||null===b)b=20;if(0!=b)if("[object Array]"===Object.prototype.toString.call(a))for(var c=0;c<a.length;c++)AmCharts.deleteObject(a[c],b-1),a[c]=null;else try{for(c in a)a[c]&&("object"==typeof a[c]&&AmCharts.deleteObject(a[c],b-1),"function"!=typeof a[c]&&(a[c]=null))}catch(d){}}};
40
- AmCharts.changeDate=function(a,b,c,d,f){var e=-1;void 0===d&&(d=!0);void 0===f&&(f=!1);!0===d&&(e=1);switch(b){case "YYYY":a.setFullYear(a.getFullYear()+c*e);d||f||a.setDate(a.getDate()+1);break;case "MM":a.setMonth(a.getMonth()+c*e);d||f||a.setDate(a.getDate()+1);break;case "DD":a.setDate(a.getDate()+c*e);break;case "WW":a.setDate(a.getDate()+7*c*e+1);break;case "hh":a.setHours(a.getHours()+c*e);break;case "mm":a.setMinutes(a.getMinutes()+c*e);break;case "ss":a.setSeconds(a.getSeconds()+c*e);break;
41
- case "fff":a.setMilliseconds(a.getMilliseconds()+c*e)}return a};AmCharts.AmDraw=AmCharts.Class({construct:function(a,b,c){AmCharts.SVG_NS="http://www.w3.org/2000/svg";AmCharts.SVG_XLINK="http://www.w3.org/1999/xlink";AmCharts.hasSVG=!!document.createElementNS&&!!document.createElementNS(AmCharts.SVG_NS,"svg").createSVGRect;1>b&&(b=10);1>c&&(c=10);this.div=a;this.width=b;this.height=c;this.rBin=document.createElement("div");if(AmCharts.hasSVG){AmCharts.SVG=!0;var d=this.createSvgElement("svg");d.style.position="absolute";d.style.width=b+"px";d.style.height=c+"px";
42
- AmCharts.rtl&&(d.setAttribute("direction","rtl"),d.style.left="auto",d.style.right="0px");d.setAttribute("version","1.1");a.appendChild(d);this.container=d;this.R=new AmCharts.SVGRenderer(this)}else AmCharts.isIE&&AmCharts.VMLRenderer&&(AmCharts.VML=!0,AmCharts.vmlStyleSheet||(document.namespaces.add("amvml","urn:schemas-microsoft-com:vml"),b=document.createStyleSheet(),b.addRule(".amvml","behavior:url(#default#VML); display:inline-block; antialias:true"),AmCharts.vmlStyleSheet=b),this.container=
43
- a,this.R=new AmCharts.VMLRenderer(this),this.R.disableSelection(a))},createSvgElement:function(a){return document.createElementNS(AmCharts.SVG_NS,a)},circle:function(a,b,c,d){var f=new AmCharts.AmDObject("circle",this);f.attr({r:c,cx:a,cy:b});this.addToContainer(f.node,d);return f},setSize:function(a,b){0<a&&0<b&&(this.container.style.width=a+"px",this.container.style.height=b+"px")},rect:function(a,b,c,d,f,e,g){var h=new AmCharts.AmDObject("rect",this);AmCharts.VML&&(f=100*f/Math.min(c,d),c+=2*e,
44
- d+=2*e,h.bw=e,h.node.style.marginLeft=-e,h.node.style.marginTop=-e);1>c&&(c=1);1>d&&(d=1);h.attr({x:a,y:b,width:c,height:d,rx:f,ry:f,"stroke-width":e});this.addToContainer(h.node,g);return h},image:function(a,b,c,d,f,e){var g=new AmCharts.AmDObject("image",this);g.attr({x:b,y:c,width:d,height:f});this.R.path(g,a);this.addToContainer(g.node,e);return g},addToContainer:function(a,b){b||(b=this.container);b.appendChild(a)},text:function(a,b,c){return this.R.text(a,b,c)},path:function(a,b,c,d){var f=
45
- new AmCharts.AmDObject("path",this);d||(d="100,100");f.attr({cs:d});c?f.attr({dd:a}):f.attr({d:a});this.addToContainer(f.node,b);return f},set:function(a){return this.R.set(a)},remove:function(a){if(a){var b=this.rBin;b.appendChild(a);b.innerHTML=""}},bounce:function(a,b,c,d,f){return(b/=f)<1/2.75?d*7.5625*b*b+c:b<2/2.75?d*(7.5625*(b-=1.5/2.75)*b+0.75)+c:b<2.5/2.75?d*(7.5625*(b-=2.25/2.75)*b+0.9375)+c:d*(7.5625*(b-=2.625/2.75)*b+0.984375)+c},easeInSine:function(a,b,c,d,f){return-d*Math.cos(b/f*(Math.PI/
46
- 2))+d+c},easeOutSine:function(a,b,c,d,f){return d*Math.sin(b/f*(Math.PI/2))+c},easeOutElastic:function(a,b,c,d,f){a=1.70158;var e=0,g=d;if(0===b)return c;if(1==(b/=f))return c+d;e||(e=0.3*f);g<Math.abs(d)?(g=d,a=e/4):a=e/(2*Math.PI)*Math.asin(d/g);return g*Math.pow(2,-10*b)*Math.sin((b*f-a)*2*Math.PI/e)+d+c},renderFix:function(){var a=this.container,b=a.style,c;try{c=a.getScreenCTM()||a.createSVGMatrix()}catch(d){c=a.createSVGMatrix()}a=1-c.e%1;c=1-c.f%1;0.5<a&&(a-=1);0.5<c&&(c-=1);a&&(b.left=a+"px");
47
- c&&(b.top=c+"px")}});AmCharts.AmDObject=AmCharts.Class({construct:function(a,b){this.D=b;this.R=b.R;this.node=this.R.create(this,a);this.y=this.x=0;this.scale=1},attr:function(a){this.R.attr(this,a);return this},getAttr:function(a){return this.node.getAttribute(a)},setAttr:function(a,b){this.R.setAttr(this,a,b);return this},clipRect:function(a,b,c,d){this.R.clipRect(this,a,b,c,d)},translate:function(a,b,c,d){d||(a=Math.round(a),b=Math.round(b));this.R.move(this,a,b,c);this.x=a;this.y=b;this.scale=c;this.angle&&this.rotate(this.angle)},
48
- rotate:function(a){this.R.rotate(this,a);this.angle=a},animate:function(a,b,c){for(var d in a)if(a.hasOwnProperty(d)){var f=d,e=a[d];c=AmCharts.getEffect(c);this.R.animate(this,f,e,b,c)}},push:function(a){if(a){var b=this.node;b.appendChild(a.node);var c=a.clipPath;c&&b.appendChild(c);(a=a.grad)&&b.appendChild(a)}},text:function(a){this.R.setText(this,a)},remove:function(){this.R.remove(this)},clear:function(){var a=this.node;if(a.hasChildNodes())for(;1<=a.childNodes.length;)a.removeChild(a.firstChild)},
49
  hide:function(){this.setAttr("visibility","hidden")},show:function(){this.setAttr("visibility","visible")},getBBox:function(){return this.R.getBBox(this)},toFront:function(){var a=this.node;if(a){this.prevNextNode=a.nextSibling;var b=a.parentNode;b&&b.appendChild(a)}},toPrevious:function(){var a=this.node;a&&this.prevNextNode&&(a=a.parentNode)&&a.insertBefore(this.prevNextNode,null)},toBack:function(){var a=this.node;if(a){this.prevNextNode=a.nextSibling;var b=a.parentNode;if(b){var c=b.firstChild;
50
  c&&b.insertBefore(a,c)}}},mouseover:function(a){this.R.addListener(this,"mouseover",a);return this},mouseout:function(a){this.R.addListener(this,"mouseout",a);return this},click:function(a){this.R.addListener(this,"click",a);return this},dblclick:function(a){this.R.addListener(this,"dblclick",a);return this},mousedown:function(a){this.R.addListener(this,"mousedown",a);return this},mouseup:function(a){this.R.addListener(this,"mouseup",a);return this},touchstart:function(a){this.R.addListener(this,
51
- "touchstart",a);return this},touchend:function(a){this.R.addListener(this,"touchend",a);return this},contextmenu:function(a){this.node.addEventListener?this.node.addEventListener("contextmenu",a):this.R.addListener(this,"contextmenu",a);return this},stop:function(a){(a=this.animationX)&&AmCharts.removeFromArray(this.R.animations,a);(a=this.animationY)&&AmCharts.removeFromArray(this.R.animations,a)},length:function(){return this.node.childNodes.length},gradient:function(a,b,c){this.R.gradient(this,
52
- a,b,c)}});AmCharts.SVGRenderer=AmCharts.Class({construct:function(a){this.D=a;this.animations=[]},create:function(a,b){return document.createElementNS(AmCharts.SVG_NS,b)},attr:function(a,b){for(var c in b)b.hasOwnProperty(c)&&this.setAttr(a,c,b[c])},setAttr:function(a,b,c){void 0!==c&&a.node.setAttribute(b,c)},animate:function(a,b,c,d,f){var e=this,g=a.node;"translate"==b?(g=(g=g.getAttribute("transform"))?String(g).substring(10,g.length-1):"0,0",g=g.split(", ").join(" "),g=g.split(" ").join(","),0===g&&(g=
53
- "0,0")):g=g.getAttribute(b);b={obj:a,frame:0,attribute:b,from:g,to:c,time:d,effect:f};e.animations.push(b);a.animationX=b;e.interval||(e.interval=setInterval(function(){e.updateAnimations.call(e)},AmCharts.updateRate))},updateAnimations:function(){var a;for(a=this.animations.length-1;0<=a;a--){var b=this.animations[a],c=1E3*b.time/AmCharts.updateRate,d=b.frame+1,f=b.obj,e=b.attribute,g,h,k;d<=c?(b.frame++,"translate"==e?(g=b.from.split(","),e=Number(g[0]),g=Number(g[1]),h=b.to.split(","),k=Number(h[0]),
54
- h=Number(h[1]),k=0===k-e?k:Math.round(this.D[b.effect](0,d,e,k-e,c)),b=0===h-g?h:Math.round(this.D[b.effect](0,d,g,h-g,c)),e="transform",b="translate("+k+","+b+")"):(g=Number(b.from),k=Number(b.to),k-=g,b=this.D[b.effect](0,d,g,k,c),0===k&&this.animations.splice(a,1)),this.setAttr(f,e,b)):("translate"==e?(h=b.to.split(","),k=Number(h[0]),h=Number(h[1]),f.translate(k,h)):(k=Number(b.to),this.setAttr(f,e,k)),this.animations.splice(a,1))}},getBBox:function(a){if(a=a.node)try{return a.getBBox()}catch(b){}return{width:0,
55
  height:0,x:0,y:0}},path:function(a,b){a.node.setAttributeNS(AmCharts.SVG_XLINK,"xlink:href",b)},clipRect:function(a,b,c,d,f){var e=a.node,g=a.clipPath;g&&this.D.remove(g);var h=e.parentNode;h&&(e=document.createElementNS(AmCharts.SVG_NS,"clipPath"),g=AmCharts.getUniqueId(),e.setAttribute("id",g),this.D.rect(b,c,d,f,0,0,e),h.appendChild(e),b="#",AmCharts.baseHref&&!AmCharts.isIE&&(b=window.location.href+b),this.setAttr(a,"clip-path","url("+b+g+")"),this.clipPathC++,a.clipPath=e)},text:function(a,b,
56
- c){var d=new AmCharts.AmDObject("text",this.D);a=String(a).split("\n");var f=b["font-size"],e;for(e=0;e<a.length;e++){var g=this.create(null,"tspan");g.appendChild(document.createTextNode(a[e]));g.setAttribute("y",(f+2)*e+f/2);g.setAttribute("x",0);d.node.appendChild(g)}d.node.setAttribute("y",f/2);this.attr(d,b);this.D.addToContainer(d.node,c);return d},setText:function(a,b){var c=a.node;c&&(c.removeChild(c.firstChild),c.appendChild(document.createTextNode(b)))},move:function(a,b,c,d){b="translate("+
57
- b+","+c+")";d&&(b=b+" scale("+d+")");this.setAttr(a,"transform",b)},rotate:function(a,b){var c=a.node.getAttribute("transform"),d="rotate("+b+")";c&&(d=c+" "+d);this.setAttr(a,"transform",d)},set:function(a){var b=new AmCharts.AmDObject("g",this.D);this.D.container.appendChild(b.node);if(a){var c;for(c=0;c<a.length;c++)b.push(a[c])}return b},addListener:function(a,b,c){a.node["on"+b]=c},gradient:function(a,b,c,d){var f=a.node,e=a.grad;e&&this.D.remove(e);b=document.createElementNS(AmCharts.SVG_NS,
58
  b);e=AmCharts.getUniqueId();b.setAttribute("id",e);if(!isNaN(d)){var g=0,h=0,k=0,l=0;90==d?k=100:270==d?l=100:180==d?g=100:0===d&&(h=100);b.setAttribute("x1",g+"%");b.setAttribute("x2",h+"%");b.setAttribute("y1",k+"%");b.setAttribute("y2",l+"%")}for(d=0;d<c.length;d++)g=document.createElementNS(AmCharts.SVG_NS,"stop"),h=100*d/(c.length-1),0===d&&(h=0),g.setAttribute("offset",h+"%"),g.setAttribute("stop-color",c[d]),b.appendChild(g);f.parentNode.appendChild(b);c="#";AmCharts.baseHref&&!AmCharts.isIE&&
59
- (c=window.location.href+c);f.setAttribute("fill","url("+c+e+")");a.grad=b},remove:function(a){a.clipPath&&this.D.remove(a.clipPath);a.grad&&this.D.remove(a.grad);this.D.remove(a.node)}});AmCharts.AmChart=AmCharts.Class({construct:function(){this.version="2.10.4";AmCharts.addChart(this);this.createEvents("dataUpdated","init","rendered");this.height=this.width="100%";this.dataChanged=!0;this.chartCreated=!1;this.previousWidth=this.previousHeight=0;this.backgroundColor="#FFFFFF";this.borderAlpha=this.backgroundAlpha=0;this.color=this.borderColor="#000000";this.fontFamily="Verdana";this.fontSize=11;this.numberFormatter={precision:-1,decimalSeparator:".",thousandsSeparator:","};this.percentFormatter=
60
- {precision:2,decimalSeparator:".",thousandsSeparator:","};this.labels=[];this.allLabels=[];this.titles=[];this.marginRight=this.marginLeft=this.autoMarginOffset=0;this.timeOuts=[];var a=document.createElement("div"),b=a.style;b.overflow="hidden";b.position="relative";b.textAlign="left";this.chartDiv=a;a=document.createElement("div");b=a.style;b.overflow="hidden";b.position="relative";b.textAlign="left";this.legendDiv=a;this.balloon=new AmCharts.AmBalloon;this.balloon.chart=this;this.titleHeight=0;
61
- this.prefixesOfBigNumbers=[{number:1E3,prefix:"k"},{number:1E6,prefix:"M"},{number:1E9,prefix:"G"},{number:1E12,prefix:"T"},{number:1E15,prefix:"P"},{number:1E18,prefix:"E"},{number:1E21,prefix:"Z"},{number:1E24,prefix:"Y"}];this.prefixesOfSmallNumbers=[{number:1E-24,prefix:"y"},{number:1E-21,prefix:"z"},{number:1E-18,prefix:"a"},{number:1E-15,prefix:"f"},{number:1E-12,prefix:"p"},{number:1E-9,prefix:"n"},{number:1E-6,prefix:"\u03bc"},{number:0.001,prefix:"m"}];this.panEventsEnabled=!1;AmCharts.bezierX=
62
- 3;AmCharts.bezierY=6;this.product="amcharts"},drawChart:function(){this.drawBackground();this.redrawLabels();this.drawTitles()},drawBackground:function(){AmCharts.remove(this.background);var a=this.container,b=this.backgroundColor,c=this.backgroundAlpha,d=this.set,f=this.updateWidth();this.realWidth=f;var e=this.updateHeight();this.realHeight=e;this.background=b=AmCharts.polygon(a,[0,f-1,f-1,0],[0,0,e-1,e-1],b,c,1,this.borderColor,this.borderAlpha);d.push(b);if(b=this.backgroundImage)this.path&&(b=
63
- this.path+b),this.bgImg=a=a.image(b,0,0,f,e),d.push(a)},drawTitles:function(){var a=this.titles;if(AmCharts.ifArray(a)){var b=20,c;for(c=0;c<a.length;c++){var d=a[c],f=d.color;void 0===f&&(f=this.color);var e=d.size;isNaN(d.alpha);var g=this.marginLeft,f=AmCharts.text(this.container,d.text,f,this.fontFamily,e);f.translate(g+(this.realWidth-this.marginRight-g)/2,b);g=!0;void 0!==d.bold&&(g=d.bold);g&&f.attr({"font-weight":"bold"});b+=e+6;this.freeLabelsSet.push(f)}}},write:function(a){var b=this.balloon;
64
- b&&!b.chart&&(b.chart=this);a="object"!=typeof a?document.getElementById(a):a;a.innerHTML="";this.div=a;a.style.overflow="hidden";a.style.textAlign="left";var b=this.chartDiv,c=this.legendDiv,d=this.legend,f=c.style,e=b.style;this.measure();var g,h;if(d)switch(d.position){case "bottom":a.appendChild(b);a.appendChild(c);break;case "top":a.appendChild(c);a.appendChild(b);break;case "absolute":g=document.createElement("div");h=g.style;h.position="relative";h.width=a.style.width;h.height=a.style.height;
65
- a.appendChild(g);f.position="absolute";e.position="absolute";void 0!==d.left&&(f.left=d.left+"px");void 0!==d.right&&(f.right=d.right+"px");void 0!==d.top&&(f.top=d.top+"px");void 0!==d.bottom&&(f.bottom=d.bottom+"px");d.marginLeft=0;d.marginRight=0;g.appendChild(b);g.appendChild(c);break;case "right":g=document.createElement("div");h=g.style;h.position="relative";h.width=a.style.width;h.height=a.style.height;a.appendChild(g);f.position="relative";e.position="absolute";g.appendChild(b);g.appendChild(c);
66
- break;case "left":g=document.createElement("div");h=g.style;h.position="relative";h.width=a.style.width;h.height=a.style.height;a.appendChild(g);f.position="absolute";e.position="relative";g.appendChild(b);g.appendChild(c);break;case "outside":a.appendChild(b)}else a.appendChild(b);this.listenersAdded||(this.addListeners(),this.listenersAdded=!0);this.initChart()},createLabelsSet:function(){AmCharts.remove(this.labelsSet);this.labelsSet=this.container.set();this.freeLabelsSet.push(this.labelsSet)},
67
- initChart:function(){this.divIsFixed=AmCharts.findIfFixed(this.chartDiv);this.previousHeight=this.divRealHeight;this.previousWidth=this.divRealWidth;this.destroy();var a=0;document.attachEvent&&!window.opera&&(a=1);this.dmouseX=this.dmouseY=0;var b=document.getElementsByTagName("html")[0];b&&window.getComputedStyle&&(b=window.getComputedStyle(b,null))&&(this.dmouseY=AmCharts.removePx(b.getPropertyValue("margin-top")),this.dmouseX=AmCharts.removePx(b.getPropertyValue("margin-left")));this.mouseMode=
68
- a;this.container=new AmCharts.AmDraw(this.chartDiv,this.realWidth,this.realHeight);if(AmCharts.VML||AmCharts.SVG)a=this.container,this.set=a.set(),this.gridSet=a.set(),this.graphsBehindSet=a.set(),this.bulletBehindSet=a.set(),this.columnSet=a.set(),this.graphsSet=a.set(),this.trendLinesSet=a.set(),this.axesLabelsSet=a.set(),this.axesSet=a.set(),this.cursorSet=a.set(),this.scrollbarsSet=a.set(),this.bulletSet=a.set(),this.freeLabelsSet=a.set(),this.balloonsSet=a.set(),this.balloonsSet.setAttr("id",
69
- "balloons"),this.zoomButtonSet=a.set(),this.linkSet=a.set(),this.drb(),this.renderFix()},measure:function(){var a=this.div,b=this.chartDiv,c=a.offsetWidth,d=a.offsetHeight,f=this.container;a.clientHeight&&(c=a.clientWidth,d=a.clientHeight);var e=AmCharts.removePx(AmCharts.getStyle(a,"padding-left")),g=AmCharts.removePx(AmCharts.getStyle(a,"padding-right")),h=AmCharts.removePx(AmCharts.getStyle(a,"padding-top")),k=AmCharts.removePx(AmCharts.getStyle(a,"padding-bottom"));isNaN(e)||(c-=e);isNaN(g)||
70
- (c-=g);isNaN(h)||(d-=h);isNaN(k)||(d-=k);e=a.style;a=e.width;e=e.height;-1!=a.indexOf("px")&&(c=AmCharts.removePx(a));-1!=e.indexOf("px")&&(d=AmCharts.removePx(e));a=AmCharts.toCoordinate(this.width,c);e=AmCharts.toCoordinate(this.height,d);if(a!=this.previousWidth||e!=this.previousHeight)b.style.width=a+"px",b.style.height=e+"px",f&&f.setSize(a,e),this.balloon.setBounds(2,2,a-2,e);this.realWidth=a;this.realHeight=e;this.divRealWidth=c;this.divRealHeight=d},destroy:function(){this.chartDiv.innerHTML=
71
- "";this.clearTimeOuts()},clearTimeOuts:function(){var a=this.timeOuts;if(a){var b;for(b=0;b<a.length;b++)clearTimeout(a[b])}this.timeOuts=[]},clear:function(a){AmCharts.callMethod("clear",[this.chartScrollbar,this.scrollbarV,this.scrollbarH,this.chartCursor]);this.chartCursor=this.scrollbarH=this.scrollbarV=this.chartScrollbar=null;this.clearTimeOuts();this.container&&(this.container.remove(this.chartDiv),this.container.remove(this.legendDiv));a||AmCharts.removeChart(this)},setMouseCursor:function(a){"auto"==
72
- a&&AmCharts.isNN&&(a="default");this.chartDiv.style.cursor=a;this.legendDiv.style.cursor=a},redrawLabels:function(){this.labels=[];var a=this.allLabels;this.createLabelsSet();var b;for(b=0;b<a.length;b++)this.drawLabel(a[b])},drawLabel:function(a){if(this.container){var b=a.y,c=a.text,d=a.align,f=a.size,e=a.color,g=a.rotation,h=a.alpha,k=a.bold,l=AmCharts.toCoordinate(a.x,this.realWidth),b=AmCharts.toCoordinate(b,this.realHeight);l||(l=0);b||(b=0);void 0===e&&(e=this.color);isNaN(f)&&(f=this.fontSize);
73
- d||(d="start");"left"==d&&(d="start");"right"==d&&(d="end");"center"==d&&(d="middle",g?b=this.realHeight-b+b/2:l=this.realWidth/2-l);void 0===h&&(h=1);void 0===g&&(g=0);b+=f/2;c=AmCharts.text(this.container,c,e,this.fontFamily,f,d,k,h);c.translate(l,b);0!==g&&c.rotate(g);a.url&&(c.setAttr("cursor","pointer"),c.click(function(){AmCharts.getURL(a.url)}));this.labelsSet.push(c);this.labels.push(c)}},addLabel:function(a,b,c,d,f,e,g,h,k,l){a={x:a,y:b,text:c,align:d,size:f,color:e,alpha:h,rotation:g,bold:k,
74
- url:l};this.container&&this.drawLabel(a);this.allLabels.push(a)},clearLabels:function(){var a=this.labels,b;for(b=a.length-1;0<=b;b--)a[b].remove();this.labels=[];this.allLabels=[]},updateHeight:function(){var a=this.divRealHeight,b=this.legend;if(b){var c=this.legendDiv.offsetHeight,b=b.position;if("top"==b||"bottom"==b)a-=c,0>a&&(a=0),this.chartDiv.style.height=a+"px"}return a},updateWidth:function(){var a=this.divRealWidth,b=this.divRealHeight,c=this.legend;if(c){var d=this.legendDiv,f=d.offsetWidth,
75
- e=d.offsetHeight,d=d.style,g=this.chartDiv.style,c=c.position;if("right"==c||"left"==c)a-=f,0>a&&(a=0),g.width=a+"px","left"==c?g.left=f+"px":d.left=a+"px",d.top=(b-e)/2+"px"}return a},getTitleHeight:function(){var a=0,b=this.titles;if(0<b.length){var a=15,c;for(c=0;c<b.length;c++)a+=b[c].size+6}return a},addTitle:function(a,b,c,d,f){isNaN(b)&&(b=this.fontSize+2);a={text:a,size:b,color:c,alpha:d,bold:f};this.titles.push(a);return a},addListeners:function(){var a=this,b=a.chartDiv;AmCharts.isNN&&(a.panEventsEnabled&&
76
- "ontouchstart"in document.documentElement&&(b.addEventListener("touchstart",function(b){a.handleTouchMove.call(a,b);a.handleTouchStart.call(a,b)},!0),b.addEventListener("touchmove",function(b){a.handleTouchMove.call(a,b)},!0),b.addEventListener("touchend",function(b){a.handleTouchEnd.call(a,b)},!0)),b.addEventListener("mousedown",function(b){a.handleMouseDown.call(a,b)},!0),b.addEventListener("mouseover",function(b){a.handleMouseOver.call(a,b)},!0),b.addEventListener("mouseout",function(b){a.handleMouseOut.call(a,
77
- b)},!0));AmCharts.isIE&&(b.attachEvent("onmousedown",function(b){a.handleMouseDown.call(a,b)}),b.attachEvent("onmouseover",function(b){a.handleMouseOver.call(a,b)}),b.attachEvent("onmouseout",function(b){a.handleMouseOut.call(a,b)}))},dispDUpd:function(){var a;this.dispatchDataUpdated&&(this.dispatchDataUpdated=!1,a="dataUpdated",this.fire(a,{type:a,chart:this}));this.chartCreated||(a="init",this.fire(a,{type:a,chart:this}));this.chartRendered||(a="rendered",this.fire(a,{type:a,chart:this}),this.chartRendered=
78
- !0)},drb:function(){var a=this.product,b=a+".com",c=window.location.hostname.split("."),d;2<=c.length&&(d=c[c.length-2]+"."+c[c.length-1]);AmCharts.remove(this.bbset);if(d!=b){var b=b+"/?utm_source=swf&utm_medium=demo&utm_campaign=jsDemo"+a,f="chart by ",c=145;"ammap"==a&&(f="tool by ",c=125);d=AmCharts.rect(this.container,c,20,"#FFFFFF",1);f=AmCharts.text(this.container,f+a+".com","#000000","Verdana",11,"start");f.translate(7,9);d=this.container.set([d,f]);"ammap"==a&&d.translate(this.realWidth-
79
- c,0);this.bbset=d;this.linkSet.push(d);d.setAttr("cursor","pointer");d.click(function(){window.location.href="http://"+b});for(a=0;a<d.length;a++)d[a].attr({cursor:"pointer"})}},validateSize:function(){var a=this;a.measure();var b=a.legend;if((a.realWidth!=a.previousWidth||a.realHeight!=a.previousHeight)&&0<a.realWidth&&0<a.realHeight){a.sizeChanged=!0;if(b){clearTimeout(a.legendInitTO);var c=setTimeout(function(){b.invalidateSize()},100);a.timeOuts.push(c);a.legendInitTO=c}a.marginsUpdated="xy"!=
80
- a.chartType?!1:!0;clearTimeout(a.initTO);c=setTimeout(function(){a.initChart()},150);a.timeOuts.push(c);a.initTO=c}a.renderFix();b&&b.renderFix()},invalidateSize:function(){this.previousHeight=this.previousWidth=NaN;this.invalidateSizeReal()},invalidateSizeReal:function(){var a=this;a.marginsUpdated=!1;clearTimeout(a.validateTO);var b=setTimeout(function(){a.validateSize()},5);a.timeOuts.push(b);a.validateTO=b},validateData:function(a){this.chartCreated&&(this.dataChanged=!0,this.marginsUpdated="xy"!=
81
- this.chartType?!1:!0,this.initChart(a))},validateNow:function(){this.listenersAdded=!1;this.write(this.div)},showItem:function(a){a.hidden=!1;this.initChart()},hideItem:function(a){a.hidden=!0;this.initChart()},hideBalloon:function(){var a=this;a.hoverInt=setTimeout(function(){a.hideBalloonReal.call(a)},80)},cleanChart:function(){},hideBalloonReal:function(){var a=this.balloon;a&&a.hide()},showBalloon:function(a,b,c,d,f){var e=this;clearTimeout(e.balloonTO);e.balloonTO=setTimeout(function(){e.showBalloonReal.call(e,
82
- a,b,c,d,f)},1)},showBalloonReal:function(a,b,c,d,f){this.handleMouseMove();var e=this.balloon;e.enabled&&(e.followCursor(!1),e.changeColor(b),c||e.setPosition(d,f),e.followCursor(c),a&&e.showBalloon(a))},handleTouchMove:function(a){this.hideBalloon();var b=this.chartDiv;a.touches&&(a=a.touches.item(0),this.mouseX=a.pageX-AmCharts.findPosX(b),this.mouseY=a.pageY-AmCharts.findPosY(b))},handleMouseOver:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!0},handleMouseOut:function(a){AmCharts.resetMouseOver();
83
- this.mouseIsOver=!1},handleMouseMove:function(a){if(this.mouseIsOver){var b=this.chartDiv;a||(a=window.event);var c,d;if(a){this.posX=AmCharts.findPosX(b);this.posY=AmCharts.findPosY(b);switch(this.mouseMode){case 1:c=a.clientX-this.posX;d=a.clientY-this.posY;if(!this.divIsFixed){var b=document.body,f,e;b&&(f=b.scrollLeft,y1=b.scrollTop);if(b=document.documentElement)e=b.scrollLeft,y2=b.scrollTop;f=Math.max(f,e);e=Math.max(y1,y2);c+=f;d+=e}break;case 0:this.divIsFixed?(c=a.clientX-this.posX,d=a.clientY-
84
- this.posY):(c=a.pageX-this.posX,d=a.pageY-this.posY)}a.touches&&(a=a.touches.item(0),c=a.pageX-this.posX,d=a.pageY-this.posY);this.mouseX=c-this.dmouseX;this.mouseY=d-this.dmouseY}}},handleTouchStart:function(a){this.handleMouseDown(a)},handleTouchEnd:function(a){AmCharts.resetMouseOver();this.handleReleaseOutside(a)},handleReleaseOutside:function(a){},handleMouseDown:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!0;a&&a.preventDefault&&a.preventDefault()},addLegend:function(a,b){AmCharts.extend(a,
85
- new AmCharts.AmLegend);var c;c="object"!=typeof b?document.getElementById(b):b;this.legend=a;a.chart=this;c?(a.div=c,a.position="outside",a.autoMargins=!1):a.div=this.legendDiv;c=this.handleLegendEvent;this.listenTo(a,"showItem",c);this.listenTo(a,"hideItem",c);this.listenTo(a,"clickMarker",c);this.listenTo(a,"rollOverItem",c);this.listenTo(a,"rollOutItem",c);this.listenTo(a,"rollOverMarker",c);this.listenTo(a,"rollOutMarker",c);this.listenTo(a,"clickLabel",c)},removeLegend:function(){this.legend=
86
- void 0;this.legendDiv.innerHTML=""},handleResize:function(){(AmCharts.isPercents(this.width)||AmCharts.isPercents(this.height))&&this.invalidateSizeReal();this.renderFix()},renderFix:function(){if(!AmCharts.VML){var a=this.container;a&&a.renderFix()}},getSVG:function(){if(AmCharts.hasSVG)return this.container}});AmCharts.Slice=AmCharts.Class({construct:function(){}});AmCharts.SerialDataItem=AmCharts.Class({construct:function(){}});AmCharts.GraphDataItem=AmCharts.Class({construct:function(){}});
87
- AmCharts.Guide=AmCharts.Class({construct:function(){}});AmCharts.AmBalloon=AmCharts.Class({construct:function(){this.enabled=!0;this.fillColor="#CC0000";this.fillAlpha=1;this.borderThickness=2;this.borderColor="#FFFFFF";this.borderAlpha=1;this.cornerRadius=6;this.maximumWidth=220;this.horizontalPadding=8;this.verticalPadding=5;this.pointerWidth=10;this.pointerOrientation="V";this.color="#FFFFFF";this.textShadowColor="#000000";this.adjustBorderColor=!1;this.showBullet=!0;this.show=this.follow=!1;this.bulletSize=3;this.textAlign="middle"},draw:function(){var a=
88
- this.pointToX,b=this.pointToY,c=this.textAlign;if(!isNaN(a)){var d=this.chart,f=d.container,e=this.set;AmCharts.remove(e);AmCharts.remove(this.pointer);this.set=e=f.set();d.balloonsSet.push(e);if(this.show){var g=this.l,h=this.t,k=this.r,l=this.b,m=this.textShadowColor;this.color==m&&(m=void 0);var n=this.balloonColor,v=this.fillColor,u=this.borderColor;void 0!=n&&(this.adjustBorderColor?u=n:v=n);var y=this.horizontalPadding,n=this.verticalPadding,q=this.pointerWidth,r=this.pointerOrientation,s=this.cornerRadius,
89
- t=d.fontFamily,w=this.fontSize;void 0==w&&(w=d.fontSize);d=AmCharts.text(f,this.text,this.color,t,w,c);e.push(d);var x;void 0!=m&&(x=AmCharts.text(f,this.text,m,t,w,c,!1,0.4),e.push(x));t=d.getBBox();m=t.height+2*n;t=t.width+2*y;window.opera&&(m+=2);var p,w=w/2+n;switch(c){case "middle":p=t/2;break;case "left":p=y;break;case "right":p=t-y}d.translate(p,w);x&&x.translate(p+1,w+1);"H"!=r?(p=a-t/2,c=b<h+m+10&&"down"!=r?b+q:b-m-q):(2*q>m&&(q=m/2),c=b-m/2,p=a<g+(k-g)/2?a+q:a-t-q);c+m>=l&&(c=l-m);c<h&&
90
- (c=h);p<g&&(p=g);p+t>k&&(p=k-t);0<s||0===q?(u=AmCharts.rect(f,t,m,v,this.fillAlpha,this.borderThickness,u,this.borderAlpha,this.cornerRadius),this.showBullet&&(f=AmCharts.circle(f,this.bulletSize,v,this.fillAlpha),f.translate(a,b),this.pointer=f)):(l=[],s=[],"H"!=r?(g=a-p,g>t-q&&(g=t-q),g<q&&(g=q),l=[0,g-q,a-p,g+q,t,t,0,0],s=b<h+m+10&&"down"!=r?[0,0,b-c,0,0,m,m,0]:[m,m,b-c,m,m,0,0,m]):(h=b-c,h>m-q&&(h=m-q),h<q&&(h=q),s=[0,h-q,b-c,h+q,m,m,0,0],l=a<g+(k-g)/2?[0,0,p<a?0:a-p,0,0,t,t,0]:[t,t,p+t>a?t:a-
91
- p,t,t,0,0,t]),u=AmCharts.polygon(f,l,s,v,this.fillAlpha,this.borderThickness,u,this.borderAlpha));e.push(u);u.toFront();x&&x.toFront();d.toFront();a=1;9>AmCharts.IEversion&&this.follow&&(a=6);e.translate(p-a,c);e=d.getBBox();this.bottom=c+e.y+e.height+2*n+2;this.yPos=e.y+c}}},followMouse:function(){if(this.follow&&this.show){var a=this.chart.mouseX,b=this.chart.mouseY-3;this.pointToX=a;this.pointToY=b;if(a!=this.previousX||b!=this.previousY)if(this.previousX=a,this.previousY=b,0===this.cornerRadius)this.draw();
92
- else{var c=this.set;if(c){var d=c.getBBox(),a=a-d.width/2,f=b-d.height-10;a<this.l&&(a=this.l);a>this.r-d.width&&(a=this.r-d.width);f<this.t&&(f=b+10);c.translate(a,f)}}}},changeColor:function(a){this.balloonColor=a},setBounds:function(a,b,c,d){this.l=a;this.t=b;this.r=c;this.b=d},showBalloon:function(a){this.text=a;this.show=!0;this.draw()},hide:function(){this.follow=this.show=!1;this.destroy()},setPosition:function(a,b,c){this.pointToX=a;this.pointToY=b;c&&(a==this.previousX&&b==this.previousY||
93
- this.draw());this.previousX=a;this.previousY=b},followCursor:function(a){var b=this;(b.follow=a)?(b.pShowBullet=b.showBullet,b.showBullet=!1):void 0!==b.pShowBullet&&(b.showBullet=b.pShowBullet);clearInterval(b.interval);var c=b.chart.mouseX,d=b.chart.mouseY;!isNaN(c)&&a&&(b.pointToX=c,b.pointToY=d-3,b.interval=setInterval(function(){b.followMouse.call(b)},40))},destroy:function(){clearInterval(this.interval);AmCharts.remove(this.set);this.set=null;AmCharts.remove(this.pointer);this.pointer=null}});AmCharts.circle=function(a,b,c,d,f,e,g,h){if(void 0==f||0===f)f=1;void 0===e&&(e="#000000");void 0===g&&(g=0);d={fill:c,stroke:e,"fill-opacity":d,"stroke-width":f,"stroke-opacity":g};a=a.circle(0,0,b).attr(d);h&&a.gradient("radialGradient",[c,AmCharts.adjustLuminosity(c,-0.6)]);return a};
94
- AmCharts.text=function(a,b,c,d,f,e,g,h){e||(e="middle");"right"==e&&(e="end");AmCharts.isIE&&9>AmCharts.IEversion&&(b=b.replace("&amp;","&"),b=b.replace("&","&amp;"));c={fill:c,"font-family":d,"font-size":f,opacity:h};!0===g&&(c["font-weight"]="bold");c["text-anchor"]=e;return a.text(b,c)};
95
- AmCharts.polygon=function(a,b,c,d,f,e,g,h,k){isNaN(e)&&(e=0);isNaN(h)&&(h=f);var l=d,m=!1;"object"==typeof l&&1<l.length&&(m=!0,l=l[0]);void 0===g&&(g=l);f={fill:l,stroke:g,"fill-opacity":f,"stroke-width":e,"stroke-opacity":h};e=AmCharts.dx;g=AmCharts.dy;h=Math.round;var l="M"+(h(b[0])+e)+","+(h(c[0])+g),n;for(n=1;n<b.length;n++)l+=" L"+(h(b[n])+e)+","+(h(c[n])+g);a=a.path(l+" Z").attr(f);m&&a.gradient("linearGradient",d,k);return a};
96
- AmCharts.rect=function(a,b,c,d,f,e,g,h,k,l){isNaN(e)&&(e=0);void 0===k&&(k=0);void 0===l&&(l=270);isNaN(f)&&(f=0);var m=d,n=!1;"object"==typeof m&&(m=m[0],n=!0);void 0===g&&(g=m);void 0===h&&(h=f);b=Math.round(b);c=Math.round(c);var v=0,u=0;0>b&&(b=Math.abs(b),v=-b);0>c&&(c=Math.abs(c),u=-c);v+=AmCharts.dx;u+=AmCharts.dy;f={fill:m,stroke:g,"fill-opacity":f,"stroke-opacity":h};a=a.rect(v,u,b,c,k,e).attr(f);n&&a.gradient("linearGradient",d,l);return a};
 
 
 
 
 
 
 
 
 
 
 
97
  AmCharts.triangle=function(a,b,c,d,f,e,g,h){if(void 0===e||0===e)e=1;void 0===g&&(g="#000");void 0===h&&(h=0);d={fill:d,stroke:g,"fill-opacity":f,"stroke-width":e,"stroke-opacity":h};b/=2;var k;0===c&&(k=" M"+-b+","+b+" L0,"+-b+" L"+b+","+b+" Z");180==c&&(k=" M"+-b+","+-b+" L0,"+b+" L"+b+","+-b+" Z");90==c&&(k=" M"+-b+","+-b+" L"+b+",0 L"+-b+","+b+" Z");270==c&&(k=" M"+-b+",0 L"+b+","+b+" L"+b+","+-b+" Z");return a.path(k).attr(d)};
98
- AmCharts.line=function(a,b,c,d,f,e,g,h,k,l){e={fill:"none","stroke-width":e};void 0!==g&&0<g&&(e["stroke-dasharray"]=g);isNaN(f)||(e["stroke-opacity"]=f);d&&(e.stroke=d);d=Math.round;l&&(d=AmCharts.doNothing);l=AmCharts.dx;f=AmCharts.dy;g="M"+(d(b[0])+l)+","+(d(c[0])+f);for(h=1;h<b.length;h++)g+=" L"+(d(b[h])+l)+","+(d(c[h])+f);if(AmCharts.VML)return a.path(g,void 0,!0).attr(e);k&&(g+=" M0,0 L0,0");return a.path(g).attr(e)};AmCharts.doNothing=function(a){return a};
99
- AmCharts.wedge=function(a,b,c,d,f,e,g,h,k,l,m){var n=Math.round;e=n(e);g=n(g);h=n(h);var v=n(g/e*h),u=AmCharts.VML,y=-359.5-e/100;-359.94>y&&(y=-359.94);f<=y&&(f=y);var q=1/180*Math.PI,y=b+Math.cos(d*q)*h,r=c+Math.sin(-d*q)*v,s=b+Math.cos(d*q)*e,t=c+Math.sin(-d*q)*g,w=b+Math.cos((d+f)*q)*e,x=c+Math.sin((-d-f)*q)*g,p=b+Math.cos((d+f)*q)*h,q=c+Math.sin((-d-f)*q)*v,z={fill:AmCharts.adjustLuminosity(l.fill,-0.2),"stroke-opacity":0},A=0;180<Math.abs(f)&&(A=1);d=a.set();var D;u&&(y=n(10*y),s=n(10*s),w=
100
- n(10*w),p=n(10*p),r=n(10*r),t=n(10*t),x=n(10*x),q=n(10*q),b=n(10*b),k=n(10*k),c=n(10*c),e*=10,g*=10,h*=10,v*=10,1>Math.abs(f)&&(1>=Math.abs(w-s)&&1>=Math.abs(x-t))&&(D=!0));f="";if(0<k){u?(path=" M"+y+","+(r+k)+" L"+s+","+(t+k),D||(path+=" A"+(b-e)+","+(k+c-g)+","+(b+e)+","+(k+c+g)+","+s+","+(t+k)+","+w+","+(x+k)),path+=" L"+p+","+(q+k),0<h&&(D||(path+=" B"+(b-h)+","+(k+c-v)+","+(b+h)+","+(k+c+v)+","+p+","+(k+q)+","+y+","+(k+r)))):(path=" M"+y+","+(r+k)+" L"+s+","+(t+k),path+=" A"+e+","+g+",0,"+A+
101
- ",1,"+w+","+(x+k)+" L"+p+","+(q+k),0<h&&(path+=" A"+h+","+v+",0,"+A+",0,"+y+","+(r+k)));path+=" Z";var E=a.path(path,void 0,void 0,"1000,1000").attr(z);d.push(E);E=a.path(" M"+y+","+r+" L"+y+","+(r+k)+" L"+s+","+(t+k)+" L"+s+","+t+" L"+y+","+r+" Z",void 0,void 0,"1000,1000").attr(z);k=a.path(" M"+w+","+x+" L"+w+","+(x+k)+" L"+p+","+(q+k)+" L"+p+","+q+" L"+w+","+x+" Z",void 0,void 0,"1000,1000").attr(z);d.push(E);d.push(k)}u?(D||(f=" A"+n(b-e)+","+n(c-g)+","+n(b+e)+","+n(c+g)+","+n(s)+","+n(t)+","+
102
- n(w)+","+n(x)),e=" M"+n(y)+","+n(r)+" L"+n(s)+","+n(t)+f+" L"+n(p)+","+n(q)):e=" M"+y+","+r+" L"+s+","+t+(" A"+e+","+g+",0,"+A+",1,"+w+","+x)+" L"+p+","+q;0<h&&(u?D||(e+=" B"+(b-h)+","+(c-v)+","+(b+h)+","+(c+v)+","+p+","+q+","+y+","+r):e+=" A"+h+","+v+",0,"+A+",0,"+y+","+r);a=a.path(e+" Z",void 0,void 0,"1000,1000").attr(l);if(m){b=[];for(c=0;c<m.length;c++)b.push(AmCharts.adjustLuminosity(l.fill,m[c]));0<b.length&&a.gradient("linearGradient",b)}d.push(a);return d};
103
- AmCharts.adjustLuminosity=function(a,b){a=String(a).replace(/[^0-9a-f]/gi,"");6>a.length&&(a=String(a[0])+String(a[0])+String(a[1])+String(a[1])+String(a[2])+String(a[2]));b=b||0;var c="#",d,f;for(f=0;3>f;f++)d=parseInt(a.substr(2*f,2),16),d=Math.round(Math.min(Math.max(0,d+d*b),255)).toString(16),c+=("00"+d).substr(d.length);return c};AmCharts.AmLegend=AmCharts.Class({construct:function(){this.createEvents("rollOverMarker","rollOverItem","rollOutMarker","rollOutItem","showItem","hideItem","clickMarker","rollOverItem","rollOutItem","clickLabel");this.position="bottom";this.borderColor=this.color="#000000";this.borderAlpha=0;this.markerLabelGap=5;this.verticalGap=10;this.align="left";this.horizontalGap=0;this.spacing=10;this.markerDisabledColor="#AAB3B3";this.markerType="square";this.markerSize=16;this.markerBorderThickness=1;this.marginBottom=
104
- this.marginTop=0;this.marginLeft=this.marginRight=20;this.autoMargins=!0;this.valueWidth=50;this.switchable=!0;this.switchType="x";this.switchColor="#FFFFFF";this.rollOverColor="#CC0000";this.reversedOrder=!1;this.labelText="[[title]]";this.valueText="[[value]]";this.useMarkerColorForLabels=!1;this.rollOverGraphAlpha=1;this.textClickEnabled=!1;this.equalWidths=!0;this.dateFormat="DD-MM-YYYY";this.backgroundColor="#FFFFFF";this.backgroundAlpha=0;this.showEntries=!0},setData:function(a){this.data=a;
105
- this.invalidateSize()},invalidateSize:function(){this.destroy();this.entries=[];this.valueLabels=[];AmCharts.ifArray(this.data)&&this.drawLegend()},drawLegend:function(){var a=this.chart,b=this.position,c=this.width,d=a.divRealWidth,f=a.divRealHeight,e=this.div,g=this.data;isNaN(this.fontSize)&&(this.fontSize=a.fontSize);if("right"==b||"left"==b)this.maxColumns=1,this.marginLeft=this.marginRight=10;else if(this.autoMargins){this.marginRight=a.marginRight;this.marginLeft=a.marginLeft;var h=a.autoMarginOffset;
106
- "bottom"==b?(this.marginBottom=h,this.marginTop=0):(this.marginTop=h,this.marginBottom=0)}c=void 0!==c?AmCharts.toCoordinate(c,d):a.realWidth;"outside"==b?(c=e.offsetWidth,f=e.offsetHeight,e.clientHeight&&(c=e.clientWidth,f=e.clientHeight)):(e.style.width=c+"px",e.className="amChartsLegend");this.divWidth=c;this.container=new AmCharts.AmDraw(e,c,f);this.lx=0;this.ly=8;b=this.markerSize;b>this.fontSize&&(this.ly=b/2-1);0<b&&(this.lx+=b+this.markerLabelGap);this.titleWidth=0;if(b=this.title)a=AmCharts.text(this.container,
107
- b,this.color,a.fontFamily,this.fontSize,"start",!0),a.translate(this.marginLeft,this.marginTop+this.verticalGap+this.ly+1),a=a.getBBox(),this.titleWidth=a.width+15,this.titleHeight=a.height+6;this.index=this.maxLabelWidth=0;if(this.showEntries){for(a=0;a<g.length;a++)this.createEntry(g[a]);for(a=this.index=0;a<g.length;a++)this.createValue(g[a])}this.arrangeEntries();this.updateValues()},arrangeEntries:function(){var a=this.position,b=this.marginLeft+this.titleWidth,c=this.marginRight,d=this.marginTop,
108
- f=this.marginBottom,e=this.horizontalGap,g=this.div,h=this.divWidth,k=this.maxColumns,l=this.verticalGap,m=this.spacing,n=h-c-b,v=0,u=0,y=this.container,q=y.set();this.set=q;y=y.set();q.push(y);var r=this.entries,s,t;for(t=0;t<r.length;t++){s=r[t].getBBox();var w=s.width;w>v&&(v=w);s=s.height;s>u&&(u=s)}var x=w=0,p=e;for(t=0;t<r.length;t++){var z=r[t];this.reversedOrder&&(z=r[r.length-t-1]);s=z.getBBox();var A;this.equalWidths?A=e+x*(v+m+this.markerLabelGap):(A=p,p=p+s.width+e+m);A+s.width>n&&(0<
109
- t&&0!=x)&&(w++,x=0,A=e,p=A+s.width+e+m,skipNewRow=!0);z.translate(A,(u+l)*w);x++;!isNaN(k)&&x>=k&&(x=0,w++);y.push(z)}s=y.getBBox();k=s.height+2*l-1;"left"==a||"right"==a?(h=s.width+2*e,g.style.width=h+b+c+"px"):h=h-b-c-1;c=AmCharts.polygon(this.container,[0,h,h,0],[0,0,k,k],this.backgroundColor,this.backgroundAlpha,1,this.borderColor,this.borderAlpha);q.push(c);q.translate(b,d);c.toBack();b=e;if("top"==a||"bottom"==a||"absolute"==a||"outside"==a)"center"==this.align?b=e+(h-s.width)/2:"right"==this.align&&
110
- (b=e+h-s.width);y.translate(b,l+1);this.titleHeight>k&&(k=this.titleHeight);a=k+d+f+1;0>a&&(a=0);g.style.height=Math.round(a)+"px"},createEntry:function(a){if(!1!==a.visibleInLegend){var b=this.chart,c=a.markerType;c||(c=this.markerType);var d=a.color,f=a.alpha;a.legendKeyColor&&(d=a.legendKeyColor());a.legendKeyAlpha&&(f=a.legendKeyAlpha());!0===a.hidden&&(d=this.markerDisabledColor);var e=this.createMarker(c,d,f);this.addListeners(e,a);f=this.container.set([e]);this.switchable&&f.setAttr("cursor",
111
- "pointer");var g=this.switchType;if(g){var h;h="x"==g?this.createX():this.createV();h.dItem=a;!0!==a.hidden?"x"==g?h.hide():h.show():"x"!=g&&h.hide();this.switchable||h.hide();this.addListeners(h,a);a.legendSwitch=h;f.push(h)}g=this.color;a.showBalloon&&(this.textClickEnabled&&void 0!==this.selectedColor)&&(g=this.selectedColor);this.useMarkerColorForLabels&&(g=d);!0===a.hidden&&(g=this.markerDisabledColor);var d=AmCharts.massReplace(this.labelText,{"[[title]]":a.title}),k=this.fontSize,l=this.markerSize;
112
- if(e&&l<=k){var m=0;if("bubble"==c||"circle"==c)m=l/2;c=m+this.ly-k/2+(k+2-l)/2;e.translate(m,c);h&&h.translate(m,c)}var n;d&&(d=AmCharts.fixNewLines(d),n=AmCharts.text(this.container,d,g,b.fontFamily,k,"start"),n.translate(this.lx,this.ly),f.push(n),b=n.getBBox().width,this.maxLabelWidth<b&&(this.maxLabelWidth=b));this.entries[this.index]=f;a.legendEntry=this.entries[this.index];a.legendLabel=n;this.index++}},addListeners:function(a,b){var c=this;a&&a.mouseover(function(){c.rollOverMarker(b)}).mouseout(function(){c.rollOutMarker(b)}).click(function(){c.clickMarker(b)})},
113
- rollOverMarker:function(a){this.switchable&&this.dispatch("rollOverMarker",a);this.dispatch("rollOverItem",a)},rollOutMarker:function(a){this.switchable&&this.dispatch("rollOutMarker",a);this.dispatch("rollOutItem",a)},clickMarker:function(a){this.switchable?!0===a.hidden?this.dispatch("showItem",a):this.dispatch("hideItem",a):this.textClickEnabled&&this.dispatch("clickMarker",a)},rollOverLabel:function(a){a.hidden||(this.textClickEnabled&&a.legendLabel&&a.legendLabel.attr({fill:this.rollOverColor}),
114
- this.dispatch("rollOverItem",a))},rollOutLabel:function(a){if(!a.hidden){if(this.textClickEnabled&&a.legendLabel){var b=this.color;void 0!==this.selectedColor&&a.showBalloon&&(b=this.selectedColor);this.useMarkerColorForLabels&&(b=a.lineColor,void 0===b&&(b=a.color));a.legendLabel.attr({fill:b})}this.dispatch("rollOutItem",a)}},clickLabel:function(a){this.textClickEnabled?a.hidden||this.dispatch("clickLabel",a):this.switchable&&(!0===a.hidden?this.dispatch("showItem",a):this.dispatch("hideItem",a))},
115
- dispatch:function(a,b){this.fire(a,{type:a,dataItem:b,target:this,chart:this.chart})},createValue:function(a){var b=this,c=b.fontSize;if(!1!==a.visibleInLegend){var d=b.maxLabelWidth;b.equalWidths||(b.valueAlign="left");"left"==b.valueAlign&&(d=a.legendEntry.getBBox().width);var f=d;if(b.valueText){var e=b.color;b.useMarkerColorForValues&&(e=a.color,a.legendKeyColor&&(e=a.legendKeyColor()));!0===a.hidden&&(e=b.markerDisabledColor);var g=b.valueText,d=d+b.lx+b.markerLabelGap+b.valueWidth,h="end";"left"==
116
- b.valueAlign&&(d-=b.valueWidth,h="start");e=AmCharts.text(b.container,g,e,b.chart.fontFamily,c,h);e.translate(d,b.ly);b.entries[b.index].push(e);f+=b.valueWidth+2*b.markerLabelGap;e.dItem=a;b.valueLabels.push(e)}b.index++;e=b.markerSize;e<c+7&&(e=c+7,AmCharts.VML&&(e+=3));c=b.container.rect(b.markerSize,0,f,e,0,0).attr({stroke:"none",fill:"#ffffff","fill-opacity":0.005});c.dItem=a;b.entries[b.index-1].push(c);c.mouseover(function(){b.rollOverLabel(a)}).mouseout(function(){b.rollOutLabel(a)}).click(function(){b.clickLabel(a)})}},
117
- createV:function(){var a=this.markerSize;return AmCharts.polygon(this.container,[a/5,a/2,a-a/5,a/2],[a/3,a-a/5,a/5,a/1.7],this.switchColor)},createX:function(){var a=this.markerSize-3,b={stroke:this.switchColor,"stroke-width":3},c=this.container,d=AmCharts.line(c,[3,a],[3,a]).attr(b),a=AmCharts.line(c,[3,a],[a,3]).attr(b);return this.container.set([d,a])},createMarker:function(a,b,c){var d=this.markerSize,f=this.container,e,g=this.markerBorderColor;g||(g=b);var h=this.markerBorderThickness,k=this.markerBorderAlpha;
118
- switch(a){case "square":e=AmCharts.polygon(f,[0,d,d,0],[0,0,d,d],b,c,h,g,k);break;case "circle":e=AmCharts.circle(f,d/2,b,c,h,g,k);e.translate(d/2,d/2);break;case "line":e=AmCharts.line(f,[0,d],[d/2,d/2],b,c,h);break;case "dashedLine":e=AmCharts.line(f,[0,d],[d/2,d/2],b,c,h,3);break;case "triangleUp":e=AmCharts.polygon(f,[0,d/2,d,d],[d,0,d,d],b,c,h,g,k);break;case "triangleDown":e=AmCharts.polygon(f,[0,d/2,d,d],[0,d,0,0],b,c,h,g,k);break;case "bubble":e=AmCharts.circle(f,d/2,b,c,h,g,k,!0),e.translate(d/
119
- 2,d/2)}return e},validateNow:function(){this.invalidateSize()},updateValues:function(){var a=this.valueLabels,b=this.chart,c;for(c=0;c<a.length;c++){var d=a[c],f=d.dItem;if(void 0!==f.type){var e=f.currentDataItem;if(e){var g=this.valueText;f.legendValueText&&(g=f.legendValueText);f=g;f=b.formatString(f,e);d.text(f)}else d.text(" ")}else e=b.formatString(this.valueText,f),d.text(e)}},renderFix:function(){if(!AmCharts.VML){var a=this.container;a&&a.renderFix()}},destroy:function(){this.div.innerHTML=
120
- "";AmCharts.remove(this.set)}});AmCharts.maps={};
121
- AmCharts.AmMap=AmCharts.Class({inherits:AmCharts.AmChart,construct:function(){this.version="3.3.3";this.svgNotSupported="This browser doesn't support SVG. Use Chrome, Firefox, Internet Explorer 9 or later.";this.createEvents("rollOverMapObject","rollOutMapObject","clickMapObject","selectedObjectChanged","homeButtonClicked","zoomCompleted","writeDevInfo","click");this.zoomDuration=1;this.zoomControl=new AmCharts.ZoomControl;this.fitMapToContainer=!0;this.mouseWheelZoomEnabled=this.backgroundZoomsToTop=!1;
122
- this.allowClickOnSelectedObject=this.useHandCursorOnClickableOjects=this.showBalloonOnSelectedObject=!0;this.showObjectsAfterZoom=this.wheelBusy=!1;this.zoomOnDoubleClick=this.useObjectColorForBalloon=!0;this.allowMultipleDescriptionWindows=!1;this.dragMap=this.centerMap=this.linesAboveImages=!0;this.colorSteps=5;this.showAreasInList=!0;this.showLinesInList=this.showImagesInList=!1;this.areasProcessor=new AmCharts.AreasProcessor(this);this.areasSettings=new AmCharts.AreasSettings;this.imagesProcessor=
123
- new AmCharts.ImagesProcessor(this);this.imagesSettings=new AmCharts.ImagesSettings;this.linesProcessor=new AmCharts.LinesProcessor(this);this.linesSettings=new AmCharts.LinesSettings;this.showDescriptionOnHover=!1;AmCharts.AmMap.base.construct.call(this);this.product="ammap";AmCharts.bezierX=3;AmCharts.bezierY=3;AmCharts.dx=0.5;AmCharts.dy=0.5},initChart:function(){this.zoomInstantly=!0;if(this.sizeChanged&&AmCharts.hasSVG&&this.chartCreated){this.container.setSize(this.realWidth,this.realHeight);
124
- this.resizeMap();this.drawBackground();this.redrawLabels();this.drawTitles();this.processObjects();this.rescaleObjects();var a=this.container;this.zoomControl.init(this,a);this.drawBg();var b=this.smallMap;b&&b.init(this,a);(b=this.valueLegend)&&b.init(this,a);this.sizeChanged=!1;this.zoomToLongLat(this.zLevelTemp,this.zLongTemp,this.zLatTemp,!0);this.previousWidth=this.realWidth;this.previousHeight=this.realHeight;this.drb();this.updateSmallMap();this.linkSet.toFront()}else(AmCharts.AmMap.base.initChart.call(this),
125
- AmCharts.hasSVG)?(this.dataChanged&&(this.parseData(),this.dispatchDataUpdated=!0,this.dataChanged=!1,a=this.legend)&&(a.position="absolute",a.invalidateSize()),this.addMouseWheel(),this.createDescriptionsDiv(),this.svgAreas=[],this.svgAreasById={},this.drawChart()):(document.createTextNode(this.svgNotSupported),this.chartDiv.style.textAlign="",this.chartDiv.setAttribute("class","ammapAlert"),this.chartDiv.innerHTML=this.svgNotSupported)},invalidateSize:function(){var a=this.zoomLongitude();isNaN(a)||
126
- (this.zLongTemp=a);a=this.zoomLatitude();isNaN(a)||(this.zLatTemp=a);a=this.zoomLevel();isNaN(a)||(this.zLevelTemp=a);AmCharts.AmMap.base.invalidateSize.call(this)},addMouseWheel:function(){var a=this;a.mouseWheelZoomEnabled&&window.addEventListener&&(window.addEventListener("DOMMouseScroll",function(b){a.handleWheel.call(a,b)},!1),document.addEventListener("mousewheel",function(b){a.handleWheel.call(a,b)},!1))},handleWheel:function(a){if(this.mouseIsOver){var b=0;a||(a=window.event);a.wheelDelta?
127
- b=a.wheelDelta/120:a.detail&&(b=-a.detail/3);b&&this.handleWheelReal(b);a.preventDefault&&a.preventDefault();a.returnValue=!1}},handleWheelReal:function(a){if(!this.wheelBusy){this.stopAnimation();var b=this.zoomLevel(),c=this.zoomControl,d=c.zoomFactor;this.wheelBusy=!0;a=AmCharts.fitToBounds(0<a?b*d:b/d,c.minZoomLevel,c.maxZoomLevel);d=this.mouseX/this.mapWidth;c=this.mouseY/this.mapHeight;d=(this.zoomX()-d)*(a/b)+d;b=(this.zoomY()-c)*(a/b)+c;this.zoomTo(a,d,b)}},addLegend:function(a){a.position=
128
- "absolute";a.autoMargins=!1;a.valueWidth=0;a.switchable=!1;AmCharts.AmMap.base.addLegend.call(this,a)},handleLegendEvent:function(){},createDescriptionsDiv:function(){if(!this.descriptionsDiv){var a=document.createElement("div");a.style.position="absolute";a.style.left=AmCharts.findPosX(this.div)+"px";a.style.top=AmCharts.findPosY(this.div)+"px";this.descriptionsDiv=a}this.div.appendChild(this.descriptionsDiv)},drawChart:function(){AmCharts.AmMap.base.drawChart.call(this);var a=this.dataProvider;
129
- AmCharts.extend(a,new AmCharts.MapData);AmCharts.extend(this.areasSettings,new AmCharts.AreasSettings);AmCharts.extend(this.imagesSettings,new AmCharts.ImagesSettings);AmCharts.extend(this.linesSettings,new AmCharts.LinesSettings);this.mapContainer=this.container.set();this.graphsSet.push(this.mapContainer);var b=a.mapVar;b?(this.svgData=b.svg,this.getBounds(),this.buildEverything()):(a=a.mapURL)&&this.loadXml(a);this.balloonsSet.toFront()},drawBg:function(){var a=this;AmCharts.remove(a.bgSet);var b=
130
- AmCharts.rect(a.container,a.realWidth,a.realHeight,"#000",0.001);b.click(function(){a.handleBackgroundClick()});a.bgSet=b;a.set.push(b)},buildEverything:function(){var a=this;if(0<a.realWidth&&0<a.realHeight){var b=a.container;a.zoomControl.init(this,b);a.drawBg();a.buildSVGMap();var c=a.smallMap;c&&c.init(a,b);c=a.dataProvider;isNaN(c.zoomX)&&(isNaN(c.zoomY)&&isNaN(c.zoomLatitude)&&isNaN(c.zoomLongitude))&&(a.centerMap?(c.zoomLatitude=a.coordinateToLatitude(a.mapHeight/2),c.zoomLongitude=a.coordinateToLongitude(a.mapWidth/
131
- 2)):(c.zoomX=0,c.zoomY=0),a.zoomInstantly=!0);a.selectObject(a.dataProvider);a.processAreas();(c=a.valueLegend)&&c.init(a,b);if(b=a.objectList)a.clearObjectList(),b.init(a);clearInterval(a.interval);a.interval=setInterval(function(){a.update.call(a)},AmCharts.updateRate);a.dispDUpd();a.linkSet.toFront();a.chartCreated=!0}else a.cleanChart()},hideGroup:function(a){this.showHideGroup(a,!1)},showGroup:function(a){this.showHideGroup(a,!0)},showHideGroup:function(a,b){this.showHideReal(this.imagesProcessor.allObjects,
132
- a,b);this.showHideReal(this.areasProcessor.allObjects,a,b);this.showHideReal(this.linesProcessor.allObjects,a,b)},showHideReal:function(a,b,c){var d;for(d=0;d<a.length;d++){var f=a[d];f.groupId==b&&(c?f.displayObject.show():f.displayObject.hide())}},update:function(){this.zoomControl.update()},animateMap:function(){var a=this;a.totalFrames=1E3*a.zoomDuration/AmCharts.updateRate;a.totalFrames+=1;a.frame=0;a.tweenPercent=0;setTimeout(function(){a.updateSize.call(a)},AmCharts.updateRate)},updateSize:function(){var a=
133
- this,b=a.totalFrames;a.frame<=b?(a.frame++,b=a.container.easeOutSine(0,a.frame,0,1,b),1<=b?(b=1,a.wheelBusy=!1):setTimeout(function(){a.updateSize.call(a)},AmCharts.updateRate)):(b=1,a.wheelBusy=!1);a.tweenPercent=b;a.rescaleMapAndObjects()},rescaleMapAndObjects:function(){var a=this.initialScale,b=this.initialX,c=this.initialY,d=this.tweenPercent;this.mapContainer.translate(b+(this.finalX-b)*d,c+(this.finalY-c)*d,a+(this.finalScale-a)*d);this.rescaleObjects();this.updateSmallMap();1==d&&(a={type:"zoomCompleted",
134
- chart:this},this.fire(a.type,a))},updateSmallMap:function(){this.smallMap&&this.smallMap.update()},rescaleObjects:function(){var a=this.mapContainer.scale,b=this.imagesProcessor.objectsToResize,c;for(c=0;c<b.length;c++){var d=b[c].image;d.translate(d.x,d.y,b[c].scale/a,!0)}b=this.linesProcessor;if(d=b.linesToResize)for(c=0;c<d.length;c++){var f=d[c];f.line.setAttr("stroke-width",f.thickness/a)}b=b.objectsToResize;for(c=0;c<b.length;c++)d=b[c],d.translate(d.x,d.y,1/a)},handleTouchStart:function(a){this.handleMouseMove(a);
135
- this.handleMouseDown(a)},handleTouchEnd:function(a){this.previousDistance=NaN;this.handleReleaseOutside(a)},handleMouseDown:function(a){if(this.chartCreated&&this.mouseIsOver&&(AmCharts.resetMouseOver(),this.mouseIsOver=!0,this.dragMap&&(this.stopAnimation(),this.isDragging=!0,this.mapContainerClickX=this.mapContainer.x,this.mapContainerClickY=this.mapContainer.y,this.panEventsEnabled||a&&a.preventDefault&&a.preventDefault()),a||(a=window.event),a.shiftKey&&!0===this.developerMode&&this.getDevInfo(),
136
- a&&a.touches)){var b=this.mouseX,c=this.mouseY,d=a.touches.item(1);d&&(a=d.pageX-AmCharts.findPosX(this.div),d=d.pageY-AmCharts.findPosY(this.div),this.middleXP=(b+(a-b)/2)/this.realWidth,this.middleYP=(c+(d-c)/2)/this.realHeight)}},stopDrag:function(){this.isDragging=!1},handleReleaseOutside:function(){this.isDragging=!1;this.zoomControl.draggerUp();this.mapWasDragged=!1;var a=this.mapContainer,b=this.mapContainerClickX,c=this.mapContainerClickY;isNaN(b)||isNaN(c)||!(2<Math.abs(a.x-b)||Math.abs(a.y-
137
- c))||(this.mapWasDragged=!0);!this.mouseIsOver||(this.mapWasDragged||this.skipClick)||(a={type:"click",x:this.mouseX,y:this.mouseY,chart:this},this.fire(a.type,a),this.skipClick=!1);this.mapContainerClickY=this.mapContainerClickX=NaN;this.objectWasClicked=!1;this.zoomOnDoubleClick&&this.mouseIsOver&&(a=(new Date).getTime(),200>a-this.previousClickTime&&20<a-this.previousClickTime&&this.doDoubleClickZoom(),this.previousClickTime=a)},handleTouchMove:function(a){this.handleMouseMove(a)},resetPinch:function(){this.mapWasPinched=
138
- !1},handleMouseMove:function(a){var b=this;AmCharts.AmMap.base.handleMouseMove.call(b,a);var c=b.previuosMouseX,d=b.previuosMouseY,f=b.mouseX,e=b.mouseY;isNaN(c)&&(c=f);isNaN(d)&&(d=e);b.mouse2X=NaN;b.mouse2Y=NaN;if(a&&a.touches){var g=a.touches.item(1);g&&(b.mouse2X=g.pageX-AmCharts.findPosX(b.div),b.mouse2Y=g.pageY-AmCharts.findPosY(b.div))}var g=b.mapContainer,h=b.mouse2X,k=b.mouse2Y;b.pinchTO&&clearTimeout(b.pinchTO);b.pinchTO=setTimeout(function(){b.resetPinch.call(b)},1E3);if(!isNaN(h)){b.isDragging=
139
- !1;a.preventDefault&&a.preventDefault();var h=Math.sqrt(Math.pow(h-f,2)+Math.pow(k-e,2)),l=b.previousDistance,k=Math.max(b.realWidth,b.realHeight);5>Math.abs(l-h)&&(b.isDragging=!0);if(!isNaN(l)){var m=5*Math.abs(l-h)/k,k=g.scale,k=l<h?k+k*m:k-k*m,l=b.zoomLevel(),n=b.middleXP,m=b.middleYP,v=b.realHeight/b.mapHeight,u=b.realWidth/b.mapWidth,n=(b.zoomX()-n*u)*(k/l)+n*u,m=(b.zoomY()-m*v)*(k/l)+m*v;0.1<Math.abs(k-l)&&(b.zoomTo(k,n,m,!0),b.mapWasPinched=!0,clearTimeout(b.pinchTO))}b.previousDistance=h}b.isDragging&&
140
- (b.hideBalloon(),g.translate(g.x+(f-c),g.y+(e-d),g.scale),b.updateSmallMap(),a&&a.preventDefault&&a.preventDefault());b.previuosMouseX=f;b.previuosMouseY=e},selectObject:function(a){var b=this;a||(a=b.dataProvider);var c=a.linkToObject;a.useTargetsZoomValues&&c&&(a.zoomX=c.zoomX,a.zoomY=c.zoomY,a.zoomLatitude=c.zoomLatitude,a.zoomLongitude=c.zoomLongitude,a.zoomLevel=c.zoomLevel);var d=b.selectedObject;d&&b.returnInitialColor(d);b.selectedObject=a;var f=!1;"MapArea"==a.objectType&&a.autoZoomReal&&
141
- (f=!0);if(c&&!f&&("string"==typeof c&&(c=b.getObjectById(c)),isNaN(a.zoomLevel)&&isNaN(a.zoomX)&&isNaN(a.zoomY))){if(b.extendMapData(c))return;b.selectObject(c);return}b.allowMultipleDescriptionWindows||b.closeAllDescriptions();clearTimeout(b.selectedObjectTimeOut);clearTimeout(b.processObjectsTimeOut);c=b.zoomDuration;!f&&isNaN(a.zoomLevel)&&isNaN(a.zoomX)&&isNaN(a.zoomY)?(b.showDescriptionAndGetUrl(),b.processObjects()):(b.selectedObjectTimeOut=setTimeout(function(){b.showDescriptionAndGetUrl.call(b)},
142
- 1E3*c+200),b.showObjectsAfterZoom?b.processObjectsTimeOut=setTimeout(function(){b.processObjects.call(b)},1E3*c+200):b.processObjects());c=a.displayObject;f=b.areasSettings.selectedOutlineColor;if(c){c.toFront();c.setAttr("stroke",a.outlineColorReal);var e=a.selectedColorReal;void 0!==e&&c.setAttr("fill",e);void 0!==f&&c.setAttr("stroke",f);if(e=a.imageLabel){var g=a.selectedLabelColorReal;void 0!==g&&e.setAttr("fill",g)}a.selectable||(c.setAttr("cursor","default"),e&&e.setAttr("cursor","default"))}else b.returnInitialColorReal(a);
143
- if(c=a.groupId)for(e=b.getGroupById(c),g=0;g<e.length;g++){var h=e[g];if(c=h.displayObject){var k=h.selectedColorReal;void 0!==f&&c.setAttr("stroke",f);void 0!==k?c.setAttr("fill",k):b.returnInitialColor(h)}}b.zoomToSelectedObject();d!=a&&(a={type:"selectedObjectChanged",chart:b},b.fire(a.type,a))},returnInitialColor:function(a,b){this.returnInitialColorReal(a);b&&(a.isFirst=!1);var c=a.groupId;if(c){var c=this.getGroupById(c),d;for(d=0;d<c.length;d++)this.returnInitialColorReal(c[d]),b&&(c[d].isFirst=
144
- !1)}},closeAllDescriptions:function(){this.descriptionsDiv.innerHTML=""},returnInitialColorReal:function(a){a.isOver=!1;var b=a.displayObject;if(b){b.toPrevious();if("MapImage"==a.objectType){var c=a.tempScale;isNaN(c)||b.translate(b.x,b.y,c,!0);a.tempScale=NaN}c=a.colorReal;a.showAsSelected&&(c=a.selectedColorReal);"bubble"==a.type&&(c=void 0);void 0!==c&&b.setAttr("fill",c);var d=a.image;d&&d.setAttr("fill",c);b.setAttr("stroke",a.outlineColorReal);"MapArea"==a.objectType&&b.setAttr("fill-opacity",
145
- a.alphaReal);(b=a.imageLabel)&&!a.labelInactive&&b.setAttr("fill",a.labelColorReal)}},zoomToRectangle:function(a,b,c,d){var f=this.realWidth,e=this.realHeight,g=this.mapSet.scale,h=this.zoomControl,f=AmCharts.fitToBounds(c/f>d/e?0.8*f/(c*g):0.8*e/(d*g),h.minZoomLevel,h.maxZoomLevel);this.zoomToMapXY(f,(a+c/2)*g,(b+d/2)*g)},zoomToLatLongRectangle:function(a,b,c,d){var f=this.dataProvider,e=this.zoomControl,g=Math.abs(c-a),h=Math.abs(b-d),k=Math.abs(f.rightLongitude-f.leftLongitude),f=Math.abs(f.topLatitude-
146
- f.bottomLatitude),e=AmCharts.fitToBounds(g/k>h/f?0.8*k/g:0.8*f/h,e.minZoomLevel,e.maxZoomLevel);this.zoomToLongLat(e,a+(c-a)/2,d+(b-d)/2)},getGroupById:function(a){var b=[];this.getGroup(this.imagesProcessor.allObjects,a,b);this.getGroup(this.linesProcessor.allObjects,a,b);this.getGroup(this.areasProcessor.allObjects,a,b);return b},zoomToGroup:function(a){a="object"==typeof a?a:this.getGroupById(a);var b,c,d,f,e;for(e=0;e<a.length;e++){var g=a[e].displayObject.getBBox(),h=g.y,k=g.y+g.height,l=g.x,
147
- g=g.x+g.width;if(h<b||isNaN(b))b=h;if(k>f||isNaN(f))f=k;if(l<c||isNaN(c))c=l;if(g>d||isNaN(d))d=g}a=this.mapSet.getBBox();c-=a.x;d-=a.x;f-=a.y;b-=a.y;this.zoomToRectangle(c,b,d-c,f-b)},getGroup:function(a,b,c){if(a){var d;for(d=0;d<a.length;d++){var f=a[d];f.groupId==b&&c.push(f)}}},zoomToStageXY:function(a,b,c,d){if(!this.objectWasClicked){var f=this.zoomControl;a=AmCharts.fitToBounds(a,f.minZoomLevel,f.maxZoomLevel);f=this.zoomLevel();c=this.coordinateToLatitude((c-this.mapContainer.y)/f);b=this.coordinateToLongitude((b-
148
- this.mapContainer.x)/f);this.zoomToLongLat(a,b,c,d)}},zoomToLongLat:function(a,b,c,d){b=this.longitudeToCoordinate(b);c=this.latitudeToCoordinate(c);this.zoomToMapXY(a,b,c,d)},zoomToMapXY:function(a,b,c,d){var f=this.mapWidth,e=this.mapHeight;this.zoomTo(a,-(b/f)*a+this.realWidth/f/2,-(c/e)*a+this.realHeight/e/2,d)},zoomToObject:function(a){var b=a.zoomLatitude,c=a.zoomLongitude,d=a.zoomLevel,f=this.zoomInstantly,e=a.zoomX,g=a.zoomY,h=this.realWidth,k=this.realHeight;isNaN(d)||(isNaN(b)||isNaN(c)?
149
- this.zoomTo(d,e,g,f):this.zoomToLongLat(d,c,b,f));this.zoomInstantly=!1;"MapImage"==a.objectType&&isNaN(a.zoomX)&&(isNaN(a.zoomY)&&isNaN(a.zoomLatitude)&&isNaN(a.zoomLongitude)&&!isNaN(a.latitude)&&!isNaN(a.longitude))&&this.zoomToLongLat(a.zoomLevel,a.longitude,a.latitude);"MapArea"==a.objectType&&(e=a.displayObject.getBBox(),b=this.mapScale,c=e.x*b,d=e.y*b,f=e.width*b,e=e.height*b,h=a.autoZoomReal&&isNaN(a.zoomLevel)?f/h>e/k?0.8*h/f:0.8*k/e:a.zoomLevel,k=this.zoomControl,h=AmCharts.fitToBounds(h,
150
- k.minZoomLevel,k.maxZoomLevel),isNaN(a.zoomX)&&(isNaN(a.zoomY)&&isNaN(a.zoomLatitude)&&isNaN(a.zoomLongitude))&&(a=this.mapSet.getBBox(),this.zoomToMapXY(h,-a.x*b+c+f/2,-a.y*b+d+e/2)))},zoomToSelectedObject:function(){this.zoomToObject(this.selectedObject)},zoomTo:function(a,b,c,d){var f=this.zoomControl;a=AmCharts.fitToBounds(a,f.minZoomLevel,f.maxZoomLevel);f=this.zoomLevel();isNaN(b)&&(b=this.realWidth/this.mapWidth,b=(this.zoomX()-0.5*b)*(a/f)+0.5*b);isNaN(c)&&(c=this.realHeight/this.mapHeight,
151
- c=(this.zoomY()-0.5*c)*(a/f)+0.5*c);this.stopAnimation();isNaN(a)||(f=this.mapContainer,this.initialX=f.x,this.initialY=f.y,this.initialScale=f.scale,this.finalX=this.mapWidth*b,this.finalY=this.mapHeight*c,this.finalScale=a,this.finalX!=this.initialX||this.finalY!=this.initialY||this.finalScale!=this.initialScale?d?(this.tweenPercent=1,this.rescaleMapAndObjects(),this.wheelBusy=!1):this.animateMap():this.wheelBusy=!1)},loadXml:function(a){var b;b=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");
152
- b.overrideMimeType&&b.overrideMimeType("text/xml");b.open("GET",a,!1);b.send();this.parseXMLObject(b.responseXML);this.svgData&&this.buildEverything()},stopAnimation:function(){this.frame=this.totalFrames},processObjects:function(){var a=this.container,b=this.stageObjectsContainer;b&&b.remove();this.stageObjectsContainer=b=a.set();this.trendLinesSet.push(b);var c=this.mapObjectsContainer;c&&c.remove();this.mapObjectsContainer=c=a.set();this.mapContainer.push(c);c.toFront();b.toFront();if(a=this.selectedObject)this.imagesProcessor.reset(),
153
- this.linesProcessor.reset(),this.linesAboveImages?(this.imagesProcessor.process(a),this.linesProcessor.process(a)):(this.linesProcessor.process(a),this.imagesProcessor.process(a));this.rescaleObjects()},processAreas:function(){this.areasProcessor.process(this.dataProvider)},buildSVGMap:function(){var a=this.svgData.g.path,b=this.container,c=b.set();void 0===a.length&&(a=[a]);var d;for(d=0;d<a.length;d++){var f=a[d],e=f.title,g=b.path(f.d);g.id=f.id;this.svgAreasById[f.id]={area:g,title:e};this.svgAreas.push(g);
154
- c.push(g)}this.mapSet=c;this.mapContainer.push(c);this.resizeMap()},addObjectEventListeners:function(a,b){var c=this;a.mouseup(function(){c.clickMapObject(b)}).mouseover(function(){c.rollOverMapObject(b)}).mouseout(function(){c.rollOutMapObject(b)}).touchend(function(){c.clickMapObject(b)}).touchstart(function(){c.rollOverMapObject(b)})},checkIfSelected:function(a){var b=this.selectedObject;if(b==a)return!0;if(b=b.groupId){var b=this.getGroupById(b),c;for(c=0;c<b.length;c++)if(b[c]==a)return!0}return!1},
155
- clearMap:function(){this.chartDiv.innerHTML="";this.clearObjectList()},clearObjectList:function(){var a=this.objectList;a&&(a.div.innerHTML="")},checkIfLast:function(a){if(a){var b=a.parentNode;if(b&&b.lastChild==a)return!0}return!1},showAsRolledOver:function(a){var b=a.displayObject;if(!a.showAsSelected&&b&&!a.isOver){b.node.onmouseout=function(){};b.node.onmouseover=function(){};b.node.onclick=function(){};a.isFirst||(b.toFront(),a.isFirst=!0);var c=a.rollOverColorReal,d;void 0!=c&&("MapImage"==
156
- a.objectType?(d=a.image)&&d.setAttr("fill",c):b.setAttr("fill",c));(d=a.imageLabel)&&!a.labelInactive&&(c=a.labelRollOverColorReal,void 0!=c&&d.setAttr("fill",c));c=a.rollOverOutlineColorReal;void 0!=c&&("MapImage"==a.objectType?(d=a.image)&&d.setAttr("stroke",c):b.setAttr("stroke",c));"MapArea"==a.objectType&&(d=a.rollOverAlphaReal,isNaN(d)||b.setAttr("fill-opacity",d));"MapImage"==a.objectType&&(d=a.rollOverScaleReal,isNaN(d)||(a.tempScale=b.scale,b.translate(b.x,b.y,b.scale*d,!0)));this.useHandCursorOnClickableOjects&&
157
- this.checkIfClickable(a)&&b.setAttr("cursor","pointer");this.addObjectEventListeners(b,a);a.isOver=!0}},rollOverMapObject:function(a,b){if(this.chartCreated){this.handleMouseMove();var c=this.previouslyHovered;c&&c!=a&&!1===this.checkIfSelected(c)&&(this.returnInitialColor(c,!0),this.previouslyHovered=null);if(!1===this.checkIfSelected(a)){if(c=a.groupId){var c=this.getGroupById(c),d;for(d=0;d<c.length;d++)c[d]!=a&&this.showAsRolledOver(c[d])}this.showAsRolledOver(a)}else(c=a.displayObject)&&c.setAttr("cursor",
158
- "default");if(this.showDescriptionOnHover)this.showDescription(a);else if((this.showBalloonOnSelectedObject||!this.checkIfSelected(a))&&!1!==b){var f=this.balloon;d=a.colorReal;c="";void 0!==d&&this.useObjectColorForBalloon||(d=f.fillColor);clearTimeout(this.hoverInt);(f=a.balloonTextReal)&&(c=this.formatString(f,a));this.balloonLabelFunction&&(c=this.balloonLabelFunction(a,this));c&&""!==c&&this.showBalloon(c,d,!0)}c={type:"rollOverMapObject",mapObject:a,chart:this};this.fire(c.type,c);this.previouslyHovered=
159
- a}},rollOutMapObject:function(a){this.hideBalloon();this.chartCreated&&a.isOver&&(this.checkIfSelected(a)||this.returnInitialColor(a),a={type:"rollOutMapObject",mapObject:a,chart:this},this.fire(a.type,a))},formatString:function(a,b){var c=this.numberFormatter,d=this.percentFormatter,f=b.title;void 0==f&&(f="");var e=b.value,e=isNaN(e)?"":AmCharts.formatNumber(e,c),c=b.percents,c=isNaN(c)?"":AmCharts.formatNumber(c,d),d=b.description;void 0==d&&(d="");var g=b.customData;void 0==g&&(g="");return a=
160
- AmCharts.massReplace(a,{"[[title]]":f,"[[value]]":e,"[[percent]]":c,"[[description]]":d,"[[customData]]":g})},clickMapObject:function(a){this.hideBalloon();this.chartCreated&&(!this.mapWasDragged&&this.checkIfClickable(a)&&!this.mapWasPinched)&&(this.selectObject(a),a={type:"clickMapObject",mapObject:a,chart:this},this.fire(a.type,a),this.objectWasClicked=!0)},checkIfClickable:function(a){if(!0===a.selectable||"MapArea"==a.objectType&&a.autoZoomReal||a.url||a.linkToObject||(0<a.images.length||0<a.lines.length)||
161
- (!isNaN(a.zoomLevel)||!isNaN(a.zoomX)||!isNaN(a.zoomY))||a.description)return!0;var b=this.allowClickOnSelectedObject;return this.selectedObject==a&&b?!0:!1},handleResize:function(){(AmCharts.isPercents(this.width)||AmCharts.isPercents(this.height))&&this.invalidateSize();this.renderFix()},resizeMap:function(){var a=this.mapSet;if(a)if(this.fitMapToContainer){var b=a.getBBox(),c=this.realWidth,d=this.realHeight,f=b.width,e=b.height,c=f/c>e/d?c/f:d/e;a.translate(-b.x*c,-b.y*c,c);this.mapScale=c;this.mapHeight=
 
 
 
 
 
162
  e*c;this.mapWidth=f*c}else b=group.transform.match(/([\-]?[\d.]+)/g),a.translate(b[0],b[1],b[2])},zoomIn:function(){this.skipClick=!0;var a=this.zoomLevel()*this.zoomControl.zoomFactor;this.zoomTo(a)},zoomOut:function(){this.skipClick=!0;var a=this.zoomLevel()/this.zoomControl.zoomFactor;this.zoomTo(a)},moveLeft:function(){this.skipClick=!0;var a=this.zoomX()+this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),a,this.zoomY())},moveRight:function(){this.skipClick=!0;var a=this.zoomX()-this.zoomControl.panStepSize;
163
  this.zoomTo(this.zoomLevel(),a,this.zoomY())},moveUp:function(){this.skipClick=!0;var a=this.zoomY()+this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),this.zoomX(),a)},moveDown:function(){this.skipClick=!0;var a=this.zoomY()-this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),this.zoomX(),a)},zoomX:function(){return this.mapSet?Math.round(1E4*this.mapContainer.x/this.mapWidth)/1E4:NaN},zoomY:function(){return this.mapSet?Math.round(1E4*this.mapContainer.y/this.mapHeight)/1E4:NaN},goHome:function(){this.selectObject(this.dataProvider);
164
  var a={type:"homeButtonClicked",chart:this};this.fire(a.type,a)},zoomLevel:function(){return Math.round(1E5*this.mapContainer.scale)/1E5},showDescriptionAndGetUrl:function(){var a=this.selectedObject;if(a){this.showDescription();var b=a.url;if(b)AmCharts.getURL(b,a.urlTarget);else if(b=a.linkToObject){if("string"==typeof b){var c=this.getObjectById(b);if(c){this.selectObject(c);return}}b&&a.passZoomValuesToTarget&&(b.zoomLatitude=this.zoomLatitude(),b.zoomLongitude=this.zoomLongitude(),b.zoomLevel=
165
- this.zoomLevel());this.extendMapData(b)||this.selectObject(b)}}},extendMapData:function(a){var b=a.objectType;if("MapImage"!=b&&"MapArea"!=b&&"MapLine"!=b)return AmCharts.extend(a,new AmCharts.MapData),this.dataProvider=a,this.zoomInstantly=!0,this.validateData(),!0},showDescription:function(a){a||(a=this.selectedObject);this.allowMultipleDescriptionWindows||this.closeAllDescriptions();if(a.description){var b=a.descriptionWindow;b&&b.close();b=new AmCharts.DescriptionWindow;a.descriptionWindow=b;
166
- var c=a.descriptionWindowWidth,d=a.descriptionWindowHeight,f=a.descriptionWindowX,e=a.descriptionWindowY;isNaN(f)&&(f=this.mouseX,f=f>this.realWidth/2?f-c-20:f+20);isNaN(e)&&(e=this.mouseY);b.maxHeight=d;b.show(this,this.descriptionsDiv,a.description,a.title);a=b.div.style;a.width=c+"px";a.maxHeight=d+"px";a.left=f+"px";a.top=e+"px"}},parseXMLObject:function(a){var b={root:{}};this.parseXMLNode(b,"root",a);this.svgData=b.root.svg;this.getBounds()},getBounds:function(){var a=this.dataProvider;try{var b=
167
  this.svgData.defs["amcharts:ammap"];a.leftLongitude=Number(b.leftLongitude);a.rightLongitude=Number(b.rightLongitude);a.topLatitude=Number(b.topLatitude);a.bottomLatitude=Number(b.bottomLatitude);a.projection=b.projection}catch(c){}},latitudeToCoordinate:function(a){var b,c=this.dataProvider;if(this.mapSet){b=c.topLatitude;var d=c.bottomLatitude;"mercator"==c.projection&&(a=this.mercatorLatitudeToCoordinate(a),b=this.mercatorLatitudeToCoordinate(b),d=this.mercatorLatitudeToCoordinate(d));b=(a-b)/
168
  (d-b)*this.mapHeight}return b},longitudeToCoordinate:function(a){var b,c=this.dataProvider;this.mapSet&&(b=c.leftLongitude,b=(a-b)/(c.rightLongitude-b)*this.mapWidth);return b},mercatorLatitudeToCoordinate:function(a){89.5<a&&(a=89.5);-89.5>a&&(a=-89.5);a=AmCharts.degreesToRadians(a);a=0.5*Math.log((1+Math.sin(a))/(1-Math.sin(a)));return AmCharts.radiansToDegrees(a/2)},zoomLatitude:function(){return this.coordinateToLatitude((-this.mapContainer.y+this.previousHeight/2)/this.zoomLevel())},zoomLongitude:function(){return this.coordinateToLongitude((-this.mapContainer.x+
169
  this.previousWidth/2)/this.zoomLevel())},getAreaCenterLatitude:function(a){a=a.displayObject.getBBox();var b=this.mapScale;a=-this.mapSet.getBBox().y*b+(a.y+a.height/2)*b;return this.coordinateToLatitude(a)},getAreaCenterLongitude:function(a){a=a.displayObject.getBBox();var b=this.mapScale;a=-this.mapSet.getBBox().x*b+(a.x+a.width/2)*b;return this.coordinateToLongitude(a)},coordinateToLatitude:function(a){var b;if(this.mapSet){var c=this.dataProvider,d=c.bottomLatitude,f=c.topLatitude;b=this.mapHeight;
170
- "mercator"==c.projection?(c=this.mercatorLatitudeToCoordinate(d),f=this.mercatorLatitudeToCoordinate(f),a=2*Math.atan(Math.exp(2*(a*(c-f)/b+f)*Math.PI/180))-0.5*Math.PI,b=AmCharts.radiansToDegrees(a)):b=a/b*(d-f)+f}return Math.round(1E6*b)/1E6},coordinateToLongitude:function(a){var b,c=this.dataProvider;this.mapSet&&(b=a/this.mapWidth*(c.rightLongitude-c.leftLongitude)+c.leftLongitude);return Math.round(1E6*b)/1E6},milesToPixels:function(a){var b=this.dataProvider;return a*(this.mapWidth/(b.rightLongitude-
171
- b.leftLongitude))/69.172},kilometersToPixels:function(a){var b=this.dataProvider;return a*(this.mapWidth/(b.rightLongitude-b.leftLongitude))/111.325},handleBackgroundClick:function(a){if(this.backgroundZoomsToTop&&!this.mapWasDragged){var b=this.dataProvider;if(this.checkIfClickable(b))this.clickMapObject(b);else{a=b.zoomX;var c=b.zoomY,d=b.zoomLongitude,f=b.zoomLatitude,b=b.zoomLevel;isNaN(a)||isNaN(c)||this.zoomTo(b,a,c);isNaN(d)||isNaN(f)||this.zoomToLongLat(b,d,f,!0)}}},parseXMLNode:function(a,
172
  b,c,d){void 0===d&&(d="");var f,e,g;if(c){var h=c.childNodes.length;for(f=0;f<h;f++){e=c.childNodes[f];var k=e.nodeName,l=e.nodeValue?this.trim(e.nodeValue):"",m=!1;e.attributes&&0<e.attributes.length&&(m=!0);if(0!==e.childNodes.length||""!==l||!1!==m)if(3==e.nodeType||4==e.nodeType){if(""!==l){e=0;for(g in a[b])a[b].hasOwnProperty(g)&&e++;e?a[b]["#text"]=l:a[b]=l}}else if(1==e.nodeType){var n;void 0!==a[b][k]?void 0===a[b][k].length?(n=a[b][k],a[b][k]=[],a[b][k].push(n),a[b][k].push({}),n=a[b][k][1]):
173
  "object"==typeof a[b][k]&&(a[b][k].push({}),n=a[b][k][a[b][k].length-1]):(a[b][k]={},n=a[b][k]);if(e.attributes&&e.attributes.length)for(l=0;l<e.attributes.length;l++)n[e.attributes[l].name]=e.attributes[l].value;void 0!==a[b][k].length?this.parseXMLNode(a[b][k],a[b][k].length-1,e,d+" "):this.parseXMLNode(a[b],k,e,d+" ")}}e=0;c="";for(g in a[b])"#text"==g?c=a[b][g]:e++;0===e&&void 0===a[b].length&&(a[b]=c)}},doDoubleClickZoom:function(){if(!this.mapWasDragged){var a=this.zoomLevel()*this.zoomControl.zoomFactor;
174
- this.zoomToStageXY(a,this.mouseX,this.mouseY)}},getDevInfo:function(){var a=this.zoomLevel(),a={chart:this,type:"writeDevInfo",zoomLevel:a,zoomX:this.zoomX(),zoomY:this.zoomY(),zoomLatitude:this.zoomLatitude(),zoomLongitude:this.zoomLongitude(),latitude:this.coordinateToLatitude((this.mouseY-this.mapContainer.y)/a),longitude:this.coordinateToLongitude((this.mouseX-this.mapContainer.x)/a),left:this.mouseX,top:this.mouseY,right:this.realWidth-this.mouseX,bottom:this.realHeight-this.mouseY,percentLeft:Math.round(100*
175
- (this.mouseX/this.realWidth))+"%",percentTop:Math.round(100*(this.mouseY/this.realHeight))+"%",percentRight:Math.round(100*((this.realWidth-this.mouseX)/this.realWidth))+"%",percentBottom:Math.round(100*((this.realHeight-this.mouseY)/this.realHeight))+"%"},b="zoomLevel:"+a.zoomLevel+", zoomLongitude:"+a.zoomLongitude+", zoomLatitude:"+a.zoomLatitude+"\n",b=b+("zoomX:"+a.zoomX+", zoomY:"+a.zoomY+"\n"),b=b+("latitude:"+a.latitude+", longitude:"+a.longitude+"\n"),b=b+("left:"+a.left+", top:"+a.top+"\n"),
176
- b=b+("right:"+a.right+", bottom:"+a.bottom+"\n"),b=b+('left:"'+a.percentLeft+'", top:"'+a.percentTop+'"\n'),b=b+('right:"'+a.percentRight+'", bottom:"'+a.percentBottom+'"\n');a.str=b;this.fire(a.type,a);return a},getXY:function(a,b,c){void 0!==a&&(-1!=String(a).indexOf("%")?(a=Number(a.split("%").join("")),c&&(a=100-a),a=Number(a)*b/100):c&&(a=b-a));return a},getObjectById:function(a){var b=this.dataProvider;if(b.areas){var c=this.getObject(a,b.areas);if(c)return c}if(c=this.getObject(a,b.images))return c;
177
- if(a=this.getObject(a,b.lines))return a},getObject:function(a,b){if(b){var c;for(c=0;c<b.length;c++){var d=b[c];if(d.id==a)return d;if(d.areas){var f=this.getObject(a,d.areas);if(f)return f}if(f=this.getObject(a,d.images))return f;if(d=this.getObject(a,d.lines))return d}}},parseData:function(){var a=this.dataProvider;this.processObject(a.areas,a,"area");this.processObject(a.images,a,"image");this.processObject(a.lines,a,"line")},processObject:function(a,b,c){if(a){var d;for(d=0;d<a.length;d++){var f=
178
- a[d];f.parentObject=b;"area"==c&&AmCharts.extend(f,new AmCharts.MapArea);"image"==c&&AmCharts.extend(f,new AmCharts.MapImage);"line"==c&&AmCharts.extend(f,new AmCharts.MapLine);f.areas&&this.processObject(f.areas,f,"area");f.images&&this.processObject(f.images,f,"image");f.lines&&this.processObject(f.lines,f,"line")}}},getX:function(a,b){return this.getXY(a,this.realWidth,b)},getY:function(a,b){return this.getXY(a,this.realHeight,b)},trim:function(a){if(a){var b;for(b=0;b<a.length;b++)if(-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(b))){a=
179
- a.substring(b);break}for(b=a.length-1;0<=b;b--)if(-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(b))){a=a.substring(0,b+1);break}return-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(0))?a:""}},drb:function(){var a=this.product,b=a+".com",c=window.location.hostname.split("."),d;2<=c.length&&(d=c[c.length-2]+"."+c[c.length-1]);
180
- AmCharts.remove(this.bbset);if(d!=b){var b=b+"/?utm_source=swf&utm_medium=demo&utm_campaign=jsDemo"+a,f="chart by ",c=145;"ammap"==a&&(f="tool by ",c=125);d=AmCharts.rect(this.container,c,20,"#FFFFFF",1);f=AmCharts.text(this.container,f+a+".com","#000000","Verdana",11,"start");f.translate(7,9);d=this.container.set([d,f]);"ammap"==a&&d.translate(this.realWidth-c,0);this.bbset=d;this.linkSet.push(d);d.setAttr("cursor","pointer");d.click(function(){window.location.href="http://"+b});for(a=0;a<d.length;a++)d[a].attr({cursor:"pointer"})}}});AmCharts.ZoomControl=AmCharts.Class({construct:function(){this.panStepSize=0.1;this.zoomFactor=2;this.maxZoomLevel=64;this.minZoomLevel=1;this.zoomControlEnabled=this.panControlEnabled=!0;this.buttonRollOverColor="#CC0000";this.buttonFillColor="#990000";this.buttonFillAlpha=1;this.buttonBorderColor="#FFFFFF";this.buttonBorderThickness=this.buttonBorderAlpha=1;this.buttonIconColor="#FFFFFF";this.buttonColorHover="#FF0000";this.gridColor=this.homeIconColor="#FFFFFF";this.gridBackgroundColor="#000000";
181
- this.gridBackgroundAlpha=0.15;this.gridAlpha=1;this.buttonSize=18;this.iconSize=11;this.buttonCornerRadius=0;this.gridHeight=150;this.top=this.left=10},init:function(a,b){var c=this;c.chart=a;AmCharts.remove(c.set);var d=b.set();d.translate(a.getX(c.left),a.getY(c.top));var f=c.buttonSize,e=c.buttonFillColor,g=c.buttonFillAlpha,h=c.buttonBorderThickness,k=c.buttonBorderColor,l=c.buttonBorderAlpha,m=c.buttonCornerRadius,n=c.buttonRollOverColor,v=c.gridHeight,u=c.zoomFactor,y=c.minZoomLevel,q=c.maxZoomLevel;
182
- c.previousDY=NaN;var r;if(c.zoomControlEnabled){r=b.set();d.push(r);c.set=d;c.zoomSet=r;var s=AmCharts.rect(b,f+6,v+2*f+6,c.gridBackgroundColor,c.gridBackgroundAlpha,0,0,0,4);s.translate(-3,-3);s.mouseup(function(){c.handleBgUp()});r.push(s);s=new AmCharts.SimpleButton;s.setIcon(a.pathToImages+"plus.gif",c.iconSize);s.setClickHandler(a.zoomIn,a);s.init(b,f,f,e,g,h,k,l,m,n);r.push(s.set);s=new AmCharts.SimpleButton;s.setIcon(a.pathToImages+"minus.gif",c.iconSize);s.setClickHandler(a.zoomOut,a);s.init(b,
183
- f,f,e,g,h,k,l,m,n);s.set.translate(0,v+f);r.push(s.set);var t=Math.log(q/y)/Math.log(u)+1,s=v/t,w;for(w=1;w<t;w++){var x=f+w*s,x=AmCharts.line(b,[1,f-2],[x,x],c.gridColor,c.gridAlpha,1);r.push(x)}t=new AmCharts.SimpleButton;t.setDownHandler(c.draggerDown,c);t.setClickHandler(c.draggerUp,c);t.init(b,f,s,e,g,h,k,l,m,n);r.push(t.set);c.dragger=t.set;c.previousY=NaN;v-=s;y=Math.log(y/100)/Math.log(u);u=Math.log(q/100)/Math.log(u);c.realStepSize=v/(u-y);c.realGridHeight=v;c.stepMax=u}c.panControlEnabled&&
184
- (u=b.set(),d.push(u),r&&r.translate(f,4*f),r=new AmCharts.SimpleButton,r.setIcon(a.pathToImages+"panLeft.gif",c.iconSize),r.setClickHandler(a.moveLeft,a),r.init(b,f,f,e,g,h,k,l,m,n),r.set.translate(0,f),u.push(r.set),r=new AmCharts.SimpleButton,r.setIcon(a.pathToImages+"panRight.gif",c.iconSize),r.setClickHandler(a.moveRight,a),r.init(b,f,f,e,g,h,k,l,m,n),r.set.translate(2*f,f),u.push(r.set),r=new AmCharts.SimpleButton,r.setIcon(a.pathToImages+"panUp.gif",c.iconSize),r.setClickHandler(a.moveUp,a),
185
- r.init(b,f,f,e,g,h,k,l,m,n),r.set.translate(f,0),u.push(r.set),r=new AmCharts.SimpleButton,r.setIcon(a.pathToImages+"panDown.gif",c.iconSize),r.setClickHandler(a.moveDown,a),r.init(b,f,f,e,g,h,k,l,m,n),r.set.translate(f,2*f),u.push(r.set),g=new AmCharts.SimpleButton,g.setIcon(a.pathToImages+"homeIcon.gif",c.iconSize),g.setClickHandler(a.goHome,a),g.init(b,f,f,e,0,0,k,0,m,n),g.set.translate(f,f),u.push(g.set),d.push(u))},draggerDown:function(){this.chart.stopDrag();this.isDragging=!0},draggerUp:function(){this.isDragging=
 
186
  !1},handleBgUp:function(){var a=this.chart,b=100*Math.pow(this.zoomFactor,this.stepMax-(a.mouseY-this.zoomSet.y-this.set.y-this.buttonSize-this.realStepSize/2)/this.realStepSize);a.zoomTo(b)},update:function(){var a,b=this.zoomFactor,c=this.realStepSize,d=this.stepMax,f=this.dragger,e=this.buttonSize,g=this.chart;this.isDragging?(g.stopDrag(),a=f.y+(g.mouseY-this.previousY),a=AmCharts.fitToBounds(a,e,this.realGridHeight+e),c=100*Math.pow(b,d-(a-e)/c),g.zoomTo(c,NaN,NaN,!0)):(a=Math.log(g.zoomLevel()/
187
  100)/Math.log(b),a=(d-a)*c+e);this.previousY=g.mouseY;this.previousDY!=a&&f&&(f.translate(0,a),this.previousDY=a)}});AmCharts.SimpleButton=AmCharts.Class({construct:function(){},init:function(a,b,c,d,f,e,g,h,k,l){var m=this;m.rollOverColor=l;m.color=d;l=a.set();m.set=l;d=AmCharts.rect(a,b,c,d,f,e,g,h,k);l.push(d);if(f=m.iconPath)e=m.iconSize,a=a.image(f,(b-e)/2,(c-e)/2,e,e),l.push(a),a.mousedown(function(){m.handleDown()}).mouseup(function(){m.handleUp()}).mouseover(function(){m.handleOver()}).mouseout(function(){m.handleOut()});d.mousedown(function(){m.handleDown()}).mouseup(function(){m.handleUp()}).mouseover(function(){m.handleOver()}).mouseout(function(){m.handleOut()});
188
  m.bg=d},setIcon:function(a,b){this.iconPath=a;this.iconSize=b},setClickHandler:function(a,b){this.clickHandler=a;this.scope=b},setDownHandler:function(a,b){this.downHandler=a;this.scope=b},handleUp:function(){var a=this.clickHandler;a&&a.call(this.scope)},handleDown:function(){var a=this.downHandler;a&&a.call(this.scope)},handleOver:function(){this.bg.setAttr("fill",this.rollOverColor)},handleOut:function(){this.bg.setAttr("fill",this.color)}});AmCharts.SmallMap=AmCharts.Class({construct:function(){this.mapColor="#e6e6e6";this.rectangleColor="#FFFFFF";this.top=this.right=10;this.minimizeButtonWidth=16;this.backgroundColor="#9A9A9A";this.backgroundAlpha=1;this.borderColor="#FFFFFF";this.borderThickness=3;this.borderAlpha=1;this.size=0.2},init:function(a,b){var c=this;c.chart=a;c.container=b;c.width=a.realWidth*c.size;c.height=a.realHeight*c.size;AmCharts.remove(c.set);var d=b.set();c.set=d;var f=b.set();c.allSet=f;d.push(f);c.buildSVGMap();
189
  var e=c.borderThickness,g=c.borderColor,h=AmCharts.rect(b,c.width+e,c.height+e,c.backgroundColor,c.backgroundAlpha,e,g,c.borderAlpha);h.translate(-e/2,-e/2);f.push(h);h.toBack();var k,l,h=c.minimizeButtonWidth,m=new AmCharts.SimpleButton;m.setIcon(a.pathToImages+"arrowDown.gif",h);m.setClickHandler(c.minimize,c);m.init(b,h,h,g,1,1,g,1);m=m.set;c.downButtonSet=m;d.push(m);var n=new AmCharts.SimpleButton;n.setIcon(a.pathToImages+"arrowUp.gif",h);n.setClickHandler(c.maximize,c);n.init(b,h,h,g,1,1,g,
190
- 1);g=n.set;c.upButtonSet=g;g.hide();d.push(g);var v,u;isNaN(c.top)||(k=a.getY(c.top)+e,u=0);isNaN(c.bottom)||(k=a.getY(c.bottom,!0)-c.height-e,u=c.height-h+e/2);isNaN(c.left)||(l=a.getX(c.left)+e,v=-e/2);isNaN(c.right)||(l=a.getX(c.right,!0)-c.width-e,v=c.width-h+e/2);e=b.set();e.clipRect(1,1,c.width,c.height);f.push(e);c.rectangleC=e;d.translate(l,k);m.translate(v,u);g.translate(v,u);f.mouseup(function(){c.handleMouseUp()});c.drawRectangle()},minimize:function(){this.downButtonSet.hide();this.upButtonSet.show();
191
  this.allSet.hide()},maximize:function(){this.downButtonSet.show();this.upButtonSet.hide();this.allSet.show()},buildSVGMap:function(){var a=this.chart,b={fill:this.mapColor,stroke:this.mapColor,"stroke-opacity":1},c=a.svgData.g.path,d=this.container,f=d.set(),e;for(e=0;e<c.length;e++){var g=d.path(c[e].d).attr(b);f.push(g)}this.allSet.push(f);b=f.getBBox();c=this.size*a.mapScale;d=-b.x*c;e=-b.y*c;var h=g=0;a.centerMap&&(g=(this.width-b.width*c)/2,h=(this.height-b.height*c)/2);this.mapWidth=b.width*
192
  c;this.mapHeight=b.height*c;this.dx=g;this.dy=h;f.translate(d+g,e+h,c)},update:function(){var a=this.chart,b=a.zoomLevel(),c=this.width,d=a.mapContainer,a=c/(a.realWidth*b),c=c/b,b=this.height/b,f=this.rectangle;f.translate(-d.x*a+this.dx,-d.y*a+this.dy);0<c&&0<b&&(f.setAttr("width",c),f.setAttr("height",b));this.rWidth=c;this.rHeight=b},drawRectangle:function(){var a=this.rectangle;AmCharts.remove(a);a=AmCharts.rect(this.container,10,10,"#000",0,1,this.rectangleColor,1);this.rectangleC.push(a);this.rectangle=
193
- a},handleMouseUp:function(){var a=this.chart,b=a.zoomLevel();a.zoomTo(b,-((a.mouseX-this.set.x-this.dx-this.rWidth/2)/this.mapWidth)*b,-((a.mouseY-this.set.y-this.dy-this.rHeight/2)/this.mapHeight)*b)}});AmCharts.AreasProcessor=AmCharts.Class({construct:function(a){this.chart=a},process:function(a){this.updateAllAreas();this.allObjects=[];a=a.areas;var b=this.chart,c=b.areasSettings,d=a.length,f,e,g=0,h=b.svgAreasById,k=c.color,l=c.alpha,m=c.outlineThickness,n=c.rollOverColor,v=c.selectedColor,u=c.rollOverAlpha,y=c.outlineColor,q=c.outlineAlpha,r=c.balloonText,s=c.selectable,t=c.rollOverOutlineColor,w=0,x=0;for(f=0;f<d;f++)e=a[f],e=e.value,w<e&&(w=e),x>e&&(x=e),isNaN(e)||(g+=Math.abs(e));isNaN(b.minValue)||
194
- (x=b.minValue);isNaN(b.maxValue)||(w=b.maxValue);b.maxValueReal=w;b.minValueReal=x;for(f=0;f<d;f++)e=a[f],isNaN(e.value)?e.percents=void 0:e.percents=100*((e.value-x)/g);for(f=0;f<d;f++){e=a[f];this.allObjects.push(e);e.chart=b;e.baseSettings=c;e.autoZoomReal=void 0==e.autoZoom?c.autoZoom:e.autoZoom;g=e.color;void 0==g&&(g=k);var p=e.alpha;isNaN(p)&&(p=l);var z=e.rollOverAlpha;isNaN(z)&&(z=u);isNaN(z)&&(z=p);var A=e.rollOverColor;void 0==A&&(A=n);var D=e.selectedColor;void 0==D&&(D=v);var E=e.balloonText;
195
- E||(E=r);if(void 0!=c.colorSolid&&!isNaN(e.value)){var B=(e.value-x)/(w-x),C=100/(b.colorSteps-1),B=Math.ceil(100*B/C)*C/100;e.colorReal=AmCharts.getColorFade(g,c.colorSolid,B)}void 0!=e.color&&(e.colorReal=e.color);void 0==e.selectable&&(e.selectable=s);void 0==e.colorReal&&(e.colorReal=k);B=e.outlineColor;void 0==B&&(B=y);C=e.outlineAlpha;isNaN(C)&&(C=q);var F=e.outlineThickness;isNaN(F)&&(F=m);var K=e.rollOverOutlineColor;void 0==K&&(K=t);e.alphaReal=p;e.rollOverColorReal=A;e.rollOverAlphaReal=
196
- z;e.balloonTextReal=E;e.selectedColorReal=D;e.outlineColorReal=B;e.outlineAlphaReal=C;e.rollOverOutlineColorReal=K;AmCharts.processDescriptionWindow(c,e);if(A=h[e.id])if(z=A.area,(A=A.title)&&!e.title&&(e.title=A),z){e.displayObject=z;e.mouseEnabled&&b.addObjectEventListeners(z,e);var H;void 0!=g&&(H=g);void 0!=e.colorReal&&(H=e.showAsSelected||b.selectedObject==e?e.selectedColorReal:e.colorReal);z.setAttr("fill",H);z.setAttr("stroke",B);z.setAttr("stroke-opacity",C);z.setAttr("stroke-width",F);z.setAttr("fill-opacity",
197
- p)}}},updateAllAreas:function(){var a=this.chart,b=a.areasSettings,c=b.unlistedAreasColor,d=b.unlistedAreasAlpha,f=b.unlistedAreasOutlineColor,e=b.unlistedAreasOutlineAlpha,g=a.svgAreas,a=a.dataProvider,h=a.areas,k={},l;for(l=0;l<h.length;l++)k[h[l].id]=h[l];for(l=0;l<g.length;l++)if(h=g[l],void 0!=c&&h.setAttr("fill",c),isNaN(d)||h.setAttr("fill-opacity",d),void 0!=f&&h.setAttr("stroke",f),isNaN(e)||h.setAttr("stroke-opacity",e),h.setAttr("stroke-width",b.outlineThickness),a.getAreasFromMap&&!k[h.id]){var m=
198
- new AmCharts.MapArea;m.parentObject=a;m.id=h.id;a.areas.push(m)}}});AmCharts.AreasSettings=AmCharts.Class({construct:function(){this.alpha=1;this.autoZoom=!1;this.balloonText="[[title]]";this.color="#FFCC00";this.colorSolid="#990000";this.unlistedAreasAlpha=1;this.unlistedAreasColor="#DDDDDD";this.outlineColor="#FFFFFF";this.outlineAlpha=1;this.outlineThickness=0.5;this.selectedColor=this.rollOverOutlineColor="#CC0000";this.unlistedAreasOutlineColor="#FFFFFF";this.unlistedAreasOutlineAlpha=1;this.descriptionWindowWidth=250}});AmCharts.ImagesProcessor=AmCharts.Class({construct:function(a){this.chart=a;this.reset()},process:function(a){var b=a.images,c;for(c=0;c<b.length;c++)this.createImage(b[c],c);a.parentObject&&a.remainVisible&&this.process(a.parentObject)},createImage:function(a,b){var c=this.chart,d=c.container,f=c.mapObjectsContainer,e=c.stageObjectsContainer,g=c.imagesSettings;a.remove();var h=g.color,k=g.alpha,l=g.rollOverColor,m=g.selectedColor,n=g.balloonText,v=g.outlineColor,u=g.outlineAlpha,y=g.outlineThickness,
199
- q=g.selectedScale,r=g.labelPosition,s=g.labelColor,t=g.labelFontSize,w=g.labelRollOverColor,x=g.selectedLabelColor;a.index=b;a.chart=c;a.baseSettings=c.imagesSettings;var p=d.set();a.displayObject=p;var z=a.color;void 0==z&&(z=h);h=a.alpha;isNaN(h)&&(h=k);k=a.outlineAlpha;isNaN(k)&&(k=u);u=a.rollOverColor;void 0==u&&(u=l);l=a.selectedColor;void 0==l&&(l=m);(m=a.balloonText)||(m=n);n=a.outlineColor;void 0==n&&(n=v);void 0==n&&(n=z);v=a.outlineThickness;isNaN(v)&&(v=y);(y=a.labelPosition)||(y=r);r=
200
- a.labelColor;void 0==r&&(r=s);s=a.labelRollOverColor;void 0==s&&(s=w);w=a.selectedLabelColor;void 0==w&&(w=x);x=a.labelFontSize;isNaN(x)&&(x=t);t=a.selectedScale;isNaN(t)&&(t=q);isNaN(a.rollOverScale);a.colorReal=z;a.alphaReal=h;a.rollOverColorReal=u;a.balloonTextReal=m;a.selectedColorReal=l;a.labelColorReal=r;a.labelRollOverColorReal=s;a.selectedLabelColorReal=w;a.labelFontSizeReal=x;a.labelPositionReal=y;a.selectedScaleReal=t;a.rollOverScaleReal=t;AmCharts.processDescriptionWindow(g,a);a.centeredReal=
201
- void 0==a.centered?g.centered:a.centered;x=a.type;w=a.imageURL;u=a.svgPath;s=a.width;l=a.height;g=a.scale;isNaN(a.percentWidth)||(s=a.percentWidth/100*c.realWidth);isNaN(a.percentHeight)||(l=a.percentHeight/100*c.realHeight);var A;w||(x||u)||(x="circle",s=1,k=h=0);r=q=0;t=a.selectedColorReal;x?(isNaN(s)&&(s=10),isNaN(l)&&(l=10),"kilometers"==a.widthAndHeightUnits&&(s=c.kilometersToPixels(a.width),l=c.kilometersToPixels(a.height)),"miles"==a.widthAndHeightUnits&&(s=c.milesToPixels(a.width),l=c.milesToPixels(a.height)),
202
- A=this.createPredefinedImage(z,n,v,x,s,l),r=q=0,a.centeredReal&&(q=isNaN(a.right)?-s/2:s/2,r=isNaN(a.bottom)?-l/2:l/2),A.translate(q,r)):w?(isNaN(s)&&(s=10),isNaN(l)&&(l=10),A=d.image(w,0,0,s,l),A.node.setAttribute("preserveAspectRatio","none"),A.setAttr("opacity",h),a.centeredReal&&(q=isNaN(a.right)?-s/2:s/2,r=isNaN(a.bottom)?-l/2:l/2,A.translate(q,r))):u&&(A=d.path(u),n=A.getBBox(),a.centeredReal?(q=-n.x*g-n.width*g/2,isNaN(a.right)||(q=-q),r=-n.y*g-n.height*g/2,isNaN(a.bottom)||(r=-r)):q=r=0,A.translate(q,
203
- r,g),A.x=q,A.y=r);A&&(p.push(A),a.image=A,A.setAttr("stroke-opacity",k),A.setAttr("fill-opacity",h),A.setAttr("fill",z));!a.showAsSelected&&c.selectedObject!=a||void 0==t||A.setAttr("fill",t);z=null;void 0!=a.label&&(z=AmCharts.text(d,a.label,a.labelColorReal,c.fontFamily,a.labelFontSizeReal,a.labelAlign),a.imageLabel=z,!a.labelInactive&&a.mouseEnabled&&c.addObjectEventListeners(z,a),p.push(z));isNaN(a.latitude)||isNaN(a.longitude)?e.push(p):f.push(p);p&&(p.rotation=a.rotation);this.updateSizeAndPosition(a);
204
- a.mouseEnabled&&c.addObjectEventListeners(p,a)},updateSizeAndPosition:function(a){var b=this.chart,c=a.displayObject,d=b.getX(a.left),f=b.getY(a.top),e=a.image.getBBox();isNaN(a.right)||(d=b.getX(a.right,!0)-e.width*a.scale);isNaN(a.bottom)||(f=b.getY(a.bottom,!0)-e.height*a.scale);var g=a.longitude,h=a.latitude,e=this.objectsToResize;this.allSvgObjects.push(c);this.allObjects.push(a);var k=a.imageLabel;if(!isNaN(d)&&!isNaN(f))c.translate(d,f);else if(!isNaN(h)&&!isNaN(g)&&(d=b.longitudeToCoordinate(g),
205
- f=b.latitudeToCoordinate(h),c.translate(d,f,NaN,!0),a.fixedSize)){d=1;if(a.showAsSelected||b.selectedObject==a)d=a.selectedScaleReal;e.push({image:c,scale:d})}this.positionLabel(k,a,a.labelPositionReal)},positionLabel:function(a,b,c){if(a){var d=b.image,f=0,e=0,g=0,h=0;d&&(h=d.getBBox(),e=d.y,f=d.x,g=h.width,h=h.height,b.svgPath&&(g*=b.scale,h*=b.scale));var k=a.getBBox(),d=k.width,k=k.height;"right"==c&&(f+=g+d/2+5,e+=h/2-2);"left"==c&&(f+=-d/2-5,e+=h/2-2);"top"==c&&(e-=k/2+3,f+=g/2);"bottom"==c&&
206
- (e+=h+k/2,f+=g/2);"middle"==c&&(f+=g/2,e+=h/2);a.translate(f+b.labelShiftX,e+b.labelShiftY)}},createPredefinedImage:function(a,b,c,d,f,e){var g=this.chart.container,h;switch(d){case "circle":h=AmCharts.circle(g,f/2,a,1,c,b,1);break;case "rectangle":h=AmCharts.rect(g,f,e,a,1,c,b,1);h.translate(-f/2,-e/2);break;case "bubble":h=AmCharts.circle(g,f/2,a,1,c,b,1,!0)}return h},reset:function(){this.objectsToResize=[];this.allSvgObjects=[];this.allObjects=[];this.allLabels=[]}});AmCharts.ImagesSettings=AmCharts.Class({construct:function(){this.balloonText="[[title]]";this.alpha=1;this.borderAlpha=0;this.borderThickness=1;this.labelPosition="right";this.labelColor="#000000";this.labelFontSize=11;this.color="#000000";this.labelRollOverColor="#00CC00";this.centered=!0;this.rollOverScale=this.selectedScale=1;this.descriptionWindowWidth=250}});AmCharts.LinesProcessor=AmCharts.Class({construct:function(a){this.chart=a;this.reset()},process:function(a){var b=a.lines,c=this.chart,d=c.linesSettings,f=this.objectsToResize,e=c.mapObjectsContainer,g=c.stageObjectsContainer,h=d.thickness,k=d.dashLength,l=d.arrow,m=d.arrowSize,n=d.arrowColor,v=d.arrowAlpha,u=d.color,y=d.alpha,q=d.rollOverColor,r=d.selectedColor,s=d.rollOverAlpha,t=d.balloonText,w=c.container,x;for(x=0;x<b.length;x++){var p=b[x];p.chart=c;p.baseSettings=d;var z=w.set();p.displayObject=
207
- z;this.allSvgObjects.push(z);this.allObjects.push(p);p.mouseEnabled&&c.addObjectEventListeners(z,p);if(p.remainVisible||c.selectedObject==p.parentObject){var A=p.thickness;isNaN(A)&&(A=h);var D=p.dashLength;isNaN(D)&&(D=k);var E=p.color;void 0==E&&(E=u);var B=p.alpha;isNaN(B)&&(B=y);var C=p.rollOverAlpha;isNaN(C)&&(C=s);isNaN(C)&&(C=B);var F=p.rollOverColor;void 0==F&&(F=q);var K=p.selectedColor;void 0==K&&(K=r);var H=p.balloonText;H||(H=t);var I=p.arrow;if(!I||"none"==I&&"none"!=l)I=l;var L=p.arrowColor;
208
- void 0==L&&(L=n);void 0==L&&(L=E);var M=p.arrowAlpha;isNaN(M)&&(M=v);isNaN(M)&&(M=B);var J=p.arrowSize;isNaN(J)&&(J=m);p.alphaReal=B;p.colorReal=E;p.rollOverColorReal=F;p.rollOverAlphaReal=C;p.balloonTextReal=H;p.selectedColorReal=K;p.thicknessReal=A;AmCharts.processDescriptionWindow(d,p);var C=this.processCoordinates(p.x,c.realWidth),F=this.processCoordinates(p.y,c.realHeight),P=p.longitudes,H=p.latitudes,R=P.length,N;if(0<R)for(C=[],N=0;N<R;N++)C.push(c.longitudeToCoordinate(P[N]));R=H.length;if(0<
209
- R)for(F=[],N=0;N<R;N++)F.push(c.latitudeToCoordinate(H[N]));if(0<C.length){AmCharts.dx=0;AmCharts.dy=0;P=AmCharts.line(w,C,F,E,1,A,D,!1,!1,!0);D=AmCharts.line(w,C,F,E,0.001,3,D,!1,!1,!0);AmCharts.dx=0.5;AmCharts.dy=0.5;z.push(P);z.push(D);z.setAttr("opacity",B);if("none"!=I){var G,O,Q;if("end"==I||"both"==I)B=C[C.length-1],D=F[F.length-1],1<C.length?(E=C[C.length-2],G=F[F.length-2]):(E=B,G=D),G=180*Math.atan((D-G)/(B-E))/Math.PI,O=B,Q=D,G=0>B-E?G-90:G+90;"both"==I&&(B=AmCharts.polygon(w,[-J/2,0,J/
210
- 2],[1.5*J,0,1.5*J],L,M,1,L,M),z.push(B),B.translate(O,Q),B.rotate(G),p.fixedSize&&f.push(B));if("start"==I||"both"==I)B=C[0],Q=F[0],1<C.length?(D=C[1],O=F[1]):(D=B,O=Q),G=180*Math.atan((Q-O)/(B-D))/Math.PI,O=B,G=0>B-D?G-90:G+90;"middle"==I&&(B=C[C.length-1],D=F[F.length-1],1<C.length?(E=C[C.length-2],G=F[F.length-2]):(E=B,G=D),O=E+(B-E)/2,Q=G+(D-G)/2,G=180*Math.atan((D-G)/(B-E))/Math.PI,G=0>B-E?G-90:G+90);B=AmCharts.polygon(w,[-J/2,0,J/2],[1.5*J,0,1.5*J],L,M,1,L,M);z.push(B);B.translate(O,Q);B.rotate(G);
211
- p.fixedSize&&f.push(B)}p.fixedSize&&P&&this.linesToResize.push({line:P,thickness:A});p.showAsSelected&&!isNaN(K)&&P.setAttr("stroke",K);0<H.length?e.push(z):g.push(z)}}}a.parentObject&&a.remainVisible&&this.process(a.parentObject)},processCoordinates:function(a,b){var c=[],d;for(d=0;d<a.length;d++){var f=a[d],e=Number(f);isNaN(e)&&(e=Number(f.replace("%",""))*b/100);isNaN(e)||c.push(e)}return c},reset:function(){this.objectsToResize=[];this.allSvgObjects=[];this.allObjects=[];this.linesToResize=[]}});AmCharts.LinesSettings=AmCharts.Class({construct:function(){this.balloonText="[[title]]";this.thickness=1;this.dashLength=0;this.arrowSize=10;this.arrowAlpha=1;this.arrow="none";this.color="#990000";this.descriptionWindowWidth=250}});AmCharts.MapObject=AmCharts.Class({construct:function(){this.fixedSize=this.mouseEnabled=!0;this.images=[];this.lines=[];this.areas=[];this.remainVisible=!0;this.passZoomValuesToTarget=!1}});AmCharts.MapArea=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.objectType="MapArea";AmCharts.MapArea.base.construct.call(this)}});AmCharts.MapLine=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.longitudes=[];this.latitudes=[];this.x=[];this.y=[];this.objectType="MapLine";this.arrow="none";AmCharts.MapLine.base.construct.call(this)}});AmCharts.MapImage=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.scale=1;this.widthAndHeightUnits="pixels";this.objectType="MapImage";this.labelShiftY=this.labelShiftX=0;AmCharts.MapImage.base.construct.call(this)},remove:function(){var a=this.displayObject;a&&a.remove();(a=this.imageLabel)&&a.remove()}});AmCharts.degreesToRadians=function(a){return a/180*Math.PI};AmCharts.radiansToDegrees=function(a){return 180*(a/Math.PI)};AmCharts.getColorFade=function(a,b,c){var d=AmCharts.hex2RGB(b);b=d[0];var f=d[1],d=d[2],e=AmCharts.hex2RGB(a);a=e[0];var g=e[1],e=e[2];a+=Math.round((b-a)*c);g+=Math.round((f-g)*c);e+=Math.round((d-e)*c);return"rgb("+a+","+g+","+e+")"};AmCharts.hex2RGB=function(a){return[parseInt(a.substring(1,3),16),parseInt(a.substring(3,5),16),parseInt(a.substring(5,7),16)]};
 
212
  AmCharts.processDescriptionWindow=function(a,b){var c=a.descriptionWindowX,d=a.descriptionWindowY,f=a.descriptionWindowWidth,e=a.descriptionWindowHeight,g=b.descriptionWindowX;isNaN(g)&&(g=c);c=b.descriptionWindowY;isNaN(c)&&(c=d);d=b.descriptionWindowWidth;isNaN(d)&&(d=f);f=b.descriptionWindowHeight;isNaN(f)&&(f=e);b.descriptionWindowX=g;b.descriptionWindowY=c;b.descriptionWindowWidth=d;b.descriptionWindowHeight=f};AmCharts.MapData=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){AmCharts.MapData.base.construct.call(this);this.projection="mercator";this.topLatitude=90;this.bottomLatitude=-90;this.leftLongitude=-180;this.rightLongitude=180;this.zoomLevel=1;this.objectType="MapData";this.getAreasFromMap=!1}});AmCharts.DescriptionWindow=AmCharts.Class({construct:function(){},show:function(a,b,c,d){var f=this,e=document.createElement("div");e.style.position="absolute";e.className="ammapDescriptionWindow";f.div=e;b.appendChild(e);var g=document.createElement("img");g.className="ammapDescriptionWindowCloseButton";g.src=a.pathToImages+"xIcon.gif";g.style.cssFloat="right";g.onclick=function(){f.close()};g.onmouseover=function(){g.src=a.pathToImages+"xIconH.gif"};g.onmouseout=function(){g.src=a.pathToImages+
213
  "xIcon.gif"};e.appendChild(g);b=document.createElement("div");b.className="ammapDescriptionTitle";b.onmousedown=function(){f.div.style.zIndex=1E3};e.appendChild(b);d=document.createTextNode(d);b.appendChild(d);d=b.offsetHeight;b=document.createElement("div");b.className="ammapDescriptionText";b.style.maxHeight=f.maxHeight-d-20+"px";e.appendChild(b);b.innerHTML=c},close:function(){try{this.div.parentNode.removeChild(this.div)}catch(a){}}});AmCharts.ValueLegend=AmCharts.Class({construct:function(){this.showAsGradient=!1;this.minValue=0;this.height=12;this.width=200;this.bottom=this.left=10;this.borderColor="#FFFFFF";this.borderAlpha=this.borderThickness=1;this.color="#000000";this.fontSize=11},init:function(a,b){var c=a.areasSettings.color,d=a.areasSettings.colorSolid,f=a.colorSteps;AmCharts.remove(this.set);var e=b.set();this.set=e;var g=0,h=this.minValue,k=this.fontSize,l=a.fontFamily,m=this.color;void 0==h&&(h=a.minValueReal);void 0!==
214
  h&&(g=AmCharts.text(b,h,m,l,k,"left"),g.translate(0,k/2-1),e.push(g),g=g.getBBox().height);h=this.maxValue;void 0===h&&(h=a.maxValueReal);void 0!==h&&(g=AmCharts.text(b,h,m,l,k,"right"),g.translate(this.width,k/2-1),e.push(g),g=g.getBBox().height);if(this.showAsGradient)c=AmCharts.rect(b,this.width,this.height,[c,d],1,this.borderThickness,this.borderColor,1,0,0),c.translate(0,g),e.push(c);else for(k=this.width/f,l=0;l<f;l++)m=AmCharts.getColorFade(c,d,1*l/(f-1)),m=AmCharts.rect(b,k,this.height,m,
215
- 1,this.borderThickness,this.borderColor,1),m.translate(k*l,g),e.push(m);d=c=0;f=e.getBBox();g=a.getY(this.bottom,!0);k=a.getY(this.top);l=a.getX(this.right,!0);m=a.getX(this.left);isNaN(k)||(c=k);isNaN(g)||(c=g-f.height);isNaN(m)||(d=m);isNaN(l)||(d=l-f.width);e.translate(d,c)}});AmCharts.ObjectList=AmCharts.Class({construct:function(a){this.div="object"!=typeof a?document.getElementById(a):a},init:function(a){this.chart=a;var b=document.createElement("div");b.className="ammapObjectList";this.div.appendChild(b);this.addObjects(a.dataProvider,b)},addObjects:function(a,b){var c=this.chart,d=document.createElement("ul"),f;if(a.areas)for(f=0;f<a.areas.length;f++){var e=a.areas[f];void 0===e.showInList&&(e.showInList=c.showAreasInList);this.addObject(e,d)}if(a.images)for(f=0;f<
216
- a.images.length;f++)e=a.images[f],void 0===e.showInList&&(e.showInList=c.showImagesInList),this.addObject(e,d);if(a.lines)for(f=0;f<a.lines.length;f++)e=a.lines[f],void 0===e.showInList&&(e.showInList=c.showLinesInList),this.addObject(e,d);0<d.childNodes.length&&b.appendChild(d)},addObject:function(a,b){var c=this;if(a.showInList&&void 0!==a.title){var d=document.createElement("li"),f=document.createTextNode(a.title),e=document.createElement("a");e.appendChild(f);d.appendChild(e);b.appendChild(d);
217
- this.addObjects(a,d);e.onmouseover=function(){c.chart.rollOverMapObject(a,!1)};e.onmouseout=function(){c.chart.rollOutMapObject(a)};e.onclick=function(){c.chart.clickMapObject(a)}}}});
1
  if(!AmCharts)var AmCharts={};AmCharts.inheriting={};
2
  AmCharts.Class=function(a){var b=function(){arguments[0]!==AmCharts.inheriting&&(this.events={},this.construct.apply(this,arguments))};a.inherits?(b.prototype=new a.inherits(AmCharts.inheriting),b.base=a.inherits.prototype,delete a.inherits):(b.prototype.createEvents=function(){for(var a=0,b=arguments.length;a<b;a++)this.events[arguments[a]]=[]},b.prototype.listenTo=function(a,b,c){a.events[b].push({handler:c,scope:this})},b.prototype.addListener=function(a,b,c){this.events[a].push({handler:b,scope:c})},
3
+ b.prototype.removeListener=function(a,b,c){a=a.events[b];for(b=a.length-1;0<=b;b--)a[b].handler===c&&a.splice(b,1)},b.prototype.fire=function(a,b){for(var c=this.events[a],g=0,h=c.length;g<h;g++){var k=c[g];k.handler.call(k.scope,b)}});for(var c in a)b.prototype[c]=a[c];return b};AmCharts.charts=[];AmCharts.addChart=function(a){AmCharts.charts.push(a)};AmCharts.removeChart=function(a){for(var b=AmCharts.charts,c=b.length-1;0<=c;c--)b[c]==a&&b.splice(c,1)};AmCharts.IEversion=0;AmCharts.isModern=!0;
4
+ AmCharts.navigator=navigator.userAgent.toLowerCase();-1!=AmCharts.navigator.indexOf("msie")&&(AmCharts.IEversion=parseInt(AmCharts.navigator.split("msie")[1]),document.documentMode&&(AmCharts.IEversion=Number(document.documentMode)),9>AmCharts.IEversion&&(AmCharts.isModern=!1));AmCharts.dx=0;AmCharts.dy=0;if(document.addEventListener||window.opera)AmCharts.isNN=!0,AmCharts.isIE=!1,AmCharts.dx=0.5,AmCharts.dy=0.5;
5
+ document.attachEvent&&(AmCharts.isNN=!1,AmCharts.isIE=!0,AmCharts.isModern||(AmCharts.dx=0,AmCharts.dy=0));window.chrome&&(AmCharts.chrome=!0);AmCharts.handleResize=function(){for(var a=AmCharts.charts,b=0;b<a.length;b++){var c=a[b];c&&c.div&&c.handleResize()}};AmCharts.handleMouseUp=function(a){for(var b=AmCharts.charts,c=0;c<b.length;c++){var d=b[c];d&&d.handleReleaseOutside(a)}};AmCharts.handleMouseMove=function(a){for(var b=AmCharts.charts,c=0;c<b.length;c++){var d=b[c];d&&d.handleMouseMove(a)}};
6
+ AmCharts.resetMouseOver=function(){for(var a=AmCharts.charts,b=0;b<a.length;b++){var c=a[b];c&&(c.mouseIsOver=!1)}};AmCharts.onReadyArray=[];AmCharts.ready=function(a){AmCharts.onReadyArray.push(a)};AmCharts.handleLoad=function(){AmCharts.isReady=!0;for(var a=AmCharts.onReadyArray,b=0;b<a.length;b++)(0,a[b])()};AmCharts.useUTC=!1;AmCharts.updateRate=40;AmCharts.uid=0;AmCharts.getUniqueId=function(){AmCharts.uid++;return"AmChartsEl-"+AmCharts.uid};
7
+ AmCharts.isNN&&(document.addEventListener("mousemove",AmCharts.handleMouseMove,!0),window.addEventListener("resize",AmCharts.handleResize,!0),document.addEventListener("mouseup",AmCharts.handleMouseUp,!0),window.addEventListener("load",AmCharts.handleLoad,!0));AmCharts.isIE&&(document.attachEvent("onmousemove",AmCharts.handleMouseMove),window.attachEvent("onresize",AmCharts.handleResize),document.attachEvent("onmouseup",AmCharts.handleMouseUp),window.attachEvent("onload",AmCharts.handleLoad));
8
  AmCharts.clear=function(){var a=AmCharts.charts;if(a)for(var b=0;b<a.length;b++)a[b].clear();AmCharts.charts=null;AmCharts.isNN&&(document.removeEventListener("mousemove",AmCharts.handleMouseMove,!0),window.removeEventListener("resize",AmCharts.handleResize,!0),document.removeEventListener("mouseup",AmCharts.handleMouseUp,!0),window.removeEventListener("load",AmCharts.handleLoad,!0));AmCharts.isIE&&(document.detachEvent("onmousemove",AmCharts.handleMouseMove),window.detachEvent("onresize",AmCharts.handleResize),
9
+ document.detachEvent("onmouseup",AmCharts.handleMouseUp),window.detachEvent("onload",AmCharts.handleLoad))};
10
+ AmCharts.makeChart=function(a,b){var c;switch(b.type){case "serial":c=new AmCharts.AmSerialChart;break;case "xy":c=new AmCharts.AmXYChart;break;case "pie":c=new AmCharts.AmPieChart;break;case "radar":c=new AmCharts.AmRadarChart;break;case "gauge":c=new AmCharts.AmAngularGauge;break;case "funnel":c=new AmCharts.AmFunnelChart;break;case "map":c=new AmCharts.AmMap;break;case "stock":c=new AmCharts.AmStockChart}AmCharts.extend(c,b);AmCharts.isReady?c.write(a):AmCharts.ready(function(){c.write(a)});return c};AmCharts.toBoolean=function(a,b){if(void 0===a)return b;switch(String(a).toLowerCase()){case "true":case "yes":case "1":return!0;case "false":case "no":case "0":case null:return!1;default:return Boolean(a)}};AmCharts.removeFromArray=function(a,b){var c;for(c=a.length-1;0<=c;c--)a[c]==b&&a.splice(c,1)};
11
  AmCharts.getStyle=function(a,b){var c="";document.defaultView&&document.defaultView.getComputedStyle?c=document.defaultView.getComputedStyle(a,"").getPropertyValue(b):a.currentStyle&&(b=b.replace(/\-(\w)/g,function(a,b){return b.toUpperCase()}),c=a.currentStyle[b]);return c};AmCharts.removePx=function(a){return Number(a.substring(0,a.length-2))};
12
+ AmCharts.getURL=function(a,b){if(a)if("_self"!=b&&b)if("_top"==b&&window.top)window.top.location.href=a;else if("_parent"==b&&window.parent)window.parent.location.href=a;else{var c=document.getElementsByName(b)[0];c?c.src=a:window.open(a)}else window.location.href=a};AmCharts.ifArray=function(a){return a&&0<a.length?!0:!1};AmCharts.callMethod=function(a,b){var c;for(c=0;c<b.length;c++){var d=b[c];if(d){if(d[a])d[a]();var f=d.length;if(0<f){var e;for(e=0;e<f;e++){var g=d[e];if(g&&g[a])g[a]()}}}}};
13
+ AmCharts.toNumber=function(a){return"number"==typeof a?a:Number(String(a).replace(/[^0-9\-.]+/g,""))};AmCharts.toColor=function(a){if(""!==a&&void 0!==a)if(-1!=a.indexOf(",")){a=a.split(",");var b;for(b=0;b<a.length;b++){var c=a[b].substring(a[b].length-6,a[b].length);a[b]="#"+c}}else a=a.substring(a.length-6,a.length),a="#"+a;return a};
14
+ AmCharts.toCoordinate=function(a,b,c){var d;void 0!==a&&(a=String(a),c&&c<b&&(b=c),d=Number(a),-1!=a.indexOf("!")&&(d=b-Number(a.substr(1))),-1!=a.indexOf("%")&&(d=b*Number(a.substr(0,a.length-1))/100));return d};AmCharts.fitToBounds=function(a,b,c){a<b&&(a=b);a>c&&(a=c);return a};AmCharts.isDefined=function(a){return void 0===a?!1:!0};AmCharts.stripNumbers=function(a){return a.replace(/[0-9]+/g,"")};AmCharts.roundTo=function(a,b){if(0>b)return a;var c=Math.pow(10,b);return Math.round(a*c)/c};
15
+ AmCharts.toFixed=function(a,b){var c=String(Math.round(a*Math.pow(10,b)));if(0<b){var d=c.length;if(d<b){var f;for(f=0;f<b-d;f++)c="0"+c}d=c.substring(0,c.length-b);""===d&&(d=0);return d+"."+c.substring(c.length-b,c.length)}return String(c)};
 
 
 
 
 
16
  AmCharts.formatDuration=function(a,b,c,d,f,e){var g=AmCharts.intervals,h=e.decimalSeparator;if(a>=g[b].contains){var k=a-Math.floor(a/g[b].contains)*g[b].contains;"ss"==b&&(k=AmCharts.formatNumber(k,e),1==k.split(h)[0].length&&(k="0"+k));("mm"==b||"hh"==b)&&10>k&&(k="0"+k);c=k+""+d[b]+""+c;a=Math.floor(a/g[b].contains);b=g[b].nextInterval;return AmCharts.formatDuration(a,b,c,d,f,e)}"ss"==b&&(a=AmCharts.formatNumber(a,e),1==a.split(h)[0].length&&(a="0"+a));("mm"==b||"hh"==b)&&10>a&&(a="0"+a);c=a+""+
17
  d[b]+""+c;if(g[f].count>g[b].count)for(a=g[b].count;a<g[f].count;a++)b=g[b].nextInterval,"ss"==b||"mm"==b||"hh"==b?c="00"+d[b]+""+c:"DD"==b&&(c="0"+d[b]+""+c);":"==c.charAt(c.length-1)&&(c=c.substring(0,c.length-1));return c};
18
+ AmCharts.formatNumber=function(a,b,c,d,f){a=AmCharts.roundTo(a,b.precision);isNaN(c)&&(c=b.precision);var e=b.decimalSeparator;b=b.thousandsSeparator;var g;g=0>a?"-":"";a=Math.abs(a);var h=String(a),k=!1;-1!=h.indexOf("e")&&(k=!0);0<=c&&!k&&(h=AmCharts.toFixed(a,c));var l="";if(k)l=h;else{var h=h.split("."),k=String(h[0]),m;for(m=k.length;0<=m;m-=3)l=m!=k.length?0!==m?k.substring(m-3,m)+b+l:k.substring(m-3,m)+l:k.substring(m-3,m);void 0!==h[1]&&(l=l+e+h[1]);void 0!==c&&0<c&&"0"!=l&&(l=AmCharts.addZeroes(l,
19
+ e,c))}l=g+l;""===g&&!0===d&&0!==a&&(l="+"+l);!0===f&&(l+="%");return l};AmCharts.addZeroes=function(a,b,c){a=a.split(b);void 0===a[1]&&0<c&&(a[1]="0");return a[1].length<c?(a[1]+="0",AmCharts.addZeroes(a[0]+b+a[1],b,c)):void 0!==a[1]?a[0]+b+a[1]:a[0]};
20
  AmCharts.scientificToNormal=function(a){var b;a=String(a).split("e");var c;if("-"==a[1].substr(0,1)){b="0.";for(c=0;c<Math.abs(Number(a[1]))-1;c++)b+="0";b+=a[0].split(".").join("")}else{var d=0;b=a[0].split(".");b[1]&&(d=b[1].length);b=a[0].split(".").join("");for(c=0;c<Math.abs(Number(a[1]))-d;c++)b+="0"}return b};
21
  AmCharts.toScientific=function(a,b){if(0===a)return"0";var c=Math.floor(Math.log(Math.abs(a))*Math.LOG10E);Math.pow(10,c);mantissa=String(mantissa).split(".").join(b);return String(mantissa)+"e"+c};AmCharts.randomColor=function(){return"#"+("00000"+(16777216*Math.random()<<0).toString(16)).substr(-6)};
22
+ AmCharts.hitTest=function(a,b,c){var d=!1,f=a.x,e=a.x+a.width,g=a.y,h=a.y+a.height,k=AmCharts.isInRectangle;d||(d=k(f,g,b));d||(d=k(f,h,b));d||(d=k(e,g,b));d||(d=k(e,h,b));d||!0===c||(d=AmCharts.hitTest(b,a,!0));return d};AmCharts.isInRectangle=function(a,b,c){return a>=c.x-5&&a<=c.x+c.width+5&&b>=c.y-5&&b<=c.y+c.height+5?!0:!1};AmCharts.isPercents=function(a){if(-1!=String(a).indexOf("%"))return!0};
23
+ AmCharts.findPosX=function(a){var b=a,c=a.offsetLeft;if(a.offsetParent){for(;a=a.offsetParent;)c+=a.offsetLeft;for(;(b=b.parentNode)&&b!=document.body;)c-=b.scrollLeft||0}return c};AmCharts.findPosY=function(a){var b=a,c=a.offsetTop;if(a.offsetParent){for(;a=a.offsetParent;)c+=a.offsetTop;for(;(b=b.parentNode)&&b!=document.body;)c-=b.scrollTop||0}return c};AmCharts.findIfFixed=function(a){if(a.offsetParent)for(;a=a.offsetParent;)if("fixed"==AmCharts.getStyle(a,"position"))return!0;return!1};
24
+ AmCharts.findIfAuto=function(a){return a.style&&"auto"==AmCharts.getStyle(a,"overflow")?!0:a.parentNode?AmCharts.findIfAuto(a.parentNode):!1};AmCharts.findScrollLeft=function(a,b){a.scrollLeft&&(b+=a.scrollLeft);return a.parentNode?AmCharts.findScrollLeft(a.parentNode,b):b};AmCharts.findScrollTop=function(a,b){a.scrollTop&&(b+=a.scrollTop);return a.parentNode?AmCharts.findScrollTop(a.parentNode,b):b};
 
 
 
 
 
25
  AmCharts.formatValue=function(a,b,c,d,f,e,g,h){if(b){void 0===f&&(f="");var k;for(k=0;k<c.length;k++){var l=c[k],m=b[l];void 0!==m&&(m=e?AmCharts.addPrefix(m,h,g,d):AmCharts.formatNumber(m,d),a=a.replace(RegExp("\\[\\["+f+""+l+"\\]\\]","g"),m))}}return a};AmCharts.formatDataContextValue=function(a,b){if(a){var c=a.match(/\[\[.*?\]\]/g),d;for(d=0;d<c.length;d++){var f=c[d],f=f.substr(2,f.length-4);void 0!==b[f]&&(a=a.replace(RegExp("\\[\\["+f+"\\]\\]","g"),b[f]))}}return a};
26
  AmCharts.massReplace=function(a,b){for(var c in b)if(b.hasOwnProperty(c)){var d=b[c];void 0===d&&(d="");a=a.replace(c,d)}return a};AmCharts.cleanFromEmpty=function(a){return a.replace(/\[\[[^\]]*\]\]/g,"")};
27
+ AmCharts.addPrefix=function(a,b,c,d,f){var e=AmCharts.formatNumber(a,d),g="",h,k,l;if(0===a)return"0";0>a&&(g="-");a=Math.abs(a);if(1<a)for(h=b.length-1;-1<h;h--){if(a>=b[h].number&&(k=a/b[h].number,l=Number(d.precision),1>l&&(l=1),c=AmCharts.roundTo(k,l),l=AmCharts.formatNumber(c,{precision:-1,decimalSeparator:d.decimalSeparator,thousandsSeparator:d.thousandsSeparator}),!f||k==c)){e=g+""+l+""+b[h].prefix;break}}else for(h=0;h<c.length;h++)if(a<=c[h].number){k=a/c[h].number;l=Math.abs(Math.round(Math.log(k)*
28
+ Math.LOG10E));k=AmCharts.roundTo(k,l);e=g+""+k+""+c[h].prefix;break}return e};AmCharts.remove=function(a){a&&a.remove()};AmCharts.copyProperties=function(a,b){for(var c in a)a.hasOwnProperty(c)&&"events"!=c&&void 0!==a[c]&&"function"!=typeof a[c]&&(b[c]=a[c])};AmCharts.recommended=function(){var a="js";document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")||swfobject&&swfobject.hasFlashPlayerVersion("8")&&(a="flash");return a};
29
+ AmCharts.getEffect=function(a){">"==a&&(a="easeOutSine");"<"==a&&(a="easeInSine");"elastic"==a&&(a="easeOutElastic");return a};AmCharts.getObjById=function(a,b){var c,d;for(d=0;d<a.length;d++){var f=a[d];f.id==b&&(c=f)}return c};AmCharts.isString=function(a){return"string"==typeof a?!0:!1};AmCharts.extend=function(a,b,c){for(var d in b)c?a.hasOwnProperty(d)||(a[d]=b[d]):a[d]=b[d];return a};AmCharts.processObject=function(a,b){!1==a instanceof b&&(a=AmCharts.extend(new b,a));return a};
30
+ AmCharts.fixNewLines=function(a){if(!AmCharts.isModern){var b=RegExp("\\n","g");a&&(a=a.replace(b,"<br />"))}return a};AmCharts.deleteObject=function(a,b){if(a){if(void 0===b||null===b)b=20;if(0!==b)if("[object Array]"===Object.prototype.toString.call(a))for(var c=0;c<a.length;c++)AmCharts.deleteObject(a[c],b-1),a[c]=null;else try{for(c in a)a[c]&&("object"==typeof a[c]&&AmCharts.deleteObject(a[c],b-1),"function"!=typeof a[c]&&(a[c]=null))}catch(d){}}};
31
+ AmCharts.bounce=function(a,b,c,d,f){return(b/=f)<1/2.75?7.5625*d*b*b+c:b<2/2.75?d*(7.5625*(b-=1.5/2.75)*b+0.75)+c:b<2.5/2.75?d*(7.5625*(b-=2.25/2.75)*b+0.9375)+c:d*(7.5625*(b-=2.625/2.75)*b+0.984375)+c};AmCharts.easeInSine=function(a,b,c,d,f){return-d*Math.cos(b/f*(Math.PI/2))+d+c};AmCharts.easeOutSine=function(a,b,c,d,f){return d*Math.sin(b/f*(Math.PI/2))+c};
32
+ AmCharts.easeOutElastic=function(a,b,c,d,f){a=1.70158;var e=0,g=d;if(0===b)return c;if(1==(b/=f))return c+d;e||(e=0.3*f);g<Math.abs(d)?(g=d,a=e/4):a=e/(2*Math.PI)*Math.asin(d/g);return g*Math.pow(2,-10*b)*Math.sin(2*(b*f-a)*Math.PI/e)+d+c};AmCharts.AmDraw=AmCharts.Class({construct:function(a,b,c,d){AmCharts.SVG_NS="http://www.w3.org/2000/svg";AmCharts.SVG_XLINK="http://www.w3.org/1999/xlink";AmCharts.hasSVG=!!document.createElementNS&&!!document.createElementNS(AmCharts.SVG_NS,"svg").createSVGRect;1>b&&(b=10);1>c&&(c=10);this.div=a;this.width=b;this.height=c;this.rBin=document.createElement("div");AmCharts.hasSVG?(AmCharts.SVG=!0,d=this.createSvgElement("svg"),d.style.position="absolute",d.style.width=b+"px",d.style.height=c+"px",AmCharts.rtl&&
33
+ (d.setAttribute("direction","rtl"),d.style.left="auto",d.style.right="0px"),d.setAttribute("version","1.1"),a.appendChild(d),this.container=d,this.R=new AmCharts.SVGRenderer(this)):AmCharts.isIE&&AmCharts.VMLRenderer&&(AmCharts.VML=!0,AmCharts.vmlStyleSheet||(document.namespaces.add("amvml","urn:schemas-microsoft-com:vml"),b=document.createStyleSheet(),b.addRule(".amvml","behavior:url(#default#VML); display:inline-block; antialias:true"),AmCharts.vmlStyleSheet=b),this.container=a,this.R=new AmCharts.VMLRenderer(this,
34
+ d),this.R.disableSelection(a))},createSvgElement:function(a){return document.createElementNS(AmCharts.SVG_NS,a)},circle:function(a,b,c,d){var f=new AmCharts.AmDObject("circle",this);f.attr({r:c,cx:a,cy:b});this.addToContainer(f.node,d);return f},setSize:function(a,b){0<a&&0<b&&(this.container.style.width=a+"px",this.container.style.height=b+"px")},rect:function(a,b,c,d,f,e,g){var h=new AmCharts.AmDObject("rect",this);AmCharts.VML&&(f=100*f/Math.min(c,d),c+=2*e,d+=2*e,h.bw=e,h.node.style.marginLeft=
35
+ -e,h.node.style.marginTop=-e);1>c&&(c=1);1>d&&(d=1);h.attr({x:a,y:b,width:c,height:d,rx:f,ry:f,"stroke-width":e});this.addToContainer(h.node,g);return h},image:function(a,b,c,d,f,e){var g=new AmCharts.AmDObject("image",this);g.attr({x:b,y:c,width:d,height:f});this.R.path(g,a);this.addToContainer(g.node,e);return g},addToContainer:function(a,b){b||(b=this.container);b.appendChild(a)},text:function(a,b,c){return this.R.text(a,b,c)},path:function(a,b,c,d){var f=new AmCharts.AmDObject("path",this);d||
36
+ (d="100,100");f.attr({cs:d});c?f.attr({dd:a}):f.attr({d:a});this.addToContainer(f.node,b);return f},set:function(a){return this.R.set(a)},remove:function(a){if(a){var b=this.rBin;b.appendChild(a);b.innerHTML=""}},renderFix:function(){var a=this.container,b=a.style,c;try{c=a.getScreenCTM()||a.createSVGMatrix()}catch(d){c=a.createSVGMatrix()}a=1-c.e%1;c=1-c.f%1;0.5<a&&(a-=1);0.5<c&&(c-=1);a&&(b.left=a+"px");c&&(b.top=c+"px")},update:function(){this.R.update()}});AmCharts.AmDObject=AmCharts.Class({construct:function(a,b){this.D=b;this.R=b.R;this.node=this.R.create(this,a);this.y=this.x=0;this.scale=1},attr:function(a){this.R.attr(this,a);return this},getAttr:function(a){return this.node.getAttribute(a)},setAttr:function(a,b){this.R.setAttr(this,a,b);return this},clipRect:function(a,b,c,d){this.R.clipRect(this,a,b,c,d)},translate:function(a,b,c,d){d||(a=Math.round(a),b=Math.round(b));this.R.move(this,a,b,c);this.x=a;this.y=b;this.scale=c;this.angle&&this.rotate(this.angle)},
37
+ rotate:function(a,b){this.R.rotate(this,a,b);this.angle=a},animate:function(a,b,c){for(var d in a)if(a.hasOwnProperty(d)){var f=d,e=a[d];c=AmCharts.getEffect(c);this.R.animate(this,f,e,b,c)}},push:function(a){if(a){var b=this.node;b.appendChild(a.node);var c=a.clipPath;c&&b.appendChild(c);(a=a.grad)&&b.appendChild(a)}},text:function(a){this.R.setText(this,a)},remove:function(){this.R.remove(this)},clear:function(){var a=this.node;if(a.hasChildNodes())for(;1<=a.childNodes.length;)a.removeChild(a.firstChild)},
 
 
38
  hide:function(){this.setAttr("visibility","hidden")},show:function(){this.setAttr("visibility","visible")},getBBox:function(){return this.R.getBBox(this)},toFront:function(){var a=this.node;if(a){this.prevNextNode=a.nextSibling;var b=a.parentNode;b&&b.appendChild(a)}},toPrevious:function(){var a=this.node;a&&this.prevNextNode&&(a=a.parentNode)&&a.insertBefore(this.prevNextNode,null)},toBack:function(){var a=this.node;if(a){this.prevNextNode=a.nextSibling;var b=a.parentNode;if(b){var c=b.firstChild;
39
  c&&b.insertBefore(a,c)}}},mouseover:function(a){this.R.addListener(this,"mouseover",a);return this},mouseout:function(a){this.R.addListener(this,"mouseout",a);return this},click:function(a){this.R.addListener(this,"click",a);return this},dblclick:function(a){this.R.addListener(this,"dblclick",a);return this},mousedown:function(a){this.R.addListener(this,"mousedown",a);return this},mouseup:function(a){this.R.addListener(this,"mouseup",a);return this},touchstart:function(a){this.R.addListener(this,
40
+ "touchstart",a);return this},touchend:function(a){this.R.addListener(this,"touchend",a);return this},contextmenu:function(a){this.node.addEventListener?this.node.addEventListener("contextmenu",a,!0):this.R.addListener(this,"contextmenu",a);return this},stop:function(a){(a=this.animationX)&&AmCharts.removeFromArray(this.R.animations,a);(a=this.animationY)&&AmCharts.removeFromArray(this.R.animations,a)},length:function(){return this.node.childNodes.length},gradient:function(a,b,c){this.R.gradient(this,
41
+ a,b,c)},pattern:function(a,b){a&&this.R.pattern(this,a,b)}});AmCharts.SVGRenderer=AmCharts.Class({construct:function(a){this.D=a;this.animations=[]},create:function(a,b){return document.createElementNS(AmCharts.SVG_NS,b)},attr:function(a,b){for(var c in b)b.hasOwnProperty(c)&&this.setAttr(a,c,b[c])},setAttr:function(a,b,c){void 0!==c&&a.node.setAttribute(b,c)},animate:function(a,b,c,d,f){var e=a.node;a["an_"+b]&&AmCharts.removeFromArray(this.animations,a["an_"+b]);"translate"==b?(e=(e=e.getAttribute("transform"))?String(e).substring(10,e.length-1):"0,0",e=
42
+ e.split(", ").join(" "),e=e.split(" ").join(","),0===e&&(e="0,0")):e=Number(e.getAttribute(b));c={obj:a,frame:0,attribute:b,from:e,to:c,time:d,effect:f};this.animations.push(c);a["an_"+b]=c},update:function(){var a,b=this.animations;for(a=b.length-1;0<=a;a--){var c=b[a],d=1E3*c.time/AmCharts.updateRate,f=c.frame+1,e=c.obj,g=c.attribute,h,k,l;f<=d?(c.frame++,"translate"==g?(h=c.from.split(","),g=Number(h[0]),h=Number(h[1]),isNaN(h)&&(h=0),k=c.to.split(","),l=Number(k[0]),k=Number(k[1]),l=0===l-g?l:
43
+ Math.round(AmCharts[c.effect](0,f,g,l-g,d)),c=0===k-h?k:Math.round(AmCharts[c.effect](0,f,h,k-h,d)),g="transform",c="translate("+l+","+c+")"):(k=Number(c.from),h=Number(c.to),l=h-k,c=AmCharts[c.effect](0,f,k,l,d),isNaN(c)&&(c=h),0===l&&this.animations.splice(a,1)),this.setAttr(e,g,c)):("translate"==g?(k=c.to.split(","),l=Number(k[0]),k=Number(k[1]),e.translate(l,k)):(h=Number(c.to),this.setAttr(e,g,h)),this.animations.splice(a,1))}},getBBox:function(a){if(a=a.node)try{return a.getBBox()}catch(b){}return{width:0,
44
  height:0,x:0,y:0}},path:function(a,b){a.node.setAttributeNS(AmCharts.SVG_XLINK,"xlink:href",b)},clipRect:function(a,b,c,d,f){var e=a.node,g=a.clipPath;g&&this.D.remove(g);var h=e.parentNode;h&&(e=document.createElementNS(AmCharts.SVG_NS,"clipPath"),g=AmCharts.getUniqueId(),e.setAttribute("id",g),this.D.rect(b,c,d,f,0,0,e),h.appendChild(e),b="#",AmCharts.baseHref&&!AmCharts.isIE&&(b=window.location.href+b),this.setAttr(a,"clip-path","url("+b+g+")"),this.clipPathC++,a.clipPath=e)},text:function(a,b,
45
+ c){var d=new AmCharts.AmDObject("text",this.D);a=String(a).split("\n");var f=b["font-size"],e;for(e=0;e<a.length;e++){var g=this.create(null,"tspan");g.appendChild(document.createTextNode(a[e]));g.setAttribute("y",(f+2)*e+Math.round(f/2));g.setAttribute("x",0);d.node.appendChild(g)}d.node.setAttribute("y",Math.round(f/2));this.attr(d,b);this.D.addToContainer(d.node,c);return d},setText:function(a,b){var c=a.node;c&&(c.removeChild(c.firstChild),c.appendChild(document.createTextNode(b)))},move:function(a,
46
+ b,c,d){b="translate("+b+","+c+")";d&&(b=b+" scale("+d+")");this.setAttr(a,"transform",b)},rotate:function(a,b){var c=a.node.getAttribute("transform"),d="rotate("+b+")";c&&(d=c+" "+d);this.setAttr(a,"transform",d)},set:function(a){var b=new AmCharts.AmDObject("g",this.D);this.D.container.appendChild(b.node);if(a){var c;for(c=0;c<a.length;c++)b.push(a[c])}return b},addListener:function(a,b,c){a.node["on"+b]=c},gradient:function(a,b,c,d){var f=a.node,e=a.grad;e&&this.D.remove(e);b=document.createElementNS(AmCharts.SVG_NS,
47
  b);e=AmCharts.getUniqueId();b.setAttribute("id",e);if(!isNaN(d)){var g=0,h=0,k=0,l=0;90==d?k=100:270==d?l=100:180==d?g=100:0===d&&(h=100);b.setAttribute("x1",g+"%");b.setAttribute("x2",h+"%");b.setAttribute("y1",k+"%");b.setAttribute("y2",l+"%")}for(d=0;d<c.length;d++)g=document.createElementNS(AmCharts.SVG_NS,"stop"),h=100*d/(c.length-1),0===d&&(h=0),g.setAttribute("offset",h+"%"),g.setAttribute("stop-color",c[d]),b.appendChild(g);f.parentNode.appendChild(b);c="#";AmCharts.baseHref&&!AmCharts.isIE&&
48
+ (c=window.location.href+c);f.setAttribute("fill","url("+c+e+")");a.grad=b},pattern:function(a,b,c){var d=a.node;isNaN(c)&&(c=1);var f=a.patternNode;f&&this.D.remove(f);var f=document.createElementNS(AmCharts.SVG_NS,"pattern"),e=AmCharts.getUniqueId(),g=b;b.url&&(g=b.url);var h=Number(b.width);isNaN(h)&&(h=4);var k=Number(b.height);isNaN(k)&&(k=4);h/=c;k/=c;c=b.x;isNaN(c)&&(c=0);var l=-Math.random()*Number(b.randomX);isNaN(l)||(c=l);l=b.y;isNaN(l)&&(l=0);b=-Math.random()*Number(b.randomY);isNaN(b)||
49
+ (l=b);f.setAttribute("id",e);f.setAttribute("width",h);f.setAttribute("height",k);f.setAttribute("patternUnits","userSpaceOnUse");f.setAttribute("xlink:href",g);this.D.image(g,0,0,h,k,f).translate(c,l);g="#";AmCharts.baseHref&&!AmCharts.isIE&&(g=window.location.href+g);d.setAttribute("fill","url("+g+e+")");a.patternNode=f;d.parentNode.appendChild(f)},remove:function(a){a.clipPath&&this.D.remove(a.clipPath);a.grad&&this.D.remove(a.grad);a.patternNode&&this.D.remove(a.patternNode);this.D.remove(a.node)}});AmCharts.AmChart=AmCharts.Class({construct:function(){this.version="3.2.0";AmCharts.addChart(this);this.createEvents("dataUpdated","init","rendered","drawn");this.height=this.width="100%";this.dataChanged=!0;this.chartCreated=!1;this.previousWidth=this.previousHeight=0;this.backgroundColor="#FFFFFF";this.borderAlpha=this.backgroundAlpha=0;this.color=this.borderColor="#000000";this.fontFamily="Verdana";this.fontSize=11;this.usePrefixes=!1;this.numberFormatter={precision:-1,decimalSeparator:".",thousandsSeparator:","};
50
+ this.percentFormatter={precision:2,decimalSeparator:".",thousandsSeparator:","};this.labels=[];this.allLabels=[];this.titles=[];this.marginRight=this.marginLeft=this.autoMarginOffset=0;this.timeOuts=[];var a=document.createElement("div"),b=a.style;b.overflow="hidden";b.position="relative";b.textAlign="left";this.chartDiv=a;a=document.createElement("div");b=a.style;b.overflow="hidden";b.position="relative";b.textAlign="left";this.legendDiv=a;this.balloon=new AmCharts.AmBalloon;this.titleHeight=0;this.hideBalloonTime=
51
+ 150;this.handDrawScatter=2;this.handDrawThickness=1;this.prefixesOfBigNumbers=[{number:1E3,prefix:"k"},{number:1E6,prefix:"M"},{number:1E9,prefix:"G"},{number:1E12,prefix:"T"},{number:1E15,prefix:"P"},{number:1E18,prefix:"E"},{number:1E21,prefix:"Z"},{number:1E24,prefix:"Y"}];this.prefixesOfSmallNumbers=[{number:1E-24,prefix:"y"},{number:1E-21,prefix:"z"},{number:1E-18,prefix:"a"},{number:1E-15,prefix:"f"},{number:1E-12,prefix:"p"},{number:1E-9,prefix:"n"},{number:1E-6,prefix:"\u03bc"},{number:0.001,
52
+ prefix:"m"}];this.panEventsEnabled=!1;AmCharts.bezierX=3;AmCharts.bezierY=6;this.product="amcharts";this.animations=[]},drawChart:function(){this.drawBackground();this.redrawLabels();this.drawTitles()},drawBackground:function(){AmCharts.remove(this.background);var a=this.container,b=this.backgroundColor,c=this.backgroundAlpha,d=this.set;AmCharts.isModern||0!==c||(c=0.001);var f=this.updateWidth();this.realWidth=f;var e=this.updateHeight();this.realHeight=e;this.background=b=AmCharts.polygon(a,[0,
53
+ f-1,f-1,0],[0,0,e-1,e-1],b,c,1,this.borderColor,this.borderAlpha);d.push(b);if(b=this.backgroundImage)this.path&&(b=this.path+b),this.bgImg=a=a.image(b,0,0,f,e),d.push(a)},drawTitles:function(){var a=this.titles;if(AmCharts.ifArray(a)){var b=20,c;for(c=0;c<a.length;c++){var d=a[c],f=d.color;void 0===f&&(f=this.color);var e=d.size;isNaN(d.alpha);var g=this.marginLeft,f=AmCharts.text(this.container,d.text,f,this.fontFamily,e);f.translate(g+(this.realWidth-this.marginRight-g)/2,b);g=!0;void 0!==d.bold&&
54
+ (g=d.bold);g&&f.attr({"font-weight":"bold"});b+=e+6;this.freeLabelsSet.push(f)}}},write:function(a){var b=this.balloon;b&&!b.chart&&(b.chart=this);(b=this.exportConfig)&&AmCharts.AmExport&&!this.AmExport&&(this.AmExport=new AmCharts.AmExport(this,b));a="object"!=typeof a?document.getElementById(a):a;a.innerHTML="";this.div=a;a.style.overflow="hidden";a.style.textAlign="left";var b=this.chartDiv,c=this.legendDiv,d=this.legend,f=c.style,e=b.style;this.measure();var g,h;g=document.createElement("div");
55
+ h=g.style;h.position="relative";this.containerDiv=g;a.appendChild(g);if(d)switch(d=this.addLegend(d),d.position){case "bottom":g.appendChild(b);g.appendChild(c);break;case "top":g.appendChild(c);g.appendChild(b);break;case "absolute":h.width=a.style.width;h.height=a.style.height;f.position="absolute";e.position="absolute";void 0!==d.left&&(f.left=d.left+"px");void 0!==d.right&&(f.right=d.right+"px");void 0!==d.top&&(f.top=d.top+"px");void 0!==d.bottom&&(f.bottom=d.bottom+"px");d.marginLeft=0;d.marginRight=
56
+ 0;g.appendChild(b);g.appendChild(c);break;case "right":h.width=a.style.width;h.height=a.style.height;f.position="relative";e.position="absolute";g.appendChild(b);g.appendChild(c);break;case "left":h.width=a.style.width;h.height=a.style.height;f.position="absolute";e.position="relative";g.appendChild(b);g.appendChild(c);break;case "outside":g.appendChild(b)}else g.appendChild(b);this.listenersAdded||(this.addListeners(),this.listenersAdded=!0);this.initChart()},createLabelsSet:function(){AmCharts.remove(this.labelsSet);
57
+ this.labelsSet=this.container.set();this.freeLabelsSet.push(this.labelsSet)},initChart:function(){this.divIsFixed=AmCharts.findIfFixed(this.chartDiv);this.previousHeight=this.divRealHeight;this.previousWidth=this.divRealWidth;this.destroy();this.startInterval();var a=0;document.attachEvent&&!window.opera&&(a=1);this.dmouseX=this.dmouseY=0;var b=document.getElementsByTagName("html")[0];b&&window.getComputedStyle&&(b=window.getComputedStyle(b,null))&&(this.dmouseY=AmCharts.removePx(b.getPropertyValue("margin-top")),
58
+ this.dmouseX=AmCharts.removePx(b.getPropertyValue("margin-left")));this.mouseMode=a;a=new AmCharts.AmDraw(this.chartDiv,this.realWidth,this.realHeight,this);a.handDrawn=this.handDrawn;a.handDrawScatter=this.handDrawScatter;a.handDrawThickness=this.handDrawThickness;this.container=a;if(AmCharts.VML||AmCharts.SVG)a=this.container,this.set=a.set(),this.gridSet=a.set(),this.graphsBehindSet=a.set(),this.bulletBehindSet=a.set(),this.columnSet=a.set(),this.graphsSet=a.set(),this.trendLinesSet=a.set(),this.axesLabelsSet=
59
+ a.set(),this.axesSet=a.set(),this.cursorSet=a.set(),this.scrollbarsSet=a.set(),this.bulletSet=a.set(),this.freeLabelsSet=a.set(),this.balloonsSet=a.set(),this.balloonsSet.setAttr("id","balloons"),this.zoomButtonSet=a.set(),this.linkSet=a.set(),this.brrr(),this.renderFix()},measure:function(){var a=this.div,b=this.chartDiv,c=a.offsetWidth,d=a.offsetHeight,f=this.container;a.clientHeight&&(c=a.clientWidth,d=a.clientHeight);var e=AmCharts.removePx(AmCharts.getStyle(a,"padding-left")),g=AmCharts.removePx(AmCharts.getStyle(a,
60
+ "padding-right")),h=AmCharts.removePx(AmCharts.getStyle(a,"padding-top")),k=AmCharts.removePx(AmCharts.getStyle(a,"padding-bottom"));isNaN(e)||(c-=e);isNaN(g)||(c-=g);isNaN(h)||(d-=h);isNaN(k)||(d-=k);e=a.style;a=e.width;e=e.height;-1!=a.indexOf("px")&&(c=AmCharts.removePx(a));-1!=e.indexOf("px")&&(d=AmCharts.removePx(e));a=AmCharts.toCoordinate(this.width,c);e=AmCharts.toCoordinate(this.height,d);this.balloon=AmCharts.processObject(this.balloon,AmCharts.AmBalloon);this.balloon.chart=this;if(a!=this.previousWidth||
61
+ e!=this.previousHeight)b.style.width=a+"px",b.style.height=e+"px",f&&f.setSize(a,e),this.balloon.setBounds(2,2,a-2,e);this.realWidth=a;this.realHeight=e;this.divRealWidth=c;this.divRealHeight=d},destroy:function(){this.chartDiv.innerHTML="";this.clearTimeOuts();this.interval&&clearInterval(this.interval);this.interval=NaN},clearTimeOuts:function(){var a=this.timeOuts;if(a){var b;for(b=0;b<a.length;b++)clearTimeout(a[b])}this.timeOuts=[]},clear:function(a){AmCharts.callMethod("clear",[this.chartScrollbar,
62
+ this.scrollbarV,this.scrollbarH,this.chartCursor]);this.chartCursor=this.scrollbarH=this.scrollbarV=this.chartScrollbar=null;this.clearTimeOuts();this.container&&(this.container.remove(this.chartDiv),this.container.remove(this.legendDiv));a||AmCharts.removeChart(this)},setMouseCursor:function(a){"auto"==a&&AmCharts.isNN&&(a="default");this.chartDiv.style.cursor=a;this.legendDiv.style.cursor=a},redrawLabels:function(){this.labels=[];var a=this.allLabels;this.createLabelsSet();var b;for(b=0;b<a.length;b++)this.drawLabel(a[b])},
63
+ drawLabel:function(a){if(this.container){var b=a.y,c=a.text,d=a.align,f=a.size,e=a.color,g=a.rotation,h=a.alpha,k=a.bold,l=AmCharts.toCoordinate(a.x,this.realWidth),b=AmCharts.toCoordinate(b,this.realHeight);l||(l=0);b||(b=0);void 0===e&&(e=this.color);isNaN(f)&&(f=this.fontSize);d||(d="start");"left"==d&&(d="start");"right"==d&&(d="end");"center"==d&&(d="middle",g?b=this.realHeight-b+b/2:l=this.realWidth/2-l);void 0===h&&(h=1);void 0===g&&(g=0);b+=f/2;c=AmCharts.text(this.container,c,e,this.fontFamily,
64
+ f,d,k,h);c.translate(l,b);0!==g&&c.rotate(g);a.url&&(c.setAttr("cursor","pointer"),c.click(function(){AmCharts.getURL(a.url)}));this.labelsSet.push(c);this.labels.push(c)}},addLabel:function(a,b,c,d,f,e,g,h,k,l){a={x:a,y:b,text:c,align:d,size:f,color:e,alpha:h,rotation:g,bold:k,url:l};this.container&&this.drawLabel(a);this.allLabels.push(a)},clearLabels:function(){var a=this.labels,b;for(b=a.length-1;0<=b;b--)a[b].remove();this.labels=[];this.allLabels=[]},updateHeight:function(){var a=this.divRealHeight,
65
+ b=this.legend;if(b){var c=this.legendDiv.offsetHeight,b=b.position;if("top"==b||"bottom"==b){a-=c;if(0>a||isNaN(a))a=0;this.chartDiv.style.height=a+"px"}}return a},updateWidth:function(){var a=this.divRealWidth,b=this.divRealHeight,c=this.legend;if(c){var d=this.legendDiv,f=d.offsetWidth,e=d.offsetHeight,d=d.style,g=this.chartDiv.style,c=c.position;if("right"==c||"left"==c){a-=f;if(0>a||isNaN(a))a=0;g.width=a+"px";"left"==c?g.left=f+"px":d.left=a+"px";d.top=(b-e)/2+"px"}}return a},getTitleHeight:function(){var a=
66
+ 0,b=this.titles;if(0<b.length){var a=15,c;for(c=0;c<b.length;c++)a+=b[c].size+6}return a},addTitle:function(a,b,c,d,f){isNaN(b)&&(b=this.fontSize+2);a={text:a,size:b,color:c,alpha:d,bold:f};this.titles.push(a);return a},addMouseWheel:function(){var a=this;window.addEventListener&&(window.addEventListener("DOMMouseScroll",function(b){a.handleWheel.call(a,b)},!1),document.addEventListener("mousewheel",function(b){a.handleWheel.call(a,b)},!1))},handleWheel:function(a){if(this.mouseIsOver){var b=0;a||
67
+ (a=window.event);a.wheelDelta?b=a.wheelDelta/120:a.detail&&(b=-a.detail/3);b&&this.handleWheelReal(b);a.preventDefault&&a.preventDefault();a.returnValue=!1}},handleWheelReal:function(a){},addListeners:function(){var a=this,b=a.chartDiv;document.addEventListener?(a.panEventsEnabled&&"ontouchstart"in document.documentElement&&(b.addEventListener("touchstart",function(b){a.handleTouchMove.call(a,b);a.handleTouchStart.call(a,b)},!0),b.addEventListener("touchmove",function(b){a.handleTouchMove.call(a,
68
+ b)},!0),b.addEventListener("touchend",function(b){a.handleTouchEnd.call(a,b)},!0)),b.addEventListener("mousedown",function(b){a.handleMouseDown.call(a,b)},!0),b.addEventListener("mouseover",function(b){a.handleMouseOver.call(a,b)},!0),b.addEventListener("mouseout",function(b){a.handleMouseOut.call(a,b)},!0)):(b.attachEvent("onmousedown",function(b){a.handleMouseDown.call(a,b)}),b.attachEvent("onmouseover",function(b){a.handleMouseOver.call(a,b)}),b.attachEvent("onmouseout",function(b){a.handleMouseOut.call(a,
69
+ b)}))},dispDUpd:function(){var a;this.dispatchDataUpdated&&(this.dispatchDataUpdated=!1,a="dataUpdated",this.fire(a,{type:a,chart:this}));this.chartCreated||(a="init",this.fire(a,{type:a,chart:this}));this.chartRendered||(a="rendered",this.fire(a,{type:a,chart:this}),this.chartRendered=!0);a="drawn";this.fire(a,{type:a,chart:this})},brrr:function(){var a=this.product,b=a+".com",c=window.location.hostname.split("."),d;2<=c.length&&(d=c[c.length-2]+"."+c[c.length-1]);AmCharts.remove(this.bbset);if(d!=
70
+ b){var b=b+"/?utm_source=swf&utm_medium=demo&utm_campaign=jsDemo"+a,f="chart by ",c=145;"ammap"==a&&(f="tool by ",c=125);d=AmCharts.rect(this.container,c,20,"#FFFFFF",1);f=AmCharts.text(this.container,f+a+".com","#000000","Verdana",11,"start");f.translate(7,9);d=this.container.set([d,f]);"ammap"==a&&d.translate(this.realWidth-c,0);this.bbset=d;this.linkSet.push(d);d.setAttr("cursor","pointer");d.click(function(){window.location.href="http://"+b});for(a=0;a<d.length;a++)d[a].attr({cursor:"pointer"})}},
71
+ validateSize:function(){var a=this;a.measure();var b=a.legend;if((a.realWidth!=a.previousWidth||a.realHeight!=a.previousHeight)&&0<a.realWidth&&0<a.realHeight){a.sizeChanged=!0;if(b){clearTimeout(a.legendInitTO);var c=setTimeout(function(){b.invalidateSize()},100);a.timeOuts.push(c);a.legendInitTO=c}a.marginsUpdated="xy"!=a.chartType?!1:!0;clearTimeout(a.initTO);c=setTimeout(function(){a.initChart()},150);a.timeOuts.push(c);a.initTO=c}a.renderFix();b&&b.renderFix()},invalidateSize:function(){this.previousHeight=
72
+ this.previousWidth=NaN;this.invalidateSizeReal()},invalidateSizeReal:function(){var a=this;a.marginsUpdated=!1;clearTimeout(a.validateTO);var b=setTimeout(function(){a.validateSize()},5);a.timeOuts.push(b);a.validateTO=b},validateData:function(a){this.chartCreated&&(this.dataChanged=!0,this.marginsUpdated="xy"!=this.chartType?!1:!0,this.initChart(a))},validateNow:function(){this.listenersAdded=!1;this.write(this.div)},showItem:function(a){a.hidden=!1;this.initChart()},hideItem:function(a){a.hidden=
73
+ !0;this.initChart()},hideBalloon:function(){var a=this;clearInterval(a.hoverInt);clearTimeout(a.balloonTO);a.hoverInt=setTimeout(function(){a.hideBalloonReal.call(a)},a.hideBalloonTime)},cleanChart:function(){},hideBalloonReal:function(){var a=this.balloon;a&&a.hide()},showBalloon:function(a,b,c,d,f){var e=this;clearTimeout(e.balloonTO);clearInterval(e.hoverInt);e.balloonTO=setTimeout(function(){e.showBalloonReal.call(e,a,b,c,d,f)},1)},showBalloonReal:function(a,b,c,d,f){this.handleMouseMove();var e=
74
+ this.balloon;e.enabled&&(e.followCursor(!1),e.changeColor(b),!c||e.fixedPosition?(e.setPosition(d,f),e.followCursor(!1)):e.followCursor(!0),a&&e.showBalloon(a))},handleTouchMove:function(a){this.hideBalloon();var b=this.chartDiv;a.touches&&(a=a.touches.item(0),this.mouseX=a.pageX-AmCharts.findPosX(b),this.mouseY=a.pageY-AmCharts.findPosY(b))},handleMouseOver:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!0},handleMouseOut:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!1},handleMouseMove:function(a){if(this.mouseIsOver){var b=
75
+ this.chartDiv;a||(a=window.event);var c,d;if(a){this.posX=AmCharts.findPosX(b);this.posY=AmCharts.findPosY(b);switch(this.mouseMode){case 1:c=a.clientX-this.posX;d=a.clientY-this.posY;if(!this.divIsFixed){var b=document.body,f,e;b&&(f=b.scrollLeft,y1=b.scrollTop);if(b=document.documentElement)e=b.scrollLeft,y2=b.scrollTop;f=Math.max(f,e);e=Math.max(y1,y2);c+=f;d+=e}break;case 0:this.divIsFixed?(c=a.clientX-this.posX,d=a.clientY-this.posY):(c=a.pageX-this.posX,d=a.pageY-this.posY)}a.touches&&(a=a.touches.item(0),
76
+ c=a.pageX-this.posX,d=a.pageY-this.posY);this.mouseX=c-this.dmouseX;this.mouseY=d-this.dmouseY}}},handleTouchStart:function(a){this.handleMouseDown(a)},handleTouchEnd:function(a){AmCharts.resetMouseOver();this.handleReleaseOutside(a)},handleReleaseOutside:function(a){},handleMouseDown:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!0;a&&a.preventDefault&&a.preventDefault()},addLegend:function(a,b){a=AmCharts.processObject(a,AmCharts.AmLegend);var c;c="object"!=typeof b?document.getElementById(b):
77
+ b;this.legend=a;a.chart=this;c?(a.div=c,a.position="outside",a.autoMargins=!1):a.div=this.legendDiv;c=this.handleLegendEvent;this.listenTo(a,"showItem",c);this.listenTo(a,"hideItem",c);this.listenTo(a,"clickMarker",c);this.listenTo(a,"rollOverItem",c);this.listenTo(a,"rollOutItem",c);this.listenTo(a,"rollOverMarker",c);this.listenTo(a,"rollOutMarker",c);this.listenTo(a,"clickLabel",c);return a},removeLegend:function(){this.legend=void 0;this.legendDiv.innerHTML=""},handleResize:function(){(AmCharts.isPercents(this.width)||
78
+ AmCharts.isPercents(this.height))&&this.invalidateSizeReal();this.renderFix()},renderFix:function(){if(!AmCharts.VML){var a=this.container;a&&a.renderFix()}},getSVG:function(){if(AmCharts.hasSVG)return this.container},animate:function(a,b,c,d,f,e,g){a["an_"+b]&&AmCharts.removeFromArray(this.animations,a["an_"+b]);c={obj:a,frame:0,attribute:b,from:c,to:d,time:f,effect:e,suffix:g};a["an_"+b]=c;this.animations.push(c);return c},setLegendData:function(a){var b=this.legend;b&&b.setData(a)},startInterval:function(){var a=
79
+ this;clearInterval(a.interval);a.interval=setInterval(function(){a.updateAnimations.call(a)},AmCharts.updateRate)},stopAnim:function(a){AmCharts.removeFromArray(this.animations,a)},updateAnimations:function(){var a;this.container&&this.container.update();for(a=this.animations.length-1;0<=a;a--){var b=this.animations[a],c=1E3*b.time/AmCharts.updateRate,d=b.frame+1,f=b.obj,e=b.attribute;if(d<=c){b.frame++;var g=Number(b.from),h=Number(b.to)-g,c=AmCharts[b.effect](0,d,g,h,c);0===h?this.animations.splice(a,
80
+ 1):f.node.style[e]=c+b.suffix}else f.node.style[e]=Number(b.to)+b.suffix,this.animations.splice(a,1)}}});AmCharts.Slice=AmCharts.Class({construct:function(){}});AmCharts.SerialDataItem=AmCharts.Class({construct:function(){}});AmCharts.GraphDataItem=AmCharts.Class({construct:function(){}});AmCharts.Guide=AmCharts.Class({construct:function(){}});AmCharts.AmBalloon=AmCharts.Class({construct:function(){this.enabled=!0;this.fillColor="#FFFFFF";this.fillAlpha=0.8;this.borderThickness=2;this.borderColor="#FFFFFF";this.borderAlpha=1;this.cornerRadius=0;this.maximumWidth=220;this.horizontalPadding=8;this.verticalPadding=4;this.pointerWidth=6;this.pointerOrientation="V";this.color="#000000";this.adjustBorderColor=!0;this.show=this.follow=this.showBullet=!1;this.bulletSize=3;this.shadowAlpha=0.4;this.shadowColor="#000000";this.fadeOutDuration=this.animationDuration=
81
+ 0.3;this.fixedPosition=!1;this.offsetY=6;this.offsetX=1;AmCharts.isModern||(this.offsetY*=1.5)},draw:function(){var a=this.pointToX,b=this.pointToY;this.deltaSignX=this.deltaSignY=1;var c=this.chart;AmCharts.VML&&(this.fadeOutDuration=0);this.xAnim&&c.stopAnim(this.xAnim);this.yAnim&&c.stopAnim(this.yAnim);if(!isNaN(a)){var d=this.follow,f=c.container,e=this.set;AmCharts.remove(e);this.removeDiv();this.set=e=f.set();c.balloonsSet.push(e);if(this.show){var g=this.l,h=this.t,k=this.r,l=this.b,m=this.balloonColor,
82
+ n=this.fillColor,q=this.borderColor,r=n;void 0!=m&&(this.adjustBorderColor?r=q=m:n=m);var A=this.horizontalPadding,z=this.verticalPadding,p=this.pointerWidth,s=this.pointerOrientation,y=this.cornerRadius,t=c.fontFamily,w=this.fontSize;void 0==w&&(w=c.fontSize);var m=document.createElement("div"),u=m.style;u.position="absolute";m.innerHTML='<div style="max-width:'+this.maxWidth+"px; font-size:"+w+"px; color:"+this.color+"; font-family:"+t+'">'+this.text+"</div>";c.chartDiv.appendChild(m);this.textDiv=
83
+ m;w=m.offsetWidth;t=m.offsetHeight;m.clientHeight&&(w=m.clientWidth,t=m.clientHeight);var t=t+2*z,x=w+2*A;window.opera&&(t+=2);var v,C=!1;v=this.offsetY;c.handDrawn&&(v+=c.handDrawScatter+2);"H"!=s?(w=a-x/2,b<h+t+10&&"down"!=s?(C=!0,d&&(b+=v),v=b+p,this.deltaSignY=-1):(d&&(b-=v),v=b-t-p,this.deltaSignY=1)):(2*p>t&&(p=t/2),v=b-t/2,a<g+(k-g)/2?(w=a+p,this.deltaSignX=-1):(w=a-x-p,this.deltaSignX=1));v+t>=l&&(v=l-t);v<h&&(v=h);w<g&&(w=g);w+x>k&&(w=k-x);var h=v+z,l=w+A,z=this.shadowAlpha,E=this.shadowColor,
84
+ A=this.borderThickness,B=this.bulletSize,D;0<y||0===p?(0<z&&(a=AmCharts.rect(f,x,t,n,0,A+1,E,z,this.cornerRadius),AmCharts.isModern?a.translate(1,1):a.translate(4,4),e.push(a)),n=AmCharts.rect(f,x,t,n,this.fillAlpha,A,q,this.borderAlpha,this.cornerRadius),this.showBullet&&(D=AmCharts.circle(f,B,r,this.fillAlpha),e.push(D))):(r=[],y=[],"H"!=s?(g=a-w,g>x-p&&(g=x-p),g<p&&(g=p),r=[0,g-p,a-w,g+p,x,x,0,0],y=C?[0,0,b-v,0,0,t,t,0]:[t,t,b-v,t,t,0,0,t]):(r=b-v,r>t-p&&(r=t-p),r<p&&(r=p),y=[0,r-p,b-v,r+p,t,t,
85
+ 0,0],r=a<g+(k-g)/2?[0,0,w<a?0:a-w,0,0,x,x,0]:[x,x,w+x>a?x:a-w,x,x,0,0,x]),0<z&&(a=AmCharts.polygon(f,r,y,n,0,A,E,z),a.translate(1,1),e.push(a)),n=AmCharts.polygon(f,r,y,n,this.fillAlpha,A,q,this.borderAlpha));this.bg=n;e.push(n);n.toFront();f=1*this.deltaSignX;u.left=l+"px";u.top=h+"px";e.translate(w-f,v);n=n.getBBox();this.bottom=v+t+1;this.yPos=n.y+v;D&&D.translate(this.pointToX-w+f,b-v);b=this.animationDuration;0<this.animationDuration&&!d&&!isNaN(this.prevX)&&(e.translate(this.prevX,this.prevY),
86
+ e.animate({translate:w-f+","+v},b,"easeOutSine"),m&&(u.left=this.prevTX+"px",u.top=this.prevTY+"px",this.xAnim=c.animate({node:m},"left",this.prevTX,l,b,"easeOutSine","px"),this.yAnim=c.animate({node:m},"top",this.prevTY,h,b,"easeOutSine","px")));this.prevX=w-f;this.prevY=v;this.prevTX=l;this.prevTY=h}}},followMouse:function(){if(this.follow&&this.show){var a=this.chart.mouseX-this.offsetX*this.deltaSignX,b=this.chart.mouseY;this.pointToX=a;this.pointToY=b;if(a!=this.previousX||b!=this.previousY)if(this.previousX=
87
+ a,this.previousY=b,0===this.cornerRadius)this.draw();else{var c=this.set;if(c){var d=c.getBBox(),a=a-d.width/2,f=b-d.height-10;a<this.l&&(a=this.l);a>this.r-d.width&&(a=this.r-d.width);f<this.t&&(f=b+10);c.translate(a,f);b=this.textDiv.style;b.left=a+this.horizontalPadding+"px";b.top=f+this.verticalPadding+"px"}}}},changeColor:function(a){this.balloonColor=a},setBounds:function(a,b,c,d){this.l=a;this.t=b;this.r=c;this.b=d;this.destroyTO&&clearTimeout(this.destroyTO)},showBalloon:function(a){this.text=
88
+ a;this.show=!0;this.destroyTO&&clearTimeout(this.destroyTO);a=this.chart;this.fadeAnim1&&a.stopAnim(this.fadeAnim1);this.fadeAnim2&&a.stopAnim(this.fadeAnim2);this.draw()},hide:function(){var a=this,b=a.fadeOutDuration,c=a.chart;if(0<b){a.destroyTO=setTimeout(function(){a.destroy.call(a)},1E3*b);a.follow=!1;a.show=!1;var d=a.set;d&&(d.setAttr("opacity",a.fillAlpha),a.fadeAnim1=d.animate({opacity:0},b,"easeInSine"));a.textDiv&&(a.fadeAnim2=c.animate({node:a.textDiv},"opacity",1,0,b,"easeInSine",""))}else a.show=
89
+ !1,a.follow=!1,a.destroy()},setPosition:function(a,b,c){this.pointToX=a;this.pointToY=b;c&&(a==this.previousX&&b==this.previousY||this.draw());this.previousX=a;this.previousY=b},followCursor:function(a){var b=this;(b.follow=a)?(b.pShowBullet=b.showBullet,b.showBullet=!1):void 0!==b.pShowBullet&&(b.showBullet=b.pShowBullet);clearInterval(b.interval);var c=b.chart.mouseX,d=b.chart.mouseY;!isNaN(c)&&a&&(b.pointToX=c-b.offsetX*b.deltaSignX,b.pointToY=d,b.followMouse(),b.interval=setInterval(function(){b.followMouse.call(b)},
90
+ 40))},removeDiv:function(){if(this.textDiv){var a=this.textDiv.parentNode;a&&a.removeChild(this.textDiv)}},destroy:function(){clearInterval(this.interval);AmCharts.remove(this.set);this.removeDiv();this.set=null}});AmCharts.circle=function(a,b,c,d,f,e,g,h){if(void 0==f||0===f)f=1;void 0===e&&(e="#000000");void 0===g&&(g=0);d={fill:c,stroke:e,"fill-opacity":d,"stroke-width":f,"stroke-opacity":g};a=a.circle(0,0,b).attr(d);h&&a.gradient("radialGradient",[c,AmCharts.adjustLuminosity(c,-0.6)]);return a};
91
+ AmCharts.text=function(a,b,c,d,f,e,g,h){e||(e="middle");"right"==e&&(e="end");isNaN(h)&&(h=1);void 0!==b&&(b=String(b),AmCharts.isIE&&!AmCharts.isModern&&(b=b.replace("&amp;","&"),b=b.replace("&","&amp;")));c={fill:c,"font-family":d,"font-size":f,opacity:h};!0===g&&(c["font-weight"]="bold");c["text-anchor"]=e;return a.text(b,c)};
92
+ AmCharts.polygon=function(a,b,c,d,f,e,g,h,k,l,m){isNaN(e)&&(e=0);isNaN(h)&&(h=f);var n=d,q=!1;"object"==typeof n&&1<n.length&&(q=!0,n=n[0]);void 0===g&&(g=n);f={fill:n,stroke:g,"fill-opacity":f,"stroke-width":e,"stroke-opacity":h};void 0!==m&&0<m&&(f["stroke-dasharray"]=m);m=AmCharts.dx;e=AmCharts.dy;a.handDrawn&&(c=AmCharts.makeHD(b,c,a.handDrawScatter),b=c[0],c=c[1]);g=Math.round;l&&(g=AmCharts.doNothing);l="M"+(g(b[0])+m)+","+(g(c[0])+e);for(h=1;h<b.length;h++)l+=" L"+(g(b[h])+m)+","+(g(c[h])+
93
+ e);a=a.path(l+" Z").attr(f);q&&a.gradient("linearGradient",d,k);return a};
94
+ AmCharts.rect=function(a,b,c,d,f,e,g,h,k,l,m){isNaN(e)&&(e=0);void 0===k&&(k=0);void 0===l&&(l=270);isNaN(f)&&(f=0);var n=d,q=!1;"object"==typeof n&&(n=n[0],q=!0);void 0===g&&(g=n);void 0===h&&(h=f);b=Math.round(b);c=Math.round(c);var r=0,A=0;0>b&&(b=Math.abs(b),r=-b);0>c&&(c=Math.abs(c),A=-c);r+=AmCharts.dx;A+=AmCharts.dy;f={fill:n,stroke:g,"fill-opacity":f,"stroke-opacity":h};void 0!==m&&0<m&&(f["stroke-dasharray"]=m);a=a.rect(r,A,b,c,k,e).attr(f);q&&a.gradient("linearGradient",d,l);return a};
95
+ AmCharts.bullet=function(a,b,c,d,f,e,g,h,k,l,m){var n;"circle"==b&&(b="round");switch(b){case "round":n=AmCharts.circle(a,c/2,d,f,e,g,h);break;case "square":n=AmCharts.polygon(a,[-c/2,c/2,c/2,-c/2],[c/2,c/2,-c/2,-c/2],d,f,e,g,h,l-180);break;case "diamond":n=AmCharts.polygon(a,[-c/2,0,c/2,0],[0,-c/2,0,c/2],d,f,e,g,h);break;case "triangleUp":n=AmCharts.triangle(a,c,0,d,f,e,g,h);break;case "triangleDown":n=AmCharts.triangle(a,c,180,d,f,e,g,h);break;case "triangleLeft":n=AmCharts.triangle(a,c,270,d,f,
96
+ e,g,h);break;case "triangleRight":n=AmCharts.triangle(a,c,90,d,f,e,g,h);break;case "bubble":n=AmCharts.circle(a,c/2,d,f,e,g,h,!0);break;case "yError":n=a.set();n.push(AmCharts.line(a,[0,0],[-c/2,c/2],d,f,e));n.push(AmCharts.line(a,[-k,k],[-c/2,-c/2],d,f,e));n.push(AmCharts.line(a,[-k,k],[c/2,c/2],d,f,e));break;case "xError":n=a.set(),n.push(AmCharts.line(a,[-c/2,c/2],[0,0],d,f,e)),n.push(AmCharts.line(a,[-c/2,-c/2],[-k,k],d,f,e)),n.push(AmCharts.line(a,[c/2,c/2],[-k,k],d,f,e))}n&&n.pattern(m);return n};
97
  AmCharts.triangle=function(a,b,c,d,f,e,g,h){if(void 0===e||0===e)e=1;void 0===g&&(g="#000");void 0===h&&(h=0);d={fill:d,stroke:g,"fill-opacity":f,"stroke-width":e,"stroke-opacity":h};b/=2;var k;0===c&&(k=" M"+-b+","+b+" L0,"+-b+" L"+b+","+b+" Z");180==c&&(k=" M"+-b+","+-b+" L0,"+b+" L"+b+","+-b+" Z");90==c&&(k=" M"+-b+","+-b+" L"+b+",0 L"+-b+","+b+" Z");270==c&&(k=" M"+-b+",0 L"+b+","+b+" L"+b+","+-b+" Z");return a.path(k).attr(d)};
98
+ AmCharts.line=function(a,b,c,d,f,e,g,h,k,l,m){if(a.handDrawn&&!m)return AmCharts.handDrawnLine(a,b,c,d,f,e,g,h,k,l,m);e={fill:"none","stroke-width":e};void 0!==g&&0<g&&(e["stroke-dasharray"]=g);isNaN(f)||(e["stroke-opacity"]=f);d&&(e.stroke=d);d=Math.round;l&&(d=AmCharts.doNothing);l=AmCharts.dx;f=AmCharts.dy;g="M"+(d(b[0])+l)+","+(d(c[0])+f);for(h=1;h<b.length;h++)g+=" L"+(d(b[h])+l)+","+(d(c[h])+f);if(AmCharts.VML)return a.path(g,void 0,!0).attr(e);k&&(g+=" M0,0 L0,0");return a.path(g).attr(e)};
99
+ AmCharts.makeHD=function(a,b,c){for(var d=[],f=[],e=1;e<a.length;e++)for(var g=Number(a[e-1]),h=Number(b[e-1]),k=Number(a[e]),l=Number(b[e]),m=Math.sqrt(Math.pow(k-g,2)+Math.pow(l-h,2)),m=Math.round(m/50)+1,k=(k-g)/m,l=(l-h)/m,n=0;n<=m;n++){var q=g+n*k+Math.random()*c,r=h+n*l+Math.random()*c;d.push(q);f.push(r)}return[d,f]};
100
+ AmCharts.handDrawnLine=function(a,b,c,d,f,e,g,h,k,l,m){var n=a.set();for(m=1;m<b.length;m++)for(var q=[b[m-1],b[m]],r=[c[m-1],c[m]],r=AmCharts.makeHD(q,r,a.handDrawScatter),q=r[0],r=r[1],A=1;A<q.length;A++)n.push(AmCharts.line(a,[q[A-1],q[A]],[r[A-1],r[A]],d,f,e+Math.random()*a.handDrawThickness-a.handDrawThickness/2,g,h,k,l,!0));return n};AmCharts.doNothing=function(a){return a};
101
+ AmCharts.wedge=function(a,b,c,d,f,e,g,h,k,l,m,n){var q=Math.round;e=q(e);g=q(g);h=q(h);var r=q(g/e*h),A=AmCharts.VML,z=359.5+e/100;359.94<z&&(z=359.94);f>=z&&(f=z);var p=1/180*Math.PI,z=b+Math.sin(d*p)*h,s=c-Math.cos(d*p)*r,y=b+Math.sin(d*p)*e,t=c-Math.cos(d*p)*g,w=b+Math.sin((d+f)*p)*e,u=c-Math.cos((d+f)*p)*g,x=b+Math.sin((d+f)*p)*h,p=c-Math.cos((d+f)*p)*r,v={fill:AmCharts.adjustLuminosity(l.fill,-0.2),"stroke-opacity":0},C=0;180<Math.abs(f)&&(C=1);d=a.set();var E;A&&(z=q(10*z),y=q(10*y),w=q(10*
102
+ w),x=q(10*x),s=q(10*s),t=q(10*t),u=q(10*u),p=q(10*p),b=q(10*b),k=q(10*k),c=q(10*c),e*=10,g*=10,h*=10,r*=10,1>Math.abs(f)&&1>=Math.abs(w-y)&&1>=Math.abs(u-t)&&(E=!0));f="";var B;0<k&&(A?(B=" M"+z+","+(s+k)+" L"+y+","+(t+k),E||(B+=" A"+(b-e)+","+(k+c-g)+","+(b+e)+","+(k+c+g)+","+y+","+(t+k)+","+w+","+(u+k)),B+=" L"+x+","+(p+k),0<h&&(E||(B+=" B"+(b-h)+","+(k+c-r)+","+(b+h)+","+(k+c+r)+","+x+","+(k+p)+","+z+","+(k+s)))):(B=" M"+z+","+(s+k)+" L"+y+","+(t+k)+(" A"+e+","+g+",0,"+C+",1,"+w+","+(u+k)+" L"+
103
+ x+","+(p+k)),0<h&&(B+=" A"+h+","+r+",0,"+C+",0,"+z+","+(s+k))),B+=" Z",B=a.path(B,void 0,void 0,"1000,1000").attr(v),d.push(B),B=a.path(" M"+z+","+s+" L"+z+","+(s+k)+" L"+y+","+(t+k)+" L"+y+","+t+" L"+z+","+s+" Z",void 0,void 0,"1000,1000").attr(v),k=a.path(" M"+w+","+u+" L"+w+","+(u+k)+" L"+x+","+(p+k)+" L"+x+","+p+" L"+w+","+u+" Z",void 0,void 0,"1000,1000").attr(v),d.push(B),d.push(k));A?(E||(f=" A"+q(b-e)+","+q(c-g)+","+q(b+e)+","+q(c+g)+","+q(y)+","+q(t)+","+q(w)+","+q(u)),e=" M"+q(z)+","+q(s)+
104
+ " L"+q(y)+","+q(t)+f+" L"+q(x)+","+q(p)):e=" M"+z+","+s+" L"+y+","+t+(" A"+e+","+g+",0,"+C+",1,"+w+","+u)+" L"+x+","+p;0<h&&(A?E||(e+=" B"+(b-h)+","+(c-r)+","+(b+h)+","+(c+r)+","+x+","+p+","+z+","+s):e+=" A"+h+","+r+",0,"+C+",0,"+z+","+s);a.handDrawn&&(b=AmCharts.line(a,[z,y],[s,t],l.stroke,l.thickness*Math.random()*a.handDrawThickness,l["stroke-opacity"]),d.push(b));a=a.path(e+" Z",void 0,void 0,"1000,1000").attr(l);if(m){b=[];for(c=0;c<m.length;c++)b.push(AmCharts.adjustLuminosity(l.fill,m[c]));
105
+ 0<b.length&&a.gradient("linearGradient",b)}a.pattern(n);d.push(a);return d};AmCharts.adjustLuminosity=function(a,b){a=String(a).replace(/[^0-9a-f]/gi,"");6>a.length&&(a=String(a[0])+String(a[0])+String(a[1])+String(a[1])+String(a[2])+String(a[2]));b=b||0;var c="#",d,f;for(f=0;3>f;f++)d=parseInt(a.substr(2*f,2),16),d=Math.round(Math.min(Math.max(0,d+d*b),255)).toString(16),c+=("00"+d).substr(d.length);return c};AmCharts.AmLegend=AmCharts.Class({construct:function(){this.createEvents("rollOverMarker","rollOverItem","rollOutMarker","rollOutItem","showItem","hideItem","clickMarker","rollOverItem","rollOutItem","clickLabel");this.position="bottom";this.borderColor=this.color="#000000";this.borderAlpha=0;this.markerLabelGap=5;this.verticalGap=10;this.align="left";this.horizontalGap=0;this.spacing=10;this.markerDisabledColor="#AAB3B3";this.markerType="square";this.markerSize=16;this.markerBorderThickness=this.markerBorderAlpha=
106
+ 1;this.marginBottom=this.marginTop=0;this.marginLeft=this.marginRight=20;this.autoMargins=!0;this.valueWidth=50;this.switchable=!0;this.switchType="x";this.switchColor="#FFFFFF";this.rollOverColor="#CC0000";this.reversedOrder=!1;this.labelText="[[title]]";this.valueText="[[value]]";this.useMarkerColorForLabels=!1;this.rollOverGraphAlpha=1;this.textClickEnabled=!1;this.equalWidths=!0;this.dateFormat="DD-MM-YYYY";this.backgroundColor="#FFFFFF";this.backgroundAlpha=0;this.useGraphSettings=!1;this.showEntries=
107
+ !0},setData:function(a){this.legendData=a;this.invalidateSize()},invalidateSize:function(){this.destroy();this.entries=[];this.valueLabels=[];(AmCharts.ifArray(this.legendData)||AmCharts.ifArray(this.data))&&this.drawLegend()},drawLegend:function(){var a=this.chart,b=this.position,c=this.width,d=a.divRealWidth,f=a.divRealHeight,e=this.div,g=this.legendData;this.data&&(g=this.data);isNaN(this.fontSize)&&(this.fontSize=a.fontSize);if("right"==b||"left"==b)this.maxColumns=1,this.marginLeft=this.marginRight=
108
+ 10;else if(this.autoMargins){this.marginRight=a.marginRight;this.marginLeft=a.marginLeft;var h=a.autoMarginOffset;"bottom"==b?(this.marginBottom=h,this.marginTop=0):(this.marginTop=h,this.marginBottom=0)}c=void 0!==c?AmCharts.toCoordinate(c,d):a.realWidth;"outside"==b?(c=e.offsetWidth,f=e.offsetHeight,e.clientHeight&&(c=e.clientWidth,f=e.clientHeight)):(e.style.width=c+"px",e.className="amChartsLegend");this.divWidth=c;this.container=new AmCharts.AmDraw(e,c,f,a);this.lx=0;this.ly=8;b=this.markerSize;
109
+ b>this.fontSize&&(this.ly=b/2-1);0<b&&(this.lx+=b+this.markerLabelGap);this.titleWidth=0;if(b=this.title)a=AmCharts.text(this.container,b,this.color,a.fontFamily,this.fontSize,"start",!0),a.translate(this.marginLeft,this.marginTop+this.verticalGap+this.ly+1),a=a.getBBox(),this.titleWidth=a.width+15,this.titleHeight=a.height+6;this.index=this.maxLabelWidth=0;if(this.showEntries){for(a=0;a<g.length;a++)this.createEntry(g[a]);for(a=this.index=0;a<g.length;a++)this.createValue(g[a])}this.arrangeEntries();
110
+ this.updateValues()},arrangeEntries:function(){var a=this.position,b=this.marginLeft+this.titleWidth,c=this.marginRight,d=this.marginTop,f=this.marginBottom,e=this.horizontalGap,g=this.div,h=this.divWidth,k=this.maxColumns,l=this.verticalGap,m=this.spacing,n=h-c-b,q=0,r=0,A=this.container,z=A.set();this.set=z;A=A.set();z.push(A);var p=this.entries,s,y;for(y=0;y<p.length;y++){s=p[y].getBBox();var t=s.width;t>q&&(q=t);s=s.height;s>r&&(r=s)}var w=t=0,u=e;for(y=0;y<p.length;y++){var x=p[y];this.reversedOrder&&
111
+ (x=p[p.length-y-1]);s=x.getBBox();var v;this.equalWidths?v=e+w*(q+m+this.markerLabelGap):(v=u,u=u+s.width+e+m);v+s.width>n&&0<y&&0!==w&&(t++,w=0,v=e,u=v+s.width+e+m);x.translate(v,(r+l)*t);w++;!isNaN(k)&&w>=k&&(w=0,t++);A.push(x)}s=A.getBBox();k=s.height+2*l-1;"left"==a||"right"==a?(h=s.width+2*e,g.style.width=h+b+c+"px"):h=h-b-c-1;c=AmCharts.polygon(this.container,[0,h,h,0],[0,0,k,k],this.backgroundColor,this.backgroundAlpha,1,this.borderColor,this.borderAlpha);z.push(c);z.translate(b,d);c.toBack();
112
+ b=e;if("top"==a||"bottom"==a||"absolute"==a||"outside"==a)"center"==this.align?b=e+(h-s.width)/2:"right"==this.align&&(b=e+h-s.width);A.translate(b,l+1);this.titleHeight>k&&(k=this.titleHeight);a=k+d+f+1;0>a&&(a=0);g.style.height=Math.round(a)+"px"},createEntry:function(a){if(!1!==a.visibleInLegend){var b=this.chart,c=a.markerType;c||(c=this.markerType);var d=a.color,f=a.alpha;a.legendKeyColor&&(d=a.legendKeyColor());a.legendKeyAlpha&&(f=a.legendKeyAlpha());var e;!0===a.hidden&&(e=d=this.markerDisabledColor);
113
+ var g=a.pattern,h=a.customMarker;h||(h=this.customMarker);var k=this.container,l=this.markerSize,m=0;if(this.useGraphSettings)if(c=a.type,"line"==c||"step"==c||"smoothedLine"==c||"ohlc"==c)this.switchType=void 0,g=k.set(),a.hidden||(d=a.lineColor,e=a.bulletBorderColor),m=AmCharts.line(k,[0,2*l],[l/2,l/2],d,a.lineAlpha,a.lineThickness,a.dashLength),g.push(m),a.bullet&&(a.hidden||(d=a.bulletColor),m=AmCharts.bullet(k,a.bullet,a.bulletSize,d,a.bulletAlpha,a.bulletBorderThickness,e,a.bulletBorderAlpha))&&
114
+ (m.translate(l+1,l/2),g.push(m)),m=l;else{var n;a.getGradRotation&&(n=a.getGradRotation());(g=this.createMarker("square",a.fillColors,a.fillAlphas,a.lineThickness,d,a.lineAlpha,n,g))&&g.translate(l/2,l/2)}else h?(b.path&&(h=b.path+h),g=k.image(h,0,0,l,l)):(g=this.createMarker(c,d,f,void 0,void 0,void 0,void 0,g))&&g.translate(l/2,l/2);this.addListeners(g,a);k=k.set([g]);this.switchable&&k.setAttr("cursor","pointer");if(e=this.switchType)n="x"==e?this.createX():this.createV(),n.dItem=a,!0!==a.hidden?
115
+ "x"==e?n.hide():n.show():"x"!=e&&n.hide(),this.switchable||n.hide(),this.addListeners(n,a),a.legendSwitch=n,k.push(n);e=this.color;a.showBalloon&&this.textClickEnabled&&void 0!==this.selectedColor&&(e=this.selectedColor);this.useMarkerColorForLabels&&(e=d);!0===a.hidden&&(e=this.markerDisabledColor);d=AmCharts.massReplace(this.labelText,{"[[title]]":a.title});n=this.fontSize;g&&l<=n&&g.translate(l/2,l/2+this.ly-n/2+(n+2-l)/2);var q;d&&(d=AmCharts.fixNewLines(d),a.legendTextReal=d,q=AmCharts.text(this.container,
116
+ d,e,b.fontFamily,n,"start"),q.translate(this.lx+m,this.ly),k.push(q),b=q.getBBox().width,this.maxLabelWidth<b&&(this.maxLabelWidth=b));this.entries[this.index]=k;a.legendEntry=this.entries[this.index];a.legendLabel=q;this.index++}},addListeners:function(a,b){var c=this;a&&a.mouseover(function(){c.rollOverMarker(b)}).mouseout(function(){c.rollOutMarker(b)}).click(function(){c.clickMarker(b)})},rollOverMarker:function(a){this.switchable&&this.dispatch("rollOverMarker",a);this.dispatch("rollOverItem",
117
+ a)},rollOutMarker:function(a){this.switchable&&this.dispatch("rollOutMarker",a);this.dispatch("rollOutItem",a)},clickMarker:function(a){this.switchable?!0===a.hidden?this.dispatch("showItem",a):this.dispatch("hideItem",a):this.textClickEnabled&&this.dispatch("clickMarker",a)},rollOverLabel:function(a){a.hidden||(this.textClickEnabled&&a.legendLabel&&a.legendLabel.attr({fill:this.rollOverColor}),this.dispatch("rollOverItem",a))},rollOutLabel:function(a){if(!a.hidden){if(this.textClickEnabled&&a.legendLabel){var b=
118
+ this.color;void 0!==this.selectedColor&&a.showBalloon&&(b=this.selectedColor);this.useMarkerColorForLabels&&(b=a.lineColor,void 0===b&&(b=a.color));a.legendLabel.attr({fill:b})}this.dispatch("rollOutItem",a)}},clickLabel:function(a){this.textClickEnabled?a.hidden||this.dispatch("clickLabel",a):this.switchable&&(!0===a.hidden?this.dispatch("showItem",a):this.dispatch("hideItem",a))},dispatch:function(a,b){this.fire(a,{type:a,dataItem:b,target:this,chart:this.chart})},createValue:function(a){var b=
119
+ this,c=b.fontSize;if(!1!==a.visibleInLegend){var d=b.maxLabelWidth;b.equalWidths||(b.valueAlign="left");"left"==b.valueAlign&&(d=a.legendEntry.getBBox().width);var f=d;if(b.valueText){var e=b.color;b.useMarkerColorForValues&&(e=a.color,a.legendKeyColor&&(e=a.legendKeyColor()));!0===a.hidden&&(e=b.markerDisabledColor);var g=b.valueText,d=d+b.lx+b.markerLabelGap+b.valueWidth,h="end";"left"==b.valueAlign&&(d-=b.valueWidth,h="start");e=AmCharts.text(b.container,g,e,b.chart.fontFamily,c,h);e.translate(d,
120
+ b.ly);b.entries[b.index].push(e);f+=b.valueWidth+2*b.markerLabelGap;e.dItem=a;b.valueLabels.push(e)}b.index++;e=b.markerSize;e<c+7&&(e=c+7,AmCharts.VML&&(e+=3));c=b.container.rect(b.markerSize,0,f,e,0,0).attr({stroke:"none",fill:"#ffffff","fill-opacity":0.005});c.dItem=a;b.entries[b.index-1].push(c);c.mouseover(function(){b.rollOverLabel(a)}).mouseout(function(){b.rollOutLabel(a)}).click(function(){b.clickLabel(a)})}},createV:function(){var a=this.markerSize;return AmCharts.polygon(this.container,
121
+ [a/5,a/2,a-a/5,a/2],[a/3,a-a/5,a/5,a/1.7],this.switchColor)},createX:function(){var a=this.markerSize-3,b={stroke:this.switchColor,"stroke-width":3},c=this.container,d=AmCharts.line(c,[3,a],[3,a]).attr(b),a=AmCharts.line(c,[3,a],[a,3]).attr(b);return this.container.set([d,a])},createMarker:function(a,b,c,d,f,e,g,h){var k=this.markerSize,l=this.container;f||(f=this.markerBorderColor);f||(f=b);isNaN(d)&&(d=this.markerBorderThickness);isNaN(e)&&(e=this.markerBorderAlpha);return AmCharts.bullet(l,a,k,
122
+ b,c,d,f,e,k,g,h)},validateNow:function(){this.invalidateSize()},updateValues:function(){var a=this.valueLabels,b=this.chart,c,d=this.data;for(c=0;c<a.length;c++){var f=a[c],e=f.dItem,g=" ";if(d)e.value?f.text(e.value):f.text("");else{if(void 0!==e.type){var h=e.currentDataItem,k=this.periodValueText;e.legendPeriodValueText&&(k=e.legendPeriodValueText);h?(g=this.valueText,e.legendValueText&&(g=e.legendValueText),g=b.formatString(g,h)):k&&(g=b.formatPeriodString(k,e))}else g=b.formatString(this.valueText,
123
+ e);(h=e.legendLabel)&&h.text(e.legendTextReal);f.text(g)}}},renderFix:function(){if(!AmCharts.VML){var a=this.container;a&&a.renderFix()}},destroy:function(){this.div.innerHTML="";AmCharts.remove(this.set)}});AmCharts.maps={};
124
+ AmCharts.AmMap=AmCharts.Class({inherits:AmCharts.AmChart,construct:function(){this.version="3.7.0";this.svgNotSupported="This browser doesn't support SVG. Use Chrome, Firefox, Internet Explorer 9 or later.";this.createEvents("rollOverMapObject","rollOutMapObject","clickMapObject","selectedObjectChanged","homeButtonClicked","zoomCompleted","dragCompleted","positionChanged","writeDevInfo","click");this.zoomDuration=1;this.zoomControl=new AmCharts.ZoomControl;this.fitMapToContainer=!0;this.mouseWheelZoomEnabled=
125
+ this.backgroundZoomsToTop=!1;this.allowClickOnSelectedObject=this.useHandCursorOnClickableOjects=this.showBalloonOnSelectedObject=!0;this.showObjectsAfterZoom=this.wheelBusy=!1;this.zoomOnDoubleClick=this.useObjectColorForBalloon=!0;this.allowMultipleDescriptionWindows=!1;this.dragMap=this.centerMap=this.linesAboveImages=!0;this.colorSteps=5;this.showAreasInList=!0;this.showLinesInList=this.showImagesInList=!1;this.areasProcessor=new AmCharts.AreasProcessor(this);this.areasSettings=new AmCharts.AreasSettings;
126
+ this.imagesProcessor=new AmCharts.ImagesProcessor(this);this.imagesSettings=new AmCharts.ImagesSettings;this.linesProcessor=new AmCharts.LinesProcessor(this);this.linesSettings=new AmCharts.LinesSettings;this.showDescriptionOnHover=!1;AmCharts.AmMap.base.construct.call(this);this.product="ammap";this.areasClasses={}},initChart:function(){this.zoomInstantly=!0;if(this.sizeChanged&&AmCharts.hasSVG&&this.chartCreated){this.container.setSize(this.realWidth,this.realHeight);this.resizeMap();this.drawBackground();
127
+ this.redrawLabels();this.drawTitles();this.processObjects();this.rescaleObjects();var a=this.container;this.zoomControl.init(this,a);this.drawBg();var b=this.smallMap;b&&b.init(this,a);(b=this.valueLegend)&&b.init(this,a);this.sizeChanged=!1;this.zoomToLongLat(this.zLevelTemp,this.zLongTemp,this.zLatTemp,!0);this.previousWidth=this.realWidth;this.previousHeight=this.realHeight;this.brrr();this.updateSmallMap();this.linkSet.toFront()}else(AmCharts.AmMap.base.initChart.call(this),AmCharts.hasSVG)?(this.dataChanged&&
128
+ (this.parseData(),this.dispatchDataUpdated=!0,this.dataChanged=!1,a=this.legend)&&(a.position="absolute",a.invalidateSize()),this.mouseWheelZoomEnabled&&this.addMouseWheel(),this.createDescriptionsDiv(),this.svgAreas=[],this.svgAreasById={},this.drawChart()):(document.createTextNode(this.svgNotSupported),this.chartDiv.style.textAlign="",this.chartDiv.setAttribute("class","ammapAlert"),this.chartDiv.innerHTML=this.svgNotSupported,clearInterval(this.interval))},invalidateSize:function(){var a=this.zoomLongitude();
129
+ isNaN(a)||(this.zLongTemp=a);a=this.zoomLatitude();isNaN(a)||(this.zLatTemp=a);a=this.zoomLevel();isNaN(a)||(this.zLevelTemp=a);AmCharts.AmMap.base.invalidateSize.call(this)},handleWheelReal:function(a){if(!this.wheelBusy){this.stopAnimation();var b=this.zoomLevel(),c=this.zoomControl,d=c.zoomFactor;this.wheelBusy=!0;a=AmCharts.fitToBounds(0<a?b*d:b/d,c.minZoomLevel,c.maxZoomLevel);d=this.mouseX/this.mapWidth;c=this.mouseY/this.mapHeight;d=(this.zoomX()-d)*(a/b)+d;b=(this.zoomY()-c)*(a/b)+c;this.zoomTo(a,
130
+ d,b)}},addLegend:function(a,b){a.position="absolute";a.autoMargins=!1;a.valueWidth=0;a.switchable=!1;AmCharts.AmMap.base.addLegend.call(this,a,b);return a},handleLegendEvent:function(){},createDescriptionsDiv:function(){if(!this.descriptionsDiv){var a=document.createElement("div");a.style.position="absolute";a.style.left=AmCharts.findPosX(this.div)+"px";a.style.top=AmCharts.findPosY(this.div)+"px";this.descriptionsDiv=a}this.div.appendChild(this.descriptionsDiv)},drawChart:function(){AmCharts.AmMap.base.drawChart.call(this);
131
+ var a=this.dataProvider;this.dataProvider=a=AmCharts.extend(a,new AmCharts.MapData,!0);this.areasSettings=AmCharts.processObject(this.areasSettings,AmCharts.AreasSettings);this.imagesSettings=AmCharts.processObject(this.imagesSettings,AmCharts.ImagesSettings);this.linesSettings=AmCharts.processObject(this.linesSettings,AmCharts.LinesSettings);this.mapContainer=this.container.set();this.graphsSet.push(this.mapContainer);var b;a.map&&(b=AmCharts.maps[a.map]);a.mapVar&&(b=a.mapVar);b?(this.svgData=b.svg,
132
+ this.getBounds(),this.buildEverything()):(a=a.mapURL)&&this.loadXml(a);this.balloonsSet.toFront()},drawBg:function(){var a=this;AmCharts.remove(a.bgSet);var b=AmCharts.rect(a.container,a.realWidth,a.realHeight,"#000",0.001);b.click(function(){a.handleBackgroundClick()});a.bgSet=b;a.set.push(b)},buildEverything:function(){var a=this;if(0<a.realWidth&&0<a.realHeight){var b=a.container;a.zoomControl=AmCharts.processObject(a.zoomControl,AmCharts.ZoomControl);a.zoomControl.init(this,b);a.drawBg();a.buildSVGMap();
133
+ var c=a.smallMap;c&&(a.smallMap=AmCharts.processObject(a.smallMap,AmCharts.SmallMap),c=a.smallMap,c.init(a,b));c=a.dataProvider;isNaN(c.zoomX)&&isNaN(c.zoomY)&&isNaN(c.zoomLatitude)&&isNaN(c.zoomLongitude)&&(a.centerMap?(c.zoomLatitude=a.coordinateToLatitude(a.mapHeight/2),c.zoomLongitude=a.coordinateToLongitude(a.mapWidth/2)):(c.zoomX=0,c.zoomY=0),a.zoomInstantly=!0);a.selectObject(a.dataProvider);a.processAreas();if(c=a.valueLegend)c=AmCharts.processObject(c,AmCharts.ValueLegend),a.valueLegend=
134
+ c,c.init(a,b);a.objectList&&(a.objectList=AmCharts.processObject(a.objectList,AmCharts.ObjectList),b=a.objectList)&&(a.clearObjectList(),b.init(a));clearInterval(a.mapInterval);a.mapInterval=setInterval(function(){a.update.call(a)},AmCharts.updateRate);a.dispDUpd();a.linkSet.toFront();a.chartCreated=!0}else a.cleanChart()},hideGroup:function(a){this.showHideGroup(a,!1)},showGroup:function(a){this.showHideGroup(a,!0)},showHideGroup:function(a,b){this.showHideReal(this.imagesProcessor.allObjects,a,
135
+ b);this.showHideReal(this.areasProcessor.allObjects,a,b);this.showHideReal(this.linesProcessor.allObjects,a,b)},showHideReal:function(a,b,c){var d;for(d=0;d<a.length;d++){var f=a[d];f.groupId==b&&(c?f.displayObject.show():f.displayObject.hide())}},update:function(){this.zoomControl.update()},animateMap:function(){var a=this;a.totalFrames=1E3*a.zoomDuration/AmCharts.updateRate;a.totalFrames+=1;a.frame=0;a.tweenPercent=0;setTimeout(function(){a.updateSize.call(a)},AmCharts.updateRate)},updateSize:function(){var a=
136
+ this,b=a.totalFrames;a.frame<=b?(a.frame++,b=AmCharts.easeOutSine(0,a.frame,0,1,b),1<=b?(b=1,a.wheelBusy=!1):setTimeout(function(){a.updateSize.call(a)},AmCharts.updateRate)):(b=1,a.wheelBusy=!1);a.tweenPercent=b;a.rescaleMapAndObjects()},rescaleMapAndObjects:function(){var a=this.initialScale,b=this.initialX,c=this.initialY,d=this.tweenPercent;this.mapContainer.translate(b+(this.finalX-b)*d,c+(this.finalY-c)*d,a+(this.finalScale-a)*d);this.rescaleObjects();this.positionChanged();this.updateSmallMap();
137
+ 1==d&&(a={type:"zoomCompleted",chart:this},this.fire(a.type,a))},updateSmallMap:function(){this.smallMap&&this.smallMap.update()},rescaleObjects:function(){var a=this.mapContainer.scale,b=this.imagesProcessor.objectsToResize,c;for(c=0;c<b.length;c++){var d=b[c].image;d.translate(d.x,d.y,b[c].scale/a,!0)}b=this.linesProcessor;if(d=b.linesToResize)for(c=0;c<d.length;c++){var f=d[c];f.line.setAttr("stroke-width",f.thickness/a)}b=b.objectsToResize;for(c=0;c<b.length;c++)d=b[c],d.translate(d.x,d.y,1/a)},
138
+ handleTouchStart:function(a){this.handleMouseMove(a);this.handleMouseDown(a)},handleTouchEnd:function(a){this.previousDistance=NaN;this.handleReleaseOutside(a)},handleMouseDown:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!0;if(this.chartCreated&&(this.dragMap&&(this.stopAnimation(),this.isDragging=!0,this.mapContainerClickX=this.mapContainer.x,this.mapContainerClickY=this.mapContainer.y,this.panEventsEnabled||a&&a.preventDefault&&a.preventDefault()),a||(a=window.event),a.shiftKey&&!0===
139
+ this.developerMode&&this.getDevInfo(),a&&a.touches)){var b=this.mouseX,c=this.mouseY,d=a.touches.item(1);d&&(a=d.pageX-AmCharts.findPosX(this.div),d=d.pageY-AmCharts.findPosY(this.div),this.middleXP=(b+(a-b)/2)/this.realWidth,this.middleYP=(c+(d-c)/2)/this.realHeight)}},stopDrag:function(){this.isDragging&&(this.isDragging=!1)},handleReleaseOutside:function(){this.stopDrag();this.zoomControl.draggerUp();this.mapWasDragged=!1;var a=this.mapContainer,b=this.mapContainerClickX,c=this.mapContainerClickY;
140
+ isNaN(b)||isNaN(c)||!(2<Math.abs(a.x-b)||Math.abs(a.y-c))||(this.mapWasDragged=!0,a={type:"dragCompleted",zoomX:this.zoomX(),zoomY:this.zoomY(),zoomLevel:this.zoomLevel(),chart:this},this.fire(a.type,a));!this.mouseIsOver||this.mapWasDragged||this.skipClick||(a={type:"click",x:this.mouseX,y:this.mouseY,chart:this},this.fire(a.type,a),this.skipClick=!1);this.mapContainerClickY=this.mapContainerClickX=NaN;this.objectWasClicked=!1;this.zoomOnDoubleClick&&this.mouseIsOver&&(a=(new Date).getTime(),200>
141
+ a-this.previousClickTime&&20<a-this.previousClickTime&&this.doDoubleClickZoom(),this.previousClickTime=a)},handleTouchMove:function(a){this.handleMouseMove(a)},resetPinch:function(){this.mapWasPinched=!1},handleMouseMove:function(a){var b=this;AmCharts.AmMap.base.handleMouseMove.call(b,a);var c=b.previuosMouseX,d=b.previuosMouseY,f=b.mouseX,e=b.mouseY;isNaN(c)&&(c=f);isNaN(d)&&(d=e);b.mouse2X=NaN;b.mouse2Y=NaN;if(a&&a.touches){var g=a.touches.item(1);g&&(b.mouse2X=g.pageX-AmCharts.findPosX(b.div),
142
+ b.mouse2Y=g.pageY-AmCharts.findPosY(b.div))}var g=b.mapContainer,h=b.mouse2X,k=b.mouse2Y;b.pinchTO&&clearTimeout(b.pinchTO);b.pinchTO=setTimeout(function(){b.resetPinch.call(b)},1E3);if(!isNaN(h)){b.stopDrag();a.preventDefault&&a.preventDefault();var h=Math.sqrt(Math.pow(h-f,2)+Math.pow(k-e,2)),l=b.previousDistance,k=Math.max(b.realWidth,b.realHeight);5>Math.abs(l-h)&&(b.isDragging=!0);if(!isNaN(l)){var m=5*Math.abs(l-h)/k,k=g.scale,k=l<h?k+k*m:k-k*m,l=b.zoomLevel(),n=b.middleXP,m=b.middleYP,q=b.realHeight/
143
+ b.mapHeight,r=b.realWidth/b.mapWidth,n=(b.zoomX()-n*r)*(k/l)+n*r,m=(b.zoomY()-m*q)*(k/l)+m*q;0.1<Math.abs(k-l)&&(b.zoomTo(k,n,m,!0),b.mapWasPinched=!0,clearTimeout(b.pinchTO))}b.previousDistance=h}b.isDragging&&(b.hideBalloon(),b.positionChanged(),g.translate(g.x+(f-c),g.y+(e-d),g.scale),b.updateSmallMap(),a&&a.preventDefault&&a.preventDefault());b.previuosMouseX=f;b.previuosMouseY=e},selectObject:function(a){var b=this;a||(a=b.dataProvider);a.isOver=!1;var c=a.linkToObject;"string"==typeof c&&(c=
144
+ b.getObjectById(c));a.useTargetsZoomValues&&c&&(a.zoomX=c.zoomX,a.zoomY=c.zoomY,a.zoomLatitude=c.zoomLatitude,a.zoomLongitude=c.zoomLongitude,a.zoomLevel=c.zoomLevel);var d=b.selectedObject;d&&b.returnInitialColor(d);b.selectedObject=a;var f=!1;"MapArea"==a.objectType&&a.autoZoomReal&&(f=!0);if(c&&!f&&("string"==typeof c&&(c=b.getObjectById(c)),isNaN(a.zoomLevel)&&isNaN(a.zoomX)&&isNaN(a.zoomY))){if(b.extendMapData(c))return;b.selectObject(c);return}b.allowMultipleDescriptionWindows||b.closeAllDescriptions();
145
+ clearTimeout(b.selectedObjectTimeOut);clearTimeout(b.processObjectsTimeOut);c=b.zoomDuration;!f&&isNaN(a.zoomLevel)&&isNaN(a.zoomX)&&isNaN(a.zoomY)?(b.showDescriptionAndGetUrl(),b.processObjects()):(b.selectedObjectTimeOut=setTimeout(function(){b.showDescriptionAndGetUrl.call(b)},1E3*c+200),b.showObjectsAfterZoom?b.processObjectsTimeOut=setTimeout(function(){b.processObjects.call(b)},1E3*c+200):b.processObjects());c=a.displayObject;f=b.areasSettings.selectedOutlineColor;if(c){c.toFront();c.setAttr("stroke",
146
+ a.outlineColorReal);var e=a.selectedColorReal;void 0!==e&&c.setAttr("fill",e);void 0!==f&&c.setAttr("stroke",f);if(e=a.imageLabel){var g=a.selectedLabelColorReal;void 0!==g&&e.setAttr("fill",g)}a.selectable||(c.setAttr("cursor","default"),e&&e.setAttr("cursor","default"))}else b.returnInitialColorReal(a);if(c=a.groupId)for(e=b.getGroupById(c),g=0;g<e.length;g++){var h=e[g];h.isOver=!1;if(c=h.displayObject){var k=h.selectedColorReal;void 0!==f&&c.setAttr("stroke",f);void 0!==k?c.setAttr("fill",k):
147
+ b.returnInitialColor(h)}}b.zoomToSelectedObject();d!=a&&(a={type:"selectedObjectChanged",chart:b},b.fire(a.type,a))},returnInitialColor:function(a,b){this.returnInitialColorReal(a);b&&(a.isFirst=!1);var c=a.groupId;if(c){var c=this.getGroupById(c),d;for(d=0;d<c.length;d++)this.returnInitialColorReal(c[d]),b&&(c[d].isFirst=!1)}},closeAllDescriptions:function(){this.descriptionsDiv.innerHTML=""},returnInitialColorReal:function(a){a.isOver=!1;var b=a.displayObject;if(b){b.toPrevious();if("MapImage"==
148
+ a.objectType){var c=a.tempScale;isNaN(c)||b.translate(b.x,b.y,c,!0);a.tempScale=NaN}c=a.colorReal;a.showAsSelected&&(c=a.selectedColorReal);"bubble"==a.type&&(c=void 0);void 0!==c&&b.setAttr("fill",c);var d=a.image;d&&d.setAttr("fill",c);b.setAttr("stroke",a.outlineColorReal);"MapArea"==a.objectType&&b.setAttr("fill-opacity",a.alphaReal);(c=a.pattern)&&b.pattern(c,this.mapScale);(b=a.imageLabel)&&!a.labelInactive&&b.setAttr("fill",a.labelColorReal)}},zoomToRectangle:function(a,b,c,d){var f=this.realWidth,
149
+ e=this.realHeight,g=this.mapSet.scale,h=this.zoomControl,f=AmCharts.fitToBounds(c/f>d/e?0.8*f/(c*g):0.8*e/(d*g),h.minZoomLevel,h.maxZoomLevel);this.zoomToMapXY(f,(a+c/2)*g,(b+d/2)*g)},zoomToLatLongRectangle:function(a,b,c,d){var f=this.dataProvider,e=this.zoomControl,g=Math.abs(c-a),h=Math.abs(b-d),k=Math.abs(f.rightLongitude-f.leftLongitude),f=Math.abs(f.topLatitude-f.bottomLatitude),e=AmCharts.fitToBounds(g/k>h/f?0.8*k/g:0.8*f/h,e.minZoomLevel,e.maxZoomLevel);this.zoomToLongLat(e,a+(c-a)/2,d+(b-
150
+ d)/2)},getGroupById:function(a){var b=[];this.getGroup(this.imagesProcessor.allObjects,a,b);this.getGroup(this.linesProcessor.allObjects,a,b);this.getGroup(this.areasProcessor.allObjects,a,b);return b},zoomToGroup:function(a){a="object"==typeof a?a:this.getGroupById(a);var b,c,d,f,e;for(e=0;e<a.length;e++){var g=a[e].displayObject.getBBox(),h=g.y,k=g.y+g.height,l=g.x,g=g.x+g.width;if(h<b||isNaN(b))b=h;if(k>f||isNaN(f))f=k;if(l<c||isNaN(c))c=l;if(g>d||isNaN(d))d=g}a=this.mapSet.getBBox();c-=a.x;d-=
151
+ a.x;f-=a.y;b-=a.y;this.zoomToRectangle(c,b,d-c,f-b)},getGroup:function(a,b,c){if(a){var d;for(d=0;d<a.length;d++){var f=a[d];f.groupId==b&&c.push(f)}}},zoomToStageXY:function(a,b,c,d){if(!this.objectWasClicked){var f=this.zoomControl;a=AmCharts.fitToBounds(a,f.minZoomLevel,f.maxZoomLevel);f=this.zoomLevel();c=this.coordinateToLatitude((c-this.mapContainer.y)/f);b=this.coordinateToLongitude((b-this.mapContainer.x)/f);this.zoomToLongLat(a,b,c,d)}},zoomToLongLat:function(a,b,c,d){b=this.longitudeToCoordinate(b);
152
+ c=this.latitudeToCoordinate(c);this.zoomToMapXY(a,b,c,d)},zoomToMapXY:function(a,b,c,d){var f=this.mapWidth,e=this.mapHeight;this.zoomTo(a,-(b/f)*a+this.realWidth/f/2,-(c/e)*a+this.realHeight/e/2,d)},zoomToObject:function(a){var b=a.zoomLatitude,c=a.zoomLongitude,d=a.zoomLevel,f=this.zoomInstantly,e=a.zoomX,g=a.zoomY,h=this.realWidth,k=this.realHeight;isNaN(d)||(isNaN(b)||isNaN(c)?this.zoomTo(d,e,g,f):this.zoomToLongLat(d,c,b,f));this.zoomInstantly=!1;"MapImage"==a.objectType&&isNaN(a.zoomX)&&isNaN(a.zoomY)&&
153
+ isNaN(a.zoomLatitude)&&isNaN(a.zoomLongitude)&&!isNaN(a.latitude)&&!isNaN(a.longitude)&&this.zoomToLongLat(a.zoomLevel,a.longitude,a.latitude);"MapArea"==a.objectType&&(e=a.displayObject.getBBox(),b=this.mapScale,c=e.x*b,d=e.y*b,f=e.width*b,e=e.height*b,h=a.autoZoomReal&&isNaN(a.zoomLevel)?f/h>e/k?0.8*h/f:0.8*k/e:a.zoomLevel,k=this.zoomControl,h=AmCharts.fitToBounds(h,k.minZoomLevel,k.maxZoomLevel),isNaN(a.zoomX)&&isNaN(a.zoomY)&&isNaN(a.zoomLatitude)&&isNaN(a.zoomLongitude)&&(a=this.mapSet.getBBox(),
154
+ this.zoomToMapXY(h,-a.x*b+c+f/2,-a.y*b+d+e/2)))},zoomToSelectedObject:function(){this.zoomToObject(this.selectedObject)},zoomTo:function(a,b,c,d){var f=this.zoomControl;a=AmCharts.fitToBounds(a,f.minZoomLevel,f.maxZoomLevel);f=this.zoomLevel();isNaN(b)&&(b=this.realWidth/this.mapWidth,b=(this.zoomX()-0.5*b)*(a/f)+0.5*b);isNaN(c)&&(c=this.realHeight/this.mapHeight,c=(this.zoomY()-0.5*c)*(a/f)+0.5*c);this.stopAnimation();isNaN(a)||(f=this.mapContainer,this.initialX=f.x,this.initialY=f.y,this.initialScale=
155
+ f.scale,this.finalX=this.mapWidth*b,this.finalY=this.mapHeight*c,this.finalScale=a,this.finalX!=this.initialX||this.finalY!=this.initialY||this.finalScale!=this.initialScale?d?(this.tweenPercent=1,this.rescaleMapAndObjects(),this.wheelBusy=!1):this.animateMap():this.wheelBusy=!1)},loadXml:function(a){var b;b=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");b.overrideMimeType&&b.overrideMimeType("text/xml");b.open("GET",a,!1);b.send();this.parseXMLObject(b.responseXML);
156
+ this.svgData&&this.buildEverything()},stopAnimation:function(){this.frame=this.totalFrames},processObjects:function(){var a=this.container,b=this.stageObjectsContainer;b&&b.remove();this.stageObjectsContainer=b=a.set();this.trendLinesSet.push(b);var c=this.mapObjectsContainer;c&&c.remove();this.mapObjectsContainer=c=a.set();this.mapContainer.push(c);c.toFront();b.toFront();if(a=this.selectedObject)this.imagesProcessor.reset(),this.linesProcessor.reset(),this.linesAboveImages?(this.imagesProcessor.process(a),
157
+ this.linesProcessor.process(a)):(this.linesProcessor.process(a),this.imagesProcessor.process(a));this.rescaleObjects()},processAreas:function(){this.areasProcessor.process(this.dataProvider)},buildSVGMap:function(){var a=this.svgData.g.path,b=this.container,c=b.set();void 0===a.length&&(a=[a]);var d;for(d=0;d<a.length;d++){var f=a[d],e=f.title,g=b.path(f.d);g.id=f.id;this.svgAreasById[f.id]={area:g,title:e,className:f["class"]};this.svgAreas.push(g);c.push(g)}this.mapSet=c;this.mapContainer.push(c);
158
+ this.resizeMap()},addObjectEventListeners:function(a,b){var c=this;a.mouseup(function(a){c.clickMapObject(b,a)}).mouseover(function(a){c.rollOverMapObject(b,!0,a)}).mouseout(function(a){c.rollOutMapObject(b,a)}).touchend(function(a){c.clickMapObject(b,a)}).touchstart(function(a){c.rollOverMapObject(b,!0,a)})},checkIfSelected:function(a){var b=this.selectedObject;if(b==a)return!0;if(b=b.groupId){var b=this.getGroupById(b),c;for(c=0;c<b.length;c++)if(b[c]==a)return!0}return!1},clearMap:function(){this.chartDiv.innerHTML=
159
+ "";this.clearObjectList()},clearObjectList:function(){var a=this.objectList;a&&a.div&&(a.div.innerHTML="")},checkIfLast:function(a){if(a){var b=a.parentNode;if(b&&b.lastChild==a)return!0}return!1},showAsRolledOver:function(a){var b=a.displayObject;if(!a.showAsSelected&&b&&!a.isOver){b.node.onmouseout=function(){};b.node.onmouseover=function(){};b.node.onclick=function(){};a.isFirst||(b.toFront(),a.isFirst=!0);var c=a.rollOverColorReal,d;void 0!=c&&("MapImage"==a.objectType?(d=a.image)&&d.setAttr("fill",
160
+ c):b.setAttr("fill",c));(d=a.imageLabel)&&!a.labelInactive&&(c=a.labelRollOverColorReal,void 0!=c&&d.setAttr("fill",c));c=a.rollOverOutlineColorReal;void 0!=c&&("MapImage"==a.objectType?(d=a.image)&&d.setAttr("stroke",c):b.setAttr("stroke",c));"MapArea"==a.objectType&&(d=a.rollOverAlphaReal,isNaN(d)||b.setAttr("fill-opacity",d),(d=this.areasSettings.rollOverPattern)&&b.pattern(d,this.mapScale));"MapImage"==a.objectType&&(d=a.rollOverScaleReal,isNaN(d)||1==d||(a.tempScale=b.scale,b.translate(b.x,b.y,
161
+ b.scale*d,!0)));this.useHandCursorOnClickableOjects&&this.checkIfClickable(a)&&b.setAttr("cursor","pointer");this.addObjectEventListeners(b,a);a.isOver=!0}},rollOverMapObject:function(a,b,c){if(this.chartCreated){this.handleMouseMove();var d=this.previouslyHovered;d&&d!=a?(!1===this.checkIfSelected(d)&&(this.returnInitialColor(d,!0),this.previouslyHovered=null),this.hideBalloon()):clearTimeout(this.hoverInt);if(!1===this.checkIfSelected(a)){if(d=a.groupId){var d=this.getGroupById(d),f;for(f=0;f<d.length;f++)d[f]!=
162
+ a&&this.showAsRolledOver(d[f])}this.showAsRolledOver(a)}else(d=a.displayObject)&&d.setAttr("cursor","default");if(this.showDescriptionOnHover)this.showDescription(a);else if((this.showBalloonOnSelectedObject||!this.checkIfSelected(a))&&!1!==b&&(f=this.balloon,b=a.colorReal,d="",void 0!==b&&this.useObjectColorForBalloon||(b=f.fillColor),(f=a.balloonTextReal)&&(d=this.formatString(f,a)),this.balloonLabelFunction&&(d=this.balloonLabelFunction(a,this)),d&&""!==d)){var e,g;"MapArea"==a.objectType&&(g=
163
+ this.getAreaCenterLatitude(a),e=this.getAreaCenterLongitude(a),g=this.latitudeToY(g),e=this.longitudeToX(e));this.showBalloon(d,b,this.mouseIsOver,e,g)}c={type:"rollOverMapObject",mapObject:a,chart:this,event:c};this.fire(c.type,c);this.previouslyHovered=a}},longitudeToX:function(a){return this.longitudeToCoordinate(a)*this.zoomLevel()+this.mapContainer.x},latitudeToY:function(a){return this.latitudeToCoordinate(a)*this.zoomLevel()+this.mapContainer.y},rollOutMapObject:function(a,b){this.hideBalloon();
164
+ if(this.chartCreated&&a.isOver){this.checkIfSelected(a)||this.returnInitialColor(a);var c={type:"rollOutMapObject",mapObject:a,chart:this,event:b};this.fire(c.type,c)}},formatString:function(a,b){var c=this.numberFormatter,d=this.percentFormatter,f=b.title;void 0==f&&(f="");var e=b.value,e=isNaN(e)?"":AmCharts.formatNumber(e,c),c=b.percents,c=isNaN(c)?"":AmCharts.formatNumber(c,d),d=b.description;void 0==d&&(d="");var g=b.customData;void 0==g&&(g="");return a=AmCharts.massReplace(a,{"[[title]]":f,
165
+ "[[value]]":e,"[[percent]]":c,"[[description]]":d,"[[customData]]":g})},clickMapObject:function(a,b){this.hideBalloon();if(this.chartCreated&&!this.mapWasDragged&&this.checkIfClickable(a)&&!this.mapWasPinched){this.selectObject(a);var c={type:"clickMapObject",mapObject:a,chart:this,event:b};this.fire(c.type,c);this.objectWasClicked=!0}},checkIfClickable:function(a){var b=this.allowClickOnSelectedObject;return this.selectedObject==a&&b?!0:this.selectedObject!=a||b?!0===a.selectable||"MapArea"==a.objectType&&
166
+ a.autoZoomReal||a.url||a.linkToObject||0<a.images.length||0<a.lines.length||!isNaN(a.zoomLevel)||!isNaN(a.zoomX)||!isNaN(a.zoomY)||a.description?!0:!1:!1},handleResize:function(){(AmCharts.isPercents(this.width)||AmCharts.isPercents(this.height))&&this.invalidateSize();this.renderFix()},resizeMap:function(){var a=this.mapSet;if(a)if(this.fitMapToContainer){var b=a.getBBox(),c=this.realWidth,d=this.realHeight,f=b.width,e=b.height,c=f/c>e/d?c/f:d/e;a.translate(-b.x*c,-b.y*c,c);this.mapScale=c;this.mapHeight=
167
  e*c;this.mapWidth=f*c}else b=group.transform.match(/([\-]?[\d.]+)/g),a.translate(b[0],b[1],b[2])},zoomIn:function(){this.skipClick=!0;var a=this.zoomLevel()*this.zoomControl.zoomFactor;this.zoomTo(a)},zoomOut:function(){this.skipClick=!0;var a=this.zoomLevel()/this.zoomControl.zoomFactor;this.zoomTo(a)},moveLeft:function(){this.skipClick=!0;var a=this.zoomX()+this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),a,this.zoomY())},moveRight:function(){this.skipClick=!0;var a=this.zoomX()-this.zoomControl.panStepSize;
168
  this.zoomTo(this.zoomLevel(),a,this.zoomY())},moveUp:function(){this.skipClick=!0;var a=this.zoomY()+this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),this.zoomX(),a)},moveDown:function(){this.skipClick=!0;var a=this.zoomY()-this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),this.zoomX(),a)},zoomX:function(){return this.mapSet?Math.round(1E4*this.mapContainer.x/this.mapWidth)/1E4:NaN},zoomY:function(){return this.mapSet?Math.round(1E4*this.mapContainer.y/this.mapHeight)/1E4:NaN},goHome:function(){this.selectObject(this.dataProvider);
169
  var a={type:"homeButtonClicked",chart:this};this.fire(a.type,a)},zoomLevel:function(){return Math.round(1E5*this.mapContainer.scale)/1E5},showDescriptionAndGetUrl:function(){var a=this.selectedObject;if(a){this.showDescription();var b=a.url;if(b)AmCharts.getURL(b,a.urlTarget);else if(b=a.linkToObject){if("string"==typeof b){var c=this.getObjectById(b);if(c){this.selectObject(c);return}}b&&a.passZoomValuesToTarget&&(b.zoomLatitude=this.zoomLatitude(),b.zoomLongitude=this.zoomLongitude(),b.zoomLevel=
170
+ this.zoomLevel());this.extendMapData(b)||this.selectObject(b)}}},extendMapData:function(a){var b=a.objectType;if("MapImage"!=b&&"MapArea"!=b&&"MapLine"!=b)return AmCharts.extend(a,new AmCharts.MapData,!0),this.dataProvider=a,this.zoomInstantly=!0,this.validateData(),!0},showDescription:function(a){a||(a=this.selectedObject);this.allowMultipleDescriptionWindows||this.closeAllDescriptions();if(a.description){var b=a.descriptionWindow;b&&b.close();b=new AmCharts.DescriptionWindow;a.descriptionWindow=
171
+ b;var c=a.descriptionWindowWidth,d=a.descriptionWindowHeight,f=a.descriptionWindowX,e=a.descriptionWindowY;isNaN(f)&&(f=this.mouseX,f=f>this.realWidth/2?f-c-20:f+20);isNaN(e)&&(e=this.mouseY);b.maxHeight=d;b.show(this,this.descriptionsDiv,a.description,a.title);a=b.div.style;a.width=c+"px";a.maxHeight=d+"px";a.left=f+"px";a.top=e+"px"}},parseXMLObject:function(a){var b={root:{}};this.parseXMLNode(b,"root",a);this.svgData=b.root.svg;this.getBounds()},getBounds:function(){var a=this.dataProvider;try{var b=
172
  this.svgData.defs["amcharts:ammap"];a.leftLongitude=Number(b.leftLongitude);a.rightLongitude=Number(b.rightLongitude);a.topLatitude=Number(b.topLatitude);a.bottomLatitude=Number(b.bottomLatitude);a.projection=b.projection}catch(c){}},latitudeToCoordinate:function(a){var b,c=this.dataProvider;if(this.mapSet){b=c.topLatitude;var d=c.bottomLatitude;"mercator"==c.projection&&(a=this.mercatorLatitudeToCoordinate(a),b=this.mercatorLatitudeToCoordinate(b),d=this.mercatorLatitudeToCoordinate(d));b=(a-b)/
173
  (d-b)*this.mapHeight}return b},longitudeToCoordinate:function(a){var b,c=this.dataProvider;this.mapSet&&(b=c.leftLongitude,b=(a-b)/(c.rightLongitude-b)*this.mapWidth);return b},mercatorLatitudeToCoordinate:function(a){89.5<a&&(a=89.5);-89.5>a&&(a=-89.5);a=AmCharts.degreesToRadians(a);a=0.5*Math.log((1+Math.sin(a))/(1-Math.sin(a)));return AmCharts.radiansToDegrees(a/2)},zoomLatitude:function(){return this.coordinateToLatitude((-this.mapContainer.y+this.previousHeight/2)/this.zoomLevel())},zoomLongitude:function(){return this.coordinateToLongitude((-this.mapContainer.x+
174
  this.previousWidth/2)/this.zoomLevel())},getAreaCenterLatitude:function(a){a=a.displayObject.getBBox();var b=this.mapScale;a=-this.mapSet.getBBox().y*b+(a.y+a.height/2)*b;return this.coordinateToLatitude(a)},getAreaCenterLongitude:function(a){a=a.displayObject.getBBox();var b=this.mapScale;a=-this.mapSet.getBBox().x*b+(a.x+a.width/2)*b;return this.coordinateToLongitude(a)},coordinateToLatitude:function(a){var b;if(this.mapSet){var c=this.dataProvider,d=c.bottomLatitude,f=c.topLatitude;b=this.mapHeight;
175
+ "mercator"==c.projection?(c=this.mercatorLatitudeToCoordinate(d),f=this.mercatorLatitudeToCoordinate(f),a=2*Math.atan(Math.exp(2*(a*(c-f)/b+f)*Math.PI/180))-0.5*Math.PI,b=AmCharts.radiansToDegrees(a)):b=a/b*(d-f)+f}return Math.round(1E6*b)/1E6},coordinateToLongitude:function(a){var b,c=this.dataProvider;this.mapSet&&(b=a/this.mapWidth*(c.rightLongitude-c.leftLongitude)+c.leftLongitude);return Math.round(1E6*b)/1E6},milesToPixels:function(a){var b=this.dataProvider;return this.mapWidth/(b.rightLongitude-
176
+ b.leftLongitude)*a/69.172},kilometersToPixels:function(a){var b=this.dataProvider;return this.mapWidth/(b.rightLongitude-b.leftLongitude)*a/111.325},handleBackgroundClick:function(a){if(this.backgroundZoomsToTop&&!this.mapWasDragged){var b=this.dataProvider;if(this.checkIfClickable(b))this.clickMapObject(b);else{a=b.zoomX;var c=b.zoomY,d=b.zoomLongitude,f=b.zoomLatitude,b=b.zoomLevel;isNaN(a)||isNaN(c)||this.zoomTo(b,a,c);isNaN(d)||isNaN(f)||this.zoomToLongLat(b,d,f,!0)}}},parseXMLNode:function(a,
177
  b,c,d){void 0===d&&(d="");var f,e,g;if(c){var h=c.childNodes.length;for(f=0;f<h;f++){e=c.childNodes[f];var k=e.nodeName,l=e.nodeValue?this.trim(e.nodeValue):"",m=!1;e.attributes&&0<e.attributes.length&&(m=!0);if(0!==e.childNodes.length||""!==l||!1!==m)if(3==e.nodeType||4==e.nodeType){if(""!==l){e=0;for(g in a[b])a[b].hasOwnProperty(g)&&e++;e?a[b]["#text"]=l:a[b]=l}}else if(1==e.nodeType){var n;void 0!==a[b][k]?void 0===a[b][k].length?(n=a[b][k],a[b][k]=[],a[b][k].push(n),a[b][k].push({}),n=a[b][k][1]):
178
  "object"==typeof a[b][k]&&(a[b][k].push({}),n=a[b][k][a[b][k].length-1]):(a[b][k]={},n=a[b][k]);if(e.attributes&&e.attributes.length)for(l=0;l<e.attributes.length;l++)n[e.attributes[l].name]=e.attributes[l].value;void 0!==a[b][k].length?this.parseXMLNode(a[b][k],a[b][k].length-1,e,d+" "):this.parseXMLNode(a[b],k,e,d+" ")}}e=0;c="";for(g in a[b])"#text"==g?c=a[b][g]:e++;0===e&&void 0===a[b].length&&(a[b]=c)}},doDoubleClickZoom:function(){if(!this.mapWasDragged){var a=this.zoomLevel()*this.zoomControl.zoomFactor;
179
+ this.zoomToStageXY(a,this.mouseX,this.mouseY)}},getDevInfo:function(){var a=this.zoomLevel(),a={chart:this,type:"writeDevInfo",zoomLevel:a,zoomX:this.zoomX(),zoomY:this.zoomY(),zoomLatitude:this.zoomLatitude(),zoomLongitude:this.zoomLongitude(),latitude:this.coordinateToLatitude((this.mouseY-this.mapContainer.y)/a),longitude:this.coordinateToLongitude((this.mouseX-this.mapContainer.x)/a),left:this.mouseX,top:this.mouseY,right:this.realWidth-this.mouseX,bottom:this.realHeight-this.mouseY,percentLeft:Math.round(this.mouseX/
180
+ this.realWidth*100)+"%",percentTop:Math.round(this.mouseY/this.realHeight*100)+"%",percentRight:Math.round((this.realWidth-this.mouseX)/this.realWidth*100)+"%",percentBottom:Math.round((this.realHeight-this.mouseY)/this.realHeight*100)+"%"},b="zoomLevel:"+a.zoomLevel+", zoomLongitude:"+a.zoomLongitude+", zoomLatitude:"+a.zoomLatitude+"\n",b=b+("zoomX:"+a.zoomX+", zoomY:"+a.zoomY+"\n"),b=b+("latitude:"+a.latitude+", longitude:"+a.longitude+"\n"),b=b+("left:"+a.left+", top:"+a.top+"\n"),b=b+("right:"+
181
+ a.right+", bottom:"+a.bottom+"\n"),b=b+('left:"'+a.percentLeft+'", top:"'+a.percentTop+'"\n'),b=b+('right:"'+a.percentRight+'", bottom:"'+a.percentBottom+'"\n');a.str=b;this.fire(a.type,a);return a},getXY:function(a,b,c){void 0!==a&&(-1!=String(a).indexOf("%")?(a=Number(a.split("%").join("")),c&&(a=100-a),a=Number(a)*b/100):c&&(a=b-a));return a},getObjectById:function(a){var b=this.dataProvider;if(b.areas){var c=this.getObject(a,b.areas);if(c)return c}if(c=this.getObject(a,b.images))return c;if(a=
182
+ this.getObject(a,b.lines))return a},getObject:function(a,b){if(b){var c;for(c=0;c<b.length;c++){var d=b[c];if(d.id==a)return d;if(d.areas){var f=this.getObject(a,d.areas);if(f)return f}if(f=this.getObject(a,d.images))return f;if(d=this.getObject(a,d.lines))return d}}},parseData:function(){var a=this.dataProvider;this.processObject(a.areas,a,"area");this.processObject(a.images,a,"image");this.processObject(a.lines,a,"line")},processObject:function(a,b,c){if(a){var d;for(d=0;d<a.length;d++){var f=a[d];
183
+ f.parentObject=b;"area"==c&&AmCharts.extend(f,new AmCharts.MapArea,!0);"image"==c&&(f=AmCharts.extend(f,new AmCharts.MapImage,!0));"line"==c&&(f=AmCharts.extend(f,new AmCharts.MapLine,!0));a[d]=f;f.areas&&this.processObject(f.areas,f,"area");f.images&&this.processObject(f.images,f,"image");f.lines&&this.processObject(f.lines,f,"line")}}},positionChanged:function(){var a={type:"positionChanged",zoomX:this.zoomX(),zoomY:this.zoomY(),zoomLevel:this.zoomLevel(),chart:this};this.fire(a.type,a)},getX:function(a,
184
+ b){return this.getXY(a,this.realWidth,b)},getY:function(a,b){return this.getXY(a,this.realHeight,b)},trim:function(a){if(a){var b;for(b=0;b<a.length;b++)if(-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(b))){a=a.substring(b);break}for(b=a.length-1;0<=b;b--)if(-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(b))){a=a.substring(0,
185
+ b+1);break}return-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(0))?a:""}},brrr:function(){var a=this.product,b=a+".com",c=window.location.hostname.split("."),d;2<=c.length&&(d=c[c.length-2]+"."+c[c.length-1]);AmCharts.remove(this.bbset);if(d!=b){var b=b+"/?utm_source=swf&utm_medium=demo&utm_campaign=jsDemo"+a,f="chart by ",c=145;"ammap"==a&&(f="tool by ",c=125);d=AmCharts.rect(this.container,c,20,"#FFFFFF",1);
186
+ f=AmCharts.text(this.container,f+a+".com","#000000","Verdana",11,"start");f.translate(7,9);d=this.container.set([d,f]);"ammap"==a&&d.translate(this.realWidth-c,0);this.bbset=d;this.linkSet.push(d);d.setAttr("cursor","pointer");d.click(function(){window.location.href="http://"+b});for(a=0;a<d.length;a++)d[a].attr({cursor:"pointer"})}}});AmCharts.ZoomControl=AmCharts.Class({construct:function(){this.panStepSize=0.1;this.zoomFactor=2;this.maxZoomLevel=64;this.minZoomLevel=1;this.zoomControlEnabled=this.panControlEnabled=!0;this.buttonRollOverColor="#CC0000";this.buttonFillColor="#990000";this.buttonFillAlpha=1;this.buttonBorderColor="#FFFFFF";this.buttonBorderThickness=this.buttonBorderAlpha=1;this.buttonIconColor="#FFFFFF";this.buttonColorHover="#FF0000";this.gridColor=this.homeIconColor="#FFFFFF";this.gridBackgroundColor="#000000";
187
+ this.gridBackgroundAlpha=0.15;this.gridAlpha=1;this.buttonSize=18;this.iconSize=11;this.buttonCornerRadius=0;this.gridHeight=150;this.top=this.left=10},init:function(a,b){var c=this;c.chart=a;AmCharts.remove(c.set);var d=b.set();d.translate(a.getX(c.left),a.getY(c.top));var f=c.buttonSize,e=c.buttonFillColor,g=c.buttonFillAlpha,h=c.buttonBorderThickness,k=c.buttonBorderColor,l=c.buttonBorderAlpha,m=c.buttonCornerRadius,n=c.buttonRollOverColor,q=c.gridHeight,r=c.zoomFactor,A=c.minZoomLevel,z=c.maxZoomLevel;
188
+ c.previousDY=NaN;var p;if(c.zoomControlEnabled){p=b.set();d.push(p);c.set=d;c.zoomSet=p;var s=AmCharts.rect(b,f+6,q+2*f+6,c.gridBackgroundColor,c.gridBackgroundAlpha,0,0,0,4);s.translate(-3,-3);s.mouseup(function(){c.handleBgUp()});p.push(s);s=new AmCharts.SimpleButton;s.setIcon(a.pathToImages+"plus.gif",c.iconSize);s.setClickHandler(a.zoomIn,a);s.init(b,f,f,e,g,h,k,l,m,n);p.push(s.set);s=new AmCharts.SimpleButton;s.setIcon(a.pathToImages+"minus.gif",c.iconSize);s.setClickHandler(a.zoomOut,a);s.init(b,
189
+ f,f,e,g,h,k,l,m,n);s.set.translate(0,q+f);p.push(s.set);var y=Math.log(z/A)/Math.log(r)+1,s=q/y,t;for(t=1;t<y;t++){var w=f+t*s,w=AmCharts.line(b,[1,f-2],[w,w],c.gridColor,c.gridAlpha,1);p.push(w)}y=new AmCharts.SimpleButton;y.setDownHandler(c.draggerDown,c);y.setClickHandler(c.draggerUp,c);y.init(b,f,s,e,g,h,k,l,m,n);p.push(y.set);c.dragger=y.set;c.previousY=NaN;q-=s;A=Math.log(A/100)/Math.log(r);r=Math.log(z/100)/Math.log(r);c.realStepSize=q/(r-A);c.realGridHeight=q;c.stepMax=r}c.panControlEnabled&&
190
+ (r=b.set(),d.push(r),p&&p.translate(f,4*f),p=new AmCharts.SimpleButton,p.setIcon(a.pathToImages+"panLeft.gif",c.iconSize),p.setClickHandler(a.moveLeft,a),p.init(b,f,f,e,g,h,k,l,m,n),p.set.translate(0,f),r.push(p.set),p=new AmCharts.SimpleButton,p.setIcon(a.pathToImages+"panRight.gif",c.iconSize),p.setClickHandler(a.moveRight,a),p.init(b,f,f,e,g,h,k,l,m,n),p.set.translate(2*f,f),r.push(p.set),p=new AmCharts.SimpleButton,p.setIcon(a.pathToImages+"panUp.gif",c.iconSize),p.setClickHandler(a.moveUp,a),
191
+ p.init(b,f,f,e,g,h,k,l,m,n),p.set.translate(f,0),r.push(p.set),p=new AmCharts.SimpleButton,p.setIcon(a.pathToImages+"panDown.gif",c.iconSize),p.setClickHandler(a.moveDown,a),p.init(b,f,f,e,g,h,k,l,m,n),p.set.translate(f,2*f),r.push(p.set),g=new AmCharts.SimpleButton,g.setIcon(a.pathToImages+"homeIcon.gif",c.iconSize),g.setClickHandler(a.goHome,a),g.init(b,f,f,e,0,0,k,0,m,n),g.set.translate(f,f),r.push(g.set),d.push(r))},draggerDown:function(){this.chart.stopDrag();this.isDragging=!0},draggerUp:function(){this.isDragging=
192
  !1},handleBgUp:function(){var a=this.chart,b=100*Math.pow(this.zoomFactor,this.stepMax-(a.mouseY-this.zoomSet.y-this.set.y-this.buttonSize-this.realStepSize/2)/this.realStepSize);a.zoomTo(b)},update:function(){var a,b=this.zoomFactor,c=this.realStepSize,d=this.stepMax,f=this.dragger,e=this.buttonSize,g=this.chart;this.isDragging?(g.stopDrag(),a=f.y+(g.mouseY-this.previousY),a=AmCharts.fitToBounds(a,e,this.realGridHeight+e),c=100*Math.pow(b,d-(a-e)/c),g.zoomTo(c,NaN,NaN,!0)):(a=Math.log(g.zoomLevel()/
193
  100)/Math.log(b),a=(d-a)*c+e);this.previousY=g.mouseY;this.previousDY!=a&&f&&(f.translate(0,a),this.previousDY=a)}});AmCharts.SimpleButton=AmCharts.Class({construct:function(){},init:function(a,b,c,d,f,e,g,h,k,l){var m=this;m.rollOverColor=l;m.color=d;l=a.set();m.set=l;d=AmCharts.rect(a,b,c,d,f,e,g,h,k);l.push(d);if(f=m.iconPath)e=m.iconSize,a=a.image(f,(b-e)/2,(c-e)/2,e,e),l.push(a),a.mousedown(function(){m.handleDown()}).mouseup(function(){m.handleUp()}).mouseover(function(){m.handleOver()}).mouseout(function(){m.handleOut()});d.mousedown(function(){m.handleDown()}).mouseup(function(){m.handleUp()}).mouseover(function(){m.handleOver()}).mouseout(function(){m.handleOut()});
194
  m.bg=d},setIcon:function(a,b){this.iconPath=a;this.iconSize=b},setClickHandler:function(a,b){this.clickHandler=a;this.scope=b},setDownHandler:function(a,b){this.downHandler=a;this.scope=b},handleUp:function(){var a=this.clickHandler;a&&a.call(this.scope)},handleDown:function(){var a=this.downHandler;a&&a.call(this.scope)},handleOver:function(){this.bg.setAttr("fill",this.rollOverColor)},handleOut:function(){this.bg.setAttr("fill",this.color)}});AmCharts.SmallMap=AmCharts.Class({construct:function(){this.mapColor="#e6e6e6";this.rectangleColor="#FFFFFF";this.top=this.right=10;this.minimizeButtonWidth=16;this.backgroundColor="#9A9A9A";this.backgroundAlpha=1;this.borderColor="#FFFFFF";this.borderThickness=3;this.borderAlpha=1;this.size=0.2},init:function(a,b){var c=this;c.chart=a;c.container=b;c.width=a.realWidth*c.size;c.height=a.realHeight*c.size;AmCharts.remove(c.set);var d=b.set();c.set=d;var f=b.set();c.allSet=f;d.push(f);c.buildSVGMap();
195
  var e=c.borderThickness,g=c.borderColor,h=AmCharts.rect(b,c.width+e,c.height+e,c.backgroundColor,c.backgroundAlpha,e,g,c.borderAlpha);h.translate(-e/2,-e/2);f.push(h);h.toBack();var k,l,h=c.minimizeButtonWidth,m=new AmCharts.SimpleButton;m.setIcon(a.pathToImages+"arrowDown.gif",h);m.setClickHandler(c.minimize,c);m.init(b,h,h,g,1,1,g,1);m=m.set;c.downButtonSet=m;d.push(m);var n=new AmCharts.SimpleButton;n.setIcon(a.pathToImages+"arrowUp.gif",h);n.setClickHandler(c.maximize,c);n.init(b,h,h,g,1,1,g,
196
+ 1);g=n.set;c.upButtonSet=g;g.hide();d.push(g);var q,r;isNaN(c.top)||(k=a.getY(c.top)+e,r=0);isNaN(c.bottom)||(k=a.getY(c.bottom,!0)-c.height-e,r=c.height-h+e/2);isNaN(c.left)||(l=a.getX(c.left)+e,q=-e/2);isNaN(c.right)||(l=a.getX(c.right,!0)-c.width-e,q=c.width-h+e/2);e=b.set();e.clipRect(1,1,c.width,c.height);f.push(e);c.rectangleC=e;d.translate(l,k);m.translate(q,r);g.translate(q,r);f.mouseup(function(){c.handleMouseUp()});c.drawRectangle()},minimize:function(){this.downButtonSet.hide();this.upButtonSet.show();
197
  this.allSet.hide()},maximize:function(){this.downButtonSet.show();this.upButtonSet.hide();this.allSet.show()},buildSVGMap:function(){var a=this.chart,b={fill:this.mapColor,stroke:this.mapColor,"stroke-opacity":1},c=a.svgData.g.path,d=this.container,f=d.set(),e;for(e=0;e<c.length;e++){var g=d.path(c[e].d).attr(b);f.push(g)}this.allSet.push(f);b=f.getBBox();c=this.size*a.mapScale;d=-b.x*c;e=-b.y*c;var h=g=0;a.centerMap&&(g=(this.width-b.width*c)/2,h=(this.height-b.height*c)/2);this.mapWidth=b.width*
198
  c;this.mapHeight=b.height*c;this.dx=g;this.dy=h;f.translate(d+g,e+h,c)},update:function(){var a=this.chart,b=a.zoomLevel(),c=this.width,d=a.mapContainer,a=c/(a.realWidth*b),c=c/b,b=this.height/b,f=this.rectangle;f.translate(-d.x*a+this.dx,-d.y*a+this.dy);0<c&&0<b&&(f.setAttr("width",c),f.setAttr("height",b));this.rWidth=c;this.rHeight=b},drawRectangle:function(){var a=this.rectangle;AmCharts.remove(a);a=AmCharts.rect(this.container,10,10,"#000",0,1,this.rectangleColor,1);this.rectangleC.push(a);this.rectangle=
199
+ a},handleMouseUp:function(){var a=this.chart,b=a.zoomLevel();a.zoomTo(b,-((a.mouseX-this.set.x-this.dx-this.rWidth/2)/this.mapWidth)*b,-((a.mouseY-this.set.y-this.dy-this.rHeight/2)/this.mapHeight)*b)}});AmCharts.AreasProcessor=AmCharts.Class({construct:function(a){this.chart=a},process:function(a){this.updateAllAreas();this.allObjects=[];a=a.areas;var b=this.chart,c,d=a.length,f,e,g=0,h=b.svgAreasById,k=0,l=0;for(f=0;f<d;f++)e=a[f],e=e.value,k<e&&(k=e),l>e&&(l=e),isNaN(e)||(g+=Math.abs(e));isNaN(b.minValue)||(l=b.minValue);isNaN(b.maxValue)||(k=b.maxValue);b.maxValueReal=k;b.minValueReal=l;for(f=0;f<d;f++)e=a[f],isNaN(e.value)?e.percents=void 0:e.percents=(e.value-l)/g*100;for(f=0;f<d;f++){e=a[f];
200
+ g=h[e.id];c=b.areasSettings;if(g&&g.className){var m=b.areasClasses[g.className];m&&(c=m,c=AmCharts.processObject(c,AmCharts.AreasSettings))}var n=c.color,q=c.alpha,r=c.outlineThickness,A=c.rollOverColor,z=c.selectedColor,p=c.rollOverAlpha,s=c.outlineColor,y=c.outlineAlpha,t=c.balloonText,w=c.selectable,u=c.pattern,x=c.rollOverOutlineColor;this.allObjects.push(e);e.chart=b;e.baseSettings=c;e.autoZoomReal=void 0==e.autoZoom?c.autoZoom:e.autoZoom;m=e.color;void 0==m&&(m=n);var v=e.alpha;isNaN(v)&&(v=
201
+ q);q=e.rollOverAlpha;isNaN(q)&&(q=p);isNaN(q)&&(q=v);p=e.rollOverColor;void 0==p&&(p=A);A=e.pattern;void 0==A&&(A=u);u=e.selectedColor;void 0==u&&(u=z);(z=e.balloonText)||(z=t);void 0==c.colorSolid||isNaN(e.value)||(t=Math.floor((e.value-l)/((k-l)/b.colorSteps)),t==b.colorSteps&&t--,colorPercent=1/(b.colorSteps-1)*t,e.colorReal=AmCharts.getColorFade(m,c.colorSolid,colorPercent));void 0!=e.color&&(e.colorReal=e.color);void 0==e.selectable&&(e.selectable=w);void 0==e.colorReal&&(e.colorReal=n);n=e.outlineColor;
202
+ void 0==n&&(n=s);s=e.outlineAlpha;isNaN(s)&&(s=y);y=e.outlineThickness;isNaN(y)&&(y=r);r=e.rollOverOutlineColor;void 0==r&&(r=x);e.alphaReal=v;e.rollOverColorReal=p;e.rollOverAlphaReal=q;e.balloonTextReal=z;e.selectedColorReal=u;e.outlineColorReal=n;e.outlineAlphaReal=s;e.rollOverOutlineColorReal=r;e.patternReal=A;AmCharts.processDescriptionWindow(c,e);if(g&&(c=g.area,(g=g.title)&&!e.title&&(e.title=g),c)){e.displayObject=c;e.mouseEnabled&&b.addObjectEventListeners(c,e);var C;void 0!=m&&(C=m);void 0!=
203
+ e.colorReal&&(C=e.showAsSelected||b.selectedObject==e?e.selectedColorReal:e.colorReal);c.setAttr("fill",C);c.setAttr("stroke",n);c.setAttr("stroke-opacity",s);c.setAttr("stroke-width",y);c.setAttr("fill-opacity",v);A&&c.pattern(A,b.mapScale)}}},updateAllAreas:function(){var a=this.chart,b=a.areasSettings,c=b.unlistedAreasColor,d=b.unlistedAreasAlpha,f=b.unlistedAreasOutlineColor,e=b.unlistedAreasOutlineAlpha,g=a.svgAreas,a=a.dataProvider,h=a.areas,k={},l;for(l=0;l<h.length;l++)k[h[l].id]=h[l];for(l=
204
+ 0;l<g.length;l++)if(h=g[l],void 0!=c&&h.setAttr("fill",c),isNaN(d)||h.setAttr("fill-opacity",d),void 0!=f&&h.setAttr("stroke",f),isNaN(e)||h.setAttr("stroke-opacity",e),h.setAttr("stroke-width",b.outlineThickness),a.getAreasFromMap&&!k[h.id]){var m=new AmCharts.MapArea;m.parentObject=a;m.id=h.id;a.areas.push(m)}}});AmCharts.AreasSettings=AmCharts.Class({construct:function(){this.alpha=1;this.autoZoom=!1;this.balloonText="[[title]]";this.color="#FFCC00";this.colorSolid="#990000";this.unlistedAreasAlpha=1;this.unlistedAreasColor="#DDDDDD";this.outlineColor="#FFFFFF";this.outlineAlpha=1;this.outlineThickness=0.5;this.selectedColor=this.rollOverOutlineColor="#CC0000";this.unlistedAreasOutlineColor="#FFFFFF";this.unlistedAreasOutlineAlpha=1;this.descriptionWindowWidth=250}});AmCharts.ImagesProcessor=AmCharts.Class({construct:function(a){this.chart=a;this.reset()},process:function(a){var b=a.images,c;for(c=0;c<b.length;c++)this.createImage(b[c],c);a.parentObject&&a.remainVisible&&this.process(a.parentObject)},createImage:function(a,b){var c=this.chart,d=c.container,f=c.mapObjectsContainer,e=c.stageObjectsContainer,g=c.imagesSettings;a.remove();var h=g.color,k=g.alpha,l=g.rollOverColor,m=g.selectedColor,n=g.balloonText,q=g.outlineColor,r=g.outlineAlpha,A=g.outlineThickness,
205
+ z=g.selectedScale,p=g.labelPosition,s=g.labelColor,y=g.labelFontSize,t=g.labelRollOverColor,w=g.selectedLabelColor;a.index=b;a.chart=c;a.baseSettings=c.imagesSettings;var u=d.set();a.displayObject=u;var x=a.color;void 0==x&&(x=h);h=a.alpha;isNaN(h)&&(h=k);k=a.outlineAlpha;isNaN(k)&&(k=r);r=a.rollOverColor;void 0==r&&(r=l);l=a.selectedColor;void 0==l&&(l=m);(m=a.balloonText)||(m=n);n=a.outlineColor;void 0==n&&(n=q);void 0==n&&(n=x);q=a.outlineThickness;isNaN(q)&&(q=A);(A=a.labelPosition)||(A=p);p=
206
+ a.labelColor;void 0==p&&(p=s);s=a.labelRollOverColor;void 0==s&&(s=t);t=a.selectedLabelColor;void 0==t&&(t=w);w=a.labelFontSize;isNaN(w)&&(w=y);y=a.selectedScale;isNaN(y)&&(y=z);isNaN(a.rollOverScale);a.colorReal=x;a.alphaReal=h;a.rollOverColorReal=r;a.balloonTextReal=m;a.selectedColorReal=l;a.labelColorReal=p;a.labelRollOverColorReal=s;a.selectedLabelColorReal=t;a.labelFontSizeReal=w;a.labelPositionReal=A;a.selectedScaleReal=y;a.rollOverScaleReal=y;AmCharts.processDescriptionWindow(g,a);a.centeredReal=
207
+ void 0==a.centered?g.centered:a.centered;w=a.type;t=a.imageURL;r=a.svgPath;s=a.width;l=a.height;g=a.scale;isNaN(a.percentWidth)||(s=a.percentWidth/100*c.realWidth);isNaN(a.percentHeight)||(l=a.percentHeight/100*c.realHeight);var v;t||w||r||(w="circle",s=1,k=h=0);p=z=0;y=a.selectedColorReal;w?(isNaN(s)&&(s=10),isNaN(l)&&(l=10),"kilometers"==a.widthAndHeightUnits&&(s=c.kilometersToPixels(a.width),l=c.kilometersToPixels(a.height)),"miles"==a.widthAndHeightUnits&&(s=c.milesToPixels(a.width),l=c.milesToPixels(a.height)),
208
+ v=this.createPredefinedImage(x,n,q,w,s,l),p=z=0,a.centeredReal&&(z=isNaN(a.right)?-s/2:s/2,p=isNaN(a.bottom)?-l/2:l/2),v.translate(z,p)):t?(isNaN(s)&&(s=10),isNaN(l)&&(l=10),v=d.image(t,0,0,s,l),v.node.setAttribute("preserveAspectRatio","none"),v.setAttr("opacity",h),a.centeredReal&&(z=isNaN(a.right)?-s/2:s/2,p=isNaN(a.bottom)?-l/2:l/2,v.translate(z,p))):r&&(v=d.path(r),n=v.getBBox(),a.centeredReal?(z=-n.x*g-n.width*g/2,isNaN(a.right)||(z=-z),p=-n.y*g-n.height*g/2,isNaN(a.bottom)||(p=-p)):z=p=0,v.translate(z,
209
+ p,g),v.x=z,v.y=p);v&&(u.push(v),a.image=v,v.setAttr("stroke-opacity",k),v.setAttr("fill-opacity",h),v.setAttr("fill",x));!a.showAsSelected&&c.selectedObject!=a||void 0==y||v.setAttr("fill",y);x=null;void 0!==a.label&&(x=AmCharts.text(d,a.label,a.labelColorReal,c.fontFamily,a.labelFontSizeReal,a.labelAlign),h=a.labelBackgroundAlpha,(k=a.labelBackgroundColor)&&0<h&&(v=x.getBBox(),d=AmCharts.rect(d,v.width+16,v.height+10,k,h),d.translate(-3,-v.height/2-5),u.push(d)),a.imageLabel=x,!a.labelInactive&&
210
+ a.mouseEnabled&&c.addObjectEventListeners(x,a),u.push(x));isNaN(a.latitude)||isNaN(a.longitude)?e.push(u):f.push(u);u&&(u.rotation=a.rotation);this.updateSizeAndPosition(a);a.mouseEnabled&&c.addObjectEventListeners(u,a)},updateSizeAndPosition:function(a){var b=this.chart,c=a.displayObject,d=b.getX(a.left),f=b.getY(a.top),e=a.image.getBBox();isNaN(a.right)||(d=b.getX(a.right,!0)-e.width*a.scale);isNaN(a.bottom)||(f=b.getY(a.bottom,!0)-e.height*a.scale);var g=a.longitude,h=a.latitude,e=this.objectsToResize;
211
+ this.allSvgObjects.push(c);this.allObjects.push(a);var k=a.imageLabel;if(!isNaN(d)&&!isNaN(f))c.translate(d,f);else if(!isNaN(h)&&!isNaN(g)&&(d=b.longitudeToCoordinate(g),f=b.latitudeToCoordinate(h),c.translate(d,f,NaN,!0),a.fixedSize)){d=1;if(a.showAsSelected||b.selectedObject==a)d=a.selectedScaleReal;e.push({image:c,scale:d})}this.positionLabel(k,a,a.labelPositionReal)},positionLabel:function(a,b,c){if(a){var d=b.image,f=0,e=0,g=0,h=0;d&&(h=d.getBBox(),e=d.y,f=d.x,g=h.width,h=h.height,b.svgPath&&
212
+ (g*=b.scale,h*=b.scale));var k=a.getBBox(),d=k.width,k=k.height;"right"==c&&(f+=g+d/2+5,e+=h/2-2);"left"==c&&(f+=-d/2-5,e+=h/2-2);"top"==c&&(e-=k/2+3,f+=g/2);"bottom"==c&&(e+=h+k/2,f+=g/2);"middle"==c&&(f+=g/2,e+=h/2);a.translate(f+b.labelShiftX,e+b.labelShiftY)}},createPredefinedImage:function(a,b,c,d,f,e){var g=this.chart.container,h;switch(d){case "circle":h=AmCharts.circle(g,f/2,a,1,c,b,1);break;case "rectangle":h=AmCharts.rect(g,f,e,a,1,c,b,1);h.translate(-f/2,-e/2);break;case "bubble":h=AmCharts.circle(g,
213
+ f/2,a,1,c,b,1,!0)}return h},reset:function(){this.objectsToResize=[];this.allSvgObjects=[];this.allObjects=[];this.allLabels=[]}});AmCharts.ImagesSettings=AmCharts.Class({construct:function(){this.balloonText="[[title]]";this.alpha=1;this.borderAlpha=0;this.borderThickness=1;this.labelPosition="right";this.labelColor="#000000";this.labelFontSize=11;this.color="#000000";this.labelRollOverColor="#00CC00";this.centered=!0;this.rollOverScale=this.selectedScale=1;this.descriptionWindowWidth=250}});AmCharts.LinesProcessor=AmCharts.Class({construct:function(a){this.chart=a;this.reset()},process:function(a){var b=a.lines,c=this.chart,d=c.linesSettings,f=this.objectsToResize,e=c.mapObjectsContainer,g=c.stageObjectsContainer,h=d.thickness,k=d.dashLength,l=d.arrow,m=d.arrowSize,n=d.arrowColor,q=d.arrowAlpha,r=d.color,A=d.alpha,z=d.rollOverColor,p=d.selectedColor,s=d.rollOverAlpha,y=d.balloonText,t=c.container,w;for(w=0;w<b.length;w++){var u=b[w];u.chart=c;u.baseSettings=d;var x=t.set();u.displayObject=
214
+ x;this.allSvgObjects.push(x);this.allObjects.push(u);u.mouseEnabled&&c.addObjectEventListeners(x,u);if(u.remainVisible||c.selectedObject==u.parentObject){var v=u.thickness;isNaN(v)&&(v=h);var C=u.dashLength;isNaN(C)&&(C=k);var E=u.color;void 0==E&&(E=r);var B=u.alpha;isNaN(B)&&(B=A);var D=u.rollOverAlpha;isNaN(D)&&(D=s);isNaN(D)&&(D=B);var G=u.rollOverColor;void 0==G&&(G=z);var Q=u.selectedColor;void 0==Q&&(Q=p);var N=u.balloonText;N||(N=y);var H=u.arrow;if(!H||"none"==H&&"none"!=l)H=l;var J=u.arrowColor;
215
+ void 0==J&&(J=n);void 0==J&&(J=E);var K=u.arrowAlpha;isNaN(K)&&(K=q);isNaN(K)&&(K=B);var I=u.arrowSize;isNaN(I)&&(I=m);u.alphaReal=B;u.colorReal=E;u.rollOverColorReal=G;u.rollOverAlphaReal=D;u.balloonTextReal=N;u.selectedColorReal=Q;u.thicknessReal=v;AmCharts.processDescriptionWindow(d,u);var D=this.processCoordinates(u.x,c.realWidth),G=this.processCoordinates(u.y,c.realHeight),O=u.longitudes,N=u.latitudes,R=O.length,L;if(0<R)for(D=[],L=0;L<R;L++)D.push(c.longitudeToCoordinate(O[L]));R=N.length;if(0<
216
+ R)for(G=[],L=0;L<R;L++)G.push(c.latitudeToCoordinate(N[L]));if(0<D.length){AmCharts.dx=0;AmCharts.dy=0;O=AmCharts.line(t,D,G,E,1,v,C,!1,!1,!0);C=AmCharts.line(t,D,G,E,0.001,3,C,!1,!1,!0);AmCharts.dx=0.5;AmCharts.dy=0.5;x.push(O);x.push(C);x.setAttr("opacity",B);if("none"!=H){var F,M,P;if("end"==H||"both"==H)B=D[D.length-1],C=G[G.length-1],1<D.length?(E=D[D.length-2],F=G[G.length-2]):(E=B,F=C),F=180*Math.atan((C-F)/(B-E))/Math.PI,M=B,P=C,F=0>B-E?F-90:F+90;"both"==H&&(B=AmCharts.polygon(t,[-I/2,0,I/
217
+ 2],[1.5*I,0,1.5*I],J,K,1,J,K),x.push(B),B.translate(M,P),B.rotate(F),u.fixedSize&&f.push(B));if("start"==H||"both"==H)B=D[0],P=G[0],1<D.length?(C=D[1],M=G[1]):(C=B,M=P),F=180*Math.atan((P-M)/(B-C))/Math.PI,M=B,F=0>B-C?F-90:F+90;"middle"==H&&(B=D[D.length-1],C=G[G.length-1],1<D.length?(E=D[D.length-2],F=G[G.length-2]):(E=B,F=C),M=E+(B-E)/2,P=F+(C-F)/2,F=180*Math.atan((C-F)/(B-E))/Math.PI,F=0>B-E?F-90:F+90);B=AmCharts.polygon(t,[-I/2,0,I/2],[1.5*I,0,1.5*I],J,K,1,J,K);x.push(B);B.translate(M,P);B.rotate(F);
218
+ u.fixedSize&&f.push(B)}u.fixedSize&&O&&this.linesToResize.push({line:O,thickness:v});u.showAsSelected&&!isNaN(Q)&&O.setAttr("stroke",Q);0<N.length?e.push(x):g.push(x)}}}a.parentObject&&a.remainVisible&&this.process(a.parentObject)},processCoordinates:function(a,b){var c=[],d;for(d=0;d<a.length;d++){var f=a[d],e=Number(f);isNaN(e)&&(e=Number(f.replace("%",""))*b/100);isNaN(e)||c.push(e)}return c},reset:function(){this.objectsToResize=[];this.allSvgObjects=[];this.allObjects=[];this.linesToResize=[]}});AmCharts.LinesSettings=AmCharts.Class({construct:function(){this.balloonText="[[title]]";this.thickness=1;this.dashLength=0;this.arrowSize=10;this.arrowAlpha=1;this.arrow="none";this.color="#990000";this.descriptionWindowWidth=250}});AmCharts.MapObject=AmCharts.Class({construct:function(){this.fixedSize=this.mouseEnabled=!0;this.images=[];this.lines=[];this.areas=[];this.remainVisible=!0;this.passZoomValuesToTarget=!1}});AmCharts.MapArea=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.objectType="MapArea";AmCharts.MapArea.base.construct.call(this)}});AmCharts.MapLine=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.longitudes=[];this.latitudes=[];this.x=[];this.y=[];this.objectType="MapLine";this.arrow="none";AmCharts.MapLine.base.construct.call(this)}});AmCharts.MapImage=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.scale=1;this.widthAndHeightUnits="pixels";this.objectType="MapImage";this.labelShiftY=this.labelShiftX=0;AmCharts.MapImage.base.construct.call(this)},remove:function(){var a=this.displayObject;a&&a.remove();(a=this.imageLabel)&&a.remove()}});AmCharts.degreesToRadians=function(a){return a/180*Math.PI};AmCharts.radiansToDegrees=function(a){return a/Math.PI*180};AmCharts.getColorFade=function(a,b,c){var d=AmCharts.hex2RGB(b);b=d[0];var f=d[1],d=d[2],e=AmCharts.hex2RGB(a);a=e[0];var g=e[1],e=e[2];a+=Math.round((b-a)*c);g+=Math.round((f-g)*c);e+=Math.round((d-e)*c);return"rgb("+a+","+g+","+e+")"};AmCharts.hex2RGB=function(a){return[parseInt(a.substring(1,3),16),parseInt(a.substring(3,5),16),parseInt(a.substring(5,7),16)]};
219
  AmCharts.processDescriptionWindow=function(a,b){var c=a.descriptionWindowX,d=a.descriptionWindowY,f=a.descriptionWindowWidth,e=a.descriptionWindowHeight,g=b.descriptionWindowX;isNaN(g)&&(g=c);c=b.descriptionWindowY;isNaN(c)&&(c=d);d=b.descriptionWindowWidth;isNaN(d)&&(d=f);f=b.descriptionWindowHeight;isNaN(f)&&(f=e);b.descriptionWindowX=g;b.descriptionWindowY=c;b.descriptionWindowWidth=d;b.descriptionWindowHeight=f};AmCharts.MapData=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){AmCharts.MapData.base.construct.call(this);this.projection="mercator";this.topLatitude=90;this.bottomLatitude=-90;this.leftLongitude=-180;this.rightLongitude=180;this.zoomLevel=1;this.objectType="MapData";this.getAreasFromMap=!1}});AmCharts.DescriptionWindow=AmCharts.Class({construct:function(){},show:function(a,b,c,d){var f=this,e=document.createElement("div");e.style.position="absolute";e.className="ammapDescriptionWindow";f.div=e;b.appendChild(e);var g=document.createElement("img");g.className="ammapDescriptionWindowCloseButton";g.src=a.pathToImages+"xIcon.gif";g.style.cssFloat="right";g.onclick=function(){f.close()};g.onmouseover=function(){g.src=a.pathToImages+"xIconH.gif"};g.onmouseout=function(){g.src=a.pathToImages+
220
  "xIcon.gif"};e.appendChild(g);b=document.createElement("div");b.className="ammapDescriptionTitle";b.onmousedown=function(){f.div.style.zIndex=1E3};e.appendChild(b);d=document.createTextNode(d);b.appendChild(d);d=b.offsetHeight;b=document.createElement("div");b.className="ammapDescriptionText";b.style.maxHeight=f.maxHeight-d-20+"px";e.appendChild(b);b.innerHTML=c},close:function(){try{this.div.parentNode.removeChild(this.div)}catch(a){}}});AmCharts.ValueLegend=AmCharts.Class({construct:function(){this.showAsGradient=!1;this.minValue=0;this.height=12;this.width=200;this.bottom=this.left=10;this.borderColor="#FFFFFF";this.borderAlpha=this.borderThickness=1;this.color="#000000";this.fontSize=11},init:function(a,b){var c=a.areasSettings.color,d=a.areasSettings.colorSolid,f=a.colorSteps;AmCharts.remove(this.set);var e=b.set();this.set=e;var g=0,h=this.minValue,k=this.fontSize,l=a.fontFamily,m=this.color;void 0==h&&(h=a.minValueReal);void 0!==
221
  h&&(g=AmCharts.text(b,h,m,l,k,"left"),g.translate(0,k/2-1),e.push(g),g=g.getBBox().height);h=this.maxValue;void 0===h&&(h=a.maxValueReal);void 0!==h&&(g=AmCharts.text(b,h,m,l,k,"right"),g.translate(this.width,k/2-1),e.push(g),g=g.getBBox().height);if(this.showAsGradient)c=AmCharts.rect(b,this.width,this.height,[c,d],1,this.borderThickness,this.borderColor,1,0,0),c.translate(0,g),e.push(c);else for(k=this.width/f,l=0;l<f;l++)m=AmCharts.getColorFade(c,d,1*l/(f-1)),m=AmCharts.rect(b,k,this.height,m,
222
+ 1,this.borderThickness,this.borderColor,1),m.translate(k*l,g),e.push(m);d=c=0;f=e.getBBox();g=a.getY(this.bottom,!0);k=a.getY(this.top);l=a.getX(this.right,!0);m=a.getX(this.left);isNaN(k)||(c=k);isNaN(g)||(c=g-f.height);isNaN(m)||(d=m);isNaN(l)||(d=l-f.width);e.translate(d,c)}});AmCharts.ObjectList=AmCharts.Class({construct:function(a){this.divId=a},init:function(a){this.chart=a;var b;b=this.divId;this.container&&(b=this.container);this.div=b="object"!=typeof b?document.getElementById(b):b;b=document.createElement("div");b.className="ammapObjectList";this.div.appendChild(b);this.addObjects(a.dataProvider,b)},addObjects:function(a,b){var c=this.chart,d=document.createElement("ul"),f;if(a.areas)for(f=0;f<a.areas.length;f++){var e=a.areas[f];void 0===e.showInList&&(e.showInList=
223
+ c.showAreasInList);this.addObject(e,d)}if(a.images)for(f=0;f<a.images.length;f++)e=a.images[f],void 0===e.showInList&&(e.showInList=c.showImagesInList),this.addObject(e,d);if(a.lines)for(f=0;f<a.lines.length;f++)e=a.lines[f],void 0===e.showInList&&(e.showInList=c.showLinesInList),this.addObject(e,d);0<d.childNodes.length&&b.appendChild(d)},addObject:function(a,b){var c=this;if(a.showInList&&void 0!==a.title){var d=document.createElement("li"),f=document.createTextNode(a.title),e=document.createElement("a");
224
+ e.appendChild(f);d.appendChild(e);b.appendChild(d);this.addObjects(a,d);e.onmouseover=function(){c.chart.rollOverMapObject(a,!1)};e.onmouseout=function(){c.chart.rollOutMapObject(a)};e.onclick=function(){c.chart.clickMapObject(a)}}}});
admin/js/ammap/ammap.old.js DELETED
@@ -1,212 +0,0 @@
1
- if(!AmCharts)var AmCharts={};AmCharts.inheriting={};
2
- AmCharts.Class=function(a){var b=function(){arguments[0]!==AmCharts.inheriting&&(this.events={},this.construct.apply(this,arguments))};a.inherits?(b.prototype=new a.inherits(AmCharts.inheriting),b.base=a.inherits.prototype,delete a.inherits):(b.prototype.createEvents=function(){for(var a=0,b=arguments.length;a<b;a++)this.events[arguments[a]]=[]},b.prototype.listenTo=function(a,b,c){a.events[b].push({handler:c,scope:this})},b.prototype.addListener=function(a,b,c){this.events[a].push({handler:b,scope:c})},
3
- b.prototype.removeListener=function(a,b,c){a=a.events[b];for(b=a.length-1;0<=b;b--)a[b].handler===c&&a.splice(b,1)},b.prototype.fire=function(a,b){for(var c=this.events[a],g=0,h=c.length;g<h;g++){var j=c[g];j.handler.call(j.scope,b)}});for(var c in a)b.prototype[c]=a[c];return b};AmCharts.charts=[];AmCharts.addChart=function(a){AmCharts.charts.push(a)};AmCharts.removeChart=function(a){for(var b=AmCharts.charts,c=b.length-1;0<=c;c--)b[c]==a&&b.splice(c,1)};AmCharts.IEversion=0;
4
- -1!=navigator.appVersion.indexOf("MSIE")&&document.documentMode&&(AmCharts.IEversion=Number(document.documentMode));if(document.addEventListener||window.opera)AmCharts.isNN=!0,AmCharts.isIE=!1,AmCharts.dx=0.5,AmCharts.dy=0.5;document.attachEvent&&(AmCharts.isNN=!1,AmCharts.isIE=!0,9>AmCharts.IEversion&&(AmCharts.dx=0,AmCharts.dy=0));window.chrome&&(AmCharts.chrome=!0);AmCharts.handleResize=function(){for(var a=AmCharts.charts,b=0;b<a.length;b++){var c=a[b];c&&c.div&&c.handleResize()}};
5
- AmCharts.handleMouseUp=function(a){for(var b=AmCharts.charts,c=0;c<b.length;c++){var d=b[c];d&&d.handleReleaseOutside(a)}};AmCharts.handleMouseMove=function(a){for(var b=AmCharts.charts,c=0;c<b.length;c++){var d=b[c];d&&d.handleMouseMove(a)}};AmCharts.resetMouseOver=function(){for(var a=AmCharts.charts,b=0;b<a.length;b++){var c=a[b];c&&(c.mouseIsOver=!1)}};AmCharts.onReadyArray=[];AmCharts.ready=function(a){AmCharts.onReadyArray.push(a)};
6
- AmCharts.handleLoad=function(){for(var a=AmCharts.onReadyArray,b=0;b<a.length;b++)(0,a[b])()};AmCharts.useUTC=!1;AmCharts.updateRate=40;AmCharts.uid=0;AmCharts.getUniqueId=function(){AmCharts.uid++;return"AmChartsEl-"+AmCharts.uid};AmCharts.isNN&&(document.addEventListener("mousemove",AmCharts.handleMouseMove,!0),window.addEventListener("resize",AmCharts.handleResize,!0),document.addEventListener("mouseup",AmCharts.handleMouseUp,!0),window.addEventListener("load",AmCharts.handleLoad,!0));
7
- AmCharts.isIE&&(document.attachEvent("onmousemove",AmCharts.handleMouseMove),window.attachEvent("onresize",AmCharts.handleResize),document.attachEvent("onmouseup",AmCharts.handleMouseUp),window.attachEvent("onload",AmCharts.handleLoad));
8
- AmCharts.clear=function(){var a=AmCharts.charts;if(a)for(var b=0;b<a.length;b++)a[b].clear();AmCharts.charts=null;AmCharts.isNN&&(document.removeEventListener("mousemove",AmCharts.handleMouseMove,!0),window.removeEventListener("resize",AmCharts.handleResize,!0),document.removeEventListener("mouseup",AmCharts.handleMouseUp,!0),window.removeEventListener("load",AmCharts.handleLoad,!0));AmCharts.isIE&&(document.detachEvent("onmousemove",AmCharts.handleMouseMove),window.detachEvent("onresize",AmCharts.handleResize),
9
- document.detachEvent("onmouseup",AmCharts.handleMouseUp),window.detachEvent("onload",AmCharts.handleLoad))};AmCharts.toBoolean=function(a,b){if(void 0===a)return b;switch(String(a).toLowerCase()){case "true":case "yes":case "1":return!0;case "false":case "no":case "0":case null:return!1;default:return Boolean(a)}};AmCharts.removeFromArray=function(a,b){var c;for(c=a.length-1;0<=c;c--)a[c]==b&&a.splice(c,1)};
10
- AmCharts.getStyle=function(a,b){var c="";document.defaultView&&document.defaultView.getComputedStyle?c=document.defaultView.getComputedStyle(a,"").getPropertyValue(b):a.currentStyle&&(b=b.replace(/\-(\w)/g,function(a,b){return b.toUpperCase()}),c=a.currentStyle[b]);return c};AmCharts.removePx=function(a){return Number(a.substring(0,a.length-2))};
11
- AmCharts.getURL=function(a,b){if(a)if("_self"==b||!b)window.location.href=a;else if("_top"==b&&window.top)window.top.location.href=a;else if("_parent"==b&&window.parent)window.parent.location.href=a;else{var c=document.getElementsByName(b)[0];c?c.src=a:window.open(a)}};AmCharts.formatMilliseconds=function(a,b){if(-1!=a.indexOf("fff")){var c=b.getMilliseconds(),d=String(c);10>c&&(d="00"+c);10<=c&&100>c&&(d="0"+c);a=a.replace(/fff/g,d)}return a};
12
- AmCharts.ifArray=function(a){return a&&0<a.length?!0:!1};AmCharts.callMethod=function(a,b){var c;for(c=0;c<b.length;c++){var d=b[c];if(d){if(d[a])d[a]();var f=d.length;if(0<f){var e;for(e=0;e<f;e++){var g=d[e];if(g&&g[a])g[a]()}}}}};AmCharts.toNumber=function(a){return"number"==typeof a?a:Number(String(a).replace(/[^0-9\-.]+/g,""))};
13
- AmCharts.toColor=function(a){if(""!==a&&void 0!==a)if(-1!=a.indexOf(",")){a=a.split(",");var b;for(b=0;b<a.length;b++){var c=a[b].substring(a[b].length-6,a[b].length);a[b]="#"+c}}else a=a.substring(a.length-6,a.length),a="#"+a;return a};AmCharts.toCoordinate=function(a,b,c){var d;void 0!==a&&(a=String(a),c&&c<b&&(b=c),d=Number(a),-1!=a.indexOf("!")&&(d=b-Number(a.substr(1))),-1!=a.indexOf("%")&&(d=b*Number(a.substr(0,a.length-1))/100));return d};
14
- AmCharts.fitToBounds=function(a,b,c){a<b&&(a=b);a>c&&(a=c);return a};AmCharts.isDefined=function(a){return void 0===a?!1:!0};AmCharts.stripNumbers=function(a){return a.replace(/[0-9]+/g,"")};AmCharts.extractPeriod=function(a){var b=AmCharts.stripNumbers(a),c=1;b!=a&&(c=Number(a.slice(0,a.indexOf(b))));return{period:b,count:c}};
15
- AmCharts.resetDateToMin=function(a,b,c,d){void 0===d&&(d=1);var f=a.getFullYear(),e=a.getMonth(),g=a.getDate(),h=a.getHours(),j=a.getMinutes(),l=a.getSeconds(),k=a.getMilliseconds();a=a.getDay();switch(b){case "YYYY":f=Math.floor(f/c)*c;e=0;g=1;k=l=j=h=0;break;case "MM":e=Math.floor(e/c)*c;g=1;k=l=j=h=0;break;case "WW":0===a&&0<d&&(a=7);g=g-a+d;k=l=j=h=0;break;case "DD":g=Math.floor(g/c)*c;k=l=j=h=0;break;case "hh":h=Math.floor(h/c)*c;k=l=j=0;break;case "mm":j=Math.floor(j/c)*c;k=l=0;break;case "ss":l=
16
- Math.floor(l/c)*c;k=0;break;case "fff":k=Math.floor(k/c)*c}return a=new Date(f,e,g,h,j,l,k)};AmCharts.getPeriodDuration=function(a,b){void 0===b&&(b=1);var c;switch(a){case "YYYY":c=316224E5;break;case "MM":c=26784E5;break;case "WW":c=6048E5;break;case "DD":c=864E5;break;case "hh":c=36E5;break;case "mm":c=6E4;break;case "ss":c=1E3;break;case "fff":c=1}return c*b};AmCharts.roundTo=function(a,b){if(0>b)return a;var c=Math.pow(10,b);return Math.round(a*c)/c};
17
- AmCharts.toFixed=function(a,b){var c=String(Math.round(a*Math.pow(10,b)));if(0<b){var d=c.length;if(d<b){var f;for(f=0;f<b-d;f++)c="0"+c}d=c.substring(0,c.length-b);""===d&&(d=0);return d+"."+c.substring(c.length-b,c.length)}return String(c)};AmCharts.intervals={s:{nextInterval:"ss",contains:1E3},ss:{nextInterval:"mm",contains:60,count:0},mm:{nextInterval:"hh",contains:60,count:1},hh:{nextInterval:"DD",contains:24,count:2},DD:{nextInterval:"",contains:Infinity,count:3}};
18
- AmCharts.getMaxInterval=function(a,b){var c=AmCharts.intervals;return a>=c[b].contains?(a=Math.round(a/c[b].contains),b=c[b].nextInterval,AmCharts.getMaxInterval(a,b)):"ss"==b?c[b].nextInterval:b};
19
- AmCharts.formatDuration=function(a,b,c,d,f,e){var g=AmCharts.intervals,h=e.decimalSeparator;if(a>=g[b].contains){var j=a-Math.floor(a/g[b].contains)*g[b].contains;"ss"==b&&(j=AmCharts.formatNumber(j,e),1==j.split(h)[0].length&&(j="0"+j));if(("mm"==b||"hh"==b)&&10>j)j="0"+j;c=j+""+d[b]+""+c;a=Math.floor(a/g[b].contains);b=g[b].nextInterval;return AmCharts.formatDuration(a,b,c,d,f,e)}"ss"==b&&(a=AmCharts.formatNumber(a,e),1==a.split(h)[0].length&&(a="0"+a));if(("mm"==b||"hh"==b)&&10>a)a="0"+a;c=a+""+
20
- d[b]+""+c;if(g[f].count>g[b].count)for(a=g[b].count;a<g[f].count;a++)b=g[b].nextInterval,"ss"==b||"mm"==b||"hh"==b?c="00"+d[b]+""+c:"DD"==b&&(c="0"+d[b]+""+c);":"==c.charAt(c.length-1)&&(c=c.substring(0,c.length-1));return c};
21
- AmCharts.formatNumber=function(a,b,c,d,f){a=AmCharts.roundTo(a,b.precision);isNaN(c)&&(c=b.precision);var e=b.decimalSeparator;b=b.thousandsSeparator;var g;g=0>a?"-":"";a=Math.abs(a);var h=String(a),j=!1;-1!=h.indexOf("e")&&(j=!0);0<=c&&(0!==a&&!j)&&(h=AmCharts.toFixed(a,c));var l="";if(j)l=h;else{var h=h.split("."),j=String(h[0]),k;for(k=j.length;0<=k;k-=3)l=k!=j.length?0!==k?j.substring(k-3,k)+b+l:j.substring(k-3,k)+l:j.substring(k-3,k);void 0!==h[1]&&(l=l+e+h[1]);void 0!==c&&(0<c&&"0"!=l)&&(l=
22
- AmCharts.addZeroes(l,e,c))}l=g+l;""===g&&(!0===d&&0!==a)&&(l="+"+l);!0===f&&(l+="%");return l};AmCharts.addZeroes=function(a,b,c){a=a.split(b);void 0===a[1]&&0<c&&(a[1]="0");return a[1].length<c?(a[1]+="0",AmCharts.addZeroes(a[0]+b+a[1],b,c)):void 0!==a[1]?a[0]+b+a[1]:a[0]};
23
- AmCharts.scientificToNormal=function(a){var b;a=String(a).split("e");var c;if("-"==a[1].substr(0,1)){b="0.";for(c=0;c<Math.abs(Number(a[1]))-1;c++)b+="0";b+=a[0].split(".").join("")}else{var d=0;b=a[0].split(".");b[1]&&(d=b[1].length);b=a[0].split(".").join("");for(c=0;c<Math.abs(Number(a[1]))-d;c++)b+="0"}return b};
24
- AmCharts.toScientific=function(a,b){if(0===a)return"0";var c=Math.floor(Math.log(Math.abs(a))*Math.LOG10E);Math.pow(10,c);mantissa=String(mantissa).split(".").join(b);return String(mantissa)+"e"+c};AmCharts.randomColor=function(){return"#"+("00000"+(16777216*Math.random()<<0).toString(16)).substr(-6)};
25
- AmCharts.hitTest=function(a,b,c){var d=!1,f=a.x,e=a.x+a.width,g=a.y,h=a.y+a.height,j=AmCharts.isInRectangle;d||(d=j(f,g,b));d||(d=j(f,h,b));d||(d=j(e,g,b));d||(d=j(e,h,b));!d&&!0!==c&&(d=AmCharts.hitTest(b,a,!0));return d};AmCharts.isInRectangle=function(a,b,c){return a>=c.x-5&&a<=c.x+c.width+5&&b>=c.y-5&&b<=c.y+c.height+5?!0:!1};AmCharts.isPercents=function(a){if(-1!=String(a).indexOf("%"))return!0};AmCharts.dayNames="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" ");
26
- AmCharts.shortDayNames="Sun Mon Tue Wed Thu Fri Sat".split(" ");AmCharts.monthNames="January February March April May June July August September October November December".split(" ");AmCharts.shortMonthNames="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" ");AmCharts.getWeekNumber=function(a){a=new Date(a);a.setHours(0,0,0);a.setDate(a.getDate()+4-(a.getDay()||7));var b=new Date(a.getFullYear(),0,1);return Math.ceil(((a-b)/864E5+1)/7)};
27
- AmCharts.formatDate=function(a,b){var c,d,f,e,g,h,j,l,k=AmCharts.getWeekNumber(a);AmCharts.useUTC?(c=a.getUTCFullYear(),d=a.getUTCMonth(),f=a.getUTCDate(),e=a.getUTCDay(),g=a.getUTCHours(),h=a.getUTCMinutes(),j=a.getUTCSeconds(),l=a.getUTCMilliseconds()):(c=a.getFullYear(),d=a.getMonth(),f=a.getDate(),e=a.getDay(),g=a.getHours(),h=a.getMinutes(),j=a.getSeconds(),l=a.getMilliseconds());var m=String(c).substr(2,2),u=d+1;9>d&&(u="0"+u);var t=f;10>f&&(t="0"+f);var x="0"+e;b=b.replace(/W/g,k);k=g;24==
28
- k&&(k=0);var p=k;10>p&&(p="0"+p);b=b.replace(/JJ/g,p);b=b.replace(/J/g,k);k=g;0===k&&(k=24);p=k;10>p&&(p="0"+p);b=b.replace(/HH/g,p);b=b.replace(/H/g,k);k=g;11<k&&(k-=12);p=k;10>p&&(p="0"+p);b=b.replace(/KK/g,p);b=b.replace(/K/g,k);k=g;0===k&&(k=12);12<k&&(k-=12);p=k;10>p&&(p="0"+p);b=b.replace(/LL/g,p);b=b.replace(/L/g,k);k=h;10>k&&(k="0"+k);b=b.replace(/NN/g,k);b=b.replace(/N/g,h);h=j;10>h&&(h="0"+h);b=b.replace(/SS/g,h);b=b.replace(/S/g,j);j=l;10>j&&(j="00"+j);100>j&&(j="0"+j);h=l;10>h&&(h="00"+
29
- h);b=b.replace(/QQQ/g,j);b=b.replace(/QQ/g,h);b=b.replace(/Q/g,l);b=12>g?b.replace(/A/g,"am"):b.replace(/A/g,"pm");b=b.replace(/YYYY/g,"@IIII@");b=b.replace(/YY/g,"@II@");b=b.replace(/MMMM/g,"@XXXX@");b=b.replace(/MMM/g,"@XXX@");b=b.replace(/MM/g,"@XX@");b=b.replace(/M/g,"@X@");b=b.replace(/DD/g,"@RR@");b=b.replace(/D/g,"@R@");b=b.replace(/EEEE/g,"@PPPP@");b=b.replace(/EEE/g,"@PPP@");b=b.replace(/EE/g,"@PP@");b=b.replace(/E/g,"@P@");b=b.replace(/@IIII@/g,c);b=b.replace(/@II@/g,m);b=b.replace(/@XXXX@/g,
30
- AmCharts.monthNames[d]);b=b.replace(/@XXX@/g,AmCharts.shortMonthNames[d]);b=b.replace(/@XX@/g,u);b=b.replace(/@X@/g,d+1);b=b.replace(/@RR@/g,t);b=b.replace(/@R@/g,f);b=b.replace(/@PPPP@/g,AmCharts.dayNames[e]);b=b.replace(/@PPP@/g,AmCharts.shortDayNames[e]);b=b.replace(/@PP@/g,x);return b=b.replace(/@P@/g,e)};AmCharts.findPosX=function(a){var b=a,c=a.offsetLeft;if(a.offsetParent){for(;a=a.offsetParent;)c+=a.offsetLeft;for(;(b=b.parentNode)&&b!=document.body;)c-=b.scrollLeft||0}return c};
31
- AmCharts.findPosY=function(a){var b=a,c=a.offsetTop;if(a.offsetParent){for(;a=a.offsetParent;)c+=a.offsetTop;for(;(b=b.parentNode)&&b!=document.body;)c-=b.scrollTop||0}return c};AmCharts.findIfFixed=function(a){if(a.offsetParent)for(;a=a.offsetParent;)if("fixed"==AmCharts.getStyle(a,"position"))return!0;return!1};AmCharts.findIfAuto=function(a){return a.style&&"auto"==AmCharts.getStyle(a,"overflow")?!0:a.parentNode?AmCharts.findIfAuto(a.parentNode):!1};
32
- AmCharts.findScrollLeft=function(a,b){a.scrollLeft&&(b+=a.scrollLeft);return a.parentNode?AmCharts.findScrollLeft(a.parentNode,b):b};AmCharts.findScrollTop=function(a,b){a.scrollTop&&(b+=a.scrollTop);return a.parentNode?AmCharts.findScrollTop(a.parentNode,b):b};
33
- AmCharts.formatValue=function(a,b,c,d,f,e,g,h){if(b){void 0===f&&(f="");var j;for(j=0;j<c.length;j++){var l=c[j],k=b[l];void 0!==k&&(k=e?AmCharts.addPrefix(k,h,g,d):AmCharts.formatNumber(k,d),a=a.replace(RegExp("\\[\\["+f+""+l+"\\]\\]","g"),k))}}return a};AmCharts.formatDataContextValue=function(a,b){if(a){var c=a.match(/\[\[.*?\]\]/g),d;for(d=0;d<c.length;d++){var f=c[d],f=f.substr(2,f.length-4);void 0!==b[f]&&(a=a.replace(RegExp("\\[\\["+f+"\\]\\]","g"),b[f]))}}return a};
34
- AmCharts.massReplace=function(a,b){for(var c in b)if(b.hasOwnProperty(c)){var d=b[c];void 0===d&&(d="");a=a.replace(c,d)}return a};AmCharts.cleanFromEmpty=function(a){return a.replace(/\[\[[^\]]*\]\]/g,"")};
35
- AmCharts.addPrefix=function(a,b,c,d,f){var e=AmCharts.formatNumber(a,d),g="",h,j,l;if(0===a)return"0";0>a&&(g="-");a=Math.abs(a);if(1<a)for(h=b.length-1;-1<h;h--){if(a>=b[h].number&&(j=a/b[h].number,l=Number(d.precision),1>l&&(l=1),c=AmCharts.roundTo(j,l),!(f&&j!=c))){e=g+""+c+""+b[h].prefix;break}}else for(h=0;h<c.length;h++)if(a<=c[h].number){j=a/c[h].number;l=Math.abs(Math.round(Math.log(j)*Math.LOG10E));j=AmCharts.roundTo(j,l);e=g+""+j+""+c[h].prefix;break}return e};
36
- AmCharts.remove=function(a){a&&a.remove()};AmCharts.copyProperties=function(a,b){for(var c in a)a.hasOwnProperty(c)&&"events"!=c&&(void 0!==a[c]&&"function"!=typeof a[c])&&(b[c]=a[c])};AmCharts.recommended=function(){var a="js";document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")||swfobject&&swfobject.hasFlashPlayerVersion("8")&&(a="flash");return a};
37
- AmCharts.getEffect=function(a){">"==a&&(a="easeOutSine");"<"==a&&(a="easeInSine");"elastic"==a&&(a="easeOutElastic");return a};AmCharts.extend=function(a,b){for(var c in b)void 0!==b[c]&&(a.hasOwnProperty(c)||(a[c]=b[c]))};AmCharts.fixNewLines=function(a){if(9>AmCharts.IEversion&&0<AmCharts.IEversion){var b=RegExp("\\n","g");a&&(a=a.replace(b,"<br />"))}return a};
38
- AmCharts.deleteObject=function(a,b){if(a){if(void 0===b||null===b)b=20;if(0!=b)if("[object Array]"===Object.prototype.toString.call(a))for(var c=0;c<a.length;c++)AmCharts.deleteObject(a[c],b-1),a[c]=null;else try{for(c in a)a[c]&&("object"==typeof a[c]&&AmCharts.deleteObject(a[c],b-1),"function"!=typeof a[c]&&(a[c]=null))}catch(d){}}};
39
- AmCharts.changeDate=function(a,b,c,d,f){var e=-1;void 0===d&&(d=!0);void 0===f&&(f=!1);!0===d&&(e=1);switch(b){case "YYYY":a.setFullYear(a.getFullYear()+c*e);!d&&!f&&a.setDate(a.getDate()+1);break;case "MM":a.setMonth(a.getMonth()+c*e);!d&&!f&&a.setDate(a.getDate()+1);break;case "DD":a.setDate(a.getDate()+c*e);break;case "WW":a.setDate(a.getDate()+7*c*e+1);break;case "hh":a.setHours(a.getHours()+c*e);break;case "mm":a.setMinutes(a.getMinutes()+c*e);break;case "ss":a.setSeconds(a.getSeconds()+c*e);
40
- break;case "fff":a.setMilliseconds(a.getMilliseconds()+c*e)}return a};AmCharts.AmDraw=AmCharts.Class({construct:function(a,b,c){AmCharts.SVG_NS="http://www.w3.org/2000/svg";AmCharts.SVG_XLINK="http://www.w3.org/1999/xlink";AmCharts.hasSVG=!!document.createElementNS&&!!document.createElementNS(AmCharts.SVG_NS,"svg").createSVGRect;1>b&&(b=10);1>c&&(c=10);this.div=a;this.width=b;this.height=c;this.rBin=document.createElement("div");if(AmCharts.hasSVG){AmCharts.SVG=!0;var d=this.createSvgElement("svg");d.style.position="absolute";d.style.width=b+"px";d.style.height=c+"px";
41
- d.setAttribute("version","1.1");a.appendChild(d);this.container=d;this.R=new AmCharts.SVGRenderer(this)}else AmCharts.isIE&&AmCharts.VMLRenderer&&(AmCharts.VML=!0,AmCharts.vmlStyleSheet||(document.namespaces.add("amvml","urn:schemas-microsoft-com:vml"),b=document.createStyleSheet(),b.addRule(".amvml","behavior:url(#default#VML); display:inline-block; antialias:true"),AmCharts.vmlStyleSheet=b),this.container=a,this.R=new AmCharts.VMLRenderer(this),this.R.disableSelection(a))},createSvgElement:function(a){return document.createElementNS(AmCharts.SVG_NS,
42
- a)},circle:function(a,b,c,d){var f=new AmCharts.AmDObject("circle",this);f.attr({r:c,cx:a,cy:b});this.addToContainer(f.node,d);return f},setSize:function(a,b){0<a&&0<b&&(this.container.style.width=a+"px",this.container.style.height=b+"px")},rect:function(a,b,c,d,f,e,g){var h=new AmCharts.AmDObject("rect",this);AmCharts.VML&&(f=100*f/Math.min(c,d),c+=2*e,d+=2*e,h.bw=e,h.node.style.marginLeft=-e,h.node.style.marginTop=-e);1>c&&(c=1);1>d&&(d=1);h.attr({x:a,y:b,width:c,height:d,rx:f,ry:f,"stroke-width":e});
43
- this.addToContainer(h.node,g);return h},image:function(a,b,c,d,f,e){var g=new AmCharts.AmDObject("image",this);g.attr({x:b,y:c,width:d,height:f});this.R.path(g,a);this.addToContainer(g.node,e);return g},addToContainer:function(a,b){b||(b=this.container);b.appendChild(a)},text:function(a,b,c){return this.R.text(a,b,c)},path:function(a,b,c,d){var f=new AmCharts.AmDObject("path",this);d||(d="100,100");f.attr({cs:d});c?f.attr({dd:a}):f.attr({d:a});this.addToContainer(f.node,b);return f},set:function(a){return this.R.set(a)},
44
- remove:function(a){if(a){var b=this.rBin;b.appendChild(a);b.innerHTML=""}},bounce:function(a,b,c,d,f){return(b/=f)<1/2.75?d*7.5625*b*b+c:b<2/2.75?d*(7.5625*(b-=1.5/2.75)*b+0.75)+c:b<2.5/2.75?d*(7.5625*(b-=2.25/2.75)*b+0.9375)+c:d*(7.5625*(b-=2.625/2.75)*b+0.984375)+c},easeInSine:function(a,b,c,d,f){return-d*Math.cos(b/f*(Math.PI/2))+d+c},easeOutSine:function(a,b,c,d,f){return d*Math.sin(b/f*(Math.PI/2))+c},easeOutElastic:function(a,b,c,d,f){a=1.70158;var e=0,g=d;if(0===b)return c;if(1==(b/=f))return c+
45
- d;e||(e=0.3*f);g<Math.abs(d)?(g=d,a=e/4):a=e/(2*Math.PI)*Math.asin(d/g);return g*Math.pow(2,-10*b)*Math.sin((b*f-a)*2*Math.PI/e)+d+c},renderFix:function(){var a=this.container,b=a.style,c;try{c=a.getScreenCTM()||a.createSVGMatrix()}catch(d){c=a.createSVGMatrix()}a=1-c.e%1;c=1-c.f%1;0.5<a&&(a-=1);0.5<c&&(c-=1);a&&(b.left=a+"px");c&&(b.top=c+"px")}});AmCharts.AmDObject=AmCharts.Class({construct:function(a,b){this.D=b;this.R=b.R;this.node=this.R.create(this,a);this.y=this.x=0;this.scale=1},attr:function(a){this.R.attr(this,a);return this},getAttr:function(a){return this.node.getAttribute(a)},setAttr:function(a,b){this.R.setAttr(this,a,b);return this},clipRect:function(a,b,c,d){this.R.clipRect(this,a,b,c,d)},translate:function(a,b,c,d){d||(a=Math.round(a),b=Math.round(b));this.R.move(this,a,b,c);this.x=a;this.y=b;this.scale=c;this.angle&&this.rotate(this.angle)},
46
- rotate:function(a){this.R.rotate(this,a);this.angle=a},animate:function(a,b,c){for(var d in a)if(a.hasOwnProperty(d)){var f=d,e=a[d];c=AmCharts.getEffect(c);this.R.animate(this,f,e,b,c)}},push:function(a){if(a){var b=this.node;b.appendChild(a.node);var c=a.clipPath;c&&b.appendChild(c);(a=a.grad)&&b.appendChild(a)}},text:function(a){this.R.setText(this,a)},remove:function(){this.R.remove(this)},clear:function(){var a=this.node;if(a.hasChildNodes())for(;1<=a.childNodes.length;)a.removeChild(a.firstChild)},
47
- hide:function(){this.setAttr("visibility","hidden")},show:function(){this.setAttr("visibility","visible")},getBBox:function(){return this.R.getBBox(this)},toFront:function(){var a=this.node;if(a){this.prevNextNode=a.nextSibling;var b=a.parentNode;b&&b.appendChild(a)}},toPrevious:function(){var a=this.node;a&&this.prevNextNode&&(a=a.parentNode)&&a.insertBefore(this.prevNextNode,null)},toBack:function(){var a=this.node;if(a){this.prevNextNode=a.nextSibling;var b=a.parentNode;if(b){var c=b.firstChild;c&&
48
- b.insertBefore(a,c)}}},mouseover:function(a){this.R.addListener(this,"mouseover",a);return this},mouseout:function(a){this.R.addListener(this,"mouseout",a);return this},click:function(a){this.R.addListener(this,"click",a);return this},dblclick:function(a){this.R.addListener(this,"dblclick",a);return this},mousedown:function(a){this.R.addListener(this,"mousedown",a);return this},mouseup:function(a){this.R.addListener(this,"mouseup",a);return this},touchstart:function(a){this.R.addListener(this,"touchstart",
49
- a);return this},touchend:function(a){this.R.addListener(this,"touchend",a);return this},contextmenu:function(a){this.node.addEventListener?this.node.addEventListener("contextmenu",a):this.R.addListener(this,"contextmenu",a);return this},stop:function(){var a=this.animationX;a&&AmCharts.removeFromArray(this.R.animations,a);(a=this.animationY)&&AmCharts.removeFromArray(this.R.animations,a)},length:function(){return this.node.childNodes.length},gradient:function(a,b,c){this.R.gradient(this,a,b,c)}});AmCharts.SVGRenderer=AmCharts.Class({construct:function(a){this.D=a;this.animations=[]},create:function(a,b){return document.createElementNS(AmCharts.SVG_NS,b)},attr:function(a,b){for(var c in b)b.hasOwnProperty(c)&&this.setAttr(a,c,b[c])},setAttr:function(a,b,c){void 0!==c&&a.node.setAttribute(b,c)},animate:function(a,b,c,d,f){var e=this,g=a.node;"translate"==b?(g=(g=g.getAttribute("transform"))?String(g).substring(10,g.length-1):"0,0",g=g.split(", ").join(" "),g=g.split(" ").join(","),0===g&&(g=
50
- "0,0")):g=g.getAttribute(b);b={obj:a,frame:0,attribute:b,from:g,to:c,time:d,effect:f};e.animations.push(b);a.animationX=b;e.interval||(e.interval=setInterval(function(){e.updateAnimations.call(e)},AmCharts.updateRate))},updateAnimations:function(){var a;for(a=this.animations.length-1;0<=a;a--){var b=this.animations[a],c=1E3*b.time/AmCharts.updateRate,d=b.frame+1,f=b.obj,e=b.attribute,g,h,j;d<=c?(b.frame++,"translate"==e?(g=b.from.split(","),e=Number(g[0]),g=Number(g[1]),h=b.to.split(","),j=Number(h[0]),
51
- h=Number(h[1]),j=0===j-e?j:Math.round(this.D[b.effect](0,d,e,j-e,c)),b=0===h-g?h:Math.round(this.D[b.effect](0,d,g,h-g,c)),e="transform",b="translate("+j+","+b+")"):(g=Number(b.from),j=Number(b.to),j-=g,b=this.D[b.effect](0,d,g,j,c),0===j&&this.animations.splice(a,1)),this.setAttr(f,e,b)):("translate"==e?(h=b.to.split(","),j=Number(h[0]),h=Number(h[1]),f.translate(j,h)):(j=Number(b.to),this.setAttr(f,e,j)),this.animations.splice(a,1))}},getBBox:function(a){if(a=a.node)try{return a.getBBox()}catch(b){}return{width:0,
52
- height:0,x:0,y:0}},path:function(a,b){a.node.setAttributeNS(AmCharts.SVG_XLINK,"xlink:href",b)},clipRect:function(a,b,c,d,f){var e=a.node,g=a.clipPath;g&&this.D.remove(g);var h=e.parentNode;h&&(e=document.createElementNS(AmCharts.SVG_NS,"clipPath"),g=AmCharts.getUniqueId(),e.setAttribute("id",g),this.D.rect(b,c,d,f,0,0,e),h.appendChild(e),b="#",AmCharts.baseHref&&!AmCharts.isIE&&(b=window.location.href+b),this.setAttr(a,"clip-path","url("+b+g+")"),this.clipPathC++,a.clipPath=e)},text:function(a,b,
53
- c){var d=new AmCharts.AmDObject("text",this.D);a=String(a).split("\n");var f=b["font-size"],e;for(e=0;e<a.length;e++){var g=this.create(null,"tspan");g.appendChild(document.createTextNode(a[e]));g.setAttribute("y",(f+2)*e+f/2+0);g.setAttribute("x",0);d.node.appendChild(g)}d.node.setAttribute("y",f/2+0);this.attr(d,b);this.D.addToContainer(d.node,c);return d},setText:function(a,b){var c=a.node;c&&(c.removeChild(c.firstChild),c.appendChild(document.createTextNode(b)))},move:function(a,b,c,d){b="translate("+
54
- b+","+c+")";d&&(b=b+" scale("+d+")");this.setAttr(a,"transform",b)},rotate:function(a,b){var c=a.node.getAttribute("transform"),d="rotate("+b+")";c&&(d=c+" "+d);this.setAttr(a,"transform",d)},set:function(a){var b=new AmCharts.AmDObject("g",this.D);this.D.container.appendChild(b.node);if(a){var c;for(c=0;c<a.length;c++)b.push(a[c])}return b},addListener:function(a,b,c){a.node["on"+b]=c},gradient:function(a,b,c,d){var f=a.node,e=a.grad;e&&this.D.remove(e);b=document.createElementNS(AmCharts.SVG_NS,
55
- b);e=AmCharts.getUniqueId();b.setAttribute("id",e);if(!isNaN(d)){var g=0,h=0,j=0,l=0;90==d?j=100:270==d?l=100:180==d?g=100:0===d&&(h=100);b.setAttribute("x1",g+"%");b.setAttribute("x2",h+"%");b.setAttribute("y1",j+"%");b.setAttribute("y2",l+"%")}for(d=0;d<c.length;d++)g=document.createElementNS(AmCharts.SVG_NS,"stop"),h=100*d/(c.length-1),0===d&&(h=0),g.setAttribute("offset",h+"%"),g.setAttribute("stop-color",c[d]),b.appendChild(g);f.parentNode.appendChild(b);c="#";AmCharts.baseHref&&!AmCharts.isIE&&
56
- (c=window.location.href+c);f.setAttribute("fill","url("+c+e+")");a.grad=b},remove:function(a){a.clipPath&&this.D.remove(a.clipPath);a.grad&&this.D.remove(a.grad);this.D.remove(a.node)}});AmCharts.AmChart=AmCharts.Class({construct:function(){this.version="2.10.1";AmCharts.addChart(this);this.createEvents("dataUpdated","init","rendered");this.height=this.width="100%";this.dataChanged=!0;this.chartCreated=!1;this.previousWidth=this.previousHeight=0;this.backgroundColor="#FFFFFF";this.borderAlpha=this.backgroundAlpha=0;this.color=this.borderColor="#000000";this.fontFamily="Verdana";this.fontSize=11;this.numberFormatter={precision:-1,decimalSeparator:".",thousandsSeparator:","};this.percentFormatter=
57
- {precision:2,decimalSeparator:".",thousandsSeparator:","};this.labels=[];this.allLabels=[];this.titles=[];this.marginRight=this.marginLeft=this.autoMarginOffset=0;this.timeOuts=[];var a=document.createElement("div"),b=a.style;b.overflow="hidden";b.position="relative";b.textAlign="left";this.chartDiv=a;a=document.createElement("div");b=a.style;b.overflow="hidden";b.position="relative";b.textAlign="left";this.legendDiv=a;this.balloon=new AmCharts.AmBalloon;this.balloon.chart=this;this.titleHeight=0;
58
- this.prefixesOfBigNumbers=[{number:1E3,prefix:"k"},{number:1E6,prefix:"M"},{number:1E9,prefix:"G"},{number:1E12,prefix:"T"},{number:1E15,prefix:"P"},{number:1E18,prefix:"E"},{number:1E21,prefix:"Z"},{number:1E24,prefix:"Y"}];this.prefixesOfSmallNumbers=[{number:1E-24,prefix:"y"},{number:1E-21,prefix:"z"},{number:1E-18,prefix:"a"},{number:1E-15,prefix:"f"},{number:1E-12,prefix:"p"},{number:1E-9,prefix:"n"},{number:1E-6,prefix:"\u03bc"},{number:0.001,prefix:"m"}];this.panEventsEnabled=!1;AmCharts.bezierX=
59
- 3;AmCharts.bezierY=6;this.product="amcharts"},drawChart:function(){this.drawBackground();this.redrawLabels();this.drawTitles()},drawBackground:function(){AmCharts.remove(this.background);var a=this.container,b=this.backgroundColor,c=this.backgroundAlpha,d=this.set,f=this.updateWidth();this.realWidth=f;var e=this.updateHeight();this.realHeight=e;this.background=b=AmCharts.polygon(a,[0,f-1,f-1,0],[0,0,e-1,e-1],b,c,1,this.borderColor,this.borderAlpha);d.push(b);if(b=this.backgroundImage)this.path&&(b=
60
- this.path+b),this.bgImg=a=a.image(b,0,0,f,e),d.push(a)},drawTitles:function(){var a=this.titles;if(AmCharts.ifArray(a)){var b=20,c;for(c=0;c<a.length;c++){var d=a[c],f=d.color;void 0===f&&(f=this.color);var e=d.size;isNaN(d.alpha);var g=this.marginLeft,f=AmCharts.text(this.container,d.text,f,this.fontFamily,e);f.translate(g+(this.realWidth-this.marginRight-g)/2,b);g=!0;void 0!==d.bold&&(g=d.bold);g&&f.attr({"font-weight":"bold"});b+=e+6;this.freeLabelsSet.push(f)}}},write:function(a){var b=this.balloon;
61
- b&&!b.chart&&(b.chart=this);a="object"!=typeof a?document.getElementById(a):a;a.innerHTML="";this.div=a;a.style.overflow="hidden";a.style.textAlign="left";var b=this.chartDiv,c=this.legendDiv,d=this.legend,f=c.style,e=b.style;this.measure();var g,h;if(d)switch(d.position){case "bottom":a.appendChild(b);a.appendChild(c);break;case "top":a.appendChild(c);a.appendChild(b);break;case "absolute":g=document.createElement("div");h=g.style;h.position="relative";h.width=a.style.width;h.height=a.style.height;
62
- a.appendChild(g);f.position="absolute";e.position="absolute";void 0!==d.left&&(f.left=d.left+"px");void 0!==d.right&&(f.right=d.right+"px");void 0!==d.top&&(f.top=d.top+"px");void 0!==d.bottom&&(f.bottom=d.bottom+"px");d.marginLeft=0;d.marginRight=0;g.appendChild(b);g.appendChild(c);break;case "right":g=document.createElement("div");h=g.style;h.position="relative";h.width=a.style.width;h.height=a.style.height;a.appendChild(g);f.position="relative";e.position="absolute";g.appendChild(b);g.appendChild(c);
63
- break;case "left":g=document.createElement("div");h=g.style;h.position="relative";h.width=a.style.width;h.height=a.style.height;a.appendChild(g);f.position="absolute";e.position="relative";g.appendChild(b);g.appendChild(c);break;case "outside":a.appendChild(b)}else a.appendChild(b);this.listenersAdded||(this.addListeners(),this.listenersAdded=!0);this.initChart()},createLabelsSet:function(){AmCharts.remove(this.labelsSet);this.labelsSet=this.container.set();this.freeLabelsSet.push(this.labelsSet)},
64
- initChart:function(){this.divIsFixed=AmCharts.findIfFixed(this.chartDiv);this.previousHeight=this.divRealHeight;this.previousWidth=this.divRealWidth;this.destroy();var a=0;document.attachEvent&&!window.opera&&(a=1);this.dmouseX=this.dmouseY=0;var b=document.getElementsByTagName("html")[0];if(b&&window.getComputedStyle&&(b=window.getComputedStyle(b,null)))this.dmouseY=AmCharts.removePx(b.getPropertyValue("margin-top")),this.dmouseX=AmCharts.removePx(b.getPropertyValue("margin-left"));this.mouseMode=
65
- a;this.container=new AmCharts.AmDraw(this.chartDiv,this.realWidth,this.realHeight);if(AmCharts.VML||AmCharts.SVG)a=this.container,this.set=a.set(),this.gridSet=a.set(),this.graphsBehindSet=a.set(),this.bulletBehindSet=a.set(),this.columnSet=a.set(),this.graphsSet=a.set(),this.trendLinesSet=a.set(),this.axesLabelsSet=a.set(),this.axesSet=a.set(),this.cursorSet=a.set(),this.scrollbarsSet=a.set(),this.bulletSet=a.set(),this.freeLabelsSet=a.set(),this.balloonsSet=a.set(),this.balloonsSet.setAttr("id",
66
- "balloons"),this.zoomButtonSet=a.set(),this.linkSet=a.set(),this.drb(),this.renderFix()},measure:function(){var a=this.div,b=this.chartDiv,c=a.offsetWidth,d=a.offsetHeight,f=this.container;a.clientHeight&&(c=a.clientWidth,d=a.clientHeight);var e=AmCharts.removePx(AmCharts.getStyle(a,"padding-left")),g=AmCharts.removePx(AmCharts.getStyle(a,"padding-right")),h=AmCharts.removePx(AmCharts.getStyle(a,"padding-top")),j=AmCharts.removePx(AmCharts.getStyle(a,"padding-bottom"));isNaN(e)||(c-=e);isNaN(g)||
67
- (c-=g);isNaN(h)||(d-=h);isNaN(j)||(d-=j);e=a.style;a=e.width;e=e.height;-1!=a.indexOf("px")&&(c=AmCharts.removePx(a));-1!=e.indexOf("px")&&(d=AmCharts.removePx(e));a=AmCharts.toCoordinate(this.width,c);e=AmCharts.toCoordinate(this.height,d);if(a!=this.previousWidth||e!=this.previousHeight)b.style.width=a+"px",b.style.height=e+"px",f&&f.setSize(a,e),this.balloon.setBounds(2,2,a-2,e);this.realWidth=a;this.realHeight=e;this.divRealWidth=c;this.divRealHeight=d},destroy:function(){this.chartDiv.innerHTML=
68
- "";this.clearTimeOuts()},clearTimeOuts:function(){var a=this.timeOuts;if(a){var b;for(b=0;b<a.length;b++)clearTimeout(a[b])}this.timeOuts=[]},clear:function(a){AmCharts.callMethod("clear",[this.chartScrollbar,this.scrollbarV,this.scrollbarH,this.chartCursor]);this.chartCursor=this.scrollbarH=this.scrollbarV=this.chartScrollbar=null;this.clearTimeOuts();this.container&&(this.container.remove(this.chartDiv),this.container.remove(this.legendDiv));a||AmCharts.removeChart(this)},setMouseCursor:function(a){"auto"==
69
- a&&AmCharts.isNN&&(a="default");this.chartDiv.style.cursor=a;this.legendDiv.style.cursor=a},redrawLabels:function(){this.labels=[];var a=this.allLabels;this.createLabelsSet();var b;for(b=0;b<a.length;b++)this.drawLabel(a[b])},drawLabel:function(a){if(this.container){var b=a.y,c=a.text,d=a.align,f=a.size,e=a.color,g=a.rotation,h=a.alpha,j=a.bold,l=AmCharts.toCoordinate(a.x,this.realWidth),b=AmCharts.toCoordinate(b,this.realHeight);l||(l=0);b||(b=0);void 0===e&&(e=this.color);isNaN(f)&&(f=this.fontSize);
70
- d||(d="start");"left"==d&&(d="start");"right"==d&&(d="end");"center"==d&&(d="middle",g?b=this.realHeight-b+b/2:l=this.realWidth/2-l);void 0===h&&(h=1);void 0===g&&(g=0);b+=f/2;c=AmCharts.text(this.container,c,e,this.fontFamily,f,d,j,h);c.translate(l,b);0!==g&&c.rotate(g);a.url&&(c.setAttr("cursor","pointer"),c.click(function(){AmCharts.getURL(a.url)}));this.labelsSet.push(c);this.labels.push(c)}},addLabel:function(a,b,c,d,f,e,g,h,j,l){a={x:a,y:b,text:c,align:d,size:f,color:e,alpha:h,rotation:g,bold:j,
71
- url:l};this.container&&this.drawLabel(a);this.allLabels.push(a)},clearLabels:function(){var a=this.labels,b;for(b=a.length-1;0<=b;b--)a[b].remove();this.labels=[];this.allLabels=[]},updateHeight:function(){var a=this.divRealHeight,b=this.legend;if(b){var c=this.legendDiv.offsetHeight,b=b.position;if("top"==b||"bottom"==b)a-=c,0>a&&(a=0),this.chartDiv.style.height=a+"px"}return a},updateWidth:function(){var a=this.divRealWidth,b=this.divRealHeight,c=this.legend;if(c){var d=this.legendDiv,f=d.offsetWidth,
72
- e=d.offsetHeight,d=d.style,g=this.chartDiv.style,c=c.position;if("right"==c||"left"==c)a-=f,0>a&&(a=0),g.width=a+"px","left"==c?g.left=f+"px":d.left=a+"px",d.top=(b-e)/2+"px"}return a},getTitleHeight:function(){var a=0,b=this.titles;if(0<b.length){var a=15,c;for(c=0;c<b.length;c++)a+=b[c].size+6}return a},addTitle:function(a,b,c,d,f){isNaN(b)&&(b=this.fontSize+2);a={text:a,size:b,color:c,alpha:d,bold:f};this.titles.push(a);return a},addListeners:function(){var a=this,b=a.chartDiv;AmCharts.isNN&&(a.panEventsEnabled&&
73
- "ontouchstart"in document.documentElement&&(b.addEventListener("touchstart",function(b){a.handleTouchMove.call(a,b);a.handleTouchStart.call(a,b)},!0),b.addEventListener("touchmove",function(b){a.handleTouchMove.call(a,b)},!0),b.addEventListener("touchend",function(b){a.handleTouchEnd.call(a,b)},!0)),b.addEventListener("mousedown",function(b){a.handleMouseDown.call(a,b)},!0),b.addEventListener("mouseover",function(b){a.handleMouseOver.call(a,b)},!0),b.addEventListener("mouseout",function(b){a.handleMouseOut.call(a,
74
- b)},!0));AmCharts.isIE&&(b.attachEvent("onmousedown",function(b){a.handleMouseDown.call(a,b)}),b.attachEvent("onmouseover",function(b){a.handleMouseOver.call(a,b)}),b.attachEvent("onmouseout",function(b){a.handleMouseOut.call(a,b)}))},dispDUpd:function(){var a;this.dispatchDataUpdated&&(this.dispatchDataUpdated=!1,a="dataUpdated",this.fire(a,{type:a,chart:this}));this.chartCreated||(a="init",this.fire(a,{type:a,chart:this}));this.chartRendered||(a="rendered",this.fire(a,{type:a,chart:this}),this.chartRendered=
75
- !0)},drb:function(){var a=this.product,b=a+".com",c=window.location.hostname.split("."),d;2<=c.length&&(d=c[c.length-2]+"."+c[c.length-1]);AmCharts.remove(this.bbset);if(d!=b){var b=b+"/?utm_source=swf&utm_medium=demo&utm_campaign=jsDemo"+a,f="chart by ",c=145;"ammap"==a&&(f="tool by ",c=125);d=AmCharts.rect(this.container,c,20,"#FFFFFF",1);f=AmCharts.text(this.container,f+a+".com","#000000","Verdana",11,"start");f.translate(7,9);d=this.container.set([d,f]);"ammap"==a&&d.translate(this.realWidth-
76
- c,0);this.bbset=d;this.linkSet.push(d);d.setAttr("cursor","pointer");d.click(function(){window.location.href="http://"+b});for(a=0;a<d.length;a++)d[a].attr({cursor:"pointer"})}},validateSize:function(){var a=this;a.measure();var b=a.legend;if((a.realWidth!=a.previousWidth||a.realHeight!=a.previousHeight)&&0<a.realWidth&&0<a.realHeight){a.sizeChanged=!0;if(b){clearTimeout(a.legendInitTO);var c=setTimeout(function(){b.invalidateSize()},100);a.timeOuts.push(c);a.legendInitTO=c}a.marginsUpdated="xy"!=
77
- a.chartType?!1:!0;clearTimeout(a.initTO);c=setTimeout(function(){a.initChart()},150);a.timeOuts.push(c);a.initTO=c}a.renderFix();b&&b.renderFix()},invalidateSize:function(){this.previousHeight=this.previousWidth=NaN;this.invalidateSizeReal()},invalidateSizeReal:function(){var a=this;a.marginsUpdated=!1;clearTimeout(a.validateTO);var b=setTimeout(function(){a.validateSize()},5);a.timeOuts.push(b);a.validateTO=b},validateData:function(a){this.chartCreated&&(this.dataChanged=!0,this.marginsUpdated=!1,
78
- this.initChart(a))},validateNow:function(){this.listenersAdded=!1;this.write(this.div)},showItem:function(a){a.hidden=!1;this.initChart()},hideItem:function(a){a.hidden=!0;this.initChart()},hideBalloon:function(){var a=this;a.hoverInt=setTimeout(function(){a.hideBalloonReal.call(a)},80)},cleanChart:function(){},hideBalloonReal:function(){var a=this.balloon;a&&a.hide()},showBalloon:function(a,b,c,d,f){var e=this;clearTimeout(e.balloonTO);e.balloonTO=setTimeout(function(){e.showBalloonReal.call(e,a,
79
- b,c,d,f)},1)},showBalloonReal:function(a,b,c,d,f){this.handleMouseMove();var e=this.balloon;e.enabled&&(e.followCursor(!1),e.changeColor(b),c||e.setPosition(d,f),e.followCursor(c),a&&e.showBalloon(a))},handleTouchMove:function(a){this.hideBalloon();var b=this.chartDiv;a.touches&&(a=a.touches.item(0),this.mouseX=a.pageX-AmCharts.findPosX(b),this.mouseY=a.pageY-AmCharts.findPosY(b))},handleMouseOver:function(){AmCharts.resetMouseOver();this.mouseIsOver=!0},handleMouseOut:function(){AmCharts.resetMouseOver();
80
- this.mouseIsOver=!1},handleMouseMove:function(a){if(this.mouseIsOver){var b=this.chartDiv;a||(a=window.event);var c,d;if(a){this.posX=AmCharts.findPosX(b);this.posY=AmCharts.findPosY(b);switch(this.mouseMode){case 1:c=a.clientX-this.posX;d=a.clientY-this.posY;if(!this.divIsFixed){a=document.body;var f,e;a&&(f=a.scrollLeft,y1=a.scrollTop);if(a=document.documentElement)e=a.scrollLeft,y2=a.scrollTop;f=Math.max(f,e);e=Math.max(y1,y2);c+=f;d+=e}break;case 0:this.divIsFixed?(c=a.clientX-this.posX,d=a.clientY-
81
- this.posY):(c=a.pageX-this.posX,d=a.pageY-this.posY)}this.mouseX=c-this.dmouseX;this.mouseY=d-this.dmouseY}}},handleTouchStart:function(a){this.handleMouseDown(a)},handleTouchEnd:function(a){AmCharts.resetMouseOver();this.handleReleaseOutside(a)},handleReleaseOutside:function(){},handleMouseDown:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!0;a&&a.preventDefault&&a.preventDefault()},addLegend:function(a,b){AmCharts.extend(a,new AmCharts.AmLegend);var c;c="object"!=typeof b?document.getElementById(b):
82
- b;this.legend=a;a.chart=this;c?(a.div=c,a.position="outside",a.autoMargins=!1):a.div=this.legendDiv;c=this.handleLegendEvent;this.listenTo(a,"showItem",c);this.listenTo(a,"hideItem",c);this.listenTo(a,"clickMarker",c);this.listenTo(a,"rollOverItem",c);this.listenTo(a,"rollOutItem",c);this.listenTo(a,"rollOverMarker",c);this.listenTo(a,"rollOutMarker",c);this.listenTo(a,"clickLabel",c)},removeLegend:function(){this.legend=void 0;this.legendDiv.innerHTML=""},handleResize:function(){(AmCharts.isPercents(this.width)||
83
- AmCharts.isPercents(this.height))&&this.invalidateSizeReal();this.renderFix()},renderFix:function(){if(!AmCharts.VML){var a=this.container;a&&a.renderFix()}},getSVG:function(){if(AmCharts.hasSVG)return this.container}});AmCharts.Slice=AmCharts.Class({construct:function(){}});AmCharts.SerialDataItem=AmCharts.Class({construct:function(){}});AmCharts.GraphDataItem=AmCharts.Class({construct:function(){}});AmCharts.Guide=AmCharts.Class({construct:function(){}});AmCharts.AmBalloon=AmCharts.Class({construct:function(){this.enabled=!0;this.fillColor="#CC0000";this.fillAlpha=1;this.borderThickness=2;this.borderColor="#FFFFFF";this.borderAlpha=1;this.cornerRadius=6;this.maximumWidth=220;this.horizontalPadding=8;this.verticalPadding=5;this.pointerWidth=10;this.pointerOrientation="V";this.color="#FFFFFF";this.textShadowColor="#000000";this.adjustBorderColor=!1;this.showBullet=!0;this.show=this.follow=!1;this.bulletSize=3;this.textAlign="middle"},draw:function(){var a=
84
- this.pointToX,b=this.pointToY,c=this.textAlign;if(!isNaN(a)){var d=this.chart,f=d.container,e=this.set;AmCharts.remove(e);AmCharts.remove(this.pointer);this.set=e=f.set();d.balloonsSet.push(e);if(this.show){var g=this.l,h=this.t,j=this.r,l=this.b,k=this.textShadowColor;this.color==k&&(k=void 0);var m=this.balloonColor,u=this.fillColor,t=this.borderColor;void 0!=m&&(this.adjustBorderColor?t=m:u=m);var x=this.horizontalPadding,m=this.verticalPadding,p=this.pointerWidth,q=this.pointerOrientation,r=this.cornerRadius,
85
- s=d.fontFamily,v=this.fontSize;void 0==v&&(v=d.fontSize);d=AmCharts.text(f,this.text,this.color,s,v,c);e.push(d);var w;void 0!=k&&(w=AmCharts.text(f,this.text,k,s,v,c,!1,0.4),e.push(w));s=d.getBBox();k=s.height+2*m;s=s.width+2*x;window.opera&&(k+=2);var n,v=v/2+m;switch(c){case "middle":n=s/2;break;case "left":n=x;break;case "right":n=s-x}d.translate(n,v);w&&w.translate(n+1,v+1);"H"!=q?(n=a-s/2,c=b<h+k+10&&"down"!=q?b+p:b-k-p):(2*p>k&&(p=k/2),c=b-k/2,n=a<g+(j-g)/2?a+p:a-s-p);c+k>=l&&(c=l-k);c<h&&
86
- (c=h);n<g&&(n=g);n+s>j&&(n=j-s);0<r||0===p?(t=AmCharts.rect(f,s,k,u,this.fillAlpha,this.borderThickness,t,this.borderAlpha,this.cornerRadius),this.showBullet&&(f=AmCharts.circle(f,this.bulletSize,u,this.fillAlpha),f.translate(a,b),this.pointer=f)):(l=[],r=[],"H"!=q?(g=a-n,g>s-p&&(g=s-p),g<p&&(g=p),l=[0,g-p,a-n,g+p,s,s,0,0],r=b<h+k+10&&"down"!=q?[0,0,b-c,0,0,k,k,0]:[k,k,b-c,k,k,0,0,k]):(h=b-c,h>k-p&&(h=k-p),h<p&&(h=p),r=[0,h-p,b-c,h+p,k,k,0,0],l=a<g+(j-g)/2?[0,0,n<a?0:a-n,0,0,s,s,0]:[s,s,n+s>a?s:a-
87
- n,s,s,0,0,s]),t=AmCharts.polygon(f,l,r,u,this.fillAlpha,this.borderThickness,t,this.borderAlpha));e.push(t);t.toFront();w&&w.toFront();d.toFront();a=1;9>AmCharts.IEversion&&this.follow&&(a=6);e.translate(n-a,c);e=d.getBBox();this.bottom=c+e.y+e.height+2*m+2;this.yPos=e.y+c}}},followMouse:function(){if(this.follow&&this.show){var a=this.chart.mouseX,b=this.chart.mouseY-3;this.pointToX=a;this.pointToY=b;if(a!=this.previousX||b!=this.previousY)if(this.previousX=a,this.previousY=b,0===this.cornerRadius)this.draw();
88
- else{var c=this.set;if(c){var d=c.getBBox(),a=a-d.width/2,f=b-d.height-10;a<this.l&&(a=this.l);a>this.r-d.width&&(a=this.r-d.width);f<this.t&&(f=b+10);c.translate(a,f)}}}},changeColor:function(a){this.balloonColor=a},setBounds:function(a,b,c,d){this.l=a;this.t=b;this.r=c;this.b=d},showBalloon:function(a){this.text=a;this.show=!0;this.draw()},hide:function(){this.follow=this.show=!1;this.destroy()},setPosition:function(a,b,c){this.pointToX=a;this.pointToY=b;c&&(a!=this.previousX||b!=this.previousY)&&
89
- this.draw();this.previousX=a;this.previousY=b},followCursor:function(a){var b=this;(b.follow=a)?(b.pShowBullet=b.showBullet,b.showBullet=!1):void 0!==b.pShowBullet&&(b.showBullet=b.pShowBullet);clearInterval(b.interval);var c=b.chart.mouseX,d=b.chart.mouseY;!isNaN(c)&&a&&(b.pointToX=c,b.pointToY=d-3,b.interval=setInterval(function(){b.followMouse.call(b)},40))},destroy:function(){clearInterval(this.interval);AmCharts.remove(this.set);this.set=null;AmCharts.remove(this.pointer);this.pointer=null}});AmCharts.circle=function(a,b,c,d,f,e,g,h){if(void 0==f||0===f)f=1;void 0===e&&(e="#000000");void 0===g&&(g=0);d={fill:c,stroke:e,"fill-opacity":d,"stroke-width":f,"stroke-opacity":g};a=a.circle(0,0,b).attr(d);h&&a.gradient("radialGradient",[c,AmCharts.adjustLuminosity(c,-0.6)]);return a};AmCharts.text=function(a,b,c,d,f,e,g,h){e||(e="middle");"right"==e&&(e="end");c={fill:c,"font-family":d,"font-size":f,opacity:h};!0===g&&(c["font-weight"]="bold");c["text-anchor"]=e;return a.text(b,c)};
90
- AmCharts.polygon=function(a,b,c,d,f,e,g,h,j){isNaN(e)&&(e=0);isNaN(h)&&(h=f);var l=d,k=!1;"object"==typeof l&&1<l.length&&(k=!0,l=l[0]);void 0===g&&(g=l);f={fill:l,stroke:g,"fill-opacity":f,"stroke-width":e,"stroke-opacity":h};e=AmCharts.dx;g=AmCharts.dy;h=Math.round;var l="M"+(h(b[0])+e)+","+(h(c[0])+g),m;for(m=1;m<b.length;m++)l+=" L"+(h(b[m])+e)+","+(h(c[m])+g);a=a.path(l+" Z").attr(f);k&&a.gradient("linearGradient",d,j);return a};
91
- AmCharts.rect=function(a,b,c,d,f,e,g,h,j,l){isNaN(e)&&(e=0);void 0===j&&(j=0);void 0===l&&(l=270);isNaN(f)&&(f=0);var k=d,m=!1;"object"==typeof k&&(k=k[0],m=!0);void 0===g&&(g=k);void 0===h&&(h=f);b=Math.round(b);c=Math.round(c);var u=0,t=0;0>b&&(b=Math.abs(b),u=-b);0>c&&(c=Math.abs(c),t=-c);u+=AmCharts.dx;t+=AmCharts.dy;f={fill:k,stroke:g,"fill-opacity":f,"stroke-opacity":h};a=a.rect(u,t,b,c,j,e).attr(f);m&&a.gradient("linearGradient",d,l);return a};
92
- AmCharts.triangle=function(a,b,c,d,f,e,g,h){if(void 0===e||0===e)e=1;void 0===g&&(g="#000");void 0===h&&(h=0);d={fill:d,stroke:g,"fill-opacity":f,"stroke-width":e,"stroke-opacity":h};b/=2;var j;0===c&&(j=" M"+-b+","+b+" L0,"+-b+" L"+b+","+b+" Z");180==c&&(j=" M"+-b+","+-b+" L0,"+b+" L"+b+","+-b+" Z");90==c&&(j=" M"+-b+","+-b+" L"+b+",0 L"+-b+","+b+" Z");270==c&&(j=" M"+-b+",0 L"+b+","+b+" L"+b+","+-b+" Z");return a.path(j).attr(d)};
93
- AmCharts.line=function(a,b,c,d,f,e,g,h,j,l){e={fill:"none","stroke-width":e};void 0!==g&&0<g&&(e["stroke-dasharray"]=g);isNaN(f)||(e["stroke-opacity"]=f);d&&(e.stroke=d);d=Math.round;l&&(d=AmCharts.doNothing);l=AmCharts.dx;f=AmCharts.dy;g="M"+(d(b[0])+l)+","+(d(c[0])+f);for(h=1;h<b.length;h++)g+=" L"+(d(b[h])+l)+","+(d(c[h])+f);if(AmCharts.VML)return a.path(g,void 0,!0).attr(e);j&&(g+=" M0,0 L0,0");return a.path(g).attr(e)};AmCharts.doNothing=function(a){return a};
94
- AmCharts.wedge=function(a,b,c,d,f,e,g,h,j,l,k){var m=Math.round;e=m(e);g=m(g);h=m(h);var u=m(g/e*h),t=AmCharts.VML,x=-359.5-e/100;-359.95>x&&(x=-359.95);f<=x&&(f=x);var p=1/180*Math.PI,x=b+Math.cos(d*p)*h,q=c+Math.sin(-d*p)*u,r=b+Math.cos(d*p)*e,s=c+Math.sin(-d*p)*g,v=b+Math.cos((d+f)*p)*e,w=c+Math.sin((-d-f)*p)*g,n=b+Math.cos((d+f)*p)*h,p=c+Math.sin((-d-f)*p)*u,y={fill:AmCharts.adjustLuminosity(l.fill,-0.2),"stroke-opacity":0},z=0;180<Math.abs(f)&&(z=1);d=a.set();var C;t&&(x=m(10*x),r=m(10*r),v=
95
- m(10*v),n=m(10*n),q=m(10*q),s=m(10*s),w=m(10*w),p=m(10*p),b=m(10*b),j=m(10*j),c=m(10*c),e*=10,g*=10,h*=10,u*=10,1>Math.abs(f)&&(1>=Math.abs(v-r)&&1>=Math.abs(w-s))&&(C=!0));f="";if(0<j){t?(path=" M"+x+","+(q+j)+" L"+r+","+(s+j),C||(path+=" A"+(b-e)+","+(j+c-g)+","+(b+e)+","+(j+c+g)+","+r+","+(s+j)+","+v+","+(w+j)),path+=" L"+n+","+(p+j),0<h&&(C||(path+=" B"+(b-h)+","+(j+c-u)+","+(b+h)+","+(j+c+u)+","+n+","+(j+p)+","+x+","+(j+q)))):(path=" M"+x+","+(q+j)+" L"+r+","+(s+j),path+=" A"+e+","+g+",0,"+z+
96
- ",1,"+v+","+(w+j)+" L"+n+","+(p+j),0<h&&(path+=" A"+h+","+u+",0,"+z+",0,"+x+","+(q+j)));path+=" Z";var D=a.path(path,void 0,void 0,"1000,1000").attr(y);d.push(D);D=a.path(" M"+x+","+q+" L"+x+","+(q+j)+" L"+r+","+(s+j)+" L"+r+","+s+" L"+x+","+q+" Z",void 0,void 0,"1000,1000").attr(y);j=a.path(" M"+v+","+w+" L"+v+","+(w+j)+" L"+n+","+(p+j)+" L"+n+","+p+" L"+v+","+w+" Z",void 0,void 0,"1000,1000").attr(y);d.push(D);d.push(j)}t?(C||(f=" A"+m(b-e)+","+m(c-g)+","+m(b+e)+","+m(c+g)+","+m(r)+","+m(s)+","+
97
- m(v)+","+m(w)),e=" M"+m(x)+","+m(q)+" L"+m(r)+","+m(s)+f+" L"+m(n)+","+m(p)):e=" M"+x+","+q+" L"+r+","+s+(" A"+e+","+g+",0,"+z+",1,"+v+","+w)+" L"+n+","+p;0<h&&(t?C||(e+=" B"+(b-h)+","+(c-u)+","+(b+h)+","+(c+u)+","+n+","+p+","+x+","+q):e+=" A"+h+","+u+",0,"+z+",0,"+x+","+q);a=a.path(e+" Z",void 0,void 0,"1000,1000").attr(l);if(k){b=[];for(c=0;c<k.length;c++)b.push(AmCharts.adjustLuminosity(l.fill,k[c]));0<b.length&&a.gradient("linearGradient",b)}d.push(a);return d};
98
- AmCharts.adjustLuminosity=function(a,b){a=String(a).replace(/[^0-9a-f]/gi,"");6>a.length&&(a=String(a[0])+String(a[0])+String(a[1])+String(a[1])+String(a[2])+String(a[2]));b=b||0;var c="#",d,f;for(f=0;3>f;f++)d=parseInt(a.substr(2*f,2),16),d=Math.round(Math.min(Math.max(0,d+d*b),255)).toString(16),c+=("00"+d).substr(d.length);return c};AmCharts.AmLegend=AmCharts.Class({construct:function(){this.createEvents("rollOverMarker","rollOverItem","rollOutMarker","rollOutItem","showItem","hideItem","clickMarker","rollOverItem","rollOutItem","clickLabel");this.position="bottom";this.borderColor=this.color="#000000";this.borderAlpha=0;this.markerLabelGap=5;this.verticalGap=10;this.align="left";this.horizontalGap=0;this.spacing=10;this.markerDisabledColor="#AAB3B3";this.markerType="square";this.markerSize=16;this.markerBorderThickness=1;this.marginBottom=
99
- this.marginTop=0;this.marginLeft=this.marginRight=20;this.autoMargins=!0;this.valueWidth=50;this.switchable=!0;this.switchType="x";this.switchColor="#FFFFFF";this.rollOverColor="#CC0000";this.reversedOrder=!1;this.labelText="[[title]]";this.valueText="[[value]]";this.useMarkerColorForLabels=!1;this.rollOverGraphAlpha=1;this.textClickEnabled=!1;this.equalWidths=!0;this.dateFormat="DD-MM-YYYY";this.backgroundColor="#FFFFFF";this.backgroundAlpha=0;this.showEntries=!0},setData:function(a){this.data=a;
100
- this.invalidateSize()},invalidateSize:function(){this.destroy();this.entries=[];this.valueLabels=[];AmCharts.ifArray(this.data)&&this.drawLegend()},drawLegend:function(){var a=this.chart,b=this.position,c=this.width,d=a.divRealWidth,f=a.divRealHeight,e=this.div,g=this.data;isNaN(this.fontSize)&&(this.fontSize=a.fontSize);if("right"==b||"left"==b)this.maxColumns=1,this.marginLeft=this.marginRight=10;else if(this.autoMargins){this.marginRight=a.marginRight;this.marginLeft=a.marginLeft;var h=a.autoMarginOffset;
101
- "bottom"==b?(this.marginBottom=h,this.marginTop=0):(this.marginTop=h,this.marginBottom=0)}c=void 0!==c?AmCharts.toCoordinate(c,d):a.realWidth;"outside"==b?(c=e.offsetWidth,f=e.offsetHeight,e.clientHeight&&(c=e.clientWidth,f=e.clientHeight)):(e.style.width=c+"px",e.className="amChartsLegend");this.divWidth=c;this.container=new AmCharts.AmDraw(e,c,f);this.lx=0;this.ly=8;b=this.markerSize;b>this.fontSize&&(this.ly=b/2-1);0<b&&(this.lx+=b+this.markerLabelGap);this.titleWidth=0;if(b=this.title)a=AmCharts.text(this.container,
102
- b,this.color,a.fontFamily,this.fontSize,"start",!0),a.translate(this.marginLeft,this.marginTop+this.verticalGap+this.ly+1),a=a.getBBox(),this.titleWidth=a.width+15,this.titleHeight=a.height+6;this.index=this.maxLabelWidth=0;if(this.showEntries){for(a=0;a<g.length;a++)this.createEntry(g[a]);for(a=this.index=0;a<g.length;a++)this.createValue(g[a])}this.arrangeEntries();this.updateValues()},arrangeEntries:function(){var a=this.position,b=this.marginLeft+this.titleWidth,c=this.marginRight,d=this.marginTop,
103
- f=this.marginBottom,e=this.horizontalGap,g=this.div,h=this.divWidth,j=this.maxColumns,l=this.verticalGap,k=this.spacing,m=h-c-b,u=0,t=0,x=this.container,p=x.set();this.set=p;x=x.set();p.push(x);var q=this.entries,r,s;for(s=0;s<q.length;s++){r=q[s].getBBox();var v=r.width;v>u&&(u=v);r=r.height;r>t&&(t=r)}var w=v=0,n=e;for(s=0;s<q.length;s++){var y=q[s];this.reversedOrder&&(y=q[q.length-s-1]);r=y.getBBox();var z;this.equalWidths?z=e+w*(u+k+this.markerLabelGap):(z=n,n=n+r.width+e+k);z+r.width>m&&(0<
104
- s&&0!=w)&&(v++,w=0,z=e,n=z+r.width+e+k,skipNewRow=!0);y.translate(z,(t+l)*v);w++;!isNaN(j)&&w>=j&&(w=0,v++);x.push(y)}r=x.getBBox();j=r.height+2*l-1;"left"==a||"right"==a?(h=r.width+2*e,g.style.width=h+b+c+"px"):h=h-b-c-1;c=AmCharts.polygon(this.container,[0,h,h,0],[0,0,j,j],this.backgroundColor,this.backgroundAlpha,1,this.borderColor,this.borderAlpha);p.push(c);p.translate(b,d);c.toBack();b=e;if("top"==a||"bottom"==a||"absolute"==a||"outside"==a)"center"==this.align?b=e+(h-r.width)/2:"right"==this.align&&
105
- (b=e+h-r.width);x.translate(b,l+1);this.titleHeight>j&&(j=this.titleHeight);a=j+d+f+1;0>a&&(a=0);g.style.height=Math.round(a)+"px"},createEntry:function(a){if(!1!==a.visibleInLegend){var b=this.chart,c=a.markerType;c||(c=this.markerType);var d=a.color,f=a.alpha;a.legendKeyColor&&(d=a.legendKeyColor());a.legendKeyAlpha&&(f=a.legendKeyAlpha());!0===a.hidden&&(d=this.markerDisabledColor);var e=this.createMarker(c,d,f);this.addListeners(e,a);f=this.container.set([e]);this.switchable&&f.setAttr("cursor",
106
- "pointer");var g=this.switchType;if(g){var h;h="x"==g?this.createX():this.createV();h.dItem=a;!0!==a.hidden?"x"==g?h.hide():h.show():"x"!=g&&h.hide();this.switchable||h.hide();this.addListeners(h,a);a.legendSwitch=h;f.push(h)}g=this.color;a.showBalloon&&(this.textClickEnabled&&void 0!==this.selectedColor)&&(g=this.selectedColor);this.useMarkerColorForLabels&&(g=d);!0===a.hidden&&(g=this.markerDisabledColor);var d=AmCharts.massReplace(this.labelText,{"[[title]]":a.title}),j=this.fontSize,l=this.markerSize;
107
- if(e&&l<=j){var k=0;if("bubble"==c||"circle"==c)k=l/2;c=k+this.ly-j/2+(j+2-l)/2;e.translate(k,c);h&&h.translate(k,c)}var m;d&&(d=AmCharts.fixNewLines(d),m=AmCharts.text(this.container,d,g,b.fontFamily,j,"start"),m.translate(this.lx,this.ly),f.push(m),b=m.getBBox().width,this.maxLabelWidth<b&&(this.maxLabelWidth=b));this.entries[this.index]=f;a.legendEntry=this.entries[this.index];a.legendLabel=m;this.index++}},addListeners:function(a,b){var c=this;a&&a.mouseover(function(){c.rollOverMarker(b)}).mouseout(function(){c.rollOutMarker(b)}).click(function(){c.clickMarker(b)})},
108
- rollOverMarker:function(a){this.switchable&&this.dispatch("rollOverMarker",a);this.dispatch("rollOverItem",a)},rollOutMarker:function(a){this.switchable&&this.dispatch("rollOutMarker",a);this.dispatch("rollOutItem",a)},clickMarker:function(a){this.switchable?!0===a.hidden?this.dispatch("showItem",a):this.dispatch("hideItem",a):this.textClickEnabled&&this.dispatch("clickMarker",a)},rollOverLabel:function(a){a.hidden||(this.textClickEnabled&&a.legendLabel&&a.legendLabel.attr({fill:this.rollOverColor}),
109
- this.dispatch("rollOverItem",a))},rollOutLabel:function(a){if(!a.hidden){if(this.textClickEnabled&&a.legendLabel){var b=this.color;void 0!==this.selectedColor&&a.showBalloon&&(b=this.selectedColor);this.useMarkerColorForLabels&&(b=a.lineColor,void 0===b&&(b=a.color));a.legendLabel.attr({fill:b})}this.dispatch("rollOutItem",a)}},clickLabel:function(a){this.textClickEnabled?a.hidden||this.dispatch("clickLabel",a):this.switchable&&(!0===a.hidden?this.dispatch("showItem",a):this.dispatch("hideItem",a))},
110
- dispatch:function(a,b){this.fire(a,{type:a,dataItem:b,target:this,chart:this.chart})},createValue:function(a){var b=this,c=b.fontSize;if(!1!==a.visibleInLegend){var d=b.maxLabelWidth;b.equalWidths||(b.valueAlign="left");"left"==b.valueAlign&&(d=a.legendEntry.getBBox().width);var f=d;if(b.valueText){var e=b.color;b.useMarkerColorForValues&&(e=a.color,a.legendKeyColor&&(e=a.legendKeyColor()));!0===a.hidden&&(e=b.markerDisabledColor);var g=b.valueText,d=d+b.lx+b.markerLabelGap+b.valueWidth,h="end";"left"==
111
- b.valueAlign&&(d-=b.valueWidth,h="start");e=AmCharts.text(b.container,g,e,b.chart.fontFamily,c,h);e.translate(d,b.ly);b.entries[b.index].push(e);f+=b.valueWidth+2*b.markerLabelGap;e.dItem=a;b.valueLabels.push(e)}b.index++;e=b.markerSize;e<c+7&&(e=c+7,AmCharts.VML&&(e+=3));c=b.container.rect(b.markerSize,0,f,e,0,0).attr({stroke:"none",fill:"#ffffff","fill-opacity":0.005});c.dItem=a;b.entries[b.index-1].push(c);c.mouseover(function(){b.rollOverLabel(a)}).mouseout(function(){b.rollOutLabel(a)}).click(function(){b.clickLabel(a)})}},
112
- createV:function(){var a=this.markerSize;return AmCharts.polygon(this.container,[a/5,a/2,a-a/5,a/2],[a/3,a-a/5,a/5,a/1.7],this.switchColor)},createX:function(){var a=this.markerSize-3,b={stroke:this.switchColor,"stroke-width":3},c=this.container,d=AmCharts.line(c,[3,a],[3,a]).attr(b),a=AmCharts.line(c,[3,a],[a,3]).attr(b);return this.container.set([d,a])},createMarker:function(a,b,c){var d=this.markerSize,f=this.container,e,g=this.markerBorderColor;g||(g=b);var h=this.markerBorderThickness,j=this.markerBorderAlpha;
113
- switch(a){case "square":e=AmCharts.polygon(f,[0,d,d,0],[0,0,d,d],b,c,h,g,j);break;case "circle":e=AmCharts.circle(f,d/2,b,c,h,g,j);e.translate(d/2,d/2);break;case "line":e=AmCharts.line(f,[0,d],[d/2,d/2],b,c,h);break;case "dashedLine":e=AmCharts.line(f,[0,d],[d/2,d/2],b,c,h,3);break;case "triangleUp":e=AmCharts.polygon(f,[0,d/2,d,d],[d,0,d,d],b,c,h,g,j);break;case "triangleDown":e=AmCharts.polygon(f,[0,d/2,d,d],[0,d,0,0],b,c,h,g,j);break;case "bubble":e=AmCharts.circle(f,d/2,b,c,h,g,j,!0),e.translate(d/
114
- 2,d/2)}return e},validateNow:function(){this.invalidateSize()},updateValues:function(){var a=this.valueLabels,b=this.chart,c;for(c=0;c<a.length;c++){var d=a[c],f=d.dItem;if(void 0!==f.type){var e=f.currentDataItem;if(e){var g=this.valueText;f.legendValueText&&(g=f.legendValueText);f=g;f=b.formatString(f,e);d.text(f)}else d.text(" ")}else e=b.formatString(this.valueText,f),d.text(e)}},renderFix:function(){if(!AmCharts.VML){var a=this.container;a&&a.renderFix()}},destroy:function(){this.div.innerHTML=
115
- "";AmCharts.remove(this.set)}});AmCharts.maps={};
116
- AmCharts.AmMap=AmCharts.Class({inherits:AmCharts.AmChart,construct:function(){this.version="3.3.0";this.svgNotSupported="This browser doesn't support SVG. Use Chrome, Firefox, Internet Explorer 9 or later.";this.createEvents("rollOverMapObject","rollOutMapObject","clickMapObject","selectedObjectChanged","homeButtonClicked","zoomCompleted","writeDevInfo","click");this.zoomDuration=1;this.zoomControl=new AmCharts.ZoomControl;this.fitMapToContainer=!0;this.mouseWheelZoomEnabled=this.backgroundZoomsToTop=!1;
117
- this.allowClickOnSelectedObject=this.useHandCursorOnClickableOjects=this.showBalloonOnSelectedObject=!0;this.showObjectsAfterZoom=this.wheelBusy=!1;this.zoomOnDoubleClick=this.useObjectColorForBalloon=!0;this.allowMultipleDescriptionWindows=!1;this.dragMap=this.centerMap=this.linesAboveImages=!0;this.colorSteps=5;this.showAreasInList=!0;this.showLinesInList=this.showImagesInList=!1;this.areasProcessor=new AmCharts.AreasProcessor(this);this.areasSettings=new AmCharts.AreasSettings;this.imagesProcessor=
118
- new AmCharts.ImagesProcessor(this);this.imagesSettings=new AmCharts.ImagesSettings;this.linesProcessor=new AmCharts.LinesProcessor(this);this.linesSettings=new AmCharts.LinesSettings;this.showDescriptionOnHover=!1;AmCharts.AmMap.base.construct.call(this);this.product="ammap";AmCharts.bezierX=3;AmCharts.bezierY=3;AmCharts.dx=0.5;AmCharts.dy=0.5},initChart:function(){this.zoomInstantly=!0;if(this.sizeChanged&&AmCharts.hasSVG&&this.chartCreated){this.container.setSize(this.realWidth,this.realHeight);
119
- this.resizeMap();this.drawBackground();this.redrawLabels();this.drawTitles();this.processObjects();this.rescaleObjects();var a=this.container;this.zoomControl.init(this,a);this.drawBg();var b=this.smallMap;b&&b.init(this,a);(b=this.valueLegend)&&b.init(this,a);this.sizeChanged=!1;this.zoomToLongLat(this.zLevelTemp,this.zLongTemp,this.zLatTemp,!0);this.previousWidth=this.realWidth;this.previousHeight=this.realHeight;this.drb();this.updateSmallMap();this.linkSet.toFront()}else if(AmCharts.AmMap.base.initChart.call(this),
120
- AmCharts.hasSVG){if(this.dataChanged&&(this.parseData(),this.dispatchDataUpdated=!0,this.dataChanged=!1,a=this.legend))a.position="absolute",a.invalidateSize();this.addMouseWheel();this.createDescriptionsDiv();this.svgAreas=[];this.svgAreasById={};this.drawChart()}else document.createTextNode(this.svgNotSupported),this.chartDiv.style.textAlign="",this.chartDiv.setAttribute("class","ammapAlert"),this.chartDiv.innerHTML=this.svgNotSupported},invalidateSize:function(){var a=this.zoomLongitude();isNaN(a)||
121
- (this.zLongTemp=a);a=this.zoomLatitude();isNaN(a)||(this.zLatTemp=a);a=this.zoomLevel();isNaN(a)||(this.zLevelTemp=a);AmCharts.AmMap.base.invalidateSize.call(this)},addMouseWheel:function(){var a=this;a.mouseWheelZoomEnabled&&window.addEventListener&&(window.addEventListener("DOMMouseScroll",function(b){a.handleWheel.call(a,b)},!1),document.addEventListener("mousewheel",function(b){a.handleWheel.call(a,b)},!1))},handleWheel:function(a){if(this.mouseIsOver){var b=0;a||(a=window.event);a.wheelDelta?
122
- b=a.wheelDelta/120:a.detail&&(b=-a.detail/3);b&&this.handleWheelReal(b);a.preventDefault&&a.preventDefault();a.returnValue=!1}},handleWheelReal:function(a){if(!this.wheelBusy){this.stopAnimation();var b=this.zoomLevel(),c=this.zoomControl,d=c.zoomFactor;this.wheelBusy=!0;a=AmCharts.fitToBounds(0<a?b*d:b/d,c.minZoomLevel,c.maxZoomLevel);d=this.mouseX/this.mapWidth;c=this.mouseY/this.mapHeight;d=(this.zoomX()-d)*(a/b)+d;b=(this.zoomY()-c)*(a/b)+c;this.zoomTo(a,d,b)}},addLegend:function(a){a.position=
123
- "absolute";a.autoMargins=!1;a.valueWidth=0;a.switchable=!1;AmCharts.AmMap.base.addLegend.call(this,a)},handleLegendEvent:function(){},createDescriptionsDiv:function(){if(!this.descriptionsDiv){var a=document.createElement("div");a.style.position="absolute";a.style.left=AmCharts.findPosX(this.div)+"px";a.style.top=AmCharts.findPosY(this.div)+"px";this.descriptionsDiv=a}this.div.appendChild(this.descriptionsDiv)},drawChart:function(){AmCharts.AmMap.base.drawChart.call(this);var a=this.dataProvider;
124
- AmCharts.extend(a,new AmCharts.MapData);AmCharts.extend(this.areasSettings,new AmCharts.AreasSettings);AmCharts.extend(this.imagesSettings,new AmCharts.ImagesSettings);AmCharts.extend(this.linesSettings,new AmCharts.LinesSettings);this.mapContainer=this.container.set();this.graphsSet.push(this.mapContainer);var b=a.mapVar;b?(this.svgData=b.svg,this.getBounds(),this.buildEverything()):(a=a.mapURL)&&this.loadXml(a)},drawBg:function(){var a=this;AmCharts.remove(a.bgSet);var b=AmCharts.rect(a.container,
125
- a.realWidth,a.realHeight,"#000",0.001);b.click(function(){a.handleBackgroundClick()});a.bgSet=b;a.set.push(b)},buildEverything:function(){var a=this;if(0<a.realWidth&&0<a.realHeight){var b=a.container;a.zoomControl.init(this,b);a.drawBg();a.buildSVGMap();var c=a.smallMap;c&&c.init(a,b);c=a.dataProvider;isNaN(c.zoomX)&&(isNaN(c.zoomY)&&isNaN(c.zoomLatitude)&&isNaN(c.zoomLongitude))&&(a.centerMap?(c.zoomLatitude=a.coordinateToLatitude(a.mapHeight/2),c.zoomLongitude=a.coordinateToLongitude(a.mapWidth/
126
- 2)):(c.zoomX=0,c.zoomY=0),a.zoomInstantly=!0);a.selectObject(a.dataProvider);a.processAreas();(c=a.valueLegend)&&c.init(a,b);if(b=a.objectList)a.clearObjectList(),b.init(a);clearInterval(a.interval);a.interval=setInterval(function(){a.update.call(a)},AmCharts.updateRate);a.dispDUpd();a.linkSet.toFront();a.chartCreated=!0}else a.cleanChart()},hideGroup:function(a){this.showHideGroup(a,!1)},showGroup:function(a){this.showHideGroup(a,!0)},showHideGroup:function(a,b){this.showHideReal(this.imagesProcessor.allObjects,
127
- a,b);this.showHideReal(this.areasProcessor.allObjects,a,b);this.showHideReal(this.linesProcessor.allObjects,a,b)},showHideReal:function(a,b,c){var d;for(d=0;d<a.length;d++){var f=a[d];f.groupId==b&&(c?f.displayObject.show():f.displayObject.hide())}},update:function(){this.zoomControl.update()},animateMap:function(){var a=this;a.totalFrames=1E3*a.zoomDuration/AmCharts.updateRate;a.totalFrames+=1;a.frame=0;a.tweenPercent=0;setTimeout(function(){a.updateSize.call(a)},AmCharts.updateRate)},updateSize:function(){var a=
128
- this,b=a.totalFrames;a.frame<=b?(a.frame++,b=a.container.easeOutSine(0,a.frame,0,1,b),1<=b?(b=1,a.wheelBusy=!1):setTimeout(function(){a.updateSize.call(a)},AmCharts.updateRate)):(b=1,a.wheelBusy=!1);a.tweenPercent=b;a.rescaleMapAndObjects()},rescaleMapAndObjects:function(){var a=this.initialScale,b=this.initialX,c=this.initialY,d=this.tweenPercent;this.mapContainer.translate(b+(this.finalX-b)*d,c+(this.finalY-c)*d,a+(this.finalScale-a)*d);this.rescaleObjects();this.updateSmallMap();1==d&&(a={type:"zoomCompleted",
129
- chart:this},this.fire(a.type,a))},updateSmallMap:function(){this.smallMap&&this.smallMap.update()},rescaleObjects:function(){var a=this.mapContainer.scale,b=this.imagesProcessor.objectsToResize,c;for(c=0;c<b.length;c++){var d=b[c].image;d.translate(d.x,d.y,b[c].scale/a,!0)}b=this.linesProcessor;if(d=b.linesToResize)for(c=0;c<d.length;c++){var f=d[c];f.line.setAttr("stroke-width",f.thickness/a)}b=b.objectsToResize;for(c=0;c<b.length;c++)d=b[c],d.translate(d.x,d.y,1/a)},handleTouchStart:function(a){this.handleMouseMove(a);
130
- this.handleMouseDown(a)},handleTouchEnd:function(a){this.previousDistance=NaN;this.handleReleaseOutside(a)},handleMouseDown:function(a){if(this.chartCreated&&this.mouseIsOver&&(AmCharts.resetMouseOver(),this.mouseIsOver=!0,this.dragMap&&(this.stopAnimation(),this.isDragging=!0,this.mapContainerClickX=this.mapContainer.x,this.mapContainerClickY=this.mapContainer.y,this.panEventsEnabled||a&&a.preventDefault&&a.preventDefault()),a||(a=window.event),a.shiftKey&&!0===this.developerMode&&this.getDevInfo(),
131
- a&&a.touches)){var b=this.mouseX,c=this.mouseY,d=a.touches.item(1);d&&(a=d.pageX-AmCharts.findPosX(this.div),d=d.pageY-AmCharts.findPosY(this.div),this.middleXP=(b+(a-b)/2)/this.realWidth,this.middleYP=(c+(d-c)/2)/this.realHeight)}},stopDrag:function(){this.isDragging=!1},handleReleaseOutside:function(){this.isDragging=!1;this.zoomControl.draggerUp();this.mapWasDragged=!1;var a=this.mapContainer,b=this.mapContainerClickX,c=this.mapContainerClickY;if(!isNaN(b)&&!isNaN(c)&&(2<Math.abs(a.x-b)||Math.abs(a.y-
132
- c)))this.mapWasDragged=!0;this.mouseIsOver&&(!this.mapWasDragged&&!this.skipClick)&&(a={type:"click",x:this.mouseX,y:this.mouseY,chart:this},this.fire(a.type,a),this.skipClick=!1);this.mapContainerClickY=this.mapContainerClickX=NaN;this.objectWasClicked=!1;this.zoomOnDoubleClick&&this.mouseIsOver&&(a=(new Date).getTime(),200>a-this.previousClickTime&&20<a-this.previousClickTime&&this.doDoubleClickZoom(),this.previousClickTime=a)},handleTouchMove:function(a){this.handleMouseMove(a)},resetPinch:function(){this.mapWasPinched=
133
- !1},handleMouseMove:function(a){var b=this;AmCharts.AmMap.base.handleMouseMove.call(b,a);var c=b.previuosMouseX,d=b.previuosMouseY,f=b.mouseX,e=b.mouseY;isNaN(c)&&(c=f);isNaN(d)&&(d=e);b.mouse2X=NaN;b.mouse2Y=NaN;if(a&&a.touches){var g=a.touches.item(1);g&&(b.mouse2X=g.pageX-AmCharts.findPosX(b.div),b.mouse2Y=g.pageY-AmCharts.findPosY(b.div))}var g=b.mapContainer,h=b.mouse2X,j=b.mouse2Y;b.pinchTO&&clearTimeout(b.pinchTO);b.pinchTO=setTimeout(function(){b.resetPinch.call(b)},1E3);if(!isNaN(h)){b.isDragging=
134
- !1;a.preventDefault&&a.preventDefault();var h=Math.sqrt(Math.pow(h-f,2)+Math.pow(j-e,2)),l=b.previousDistance,j=Math.max(b.realWidth,b.realHeight);5>Math.abs(l-h)&&(b.isDragging=!0);if(!isNaN(l)){var k=5*Math.abs(l-h)/j,j=g.scale,j=l<h?j+j*k:j-j*k,l=b.zoomLevel(),m=b.middleXP,k=b.middleYP,u=b.realHeight/b.mapHeight,t=b.realWidth/b.mapWidth,m=(b.zoomX()-m*t)*(j/l)+m*t,k=(b.zoomY()-k*u)*(j/l)+k*u;0.1<Math.abs(j-l)&&(b.zoomTo(j,m,k,!0),b.mapWasPinched=!0,clearTimeout(b.pinchTO))}b.previousDistance=h}b.isDragging&&
135
- (b.hideBalloon(),g.translate(g.x+(f-c),g.y+(e-d),g.scale),b.updateSmallMap(),a&&a.preventDefault&&a.preventDefault());b.previuosMouseX=f;b.previuosMouseY=e},selectObject:function(a){var b=this;a||(a=b.dataProvider);var c=a.linkToObject;a.useTargetsZoomValues&&c&&(a.zoomX=c.zoomX,a.zoomY=c.zoomY,a.zoomLatitude=c.zoomLatitude,a.zoomLongitude=c.zoomLongitude,a.zoomLevel=c.zoomLevel);var d=b.selectedObject;d&&b.returnInitialColor(d);b.selectedObject=a;var f=!1;"MapArea"==a.objectType&&a.autoZoomReal&&
136
- (f=!0);if(c&&!f&&("string"==typeof c&&(c=b.getObjectById(c)),isNaN(a.zoomLevel)&&isNaN(a.zoomX)&&isNaN(a.zoomY))){if(b.extendMapData(c))return;b.selectObject(c);return}b.allowMultipleDescriptionWindows||b.closeAllDescriptions();clearTimeout(b.selectedObjectTimeOut);clearTimeout(b.processObjectsTimeOut);c=b.zoomDuration;f||!isNaN(a.zoomLevel)||!isNaN(a.zoomX)||!isNaN(a.zoomY)?(b.selectedObjectTimeOut=setTimeout(function(){b.showDescriptionAndGetUrl.call(b)},1E3*c+200),b.showObjectsAfterZoom?b.processObjectsTimeOut=
137
- setTimeout(function(){b.processObjects.call(b)},1E3*c+200):b.processObjects()):(b.showDescriptionAndGetUrl(),b.processObjects());c=a.displayObject;f=b.areasSettings.selectedOutlineColor;if(c){c.toFront();c.setAttr("stroke",a.outlineColorReal);var e=a.selectedColorReal;void 0!==e&&c.setAttr("fill",e);void 0!==f&&c.setAttr("stroke",f);if(e=a.imageLabel){var g=a.selectedLabelColorReal;void 0!==g&&e.setAttr("fill",g)}a.selectable||(c.setAttr("cursor","default"),e&&e.setAttr("cursor","default"))}else b.returnInitialColorReal(a);
138
- if(c=a.groupId){e=b.getGroupById(c);for(g=0;g<e.length;g++){var h=e[g];if(c=h.displayObject){var j=h.selectedColorReal;void 0!==f&&c.setAttr("stroke",f);void 0!==j?c.setAttr("fill",j):b.returnInitialColor(h)}}}b.zoomToSelectedObject();d!=a&&(a={type:"selectedObjectChanged",chart:b},b.fire(a.type,a))},returnInitialColor:function(a,b){this.returnInitialColorReal(a);b&&(a.isFirst=!1);var c=a.groupId;if(c){var c=this.getGroupById(c),d;for(d=0;d<c.length;d++)this.returnInitialColorReal(c[d]),b&&(c[d].isFirst=
139
- !1)}},closeAllDescriptions:function(){this.descriptionsDiv.innerHTML=""},returnInitialColorReal:function(a){a.isOver=!1;var b=a.displayObject;if(b){b.toPrevious();if("MapImage"==a.objectType){var c=a.tempScale;isNaN(c)||b.translate(b.x,b.y,c,!0);a.tempScale=NaN}c=a.colorReal;a.showAsSelected&&(c=a.selectedColorReal);"bubble"==a.type&&(c=void 0);void 0!==c&&b.setAttr("fill",c);var d=a.image;d&&d.setAttr("fill",c);b.setAttr("stroke",a.outlineColorReal);"MapArea"==a.objectType&&b.setAttr("fill-opacity",
140
- a.alphaReal);(b=a.imageLabel)&&!a.labelInactive&&b.setAttr("fill",a.labelColorReal)}},zoomToRectangle:function(a,b,c,d){var f=this.realWidth,e=this.realHeight,g=this.mapSet.scale,h=this.zoomControl,f=AmCharts.fitToBounds(c/f>d/e?0.8*f/(c*g):0.8*e/(d*g),h.minZoomLevel,h.maxZoomLevel);this.zoomToMapXY(f,(a+c/2)*g,(b+d/2)*g)},zoomToLatLongRectangle:function(a,b,c,d){var f=this.dataProvider,e=this.zoomControl,g=Math.abs(c-a),h=Math.abs(b-d),j=Math.abs(f.rightLongitude-f.leftLongitude),f=Math.abs(f.topLatitude-
141
- f.bottomLatitude),e=AmCharts.fitToBounds(g/j>h/f?0.8*j/g:0.8*f/h,e.minZoomLevel,e.maxZoomLevel);this.zoomToLongLat(e,a+(c-a)/2,d+(b-d)/2)},getGroupById:function(a){var b=[];this.getGroup(this.imagesProcessor.allObjects,a,b);this.getGroup(this.linesProcessor.allObjects,a,b);this.getGroup(this.areasProcessor.allObjects,a,b);return b},zoomToGroup:function(a){a="object"==typeof a?a:this.getGroupById(a);var b,c,d,f,e;for(e=0;e<a.length;e++){var g=a[e].displayObject.getBBox(),h=g.y,j=g.y+g.height,l=g.x,
142
- g=g.x+g.width;if(h<b||isNaN(b))b=h;if(j>f||isNaN(f))f=j;if(l<c||isNaN(c))c=l;if(g>d||isNaN(d))d=g}a=this.mapSet.getBBox();c-=a.x;d-=a.x;f-=a.y;b-=a.y;this.zoomToRectangle(c,b,d-c,f-b)},getGroup:function(a,b,c){if(a){var d;for(d=0;d<a.length;d++){var f=a[d];f.groupId==b&&c.push(f)}}},zoomToStageXY:function(a,b,c,d){if(!this.objectWasClicked){var f=this.zoomControl;a=AmCharts.fitToBounds(a,f.minZoomLevel,f.maxZoomLevel);f=this.zoomLevel();c=this.coordinateToLatitude((c-this.mapContainer.y)/f);b=this.coordinateToLongitude((b-
143
- this.mapContainer.x)/f);this.zoomToLongLat(a,b,c,d)}},zoomToLongLat:function(a,b,c,d){b=this.longitudeToCoordinate(b);c=this.latitudeToCoordinate(c);this.zoomToMapXY(a,b,c,d)},zoomToMapXY:function(a,b,c,d){var f=this.mapWidth,e=this.mapHeight;this.zoomTo(a,-(b/f)*a+this.realWidth/f/2,-(c/e)*a+this.realHeight/e/2,d)},zoomToObject:function(a){var b=a.zoomLatitude,c=a.zoomLongitude,d=a.zoomLevel,f=this.zoomInstantly,e=a.zoomX,g=a.zoomY,h=this.realWidth,j=this.realHeight;isNaN(d)||(!isNaN(b)&&!isNaN(c)?
144
- this.zoomToLongLat(d,c,b,f):this.zoomTo(d,e,g,f));this.zoomInstantly=!1;"MapImage"==a.objectType&&isNaN(a.zoomX)&&(isNaN(a.zoomY)&&isNaN(a.zoomLatitude)&&isNaN(a.zoomLongitude)&&!isNaN(a.latitude)&&!isNaN(a.longitude))&&this.zoomToLongLat(a.zoomLevel,a.longitude,a.latitude);"MapArea"==a.objectType&&(e=a.displayObject.getBBox(),b=this.mapScale,c=e.x*b,d=e.y*b,f=e.width*b,e=e.height*b,h=a.autoZoomReal&&isNaN(a.zoomLevel)?f/h>e/j?0.8*h/f:0.8*j/e:a.zoomLevel,j=this.zoomControl,h=AmCharts.fitToBounds(h,
145
- j.minZoomLevel,j.maxZoomLevel),isNaN(a.zoomX)&&(isNaN(a.zoomY)&&isNaN(a.zoomLatitude)&&isNaN(a.zoomLongitude))&&(a=this.mapSet.getBBox(),this.zoomToMapXY(h,-a.x*b+c+f/2,-a.y*b+d+e/2)))},zoomToSelectedObject:function(){this.zoomToObject(this.selectedObject)},zoomTo:function(a,b,c,d){var f=this.zoomControl;a=AmCharts.fitToBounds(a,f.minZoomLevel,f.maxZoomLevel);f=this.zoomLevel();isNaN(b)&&(b=this.realWidth/this.mapWidth,b=(this.zoomX()-0.5*b)*(a/f)+0.5*b);isNaN(c)&&(c=this.realHeight/this.mapHeight,
146
- c=(this.zoomY()-0.5*c)*(a/f)+0.5*c);this.stopAnimation();isNaN(a)||(f=this.mapContainer,this.initialX=f.x,this.initialY=f.y,this.initialScale=f.scale,this.finalX=this.mapWidth*b,this.finalY=this.mapHeight*c,this.finalScale=a,this.finalX!=this.initialX||this.finalY!=this.initialY||this.finalScale!=this.initialScale?d?(this.tweenPercent=1,this.rescaleMapAndObjects(),this.wheelBusy=!1):this.animateMap():this.wheelBusy=!1)},loadXml:function(a){var b;b=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");
147
- b.overrideMimeType&&b.overrideMimeType("text/xml");b.open("GET",a,!1);b.send();this.parseXMLObject(b.responseXML);this.svgData&&this.buildEverything()},stopAnimation:function(){this.frame=this.totalFrames},processObjects:function(){var a=this.container,b=this.stageObjectsContainer;b&&b.remove();this.stageObjectsContainer=b=a.set();this.trendLinesSet.push(b);var c=this.mapObjectsContainer;c&&c.remove();this.mapObjectsContainer=c=a.set();this.mapContainer.push(c);c.toFront();b.toFront();if(a=this.selectedObject)this.imagesProcessor.reset(),
148
- this.linesProcessor.reset(),this.linesAboveImages?(this.imagesProcessor.process(a),this.linesProcessor.process(a)):(this.linesProcessor.process(a),this.imagesProcessor.process(a));this.rescaleObjects()},processAreas:function(){this.areasProcessor.process(this.dataProvider)},buildSVGMap:function(){var a=this.svgData.g.path,b=this.container,c=b.set();void 0===a.length&&(a=[a]);var d;for(d=0;d<a.length;d++){var f=a[d],e=f.title,g=b.path(f.d);g.id=f.id;this.svgAreasById[f.id]={area:g,title:e};this.svgAreas.push(g);
149
- c.push(g)}this.mapSet=c;this.mapContainer.push(c);this.resizeMap()},addObjectEventListeners:function(a,b){var c=this;a.mouseup(function(){c.clickMapObject(b)}).mouseover(function(){c.rollOverMapObject(b)}).mouseout(function(){c.rollOutMapObject(b)}).touchend(function(){c.clickMapObject(b)}).touchstart(function(){c.rollOverMapObject(b)})},checkIfSelected:function(a){var b=this.selectedObject;if(b==a)return!0;if(b=b.groupId){var b=this.getGroupById(b),c;for(c=0;c<b.length;c++)if(b[c]==a)return!0}return!1},
150
- clearMap:function(){this.chartDiv.innerHTML="";this.clearObjectList()},clearObjectList:function(){var a=this.objectList;a&&(a.div.innerHTML="")},checkIfLast:function(a){if(a){var b=a.parentNode;if(b&&b.lastChild==a)return!0}return!1},showAsRolledOver:function(a){var b=a.displayObject;if(!a.showAsSelected&&b&&!a.isOver){b.node.onmouseout=function(){};b.node.onmouseover=function(){};b.node.onclick=function(){};a.isFirst||(b.toFront(),a.isFirst=!0);var c=a.rollOverColorReal,d;void 0!=c&&("MapImage"==
151
- a.objectType?(d=a.image)&&d.setAttr("fill",c):b.setAttr("fill",c));if((d=a.imageLabel)&&!a.labelInactive)c=a.labelRollOverColorReal,void 0!=c&&d.setAttr("fill",c);c=a.rollOverOutlineColorReal;void 0!=c&&("MapImage"==a.objectType?(d=a.image)&&d.setAttr("stroke",c):b.setAttr("stroke",c));"MapArea"==a.objectType&&(d=a.rollOverAlphaReal,isNaN(d)||b.setAttr("fill-opacity",d));"MapImage"==a.objectType&&(d=a.rollOverScaleReal,isNaN(d)||(a.tempScale=b.scale,b.translate(b.x,b.y,b.scale*d,!0)));this.useHandCursorOnClickableOjects&&
152
- this.checkIfClickable(a)&&b.setAttr("cursor","pointer");this.addObjectEventListeners(b,a);a.isOver=!0}},rollOverMapObject:function(a,b){if(this.chartCreated){this.handleMouseMove();var c=this.previouslyHovered;c&&c!=a&&!1===this.checkIfSelected(c)&&(this.returnInitialColor(c,!0),this.previouslyHovered=null);if(!1===this.checkIfSelected(a)){if(c=a.groupId){var c=this.getGroupById(c),d;for(d=0;d<c.length;d++)c[d]!=a&&this.showAsRolledOver(c[d])}this.showAsRolledOver(a)}else(c=a.displayObject)&&c.setAttr("cursor",
153
- "default");if(this.showDescriptionOnHover)this.showDescription(a);else if((this.showBalloonOnSelectedObject||!this.checkIfSelected(a))&&!1!==b){var f=this.balloon;d=a.colorReal;c="";void 0!==d&&this.useObjectColorForBalloon||(d=f.fillColor);clearTimeout(this.hoverInt);(f=a.balloonTextReal)&&(c=this.formatString(f,a));this.balloonLabelFunction&&(c=this.balloonLabelFunction(a,this));c&&""!==c&&this.showBalloon(c,d,!0)}c={type:"rollOverMapObject",mapObject:a,chart:this};this.fire(c.type,c);this.previouslyHovered=
154
- a}},rollOutMapObject:function(a){this.hideBalloon();this.chartCreated&&a.isOver&&(this.checkIfSelected(a)||this.returnInitialColor(a),a={type:"rollOutMapObject",mapObject:a,chart:this},this.fire(a.type,a))},formatString:function(a,b){var c=this.numberFormatter,d=this.percentFormatter,f=b.title;void 0==f&&(f="");var e=b.value,e=isNaN(e)?"":AmCharts.formatNumber(e,c),c=b.percents,c=isNaN(c)?"":AmCharts.formatNumber(c,d),d=b.description;void 0==d&&(d="");var g=b.customData;void 0==g&&(g="");return a=
155
- AmCharts.massReplace(a,{"[[title]]":f,"[[value]]":e,"[[percent]]":c,"[[description]]":d,"[[customData]]":g})},clickMapObject:function(a){this.hideBalloon();this.chartCreated&&(!this.mapWasDragged&&this.checkIfClickable(a)&&!this.mapWasPinched)&&(this.selectObject(a),a={type:"clickMapObject",mapObject:a,chart:this},this.fire(a.type,a),this.objectWasClicked=!0)},checkIfClickable:function(a){if(!0===a.selectable||"MapArea"==a.objectType&&a.autoZoomReal||a.url||a.linkToObject||(0<a.images.length||0<a.lines.length)||
156
- (!isNaN(a.zoomLevel)||!isNaN(a.zoomX)||!isNaN(a.zoomY))||a.description)return!0;var b=this.allowClickOnSelectedObject;return this.selectedObject==a&&b?!0:!1},handleResize:function(){(AmCharts.isPercents(this.width)||AmCharts.isPercents(this.height))&&this.invalidateSize();this.renderFix()},resizeMap:function(){var a=this.mapSet;if(a)if(this.fitMapToContainer){var b=a.getBBox(),c=this.realWidth,d=this.realHeight,f=b.width,e=b.height,c=f/c>e/d?c/f:d/e;a.translate(-b.x*c,-b.y*c,c);this.mapScale=c;this.mapHeight=
157
- e*c;this.mapWidth=f*c}else b=group.transform.match(/([\-]?[\d.]+)/g),a.translate(b[0],b[1],b[2])},zoomIn:function(){this.skipClick=!0;var a=this.zoomLevel()*this.zoomControl.zoomFactor;this.zoomTo(a)},zoomOut:function(){this.skipClick=!0;var a=this.zoomLevel()/this.zoomControl.zoomFactor;this.zoomTo(a)},moveLeft:function(){this.skipClick=!0;var a=this.zoomX()+this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),a,this.zoomY())},moveRight:function(){this.skipClick=!0;var a=this.zoomX()-this.zoomControl.panStepSize;
158
- this.zoomTo(this.zoomLevel(),a,this.zoomY())},moveUp:function(){this.skipClick=!0;var a=this.zoomY()+this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),this.zoomX(),a)},moveDown:function(){this.skipClick=!0;var a=this.zoomY()-this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),this.zoomX(),a)},zoomX:function(){return this.mapSet?Math.round(1E4*this.mapContainer.x/this.mapWidth)/1E4:NaN},zoomY:function(){return this.mapSet?Math.round(1E4*this.mapContainer.y/this.mapHeight)/1E4:NaN},goHome:function(){this.selectObject(this.dataProvider);
159
- var a={type:"homeButtonClicked",chart:this};this.fire(a.type,a)},zoomLevel:function(){return Math.round(1E5*this.mapContainer.scale)/1E5},showDescriptionAndGetUrl:function(){var a=this.selectedObject;if(a){this.showDescription();var b=a.url;if(b)AmCharts.getURL(b,a.urlTarget);else if(b=a.linkToObject){if("string"==typeof b){var c=this.getObjectById(b);if(c){this.selectObject(c);return}}b&&a.passZoomValuesToTarget&&(b.zoomLatitude=this.zoomLatitude(),b.zoomLongitude=this.zoomLongitude(),b.zoomLevel=
160
- this.zoomLevel());this.extendMapData(b)||this.selectObject(b)}}},extendMapData:function(a){var b=a.objectType;if("MapImage"!=b&&"MapArea"!=b&&"MapLine"!=b)return AmCharts.extend(a,new AmCharts.MapData),this.dataProvider=a,this.zoomInstantly=!0,this.validateData(),!0},showDescription:function(a){a||(a=this.selectedObject);this.allowMultipleDescriptionWindows||this.closeAllDescriptions();if(a.description){var b=a.descriptionWindow;b&&b.close();b=new AmCharts.DescriptionWindow;a.descriptionWindow=b;
161
- var c=a.descriptionWindowWidth,d=a.descriptionWindowHeight,f=a.descriptionWindowX,e=a.descriptionWindowY;isNaN(f)&&(f=this.mouseX,f=f>this.realWidth/2?f-c-20:f+20);isNaN(e)&&(e=this.mouseY);b.maxHeight=d;b.show(this,this.descriptionsDiv,a.description,a.title);a=b.div.style;a.width=c+"px";a.maxHeight=d+"px";a.left=f+"px";a.top=e+"px"}},parseXMLObject:function(a){var b={root:{}};this.parseXMLNode(b,"root",a);this.svgData=b.root.svg;this.getBounds()},getBounds:function(){var a=this.dataProvider;try{var b=
162
- this.svgData.defs["amcharts:ammap"];a.leftLongitude=Number(b.leftLongitude);a.rightLongitude=Number(b.rightLongitude);a.topLatitude=Number(b.topLatitude);a.bottomLatitude=Number(b.bottomLatitude);a.projection=b.projection}catch(c){}},latitudeToCoordinate:function(a){var b,c=this.dataProvider;if(this.mapSet){b=c.topLatitude;var d=c.bottomLatitude;"mercator"==c.projection&&(a=this.mercatorLatitudeToCoordinate(a),b=this.mercatorLatitudeToCoordinate(b),d=this.mercatorLatitudeToCoordinate(d));b=(a-b)/
163
- (d-b)*this.mapHeight}return b},longitudeToCoordinate:function(a){var b,c=this.dataProvider;this.mapSet&&(b=c.leftLongitude,b=(a-b)/(c.rightLongitude-b)*this.mapWidth);return b},mercatorLatitudeToCoordinate:function(a){89.5<a&&(a=89.5);-89.5>a&&(a=-89.5);a=AmCharts.degreesToRadians(a);a=0.5*Math.log((1+Math.sin(a))/(1-Math.sin(a)));return AmCharts.radiansToDegrees(a/2)},zoomLatitude:function(){return this.coordinateToLatitude((-this.mapContainer.y+this.previousHeight/2)/this.zoomLevel())},zoomLongitude:function(){return this.coordinateToLongitude((-this.mapContainer.x+
164
- this.previousWidth/2)/this.zoomLevel())},getAreaCenterLatitude:function(a){a=a.displayObject.getBBox();var b=this.mapScale;a=-this.mapSet.getBBox().y*b+(a.y+a.height/2)*b;return this.coordinateToLatitude(a)},getAreaCenterLongitude:function(a){a=a.displayObject.getBBox();var b=this.mapScale;a=-this.mapSet.getBBox().x*b+(a.x+a.width/2)*b;return this.coordinateToLongitude(a)},coordinateToLatitude:function(a){var b;if(this.mapSet){var c=this.dataProvider,d=c.bottomLatitude,f=c.topLatitude;b=this.mapHeight;
165
- "mercator"==c.projection?(c=this.mercatorLatitudeToCoordinate(d),f=this.mercatorLatitudeToCoordinate(f),a=2*Math.atan(Math.exp(2*(a*(c-f)/b+f)*Math.PI/180))-0.5*Math.PI,b=AmCharts.radiansToDegrees(a)):b=a/b*(d-f)+f}return Math.round(1E6*b)/1E6},coordinateToLongitude:function(a){var b,c=this.dataProvider;this.mapSet&&(b=a/this.mapWidth*(c.rightLongitude-c.leftLongitude)+c.leftLongitude);return Math.round(1E6*b)/1E6},milesToPixels:function(a){var b=this.dataProvider;return a*(this.mapWidth/(b.rightLongitude-
166
- b.leftLongitude))/69.172},kilometersToPixels:function(a){var b=this.dataProvider;return a*(this.mapWidth/(b.rightLongitude-b.leftLongitude))/111.325},handleBackgroundClick:function(){if(this.backgroundZoomsToTop&&!this.mapWasDragged){var a=this.dataProvider;if(this.checkIfClickable(a))this.clickMapObject(a);else{var b=a.zoomX,c=a.zoomY,d=a.zoomLongitude,f=a.zoomLatitude,a=a.zoomLevel;!isNaN(b)&&!isNaN(c)&&this.zoomTo(a,b,c);!isNaN(d)&&!isNaN(f)&&this.zoomToLongLat(a,d,f,!0)}}},parseXMLNode:function(a,
167
- b,c,d){void 0===d&&(d="");var f,e,g;if(c){var h=c.childNodes.length;for(f=0;f<h;f++){e=c.childNodes[f];var j=e.nodeName,l=e.nodeValue?this.trim(e.nodeValue):"",k=!1;e.attributes&&0<e.attributes.length&&(k=!0);if(!(0===e.childNodes.length&&""===l&&!1===k))if(3==e.nodeType||4==e.nodeType){if(""!==l){e=0;for(g in a[b])a[b].hasOwnProperty(g)&&e++;e?a[b]["#text"]=l:a[b]=l}}else if(1==e.nodeType){var m;void 0!==a[b][j]?void 0===a[b][j].length?(m=a[b][j],a[b][j]=[],a[b][j].push(m),a[b][j].push({}),m=a[b][j][1]):
168
- "object"==typeof a[b][j]&&(a[b][j].push({}),m=a[b][j][a[b][j].length-1]):(a[b][j]={},m=a[b][j]);if(e.attributes&&e.attributes.length)for(l=0;l<e.attributes.length;l++)m[e.attributes[l].name]=e.attributes[l].value;void 0!==a[b][j].length?this.parseXMLNode(a[b][j],a[b][j].length-1,e,d+" "):this.parseXMLNode(a[b],j,e,d+" ")}}e=0;c="";for(g in a[b])"#text"==g?c=a[b][g]:e++;0===e&&void 0===a[b].length&&(a[b]=c)}},doDoubleClickZoom:function(){if(!this.mapWasDragged){var a=this.zoomLevel()*this.zoomControl.zoomFactor;
169
- this.zoomToStageXY(a,this.mouseX,this.mouseY)}},getDevInfo:function(){var a=this.zoomLevel(),a={chart:this,type:"writeDevInfo",zoomLevel:a,zoomX:this.zoomX(),zoomY:this.zoomY(),zoomLatitude:this.zoomLatitude(),zoomLongitude:this.zoomLongitude(),latitude:this.coordinateToLatitude((this.mouseY-this.mapContainer.y)/a),longitude:this.coordinateToLongitude((this.mouseX-this.mapContainer.x)/a),left:this.mouseX,top:this.mouseY,right:this.realWidth-this.mouseX,bottom:this.realHeight-this.mouseY,percentLeft:Math.round(100*
170
- (this.mouseX/this.realWidth))+"%",percentTop:Math.round(100*(this.mouseY/this.realHeight))+"%",percentRight:Math.round(100*((this.realWidth-this.mouseX)/this.realWidth))+"%",percentBottom:Math.round(100*((this.realHeight-this.mouseY)/this.realHeight))+"%"},b="zoomLevel:"+a.zoomLevel+", zoomLongitude:"+a.zoomLongitude+", zoomLatitude:"+a.zoomLatitude+"\n",b=b+("zoomX:"+a.zoomX+", zoomY:"+a.zoomY+"\n"),b=b+("latitude:"+a.latitude+", longitude:"+a.longitude+"\n"),b=b+("left:"+a.left+", top:"+a.top+"\n"),
171
- b=b+("right:"+a.right+", bottom:"+a.bottom+"\n"),b=b+('left:"'+a.percentLeft+'", top:"'+a.percentTop+'"\n'),b=b+('right:"'+a.percentRight+'", bottom:"'+a.percentBottom+'"\n');a.str=b;this.fire(a.type,a);return a},getXY:function(a,b,c){void 0!==a&&(-1!=String(a).indexOf("%")?(a=Number(a.split("%").join("")),c&&(a=100-a),a=Number(a)*b/100):c&&(a=b-a));return a},getObjectById:function(a){var b=this.dataProvider;if(b.areas){var c=this.getObject(a,b.areas);if(c)return c}if(c=this.getObject(a,b.images))return c;
172
- if(a=this.getObject(a,b.lines))return a},getObject:function(a,b){if(b){var c;for(c=0;c<b.length;c++){var d=b[c];if(d.id==a)return d;if(d.areas){var f=this.getObject(a,d.areas);if(f)return f}if(f=this.getObject(a,d.images))return f;if(d=this.getObject(a,d.lines))return d}}},parseData:function(){var a=this.dataProvider;this.processObject(a.areas,a,"area");this.processObject(a.images,a,"image");this.processObject(a.lines,a,"line")},processObject:function(a,b,c){if(a){var d;for(d=0;d<a.length;d++){var f=
173
- a[d];f.parentObject=b;"area"==c&&AmCharts.extend(f,new AmCharts.MapArea);"image"==c&&AmCharts.extend(f,new AmCharts.MapImage);"line"==c&&AmCharts.extend(f,new AmCharts.MapLine);f.areas&&this.processObject(f.areas,f,"area");f.images&&this.processObject(f.images,f,"image");f.lines&&this.processObject(f.lines,f,"line")}}},getX:function(a,b){return this.getXY(a,this.realWidth,b)},getY:function(a,b){return this.getXY(a,this.realHeight,b)},trim:function(a){if(a){var b;for(b=0;b<a.length;b++)if(-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(b))){a=
174
- a.substring(b);break}for(b=a.length-1;0<=b;b--)if(-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(b))){a=a.substring(0,b+1);break}return-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(0))?a:""}},drb:function(){var a=this.product,b=a+".com",c=window.location.hostname.split("."),d;2<=c.length&&(d=c[c.length-2]+"."+c[c.length-1]);
175
- AmCharts.remove(this.bbset);if(d!=b){var b=b+"/?utm_source=swf&utm_medium=demo&utm_campaign=jsDemo"+a,f="chart by ",c=145;"ammap"==a&&(f="tool by ",c=125);d=AmCharts.rect(this.container,c,20,"#FFFFFF",1);f=AmCharts.text(this.container,f+a+".com","#000000","Verdana",11,"start");f.translate(7,9);d=this.container.set([d,f]);"ammap"==a&&d.translate(this.realWidth-c,0);this.bbset=d;this.linkSet.push(d);d.setAttr("cursor","pointer");d.click(function(){window.location.href="http://"+b});for(a=0;a<d.length;a++)d[a].attr({cursor:"pointer"})}}});AmCharts.ZoomControl=AmCharts.Class({construct:function(){this.panStepSize=0.1;this.zoomFactor=2;this.maxZoomLevel=64;this.minZoomLevel=1;this.zoomControlEnabled=this.panControlEnabled=!0;this.buttonRollOverColor="#CC0000";this.buttonFillColor="#990000";this.buttonFillAlpha=1;this.buttonBorderColor="#FFFFFF";this.buttonBorderThickness=this.buttonBorderAlpha=1;this.buttonIconColor="#FFFFFF";this.buttonColorHover="#FF0000";this.gridColor=this.homeIconColor="#FFFFFF";this.gridBackgroundColor="#000000";
176
- this.gridBackgroundAlpha=0.15;this.gridAlpha=1;this.buttonSize=18;this.iconSize=11;this.buttonCornerRadius=0;this.gridHeight=150;this.top=this.left=10},init:function(a,b){var c=this;c.chart=a;AmCharts.remove(c.set);var d=b.set();d.translate(a.getX(c.left),a.getY(c.top));var f=c.buttonSize,e=c.buttonFillColor,g=c.buttonFillAlpha,h=c.buttonBorderThickness,j=c.buttonBorderColor,l=c.buttonBorderAlpha,k=c.buttonCornerRadius,m=c.buttonRollOverColor,u=c.gridHeight,t=c.zoomFactor,x=c.minZoomLevel,p=c.maxZoomLevel;
177
- c.previousDY=NaN;var q;if(c.zoomControlEnabled){q=b.set();d.push(q);c.set=d;c.zoomSet=q;var r=AmCharts.rect(b,f+6,u+2*f+6,c.gridBackgroundColor,c.gridBackgroundAlpha,0,0,0,4);r.translate(-3,-3);r.mouseup(function(){c.handleBgUp()});q.push(r);r=new AmCharts.SimpleButton;r.setIcon(a.pathToImages+"plus.gif",c.iconSize);r.setClickHandler(a.zoomIn,a);r.init(b,f,f,e,g,h,j,l,k,m);q.push(r.set);r=new AmCharts.SimpleButton;r.setIcon(a.pathToImages+"minus.gif",c.iconSize);r.setClickHandler(a.zoomOut,a);r.init(b,
178
- f,f,e,g,h,j,l,k,m);r.set.translate(0,u+f);q.push(r.set);var s=Math.log(p/x)/Math.log(t)+1,r=u/s,v;for(v=1;v<s;v++){var w=f+v*r,w=AmCharts.line(b,[1,f-2],[w,w],c.gridColor,c.gridAlpha,1);q.push(w)}s=new AmCharts.SimpleButton;s.setDownHandler(c.draggerDown,c);s.setClickHandler(c.draggerUp,c);s.init(b,f,r,e,g,h,j,l,k,m);q.push(s.set);c.dragger=s.set;c.previousY=NaN;u-=r;x=Math.log(x/100)/Math.log(t);t=Math.log(p/100)/Math.log(t);c.realStepSize=u/(t-x);c.realGridHeight=u;c.stepMax=t}c.panControlEnabled&&
179
- (t=b.set(),d.push(t),q&&q.translate(f,4*f),q=new AmCharts.SimpleButton,q.setIcon(a.pathToImages+"panLeft.gif",c.iconSize),q.setClickHandler(a.moveLeft,a),q.init(b,f,f,e,g,h,j,l,k,m),q.set.translate(0,f),t.push(q.set),q=new AmCharts.SimpleButton,q.setIcon(a.pathToImages+"panRight.gif",c.iconSize),q.setClickHandler(a.moveRight,a),q.init(b,f,f,e,g,h,j,l,k,m),q.set.translate(2*f,f),t.push(q.set),q=new AmCharts.SimpleButton,q.setIcon(a.pathToImages+"panUp.gif",c.iconSize),q.setClickHandler(a.moveUp,a),
180
- q.init(b,f,f,e,g,h,j,l,k,m),q.set.translate(f,0),t.push(q.set),q=new AmCharts.SimpleButton,q.setIcon(a.pathToImages+"panDown.gif",c.iconSize),q.setClickHandler(a.moveDown,a),q.init(b,f,f,e,g,h,j,l,k,m),q.set.translate(f,2*f),t.push(q.set),g=new AmCharts.SimpleButton,g.setIcon(a.pathToImages+"homeIcon.gif",c.iconSize),g.setClickHandler(a.goHome,a),g.init(b,f,f,e,0,0,j,0,k,m),g.set.translate(f,f),t.push(g.set),d.push(t))},draggerDown:function(){this.chart.stopDrag();this.isDragging=!0},draggerUp:function(){this.isDragging=
181
- !1},handleBgUp:function(){var a=this.chart,b=100*Math.pow(this.zoomFactor,this.stepMax-(a.mouseY-this.zoomSet.y-this.set.y-this.buttonSize-this.realStepSize/2)/this.realStepSize);a.zoomTo(b)},update:function(){var a,b=this.zoomFactor,c=this.realStepSize,d=this.stepMax,f=this.dragger,e=this.buttonSize,g=this.chart;this.isDragging?(g.stopDrag(),a=f.y+(g.mouseY-this.previousY),a=AmCharts.fitToBounds(a,e,this.realGridHeight+e),c=100*Math.pow(b,d-(a-e)/c),g.zoomTo(c,NaN,NaN,!0)):(a=Math.log(g.zoomLevel()/
182
- 100)/Math.log(b),a=(d-a)*c+e);this.previousY=g.mouseY;this.previousDY!=a&&f&&(f.translate(0,a),this.previousDY=a)}});AmCharts.SimpleButton=AmCharts.Class({construct:function(){},init:function(a,b,c,d,f,e,g,h,j,l){var k=this;k.rollOverColor=l;k.color=d;l=a.set();k.set=l;d=AmCharts.rect(a,b,c,d,f,e,g,h,j);l.push(d);if(f=k.iconPath)e=k.iconSize,a=a.image(f,(b-e)/2,(c-e)/2,e,e),l.push(a),a.mousedown(function(){k.handleDown()}).mouseup(function(){k.handleUp()}).mouseover(function(){k.handleOver()}).mouseout(function(){k.handleOut()});d.mousedown(function(){k.handleDown()}).mouseup(function(){k.handleUp()}).mouseover(function(){k.handleOver()}).mouseout(function(){k.handleOut()});
183
- k.bg=d},setIcon:function(a,b){this.iconPath=a;this.iconSize=b},setClickHandler:function(a,b){this.clickHandler=a;this.scope=b},setDownHandler:function(a,b){this.downHandler=a;this.scope=b},handleUp:function(){var a=this.clickHandler;a&&a.call(this.scope)},handleDown:function(){var a=this.downHandler;a&&a.call(this.scope)},handleOver:function(){this.bg.setAttr("fill",this.rollOverColor)},handleOut:function(){this.bg.setAttr("fill",this.color)}});AmCharts.SmallMap=AmCharts.Class({construct:function(){this.mapColor="#e6e6e6";this.rectangleColor="#FFFFFF";this.top=this.right=10;this.minimizeButtonWidth=16;this.backgroundColor="#9A9A9A";this.backgroundAlpha=1;this.borderColor="#FFFFFF";this.borderThickness=3;this.borderAlpha=1;this.size=0.2},init:function(a,b){var c=this;c.chart=a;c.container=b;c.width=a.realWidth*c.size;c.height=a.realHeight*c.size;AmCharts.remove(c.set);var d=b.set();c.set=d;var f=b.set();c.allSet=f;d.push(f);c.buildSVGMap();
184
- var e=c.borderThickness,g=c.borderColor,h=AmCharts.rect(b,c.width+e,c.height+e,c.backgroundColor,c.backgroundAlpha,e,g,c.borderAlpha);h.translate(-e/2,-e/2);f.push(h);h.toBack();var j,l,h=c.minimizeButtonWidth,k=new AmCharts.SimpleButton;k.setIcon(a.pathToImages+"arrowDown.gif",h);k.setClickHandler(c.minimize,c);k.init(b,h,h,g,1,1,g,1);k=k.set;c.downButtonSet=k;d.push(k);var m=new AmCharts.SimpleButton;m.setIcon(a.pathToImages+"arrowUp.gif",h);m.setClickHandler(c.maximize,c);m.init(b,h,h,g,1,1,g,
185
- 1);g=m.set;c.upButtonSet=g;g.hide();d.push(g);var u,t;isNaN(c.top)||(j=a.getY(c.top)+e,t=0);isNaN(c.bottom)||(j=a.getY(c.bottom,!0)-c.height-e,t=c.height-h+e/2);isNaN(c.left)||(l=a.getX(c.left)+e,u=-e/2);isNaN(c.right)||(l=a.getX(c.right,!0)-c.width-e,u=c.width-h+e/2);e=b.set();e.clipRect(1,1,c.width,c.height);f.push(e);c.rectangleC=e;d.translate(l,j);k.translate(u,t);g.translate(u,t);f.mouseup(function(){c.handleMouseUp()});c.drawRectangle()},minimize:function(){this.downButtonSet.hide();this.upButtonSet.show();
186
- this.allSet.hide()},maximize:function(){this.downButtonSet.show();this.upButtonSet.hide();this.allSet.show()},buildSVGMap:function(){var a=this.chart,b={fill:this.mapColor,stroke:this.mapColor,"stroke-opacity":1},c=a.svgData.g.path,d=this.container,f=d.set(),e;for(e=0;e<c.length;e++){var g=d.path(c[e].d).attr(b);f.push(g)}this.allSet.push(f);b=f.getBBox();c=this.size*a.mapScale;d=-b.x*c;e=-b.y*c;var h=g=0;a.centerMap&&(g=(this.width-b.width*c)/2,h=(this.height-b.height*c)/2);this.mapWidth=b.width*
187
- c;this.mapHeight=b.height*c;this.dx=g;this.dy=h;f.translate(d+g,e+h,c)},update:function(){var a=this.chart,b=a.zoomLevel(),c=this.width,d=a.mapContainer,a=c/(a.realWidth*b),c=c/b,b=this.height/b,f=this.rectangle;f.translate(-d.x*a+this.dx,-d.y*a+this.dy);0<c&&0<b&&(f.setAttr("width",c),f.setAttr("height",b));this.rWidth=c;this.rHeight=b},drawRectangle:function(){var a=this.rectangle;AmCharts.remove(a);a=AmCharts.rect(this.container,10,10,"#000",0,1,this.rectangleColor,1);this.rectangleC.push(a);this.rectangle=
188
- a},handleMouseUp:function(){var a=this.chart,b=a.zoomLevel();a.zoomTo(b,-((a.mouseX-this.set.x-this.dx-this.rWidth/2)/this.mapWidth)*b,-((a.mouseY-this.set.y-this.dy-this.rHeight/2)/this.mapHeight)*b)}});AmCharts.AreasProcessor=AmCharts.Class({construct:function(a){this.chart=a},process:function(a){this.updateAllAreas();this.allObjects=[];a=a.areas;var b=this.chart,c=b.areasSettings,d=a.length,f,e,g=0,h=b.svgAreasById,j=c.color,l=c.alpha,k=c.outlineThickness,m=c.rollOverColor,u=c.selectedColor,t=c.rollOverAlpha,x=c.outlineColor,p=c.outlineAlpha,q=c.balloonText,r=c.selectable,s=c.rollOverOutlineColor,v=0,w=0;for(f=0;f<d;f++)e=a[f],e=e.value,v<e&&(v=e),w>e&&(w=e),isNaN(e)||(g+=Math.abs(e));isNaN(b.minValue)||
189
- (w=b.minValue);isNaN(b.maxValue)||(v=b.maxValue);b.maxValueReal=v;b.minValueReal=w;for(f=0;f<d;f++)e=a[f],e.percents=isNaN(e.value)?void 0:100*((e.value-w)/g);for(f=0;f<d;f++){e=a[f];this.allObjects.push(e);e.chart=b;e.baseSettings=c;e.autoZoomReal=void 0==e.autoZoom?c.autoZoom:e.autoZoom;g=e.color;void 0==g&&(g=j);var n=e.alpha;isNaN(n)&&(n=l);var y=e.rollOverAlpha;isNaN(y)&&(y=t);isNaN(y)&&(y=n);var z=e.rollOverColor;void 0==z&&(z=m);var C=e.selectedColor;void 0==C&&(C=u);var D=e.balloonText;D||
190
- (D=q);if(void 0!=c.colorSolid&&!isNaN(e.value)){var A=(e.value-w)/(v-w),B=100/(b.colorSteps-1),A=Math.ceil(100*A/B)*B/100;e.colorReal=AmCharts.getColorFade(g,c.colorSolid,A)}void 0!=e.color&&(e.colorReal=e.color);void 0==e.selectable&&(e.selectable=r);void 0==e.colorReal&&(e.colorReal=j);A=e.outlineColor;void 0==A&&(A=x);B=e.outlineAlpha;isNaN(B)&&(B=p);var E=e.outlineThickness;isNaN(E)&&(E=k);var I=e.rollOverOutlineColor;void 0==I&&(I=s);e.alphaReal=n;e.rollOverColorReal=z;e.rollOverAlphaReal=y;
191
- e.balloonTextReal=D;e.selectedColorReal=C;e.outlineColorReal=A;e.outlineAlphaReal=B;e.rollOverOutlineColorReal=I;AmCharts.processDescriptionWindow(c,e);if(z=h[e.id]){y=z.area;if((z=z.title)&&!e.title)e.title=z;if(y){e.displayObject=y;e.mouseEnabled&&b.addObjectEventListeners(y,e);var G;void 0!=g&&(G=g);void 0!=e.colorReal&&(G=e.showAsSelected||b.selectedObject==e?e.selectedColorReal:e.colorReal);y.setAttr("fill",G);y.setAttr("stroke",A);y.setAttr("stroke-opacity",B);y.setAttr("stroke-width",E);y.setAttr("fill-opacity",
192
- n)}}}},updateAllAreas:function(){var a=this.chart,b=a.areasSettings,c=b.unlistedAreasColor,d=b.unlistedAreasAlpha,f=b.unlistedAreasOutlineColor,e=b.unlistedAreasOutlineAlpha,g=a.svgAreas,a=a.dataProvider,h=a.areas,j={},l;for(l=0;l<h.length;l++)j[h[l].id]=h[l];for(l=0;l<g.length;l++)if(h=g[l],void 0!=c&&h.setAttr("fill",c),isNaN(d)||h.setAttr("fill-opacity",d),void 0!=f&&h.setAttr("stroke",f),isNaN(e)||h.setAttr("stroke-opacity",e),h.setAttr("stroke-width",b.outlineThickness),a.getAreasFromMap&&!j[h.id]){var k=
193
- new AmCharts.MapArea;k.parentObject=a;k.id=h.id;a.areas.push(k)}}});AmCharts.AreasSettings=AmCharts.Class({construct:function(){this.alpha=1;this.autoZoom=!1;this.balloonText="[[title]]";this.color="#FFCC00";this.colorSolid="#990000";this.unlistedAreasAlpha=1;this.unlistedAreasColor="#DDDDDD";this.outlineColor="#FFFFFF";this.outlineAlpha=1;this.outlineThickness=0.5;this.selectedColor=this.rollOverOutlineColor="#CC0000";this.unlistedAreasOutlineColor="#FFFFFF";this.unlistedAreasOutlineAlpha=1;this.descriptionWindowWidth=250}});AmCharts.ImagesProcessor=AmCharts.Class({construct:function(a){this.chart=a;this.reset()},process:function(a){var b=a.images,c;for(c=0;c<b.length;c++)this.createImage(b[c],c);a.parentObject&&a.remainVisible&&this.process(a.parentObject)},createImage:function(a,b){var c=this.chart,d=c.container,f=c.mapObjectsContainer,e=c.stageObjectsContainer,g=c.imagesSettings;a.remove();var h=g.color,j=g.alpha,l=g.rollOverColor,k=g.selectedColor,m=g.balloonText,u=g.outlineColor,t=g.outlineAlpha,x=g.outlineThickness,
194
- p=g.selectedScale,q=g.labelPosition,r=g.labelColor,s=g.labelFontSize,v=g.labelRollOverColor,w=g.selectedLabelColor;a.index=b;a.chart=c;a.baseSettings=c.imagesSettings;var n=d.set();a.displayObject=n;var y=a.color;void 0==y&&(y=h);h=a.alpha;isNaN(h)&&(h=j);j=a.outlineAlpha;isNaN(j)&&(j=t);t=a.rollOverColor;void 0==t&&(t=l);l=a.selectedColor;void 0==l&&(l=k);(k=a.balloonText)||(k=m);m=a.outlineColor;void 0==m&&(m=u);void 0==m&&(m=y);u=a.outlineThickness;isNaN(u)&&(u=x);(x=a.labelPosition)||(x=q);q=
195
- a.labelColor;void 0==q&&(q=r);r=a.labelRollOverColor;void 0==r&&(r=v);v=a.selectedLabelColor;void 0==v&&(v=w);w=a.labelFontSize;isNaN(w)&&(w=s);s=a.selectedScale;isNaN(s)&&(s=p);isNaN(a.rollOverScale);a.colorReal=y;a.alphaReal=h;a.rollOverColorReal=t;a.balloonTextReal=k;a.selectedColorReal=l;a.labelColorReal=q;a.labelRollOverColorReal=r;a.selectedLabelColorReal=v;a.labelFontSizeReal=w;a.labelPositionReal=x;a.selectedScaleReal=s;a.rollOverScaleReal=s;AmCharts.processDescriptionWindow(g,a);a.centeredReal=
196
- void 0==a.centered?g.centered:a.centered;w=a.type;v=a.imageURL;t=a.svgPath;r=a.width;l=a.height;g=a.scale;isNaN(a.percentWidth)||(r=a.percentWidth/100*c.realWidth);isNaN(a.percentHeight)||(l=a.percentHeight/100*c.realHeight);var z;!v&&(!w&&!t)&&(w="circle",r=1,j=h=0);q=p=0;s=a.selectedColorReal;w?(isNaN(r)&&(r=10),isNaN(l)&&(l=10),"kilometers"==a.widthAndHeightUnits&&(r=c.kilometersToPixels(a.width),l=c.kilometersToPixels(a.height)),"miles"==a.widthAndHeightUnits&&(r=c.milesToPixels(a.width),l=c.milesToPixels(a.height)),
197
- z=this.createPredefinedImage(y,m,u,w,r,l),q=p=0,a.centeredReal&&(p=isNaN(a.right)?-r/2:r/2,q=isNaN(a.bottom)?-l/2:l/2),z.translate(p,q)):v?(isNaN(r)&&(r=10),isNaN(l)&&(l=10),z=d.image(v,0,0,r,l),z.node.setAttribute("preserveAspectRatio","none"),z.setAttr("opacity",h),a.centeredReal&&(p=isNaN(a.right)?-r/2:r/2,q=isNaN(a.bottom)?-l/2:l/2,z.translate(p,q))):t&&(z=d.path(t),m=z.getBBox(),a.centeredReal?(p=-m.x*g-m.width*g/2,isNaN(a.right)||(p=-p),q=-m.y*g-m.height*g/2,isNaN(a.bottom)||(q=-q)):p=q=0,z.translate(p,
198
- q,g),z.x=p,z.y=q);z&&(n.push(z),a.image=z,z.setAttr("stroke-opacity",j),z.setAttr("fill-opacity",h),z.setAttr("fill",y));(a.showAsSelected||c.selectedObject==a)&&void 0!=s&&z.setAttr("fill",s);y=null;a.label&&(y=AmCharts.text(d,a.label,a.labelColorReal,c.fontFamily,a.labelFontSizeReal,a.labelAlign),a.imageLabel=y,!a.labelInactive&&a.mouseEnabled&&c.addObjectEventListeners(y,a),n.push(y));!isNaN(a.latitude)&&!isNaN(a.longitude)?f.push(n):e.push(n);n&&(n.rotation=a.rotation);this.updateSizeAndPosition(a);
199
- a.mouseEnabled&&c.addObjectEventListeners(n,a)},updateSizeAndPosition:function(a){var b=this.chart,c=a.displayObject,d=b.getX(a.left),f=b.getY(a.top),e=a.image.getBBox();isNaN(a.right)||(d=b.getX(a.right,!0)-e.width*a.scale);isNaN(a.bottom)||(f=b.getY(a.bottom,!0)-e.height*a.scale);var g=a.longitude,h=a.latitude,e=this.objectsToResize;this.allSvgObjects.push(c);this.allObjects.push(a);var j=a.imageLabel;if(!isNaN(d)&&!isNaN(f))c.translate(d,f);else if(!isNaN(h)&&!isNaN(g)&&(d=b.longitudeToCoordinate(g),
200
- f=b.latitudeToCoordinate(h),c.translate(d,f,NaN,!0),a.fixedSize)){d=1;if(a.showAsSelected||b.selectedObject==a)d=a.selectedScaleReal;e.push({image:c,scale:d})}this.positionLabel(j,a,a.labelPositionReal)},positionLabel:function(a,b,c){if(a){var d=b.image,f=0,e=0,g=0,h=0;d&&(h=d.getBBox(),e=d.y,f=d.x,g=h.width,h=h.height,b.svgPath&&(g*=b.scale,h*=b.scale));var j=a.getBBox(),d=j.width,j=j.height;"right"==c&&(f+=g+d/2+5,e+=h/2-2);"left"==c&&(f+=-d/2-5,e+=h/2-2);"top"==c&&(e-=j/2+3,f+=g/2);"bottom"==c&&
201
- (e+=h+j/2,f+=g/2);"middle"==c&&(f+=g/2,e+=h/2);a.translate(f+b.labelShiftX,e+b.labelShiftY)}},createPredefinedImage:function(a,b,c,d,f,e){var g=this.chart.container,h;switch(d){case "circle":h=AmCharts.circle(g,f/2,a,1,c,b,1);break;case "rectangle":h=AmCharts.rect(g,f,e,a,1,c,b,1);h.translate(-f/2,-e/2);break;case "bubble":h=AmCharts.circle(g,f/2,a,1,c,b,1,!0)}return h},reset:function(){this.objectsToResize=[];this.allSvgObjects=[];this.allObjects=[];this.allLabels=[]}});AmCharts.ImagesSettings=AmCharts.Class({construct:function(){this.balloonText="[[title]]";this.alpha=1;this.borderAlpha=0;this.borderThickness=1;this.labelPosition="right";this.labelColor="#000000";this.labelFontSize=11;this.color="#000000";this.labelRollOverColor="#00CC00";this.centered=!0;this.rollOverScale=this.selectedScale=1;this.descriptionWindowWidth=250}});AmCharts.LinesProcessor=AmCharts.Class({construct:function(a){this.chart=a;this.reset()},process:function(a){var b=a.lines,c=this.chart,d=c.linesSettings,f=this.objectsToResize,e=c.mapObjectsContainer,g=c.stageObjectsContainer,h=d.thickness,j=d.dashLength,l=d.arrow,k=d.arrowSize,m=d.arrowColor,u=d.arrowAlpha,t=d.color,x=d.alpha,p=d.rollOverColor,q=d.selectedColor,r=d.rollOverAlpha,s=d.balloonText,v=c.container,w;for(w=0;w<b.length;w++){var n=b[w];n.chart=c;n.baseSettings=d;var y=v.set();n.displayObject=
202
- y;this.allSvgObjects.push(y);this.allObjects.push(n);n.mouseEnabled&&c.addObjectEventListeners(y,n);if(n.remainVisible||c.selectedObject==n.parentObject){var z=n.thickness;isNaN(z)&&(z=h);var C=n.dashLength;isNaN(C)&&(C=j);var D=n.color;void 0==D&&(D=t);var A=n.alpha;isNaN(A)&&(A=x);var B=n.rollOverAlpha;isNaN(B)&&(B=r);isNaN(B)&&(B=A);var E=n.rollOverColor;void 0==E&&(E=p);var I=n.selectedColor;void 0==I&&(I=q);var G=n.balloonText;G||(G=s);var J=n.arrow;J||(J=l);var K=n.arrowColor;void 0==K&&(K=
203
- m);void 0==K&&(K=D);var L=n.arrowAlpha;isNaN(L)&&(L=u);isNaN(L)&&(L=A);var H=n.arrowSize;isNaN(H)&&(H=k);n.alphaReal=A;n.colorReal=D;n.rollOverColorReal=E;n.rollOverAlphaReal=B;n.balloonTextReal=G;n.selectedColorReal=I;n.thicknessReal=z;AmCharts.processDescriptionWindow(d,n);var B=this.processCoordinates(n.x,c.realWidth),E=this.processCoordinates(n.y,c.realHeight),O=n.longitudes,G=n.latitudes,Q=O.length,M;if(0<Q){B=[];for(M=0;M<Q;M++)B.push(c.longitudeToCoordinate(O[M]))}Q=G.length;if(0<Q){E=[];for(M=
204
- 0;M<Q;M++)E.push(c.latitudeToCoordinate(G[M]))}if(0<B.length){AmCharts.dx=0;AmCharts.dy=0;O=AmCharts.line(v,B,E,D,1,z,C,!1,!1,!0);C=AmCharts.line(v,B,E,D,0.001,3,C,!1,!1,!0);AmCharts.dx=0.5;AmCharts.dy=0.5;y.push(O);y.push(C);y.setAttr("opacity",A);if("none"!=J){var F,N,P;if("end"==J||"both"==J)A=B[B.length-1],C=E[E.length-1],1<B.length?(D=B[B.length-2],F=E[E.length-2]):(D=A,F=C),F=180*Math.atan((C-F)/(A-D))/Math.PI,N=A,P=C,F=0>A-D?F-90:F+90;"both"==J&&(A=AmCharts.polygon(v,[-H/2,0,H/2],[1.5*H,0,
205
- 1.5*H],K,L,1,K,L),y.push(A),A.translate(N,P),A.rotate(F),n.fixedSize&&f.push(A));if("start"==J||"both"==J)A=B[0],P=E[0],1<B.length?(C=B[1],N=E[1]):(C=A,N=P),F=180*Math.atan((P-N)/(A-C))/Math.PI,N=A,F=0>A-C?F-90:F+90;"middle"==J&&(A=B[B.length-1],C=E[E.length-1],1<B.length?(D=B[B.length-2],F=E[E.length-2]):(D=A,F=C),N=D+(A-D)/2,P=F+(C-F)/2,F=180*Math.atan((C-F)/(A-D))/Math.PI,F=0>A-D?F-90:F+90);A=AmCharts.polygon(v,[-H/2,0,H/2],[1.5*H,0,1.5*H],K,L,1,K,L);y.push(A);A.translate(N,P);A.rotate(F);n.fixedSize&&
206
- f.push(A)}n.fixedSize&&O&&this.linesToResize.push({line:O,thickness:z});n.showAsSelected&&!isNaN(I)&&O.setAttr("stroke",I);0<G.length?e.push(y):g.push(y)}}}a.parentObject&&a.remainVisible&&this.process(a.parentObject)},processCoordinates:function(a,b){var c=[],d;for(d=0;d<a.length;d++){var f=a[d],e=Number(f);isNaN(e)&&(e=Number(f.replace("%",""))*b/100);isNaN(e)||c.push(e)}return c},reset:function(){this.objectsToResize=[];this.allSvgObjects=[];this.allObjects=[];this.linesToResize=[]}});AmCharts.LinesSettings=AmCharts.Class({construct:function(){this.balloonText="[[title]]";this.thickness=1;this.dashLength=0;this.arrowSize=10;this.arrowAlpha=1;this.arrow="none";this.color="#990000";this.descriptionWindowWidth=250}});AmCharts.MapObject=AmCharts.Class({construct:function(){this.fixedSize=this.mouseEnabled=!0;this.images=[];this.lines=[];this.areas=[];this.remainVisible=!0;this.passZoomValuesToTarget=!1}});AmCharts.MapArea=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.objectType="MapArea";AmCharts.MapArea.base.construct.call(this)}});AmCharts.MapLine=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.longitudes=[];this.latitudes=[];this.x=[];this.y=[];this.objectType="MapLine";this.arrow="none";AmCharts.MapLine.base.construct.call(this)}});AmCharts.MapImage=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.scale=1;this.widthAndHeightUnits="pixels";this.objectType="MapImage";this.labelShiftY=this.labelShiftX=0;AmCharts.MapImage.base.construct.call(this)},remove:function(){var a=this.displayObject;a&&a.remove();(a=this.imageLabel)&&a.remove()}});AmCharts.degreesToRadians=function(a){return a/180*Math.PI};AmCharts.radiansToDegrees=function(a){return 180*(a/Math.PI)};AmCharts.getColorFade=function(a,b,c){var d=AmCharts.hex2RGB(b);b=d[0];var f=d[1],d=d[2],e=AmCharts.hex2RGB(a);a=e[0];var g=e[1],e=e[2];a+=Math.round((b-a)*c);g+=Math.round((f-g)*c);e+=Math.round((d-e)*c);return"rgb("+a+","+g+","+e+")"};AmCharts.hex2RGB=function(a){return[parseInt(a.substring(1,3),16),parseInt(a.substring(3,5),16),parseInt(a.substring(5,7),16)]};
207
- AmCharts.processDescriptionWindow=function(a,b){var c=a.descriptionWindowX,d=a.descriptionWindowY,f=a.descriptionWindowWidth,e=a.descriptionWindowHeight,g=b.descriptionWindowX;isNaN(g)&&(g=c);c=b.descriptionWindowY;isNaN(c)&&(c=d);d=b.descriptionWindowWidth;isNaN(d)&&(d=f);f=b.descriptionWindowHeight;isNaN(f)&&(f=e);b.descriptionWindowX=g;b.descriptionWindowY=c;b.descriptionWindowWidth=d;b.descriptionWindowHeight=f};AmCharts.MapData=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){AmCharts.MapData.base.construct.call(this);this.projection="mercator";this.topLatitude=90;this.bottomLatitude=-90;this.leftLongitude=-180;this.rightLongitude=180;this.zoomLevel=1;this.objectType="MapData";this.getAreasFromMap=!1}});AmCharts.DescriptionWindow=AmCharts.Class({construct:function(){},show:function(a,b,c,d){var f=this,e=document.createElement("div");e.style.position="absolute";e.className="ammapDescriptionWindow";f.div=e;b.appendChild(e);var g=document.createElement("img");g.className="ammapDescriptionWindowCloseButton";g.src=a.pathToImages+"xIcon.gif";g.style.cssFloat="right";g.onclick=function(){f.close()};g.onmouseover=function(){g.src=a.pathToImages+"xIconH.gif"};g.onmouseout=function(){g.src=a.pathToImages+
208
- "xIcon.gif"};e.appendChild(g);b=document.createElement("div");b.className="ammapDescriptionTitle";b.onmousedown=function(){f.div.style.zIndex=1E3};e.appendChild(b);d=document.createTextNode(d);b.appendChild(d);d=b.offsetHeight;b=document.createElement("div");b.className="ammapDescriptionText";b.style.maxHeight=f.maxHeight-d-20+"px";e.appendChild(b);b.innerHTML=c},close:function(){try{this.div.parentNode.removeChild(this.div)}catch(a){}}});AmCharts.ValueLegend=AmCharts.Class({construct:function(){this.showAsGradient=!1;this.minValue=0;this.height=12;this.width=200;this.bottom=this.left=10;this.borderColor="#FFFFFF";this.borderAlpha=this.borderThickness=1;this.color="#000000";this.fontSize=11},init:function(a,b){var c=a.areasSettings.color,d=a.areasSettings.colorSolid,f=a.colorSteps;AmCharts.remove(this.set);var e=b.set();this.set=e;var g=0,h=this.minValue,j=this.fontSize,l=a.fontFamily,k=this.color;void 0==h&&(h=a.minValueReal);void 0!==
209
- h&&(g=AmCharts.text(b,h,k,l,j,"left"),g.translate(0,j/2-1),e.push(g),g=g.getBBox().height);h=this.maxValue;void 0===h&&(h=a.maxValueReal);void 0!==h&&(g=AmCharts.text(b,h,k,l,j,"right"),g.translate(this.width,j/2-1),e.push(g),g=g.getBBox().height);if(this.showAsGradient)c=AmCharts.rect(b,this.width,this.height,[c,d],1,this.borderThickness,this.borderColor,1,0,0),c.translate(0,g),e.push(c);else{j=this.width/f;for(l=0;l<f;l++)k=AmCharts.getColorFade(c,d,1*l/(f-1)),k=AmCharts.rect(b,j,this.height,k,
210
- 1,this.borderThickness,this.borderColor,1),k.translate(j*l,g),e.push(k)}d=c=0;f=e.getBBox();g=a.getY(this.bottom,!0);j=a.getY(this.top);l=a.getX(this.right,!0);k=a.getX(this.left);isNaN(j)||(c=j);isNaN(g)||(c=g-f.height);isNaN(k)||(d=k);isNaN(l)||(d=l-f.width);e.translate(d,c)}});AmCharts.ObjectList=AmCharts.Class({construct:function(a){this.div="object"!=typeof a?document.getElementById(a):a},init:function(a){this.chart=a;var b=document.createElement("div");b.className="ammapObjectList";this.div.appendChild(b);this.addObjects(a.dataProvider,b)},addObjects:function(a,b){var c=this.chart,d=document.createElement("ul"),f;if(a.areas)for(f=0;f<a.areas.length;f++){var e=a.areas[f];void 0===e.showInList&&(e.showInList=c.showAreasInList);this.addObject(e,d)}if(a.images)for(f=0;f<
211
- a.images.length;f++)e=a.images[f],void 0===e.showInList&&(e.showInList=c.showImagesInList),this.addObject(e,d);if(a.lines)for(f=0;f<a.lines.length;f++)e=a.lines[f],void 0===e.showInList&&(e.showInList=c.showLinesInList),this.addObject(e,d);0<d.childNodes.length&&b.appendChild(d)},addObject:function(a,b){var c=this;if(a.showInList&&void 0!==a.title){var d=document.createElement("li"),f=document.createTextNode(a.title),e=document.createElement("a");e.appendChild(f);d.appendChild(e);b.appendChild(d);
212
- this.addObjects(a,d);e.onmouseover=function(){c.chart.rollOverMapObject(a,!1)};e.onmouseout=function(){c.chart.rollOutMapObject(a)};e.onclick=function(){c.chart.clickMapObject(a)}}}});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/js/ammap/world.js CHANGED
@@ -1,5 +1,5 @@
1
  // (c) ammap.com | SVG (in JSON format) map of World - Low
2
- // areas: {id:"AE"},{id:"AF"},{id:"AL"},{id:"AM"},{id:"AO"},{id:"AR"},{id:"AT"},{id:"AU"},{id:"AZ"},{id:"BA"},{id:"BD"},{id:"BE"},{id:"BF"},{id:"BG"},{id:"BI"},{id:"BJ"},{id:"BN"},{id:"BO"},{id:"BR"},{id:"BS"},{id:"BT"},{id:"BW"},{id:"BY"},{id:"BZ"},{id:"CA"},{id:"CD"},{id:"CF"},{id:"CG"},{id:"CH"},{id:"CI"},{id:"CL"},{id:"CM"},{id:"CN"},{id:"CO"},{id:"CR"},{id:"CU"},{id:"CY"},{id:"CZ"},{id:"DE"},{id:"DJ"},{id:"DK"},{id:"DO"},{id:"DZ"},{id:"EC"},{id:"EE"},{id:"EG"},{id:"ER"},{id:"ES"},{id:"ET"},{id:"FK"},{id:"FI"},{id:"FJ"},{id:"FR"},{id:"GA"},{id:"GB"},{id:"GE"},{id:"GF"},{id:"GH"},{id:"GL"},{id:"GM"},{id:"GN"},{id:"GQ"},{id:"GR"},{id:"GT"},{id:"GW"},{id:"GY"},{id:"HN"},{id:"HR"},{id:"HT"},{id:"HU"},{id:"ID"},{id:"IE"},{id:"IL"},{id:"IN"},{id:"IQ"},{id:"IR"},{id:"IS"},{id:"IT"},{id:"JM"},{id:"JO"},{id:"JP"},{id:"KE"},{id:"KG"},{id:"KH"},{id:"KP"},{id:"KR"},{id:"KV"},{id:"KW"},{id:"KZ"},{id:"LA"},{id:"LB"},{id:"LK"},{id:"LR"},{id:"LS"},{id:"LT"},{id:"LU"},{id:"LV"},{id:"LY"},{id:"MA"},{id:"MD"},{id:"ME"},{id:"MG"},{id:"MK"},{id:"ML"},{id:"MM"},{id:"MN"},{id:"MR"},{id:"MW"},{id:"MX"},{id:"MY"},{id:"MZ"},{id:"NA"},{id:"NC"},{id:"NE"},{id:"NG"},{id:"NI"},{id:"NL"},{id:"NO"},{id:"NP"},{id:"NZ"},{id:"OM"},{id:"PA"},{id:"PE"},{id:"PG"},{id:"PH"},{id:"PK"},{id:"PL"},{id:"PR"},{id:"PS"},{id:"PT"},{id:"PY"},{id:"QA"},{id:"RO"},{id:"RS"},{id:"RU"},{id:"RW"},{id:"SA"},{id:"SB"},{id:"SD"},{id:"SE"},{id:"SI"},{id:"SJ"},{id:"SK"},{id:"SL"},{id:"SN"},{id:"SO"},{id:"SR"},{id:"SS"},{id:"SV"},{id:"SY"},{id:"SZ"},{id:"TD"},{id:"TF"},{id:"TG"},{id:"TH"},{id:"TJ"},{id:"TL"},{id:"TM"},{id:"TN"},{id:"TR"},{id:"TT"},{id:"TW"},{id:"TZ"},{id:"UA"},{id:"UG"},{id:"US"},{id:"UY"},{id:"UZ"},{id:"VE"},{id:"VN"},{id:"VU"},{id:"YE"},{id:"ZA"},{id:"ZM"},{id:"ZW"}
3
  AmCharts.maps.worldLow={
4
  "svg": {
5
  "defs": {
@@ -444,7 +444,7 @@ AmCharts.maps.worldLow={
444
  "d":"M835.13,346.53L837.55,350.71L838.24,352.98L838.26,356.96L837.21,358.84L834.67,359.5L832.43,360.91L829.9,361.2L829.59,359.35L830.11,356.78L828.87,353.18L830.95,352.59L829.03,349.59L829.2,349.27L830.46,349.39L831.55,347.79L833.53,347.62L834.72,347.39z"
445
  },
446
  {
447
- "id":"KV",
448
  "title":"Kosovo",
449
  "d":"M533.47,333.92L533.34,334.69L532.98,334.66L532.8,333.29L532.13,332.91L531.53,331.89L532.05,331.04L532.72,330.76L533.11,329.5L533.61,329.28L534.01,329.82L534.54,330.06L534.9,330.67L535.36,330.85L535.91,331.55L536.31,331.53L535.99,332.46L535.66,332.91L535.75,333.19L535.12,333.33z"
450
  },
1
  // (c) ammap.com | SVG (in JSON format) map of World - Low
2
+ // areas: {id:"AE"},{id:"AF"},{id:"AL"},{id:"AM"},{id:"AO"},{id:"AR"},{id:"AT"},{id:"AU"},{id:"AZ"},{id:"BA"},{id:"BD"},{id:"BE"},{id:"BF"},{id:"BG"},{id:"BI"},{id:"BJ"},{id:"BN"},{id:"BO"},{id:"BR"},{id:"BS"},{id:"BT"},{id:"BW"},{id:"BY"},{id:"BZ"},{id:"CA"},{id:"CD"},{id:"CF"},{id:"CG"},{id:"CH"},{id:"CI"},{id:"CL"},{id:"CM"},{id:"CN"},{id:"CO"},{id:"CR"},{id:"CU"},{id:"CY"},{id:"CZ"},{id:"DE"},{id:"DJ"},{id:"DK"},{id:"DO"},{id:"DZ"},{id:"EC"},{id:"EE"},{id:"EG"},{id:"ER"},{id:"ES"},{id:"ET"},{id:"FK"},{id:"FI"},{id:"FJ"},{id:"FR"},{id:"GA"},{id:"GB"},{id:"GE"},{id:"GF"},{id:"GH"},{id:"GL"},{id:"GM"},{id:"GN"},{id:"GQ"},{id:"GR"},{id:"GT"},{id:"GW"},{id:"GY"},{id:"HN"},{id:"HR"},{id:"HT"},{id:"HU"},{id:"ID"},{id:"IE"},{id:"IL"},{id:"IN"},{id:"IQ"},{id:"IR"},{id:"IS"},{id:"IT"},{id:"JM"},{id:"JO"},{id:"JP"},{id:"KE"},{id:"KG"},{id:"KH"},{id:"KP"},{id:"KR"},{id:"XK"},{id:"KW"},{id:"KZ"},{id:"LA"},{id:"LB"},{id:"LK"},{id:"LR"},{id:"LS"},{id:"LT"},{id:"LU"},{id:"LV"},{id:"LY"},{id:"MA"},{id:"MD"},{id:"ME"},{id:"MG"},{id:"MK"},{id:"ML"},{id:"MM"},{id:"MN"},{id:"MR"},{id:"MW"},{id:"MX"},{id:"MY"},{id:"MZ"},{id:"NA"},{id:"NC"},{id:"NE"},{id:"NG"},{id:"NI"},{id:"NL"},{id:"NO"},{id:"NP"},{id:"NZ"},{id:"OM"},{id:"PA"},{id:"PE"},{id:"PG"},{id:"PH"},{id:"PK"},{id:"PL"},{id:"PR"},{id:"PS"},{id:"PT"},{id:"PY"},{id:"QA"},{id:"RO"},{id:"RS"},{id:"RU"},{id:"RW"},{id:"SA"},{id:"SB"},{id:"SD"},{id:"SE"},{id:"SI"},{id:"SJ"},{id:"SK"},{id:"SL"},{id:"SN"},{id:"SO"},{id:"SR"},{id:"SS"},{id:"SV"},{id:"SY"},{id:"SZ"},{id:"TD"},{id:"TF"},{id:"TG"},{id:"TH"},{id:"TJ"},{id:"TL"},{id:"TM"},{id:"TN"},{id:"TR"},{id:"TT"},{id:"TW"},{id:"TZ"},{id:"UA"},{id:"UG"},{id:"US"},{id:"UY"},{id:"UZ"},{id:"VE"},{id:"VN"},{id:"VU"},{id:"YE"},{id:"ZA"},{id:"ZM"},{id:"ZW"}
3
  AmCharts.maps.worldLow={
4
  "svg": {
5
  "defs": {
444
  "d":"M835.13,346.53L837.55,350.71L838.24,352.98L838.26,356.96L837.21,358.84L834.67,359.5L832.43,360.91L829.9,361.2L829.59,359.35L830.11,356.78L828.87,353.18L830.95,352.59L829.03,349.59L829.2,349.27L830.46,349.39L831.55,347.79L833.53,347.62L834.72,347.39z"
445
  },
446
  {
447
+ "id":"XK",
448
  "title":"Kosovo",
449
  "d":"M533.47,333.92L533.34,334.69L532.98,334.66L532.8,333.29L532.13,332.91L531.53,331.89L532.05,331.04L532.72,330.76L533.11,329.5L533.61,329.28L534.01,329.82L534.54,330.06L534.9,330.67L535.36,330.85L535.91,331.55L536.31,331.53L535.99,332.46L535.66,332.91L535.75,333.19L535.12,333.33z"
450
  },
admin/js/ammap/{world.old.js → worldOld.js} RENAMED
@@ -1,894 +1,894 @@
1
- // (c) ammap.com | SVG (in JSON format) map of World - Low
2
- // areas: {id:"AE"},{id:"AF"},{id:"AL"},{id:"AM"},{id:"AO"},{id:"AR"},{id:"AT"},{id:"AU"},{id:"AZ"},{id:"BA"},{id:"BD"},{id:"BE"},{id:"BF"},{id:"BG"},{id:"BI"},{id:"BJ"},{id:"BN"},{id:"BO"},{id:"BR"},{id:"BS"},{id:"BT"},{id:"BW"},{id:"BY"},{id:"BZ"},{id:"CA"},{id:"CD"},{id:"CF"},{id:"CG"},{id:"CH"},{id:"CI"},{id:"CL"},{id:"CM"},{id:"CN"},{id:"CO"},{id:"CR"},{id:"CU"},{id:"CY"},{id:"CZ"},{id:"DE"},{id:"DJ"},{id:"DK"},{id:"DO"},{id:"DZ"},{id:"EC"},{id:"EE"},{id:"EG"},{id:"ER"},{id:"ES"},{id:"ET"},{id:"FK"},{id:"FI"},{id:"FJ"},{id:"FR"},{id:"GA"},{id:"GB"},{id:"GE"},{id:"GF"},{id:"GH"},{id:"GL"},{id:"GM"},{id:"GN"},{id:"GQ"},{id:"GR"},{id:"GT"},{id:"GW"},{id:"GY"},{id:"HN"},{id:"HR"},{id:"HT"},{id:"HU"},{id:"ID"},{id:"IE"},{id:"IL"},{id:"IN"},{id:"IQ"},{id:"IR"},{id:"IS"},{id:"IT"},{id:"JM"},{id:"JO"},{id:"JP"},{id:"KE"},{id:"KG"},{id:"KH"},{id:"KP"},{id:"KR"},{id:"KV"},{id:"KW"},{id:"KZ"},{id:"LA"},{id:"LB"},{id:"LK"},{id:"LR"},{id:"LS"},{id:"LT"},{id:"LU"},{id:"LV"},{id:"LY"},{id:"MA"},{id:"MD"},{id:"ME"},{id:"MG"},{id:"MK"},{id:"ML"},{id:"MM"},{id:"MN"},{id:"MR"},{id:"MW"},{id:"MX"},{id:"MY"},{id:"MZ"},{id:"NA"},{id:"NC"},{id:"NE"},{id:"NG"},{id:"NI"},{id:"NL"},{id:"NO"},{id:"NP"},{id:"NZ"},{id:"OM"},{id:"PA"},{id:"PE"},{id:"PG"},{id:"PH"},{id:"PK"},{id:"PL"},{id:"PR"},{id:"PS"},{id:"PT"},{id:"PY"},{id:"QA"},{id:"RO"},{id:"RS"},{id:"RU"},{id:"RW"},{id:"SA"},{id:"SB"},{id:"SD"},{id:"SE"},{id:"SI"},{id:"SJ"},{id:"SK"},{id:"SL"},{id:"SN"},{id:"SO"},{id:"SR"},{id:"SS"},{id:"SV"},{id:"SY"},{id:"SZ"},{id:"TD"},{id:"TF"},{id:"TG"},{id:"TH"},{id:"TJ"},{id:"TL"},{id:"TM"},{id:"TN"},{id:"TR"},{id:"TT"},{id:"TW"},{id:"TZ"},{id:"UA"},{id:"UG"},{id:"US"},{id:"UY"},{id:"UZ"},{id:"VE"},{id:"VN"},{id:"VU"},{id:"YE"},{id:"ZA"},{id:"ZM"},{id:"ZW"}
3
- AmCharts.maps.worldLow={
4
- "svg": {
5
- "defs": {
6
- "amcharts:ammap": {
7
- "projection":"mercator",
8
- "leftLongitude":"-169.522279",
9
- "topLatitude":"83.646363",
10
- "rightLongitude":"190.122401",
11
- "bottomLatitude":"-55.621433"
12
- }
13
- },
14
- "g":{
15
- "path":[
16
- {
17
- "id":"AE",
18
- "title":"United Arab Emirates",
19
- "d":"M619.87,393.72L620.37,393.57L620.48,394.41L622.67,393.93L624.99,394.01L626.68,394.1L628.6,392.03L630.7,390.05L632.47,388.15L633,389.2L633.38,391.64L631.95,391.65L631.72,393.65L632.22,394.07L630.95,394.67L630.94,395.92L630.12,397.18L630.05,398.39L629.48,399.03L621.06,397.51L619.98,394.43z"
20
- },
21
- {
22
- "id":"AF",
23
- "title":"Afghanistan",
24
- "d":"M646.88,356.9L649.74,358.2L651.85,357.74L652.44,356.19L654.65,355.67L656.23,354.62L656.79,351.83L659.15,351.15L659.59,349.9L660.92,350.84L661.76,350.95L663.32,350.98L665.44,351.72L666.29,352.14L668.32,351.02L669.27,351.69L670.17,350.09L671.85,350.16L672.28,349.64L672.58,348.21L673.79,346.98L675.3,347.78L675,348.87L675.85,349.04L675.58,351.99L676.69,353.14L677.67,352.4L678.92,352.06L680.66,350.49L682.59,350.75L685.49,350.75L685.99,351.76L684.35,352.15L682.93,352.8L679.71,353.2L676.7,353.93L675.06,355.44L675.72,356.9L676.05,358.6L674.65,360.03L674.77,361.33L674,362.55L671.33,362.44L672.43,364.66L670.65,365.51L669.46,367.51L669.61,369.49L668.51,370.41L667.48,370.11L665.33,370.54L665.03,371.45L662.94,371.45L661.38,373.29L661.28,376.04L657.63,377.37L655.68,377.09L655.11,377.79L653.44,377.39L650.63,377.87L645.94,376.23L648.48,373.3L648.25,371.2L646.13,370.65L645.91,368.56L644.99,365.92L646.19,364.09L644.97,363.6L645.74,361.15z"
25
- },
26
- {
27
- "id":"AL",
28
- "title":"Albania",
29
- "d":"M532.98,334.66L532.63,335.93L533.03,337.52L534.19,338.42L534.13,339.39L533.22,339.93L533.05,341.12L531.75,342.88L531.27,342.63L531.22,341.83L529.66,340.6L529.42,338.85L529.66,336.32L530.04,335.16L529.57,334.57L529.38,333.38L530.6,331.51L530.77,332.23L531.53,331.89L532.13,332.91L532.8,333.29z"
30
- },
31
- {
32
- "id":"AM",
33
- "title":"Armenia",
34
- "d":"M597.45,337.5L601.35,336.92L601.93,337.9L603,338.54L602.43,339.46L603.93,340.72L603.14,341.88L604.33,342.87L605.59,343.46L605.65,345.96L604.63,346.06L603.49,343.98L603.5,343.43L602.26,343.44L601.43,342.46L600.85,342.56L599.74,341.5L597.66,340.59L597.93,338.8z"
35
- },
36
- {
37
- "id":"AO",
38
- "title":"Angola",
39
- "d":"M521.03,479.78l0.69,2.09l0.8,1.68l0.64,0.91l1.07,1.47l1.85,-0.23l0.93,-0.4l1.55,0.4l0.42,-0.7l0.7,-1.64l1.74,-0.11l0.15,-0.49l1.43,-0.01l-0.24,1.01l3.4,-0.02l0.05,1.77l0.57,1.09l-0.41,1.7l0.21,1.74l0.94,1.05l-0.15,3.37l0.69,-0.26l1.22,0.07l1.74,-0.42l1.28,0.17l0.3,0.88l-0.32,1.38l0.49,1.34l-0.42,1.07l0.24,0.99l-5.84,-0.04l-0.13,9.16l1.89,2.38l1.83,1.82l-5.15,1.19l-6.79,-0.41l-1.94,-1.4l-11.37,0.13l-0.42,0.21L513,511.4l-1.82,-0.09l-1.68,0.5l-1.35,0.56l-0.26,-1.83l0.39,-2.55l0.97,-2.65l0.15,-1.24l0.91,-2.59l0.67,-1.17l1.61,-1.87l0.9,-1.27l0.29,-2.11l-0.15,-1.61l-0.84,-1.01l-0.75,-1.72l-0.69,-1.69l0.15,-0.59l0.86,-1.12l-0.85,-2.72l-0.57,-1.88l-1.4,-1.77l0.27,-0.54l1.16,-0.38l0.81,0.05l0.98,-0.34L521.03,479.78zM510.12,479.24l-0.71,0.3l-0.75,-2.1l1.13,-1.21l0.85,-0.47l1.05,0.96l-1.02,0.59l-0.46,0.72L510.12,479.24z"
40
- },
41
- {
42
- "id":"AR",
43
- "title":"Argentina",
44
- "d":"M291.6,648.91l-2.66,0.25l-1.43,-1.73l-1.69,-0.13h-3v-10.57l1.08,2.15l1.4,3.53l3.65,2.87l3.93,1.21L291.6,648.91zM293.1,526.47l1.65,2.18l1.09,-2.43l3.2,0.12l0.45,0.64l5.15,4.94l2.29,0.46l3.43,2.26l2.89,1.2l0.4,1.36l-2.76,4.73l2.83,0.85l3.15,0.48l2.22,-0.5l2.54,-2.4l0.46,-2.74l1.39,-0.59l1.41,1.79l-0.06,2.49l-2.36,1.73l-1.88,1.28l-3.16,3.08l-3.74,4.37l-0.7,2.59l-0.75,3.37l0.03,3.3l-0.61,0.74l-0.22,2.17l-0.19,1.76l3.56,2.91l-0.38,2.37l1.75,1.51l-0.14,1.7l-2.69,4.52l-4.16,1.91l-5.62,0.75l-3.08,-0.36l0.59,2.15l-0.57,2.72l0.52,1.85l-1.68,1.3l-2.87,0.51l-2.7,-1.35l-1.08,0.97l0.39,3.71l1.89,1.14l1.54,-1.19l0.84,1.96l-2.58,1.18l-2.25,2.38l-0.41,3.91l-0.66,2.11l-2.65,0.01l-2.2,2.04l-0.8,3.01l2.76,2.98l2.68,0.83l-0.96,3.73l-3.31,2.38l-1.82,5.03l-2.56,1.72l-1.15,2.06l0.91,4.64l1.87,2.63l-1.18,-0.23l-2.6,-0.71l-6.78,-0.61l-1.16,-2.63l0.05,-3.33l-1.87,0.28l-0.99,-1.6l-0.25,-4.6l2.15,-1.88l0.89,-2.68l-0.33,-2.11l1.49,-3.52l1.02,-5.35l-0.3,-2.33l1.22,-0.75l-0.3,-1.48l-1.3,-0.78l0.92,-1.63l-1.27,-1.46l-0.65,-4.4l1.13,-0.77l-0.47,-4.54l0.66,-3.75l0.75,-3.22l1.68,-1.3l-0.85,-3.46l-0.01,-3.22l2.12,-2.26l-0.06,-2.87l1.6,-3.31l0.01,-3.09l-0.73,-0.61l-1.29,-5.69l1.73,-3.34l-0.27,-3.11l1,-2.9l1.84,-2.96l1.98,-1.95l-0.84,-1.23l0.59,-1l-0.09,-5.14l3.05,-1.51l0.96,-3.16l-0.34,-0.76l2.34,-2.72L293.1,526.47z"
45
- },
46
- {
47
- "id":"AT",
48
- "title":"Austria",
49
- "d":"M522.86,309.85L522.65,311.56L521.07,311.57L521.61,312.46L520.68,315.11L520.15,315.8L517.7,315.9L516.28,316.82L513.96,316.51L509.95,315.46L509.33,314.03L506.56,314.75L506.23,315.52L504.53,314.94L503.1,314.83L501.83,314.09L502.26,313.08L502.15,312.34L503,312.12L504.42,313.26L504.82,312.17L507.29,312.35L509.3,311.61L510.64,311.73L511.51,312.58L511.78,311.88L511.38,309.16L512.39,308.62L513.37,306.67L515.46,308.04L517.03,306.3L518.02,305.98L520.2,307.28L521.51,307.06L522.81,307.86L522.58,308.4z"
50
- },
51
- {
52
- "id":"AU",
53
- "title":"Australia",
54
- "d":"M882.93,588.16l2.71,1.28l1.53,-0.51l2.19,-0.71l1.68,0.25l0.2,4.43l-0.96,1.3l-0.29,3.06l-0.98,-1.05l-1.95,2.67l-0.58,-0.21l-1.72,-0.12l-1.73,-3.28l-0.38,-2.5l-1.62,-3.25l0.07,-1.7L882.93,588.16zM877.78,502.1l1.01,2.25l1.8,-1.08l0.93,1.22l1.35,1.13l-0.29,1.28l0.6,2.48l0.43,1.45l0.71,0.35l0.76,2.5l-0.27,1.52l0.91,1.99l3.04,1.54l1.98,1.41l1.88,1.29l-0.37,0.72l1.6,1.87l1.09,3.25l1.12,-0.66l1.14,1.31l0.69,-0.46l0.48,3.21l1.99,1.87l1.3,1.17l2.19,2.49l0.79,2.49l0.07,1.77l-0.19,1.94l1.34,2.68l-0.16,2.81l-0.49,1.48l-0.76,2.87l0.06,1.86l-0.55,2.34l-1.24,3l-2.08,1.63l-1.02,2.59l-0.94,1.67l-0.83,2.93l-1.08,1.71l-0.71,2.58l-0.36,2.4l0.14,1.11l-1.61,1.22l-3.14,0.13l-2.59,1.45l-1.29,1.38l-1.69,1.54l-2.32,-1.58l-1.72,-0.63l0.44,-1.85l-1.53,0.67l-2.46,2.58l-2.42,-0.97l-1.59,-0.56l-1.6,-0.25l-2.71,-1.03l-1.81,-2.18l-0.52,-2.66l-0.65,-1.75l-1.38,-1.4l-2.7,-0.41l0.92,-1.66l-0.68,-2.52l-1.37,2.35l-2.5,0.63l1.47,-1.88l0.42,-1.95l1.08,-1.65l-0.22,-2.47l-2.28,2.85l-1.75,1.15l-1.07,2.69l-2.19,-1.4l0.09,-1.79l-1.75,-2.43l-1.48,-1.25l0.53,-0.77l-3.6,-2l-1.97,-0.09l-2.7,-1.6l-5.02,0.31l-3.63,1.18l-3.19,1.1l-2.68,-0.22l-2.97,1.7l-2.43,0.77l-0.54,1.75l-1.04,1.36l-2.38,0.08l-1.76,0.3l-2.48,-0.61l-2.02,0.37l-1.92,0.15l-1.67,1.8l-0.82,-0.15l-1.41,0.96l-1.35,1.08l-2.05,-0.13h-1.88l-2.97,-2.17l-1.51,-0.64l0.06,-1.93l1.39,-0.46l0.48,-0.76l-0.1,-1.2l0.34,-2.3l-0.31,-1.95l-1.48,-3.29l-0.46,-1.85l0.12,-1.83l-1.12,-2.08l-0.07,-0.93l-1.24,-1.26l-0.35,-2.47l-1.6,-2.48l-0.39,-1.33l1.23,1.35l-0.95,-2.88l1.39,0.9l0.83,1.2l-0.05,-1.59l-1.39,-2.43l-0.27,-0.97l-0.65,-0.92l0.3,-1.77l0.57,-0.75l0.38,-1.52l-0.3,-1.77l1.16,-2.17l0.21,2.29l1.18,-2.07l2.28,-1l1.37,-1.28l2.14,-1.1l1.27,-0.23l0.77,0.37l2.21,-1.11l1.7,-0.33l0.42,-0.65l0.74,-0.27l1.55,0.07l2.95,-0.87l1.52,-1.31l0.72,-1.58l1.64,-1.49l0.13,-1.17l0.07,-1.59l1.96,-2.47l1.18,2.51l1.19,-0.58l-1,-1.38l0.88,-1.41l1.24,0.63l0.34,-2.21l1.53,-1.42l0.68,-1.14l1.41,-0.49l0.04,-0.8l1.23,0.34l0.05,-0.72l1.23,-0.41l1.36,-0.39l2.07,1.32l1.56,1.71l1.75,0.02l1.78,0.27l-0.59,-1.58l1.34,-2.3l1.26,-0.75l-0.44,-0.71l1.22,-1.63l1.7,-1.01l1.43,0.34l2.36,-0.54l-0.05,-1.45l-2.05,-0.94l1.49,-0.41l1.86,0.7l1.49,1.17l2.36,0.73l0.8,-0.29l1.74,0.88l1.64,-0.82l1.05,0.25l0.66,-0.55l1.29,1.41l-0.75,1.53l-1.06,1.16l-0.96,0.1l0.33,1.15l-0.82,1.43l-1,1.41l0.2,0.81l2.23,1.6l2.16,0.93l1.44,1l2.03,1.72h0.79l1.47,0.75l0.43,0.9l2.68,0.99l1.85,-1l0.55,-1.57l0.57,-1.29l0.35,-1.59l0.85,-2.3l-0.39,-1.39l0.2,-0.84l-0.32,-1.64l0.37,-2.16l0.54,-0.58l-0.44,-0.95l0.68,-1.51l0.53,-1.56l0.07,-0.81l1.04,-1.06l0.79,1.39l0.19,1.78l0.7,0.34l0.12,1.2l1.02,1.45l0.21,1.62L877.78,502.1z"
55
- },
56
- {
57
- "id":"AZ",
58
- "title":"Azerbaijan",
59
- "d":"M601.43,342.46l0.83,0.97l1.24,-0.01l-0.01,0.56l1.14,2.08l-1.92,-0.48l-1.42,-1.66l-0.44,-1.37L601.43,342.46zM608.08,337.03l1.24,0.25l0.48,-0.95l1.67,-1.51l1.47,1.97l1.43,2.62l1.31,0.17l0.86,0.99l-2.31,0.29l-0.49,2.82l-0.48,1.26l-1.03,0.84l0.08,1.77l-0.7,0.18l-1.75,-1.87l0.97,-1.78l-0.83,-1.06l-1.05,0.27l-3.31,2.66l-0.06,-2.5l-1.26,-0.59l-1.19,-0.99l0.79,-1.16l-1.49,-1.26l0.56,-0.92l-1.07,-0.64l-0.58,-0.97l0.69,-0.61l2.09,1.07l1.51,0.22l0.38,-0.43l-1.38,-2.02l0.73,-0.52l0.79,0.13L608.08,337.03z"
60
- },
61
- {
62
- "id":"BA",
63
- "title":"Bosnia and Herzegovina",
64
- "d":"M528.54,323.11L529.56,323.1L528.86,324.82L530.21,326.32L529.8,328.14L529.14,328.31L528.61,328.67L527.7,329.56L527.29,331.66L524.81,330.22L523.75,328.61L522.68,327.76L521.39,326.31L520.79,325.1L519.41,323.27L520,321.63L521.01,322.54L521.61,321.72L522.92,321.63L525.33,322.29L527.27,322.23z"
65
- },
66
- {
67
- "id":"BD",
68
- "title":"Bangladesh",
69
- "d":"M735.09,400.41L735.04,402.56L734.06,402.1L734.24,404.51L733.44,402.95L733.28,401.43L732.74,399.98L731.57,398.22L728.99,398.1L729.25,399.35L728.37,401.02L727.17,400.41L726.76,400.96L725.97,400.63L724.89,400.36L724.45,397.88L723.48,395.6L723.95,393.76L722.23,392.94L722.85,391.82L724.6,390.67L722.58,389.04L723.57,386.93L725.79,388.27L727.13,388.43L727.38,390.58L730.04,391L732.65,390.95L734.26,391.48L732.97,394.07L731.71,394.25L730.85,395.98L732.38,397.56L732.84,395.62L733.62,395.61z"
70
- },
71
- {
72
- "id":"BE",
73
- "title":"Belgium",
74
- "d":"M484.55,295.91L486.6,296.26L489.2,295.33L490.97,297.28L492.52,298.32L492.2,301.29L491.47,301.45L491.16,303.88L488.71,301.91L487.27,302.25L485.31,300.19L484.01,298.42L482.71,298.35L482.3,296.79z"
75
- },
76
- {
77
- "id":"BF",
78
- "title":"Burkina Faso",
79
- "d":"M467.33,436.4L465.41,435.67L464.09,435.78L463.11,436.49L461.85,435.89L461.36,434.96L460.1,434.34L459.91,432.7L460.68,431.49L460.61,430.53L462.84,428.17L463.25,426.21L464.02,425.51L465.38,425.89L466.55,425.31L466.93,424.57L469.11,423.29L469.64,422.39L472.26,421.19L473.81,420.78L474.51,421.33L476.3,421.32L476.08,422.72L476.46,424.03L478.04,425.9L478.12,427.28L481.36,427.93L481.29,429.88L480.68,430.74L479.31,431L478.74,432.24L477.78,432.56L475.32,432.5L474.02,432.28L473.12,432.74L471.88,432.53L467.01,432.66L466.94,434.27z"
80
- },
81
- {
82
- "id":"BG",
83
- "title":"Bulgaria",
84
- "d":"M538.78,325.56L539.59,327.16L540.67,326.87L542.83,327.48L546.95,327.68L548.34,326.69L551.64,325.79L553.68,327.2L555.33,327.61L553.87,329.2L552.85,331.93L553.75,334.09L551.34,333.58L548.48,334.76L548.45,336.62L545.9,336.97L543.93,335.67L541.68,336.7L539.61,336.59L539.41,334.12L538,332.91L538.47,332.37L538.16,331.92L538.63,330.71L539.7,329.52L538.34,327.86L538.09,326.44z"
85
- },
86
- {
87
- "id":"BI",
88
- "title":"Burundi",
89
- "d":"M557.52,475.93L557.34,472.56L556.63,471.3L558.34,471.52L559.2,469.93L560.69,470.11L560.85,471.21L561.45,471.84L561.48,472.75L560.79,473.33L559.69,474.79L558.68,475.8z"
90
- },
91
- {
92
- "id":"BJ",
93
- "title":"Benin",
94
- "d":"M482.8,445.92L480.48,446.25L479.79,444.31L479.92,437.85L479.35,437.27L479.25,435.88L478.27,434.89L477.42,434.06L477.78,432.56L478.74,432.24L479.31,431L480.68,430.74L481.29,429.88L482.23,429.05L483.24,429.04L485.38,430.68L485.27,431.63L485.9,433.31L485.35,434.45L485.64,435.21L484.28,436.96L483.42,437.83L482.89,439.6L482.96,441.39z"
95
- },
96
- {
97
- "id":"BN",
98
- "title":"Brunei Darussalam",
99
- "d":"M795.46,450.77L796.57,449.72L798.96,448.19L798.83,449.57L798.67,451.35L797.33,451.26L796.74,452.21z"
100
- },
101
- {
102
- "id":"BO",
103
- "title":"Bolivia",
104
- "d":"M299.04,526.35L295.84,526.22L294.75,528.65L293.1,526.47L289.43,525.74L287.1,528.46L285.07,528.87L283.97,524.72L282.47,521.38L283.35,518.51L281.88,517.26L281.51,515.14L280.13,513.14L281.9,510L280.69,507.56L281.34,506.59L280.83,505.52L281.93,504.08L281.99,501.64L282.12,499.62L282.73,498.66L280.3,494.08L282.39,494.32L283.83,494.25L284.46,493.4L286.91,492.25L288.38,491.19L292.05,490.71L291.76,492.83L292.1,493.92L291.87,495.82L294.92,498.37L298.06,498.84L299.16,499.91L301.06,500.48L302.22,501.31L303.98,501.28L305.61,502.13L305.73,503.79L306.28,504.63L306.32,505.88L305.5,505.92L306.58,509.29L311.95,509.41L311.54,511.09L311.84,512.24L313.37,513.06L314.04,514.88L313.54,517.2L312.77,518.49L313.04,520.18L312.16,520.79L312.12,519.88L309.5,518.37L306.9,518.32L302.01,519.18L300.67,521.8L300.6,523.4L299.49,526.99z"
105
- },
106
- {
107
- "id":"BR",
108
- "title":"Brazil",
109
- "d":"M313.68,551.79L317.42,547.42L320.59,544.34L322.47,543.06L324.83,541.33L324.89,538.84L323.48,537.05L322.09,537.64L322.64,535.86L323.02,534.04L323.02,532.36L322.01,531.81L320.96,532.3L319.92,532.17L319.59,530.99L319.33,528.22L318.8,527.32L316.91,526.5L315.77,527.09L312.81,526.51L312.99,522.45L312.16,520.79L313.04,520.18L312.77,518.49L313.54,517.2L314.04,514.88L313.37,513.06L311.84,512.24L311.54,511.09L311.95,509.41L306.58,509.29L305.5,505.92L306.32,505.88L306.28,504.63L305.73,503.79L305.61,502.13L303.98,501.28L302.22,501.31L301.06,500.48L299.16,499.91L298.06,498.84L294.92,498.37L291.87,495.82L292.1,493.92L291.76,492.83L292.05,490.71L288.38,491.19L286.91,492.25L284.46,493.4L283.83,494.25L282.39,494.32L280.3,494.08L278.72,494.57L277.44,494.24L277.63,489.94L275.33,491.6L272.86,491.53L271.8,490.02L269.94,489.86L270.53,488.65L268.97,486.93L267.8,484.4L268.54,483.89L268.54,482.7L270.24,481.89L269.96,480.38L270.67,479.4L270.88,478.1L274.08,476.19L276.38,475.66L276.75,475.24L279.28,475.37L280.54,467.72L280.61,466.51L280.17,464.92L278.93,463.9L278.94,461.88L280.52,461.42L281.08,461.71L281.17,460.64L279.53,460.35L279.5,458.61L284.96,458.67L285.89,457.71L286.67,458.59L287.21,460.24L287.74,459.89L289.29,461.37L291.47,461.19L292.01,460.33L294.09,459.68L295.25,459.23L295.57,458.05L297.58,457.25L297.42,456.67L295.05,456.43L294.66,454.67L294.77,452.8L293.52,452.08L294.04,451.82L296.12,452.18L298.35,452.88L299.16,452.22L301.17,451.78L304.31,450.74L305.34,449.67L304.96,448.88L306.42,448.76L307.08,449.4L306.71,450.63L307.67,451.05L308.32,452.35L307.54,453.33L307.09,455.71L307.81,457.12L308.01,458.41L309.74,459.71L311.12,459.85L311.43,459.31L312.31,459.19L313.58,458.7L314.49,457.96L316.04,458.19L316.72,458.09L318.25,458.32L318.5,457.75L318.03,457.2L318.31,456.39L319.44,456.64L320.77,456.35L322.37,456.94L323.6,457.52L324.47,456.76L325.09,456.88L325.48,457.67L326.82,457.47L327.89,456.41L328.75,454.35L330.41,451.8L331.37,451.67L332.06,453.21L333.63,458.09L335.13,458.55L335.21,460.47L333.1,462.76L333.97,463.6L338.93,464.04L339.03,466.83L341.16,465L344.69,466.01L349.34,467.71L350.71,469.34L350.25,470.88L353.51,470.02L358.97,471.5L363.16,471.39L367.3,473.7L370.88,476.83L373.04,477.63L375.44,477.75L376.46,478.63L377.41,482.2L377.88,483.89L376.76,488.55L375.33,490.39L371.38,494.33L369.59,497.54L367.52,500.02L366.82,500.08L366.03,502.18L366.23,507.58L365.45,512.06L365.15,513.99L364.27,515.14L363.77,519.08L360.93,522.96L360.45,526.05L358.18,527.36L357.52,529.17L354.48,529.16L350.07,530.33L348.09,531.68L344.95,532.57L341.65,535.01L339.28,538.07L338.87,540.39L339.34,542.12L338.81,545.3L338.18,546.85L336.22,548.6L333.11,554.28L330.64,556.87L328.73,558.41L327.46,561.57L325.6,563.48L324.82,561.58L326.06,560.01L324.44,557.76L322.24,555.94L319.35,553.86L318.31,553.95L315.5,551.45z"
110
- },
111
- {
112
- "id":"BS",
113
- "title":"Bahamas",
114
- "d":"M257.86,395.2l-0.69,0.15l-0.71,-1.76l-1.05,-0.89l0.61,-1.95l0.84,0.12l0.98,2.55L257.86,395.2zM257.06,386.51l-3.06,0.5l-0.2,-1.15l1.32,-0.25l1.85,0.09L257.06,386.51zM259.36,386.48l-0.48,2.21l-0.52,-0.4l0.05,-1.63l-1.26,-1.23l-0.01,-0.36L259.36,386.48z"
115
- },
116
- {
117
- "id":"BT",
118
- "title":"Bhutan",
119
- "d":"M732.36,382.78L733.5,383.78L733.3,385.71L731.01,385.8L728.65,385.59L726.88,386.08L724.33,384.89L724.28,384.26L726.13,381.92L727.64,381.12L729.65,381.85L731.13,381.93z"
120
- },
121
- {
122
- "id":"BW",
123
- "title":"Botswana",
124
- "d":"M547.17,515.95L547.73,516.47L548.62,518.18L551.79,521.43L552.99,521.75L553,522.8L553.82,524.7L555.99,525.16L557.78,526.52L553.81,528.74L551.29,531L550.36,533.03L549.52,534.18L547.99,534.43L547.5,535.9L547.21,536.86L545.42,537.58L543.14,537.43L541.8,536.57L540.62,536.19L539.25,536.91L538.56,538.39L537.23,539.32L535.83,540.71L533.82,541.03L533.2,539.94L533.46,538.04L531.79,535.11L531.04,534.65L531.04,525.79L533.8,525.68L533.88,515.11L535.97,515.02L540.29,513.99L541.37,515.2L543.15,514.05L544.01,514.04L545.59,513.38L546.09,513.6z"
125
- },
126
- {
127
- "id":"BY",
128
- "title":"Belarus",
129
- "d":"M541.1,284.07L543.81,284.11L546.85,282.31L547.5,279.59L549.8,278.02L549.54,275.82L551.24,274.98L554.26,273.05L557.21,274.31L557.61,275.54L559.08,274.95L561.82,276.13L562.09,278.44L561.49,279.76L563.25,282.91L564.39,283.78L564.22,284.64L566.11,285.47L566.92,286.72L565.83,287.74L563.57,287.58L563.03,288.02L563.69,289.56L564.38,292.49L561.97,292.76L561.11,293.76L560.92,296.02L559.81,295.59L557.28,295.81L556.54,294.76L555.49,295.54L554.44,294.89L552.23,294.8L549.1,293.72L546.27,293.36L544.1,293.46L542.56,294.69L541.22,294.86L541.17,292.85L540.3,290.73L541.98,289.79L542,287.94L541.22,286.16z"
130
- },
131
- {
132
- "id":"BZ",
133
- "title":"Belize",
134
- "d":"M225.31,412.96L225.29,412.53L225.63,412.39L226.14,412.74L227.14,410.97L227.67,410.93L227.68,411.36L228.21,411.37L228.17,412.17L227.71,413.44L227.96,413.89L227.67,414.94L227.84,415.21L227.52,416.68L226.97,417.46L226.46,417.55L225.9,418.55L225.07,418.55L225.29,415.27z"
135
- },
136
- {
137
- "id":"CA",
138
- "title":"Canada",
139
- "d":"M198.93,96.23l-0.22,-5.9l3.63,0.58l1.63,0.96l3.35,4.92l-0.76,4.97l-4.15,2.77l-2.28,-3.12L198.93,96.23zM212.14,108.88l0.33,-1.49l-1.97,-2.45l-5.65,-0.19l0.75,3.68l5.25,0.83L212.14,108.88zM248.49,155.83l3.08,5.1l0.81,0.57l3.07,-1.27l3.02,0.2l2.98,0.28l-0.25,-2.64l-4.84,-5.38l-6.42,-1.08l-1.35,0.67L248.49,155.83zM183.06,93.13l-2.71,4.19l6.24,0.52l4.61,4.44l4.58,1.5l-1.09,-5.68l-2.14,-6.73l-7.58,-5.35l-5.5,-2.04l0.2,5.69L183.06,93.13zM208.96,82.89l5.13,-0.12l-2.22,4l-0.04,5.3l3.01,5.76l5.81,1.77l4.96,-0.99l5.18,-10.73l3.85,-4.45l-3.38,-4.97l-2.21,-10.65l-4.6,-3.19l-4.72,-3.68l-3.58,-9.56l-6.52,0.94l1.23,4.15l-2.87,1.25l-1.94,5.32l-1.94,7.46l1.78,7.26L208.96,82.89zM145.21,136.27l3.92,1.95l12.67,-1.3l-5.82,4.77l0.36,3.43l4.26,-0.24l7.07,-4.58l9.5,-1.67l1.71,-5.22l-0.49,-5.57l-2.94,-0.5l-2.5,1.93l-1.1,-4.13l-0.95,-5.7l-2.9,-1.42l-2.57,4.41l4.01,11.05l-4.9,-0.85l-4.98,-6.79l-7.89,-4l-2.64,3.32L145.21,136.27zM167.77,94.21l-3.65,-2.9l-1.5,-0.66l-2.88,4.28l-0.05,2l4.66,0.01L167.77,94.21zM166.31,106.56l0.93,-3.99l-3.95,-2.12l-4.09,1.39l-2.27,4.26l4.16,4.21L166.31,106.56zM195.4,139.8l4.62,-1.11l1.28,-8.25l-0.09,-5.95l-2.14,-5.56l-0.22,1.6l-3.94,-0.7l-4.22,4.09l-3.02,-0.37l0.18,8.92l4.6,-0.87l-0.06,6.47L195.4,139.8zM192.12,185.41l-5.06,-3.93l-4.71,-4.21l-0.87,-6.18l-1.76,-8.92l-3.14,-3.84l-2.79,-1.55l-2.47,1.42l1.99,9.59l-1.41,3.73l-2.29,-8.98l-2.56,-3.11l-3.17,4.81l-3.9,-4.76l-6.24,2.87l1.4,-4.46l-2.87,-1.87l-7.51,5.84l-1.95,3.71l-2.35,6.77l4.9,2.32l4.33,-0.12l-6.5,3.46l1.48,3.13l3.98,0.17l5.99,-0.67l5.42,1.96l-3.66,1.44l-3.95,-0.37l-4.33,1.41l-1.87,0.87l3.45,6.35l2.49,-0.88l3.83,2.15l1.52,3.65l4.99,-0.73l7.1,-1.16l5.26,-2.65l3.26,-0.48l4.82,2.12l5.07,1.22l0.94,-2.86l-1.79,-3.05l4.6,-0.64L192.12,185.41zM199.86,184.43l-1.96,3.54l-2.47,2.49l3.83,3.54l2.28,-0.85l3.78,2.36l1.74,-2.73l-1.71,-3.03l-0.84,-1.53l-1.68,-1.46L199.86,184.43zM182.25,154.98l-2.13,-2.17l-3.76,0.4l-0.95,1.38l4.37,6.75L182.25,154.98zM210.94,168.15l3.01,-6.93l3.34,-1.85l4.19,-8.74l-5.36,-2.47l-5.84,-0.36l-2.78,2.77l-1.47,4.23l-0.04,4.82l1.75,8.19L210.94,168.15zM228.09,145.15l5.76,-0.18l8.04,-1.61l3.59,1.28l4.18,-2.26l1.75,-2.84l-0.63,-4.52l-3,-4.23l-4.56,-0.8l-5.71,0.97l-4.46,2.44l-4.09,-0.94l-3.78,-0.5l-1.78,-2.7l-3.22,-2.61l0.64,-4.43l-2.42,-3.98l-5.52,0.03l-3.11,-3.99l-5.78,-0.8l-1.06,5.1l3.25,3.74l5.8,1.45l2.81,5.09l0.34,5.6l0.97,5.99l7.45,3.42L228.09,145.15zM139.07,126.88l5.21,-5.05l2.62,-0.59l2.16,-4.23l0.38,-9.77l-3.85,1.91l-4.3,-0.18l-5.76,8.19l-4.76,8.98l3.8,2.51L139.07,126.88zM211.25,143.05l1.53,-4.14l-1.02,-3.46l-2.45,-3.92l-4.03,3.02l-1.49,4.92l3.4,2.79L211.25,143.05zM202.94,154.49l-0.73,-2.88l-5,1.26l-3.34,-2.11l-3.32,4.8l3.09,6.28l-5.72,-1.17l-0.06,3.01l6.97,7.05l1.94,3.38l2.7,0.73l4.6,-3.41l0.5,-8.21l-4.24,-4.07L202.94,154.49zM128.95,308.23l-1.16,-2.34l-2.8,-1.77l-1.39,-2.05l-0.95,-1.5l-2.64,-0.46l-1.72,-0.67l-2.94,-0.96l-0.24,1.02l1.08,2.38l2.89,0.78l0.5,1.23l2.51,1.5l0.84,1.51l4.6,1.92L128.95,308.23zM250.65,230.6l-2,-2.11l-2.06,0.5l-0.25,-3.06l-3.21,-2.04l-3.07,-2.27l-1.63,-1.75L237,220.9l-0.52,-2.96l-2.03,-0.55l-0.96,6.13l-0.36,5.11l-2.44,3.14l3.8,-0.6l0.96,3.65l3.99,-3.23l2.78,-3.38l1.57,2.86l4.36,1.51L250.65,230.6zM130.12,178.05l7.38,-4.18V170l3.48,-6.41l6.88,-6.69l3.52,-2.47l-3.01,-4.2l-2.72,-2.95l-7.16,-0.57l-4,-2.16l-9.48,1.63l2.74,6.23l-2.43,6.43l-1.94,6.87l-1.2,3.86l6.47,4.69L130.12,178.05zM264.36,205.36l0.32,-1.01l-0.03,-3.17l-2.19,-2.08l-2.57,1.05l-1.19,4.17l0.7,3.56l3.14,-0.36L264.36,205.36zM288.18,212.9l4.41,6.6l3.45,2.85l4.92,-7.87l0.87,-4.93l-4.41,-0.47l-4.03,-6.7l-4.45,-1.64l-6.6,-4.97l5.15,-3.63l-2.65,-7.54l-2.44,-3.35l-6.77,-3.35l-2.92,-5.55l-5.21,1.99l-0.36,-3.86l-3.86,-4.32l-6.22,-4.71l-2.65,3.71l-5.55,2.66l0.42,-6.06l-4.81,-10.05l-7.11,4.06l-2.59,7.7l-2.21,-5.92l2.06,-6.37l-7.24,2.65l-2.88,3.99l-2.15,8.42l0.89,9.05l3.98,0.04l-2.93,3.92l2.33,2.96l4.55,1.25l5.93,2.42l10.2,1.82l5.08,-1.04l1.5,-2.42l2.21,2.79l2.47,0.46l2.97,4.96l-1.8,1.98l5.68,2.63l4.29,3.68l1.08,2.55l0.77,3.24l-3.63,6.93l-0.98,3.44l0.94,2.42l-5.77,0.86l-5.27,0.12l-1.85,4.87l2.37,2.23l8.11,-1.03l-0.04,-1.89l4.08,3.15l4.18,3.28l-0.98,1.77l3.4,3.02l6.02,3.53l7.6,2.39l-0.46,-2.09l-2.92,-3.67l-3.96,-5.37l7.03,5l3.54,1.66l0.97,-4.44l-1.82,-6.3l-1.16,-1.73l-3.81,-3.03l-2.95,-3.91l0.35,-3.94L288.18,212.9zM222.35,51.34l2.34,7.29l4.96,5.88l9.81,-1.09l6.31,1.97l-4.38,6.05l-2.21,-1.78l-7.66,-0.71l1.19,8.31l3.96,6.04l-0.8,5.2l-4.97,3.46l-2.27,5.47l4.55,2.65l3.82,8.55l-7.5,-5.7l-1.71,0.94l1.38,9.38l-5.18,2.83l0.35,5.85l5.3,0.63l4.17,1.44l8.24,-1.84l7.33,3.27l7.49,-7.19l-0.06,-3.02l-4.79,0.48l-0.39,-2.84l3.92,-3.83l1.33,-5.15l4.33,-3.83l2.66,-4.76l-2.32,-7.1l1.94,-2.65l-3.86,-1.89l8.49,-1.63l1.79,-3.15l5.78,-2.6l4.8,-13.47l4.57,-4.94l6.62,-11.12l-6.1,0.1l2.54,-4.3l6.78,-3.99l6.84,-8.9l0.12,-5.73l-5.13,-6.04l-6.02,-2.93l-7.49,-1.82l-6.07,-1.49l-6.07,-1.5l-8.1,3.98l-1.49,-2.53l-8.57,0.98l-5.03,2.57l-3.7,3.65l-2.13,11.74L239,24.52l-3.48,-1.14l-4.12,7.97l-5.5,3.35l-3.27,0.66l-4.17,3.84l0.61,6.65L222.35,51.34zM296.75,316.34l-0.98,-1.98l-1.06,1.26l0.7,1.36l3.56,1.71l1.04,-0.26l1.38,-1.66l-2.6,0.11L296.75,316.34zM239.75,238.48l0.61,1.63l1.98,0.14l3.28,-3.34l0.06,-1.19l-3.85,-0.06L239.75,238.48zM301.88,304.92l-2.87,-1.8l-3.69,-1.09l-0.97,0.37l2.61,2.04l3.63,1.34l1.36,-0.08L301.88,304.92zM326.76,309.71l-0.36,-2.24l-1.96,0.72l0.87,-3.11l-2.8,-1.32l-1.29,1.05l-2.49,-1.18l0.98,-1.51l-1.88,-0.93l-1.83,1.47l1.86,-3.82l1.5,-2.8l0.54,-1.22l-1.3,-0.2l-2.43,1.55l-1.74,2.53l-2.9,6.92l-2.35,2.56l1.22,1.14l-1.75,1.47l0.43,1.23l5.44,0.13l3.01,-0.25l2.69,1.01l-1.98,1.93l1.67,0.14l3.25,-3.58l0.78,0.53l-0.61,3.37l1.84,0.77l1.27,-0.15l1.18,-3.61L326.76,309.71zM305.57,314.47l-2.81,4.56l-4.63,0.58l-3.64,-2.01l-0.92,-3.07l-0.89,-4.46l2.65,-2.83l-2.48,-2.09l-4.19,0.43l-5.88,3.53l-4.5,5.45l-2.38,0.67l3.23,-3.8l4.04,-5.57l3.57,-1.9l2.35,-3.11l2.9,-0.3l4.21,0.03l6,0.92l4.74,-0.71l3.53,-3.62l4.62,-1.59l2.01,-1.58l2.04,-1.71l-0.2,-5.19l-1.13,-1.77l-2.18,-0.63l-1.11,-4.05l-1.8,-1.55l-4.47,-1.26l-2.52,-2.82l-3.73,-2.83l1.13,-3.2l-3.1,-6.26l-3.65,-6.89l-2.18,-4.98l-1.86,2.61l-2.68,6.05l-4.06,2.97l-2.03,-3.16l-2.56,-0.85l-0.93,-6.99l0.08,-4.8l-5,-0.44l-0.85,-2.27l-3.45,-3.44l-2.61,-2.04l-2.32,1.58l-2.88,-0.58l-4.81,-1.65l-1.95,1.4l0.94,9.18l1.22,5.12l-3.31,5.75l3.41,4.02l1.9,4.44l0.23,3.42l-1.55,3.5l-3.18,3.46l-4.49,2.28l1.98,2.53l1.46,7.4l-1.52,4.68l-2.16,1.46l-4.17,-4.28l-2.03,-5.17l-0.87,-4.76l0.46,-4.19l-3.05,-0.47l-4.63,-0.28l-2.97,-2.08l-3.51,-1.37l-2.01,-2.38l-2.8,-1.94l-5.21,-2.23l-3.92,1.02l-1.31,-3.95l-1.26,-4.99l-4.12,-0.9l0.15,-6.41l1.09,-4.48l3.04,-6.6l3.43,-4.9l3.26,-0.77l0.19,-4.05l2.21,-2.68l4.01,-0.42l3.25,-4.39l0.82,-2.9l2.7,-5.73l0.84,-3.5l2.9,2.11l3.9,-1.08l5.49,-4.96l0.36,-3.54l-1.98,-3.98l2.09,-4.06l-0.17,-3.87l-3.76,-3.95l-4.14,-1.19l-3.98,-0.62l-0.15,8.71l-2.04,6.56l-2.93,5.3l-2.71,-4.95l0.84,-5.61l-3.35,-5.02l-3.75,6.09l0.01,-7.99l-5.21,-1.63l2.49,-4.01l-3.81,-9.59l-2.84,-3.91l-3.7,-1.44l-3.32,6.43l-0.22,9.34l3.27,3.29l3,4.91l-1.27,7.71l-2.26,-0.2l-1.78,5.88l0.02,-7l-4.34,-2.58l-2.49,1.33l0.32,4.67l-4.09,-0.18l-4.35,1.17l-4.95,-3.35l-3.13,0.6l-2.82,-4.11l-2.26,-1.84l-2.24,0.77l-3.41,0.35l-1.81,2.61l2.86,3.19l-3.05,3.72l-2.99,-4.42l-2.39,1.3l-7.57,0.87l-5.07,-1.59l3.94,-3.74l-3.78,-3.9l-2.75,0.5l-3.86,-1.32l-6.56,-2.89l-4.29,-3.37l-3.4,-0.47l-1.06,2.36l-3.44,1.31l-0.38,-6.15l-3.73,5.5l-4.74,-7.32l-1.94,-0.89l-0.63,3.91l-2.09,1.9l-1.93,-3.39l-4.59,2.05l-4.2,3.55l-4.17,-0.98l-3.4,2.5l-2.46,3.28l-2.92,-0.72l-4.41,-3.8l-5.23,-1.94l-0.02,27.65l-0.01,35.43l2.76,0.17l2.73,1.56l1.96,2.44l2.49,3.6l2.73,-3.05l2.81,-1.79l1.49,2.85l1.89,2.23l2.57,2.42l1.75,3.79l2.87,5.88l4.77,3.2l0.08,3.12l-1.56,2.35l0.06,2.48l3.39,3.45l0.49,3.76l3.59,1.96l-0.4,2.79l1.56,3.96l5.08,1.82l2,1.89l5.43,4.23l0.38,0.01h7.96h8.32h2.76h8.55h8.27h8.41h8.42h9.53h9.59h5.8l0.01,-1.64l0.95,-0.02l0.5,2.35l0.87,0.72l1.96,0.26l2.86,0.67l2.72,1.3l2.27,-0.55l3.45,1.09l1.14,-1.66l1.59,-0.66l0.62,-1.03l0.63,-0.55l2.61,0.86l1.93,0.1l0.67,0.57l0.94,2.38l3.15,0.63l-0.49,1.18l1.11,1.21l-0.48,1.56l1.18,0.51l-0.59,1.37l0.75,0.13l0.53,-0.6l0.55,0.9l2.1,0.5l2.13,0.04l2.27,0.41l2.51,0.78l0.91,1.26l1.82,3.04l-0.9,1.3l-2.28,-0.54l-1.42,-2.44l0.36,2.49l-1.34,2.17l0.15,1.84l-0.23,1.07l-1.81,1.27l-1.32,2.09l-0.62,1.32l1.54,0.24l2.08,-1.2l1.23,-1.06l0.83,-0.17l1.54,0.38l0.75,-0.59l1.37,-0.48l2.44,-0.47l0,0l0,0l-0.25,-1.15l-0.13,0.04l-0.86,0.2l-1.12,-0.36l0.84,-1.32l0.85,-0.46l1.98,-0.56l2.37,-0.53l1.24,0.73l0.78,-0.85l0.89,-0.54l0.6,0.29l0.03,0.06l2.87,-2.73l1.27,-0.73l4.26,-0.03h5.17l0.28,-0.98l0.9,-0.2l1.19,-0.62l1,-1.82l0.86,-3.15l2.14,-3.1l0.93,1.08l1.88,-0.7l1.25,1.19v5.52l1.83,2.25l3.12,-0.48l4.49,-0.13l-4.87,3.26l0.11,3.29l2.13,0.28l3.13,-2.79l2.78,-1.58l6.21,-2.35l3.47,-2.62l-1.81,-1.46L305.57,314.47zM251.91,243.37l1.1,-3.12l-0.71,-1.23l-1.15,-0.13l-1.08,1.8l-0.13,0.41l0.74,1.77L251.91,243.37zM109.25,279.8L109.25,279.8l1.56,-2.35L109.25,279.8z"
140
- },
141
- {
142
- "id":"CD",
143
- "title":"The Democratic Republic of the Congo",
144
- "d":"M561.71,453.61L561.54,456.87L562.66,457.24L561.76,458.23L560.68,458.97L559.61,460.43L559.02,461.72L558.86,463.96L558.21,465.02L558.19,467.12L557.38,467.9L557.28,469.56L556.89,469.77L556.63,471.3L557.34,472.56L557.52,475.93L558.02,478.5L557.74,479.96L558.3,481.58L559.93,483.15L561.44,486.7L560.34,486.41L556.57,486.89L555.82,487.22L555.02,489.02L555.65,490.27L555.15,493.62L554.8,496.47L555.56,496.98L557.52,498.08L558.29,497.57L558.53,500.65L556.38,500.62L555.23,499.05L554.2,497.83L552.05,497.43L551.42,495.94L549.7,496.84L547.46,496.44L546.52,495.15L544.74,494.89L543.43,494.96L543.27,494.08L542.3,494.01L541.02,493.84L539.29,494.26L538.07,494.19L537.37,494.45L537.52,491.08L536.59,490.03L536.38,488.3L536.79,486.6L536.23,485.51L536.18,483.75L532.77,483.77L533.02,482.76L531.59,482.77L531.44,483.26L529.7,483.37L528.99,485L528.57,485.71L527.02,485.31L526.1,485.71L524.24,485.93L523.17,484.46L522.53,483.55L521.72,481.87L521.03,479.78L512.76,479.75L511.77,480.08L510.96,480.03L509.8,480.41L509.41,479.54L510.12,479.24L510.21,478.02L510.67,477.3L511.69,476.72L512.43,477L513.39,475.93L514.91,475.96L515.09,476.75L516.14,477.25L517.79,475.49L519.42,474.13L520.13,473.24L520.04,470.94L521.26,468.23L522.54,466.8L524.39,465.46L524.71,464.57L524.78,463.55L525.24,462.58L525.09,461L525.44,458.53L525.99,456.79L526.83,455.3L526.99,453.62L527.24,451.67L528.34,450.25L529.84,449.35L532.15,450.3L533.93,451.33L535.98,451.61L538.07,452.15L538.91,450.47L539.3,450.25L540.57,450.53L543.7,449.14L544.8,449.73L545.71,449.65L546.13,448.97L547.17,448.73L549.28,449.02L551.08,449.08L552.01,448.79L553.7,451.1L554.96,451.43L555.71,450.96L557.01,451.15L558.57,450.56L559.24,451.75z"
145
- },
146
- {
147
- "id":"CF",
148
- "title":"Central African Republic",
149
- "d":"M518.09,442.66L520.41,442.44L520.93,441.72L521.39,441.78L522.09,442.41L525.62,441.34L526.81,440.24L528.28,439.25L528,438.26L528.79,438L531.5,438.18L534.14,436.87L536.16,433.78L537.59,432.64L539.36,432.15L539.68,433.37L541.3,435.14L541.3,436.29L540.85,437.47L541.03,438.34L542,439.15L544.14,440.39L545.67,441.52L545.7,442.44L547.58,443.9L548.75,445.11L549.46,446.79L551.56,447.9L552.01,448.79L551.08,449.08L549.28,449.02L547.17,448.73L546.13,448.97L545.71,449.65L544.8,449.73L543.7,449.14L540.57,450.53L539.3,450.25L538.91,450.47L538.07,452.15L535.98,451.61L533.93,451.33L532.15,450.3L529.84,449.35L528.34,450.25L527.24,451.67L526.99,453.62L525.19,453.46L523.29,452.99L521.62,454.47L520.15,457.07L519.85,456.26L519.73,454.99L518.45,454.09L517.41,452.65L517.17,451.65L515.85,450.19L516.07,449.36L515.79,448.18L516.01,446.01L516.68,445.5z"
150
- },
151
- {
152
- "id":"CG",
153
- "title":"Republic of Congo",
154
- "d":"M511.69,476.72L510.64,475.76L509.79,476.23L508.66,477.43L506.36,474.48L508.49,472.94L507.44,471.09L508.4,470.39L510.29,470.05L510.51,468.81L512.01,470.15L514.49,470.27L515.35,468.95L515.7,467.1L515.39,464.92L514.07,463.28L515.28,460.05L514.58,459.5L512.5,459.72L511.71,458.29L511.92,457.07L515.45,457.18L517.72,457.91L519.95,458.57L520.15,457.07L521.62,454.47L523.29,452.99L525.19,453.46L526.99,453.62L526.83,455.3L525.99,456.79L525.44,458.53L525.09,461L525.24,462.58L524.78,463.55L524.71,464.57L524.39,465.46L522.54,466.8L521.26,468.23L520.04,470.94L520.13,473.24L519.42,474.13L517.79,475.49L516.14,477.25L515.09,476.75L514.91,475.96L513.39,475.93L512.43,477z"
155
- },
156
- {
157
- "id":"CH",
158
- "title":"Switzerland",
159
- "d":"M502.15,312.34L502.26,313.08L501.83,314.09L503.1,314.83L504.53,314.94L504.31,316.61L503.08,317.3L501,316.79L500.39,318.42L499.06,318.55L498.57,317.91L497,319.27L495.65,319.46L494.44,318.6L493.48,316.83L492.14,317.47L492.18,315.63L494.23,313.32L494.14,312.27L495.42,312.66L496.19,311.95L498.57,311.98L499.15,311.08z"
160
- },
161
- {
162
- "id":"CI",
163
- "title":"Cote D'ivoire",
164
- "d":"M467.24,449.46L465.97,449.49L464.01,448.94L462.22,448.97L458.89,449.46L456.95,450.27L454.17,451.29L453.63,451.22L453.84,448.92L454.11,448.57L454.03,447.46L452.84,446.29L451.95,446.1L451.13,445.33L451.74,444.09L451.46,442.73L451.59,441.91L452.04,441.91L452.2,440.68L451.98,440.14L452.25,439.75L453.29,439.41L452.6,437.15L451.95,435.99L452.18,435.02L452.74,434.81L453.1,434.55L453.88,434.97L456.04,435L456.56,434.17L457.04,434.23L457.85,433.91L458.29,435.12L458.94,434.76L460.1,434.34L461.36,434.96L461.85,435.89L463.11,436.49L464.09,435.78L465.41,435.67L467.33,436.4L468.07,440.41L466.89,442.77L466.16,445.94L467.37,448.35z"
165
- },
166
- {
167
- "id":"CL",
168
- "title":"Chile",
169
- "d":"M282.81,636.73v10.57h3l1.69,0.13l-0.93,1.98l-2.4,1.53l-1.38,-0.16l-1.66,-0.4l-2.04,-1.48l-2.94,-0.71l-3.53,-2.71l-2.86,-2.57l-3.86,-5.25l2.31,0.97l3.94,3.13l3.72,1.7l1.45,-2.17l0.91,-3.2l2.58,-1.91L282.81,636.73zM283.97,524.72l1.1,4.15l2.02,-0.41l0.34,0.76l-0.96,3.16l-3.05,1.51l0.09,5.14l-0.59,1l0.84,1.23l-1.98,1.95l-1.84,2.96l-1,2.9l0.27,3.11l-1.73,3.34l1.29,5.69l0.73,0.61l-0.01,3.09l-1.6,3.31l0.06,2.87l-2.12,2.26l0.01,3.22l0.85,3.46l-1.68,1.3l-0.75,3.22l-0.66,3.75l0.47,4.54l-1.13,0.77l0.65,4.4l1.27,1.46l-0.92,1.63l1.3,0.78l0.3,1.48l-1.22,0.75l0.3,2.33l-1.02,5.35l-1.49,3.52l0.33,2.11l-0.89,2.68l-2.15,1.88l0.25,4.6l0.99,1.6l1.87,-0.28l-0.05,3.33l1.16,2.63l6.78,0.61l2.6,0.71l-2.49,-0.03l-1.35,1.13l-2.53,1.67l-0.45,4.38l-1.19,0.11l-3.16,-1.54l-3.21,-3.25l0,0l-3.49,-2.63l-0.88,-2.87l0.79,-2.62l-1.41,-2.94l-0.36,-7.34l1.19,-4.03l2.96,-3.19l-4.26,-1.19l2.67,-3.57l0.95,-6.56l3.12,1.37l1.46,-7.97l-1.88,-1l-0.88,4.75l-1.77,-0.54l0.88,-5.42l0.96,-6.84l1.29,-2.48l-0.81,-3.5l-0.23,-3.98l1.18,-0.11l1.72,-5.6l1.94,-5.43l1.19,-4.97l-0.65,-4.91l0.84,-2.67l-0.34,-3.96l1.64,-3.87l0.51,-6.04l0.9,-6.37l0.88,-6.75l-0.21,-4.87l-0.58,-4.15l1.44,-0.75l0.75,-1.5l1.37,1.99l0.37,2.12l1.47,1.25l-0.88,2.87L283.97,524.72z"
170
- },
171
- {
172
- "id":"CM",
173
- "title":"Cameroon",
174
- "d":"M511.92,457.07L511.57,456.92L509.91,457.28L508.2,456.9L506.87,457.09L502.31,457.02L502.72,454.82L501.62,452.98L500.34,452.5L499.77,451.25L499.05,450.85L499.09,450.08L499.81,448.1L501.14,445.4L501.95,445.37L503.62,443.73L504.69,443.69L506.26,444.84L508.19,443.89L508.45,442.73L509.08,441.59L509.51,440.17L511.01,439.01L511.58,437.04L512.17,436.41L512.57,434.94L513.31,433.13L515.67,430.93L515.82,429.98L516.13,429.47L515.02,428.33L515.11,427.43L515.9,427.26L517.01,429.09L517.2,430.98L517.1,432.87L518.62,435.44L517.06,435.41L516.27,435.61L514.99,435.33L514.38,436.66L516.03,438.31L517.25,438.79L517.65,439.96L518.53,441.89L518.09,442.66L516.68,445.5L516.01,446.01L515.79,448.18L516.07,449.36L515.85,450.19L517.17,451.65L517.41,452.65L518.45,454.09L519.73,454.99L519.85,456.26L520.15,457.07L519.95,458.57L517.72,457.91L515.45,457.18z"
175
- },
176
- {
177
- "id":"CN",
178
- "title":"China",
179
- "d":"M785.88,406.27l0.63,1.13l-1.23,1.3l-0.65,1.7l-2.42,1.41l-2.3,-0.91l-0.08,-2.53l1.38,-1.34l3.06,-0.83L785.88,406.27zM849.21,309.6l-2.43,1.65h-4.26l-1.13,-3.95l-3.32,-3.03l-4.88,-1.38l-1.04,-4.28l-0.98,-2.73l-1.05,-1.94l-1.73,-4.61l-2.46,-1.71l-4.2,-1.39l-3.72,0.13l-3.48,0.84l-2.32,2.31l1.54,1.1l0.04,2.52l-1.56,1.45l-2.53,4.73l0.03,1.93l-3.95,2.74l-3.37,-1.63l-1.37,3.25l-1.98,4.23l0.72,1.71l1.59,-0.53l2.77,0.65l2.16,-1.54l2.25,1.33l2.54,2.89l-0.31,1.45l-2.21,-0.46l-4.07,0.54l-1.97,1.16l-2.05,2.66l-4.28,1.55l-2.79,2.1l-2.88,-0.8l-1.58,-0.36l-1.47,2.54l0.9,1.5l0.45,1.28l-1.96,1.3l-2.01,2.05l-3.28,1.34l-4.2,0.14l-4.53,1.31l-3.26,2.01l-1.24,-1.16h-3.39l-4.15,-2.29l-2.77,-0.57l-3.73,0.53l-5.79,-0.85l-3.09,0.09l-1.65,-2.27l-1.28,-3.57l-1.73,-0.43l-3.39,-2.45l-3.78,-0.55l-3.33,-0.68l-1.01,-1.73l1.08,-4.73l-1.93,-3.32l-4,-1.57l-2.36,-2.23l-0.74,-2.97l-1.1,0.35l-2.13,2.83l-2.33,0.39l-0.13,4.19l-1.56,1.86l-5.56,-1.35l-2.02,7.26l-1.44,0.89l-5.55,1.58l2.52,6.75l-1.92,1l0.22,2.17l-0.39,0.85l-4.42,2.03l-1,1.48l-3.6,0.44l-1.06,2.35l-2.97,-0.49l-1.94,0.72l-2.68,1.73l0.39,0.85l-0.8,0.83l0.71,3.32l0.92,-0.36l1.7,0.81l-0.1,1.38l0.42,2.01l0.5,1.01l2.07,1.63l0.83,2.66l4.42,1.33l0.14,-0.04l3.88,-1.37l2.88,1.37l-0.91,2.76l-1.6,2.23l-1.24,0.1h-0.05l-0.18,1.74l1.12,1.71l-0.09,1.69l-2.01,-0.44l0.79,3.63l2.75,2.07l3.9,2.26l1.16,-0.77l2.25,0.99l2.83,2.09l1.58,0.46l0.94,1.53l2.18,0.63l2.28,1.39l3.17,0.73l3.27,0.31l1.71,-0.66l0.24,2.48l1.85,-2.34l1.51,-0.8l2,0.73l1.48,0.08l1.23,0.85l2.26,-0.39l2.55,-2.36l3.23,-2.03l2.35,0.78l2,-1.35l1.31,1.99l-0.95,1.33l3.02,0.47l1.64,-0.24l0.94,1.86l1.22,0.75l0.08,2.4l-0.11,2.57l-2.66,2.58l-0.34,3.63l2.96,-0.51l0.67,2.8l1.78,0.59l-0.82,2.51l2.08,1.13l1.21,0.55l2.06,-0.87l0.08,1.24l0.25,0.7l1.5,0.08l-0.42,-3.43l1.45,-0.44l1.5,-0.74l2.24,0.02l2.73,-0.35l2.39,-1.62l1.35,1.14l2.56,0.55l-0.44,1.74l1.33,1.22l2.82,0.78l1.33,-0.49l3.76,0.96l-0.66,1.16l0.74,2.16l1.55,-0.17l0.96,-3.15l2.97,-0.46l3.92,-1.5l1.59,-1.5l0.97,0.98l1.71,-1.34l3.16,-0.35l3.9,-2.55l3.86,-2.82l2.6,-3.68l2.27,-4.09l2.05,-3.41l1.57,-0.28l0.71,-2.52l0.43,-2.61l-1.65,-1l-0.67,-1.73l1.76,-0.89l0.05,-2.43l-1.9,-2.53l-1.71,-3.05l-1.1,-3.31l-3.02,-1.86l1.44,-2.39l2.73,-1.73l1.31,-1.87l3.97,-0.97l-0.46,-1.84l-1.81,-0.09l-2.49,-1.37l-3.14,2.51l-2.22,-1.02l-0.09,-1.58l-2.29,-0.58l-1.48,-2.41l1.43,-1.68l2.75,-0.17l1.73,-2.34l3.17,-2.54l2.44,-1.3l1.48,1.93l-2.22,2.45l0.59,1.41l-1.49,1.67l3.02,-0.98l2.06,-1.69l3.92,-1.06l2.28,-2.35l3.09,-1.98l1.93,-2.64l1.33,1.17l2.42,0.14l-0.44,-1.97l4.33,-1.62l1.11,-2.13l1.81,2.24l-0.02,-1.93l1.43,-0.1l0.4,-4.55l-0.74,-3.36l2.41,-1.4l3.4,0.7l1.89,-3.89l0.96,-4.46l1.09,-1.51l1.47,-3.76L849.21,309.6z"
180
- },
181
- {
182
- "id":"CO",
183
- "title":"Colombia",
184
- "d":"M263.92,463.81L262.72,463.15L261.34,462.23L260.54,462.67L258.16,462.28L257.48,461.08L256.96,461.13L254.15,459.54L253.77,458.67L254.82,458.46L254.7,457.07L255.35,456.06L256.74,455.87L257.93,454.12L259,452.66L257.96,451.99L258.49,450.37L257.86,447.81L258.46,447.08L258.02,444.71L256.88,443.21L257.24,441.85L258.15,442.05L258.68,441.21L258.03,439.56L258.37,439.14L259.81,439.23L261.92,437.26L263.07,436.96L263.1,436.03L263.62,433.64L265.23,432.32L266.99,432.27L267.21,431.68L269.41,431.91L271.62,430.48L272.71,429.84L274.06,428.47L275.06,428.64L275.79,429.39L275.25,430.35L273.45,430.83L272.74,432.25L271.65,433.06L270.84,434.12L270.49,436.13L269.72,437.79L271.16,437.97L271.52,439.27L272.14,439.89L272.36,441.02L272.03,442.06L272.13,442.65L272.82,442.88L273.49,443.86L277.09,443.59L278.72,443.95L280.7,446.36L281.83,446.06L283.85,446.21L285.45,445.89L286.44,446.38L285.93,447.88L285.31,448.82L285.09,450.83L285.65,452.68L286.45,453.51L286.54,454.14L285.12,455.53L286.14,456.14L286.89,457.12L287.74,459.89L287.21,460.24L286.67,458.59L285.89,457.71L284.96,458.67L279.5,458.61L279.53,460.35L281.17,460.64L281.08,461.71L280.52,461.42L278.94,461.88L278.93,463.9L280.17,464.92L280.61,466.51L280.54,467.72L279.28,475.37L277.88,473.88L277.04,473.82L278.85,470.98L276.7,469.67L275.02,469.91L274.01,469.43L272.46,470.17L270.37,469.82L268.72,466.9L267.42,466.18L266.53,464.86L264.67,463.54z"
185
- },
186
- {
187
- "id":"CR",
188
- "title":"Costa Rica",
189
- "d":"M242.63,440.4L241.11,439.77L240.54,439.18L240.86,438.69L240.76,438.07L239.98,437.39L238.88,436.84L237.91,436.48L237.73,435.65L236.99,435.14L237.17,435.97L236.61,436.64L235.97,435.86L235.07,435.58L234.69,435.01L234.71,434.15L235.08,433.25L234.29,432.85L234.93,432.31L235.35,431.94L237.2,432.69L237.84,432.32L238.73,432.56L239.2,433.14L240.02,433.33L240.69,432.73L241.41,434.27L242.49,435.41L243.81,436.62L242.72,436.87L242.74,438L243.32,438.42L242.9,438.76L243.01,439.27L242.78,439.84z"
190
- },
191
- {
192
- "id":"CU",
193
- "title":"Cuba",
194
- "d":"M244.58,396.94L247.01,397.16L249.21,397.19L251.84,398.22L252.96,399.33L255.58,398.99L256.57,399.69L258.95,401.56L260.69,402.91L261.61,402.87L263.29,403.48L263.08,404.32L265.15,404.44L267.27,405.66L266.94,406.35L265.07,406.73L263.18,406.88L261.25,406.64L257.24,406.93L259.12,405.27L257.98,404.5L256.17,404.3L255.2,403.44L254.53,401.74L252.95,401.85L250.33,401.05L249.49,400.42L245.84,399.95L244.86,399.36L245.91,398.61L243.16,398.46L241.15,400.02L239.98,400.06L239.58,400.8L238.2,401.13L237,400.84L238.48,399.91L239.08,398.82L240.35,398.15L241.78,397.56L243.91,397.27z"
195
- },
196
- {
197
- "id":"CY",
198
- "title":"Cyprus",
199
- "d":"M570.31,358.29L572.2,356.83L569.65,357.85L567.63,357.8L567.23,358.63L567.03,358.65L565.7,358.77L566.35,360.14L567.72,360.58L570.6,359.2L570.51,358.93z"
200
- },
201
- {
202
- "id":"CZ",
203
- "title":"Czech Republic",
204
- "d":"M522.81,307.86L521.51,307.06L520.2,307.28L518.02,305.98L517.03,306.3L515.46,308.04L513.37,306.67L511.79,304.84L510.36,303.8L510.06,301.98L509.57,300.68L511.61,299.73L512.65,298.63L514.66,297.77L515.37,296.93L516.11,297.44L517.36,296.97L518.69,298.4L520.78,298.79L520.61,300L522.13,300.9L522.55,299.77L524.47,300.26L524.74,301.63L526.82,301.89L528.11,304.02L527.28,304.03L526.84,304.8L526.2,304.99L526.02,305.96L525.48,306.17L525.4,306.56L524.45,307L523.2,306.93z"
205
- },
206
- {
207
- "id":"DE",
208
- "title":"Germany",
209
- "d":"M503.07,278.92L503.12,280.8L505.96,281.92L505.93,283.62L508.78,282.72L510.35,281.41L513.52,283.3L514.84,284.81L515.5,287.2L514.72,288.45L515.73,290.1L516.43,292.55L516.21,294.11L517.36,296.97L516.11,297.44L515.37,296.93L514.66,297.77L512.65,298.63L511.61,299.73L509.57,300.68L510.06,301.98L510.36,303.8L511.79,304.84L513.37,306.67L512.39,308.62L511.38,309.16L511.78,311.88L511.51,312.58L510.64,311.73L509.3,311.61L507.29,312.35L504.82,312.17L504.42,313.26L503,312.12L502.15,312.34L499.15,311.08L498.57,311.98L496.19,311.95L496.54,308.97L497.96,306.07L493.92,305.29L492.6,304.16L492.76,302.27L492.2,301.29L492.52,298.32L492.04,293.63L493.73,293.63L494.44,291.92L495.14,287.69L494.61,286.11L495.16,285.11L497.5,284.85L498.02,285.89L499.93,283.56L499.29,281.77L499.16,279.02L501.28,279.66z"
210
- },
211
- {
212
- "id":"DJ",
213
- "title":"Djibouti",
214
- "d":"M596.05,427.72L596.71,428.6L596.62,429.79L595.02,430.47L596.23,431.24L595.19,432.76L594.57,432.26L593.9,432.46L592.33,432.41L592.28,431.55L592.07,430.76L593.01,429.43L594,428.17L595.2,428.42z"
215
- },
216
- {
217
- "id":"DK",
218
- "title":"Denmark",
219
- "d":"M510.83,275.84l-1.68,3.97l-2.93,-2.76l-0.39,-2.05l4.11,-1.66L510.83,275.84zM505.85,271.59l-0.69,1.9l-0.83,-0.55l-2.02,3.59l0.76,2.39l-1.79,0.74l-2.12,-0.64l-1.14,-2.72l-0.08,-5.12l0.47,-1.38l0.8,-1.54l2.47,-0.32l0.98,-1.43l2.26,-1.47l-0.1,2.68l-0.83,1.68l0.34,1.43L505.85,271.59z"
220
- },
221
- {
222
- "id":"DO",
223
- "title":"Dominican Republic",
224
- "d":"M274.18,407.35L274.53,406.84L276.72,406.86L278.38,407.62L279.12,407.54L279.63,408.59L281.16,408.53L281.07,409.41L282.32,409.52L283.7,410.6L282.66,411.8L281.32,411.16L280.04,411.28L279.12,411.14L278.61,411.68L277.53,411.86L277.11,411.14L276.18,411.57L275.06,413.57L274.34,413.11L274.19,412.27L274.25,411.47L273.53,410.59L274.21,410.09L274.43,408.96z"
225
- },
226
- {
227
- "id":"DZ",
228
- "title":"Algeria",
229
- "d":"M508.9,396.08L499.29,401.83L491.17,407.68L487.22,409L484.11,409.29L484.08,407.41L482.78,406.93L481.03,406.08L480.37,404.69L470.91,398.14L461.45,391.49L450.9,383.96L450.96,383.35L450.96,383.14L450.93,379.39L455.46,377.03L458.26,376.54L460.55,375.68L461.63,374.06L464.91,372.77L465.03,370.36L466.65,370.07L467.92,368.86L471.59,368.3L472.1,367.02L471.36,366.31L470.39,362.78L470.23,360.73L469.17,358.55L471.86,356.68L474.9,356.08L476.67,354.65L479.37,353.6L484.12,352.98L488.76,352.69L490.17,353.21L492.81,351.84L495.81,351.81L496.95,352.62L498.86,352.41L498.29,354.2L498.74,357.48L498.08,360.3L496.35,362.18L496.6,364.71L498.89,366.69L498.92,367.5L500.64,368.83L501.84,374.69L502.75,377.53L502.9,379.01L502.41,381.6L502.61,383.04L502.25,384.76L502.5,386.73L501.38,388.02L503.04,390.28L503.15,391.6L504.14,393.31L505.45,392.75L507.67,394.17z"
230
- },
231
- {
232
- "id":"EC",
233
- "title":"Ecuador",
234
- "d":"M250.1,472.87L251.59,470.79L250.98,469.57L249.91,470.87L248.23,469.64L248.8,468.86L248.33,466.33L249.31,465.91L249.83,464.18L250.89,462.38L250.69,461.25L252.23,460.65L254.15,459.54L256.96,461.13L257.48,461.08L258.16,462.28L260.54,462.67L261.34,462.23L262.72,463.15L263.92,463.81L264.31,465.92L263.44,467.73L260.38,470.65L257.01,471.75L255.29,474.18L254.76,476.06L253.17,477.21L252,475.8L250.86,475.5L249.7,475.72L249.63,474.7L250.43,474.04z"
235
- },
236
- {
237
- "id":"EE",
238
- "title":"Estonia",
239
- "d":"M543.42,264.71L543.75,261.59L542.72,262.26L540.94,260.36L540.69,257.25L544.24,255.72L547.77,254.91L550.81,255.83L553.71,255.66L554.13,256.62L552.14,259.76L552.97,264.72L551.77,266.38L549.45,266.37L547.04,264.43L545.81,263.78z"
240
- },
241
- {
242
- "id":"EG",
243
- "title":"Egypt",
244
- "d":"M573.17,377.28L572.38,378.57L571.78,380.97L571.02,382.61L570.36,383.17L569.43,382.15L568.16,380.73L566.16,376.16L565.88,376.45L567.04,379.82L568.76,383L570.88,387.88L571.91,389.56L572.81,391.3L575.33,394.7L574.77,395.23L574.86,397.2L578.13,399.91L578.62,400.53L567.5,400.53L556.62,400.53L545.35,400.53L545.35,389.3L545.35,378.12L544.51,375.54L545.23,373.54L544.8,372.15L545.81,370.58L549.54,370.53L552.24,371.39L555.02,372.36L556.32,372.86L558.48,371.83L559.63,370.9L562.11,370.63L564.1,371.04L564.87,372.66L565.52,371.59L567.76,372.36L569.95,372.55L571.33,371.73z"
245
- },
246
- {
247
- "id":"ER",
248
- "title":"Eritrea",
249
- "d":"M594,428.17L593.04,427.24L591.89,425.57L590.65,424.65L589.92,423.65L587.48,422.5L585.56,422.47L584.88,421.86L583.24,422.54L581.54,421.23L580.66,423.38L577.4,422.78L577.1,421.63L578.31,417.38L578.58,415.45L579.46,414.55L581.53,414.07L582.95,412.4L584.58,415.78L585.35,418.45L586.89,419.86L590.71,422.58L592.27,424.22L593.79,425.88L594.67,426.86L596.05,427.72L595.2,428.42z"
250
- },
251
- {
252
- "id":"ES",
253
- "title":"Spain",
254
- "d":"M449.92,334.56L450.06,331.88L448.92,330.22L452.88,327.45L456.31,328.15L460.08,328.12L463.06,328.78L465.39,328.58L469.92,328.7L471.04,330.19L476.2,331.92L477.22,331.1L480.38,332.82L483.63,332.33L483.78,334.52L481.12,337.01L477.53,337.79L477.28,339.03L475.55,341.06L474.47,344.02L475.56,346.07L473.94,347.67L473.34,349.97L471.22,350.67L469.23,353.36L465.68,353.41L463,353.35L461.25,354.57L460.18,355.88L458.8,355.59L457.77,354.42L456.97,352.42L454.35,351.88L454.12,350.72L455.16,349.4L455.54,348.44L454.58,347.38L455.35,345.03L454.23,342.86L455.44,342.56L455.55,340.84L456.01,340.31L456.04,337.43L457.34,336.43L456.56,334.55L454.92,334.42L454.44,334.89L452.79,334.9L452.08,333.06L450.94,333.61z"
255
- },
256
- {
257
- "id":"ET",
258
- "title":"Ethiopia",
259
- "d":"M581.54,421.23L583.24,422.54L584.88,421.86L585.56,422.47L587.48,422.5L589.92,423.65L590.65,424.65L591.89,425.57L593.04,427.24L594,428.17L593.01,429.43L592.07,430.76L592.28,431.55L592.33,432.41L593.9,432.46L594.57,432.26L595.19,432.76L594.58,433.77L595.62,435.33L596.65,436.69L597.72,437.7L606.89,441.04L609.25,441.02L601.32,449.44L597.67,449.56L595.17,451.53L593.38,451.58L592.61,452.46L590.69,452.46L589.56,451.52L587,452.69L586.17,453.85L584.3,453.63L583.68,453.31L583.02,453.38L582.14,453.36L578.59,450.98L576.64,450.98L575.68,450.07L575.68,448.5L574.22,448.03L572.57,444.98L571.29,444.33L570.79,443.21L569.37,441.84L567.65,441.64L568.61,440.03L570.09,439.96L570.51,439.1L570.48,436.57L571.31,433.61L572.63,432.81L572.92,431.65L574.12,429.48L575.81,428.06L576.95,425.25L577.4,422.78L580.66,423.38z"
260
- },
261
- {
262
- "id":"FK",
263
- "title":"Falkland Islands",
264
- "d":"M303.66,633.13L307.02,630.44L309.41,631.56L311.09,629.77L313.33,631.78L312.49,633.36L308.7,634.72L307.44,633.13L305.06,635.18z"
265
- },
266
- {
267
- "id":"FI",
268
- "title":"Finland",
269
- "d":"M555.42,193.1L555.01,198.5L559.31,203.49L556.72,208.97L559.98,216.93L558.09,222.69L560.62,227.55L559.47,231.69L563.62,235.95L562.56,239.05L559.96,242.5L553.96,249.91L548.87,250.36L543.94,252.43L539.38,253.61L537.75,250.54L535.04,248.67L535.66,242.95L534.3,237.54L535.64,233.96L538.18,230.02L544.59,223L546.47,221.61L546.17,218.77L542.27,215.55L541.33,212.85L541.25,201.73L536.88,196.58L533.14,192.77L534.82,190.69L537.94,194.84L541.6,194.45L544.61,196.32L547.28,192.88L548.66,187.03L553.01,184.25L556.61,187.51z"
270
- },
271
- {
272
- "id":"FJ",
273
- "title":"Fiji",
274
- "d":"M980.53,508.61l-0.35,1.4l-0.23,0.16l-1.78,0.72l-1.79,0.61l-0.36,-1.09l1.4,-0.6l0.89,-0.16l1.64,-0.91L980.53,508.61zM974.69,512.92l-1.27,-0.36l-1.08,1l0.27,1.29l1.55,0.36l1.74,-0.4l0.46,-1.53l-0.96,-0.84L974.69,512.92z"
275
- },
276
- {
277
- "id":"FR",
278
- "title":"France",
279
- "d":"M502.06,333.54l-0.93,2.89l-1.27,-0.76l-0.65,-2.53l0.57,-1.41l1.81,-1.45L502.06,333.54zM485.31,300.19l1.96,2.06l1.44,-0.34l2.45,1.97l0.63,0.37l0.81,-0.09l1.32,1.12l4.04,0.79l-1.42,2.9l-0.36,2.98l-0.77,0.71l-1.28,-0.38l0.09,1.05l-2.05,2.3l-0.04,1.84l1.34,-0.63l0.96,1.77l-0.12,1.13l0.83,1.5l-0.97,1.21l0.72,3.04l1.52,0.49l-0.32,1.68l-2.54,2.17l-5.53,-1.04l-4.08,1.24l-0.32,2.29l-3.25,0.49l-3.15,-1.72l-1.02,0.82l-5.16,-1.73l-1.12,-1.49l1.45,-2.32l0.53,-7.88l-2.89,-4.26l-2.07,-2.09l-4.29,-1.6l-0.28,-3.07l3.64,-0.92l4.71,1.09l-0.89,-4.84l2.65,1.85l6.53,-3.37l0.84,-3.61l2.45,-0.9l0.41,1.56l1.3,0.07L485.31,300.19z"
280
- },
281
- {
282
- "id":"GA",
283
- "title":"Gabon",
284
- "d":"M506.36,474.48L503.48,471.66L501.62,469.36L499.92,466.48L500.01,465.56L500.62,464.66L501.3,462.64L501.87,460.57L502.82,460.41L506.89,460.44L506.87,457.09L508.2,456.9L509.91,457.28L511.57,456.92L511.92,457.07L511.71,458.29L512.5,459.72L514.58,459.5L515.28,460.05L514.07,463.28L515.39,464.92L515.7,467.1L515.35,468.95L514.49,470.27L512.01,470.15L510.51,468.81L510.29,470.05L508.4,470.39L507.44,471.09L508.49,472.94z"
285
- },
286
- {
287
- "id":"GB",
288
- "title":"United Kingdom",
289
- "d":"M459.38,281l-1.5,3.29l-2.12,-0.98l-1.73,0.07l0.58,-2.57l-0.58,-2.6l2.35,-0.2L459.38,281zM466.83,260.24l-3,5.73l2.86,-0.72l3.07,0.03l-0.73,4.22l-2.52,4.53l2.9,0.32l0.22,0.52l2.5,5.79l1.92,0.77l1.73,5.41l0.8,1.84l3.4,0.88l-0.34,2.93l-1.43,1.33l1.12,2.33l-2.52,2.33l-3.75,-0.04l-4.77,1.21l-1.31,-0.87l-1.85,2.06l-2.59,-0.5l-1.97,1.67l-1.49,-0.87l4.11,-4.64l2.51,-0.97h-0.02l-4.38,-0.75l-0.79,-1.8l2.93,-1.41l-1.54,-2.48l0.53,-3.06l4.17,0.42l0,0l0.41,-2.74l-1.88,-2.95l-0.04,-0.07l-3.4,-0.85l-0.67,-1.32l1.02,-2.2l-0.92,-1.37l-1.51,2.34l-0.16,-4.8l-1.42,-2.59l1.02,-5.36l2.18,-4.31l2.24,0.42L466.83,260.24z"
290
- },
291
- {
292
- "id":"GE",
293
- "title":"Georgia",
294
- "d":"M591.76,335.85L592.18,334.25L591.48,331.68L589.86,330.27L588.31,329.83L587.28,328.66L587.62,328.2L589.99,328.86L594.12,329.48L597.94,331.31L598.43,332.02L600.13,331.42L602.75,332.22L603.6,333.77L605.37,334.64L604.64,335.15L606.02,337.17L605.64,337.6L604.13,337.38L602.04,336.32L601.35,336.92L597.45,337.5L594.75,335.68z"
295
- },
296
- {
297
- "id":"GF",
298
- "title":"French Guiana",
299
- "d":"M327.89,456.41l-1.07,1.06l-1.34,0.2l-0.38,-0.78l-0.63,-0.12l-0.87,0.76l-1.22,-0.57l0.71,-1.19l0.24,-1.27l0.48,-1.2l-1.09,-1.65l-0.22,-1.91l1.46,-2.41l0.95,0.31l2.06,0.66l2.97,2.36l0.46,1.14l-1.66,2.55L327.89,456.41z"
300
- },
301
- {
302
- "id":"GH",
303
- "title":"Ghana",
304
- "d":"M478.23,446.84L473.83,448.48L472.27,449.44L469.74,450.25L467.24,449.46L467.37,448.35L466.16,445.94L466.89,442.77L468.07,440.41L467.33,436.4L466.94,434.27L467.01,432.66L471.88,432.53L473.12,432.74L474.02,432.28L475.32,432.5L475.11,433.39L476.28,434.85L476.28,436.9L476.55,439.12L477.25,440.15L476.63,442.68L476.85,444.08L477.6,445.86z"
305
- },
306
- {
307
- "id":"GL",
308
- "title":"Greenland",
309
- "d":"M344.13,23.91L353.55,10.3L363.39,11.37L366.96,2.42L376.87,0L399.27,3.15L416.81,21.74L411.63,30.04L400.9,30.97L385.81,33L387.22,36.64L397.15,34.4L405.59,41.31L411.04,35.19L413.37,42.34L410.29,53.31L417.43,46.38L431.04,38.83L439.45,42.64L441.02,50.76L429.59,63.42L428.01,67.32L419.05,70.18L425.54,70.97L422.26,82.48L420,92.07L420.09,107.33L423.46,115.67L419.08,116.18L414.47,120.06L419.64,126.36L420.3,135.98L417.3,137L420.93,146.15L414.71,146.9L417.96,151.04L417.04,154.55L413.09,156.06L409.18,156.09L412.69,162.57L412.73,166.7L407.18,162.87L405.74,165.36L409.52,167.65L413.2,173.13L414.26,180.08L409.26,181.7L407.1,178.44L403.63,173.46L404.59,179.33L401.34,183.74L408.72,184.09L412.59,184.54L405.07,191.57L397.45,197.7L389.25,200.31L386.16,200.35L383.26,203.22L379.36,210.85L373.33,215.74L371.39,216.03L367.65,217.7L363.63,219.29L361.22,223.41L361.18,227.97L359.77,232.13L355.19,237.08L356.32,241.79L355.06,246.64L353.63,252.2L349.68,252.54L345.54,247.91L339.93,247.88L337.21,244.7L335.34,238.9L330.48,231.22L329.06,227.07L328.68,221.18L324.79,214.91L325.8,209.74L323.93,207.21L326.7,198.56L330.92,195.71L332.03,192.45L332.62,186.19L329.41,189.05L327.89,190.24L325.37,191.38L321.93,188.77L321.74,183.22L322.84,178.74L325.44,178.62L331.16,180.87L326.34,175.44L323.83,172.43L321.04,173.67L318.7,171.48L321.83,162.98L320.13,159.45L317.9,152.71L314.53,141.8L310.96,137.63L310.99,133L303.46,126.31L297.51,125.46L290.02,125.93L283.18,126.79L279.92,123.04L275.05,115.38L282.41,111.41L288.06,110.73L276.06,107.37L269.74,101.93L270.13,96.59L280.74,89.72L291.01,82.56L292.09,76.92L284.53,71.16L286.97,64.52L296.68,52.19L300.76,50.21L299.59,41.64L306.23,36.4L314.85,33.19L323.47,33.01L326.53,39.31L333.97,27.99L340.66,35.77L344.59,37.36L350.42,43.77L343.75,33z"
310
- },
311
- {
312
- "id":"GM",
313
- "title":"The Gambia",
314
- "d":"M428.03,426.43L428.39,425.16L431.44,425.07L432.08,424.4L432.97,424.35L434.07,425.06L434.94,425.07L435.87,424.59L436.43,425.41L435.22,426.06L434,426.01L432.8,425.4L431.76,426.06L431.26,426.09L430.58,426.49z"
315
- },
316
- {
317
- "id":"GN",
318
- "title":"Guinea",
319
- "d":"M451.59,441.91L450.8,441.84L450.23,442.97L449.43,442.96L448.89,442.36L449.07,441.23L447.9,439.51L447.17,439.82L446.57,439.89L445.8,440.05L445.83,439.02L445.38,438.28L445.47,437.46L444.86,436.27L444.08,435.26L441.84,435.26L441.19,435.79L440.41,435.85L439.93,436.46L439.61,437.25L438.11,438.49L436.88,436.82L435.79,435.71L435.07,435.35L434.37,434.78L434.06,433.53L433.65,432.91L432.83,432.44L434.08,431.06L434.93,431.11L435.66,430.63L436.28,430.63L436.72,430.25L436.48,429.31L436.79,429.01L436.84,428.04L438.19,428.07L440.21,428.77L440.83,428.7L441.04,428.39L442.56,428.61L442.97,428.45L443.13,429.5L443.58,429.49L444.31,429.11L444.77,429.21L445.55,429.93L446.75,430.16L447.52,429.54L448.43,429.16L449.1,428.76L449.66,428.84L450.28,429.46L450.62,430.25L451.77,431.44L451.19,432.17L451.08,433.09L451.68,432.81L452.03,433.15L451.88,433.99L452.74,434.81L452.18,435.02L451.95,435.99L452.6,437.15L453.29,439.41L452.25,439.75L451.98,440.14L452.2,440.68L452.04,441.91z"
320
- },
321
- {
322
- "id":"GQ",
323
- "title":"Equatorial Guinea",
324
- "d":"M501.87,460.57L501.34,460.15L502.31,457.02L506.87,457.09L506.89,460.44L502.82,460.41z"
325
- },
326
- {
327
- "id":"GR",
328
- "title":"Greece",
329
- "d":"M541.7,356.71l1.53,1.16l2.18,-0.2l2.09,0.24l-0.07,0.59l1.53,-0.41l-0.35,1.01l-4.04,0.29l0.03,-0.56l-3.42,-0.67L541.7,356.71zM549.85,335.75l-0.87,2.33l-0.67,0.41l-1.71,-0.1l-1.46,-0.35l-3.4,0.96l1.94,2.06l-1.42,0.59h-1.56l-1.48,-1.88l-0.53,0.8l0.63,2.18l1.4,1.7l-1.06,0.79l1.56,1.65l1.39,1.03l0.04,2l-2.59,-0.94l0.83,1.8l-1.78,0.37l1.06,3.08l-1.86,0.04l-2.3,-1.51l-1.05,-2.81l-0.49,-2.36l-1.09,-1.64l-1.44,-2.05l-0.19,-1.03l1.3,-1.76l0.17,-1.19l0.91,-0.53l0.06,-0.97l1.83,-0.33l1.07,-0.81l1.52,0.07l0.46,-0.65l0.53,-0.12l2.07,0.11l2.24,-1.02l1.98,1.3l2.55,-0.35l0.03,-1.86L549.85,335.75z"
330
- },
331
- {
332
- "id":"GT",
333
- "title":"Guatemala",
334
- "d":"M222.64,424.75L221.2,424.25L219.45,424.2L218.17,423.63L216.66,422.45L216.73,421.61L217.05,420.93L216.66,420.39L218.01,418.03L221.6,418.02L221.68,417.04L221.22,416.86L220.91,416.23L219.87,415.56L218.83,414.58L220.1,414.58L220.1,412.93L222.72,412.93L225.31,412.96L225.29,415.27L225.07,418.55L225.9,418.55L226.82,419.08L227.06,418.64L227.88,419.01L226.61,420.12L225.28,420.93L225.08,421.48L225.3,422.04L224.72,422.78L224.06,422.95L224.21,423.29L223.69,423.61L222.73,424.33z"
335
- },
336
- {
337
- "id":"GW",
338
- "title":"Guinea-Bissau",
339
- "d":"M432.83,432.44L431.33,431.25L430.15,431.07L429.51,430.26L429.52,429.83L428.67,429.23L428.49,428.62L429.98,428.15L430.91,428.24L431.66,427.92L436.84,428.04L436.79,429.01L436.48,429.31L436.72,430.25L436.28,430.63L435.66,430.63L434.93,431.11L434.08,431.06z"
340
- },
341
- {
342
- "id":"GY",
343
- "title":"Guyana",
344
- "d":"M307.7,440L309.54,441.03L311.28,442.86L311.35,444.31L312.41,444.38L313.91,445.74L315.02,446.72L314.57,449.24L312.87,449.97L313.02,450.62L312.5,452.07L313.75,454.09L314.64,454.1L315.01,455.67L316.72,458.09L316.04,458.19L314.49,457.96L313.58,458.7L312.31,459.19L311.43,459.31L311.12,459.85L309.74,459.71L308.01,458.41L307.81,457.12L307.09,455.71L307.54,453.33L308.32,452.35L307.67,451.05L306.71,450.63L307.08,449.4L306.42,448.76L304.96,448.88L303.07,446.76L303.83,445.99L303.77,444.69L305.5,444.24L306.19,443.72L305.23,442.68L305.48,441.65z"
345
- },
346
- {
347
- "id":"HN",
348
- "title":"Honduras",
349
- "d":"M230.43,426.9L229.95,426.01L229.09,425.76L229.29,424.61L228.91,424.3L228.33,424.1L227.1,424.44L227,424.05L226.15,423.59L225.55,423.02L224.72,422.78L225.3,422.04L225.08,421.48L225.28,420.93L226.61,420.12L227.88,419.01L228.17,419.13L228.79,418.62L229.59,418.58L229.85,418.81L230.29,418.67L231.59,418.93L232.89,418.85L233.79,418.53L234.12,418.21L235.01,418.36L235.68,418.56L236.41,418.49L236.97,418.24L238.25,418.64L238.7,418.7L239.55,419.24L240.36,419.89L241.38,420.33L242.12,421.13L241.16,421.07L240.77,421.46L239.8,421.84L239.09,421.84L238.47,422.21L237.91,422.08L237.43,421.64L237.14,421.72L236.78,422.41L236.51,422.38L236.46,422.98L235.48,423.77L234.97,424.11L234.68,424.47L233.85,423.89L233.25,424.65L232.66,424.63L232,424.7L232.06,426.11L231.65,426.13L231.3,426.79z"
350
- },
351
- {
352
- "id":"HR",
353
- "title":"Croatia",
354
- "d":"M528.05,318.93L528.73,320.48L529.62,321.62L528.54,323.11L527.27,322.23L525.33,322.29L522.92,321.63L521.61,321.72L521.01,322.54L520,321.63L519.41,323.27L520.79,325.1L521.39,326.31L522.68,327.76L523.75,328.61L524.81,330.22L527.29,331.66L526.98,332.3L524.35,330.9L522.72,329.52L520.16,328.38L517.8,325.53L518.37,325.23L517.09,323.59L517.03,322.25L515.23,321.63L514.37,323.34L513.54,322.01L513.61,320.63L513.71,320.57L515.66,320.71L516.18,320.03L517.13,320.68L518.23,320.76L518.22,319.64L519.19,319.23L519.47,317.61L521.7,316.53L522.59,317.03L524.69,318.76L527,319.53z"
355
- },
356
- {
357
- "id":"HT",
358
- "title":"Haiti",
359
- "d":"M270.04,406.75L271.75,406.88L274.18,407.35L274.43,408.96L274.21,410.09L273.53,410.59L274.25,411.47L274.19,412.27L272.33,411.77L271.01,411.97L269.3,411.76L267.99,412.31L266.48,411.39L266.73,410.44L269.31,410.85L271.43,411.09L272.44,410.43L271.16,409.16L271.18,408.03L269.41,407.57z"
360
- },
361
- {
362
- "id":"HU",
363
- "title":"Hungary",
364
- "d":"M520.68,315.11L521.61,312.46L521.07,311.57L522.65,311.56L522.86,309.85L524.29,310.92L525.32,311.38L527.68,310.87L527.9,310.03L529.02,309.9L530.38,309.25L530.68,309.52L532,309L532.66,308L533.58,307.75L536.58,309.03L537.18,308.6L538.73,309.74L538.93,310.86L537.22,311.73L535.89,314.53L534.2,317.29L531.95,318.05L530.2,317.88L528.05,318.93L527,319.53L524.69,318.76L522.59,317.03L521.7,316.53L521.15,315.16z"
365
- },
366
- {
367
- "id":"ID",
368
- "title":"Indonesia",
369
- "d":"M813.72,492.06l-1.18,0.05l-3.72,-1.98l2.61,-0.56l1.47,0.86l0.98,0.86L813.72,492.06zM824.15,491.78l-2.4,0.62l-0.34,-0.34l0.25,-0.96l1.21,-1.72l2.77,-1.12l0.28,0.56l0.05,0.86L824.15,491.78zM805.83,486.01l1.01,0.75l1.73,-0.23l0.7,1.2l-3.24,0.57l-1.94,0.38l-1.51,-0.02l0.96,-1.62l1.54,-0.02L805.83,486.01zM819.86,486l-0.41,1.56l-4.21,0.8l-3.73,-0.35l-0.01,-1.03l2.23,-0.59l1.76,0.84l1.87,-0.21L819.86,486zM779.82,482.31l5.37,0.28l0.62,-1.16l5.2,1.35l1.02,1.82l4.21,0.51l3.44,1.67l-3.2,1.07l-3.08,-1.13l-2.54,0.08l-2.91,-0.21l-2.62,-0.51l-3.25,-1.07l-2.06,-0.28l-1.17,0.35l-5.11,-1.16l-0.49,-1.21l-2.57,-0.21l1.92,-2.68l3.4,0.17l2.26,1.09l1.16,0.21L779.82,482.31zM853,480.73l-1.44,1.91l-0.27,-2.11l0.5,-1.01l0.59,-0.95l0.64,0.82L853,480.73zM832.04,473.02l-1.05,0.93l-1.94,-0.51l-0.55,-1.2l2.84,-0.13L832.04,473.02zM841.08,472.01l1.02,2.13l-2.37,-1.15l-2.34,-0.23l-1.58,0.18l-1.94,-0.1l0.67,-1.53l3.46,-0.12L841.08,472.01zM851.37,466.59l0.78,4.51l2.9,1.67l2.34,-2.96l3.22,-1.68h2.49l2.4,0.97l2.08,1l3.01,0.53l0.05,9.1l0.05,9.16l-2.5,-2.31l-2.85,-0.57l-0.69,0.8l-3.55,0.09l1.19,-2.29l1.77,-0.78l-0.73,-3.05l-1.35,-2.35l-5.44,-2.37l-2.31,-0.23l-4.21,-2.58l-0.83,1.36l-1.08,0.25l-0.64,-1.02l-0.01,-1.21l-2.14,-1.37l3.02,-1l2,0.05l-0.24,-0.74l-4.1,-0.01l-1.11,-1.66l-2.5,-0.51l-1.19,-1.38l3.78,-0.67l1.44,-0.91l4.5,1.14L851.37,466.59zM826.41,459.43l-2.25,2.76l-2.11,0.54l-2.7,-0.54l-4.67,0.14l-2.45,0.4l-0.4,2.11l2.51,2.48l1.51,-1.26l5.23,-0.95l-0.23,1.28l-1.22,-0.4l-1.22,1.63l-2.47,1.08l2.65,3.57l-0.51,0.96l2.52,3.22l-0.02,1.84l-1.5,0.82l-1.1,-0.98l1.36,-2.29l-2.75,1.08l-0.7,-0.77l0.36,-1.08l-2.02,-1.64l0.21,-2.72l-1.87,0.85l0.24,3.25l0.11,4l-1.78,0.41l-1.2,-0.82l0.8,-2.57l-0.43,-2.69l-1.18,-0.02l-0.87,-1.91l1.16,-1.83l0.4,-2.21l1.41,-4.2l0.59,-1.15l2.38,-2.07l2.19,0.82l3.54,0.39l3.22,-0.12l2.77,-2.02L826.41,459.43zM836.08,460.23l-0.15,2.43l-1.45,-0.27l-0.43,1.69l1.16,1.47l-0.79,0.33l-1.13,-1.76l-0.83,-3.56l0.56,-2.23l0.93,-1.01l0.2,1.52l1.66,0.24L836.08,460.23zM805.76,458.29l3.14,2.58l-3.32,0.33l-0.94,1.9l0.12,2.52l-2.7,1.91L802,470.3l-1.08,4.27l-0.41,-0.99l-3.19,1.26l-1.11,-1.71l-2,-0.16l-1.4,-0.89l-3.33,1l-1.02,-1.35l-1.84,0.15l-2.31,-0.32l-0.43,-3.74l-1.4,-0.77l-1.35,-2.38l-0.39,-2.44l0.33,-2.58l1.67,-1.85l0.47,1.86l1.92,1.57l1.81,-0.57l1.79,0.2l1.63,-1.41l1.34,-0.24l2.65,0.78l2.29,-0.59l1.44,-3.88l1.08,-0.97l0.97,-3.17h3.22l2.43,0.47l-1.59,2.52l2.06,2.64L805.76,458.29zM771.95,479.71l-3.1,0.06l-2.36,-2.34l-3.6,-2.28l-1.2,-1.69l-2.12,-2.27l-1.39,-2.09l-2.13,-3.9l-2.46,-2.32l-0.82,-2.39l-1.03,-2.17l-2.53,-1.75l-1.47,-2.39l-2.11,-1.56l-2.92,-3.08l-0.25,-1.42l1.81,0.11l4.34,0.54l2.48,2.73l2.17,1.89l1.55,1.16l2.66,3l2.85,0.04l2.36,1.91l1.62,2.33l2.13,1.27l-1.12,2.27l1.61,0.97l1.01,0.07l0.48,1.94l0.98,1.56l2.06,0.25l1.36,1.76l-0.7,3.47L771.95,479.71z"
370
- },
371
- {
372
- "id":"IE",
373
- "title":"Ireland",
374
- "d":"M457.88,284.29L458.34,287.65L456.22,291.77L451.25,294.45L447.28,293.77L449.55,288.99L448.09,284.22L451.9,280.47L454.02,278.2L454.6,280.8L454.02,283.37L455.76,283.31z"
375
- },
376
- {
377
- "id":"IL",
378
- "title":"Israel",
379
- "d":"M575.41,366.82L574.92,367.87L573.9,367.41L573.32,369.61L574.02,369.97L573.31,370.43L573.18,371.29L574.5,370.84L574.57,372.11L573.17,377.28L571.33,371.73L572.14,370.65L571.95,370.46L572.69,368.93L573.26,366.43L573.66,365.59L573.74,365.56L574.68,365.56L574.94,364.98L575.69,364.93L575.73,366.3L575.35,366.8z"
380
- },
381
- {
382
- "id":"IN",
383
- "title":"India",
384
- "d":"M748.36,382.43L748.14,381.23L745.12,380.76L746.07,379.42L744.75,377.44L742.75,378.78L740.4,378L737.17,380.03L734.62,382.38L732.36,382.78L733.5,383.78L733.3,385.71L731.01,385.8L728.65,385.59L726.88,386.08L724.33,384.89L724.28,384.26L724.04,381.78L722.33,382.45L722.11,383.8L722.48,385.79L722.16,387.03L719.83,387.08L716.45,386.35L714.29,386.06L712.67,384.47L708.83,384.06L705.17,382.29L702.53,380.74L699.81,379.54L700.9,376.55L702.68,375.09L698.78,372.82L696.03,370.76L695.24,367.13L697.25,367.57L697.34,365.88L696.23,364.17L696.41,362.43L696.46,362.43L697.7,362.33L699.3,360.1L700.21,357.34L697.33,355.97L693.45,357.34L693.31,357.38L693.5,357.44L688.89,356.05L688.06,353.39L685.99,351.76L684.35,352.15L682.93,352.8L681.65,352.96L681.53,353.07L678.45,355.41L678.81,356.56L679.77,356.55L682.81,359.16L680.94,360.84L681.52,365.64L683.9,366.63L683.99,366.6L684,366.64L686.27,368.27L683.88,370.18L683.92,372.51L681.2,375.75L679.44,379.01L676.51,382.33L673.25,382.09L670.16,385.39L672,386.79L672.32,389.18L673.89,390.74L674.45,393.38L668.28,393.37L666.41,395.41L669.7,397.99L670.53,399.17L669.18,400.26L672.84,403.89L674.82,404.25L678.9,402.46L679.44,405.26L679.43,408.84L680.27,412.61L681.43,418.25L683.98,422.22L684.47,424.02L685.16,427.6L686.65,430.34L687.63,431.68L688.71,434.54L690.01,438.5L692.66,441.13L693.79,440.32L694.73,438.4L697.29,437.6L696.44,436.67L697.71,434.52L699.16,434.38L699.18,429.55L700.36,426.84L700.21,424.47L699.63,420.72L700.47,418.52L701.78,418.36L704.31,417.33L705.71,416.61L705.71,415.27L708.5,413.36L710.61,411.51L713.75,408.05L717.78,406.05L719.28,404.29L719.12,402.04L722.58,401.42L724.48,401.46L724.89,400.36L724.45,397.88L723.48,395.6L723.95,393.76L722.23,392.94L722.85,391.82L724.6,390.67L722.58,389.04L723.57,386.93L725.79,388.27L727.13,388.43L727.38,390.58L730.04,391L732.65,390.95L734.26,391.48L732.97,394.07L731.71,394.25L730.85,395.98L732.38,397.56L732.84,395.62L733.62,395.61L735.09,400.41L736.48,399.69L736.18,398.41L736.81,397.38L736.92,394.23L739.11,394.93L740.36,392.41L740.51,390.91L742.05,388.31L741.97,386.53L745.6,384.37L747.6,384.94L747.37,383.01z"
385
- },
386
- {
387
- "id":"IQ",
388
- "title":"Iraq",
389
- "d":"M602.61,355.77L604.44,356.81L604.66,358.81L603.24,359.98L602.59,362.62L604.54,365.8L607.97,367.62L609.42,370.12L608.96,372.49L609.85,372.49L609.88,374.22L611.43,375.91L609.77,375.76L607.88,375.49L605.82,378.57L600.61,378.31L592.71,371.82L588.53,369.53L585.15,368.64L584.02,364.6L590.23,361.1L591.29,356.98L591.02,354.46L592.56,353.6L594,351.42L595.2,350.87L598.46,351.33L599.45,352.22L600.79,351.63z"
390
- },
391
- {
392
- "id":"IR",
393
- "title":"Iran",
394
- "d":"M626.44,351.53L628.91,350.85L630.9,348.83L632.77,348.93L634,348.27L636,348.6L639.1,350.39L641.34,350.78L644.54,353.87L646.63,353.99L646.88,356.9L645.74,361.15L644.97,363.6L646.19,364.09L644.99,365.92L645.91,368.56L646.13,370.65L648.25,371.2L648.48,373.3L645.94,376.23L647.32,377.91L648.45,379.84L651.13,381.24L651.21,384.01L652.55,384.52L652.78,385.96L648.74,387.57L647.68,391.17L642.41,390.24L639.35,389.53L636.19,389.12L634.99,385.31L633.65,384.75L631.49,385.31L628.67,386.82L625.24,385.79L622.41,383.38L619.71,382.48L617.84,379.47L615.77,375.2L614.26,375.72L612.48,374.65L611.43,375.91L609.88,374.22L609.85,372.49L608.96,372.49L609.42,370.12L607.97,367.62L604.54,365.8L602.59,362.62L603.24,359.98L604.66,358.81L604.44,356.81L602.61,355.77L600.79,351.63L599.26,348.8L599.8,347.71L598.93,343.59L600.85,342.56L601.29,343.93L602.71,345.59L604.63,346.06L605.65,345.96L608.96,343.3L610.01,343.03L610.83,344.1L609.87,345.88L611.62,347.74L612.31,347.57L613.2,350.18L615.86,350.91L617.81,352.67L621.79,353.27L626.17,352.35z"
395
- },
396
- {
397
- "id":"IS",
398
- "title":"Iceland",
399
- "d":"M434.57,212.43L433.93,216.91L437.09,221.51L433.45,226.52L425.36,230.9L422.94,232.05L419.25,231.12L411.43,229.11L414.19,226.27L408.09,223.07L413.05,221.79L412.93,219.82L407.05,218.25L408.94,213.78L413.19,212.75L417.56,217.43L421.82,213.68L425.35,215.64L429.92,211.93z"
400
- },
401
- {
402
- "id":"IT",
403
- "title":"Italy",
404
- "d":"M518.77,347.88l-1.01,2.78l0.42,1.09l-0.59,1.79l-2.14,-1.31l-1.43,-0.38l-3.91,-1.79l0.39,-1.82l3.28,0.32l2.86,-0.39L518.77,347.88zM501.08,337.06l1.68,2.62l-0.39,4.81l-1.27,-0.23l-1.14,1.2l-1.06,-0.95l-0.11,-4.38l-0.64,-2.1l1.54,0.19L501.08,337.06zM509.95,315.46l4.01,1.05l-0.3,1.99l0.67,1.71l-2.23,-0.58l-2.28,1.42l0.16,1.97l-0.34,1.12l0.92,1.99l2.63,1.95l1.41,3.17l3.12,3.05l2.2,-0.02l0.68,0.83l-0.79,0.74l2.51,1.35l2.06,1.12l2.4,1.92l0.29,0.68l-0.52,1.31l-1.56,-1.7l-2.44,-0.6l-1.18,2.36l2.03,1.34l-0.33,1.88l-1.17,0.21l-1.5,3.06l-1.17,0.27l0.01,-1.08l0.57,-1.91l0.61,-0.77l-1.09,-2.09l-0.86,-1.83l-1.16,-0.46l-0.83,-1.58l-1.8,-0.67l-1.21,-1.49l-2.07,-0.24l-2.19,-1.68l-2.56,-2.45l-1.91,-2.19l-0.87,-3.8l-1.4,-0.45l-2.28,-1.29l-1.29,0.53l-1.62,1.8l-1.17,0.28l0.32,-1.68l-1.52,-0.49l-0.72,-3.04l0.97,-1.21l-0.83,-1.5l0.12,-1.13l1.21,0.86l1.35,-0.19l1.57,-1.36l0.49,0.64l1.34,-0.13l0.61,-1.63l2.07,0.51l1.24,-0.68l0.22,-1.67l1.7,0.58l0.33,-0.78l2.77,-0.71L509.95,315.46z"
405
- },
406
- {
407
- "id":"JM",
408
- "title":"Jamaica",
409
- "d":"M257.76,410.96L259.65,411.22L261.14,411.93L261.6,412.73L259.63,412.78L258.78,413.27L257.21,412.8L255.61,411.73L255.94,411.06L257.12,410.86z"
410
- },
411
- {
412
- "id":"JO",
413
- "title":"Jordan",
414
- "d":"M574.92,367.87L575.41,366.82L578.53,368.14L584.02,364.6L585.15,368.64L584.62,369.13L579,370.78L581.8,374.04L580.87,374.58L580.41,375.67L578.27,376.11L577.6,377.27L576.38,378.25L573.26,377.74L573.17,377.28L574.57,372.11L574.5,370.84L574.92,369.88z"
415
- },
416
- {
417
- "id":"JP",
418
- "title":"Japan",
419
- "d":"M852.76,362.01l0.36,1.15l-1.58,2.03l-1.15,-1.07l-1.44,0.78l-0.74,1.95l-1.83,-0.95l0.02,-1.58l1.55,-2l1.59,0.39l1.15,-1.42L852.76,362.01zM870.53,351.73l-1.06,2.78l0.49,1.73l-1.46,2.42l-3.58,1.6l-4.93,0.21l-4,3.84l-1.88,-1.29L854,360.5l-4.88,0.75l-3.32,1.59l-3.28,0.06l2.84,2.46l-1.87,5.61l-1.81,1.37l-1.36,-1.27l0.69,-2.96l-1.77,-0.96l-1.14,-2.28l2.65,-1.03l1.47,-2.11l2.82,-1.75l2.06,-2.33l5.58,-1.02l3,0.7l2.93,-6.17l1.87,1.67l4.11,-3.51l1.59,-1.38l1.76,-4.38l-0.48,-4.1l1.18,-2.33l2.98,-0.68l1.53,5.11l-0.08,2.94l-2.59,3.6L870.53,351.73zM878.76,325.8l1.97,0.83l1.98,-1.65l0.62,4.35l-4.16,1.05l-2.46,3.76l-4.41,-2.58l-1.53,4.12l-3.12,0.06l-0.39,-3.74l1.39,-2.94l3,-0.21l0.82,-5.38l0.83,-3.09l3.29,4.12L878.76,325.8z"
420
- },
421
- {
422
- "id":"KE",
423
- "title":"Kenya",
424
- "d":"M590.19,465.78L591.85,468.07L589.89,469.19L589.2,470.35L588.14,470.55L587.75,472.52L586.85,473.64L586.3,475.5L585.17,476.42L581.15,473.63L580.95,472.01L570.79,466.34L570.31,466.03L570.29,463.08L571.09,461.95L572.47,460.11L573.49,458.08L572.26,454.88L571.93,453.48L570.6,451.54L572.32,449.87L574.22,448.03L575.68,448.5L575.68,450.07L576.64,450.98L578.59,450.98L582.14,453.36L583.02,453.38L583.68,453.31L584.3,453.63L586.17,453.85L587,452.69L589.56,451.52L590.69,452.46L592.61,452.46L590.16,455.63z"
425
- },
426
- {
427
- "id":"KG",
428
- "title":"Kyrgyzstan",
429
- "d":"M674.22,333.11L674.85,331.45L676.69,330.91L681.31,332.22L681.74,329.98L683.33,329.18L687.33,330.79L688.35,330.37L693,330.47L697.16,330.87L698.56,332.24L700.29,332.79L699.9,333.65L695.48,335.68L694.48,337.16L690.88,337.6L689.82,339.95L686.85,339.46L684.92,340.18L682.24,341.9L682.63,342.75L681.83,343.58L676.53,344.13L673.06,342.96L670.02,343.24L670.29,341.14L673.34,341.75L674.37,340.62L676.5,340.98L680.09,338.34L676.77,336.38L674.77,337.31L672.7,335.91L675.05,333.48z"
430
- },
431
- {
432
- "id":"KH",
433
- "title":"Cambodia",
434
- "d":"M765.44,433.6L764.3,432.12L762.89,429.18L762.22,425.73L764.02,423.35L767.64,422.8L770.27,423.21L772.58,424.34L773.85,422.35L776.34,423.41L776.99,425.33L776.64,428.75L771.93,430.94L773.16,432.67L770.22,432.87L767.79,434.01z"
435
- },
436
- {
437
- "id":"KP",
438
- "title":"North Korea",
439
- "d":"M841.55,332.62L841.94,333.29L840.88,333.06L839.66,334.33L838.82,335.61L838.93,338.28L837.48,339.09L836.98,339.74L835.92,340.82L834.05,341.42L832.84,342.4L832.75,343.97L832.42,344.37L833.54,344.95L835.13,346.53L834.72,347.39L833.53,347.62L831.55,347.79L830.46,349.39L829.2,349.27L829.03,349.59L827.67,348.92L827.33,349.58L826.51,349.87L826.41,349.21L825.68,348.89L824.93,348.32L825.7,346.75L826.36,346.33L826.11,345.68L826.82,343.74L826.63,343.15L825,342.75L823.68,341.78L825.96,339.43L829.05,337.45L830.98,334.8L832.31,335.97L834.73,336.11L834.29,334.14L838.62,332.51L839.74,330.38z"
440
- },
441
- {
442
- "id":"KR",
443
- "title":"South Korea",
444
- "d":"M835.13,346.53L837.55,350.71L838.24,352.98L838.26,356.96L837.21,358.84L834.67,359.5L832.43,360.91L829.9,361.2L829.59,359.35L830.11,356.78L828.87,353.18L830.95,352.59L829.03,349.59L829.2,349.27L830.46,349.39L831.55,347.79L833.53,347.62L834.72,347.39z"
445
- },
446
- {
447
- "id":"KV",
448
- "title":"Kosovo",
449
- "d":"M533.47,333.92L533.34,334.69L532.98,334.66L532.8,333.29L532.13,332.91L531.53,331.89L532.05,331.04L532.72,330.76L533.11,329.5L533.61,329.28L534.01,329.82L534.54,330.06L534.9,330.67L535.36,330.85L535.91,331.55L536.31,331.53L535.99,332.46L535.66,332.91L535.75,333.19L535.12,333.33z"
450
- },
451
- {
452
- "id":"KW",
453
- "title":"Kuwait",
454
- "d":"M609.77,375.76L610.35,377.17L610.1,377.9L611,380.31L609.02,380.39L608.32,378.88L605.82,378.57L607.88,375.49z"
455
- },
456
- {
457
- "id":"KZ",
458
- "title":"Kazakhstan",
459
- "d":"M674.22,333.11L672.61,333.81L668.92,336.42L667.69,339.07L666.64,339.09L665.88,337.34L662.31,337.22L661.74,334.16L660.37,334.13L660.58,330.33L657.23,327.53L652.42,327.83L649.13,328.39L646.45,324.89L644.16,323.41L639.81,320.57L639.29,320.22L632.07,322.57L632.18,336.7L630.74,336.88L628.78,333.95L626.88,332.89L623.7,333.68L622.46,334.93L622.3,334.01L622.99,332.44L622.46,331.12L619.21,329.82L617.94,326.35L616.4,325.37L616.3,324.09L619.03,324.46L619.14,321.58L621.52,320.94L623.97,321.53L624.48,317.62L623.98,315.11L621.17,315.31L618.79,314.31L615.54,316.1L612.93,316.96L611.5,316.3L611.79,314.2L610,311.44L607.92,311.55L605.54,308.72L607.16,305.5L606.34,304.63L608.57,299.86L611.46,302.39L611.81,299.2L617.59,294.35L621.97,294.23L628.16,297.33L631.47,299.12L634.45,297.25L638.89,297.17L642.48,299.46L643.3,298.15L647.23,298.34L647.94,296.23L643.39,293.14L646.08,290.91L645.56,289.66L648.25,288.45L646.23,285.25L647.51,283.63L658,281.97L659.37,280.78L666.39,278.99L668.91,276.95L673.95,278.01L674.83,283.02L677.76,281.86L681.36,283.49L681.13,286.07L683.82,285.8L690.84,281.31L689.82,282.81L693.4,286.47L699.66,298.05L701.16,295.72L705.02,298.28L709.05,297.14L710.59,297.94L711.94,300.49L713.9,301.33L715.1,303.18L718.71,302.6L720.2,305.23L718.06,308.06L715.73,308.46L715.6,312.64L714.04,314.5L708.48,313.15L706.46,320.41L705.02,321.3L699.47,322.88L701.99,329.63L700.07,330.63L700.29,332.79L698.56,332.24L697.16,330.87L693,330.47L688.35,330.37L687.33,330.79L683.33,329.18L681.74,329.98L681.31,332.22L676.69,330.91L674.85,331.45z"
460
- },
461
- {
462
- "id":"LA",
463
- "title":"Lao People's Democratic Republic",
464
- "d":"M770.27,423.21L771.18,421.91L771.31,419.47L769.04,416.94L768.86,414.07L766.73,411.69L764.61,411.49L764.05,412.51L762.4,412.59L761.56,412.08L758.61,413.82L758.54,411.2L759.23,408.09L757.34,407.96L757.18,406.18L755.96,405.26L756.56,404.16L758.95,402.22L759.2,402.92L760.69,403L760.27,399.57L761.72,399.13L763.36,401.5L764.62,404.22L768.07,404.25L769.16,406.84L767.37,407.61L766.56,408.68L769.92,410.44L772.25,413.9L774.02,416.47L776.14,418.49L776.85,420.53L776.34,423.41L773.85,422.35L772.58,424.34z"
465
- },
466
- {
467
- "id":"LB",
468
- "title":"Lebanon",
469
- "d":"M575.69,364.93L574.94,364.98L574.68,365.56L573.74,365.56L574.74,362.83L576.13,360.45L576.19,360.33L577.45,360.51L577.91,361.83L576.38,363.1z"
470
- },
471
- {
472
- "id":"LK",
473
- "title":"Sri Lanka",
474
- "d":"M704.57,442.37L704.15,445.29L702.98,446.09L700.54,446.73L699.2,444.5L698.71,440.47L699.98,435.89L701.91,437.46L703.22,439.44z"
475
- },
476
- {
477
- "id":"LR",
478
- "title":"Liberia",
479
- "d":"M453.63,451.22L452.89,451.24L450,449.91L447.46,447.78L445.07,446.25L443.18,444.44L443.85,443.54L444,442.73L445.26,441.2L446.57,439.89L447.17,439.82L447.9,439.51L449.07,441.23L448.89,442.36L449.43,442.96L450.23,442.97L450.8,441.84L451.59,441.91L451.46,442.73L451.74,444.09L451.13,445.33L451.95,446.1L452.84,446.29L454.03,447.46L454.11,448.57L453.84,448.92z"
480
- },
481
- {
482
- "id":"LS",
483
- "title":"Lesotho",
484
- "d":"M556.5,547.75L557.48,548.71L556.62,550.27L556.14,551.32L554.58,551.82L554.06,552.86L553.06,553.18L550.96,550.69L552.45,548.66L553.97,547.41L555.28,546.77z"
485
- },
486
- {
487
- "id":"LT",
488
- "title":"Lithuania",
489
- "d":"M538.99,282.09L538.76,280.87L539.06,279.54L537.82,278.77L534.89,277.91L534.29,273.75L537.5,272.2L542.2,272.53L544.96,272.03L545.35,273.08L546.84,273.4L549.54,275.82L549.8,278.02L547.5,279.59L546.85,282.31L543.81,284.11L541.1,284.07L540.43,282.61z"
490
- },
491
- {
492
- "id":"LU",
493
- "title":"Luxembourg",
494
- "d":"M492.2,301.29L492.76,302.27L492.6,304.16L491.79,304.26L491.16,303.88L491.47,301.45z"
495
- },
496
- {
497
- "id":"LV",
498
- "title":"Latvia",
499
- "d":"M534.29,273.75L534.39,269.94L535.77,266.7L538.41,264.92L540.63,268.8L542.88,268.7L543.42,264.71L545.81,263.78L547.04,264.43L549.45,266.37L551.77,266.38L553.12,267.57L553.35,270.06L554.26,273.05L551.24,274.98L549.54,275.82L546.84,273.4L545.35,273.08L544.96,272.03L542.2,272.53L537.5,272.2z"
500
- },
501
- {
502
- "id":"LY",
503
- "title":"Libya",
504
- "d":"M516.89,397.93L514.91,399.05L513.33,397.39L508.9,396.08L507.67,394.17L505.45,392.75L504.14,393.31L503.15,391.6L503.04,390.28L501.38,388.02L502.5,386.73L502.25,384.76L502.61,383.04L502.41,381.6L502.9,379.01L502.75,377.53L501.84,374.69L503.21,373.94L503.45,372.56L503.15,371.21L505.08,369.95L505.94,368.9L507.31,367.95L507.47,365.4L510.76,366.55L511.94,366.26L514.28,366.82L518,368.29L519.31,371.21L521.83,371.85L525.78,373.21L528.77,374.82L530.14,373.98L531.48,372.49L530.83,369.98L531.71,368.38L533.73,366.83L535.66,366.38L539.45,367.06L540.41,368.54L541.45,368.55L542.34,369.11L545.13,369.5L545.81,370.58L544.8,372.15L545.23,373.54L544.51,375.54L545.35,378.12L545.35,389.3L545.35,400.53L545.35,406.49L542.13,406.5L542.09,407.74L530.91,402.04L519.72,396.27z"
505
- },
506
- {
507
- "id":"MA",
508
- "title":"Morocco",
509
- "d":"M471.36,366.31L470.39,362.78L470.23,360.73L469.17,358.55L467.95,358.51L465.05,357.76L462.38,358L460.69,356.54L458.63,356.52L457.74,358.63L455.87,362.14L453.79,363.53L450.98,365.06L449.18,367.3L448.8,369.04L447.73,371.86L448.43,375.89L446.09,378.57L444.69,379.42L442.48,381.59L439.87,381.94L438.46,383.15L438.41,383.19L436.63,386.39L434.77,387.53L433.75,389.44L433.69,391.09L432.94,392.88L432,393.37L430.44,395.31L429.48,397.46L429.66,398.48L428.74,400.05L427.66,400.87L427.53,402.26L427.41,403.53L428.02,402.53L439,402.55L438.47,398.2L439.16,396.65L441.78,396.38L441.69,388.52L450.9,388.69L450.9,383.96L450.96,383.35L450.96,383.14L450.93,379.39L455.46,377.03L458.26,376.54L460.55,375.68L461.63,374.06L464.91,372.77L465.03,370.36L466.65,370.07L467.92,368.86L471.59,368.3L472.1,367.02z"
510
- },
511
- {
512
- "id":"MD",
513
- "title":"Moldova",
514
- "d":"M549.89,309.45L550.56,308.83L552.42,308.41L554.49,309.72L555.64,309.88L556.91,311L556.71,312.41L557.73,313.08L558.13,314.8L559.11,315.84L558.92,316.44L559.44,316.86L558.7,317.15L557.04,317.04L556.77,316.47L556.18,316.8L556.38,317.52L555.61,318.81L555.12,320.18L554.42,320.62L553.91,318.79L554.21,317.07L554.12,315.28L552.5,312.84L551.61,311.09L550.74,309.85z"
515
- },
516
- {
517
- "id":"ME",
518
- "title":"Montenegro",
519
- "d":"M530.77,332.23L530.6,331.51L529.38,333.38L529.57,334.57L528.98,334.28L528.2,333.05L526.98,332.3L527.29,331.66L527.7,329.56L528.61,328.67L529.14,328.31L529.88,328.97L530.29,329.51L531.21,329.92L532.28,330.71L532.05,331.04L531.53,331.89z"
520
- },
521
- {
522
- "id":"MG",
523
- "title":"Madagascar",
524
- "d":"M614.17,498.4L614.91,499.61L615.6,501.5L616.06,504.96L616.78,506.31L616.5,507.69L616.01,508.55L615.05,506.85L614.53,507.71L615.06,509.85L614.81,511.09L614.04,511.76L613.86,514.24L612.76,517.66L611.38,521.75L609.64,527.42L608.57,531.63L607.3,535.18L605.02,535.91L602.57,537.22L600.96,536.43L598.73,535.33L597.96,533.71L597.77,531L596.79,528.58L596.53,526.41L597.03,524.25L598.32,523.73L598.33,522.74L599.67,520.48L599.92,518.6L599.27,517.2L598.74,515.35L598.52,512.65L599.5,511.02L599.87,509.17L601.27,509.07L602.84,508.47L603.87,507.95L605.11,507.91L606.7,506.26L609.01,504.48L609.85,503.04L609.47,501.81L610.66,502.16L612.21,500.17L612.26,498.45L613.19,497.17z"
525
- },
526
- {
527
- "id":"MK",
528
- "title":"Macedonia",
529
- "d":"M532.98,334.66L533.34,334.69L533.47,333.92L535.12,333.33L535.75,333.19L536.71,332.97L538,332.91L539.41,334.12L539.61,336.59L539.07,336.71L538.61,337.36L537.09,337.29L536.02,338.1L534.19,338.42L533.03,337.52L532.63,335.93z"
530
- },
531
- {
532
- "id":"ML",
533
- "title":"Mali",
534
- "d":"M441.13,422.22L442.07,421.7L442.54,420L443.43,419.93L445.39,420.73L446.97,420.16L448.05,420.35L448.48,419.71L459.73,419.67L460.35,417.64L459.86,417.28L458.51,404.6L457.16,391.54L461.45,391.49L470.91,398.14L480.37,404.69L481.03,406.08L482.78,406.93L484.08,407.41L484.11,409.29L487.22,409L487.23,415.75L485.69,417.69L485.45,419.48L482.96,419.93L479.14,420.18L478.1,421.21L476.3,421.32L474.51,421.33L473.81,420.78L472.26,421.19L469.64,422.39L469.11,423.29L466.93,424.57L466.55,425.31L465.38,425.89L464.02,425.51L463.25,426.21L462.84,428.17L460.61,430.53L460.68,431.49L459.91,432.7L460.1,434.34L458.94,434.76L458.29,435.12L457.85,433.91L457.04,434.23L456.56,434.17L456.04,435L453.88,434.97L453.1,434.55L452.74,434.81L451.88,433.99L452.03,433.15L451.68,432.81L451.08,433.09L451.19,432.17L451.77,431.44L450.62,430.25L450.28,429.46L449.66,428.84L449.1,428.76L448.43,429.16L447.52,429.54L446.75,430.16L445.55,429.93L444.77,429.21L444.31,429.11L443.58,429.49L443.13,429.5L442.97,428.45L443.1,427.56L442.86,426.46L441.81,425.65L441.26,424.01z"
535
- },
536
- {
537
- "id":"MM",
538
- "title":"Myanmar",
539
- "d":"M754.36,405.95L752.72,407.23L750.74,407.37L749.46,410.56L748.28,411.09L749.64,413.66L751.42,415.79L752.56,417.71L751.54,420.23L750.57,420.76L751.24,422.21L753.11,424.49L753.43,426.09L753.38,427.42L754.48,430.02L752.94,432.67L751.58,435.58L751.31,433.48L752.17,431.3L751.23,429.62L751.46,426.51L750.32,425.03L749.41,421.59L748.9,417.93L747.69,415.53L745.84,416.99L742.65,419.05L741.08,418.79L739.34,418.12L740.31,414.51L739.73,411.77L737.53,408.38L737.87,407.31L736.23,406.93L734.24,404.51L734.06,402.1L735.04,402.56L735.09,400.41L736.48,399.69L736.18,398.41L736.81,397.38L736.92,394.23L739.11,394.93L740.36,392.41L740.51,390.91L742.05,388.31L741.97,386.53L745.6,384.37L747.6,384.94L747.37,383.01L748.36,382.43L748.14,381.23L749.78,380.99L750.72,382.85L751.94,383.6L752.03,386L751.91,388.57L749.26,391.15L748.92,394.78L751.88,394.28L752.55,397.08L754.33,397.67L753.51,400.17L755.59,401.3L756.81,401.85L758.86,400.98L758.95,402.22L756.56,404.16L755.96,405.26z"
540
- },
541
- {
542
- "id":"MN",
543
- "title":"Mongolia",
544
- "d":"M721.29,304.88L724.25,304.14L729.6,300.4L733.87,298.33L736.3,299.68L739.23,299.74L741.1,301.79L743.9,301.94L747.96,303.03L750.68,300L749.54,297.4L752.45,292.74L755.59,294.61L758.13,295.14L761.43,296.29L761.96,299.61L765.95,301.45L768.6,300.64L772.14,300.07L774.95,300.65L777.7,302.74L779.4,304.94L782,304.9L785.53,305.59L788.11,304.53L791.8,303.82L795.91,300.76L797.59,301.23L799.06,302.69L802.4,302.33L801.04,305.58L799.06,309.8L799.78,311.51L801.37,310.98L804.13,311.63L806.29,310.09L808.54,311.42L811.08,314.31L810.77,315.76L808.56,315.3L804.49,315.84L802.51,317L800.46,319.66L796.18,321.21L793.39,323.31L790.51,322.51L788.93,322.15L787.46,324.69L788.35,326.19L788.81,327.47L786.84,328.77L784.83,330.82L781.56,332.15L777.35,332.3L772.82,333.61L769.56,335.62L768.32,334.46L764.93,334.46L760.78,332.17L758.01,331.6L754.28,332.13L748.49,331.28L745.4,331.37L743.76,329.1L742.48,325.53L740.75,325.1L737.36,322.65L733.58,322.1L730.25,321.42L729.24,319.69L730.32,314.96L728.39,311.65L724.39,310.08L722.03,307.85z"
545
- },
546
- {
547
- "id":"MR",
548
- "title":"Mauritania",
549
- "d":"M441.13,422.22L439.28,420.24L437.58,418.11L435.72,417.34L434.38,416.49L432.81,416.52L431.45,417.15L430.05,416.9L429.09,417.83L428.85,416.27L429.63,414.83L429.98,412.08L429.67,409.17L429.33,407.7L429.61,406.23L428.89,404.81L427.41,403.53L428.02,402.53L439,402.55L438.47,398.2L439.16,396.65L441.78,396.38L441.69,388.52L450.9,388.69L450.9,383.96L461.45,391.49L457.16,391.54L458.51,404.6L459.86,417.28L460.35,417.64L459.73,419.67L448.48,419.71L448.05,420.35L446.97,420.16L445.39,420.73L443.43,419.93L442.54,420L442.07,421.7z"
550
- },
551
- {
552
- "id":"MW",
553
- "title":"Malawi",
554
- "d":"M572.15,495.69L571.37,497.85L572.15,501.57L573.13,501.53L574.14,502.45L575.31,504.53L575.55,508.25L574.34,508.86L573.48,510.87L571.65,509.08L571.45,507.04L572.04,505.69L571.87,504.54L570.77,503.81L569.99,504.07L568.38,502.69L566.91,501.95L567.76,499.29L568.64,498.3L568.1,495.94L568.66,493.64L569.14,492.87L568.43,490.47L567.11,489.21L569.85,489.73L570.42,490.51L571.37,491.83z"
555
- },
556
- {
557
- "id":"MX",
558
- "title":"Mexico",
559
- "d":"M202.89,388.72L201.8,391.43L201.31,393.64L201.1,397.72L200.83,399.19L201.32,400.83L202.19,402.3L202.75,404.61L204.61,406.82L205.26,408.51L206.36,409.96L209.34,410.75L210.5,411.97L212.96,411.15L215.09,410.86L217.19,410.33L218.96,409.82L220.74,408.62L221.41,406.89L221.64,404.4L222.13,403.53L224.02,402.74L226.99,402.05L229.47,402.15L231.17,401.9L231.84,402.53L231.75,403.97L230.24,405.74L229.58,407.55L230.09,408.06L229.67,409.34L228.97,411.63L228.26,410.88L227.67,410.93L227.14,410.97L226.14,412.74L225.63,412.39L225.29,412.53L225.31,412.96L222.72,412.93L220.1,412.93L220.1,414.58L218.83,414.58L219.87,415.56L220.91,416.23L221.22,416.86L221.68,417.04L221.6,418.02L218.01,418.03L216.66,420.39L217.05,420.93L216.73,421.61L216.66,422.45L213.49,419.34L212.04,418.4L209.75,417.64L208.19,417.85L205.93,418.94L204.52,419.23L202.54,418.47L200.44,417.91L197.82,416.58L195.72,416.17L192.54,414.82L190.2,413.42L189.49,412.64L187.92,412.47L185.05,411.54L183.88,410.2L180.87,408.53L179.47,406.66L178.8,405.21L179.73,404.92L179.44,404.07L180.09,403.3L180.1,402.26L179.16,400.92L178.9,399.72L177.96,398.2L175.49,395.18L172.67,392.79L171.31,390.88L168.9,389.62L168.39,388.86L168.82,386.94L167.39,386.21L165.73,384.69L165.03,382.5L163.52,382.24L161.9,380.58L160.58,379.03L160.46,378.03L158.95,375.61L157.96,373.13L158,371.88L155.97,370.59L155.04,370.73L153.44,369.83L152.99,371.16L153.45,372.72L153.72,375.15L154.69,376.48L156.77,378.69L157.23,379.44L157.66,379.66L158.02,380.76L158.52,380.71L159.09,382.75L159.94,383.55L160.53,384.66L162.3,386.26L163.23,389.15L164.06,390.5L164.84,391.94L164.99,393.56L166.34,393.66L167.47,395.05L168.49,396.41L168.42,396.95L167.24,398.06L166.74,398.05L166,396.2L164.17,394.47L162.15,392.99L160.71,392.21L160.8,389.96L160.38,388.28L159.04,387.32L157.11,385.93L156.74,386.33L156.04,385.51L154.31,384.76L152.66,382.93L152.86,382.69L154.01,382.87L155.05,381.69L155.16,380.26L153,377.99L151.36,377.1L150.32,375.09L149.28,372.97L147.98,370.36L146.84,367.4L150.03,367.15L153.59,366.79L153.33,367.43L157.56,369.04L163.96,371.35L169.54,371.32L171.76,371.32L171.76,369.97L176.62,369.97L177.64,371.14L179.08,372.17L180.74,373.6L181.67,375.29L182.37,377.05L183.82,378.02L186.15,378.98L187.91,376.45L190.21,376.39L192.18,377.67L193.59,379.85L194.56,381.71L196.21,383.51L196.83,385.7L197.62,387.17L199.8,388.13L201.79,388.81z"
560
- },
561
- {
562
- "id":"MY",
563
- "title":"Malaysia",
564
- "d":"M758.65,446.07l0.22,1.44l1.85,-0.33l0.92,-1.15l0.64,0.26l1.66,1.69l1.18,1.87l0.16,1.88l-0.3,1.27l0.27,0.96l0.21,1.65l0.99,0.77l1.1,2.46l-0.05,0.94l-1.99,0.19l-2.65,-2.06l-3.32,-2.21l-0.33,-1.42l-1.62,-1.87l-0.39,-2.31l-1.01,-1.52l0.31,-2.04l-0.62,-1.19l0.49,-0.5L758.65,446.07zM807.84,450.9l-2.06,0.95l-2.43,-0.47h-3.22l-0.97,3.17l-1.08,0.97l-1.44,3.88l-2.29,0.59l-2.65,-0.78l-1.34,0.24l-1.63,1.41l-1.79,-0.2l-1.81,0.57l-1.92,-1.57l-0.47,-1.86l2.05,0.96l2.17,-0.52l0.56,-2.36l1.2,-0.53l3.36,-0.6l2.01,-2.21l1.38,-1.77l1.28,1.45l0.59,-0.95l1.34,0.09l0.16,-1.78l0.13,-1.38l2.16,-1.95l1.41,-2.19l1.13,-0.01l1.44,1.42l0.13,1.22l1.85,0.78l2.34,0.84l-0.2,1.1l-1.88,0.14L807.84,450.9z"
565
- },
566
- {
567
- "id":"MZ",
568
- "title":"Mozambique",
569
- "d":"M572.15,495.69L574.26,495.46L577.63,496.26L578.37,495.9L580.32,495.83L581.32,494.98L583,495.02L586.06,493.92L588.29,492.28L588.75,493.55L588.63,496.38L588.98,498.88L589.09,503.36L589.58,504.76L588.75,506.83L587.66,508.84L585.87,510.64L583.31,511.75L580.15,513.16L576.98,516.31L575.9,516.85L573.94,518.94L572.79,519.63L572.55,521.75L573.88,524L574.43,525.76L574.47,526.66L574.96,526.51L574.88,529.47L574.43,530.88L575.09,531.4L574.67,532.67L573.5,533.76L571.19,534.8L567.82,536.46L566.59,537.61L566.83,538.91L567.54,539.12L567.3,540.76L565.18,540.74L564.94,539.36L564.52,537.97L564.28,536.86L564.78,533.43L564.05,531.26L562.71,527L565.66,523.59L566.4,521.44L566.83,521.17L567.14,519.43L566.69,518.55L566.81,516.35L567.36,514.31L567.35,510.62L565.9,509.68L564.56,509.47L563.96,508.75L562.66,508.14L560.32,508.2L560.14,507.12L559.87,505.07L568.38,502.69L569.99,504.07L570.77,503.81L571.87,504.54L572.04,505.69L571.45,507.04L571.65,509.08L573.48,510.87L574.34,508.86L575.55,508.25L575.31,504.53L574.14,502.45L573.13,501.53L572.15,501.57L571.37,497.85z"
570
- },
571
- {
572
- "id":"NA",
573
- "title":"Namibia",
574
- "d":"M521.08,546.54L519,544.15L517.9,541.85L517.28,538.82L516.59,536.57L515.65,531.85L515.59,528.22L515.23,526.58L514.14,525.34L512.69,522.87L511.22,519.3L510.61,517.45L508.32,514.58L508.15,512.33L509.5,511.78L511.18,511.28L513,511.37L514.67,512.69L515.09,512.48L526.46,512.36L528.4,513.76L535.19,514.17L540.34,512.98L542.64,512.31L544.46,512.48L545.56,513.14L545.59,513.38L544.01,514.04L543.15,514.05L541.37,515.2L540.29,513.99L535.97,515.02L533.88,515.11L533.8,525.68L531.04,525.79L531.04,534.65L531.03,546.17L528.53,547.8L527.03,548.03L525.26,547.43L524,547.2L523.53,545.84L522.42,544.97z"
575
- },
576
- {
577
- "id":"NC",
578
- "title":"New Caledonia",
579
- "d":"M940.08,523.48L942.38,525.34L943.83,526.72L942.77,527.45L941.22,526.63L939.22,525.28L937.41,523.69L935.56,521.59L935.17,520.58L936.37,520.63L937.95,521.64L939.18,522.65z"
580
- },
581
- {
582
- "id":"NE",
583
- "title":"Niger",
584
- "d":"M481.29,429.88L481.36,427.93L478.12,427.28L478.04,425.9L476.46,424.03L476.08,422.72L476.3,421.32L478.1,421.21L479.14,420.18L482.96,419.93L485.45,419.48L485.69,417.69L487.23,415.75L487.22,409L491.17,407.68L499.29,401.83L508.9,396.08L513.33,397.39L514.91,399.05L516.89,397.93L517.58,402.6L518.63,403.38L518.68,404.33L519.84,405.35L519.23,406.63L518.15,412.61L518.01,416.4L514.43,419.14L513.22,422.94L514.39,424L514.38,425.85L516.18,425.92L515.9,427.26L515.11,427.43L515.02,428.33L514.49,428.4L512.6,425.27L511.94,425.15L509.75,426.75L507.58,425.92L506.07,425.75L505.26,426.15L503.61,426.07L501.96,427.29L500.53,427.36L497.14,425.88L495.81,426.58L494.38,426.53L493.33,425.45L490.51,424.38L487.5,424.72L486.77,425.34L486.38,426.99L485.57,428.14L485.38,430.68L483.24,429.04L482.23,429.05z"
585
- },
586
- {
587
- "id":"NG",
588
- "title":"Nigeria",
589
- "d":"M499.09,450.08L496.18,451.08L495.11,450.94L494.03,451.56L491.79,451.5L490.29,449.75L489.37,447.73L487.38,445.89L485.27,445.92L482.8,445.92L482.96,441.39L482.89,439.6L483.42,437.83L484.28,436.96L485.64,435.21L485.35,434.45L485.9,433.31L485.27,431.63L485.38,430.68L485.57,428.14L486.38,426.99L486.77,425.34L487.5,424.72L490.51,424.38L493.33,425.45L494.38,426.53L495.81,426.58L497.14,425.88L500.53,427.36L501.96,427.29L503.61,426.07L505.26,426.15L506.07,425.75L507.58,425.92L509.75,426.75L511.94,425.15L512.6,425.27L514.49,428.4L515.02,428.33L516.13,429.47L515.82,429.98L515.67,430.93L513.31,433.13L512.57,434.94L512.17,436.41L511.58,437.04L511.01,439.01L509.51,440.17L509.08,441.59L508.45,442.73L508.19,443.89L506.26,444.84L504.69,443.69L503.62,443.73L501.95,445.37L501.14,445.4L499.81,448.1z"
590
- },
591
- {
592
- "id":"NI",
593
- "title":"Nicaragua",
594
- "d":"M234.93,432.31L233.96,431.41L232.65,430.26L232.03,429.3L230.85,428.41L229.44,427.12L229.75,426.68L230.22,427.11L230.43,426.9L231.3,426.79L231.65,426.13L232.06,426.11L232,424.7L232.66,424.63L233.25,424.65L233.85,423.89L234.68,424.47L234.97,424.11L235.48,423.77L236.46,422.98L236.51,422.38L236.78,422.41L237.14,421.72L237.43,421.64L237.91,422.08L238.47,422.21L239.09,421.84L239.8,421.84L240.77,421.46L241.16,421.07L242.12,421.13L241.88,421.41L241.74,422.05L242.02,423.1L241.38,424.08L241.08,425.23L240.98,426.5L241.14,427.23L241.21,428.52L240.78,428.8L240.52,430.02L240.71,430.77L240.13,431.5L240.27,432.26L240.69,432.73L240.02,433.33L239.2,433.14L238.73,432.56L237.84,432.32L237.2,432.69L235.35,431.94z"
595
- },
596
- {
597
- "id":"NL",
598
- "title":"Netherlands",
599
- "d":"M492.28,285.98L494.61,286.11L495.14,287.69L494.44,291.92L493.73,293.63L492.04,293.63L492.52,298.32L490.97,297.28L489.2,295.33L486.6,296.26L484.55,295.91L485.99,294.67L488.45,287.93z"
600
- },
601
- {
602
- "id":"NO",
603
- "title":"Norway",
604
- "d":"M554.23,175.61l8.77,6.24l-3.61,2.23l3.07,5.11l-4.77,3.19l-2.26,0.72l1.19,-5.59l-3.6,-3.25l-4.35,2.78l-1.38,5.85l-2.67,3.44l-3.01,-1.87l-3.66,0.38l-3.12,-4.15l-1.68,2.09l-1.74,0.32l-0.41,5.08l-5.28,-1.22l-0.74,4.22l-2.69,-0.03l-1.85,5.24l-2.8,7.87l-4.35,9.5l1.02,2.23l-0.98,2.55l-2.78,-0.11l-1.82,5.91l0.17,8.04l1.79,2.98l-0.93,6.73l-2.33,3.81l-1.24,3.15l-1.88,-3.35l-5.54,6.27l-3.74,1.24l-3.88,-2.71l-1,-5.86l-0.89,-13.26l2.58,-3.88l7.4,-5.18l5.54,-6.59l5.13,-9.3l6.74,-13.76l4.7,-5.67l7.71,-9.89l6.15,-3.59l4.61,0.44l4.27,-6.99l5.11,0.38L554.23,175.61z"
605
- },
606
- {
607
- "id":"NP",
608
- "title":"Nepal",
609
- "d":"M722.33,382.45L722.11,383.8L722.48,385.79L722.16,387.03L719.83,387.08L716.45,386.35L714.29,386.06L712.67,384.47L708.83,384.06L705.17,382.29L702.53,380.74L699.81,379.54L700.9,376.55L702.68,375.09L703.84,374.31L706.09,375.31L708.92,377.4L710.49,377.86L711.43,379.39L713.61,380.02L715.89,381.41L719.06,382.14z"
610
- },
611
- {
612
- "id":"NZ",
613
- "title":"New Zealand",
614
- "d":"M960.38,588.63l0.64,1.53l1.99,-1.5l0.81,1.57v1.57l-1.04,1.74l-1.83,2.8l-1.43,1.54l1.03,1.86l-2.16,0.05l-2.4,1.46l-0.75,2.57l-1.59,4.03l-2.2,1.8l-1.4,1.16l-2.58,-0.09l-1.82,-1.34l-3.05,-0.28l-0.47,-1.48l1.51,-2.96l3.53,-3.87l1.81,-0.73l2.01,-1.47l2.4,-2.01l1.68,-1.98l1.25,-2.81l1.06,-0.95l0.42,-2.07l1.97,-1.7L960.38,588.63zM964.84,571.61l2.03,3.67l0.06,-2.38l1.27,0.95l0.42,2.65l2.26,1.15l1.89,0.28l1.6,-1.35l1.42,0.41l-0.68,3.15l-0.85,2.09l-2.14,-0.07l-0.75,1.1l0.26,1.56l-0.41,0.68l-1.06,1.97l-1.39,2.53l-2.17,1.49l-0.48,-0.98l-1.17,-0.54l1.62,-3.04l-0.92,-2.01l-3.02,-1.45l0.08,-1.31l2.03,-1.25l0.47,-2.74l-0.13,-2.28l-1.14,-2.34l0.08,-0.61l-1.34,-1.43l-2.21,-3.04l-1.17,-2.41l1.04,-0.27l1.53,1.89l2.18,0.89L964.84,571.61z"
615
- },
616
- {
617
- "id":"OM",
618
- "title":"Oman",
619
- "d":"M640.29,403.18l-1.05,2.04l-1.27,-0.16l-0.58,0.71l-0.45,1.5l0.34,1.98l-0.26,0.36l-1.29,-0.01l-1.75,1.1l-0.27,1.43l-0.64,0.62l-1.74,-0.02l-1.1,0.74l0.01,1.18l-1.36,0.81l-1.55,-0.27l-1.88,0.98l-1.3,0.16l-0.92,-2.04l-2.19,-4.84l8.41,-2.96l1.87,-5.97l-1.29,-2.14l0.07,-1.22l0.82,-1.26l0.01,-1.25l1.27,-0.6l-0.5,-0.42l0.23,-2l1.43,-0.01l1.26,2.09l1.57,1.11l2.06,0.4l1.66,0.55l1.27,1.74l0.76,1l1,0.38l-0.01,0.67l-1.02,1.79l-0.45,0.84L640.29,403.18zM633.37,388.64L633,389.2l-0.53,-1.06l0.82,-1.06l0.35,0.27L633.37,388.64z"
620
- },
621
- {
622
- "id":"PA",
623
- "title":"Panama",
624
- "d":"M256.88,443.21L255.95,442.4L255.35,440.88L256.04,440.13L255.33,439.94L254.81,439.01L253.41,438.23L252.18,438.41L251.62,439.39L250.48,440.09L249.87,440.19L249.6,440.78L250.93,442.3L250.17,442.66L249.76,443.08L248.46,443.22L247.97,441.54L247.61,442.02L246.68,441.86L246.12,440.72L244.97,440.54L244.24,440.21L243.04,440.21L242.95,440.82L242.63,440.4L242.78,439.84L243.01,439.27L242.9,438.76L243.32,438.42L242.74,438L242.72,436.87L243.81,436.62L244.81,437.63L244.75,438.23L245.87,438.35L246.14,438.12L246.91,438.82L248.29,438.61L249.48,437.9L251.18,437.33L252.14,436.49L253.69,436.65L253.58,436.93L255.15,437.03L256.4,437.52L257.31,438.36L258.37,439.14L258.03,439.56L258.68,441.21L258.15,442.05L257.24,441.85z"
625
- },
626
- {
627
- "id":"PE",
628
- "title":"Peru",
629
- "d":"M280.13,513.14L279.38,514.65L277.94,515.39L275.13,513.71L274.88,512.51L269.33,509.59L264.3,506.42L262.13,504.64L260.97,502.27L261.43,501.44L259.06,497.69L256.29,492.45L253.65,486.83L252.5,485.54L251.62,483.48L249.44,481.64L247.44,480.51L248.35,479.26L246.99,476.59L247.86,474.64L250.1,472.87L250.43,474.04L249.63,474.7L249.7,475.72L250.86,475.5L252,475.8L253.17,477.21L254.76,476.06L255.29,474.18L257.01,471.75L260.38,470.65L263.44,467.73L264.31,465.92L263.92,463.81L264.67,463.54L266.53,464.86L267.42,466.18L268.72,466.9L270.37,469.82L272.46,470.17L274.01,469.43L275.02,469.91L276.7,469.67L278.85,470.98L277.04,473.82L277.88,473.88L279.28,475.37L276.75,475.24L276.38,475.66L274.08,476.19L270.88,478.1L270.67,479.4L269.96,480.38L270.24,481.89L268.54,482.7L268.54,483.89L267.8,484.4L268.97,486.93L270.53,488.65L269.94,489.86L271.8,490.02L272.86,491.53L275.33,491.6L277.63,489.94L277.44,494.24L278.72,494.57L280.3,494.08L282.73,498.66L282.12,499.62L281.99,501.64L281.93,504.08L280.83,505.52L281.34,506.59L280.69,507.56L281.9,510z"
630
- },
631
- {
632
- "id":"PG",
633
- "title":"Papua New Guinea",
634
- "d":"M912.32,482.42l-0.79,0.28l-1.21,-1.08l-1.23,-1.78l-0.6,-2.13l0.39,-0.27l0.3,0.83l0.85,0.63l1.36,1.77l1.32,0.95L912.32,482.42zM901.39,478.67l-1.47,0.23l-0.44,0.79l-1.53,0.68l-1.44,0.66h-1.49l-2.3,-0.81l-1.6,-0.78l0.23,-0.87l2.51,0.41l1.53,-0.22l0.42,-1.34l0.4,-0.07l0.27,1.49l1.6,-0.21l0.79,-0.96l1.57,-1l-0.31,-1.65l1.68,-0.05l0.57,0.46l-0.06,1.55L901.39,478.67zM887.96,484.02l2.5,1.84l1.82,2.99l1.61,-0.09l-0.11,1.25l2.17,0.48l-0.84,0.53l2.98,1.19l-0.31,0.82l-1.86,0.2l-0.69,-0.73l-2.41,-0.32l-2.83,-0.43l-2.18,-1.8l-1.59,-1.55l-1.46,-2.46l-3.66,-1.23l-2.38,0.8l-1.71,0.93l0.36,2.08l-2.2,0.97l-1.57,-0.47l-2.9,-0.12l-0.05,-9.16l-0.05,-9.1l4.87,1.92l5.18,1.6l1.93,1.43l1.56,1.41l0.43,1.65l4.67,1.73l0.68,1.49l-2.58,0.3L887.96,484.02zM904.63,475.93l-0.88,0.74l-0.53,-1.65l-0.65,-1.08l-1.27,-0.91l-1.6,-1.19l-2.02,-0.82l0.78,-0.67l1.51,0.78l0.95,0.61l1.18,0.67l1.12,1.17l1.07,0.89L904.63,475.93z"
635
- },
636
- {
637
- "id":"PH",
638
- "title":"Philippines",
639
- "d":"M829.59,439.86l0.29,1.87l0.17,1.58l-0.96,2.57l-1.02,-2.86l-1.31,1.42l0.9,2.06l-0.8,1.31l-3.3,-1.63l-0.79,-2.03l0.86,-1.33l-1.78,-1.33l-0.88,1.17l-1.32,-0.11l-2.08,1.57l-0.46,-0.82l1.1,-2.37l1.77,-0.79l1.53,-1.06l0.99,1.27l2.13,-0.77l0.46,-1.26l1.98,-0.08l-0.17,-2.18l2.27,1.34l0.24,1.42L829.59,439.86zM822.88,434.6l-1.01,0.93l-0.88,1.79l-0.88,0.84l-1.73,-1.95l0.58,-0.76l0.7,-0.79l0.31,-1.76l1.55,-0.17l-0.45,1.91l2.08,-2.74L822.88,434.6zM807.52,437.32l-3.73,2.67l1.38,-1.97l2.03,-1.74l1.68,-1.96l1.47,-2.82l0.5,2.31l-1.85,1.56L807.52,437.32zM817,430.02l1.68,0.88h1.78l-0.05,1.19l-1.3,1.2l-1.78,0.85l-0.1,-1.32l0.2,-1.45L817,430.02zM827.14,429.25l0.79,3.18l-2.16,-0.75l0.06,0.95l0.69,1.75l-1.33,0.63l-0.12,-1.99l-0.84,-0.15l-0.44,-1.72l1.65,0.23l-0.04,-1.08l-1.71,-2.18l2.69,0.06L827.14,429.25zM816,426.66l-0.74,2.47l-1.2,-1.42l-1.43,-2.18l2.4,0.1L816,426.66zM815.42,410.92l1.73,0.84l0.86,-0.76l0.25,0.75l-0.46,1.22l0.96,2.09l-0.74,2.42l-1.65,0.96l-0.44,2.33l0.63,2.29l1.49,0.32l1.24,-0.34l3.5,1.59l-0.27,1.56l0.92,0.69l-0.29,1.32l-2.18,-1.4l-1.04,-1.5l-0.72,1.05l-1.79,-1.72l-2.55,0.42l-1.4,-0.63l0.14,-1.19l0.88,-0.73l-0.84,-0.67l-0.36,1.04l-1.38,-1.65l-0.42,-1.26l-0.1,-2.77l1.13,0.96l0.29,-4.55l0.91,-2.66L815.42,410.92z"
640
- },
641
- {
642
- "id":"PK",
643
- "title":"Pakistan",
644
- "d":"M681.52,365.64L680.94,360.84L682.81,359.16L679.77,356.55L678.81,356.56L678.45,355.41L681.53,353.07L681.65,352.96L679.71,353.2L676.7,353.93L675.06,355.44L675.72,356.9L676.05,358.6L674.65,360.03L674.77,361.33L674,362.55L671.33,362.44L672.43,364.66L670.65,365.51L669.46,367.51L669.61,369.49L668.51,370.41L667.48,370.11L665.33,370.54L665.03,371.45L662.94,371.45L661.38,373.29L661.28,376.04L657.63,377.37L655.68,377.09L655.11,377.79L653.44,377.39L650.63,377.87L645.94,376.23L647.32,377.91L648.45,379.84L651.13,381.24L651.21,384.01L652.55,384.52L652.78,385.96L648.74,387.57L647.68,391.17L651.63,390.73L656.19,390.68L661.35,390.1L663.52,392.44L664.36,394.64L666.41,395.41L668.28,393.37L674.45,393.38L673.89,390.74L672.32,389.18L672,386.79L670.16,385.39L673.25,382.09L676.51,382.33L679.44,379.01L681.2,375.75L683.92,372.51L683.88,370.18L686.27,368.27L684,366.64L683.99,366.6L683.9,366.63z"
645
- },
646
- {
647
- "id":"PL",
648
- "title":"Poland",
649
- "d":"M517.36,296.97L516.21,294.11L516.43,292.55L515.73,290.1L514.72,288.45L515.5,287.2L514.84,284.81L516.76,283.42L521.13,281.2L524.67,279.56L527.46,280.38L527.67,281.56L530.38,281.62L533.83,282.17L538.99,282.09L540.43,282.61L541.1,284.07L541.22,286.16L542,287.94L541.98,289.79L540.3,290.73L541.17,292.85L541.22,294.86L542.63,298.75L542.33,299.99L540.94,300.5L538.39,304.11L539.11,306.03L538.5,305.78L535.84,304.14L533.82,304.74L532.5,304.3L530.84,305.22L529.43,303.7L528.27,304.28L528.11,304.02L526.82,301.89L524.74,301.63L524.47,300.26L522.55,299.77L522.13,300.9L520.61,300L520.78,298.79L518.69,298.4z"
650
- },
651
- {
652
- "id":"PR",
653
- "title":"Puerto Rico",
654
- "d":"M289.41,410.89L290.84,411.15L291.35,411.73L290.63,412.47L288.52,412.45L286.88,412.55L286.72,411.3L287.11,410.87z"
655
- },
656
- {
657
- "id":"PS",
658
- "title":"Palestinian Territories",
659
- "d":"M574.92,367.87L574.92,369.88L574.5,370.84L573.18,371.29L573.31,370.43L574.02,369.97L573.32,369.61L573.9,367.41z"
660
- },
661
- {
662
- "id":"PT",
663
- "title":"Portugal",
664
- "d":"M449.92,334.56L450.94,333.61L452.08,333.06L452.79,334.9L454.44,334.89L454.92,334.42L456.56,334.55L457.34,336.43L456.04,337.43L456.01,340.31L455.55,340.84L455.44,342.56L454.23,342.86L455.35,345.03L454.58,347.38L455.54,348.44L455.16,349.4L454.12,350.72L454.35,351.88L453.23,352.79L451.75,352.3L450.3,352.68L450.73,349.94L450.47,347.76L449.21,347.43L448.54,346.08L448.77,343.72L449.88,342.41L450.08,340.94L450.67,338.73L450.6,337.16L450.04,335.82z"
665
- },
666
- {
667
- "id":"PY",
668
- "title":"Paraguay",
669
- "d":"M299.49,526.99L300.6,523.4L300.67,521.8L302.01,519.18L306.9,518.32L309.5,518.37L312.12,519.88L312.16,520.79L312.99,522.45L312.81,526.51L315.77,527.09L316.91,526.5L318.8,527.32L319.33,528.22L319.59,530.99L319.92,532.17L320.96,532.3L322.01,531.81L323.02,532.36L323.02,534.04L322.64,535.86L322.09,537.64L321.63,540.39L319.09,542.79L316.87,543.29L313.72,542.81L310.9,541.96L313.66,537.23L313.25,535.86L310.37,534.66L306.94,532.4L304.65,531.94z"
670
- },
671
- {
672
- "id":"QA",
673
- "title":"Qatar",
674
- "d":"M617.72,392.16L617.53,389.92L618.29,388.3L619.05,387.96L619.9,388.93L619.95,390.74L619.34,392.55L618.56,392.77z"
675
- },
676
- {
677
- "id":"RO",
678
- "title":"Romania",
679
- "d":"M538.93,310.86L540.14,309.97L541.88,310.43L543.67,310.45L544.97,311.46L545.93,310.82L548,310.42L548.71,309.44L549.89,309.45L550.74,309.85L551.61,311.09L552.5,312.84L554.12,315.28L554.21,317.07L553.91,318.79L554.42,320.62L555.67,321.35L556.98,320.71L558.26,321.39L558.32,322.42L556.96,323.26L556.11,322.9L555.33,327.61L553.68,327.2L551.64,325.79L548.34,326.69L546.95,327.68L542.83,327.48L540.67,326.87L539.59,327.16L538.78,325.56L538.27,324.88L538.92,324.22L538.22,323.73L537.34,324.61L535.71,323.47L535.49,321.84L533.78,320.9L533.47,319.63L531.95,318.05L534.2,317.29L535.89,314.53L537.22,311.73z"
680
- },
681
- {
682
- "id":"RS",
683
- "title":"Serbia",
684
- "d":"M533.78,320.9L535.49,321.84L535.71,323.47L537.34,324.61L538.22,323.73L538.92,324.22L538.27,324.88L538.78,325.56L538.09,326.44L538.34,327.86L539.7,329.52L538.63,330.71L538.16,331.92L538.47,332.37L538,332.91L536.71,332.97L535.75,333.19L535.66,332.91L535.99,332.46L536.31,331.53L535.91,331.55L535.36,330.85L534.9,330.67L534.54,330.06L534.01,329.82L533.61,329.28L533.11,329.5L532.72,330.76L532.05,331.04L532.28,330.71L531.21,329.92L530.29,329.51L529.88,328.97L529.14,328.31L529.8,328.14L530.21,326.32L528.86,324.82L529.56,323.1L528.54,323.11L529.62,321.62L528.73,320.48L528.05,318.93L530.2,317.88L531.95,318.05L533.47,319.63z"
685
- },
686
- {
687
- "id":"RU",
688
- "title":"Russian Federation",
689
- "d":"M1008.27,215.75l-2.78,2.97l-4.6,0.7l-0.07,6.46l-1.12,1.35l-2.63,-0.19l-2.14,-2.26l-3.73,-1.92l-0.63,-2.89l-2.85,-1.1l-3.19,0.87l-1.52,-2.37l0.61,-2.55l-3.36,1.64l1.26,3.19l-1.59,2.83l-0.02,0.04l-3.6,2.89l-3.63,-0.48l2.53,3.44l1.67,5.2l1.29,1.67l0.33,2.53l-0.72,1.6l-5.23,-1.32l-7.84,4.51l-2.49,0.69l-4.29,4.1l-4.07,3.5l-1.03,2.55l-4.01,-3.9l-7.31,4.42l-1.28,-2.08l-2.7,2.39l-3.75,-0.76l-0.9,3.63l-3.36,5.22l0.1,2.14l3.19,1.17l-0.38,7.46l-2.6,0.19l-1.2,4.15l1.17,2.1l-4.9,2.47l-0.97,5.4l-4.18,1.14l-0.84,4.66l-4.04,4.18l-1.04,-3.08l-1.2,-6.69l-1.56,-10.65l1.35,-6.95l2.37,-3.07l0.15,-2.44l4.36,-1.18l5.01,-6.78l4.83,-5.73l5.04,-4.57l2.25,-8.37l-3.41,0.51l-1.68,4.92l-7.11,6.36l-2.3,-7.14l-7.24,2l-7.02,9.56l2.32,3.38l-6.26,1.42l-4.33,0.56l0.2,-3.95l-4.36,-0.84l-3.47,2.7l-8.57,-0.94l-9.22,1.62l-9.08,10.33l-10.75,11.78l4.42,0.61l1.38,3l2.72,1.05l1.79,-2.38l3.08,0.31l4.05,5.19l0.09,3.92l-2.19,4.51l-0.24,5.27l-1.26,6.85l-4.23,6.01l-0.94,2.82l-3.81,4.66l-3.78,4.53l-1.81,2.28l-3.74,2.25l-1.77,0.05l-1.76,-1.86l-3.76,2.79l-0.44,1.26l-0.39,-0.66l-0.02,-1.93l1.43,-0.1l0.4,-4.55l-0.74,-3.36l2.41,-1.4l3.4,0.7l1.89,-3.89l0.96,-4.46l1.09,-1.51l1.47,-3.76l-4.63,1.24l-2.43,1.65h-4.26l-1.13,-3.95l-3.32,-3.03l-4.88,-1.38l-1.04,-4.28l-0.98,-2.73l-1.05,-1.94l-1.73,-4.61l-2.46,-1.71l-4.2,-1.39l-3.72,0.13l-3.48,0.84l-2.32,2.31l1.54,1.1l0.04,2.52l-1.56,1.45l-2.53,4.72l0.03,1.93l-3.95,2.74l-3.37,-1.63l-3.35,0.36l-1.47,-1.46l-1.68,-0.47l-4.11,3.06l-3.69,0.71l-2.58,1.06l-3.53,-0.7l-2.6,0.04l-1.7,-2.2l-2.75,-2.09l-2.81,-0.58l-3.55,0.57l-2.65,0.81l-3.98,-1.84l-0.53,-3.32l-3.3,-1.15l-2.54,-0.53l-3.14,-1.87l-2.9,4.66l1.14,2.6l-2.73,3.03l-4.05,-1.09l-2.8,-0.16l-1.87,-2.04l-2.92,-0.06l-2.44,-1.35l-4.26,2.07l-5.35,3.74l-2.96,0.74l-1.1,0.35l-1.49,-2.63l-3.61,0.58l-1.19,-1.84l-1.96,-0.85l-1.35,-2.55l-1.55,-0.8l-4.03,1.14l-3.86,-2.57l-1.49,2.33l-6.27,-11.58l-3.58,-3.66l1.03,-1.5l-7.03,4.49l-2.69,0.27l0.23,-2.58l-3.6,-1.63l-2.93,1.17l-0.88,-5.01l-5.04,-1.06l-2.52,2.03l-7.02,1.79l-1.37,1.19l-10.49,1.66l-1.29,1.62l2.02,3.21l-2.69,1.2l0.53,1.25l-2.69,2.22l4.54,3.1l-0.7,2.11l-3.94,-0.19l-0.81,1.31l-3.59,-2.29l-4.45,0.09l-2.98,1.87l-3.32,-1.79l-6.18,-3.1l-4.38,0.12l-5.79,4.85l-0.35,3.19l-2.88,-2.53l-2.24,4.77l0.82,0.87l-1.62,3.21l2.38,2.84l2.08,-0.12l1.79,2.76l-0.28,2.1l1.42,0.66l-1.28,2.39l-2.72,0.66l-2.79,4.09l2.55,3.7l-0.28,2.59l3.06,4.46l-1.67,1.51l-0.48,0.95l-1.24,-0.25l-1.93,-2.27l-0.79,-0.13l-1.76,-0.87l-0.86,-1.55l-2.62,-0.79l-1.7,0.6l-0.49,-0.71l-3.82,-1.83l-4.13,-0.62l-2.37,-0.66l-0.34,0.45l-3.57,-3.27l-3.2,-1.48l-2.42,-2.32l2.04,-0.64l2.33,-3.35l-1.57,-1.6l4.13,-1.67l-0.07,-0.9l-2.52,0.66l0.09,-1.83l1.45,-1.16l2.71,-0.31l0.44,-1.4l-0.62,-2.33l1.14,-2.23l-0.03,-1.26l-4.13,-1.41l-1.64,0.05l-1.73,-2.04l-2.15,0.69l-3.56,-1.54l0.06,-0.87l-1,-1.93l-2.24,-0.22l-0.23,-1.39l0.7,-0.91l-1.79,-2.58l-2.91,0.44l-0.85,-0.23l-0.71,1.04l-1.05,-0.18l-0.69,-2.94l-0.66,-1.54l0.54,-0.44l2.26,0.16l1.09,-1.02l-0.81,-1.25l-1.89,-0.83l0.17,-0.86l-1.14,-0.87l-1.76,-3.15l0.6,-1.31l-0.27,-2.31l-2.74,-1.18l-1.47,0.59l-0.4,-1.24l-2.95,-1.26l-0.9,-2.99l-0.24,-2.49l-1.35,-1.19l1.2,-1.66l-0.83,-4.96l2,-3.13l-0.42,-0.96l3.19,-3.07l-2.94,-2.68l6,-7.41l2.6,-3.45l1.05,-3.1l-4.15,-4.26l1.15,-4.15l-2.52,-4.85l1.89,-5.76l-3.26,-7.96l2.59,-5.48l-4.29,-4.99l0.41,-5.4l2.26,-0.72l4.77,-3.19l2.89,-2.81l4.61,4.86l7.68,1.88l10.59,8.65l2.15,3.51l0.19,4.8l-3.11,3.69l-4.58,1.85l-12.52,-5.31l-2.06,0.9l4.57,5.1l0.18,3.15l0.18,6.75l3.61,1.97l2.19,1.66l0.36,-3.11l-1.69,-2.8l1.78,-2.51l6.78,4.1l2.36,-1.59l-1.89,-4.88l6.53,-6.74l2.59,0.4l2.62,2.43l1.63,-4.81l-2.34,-4.28l1.37,-4.41l-2.06,-4.69l7.84,2.44l1.6,4.18l-3.55,0.91l0.02,4.04l2.21,2.44l4.33,-1.54l0.69,-4.61l5.86,-3.52l9.79,-6.54l2.11,0.38l-2.76,4.64l3.48,0.78l2.01,-2.58l5.25,-0.21l4.16,-3.19l3.2,4.62l3.19,-5.09l-2.94,-4.58l1.46,-2.66l8.28,2.44l3.88,2.49l10.16,8.8l1.88,-3.97l-2.85,-4.11l-0.08,-1.68l-3.38,-0.78l0.92,-3.83l-1.5,-6.49l-0.08,-2.74l5.17,-7.99l1.84,-8.42l2.08,-1.88l7.42,2.51l0.58,5.18l-2.66,7.28l1.74,2.78l0.9,5.94l-0.64,11.07l3.09,4.73l-1.2,5.01l-5.49,10.2l3.21,1.02l1.12,-2.51l3.08,-1.82l0.74,-3.55l2.43,-3.49l-1.63,-4.26l1.31,-5.08l-3.07,-0.64l-0.67,-4.42l2.24,-8.28l-3.64,-7.03l5.02,-6.04l-0.65,-6.62l1.4,-0.22l1.47,5.19l-1.11,8.67l3,1.59l-1.28,-6.37l4.69,-3.58l5.82,-0.49l5.18,5.18l-2.49,-7.62l-0.28,-10.28l4.88,-2.02l6.74,0.44l6.08,-1.32l-2.28,-5.38l3.25,-7.02l3.22,-0.3l5.45,-5.51l7.4,-1.51l0.94,-3.15l7.36,-1.08l2.29,2.61l6.29,-6.24l5.15,0.2l0.77,-5.24l2.68,-5.33l6.62,-5.31l4.81,4.21l-3.82,3.13l6.35,1.92l0.76,6.03l2.56,-2.94l8.2,0.16l6.32,5.84l2.25,4.35l-0.7,5.85l-3.1,3.24l-7.37,5.92l-2.11,3.08l3.48,1.43l4.15,2.55l2.52,-1.91l1.43,6.39l1.23,-2.56l4.48,-1.57l9,1.65l0.68,4.58l11.72,1.43l0.16,-7.47l5.95,1.74l4.48,-0.05l4.53,5.14l1.29,6.04l-1.66,3.84l3.52,6.98l4.41,3.49l2.71,-9.18l4.5,4l4.78,-2.38l5.43,2.72l2.07,-2.47l4.59,1.24l-2.02,-8.4l3.7,-4.07l25.32,6.06l2.39,5.35l7.34,6.65l11.32,-1.62l5.58,1.41l2.33,3.5l-0.34,6.02l3.45,2.29l3.75,-1.64l4.97,-0.21l5.29,1.57l5.31,-0.89l4.88,6.99l3.47,-2.48l-2.27,-5.07l1.25,-3.62l8.95,2.29l5.83,-0.49l8.06,3.84l3.92,3.44l6.87,5.86l7.35,7.34l-0.24,4.44l1.89,1.74l-0.65,-5.15l7.61,1.07L1008.27,215.75zM880.84,306.25l-2.82,-7.68l-1.16,-4.51l0.07,-4.5l-0.97,-4.5l-0.73,-3.15l-1.25,0.67l1.11,2.21l-2.59,2.17l-0.25,6.3l1.64,4.41l-0.12,5.85l-0.65,3.24l0.32,4.54l-0.31,4.01l0.52,3.4l1.84,-3.13l2.13,2.44l0.08,-2.84l-2.73,-4.23l1.72,-6.11L880.84,306.25zM537.82,278.77l-2.94,-0.86l-3.87,1.58l-0.64,2.13l3.45,0.55l5.16,-0.07l-0.22,-1.23l0.3,-1.33L537.82,278.77zM979.95,178.65l3.66,-0.52l2.89,-2.06l0.24,-1.19l-4.06,-2.51l-2.38,-0.02l-0.36,0.37l-3.57,3.64l0.5,2.73L979.95,178.65zM870.07,151.56l-2.66,3.92l0.49,0.52l5.75,1.08l4.25,-0.07l-0.34,-2.57l-3.98,-3.81L870.07,151.56zM894.64,142.03l3.24,-4.25l-7.04,-2.88l-5.23,-1.68l-0.67,3.59l5.21,4.27L894.64,142.03zM869.51,140.34l10.33,0.3l2.21,-8.14l-10.13,-6.07l-7.4,-0.51l-3.7,2.18l-1.51,7.75l5.55,7.01L869.51,140.34zM622.39,166.28l-2.87,1.96l0.41,4.83l5.08,2.35l0.74,3.82l9.16,1.1l1.66,-0.74l-5.36,-7.11l-0.57,-7.52l4.39,-9.14l4.18,-9.82l8.71,-10.17l8.56,-5.34l9.93,-5.74l1.88,-3.71l-1.95,-4.83l-5.46,1.6l-4.8,4.49l-9.33,2.22l-9.26,7.41l-6.27,5.85l0.76,4.87l-6.71,9.03l2.58,1.22l-5.56,8.27L622.39,166.28zM769.87,98.34l0.83,-5.72l-7.11,-8.34l-2.11,-0.98l-2.3,1.7l-5.12,18.6L769.87,98.34zM605.64,69.03l3.04,3.88l3.28,-2.69l0.39,-2.72l2.52,-1.27l3.76,-2.23l1.08,-2.62l-4.16,-3.85l-2.64,2.9l-1.61,4.12l-0.57,-4.65l-4.26,0.21L601,63.25l6.24,0.52L605.64,69.03zM736.89,82.07l4.65,5.73l7.81,4.2l6.12,-1.8l0.69,-13.62l-6.46,-16.04l-5.45,-9.02l-6.07,4.11l-7.28,11.83l3.83,3.27L736.89,82.07z"
690
- },
691
- {
692
- "id":"RW",
693
- "title":"Rwanda",
694
- "d":"M560.54,466.55L561.66,468.12L561.49,469.76L560.69,470.11L559.2,469.93L558.34,471.52L556.63,471.3L556.89,469.77L557.28,469.56L557.38,467.9L558.19,467.12L558.87,467.41z"
695
- },
696
- {
697
- "id":"SA",
698
- "title":"Saudi Arabia",
699
- "d":"M595.2,417.22L594.84,415.98L593.99,415.1L593.77,413.93L592.33,412.89L590.83,410.43L590.04,408.02L588.1,405.98L586.85,405.5L584.99,402.65L584.67,400.57L584.79,398.78L583.18,395.42L581.87,394.23L580.35,393.6L579.43,391.84L579.58,391.15L578.8,389.55L577.98,388.86L576.89,386.54L575.18,384.02L573.75,381.86L572.36,381.87L572.79,380.13L572.92,379.02L573.26,377.74L576.38,378.25L577.6,377.27L578.27,376.11L580.41,375.67L580.87,374.58L581.8,374.04L579,370.78L584.62,369.13L585.15,368.64L588.53,369.53L592.71,371.82L600.61,378.31L605.82,378.57L608.32,378.88L609.02,380.39L611,380.31L612.1,383.04L613.48,383.75L613.96,384.86L615.87,386.17L616.04,387.46L615.76,388.49L616.12,389.53L616.92,390.4L617.3,391.41L617.72,392.16L618.56,392.77L619.34,392.55L619.87,393.72L619.98,394.43L621.06,397.51L629.48,399.03L630.05,398.39L631.33,400.53L629.46,406.5L621.05,409.46L612.97,410.59L610.35,411.91L608.34,414.98L607.03,415.46L606.33,414.49L605.26,414.64L602.55,414.35L602.03,414.05L598.8,414.12L598.04,414.39L596.89,413.63L596.14,415.06L596.43,416.29z"
700
- },
701
- {
702
- "id":"SB",
703
- "title":"Solomon Islands",
704
- "d":"M929.81,492.75l0.78,0.97l-1.96,-0.02l-1.07,-1.74l1.67,0.69L929.81,492.75zM926.26,491.02l-1.09,0.06l-1.72,-0.29l-0.59,-0.44l0.18,-1.12l1.85,0.44l0.91,0.59L926.26,491.02zM928.58,490.25l-0.42,0.52l-2.08,-2.45l-0.58,-1.68h0.95l1.01,2.25L928.58,490.25zM923.52,486.69l0.12,0.57l-2.2,-1.19l-1.54,-1.01l-1.05,-0.94l0.42,-0.29l1.29,0.67l2.3,1.29L923.52,486.69zM916.97,483.91l-0.56,0.16l-1.23,-0.64l-1.15,-1.15l0.14,-0.47l1.67,1.18L916.97,483.91z"
705
- },
706
- {
707
- "id":"SD",
708
- "title":"Sudan",
709
- "d":"M570.48,436.9L570.09,436.85L570.14,435.44L569.8,434.47L568.36,433.35L568.02,431.3L568.36,429.2L567.06,429.01L566.87,429.64L565.18,429.79L565.86,430.62L566.1,432.33L564.56,433.89L563.16,435.93L561.72,436.22L559.36,434.57L558.3,435.15L558.01,435.98L556.57,436.51L556.47,437.09L553.68,437.09L553.29,436.51L551.27,436.41L550.26,436.9L549.49,436.65L548.05,435L547.57,434.23L545.54,434.62L544.77,435.93L544.05,438.45L543.09,438.98L542.23,439.29L542,439.15L541.03,438.34L540.85,437.47L541.3,436.29L541.3,435.14L539.68,433.37L539.36,432.15L539.39,431.46L538.36,430.63L538.33,428.97L537.75,427.87L536.76,428.04L537.04,426.99L537.77,425.79L537.45,424.61L538.37,423.73L537.79,423.06L538.53,421.28L539.81,419.15L542.23,419.35L542.09,407.74L542.13,406.5L545.35,406.49L545.35,400.53L556.62,400.53L567.5,400.53L578.62,400.53L579.52,403.47L578.91,404.01L579.32,407.07L580.35,410.59L581.41,411.32L582.95,412.4L581.53,414.07L579.46,414.55L578.58,415.45L578.31,417.38L577.1,421.63L577.4,422.78L576.95,425.25L575.81,428.06L574.12,429.48L572.92,431.65L572.63,432.81L571.31,433.61L570.48,436.57z"
710
- },
711
- {
712
- "id":"SE",
713
- "title":"Sweden",
714
- "d":"M537.45,217.49L534.73,222.18L535.17,226.2L530.71,231.33L525.3,236.67L523.25,245.08L525.25,249.15L527.93,252.29L525.36,258.52L522.44,259.78L521.37,268.62L519.78,273.38L516.38,272.89L514.79,276.84L511.54,277.07L510.65,272.36L508.3,266.55L506.17,259.05L507.41,255.9L509.74,252.09L510.67,245.36L508.88,242.38L508.7,234.34L510.53,228.43L513.31,228.54L514.28,225.99L513.26,223.76L517.61,214.26L520.42,206.39L522.27,201.15L524.96,201.17L525.71,196.96L530.99,198.18L531.4,193.1L533.14,192.77L536.88,196.58L541.25,201.73L541.33,212.85L542.27,215.55z"
715
- },
716
- {
717
- "id":"SI",
718
- "title":"Slovenia",
719
- "d":"M513.96,316.51L516.28,316.82L517.7,315.9L520.15,315.8L520.68,315.11L521.15,315.16L521.7,316.53L519.47,317.61L519.19,319.23L518.22,319.64L518.23,320.76L517.13,320.68L516.18,320.03L515.66,320.71L513.71,320.57L514.33,320.21L513.66,318.5z"
720
- },
721
- {
722
- "id":"SJ",
723
- "title":"Svalbard and Jan Mayen",
724
- "d":"M544.58,104.49l-6.26,5.36l-4.95,-3.02l1.94,-3.42l-1.69,-4.34l5.81,-2.78l1.11,5.18L544.58,104.49zM526.43,77.81l9.23,11.29l-7.06,5.66l-1.56,10.09l-2.46,2.49l-1.33,10.51l-3.38,0.48l-6.03,-7.64l2.54,-4.62l-4.2,-3.86l-5.46,-11.82l-2.18,-11.79l7.64,-5.69l1.54,5.56l3.99,-0.22l1.06,-5.43l4.12,-0.56L526.43,77.81zM546.6,66.35l5.5,5.8l-4.16,8.52l-8.13,1.81l-8.27,-2.56l-0.5,-4.32l-4.02,-0.28l-3.07,-7.48l8.66,-4.72l4.07,4.08l2.84,-5.09L546.6,66.35z"
725
- },
726
- {
727
- "id":"SK",
728
- "title":"Slovakia",
729
- "d":"M528.11,304.02L528.27,304.28L529.43,303.7L530.84,305.22L532.5,304.3L533.82,304.74L535.84,304.14L538.5,305.78L537.73,306.89L537.18,308.6L536.58,309.03L533.58,307.75L532.66,308L532,309L530.68,309.52L530.38,309.25L529.02,309.9L527.9,310.03L527.68,310.87L525.32,311.38L524.29,310.92L522.86,309.85L522.58,308.4L522.81,307.86L523.2,306.93L524.45,307L525.4,306.56L525.48,306.17L526.02,305.96L526.2,304.99L526.84,304.8L527.28,304.03z"
730
- },
731
- {
732
- "id":"SL",
733
- "title":"Sierra Leone",
734
- "d":"M443.18,444.44L442.42,444.23L440.41,443.1L438.95,441.6L438.46,440.57L438.11,438.49L439.61,437.25L439.93,436.46L440.41,435.85L441.19,435.79L441.84,435.26L444.08,435.26L444.86,436.27L445.47,437.46L445.38,438.28L445.83,439.02L445.8,440.05L446.57,439.89L445.26,441.2L444,442.73L443.85,443.54z"
735
- },
736
- {
737
- "id":"SN",
738
- "title":"Senegal",
739
- "d":"M428.39,425.16L427.23,422.92L425.83,421.9L427.07,421.35L428.43,419.32L429.09,417.83L430.05,416.9L431.45,417.15L432.81,416.52L434.38,416.49L435.72,417.34L437.58,418.11L439.28,420.24L441.13,422.22L441.26,424.01L441.81,425.65L442.86,426.46L443.1,427.56L442.97,428.45L442.56,428.61L441.04,428.39L440.83,428.7L440.21,428.77L438.19,428.07L436.84,428.04L431.66,427.92L430.91,428.24L429.98,428.15L428.49,428.62L428.03,426.43L430.58,426.49L431.26,426.09L431.76,426.06L432.8,425.4L434,426.01L435.22,426.06L436.43,425.41L435.87,424.59L434.94,425.07L434.07,425.06L432.97,424.35L432.08,424.4L431.44,425.07z"
740
- },
741
- {
742
- "id":"SO",
743
- "title":"Somalia",
744
- "d":"M618.63,430.43L618.56,429.64L617.5,429.65L616.17,430.63L614.68,430.91L613.39,431.33L612.5,431.39L610.9,431.49L609.9,432.01L608.51,432.2L606.04,433.08L602.99,433.41L600.34,434.14L598.95,434.13L597.69,432.94L597.14,431.77L596.23,431.24L595.19,432.76L594.58,433.77L595.62,435.33L596.65,436.69L597.72,437.7L606.89,441.04L609.25,441.02L601.32,449.44L597.67,449.56L595.17,451.53L593.38,451.58L592.61,452.46L590.16,455.63L590.19,465.78L591.85,468.07L592.48,467.41L593.13,465.95L596.2,462.57L598.81,460.45L603.01,457.69L605.81,455.43L609.11,451.62L611.5,448.49L613.91,444.39L615.64,440.8L616.99,437.65L617.78,434.6L618.38,433.58L618.37,432.08z"
745
- },
746
- {
747
- "id":"SR",
748
- "title":"Suriname",
749
- "d":"M315.02,446.72L318.38,447.28L318.68,446.77L320.95,446.57L323.96,447.33L322.5,449.73L322.72,451.64L323.83,453.3L323.34,454.5L323.09,455.77L322.37,456.94L320.77,456.35L319.44,456.64L318.31,456.39L318.03,457.2L318.5,457.75L318.25,458.32L316.72,458.09L315.01,455.67L314.64,454.1L313.75,454.09L312.5,452.07L313.02,450.62L312.87,449.97L314.57,449.24z"
750
- },
751
- {
752
- "id":"SS",
753
- "title":"South Sudan",
754
- "d":"M570.48,436.9L570.51,439.1L570.09,439.96L568.61,440.03L567.65,441.64L569.37,441.84L570.79,443.21L571.29,444.33L572.57,444.98L574.22,448.03L572.32,449.87L570.6,451.54L568.87,452.82L566.9,452.82L564.64,453.47L562.86,452.84L561.71,453.61L559.24,451.75L558.57,450.56L557.01,451.15L555.71,450.96L554.96,451.43L553.7,451.1L552.01,448.79L551.56,447.9L549.46,446.79L548.75,445.11L547.58,443.9L545.7,442.44L545.67,441.52L544.14,440.39L542.23,439.29L543.09,438.98L544.05,438.45L544.77,435.93L545.54,434.62L547.57,434.23L548.05,435L549.49,436.65L550.26,436.9L551.27,436.41L553.29,436.51L553.68,437.09L556.47,437.09L556.57,436.51L558.01,435.98L558.3,435.15L559.36,434.57L561.72,436.22L563.16,435.93L564.56,433.89L566.1,432.33L565.86,430.62L565.18,429.79L566.87,429.64L567.06,429.01L568.36,429.2L568.02,431.3L568.36,433.35L569.8,434.47L570.14,435.44L570.09,436.85z"
755
- },
756
- {
757
- "id":"SV",
758
- "title":"El Salvador",
759
- "d":"M229.09,425.76L228.78,426.43L227.16,426.39L226.15,426.12L224.99,425.55L223.43,425.37L222.64,424.75L222.73,424.33L223.69,423.61L224.21,423.29L224.06,422.95L224.72,422.78L225.55,423.02L226.15,423.59L227,424.05L227.1,424.44L228.33,424.1L228.91,424.3L229.29,424.61z"
760
- },
761
- {
762
- "id":"SY",
763
- "title":"Syrian Arab Republic",
764
- "d":"M584.02,364.6L578.53,368.14L575.41,366.82L575.35,366.8L575.73,366.3L575.69,364.93L576.38,363.1L577.91,361.83L577.45,360.51L576.19,360.33L575.93,357.72L576.61,356.31L577.36,355.56L578.11,354.8L578.27,352.86L579.18,353.54L582.27,352.57L583.76,353.22L586.07,353.21L589.29,351.9L590.81,351.96L594,351.42L592.56,353.6L591.02,354.46L591.29,356.98L590.23,361.1z"
765
- },
766
- {
767
- "id":"SZ",
768
- "title":"Swaziland",
769
- "d":"M565.18,540.74L564.61,542.13L562.97,542.46L561.29,540.77L561.27,539.69L562.03,538.52L562.3,537.62L563.11,537.4L564.52,537.97L564.94,539.36z"
770
- },
771
- {
772
- "id":"TD",
773
- "title":"Chad",
774
- "d":"M515.9,427.26L516.18,425.92L514.38,425.85L514.39,424L513.22,422.94L514.43,419.14L518.01,416.4L518.15,412.61L519.23,406.63L519.84,405.35L518.68,404.33L518.63,403.38L517.58,402.6L516.89,397.93L519.72,396.27L530.91,402.04L542.09,407.74L542.23,419.35L539.81,419.15L538.53,421.28L537.79,423.06L538.37,423.73L537.45,424.61L537.77,425.79L537.04,426.99L536.76,428.04L537.75,427.87L538.33,428.97L538.36,430.63L539.39,431.46L539.36,432.15L537.59,432.64L536.16,433.78L534.14,436.87L531.5,438.18L528.79,438L528,438.26L528.28,439.25L526.81,440.24L525.62,441.34L522.09,442.41L521.39,441.78L520.93,441.72L520.41,442.44L518.09,442.66L518.53,441.89L517.65,439.96L517.25,438.79L516.03,438.31L514.38,436.66L514.99,435.33L516.27,435.61L517.06,435.41L518.62,435.44L517.1,432.87L517.2,430.98L517.01,429.09z"
775
- },
776
- {
777
- "id":"TF",
778
- "title":"French Southern and Antarctic Lands",
779
- "d":"M668.54,619.03L670.34,620.36L672.99,620.9L673.09,621.71L672.31,623.67L668,623.95L667.93,621.66L668.35,619.9z"
780
- },
781
- {
782
- "id":"TG",
783
- "title":"Togo",
784
- "d":"M480.48,446.25L478.23,446.84L477.6,445.86L476.85,444.08L476.63,442.68L477.25,440.15L476.55,439.12L476.28,436.9L476.28,434.85L475.11,433.39L475.32,432.5L477.78,432.56L477.42,434.06L478.27,434.89L479.25,435.88L479.35,437.27L479.92,437.85L479.79,444.31z"
785
- },
786
- {
787
- "id":"TH",
788
- "title":"Thailand",
789
- "d":"M762.89,429.18L760.37,427.87L757.97,427.93L758.38,425.68L755.91,425.7L755.69,428.84L754.18,432.99L753.27,435.49L753.46,437.54L755.28,437.63L756.42,440.2L756.93,442.63L758.49,444.24L760.19,444.57L761.64,446.02L760.73,447.17L758.87,447.51L758.65,446.07L756.37,444.84L755.88,445.34L754.77,444.27L754.29,442.88L752.8,441.29L751.44,439.96L750.98,441.61L750.45,440.05L750.76,438.29L751.58,435.58L752.94,432.67L754.48,430.02L753.38,427.42L753.43,426.09L753.11,424.49L751.24,422.21L750.57,420.76L751.54,420.23L752.56,417.71L751.42,415.79L749.64,413.66L748.28,411.09L749.46,410.56L750.74,407.37L752.72,407.23L754.36,405.95L755.96,405.26L757.18,406.18L757.34,407.96L759.23,408.09L758.54,411.2L758.61,413.82L761.56,412.08L762.4,412.59L764.05,412.51L764.61,411.49L766.73,411.69L768.86,414.07L769.04,416.94L771.31,419.47L771.18,421.91L770.27,423.21L767.64,422.8L764.02,423.35L762.22,425.73z"
790
- },
791
- {
792
- "id":"TJ",
793
- "title":"Tajikistan",
794
- "d":"M674.37,340.62L673.34,341.75L670.29,341.14L670.02,343.24L673.06,342.96L676.53,344.13L681.83,343.58L682.54,346.91L683.46,346.55L685.16,347.36L685.07,348.74L685.49,350.75L682.59,350.75L680.66,350.49L678.92,352.06L677.67,352.4L676.69,353.14L675.58,351.99L675.85,349.04L675,348.87L675.3,347.78L673.79,346.98L672.58,348.21L672.28,349.64L671.85,350.16L670.17,350.09L669.27,351.69L668.32,351.02L666.29,352.14L665.44,351.72L667.01,348.15L666.41,345.49L664.35,344.63L665.08,343.04L667.42,343.21L668.75,341.2L669.64,338.85L673.39,337.99L672.81,339.7L673.21,340.72z"
795
- },
796
- {
797
- "id":"TL",
798
- "title":"Timor-Leste",
799
- "d":"M825.65,488.25L825.98,487.59L828.39,486.96L830.35,486.86L831.22,486.51L832.28,486.86L831.25,487.62L828.33,488.85L825.98,489.67L825.93,488.81z"
800
- },
801
- {
802
- "id":"TM",
803
- "title":"Turkmenistan",
804
- "d":"M646.88,356.9L646.63,353.99L644.54,353.87L641.34,350.78L639.1,350.39L636,348.6L634,348.27L632.77,348.93L630.9,348.83L628.91,350.85L626.44,351.53L625.92,349.04L626.33,345.31L624.14,344.09L624.86,341.61L623,341.39L623.62,338.3L626.26,339.21L628.73,338.02L626.68,335.79L625.88,333.65L623.62,334.61L623.34,337.34L622.46,334.93L623.7,333.68L626.88,332.89L628.78,333.95L630.74,336.88L632.18,336.7L635.34,336.65L634.88,334.77L637.28,333.47L639.64,331.27L643.42,333.27L643.72,336.26L644.79,337.03L647.82,336.86L648.76,337.53L650.14,341.32L653.35,343.83L655.18,345.52L658.11,347.27L661.84,348.79L661.76,350.95L660.92,350.84L659.59,349.9L659.15,351.15L656.79,351.83L656.23,354.62L654.65,355.67L652.44,356.19L651.85,357.74L649.74,358.2z"
805
- },
806
- {
807
- "id":"TN",
808
- "title":"Tunisia",
809
- "d":"M501.84,374.69L500.64,368.83L498.92,367.5L498.89,366.69L496.6,364.71L496.35,362.18L498.08,360.3L498.74,357.48L498.29,354.2L498.86,352.41L501.92,351L503.88,351.42L503.8,353.19L506.18,351.9L506.38,352.57L504.97,354.28L504.96,355.88L505.93,356.73L505.56,359.69L503.71,361.4L504.24,363.23L505.69,363.29L506.4,364.88L507.47,365.4L507.31,367.95L505.94,368.9L505.08,369.95L503.15,371.21L503.45,372.56L503.21,373.94z"
810
- },
811
- {
812
- "id":"TR",
813
- "title":"Turkey",
814
- "d":"M578.75,336.6l4.02,1.43l3.27,-0.57l2.41,0.33l3.31,-1.94l2.99,-0.18l2.7,1.83l0.48,1.3l-0.27,1.79l2.08,0.91l1.1,1.06l-1.92,1.03l0.88,4.11l-0.55,1.1l1.53,2.82l-1.34,0.59l-0.98,-0.89l-3.26,-0.45l-1.2,0.55l-3.19,0.54l-1.51,-0.06l-3.23,1.31l-2.31,0.01l-1.49,-0.66l-3.09,0.97l-0.92,-0.68l-0.15,1.94l-0.75,0.76l-0.75,0.76l-1.03,-1.57l1.06,-1.3l-1.71,0.3l-2.35,-0.8l-1.93,2l-4.26,0.39l-2.27,-1.86l-3.02,-0.12l-0.65,1.44l-1.94,0.41l-2.71,-1.85l-3.06,0.06l-1.66,-3.48l-2.05,-1.96l1.36,-2.78l-1.78,-1.72l3.11,-3.48l4.32,-0.15l1.18,-2.81l5.34,0.49l3.37,-2.42l3.27,-1.06l4.64,-0.08L578.75,336.6zM551.5,338.99l-2.34,1.98l-0.88,-1.71l0.04,-0.76l0.67,-0.41l0.87,-2.33l-1.37,-0.99l2.86,-1.18l2.41,0.5l0.33,1.44l2.45,1.2l-0.51,0.91l-3.33,0.2L551.5,338.99z"
815
- },
816
- {
817
- "id":"TT",
818
- "title":"Trinidad and Tobago",
819
- "d":"M302.31,433.24L303.92,432.87L304.51,432.97L304.4,435.08L302.06,435.39L301.55,435.14L302.37,434.36z"
820
- },
821
- {
822
- "id":"TW",
823
- "title":"Taiwan",
824
- "d":"M816.7,393.27L815.01,398.14L813.81,400.62L812.33,398.07L812.01,395.82L813.66,392.82L815.91,390.5L817.19,391.41z"
825
- },
826
- {
827
- "id":"TZ",
828
- "title":"Tanzania",
829
- "d":"M570.31,466.03L570.79,466.34L580.95,472.01L581.15,473.63L585.17,476.42L583.88,479.87L584.04,481.46L585.84,482.48L585.92,483.21L585.15,484.91L585.31,485.76L585.13,487.11L586.11,488.87L587.27,491.66L588.29,492.28L586.06,493.92L583,495.02L581.32,494.98L580.32,495.83L578.37,495.9L577.63,496.26L574.26,495.46L572.15,495.69L571.37,491.83L570.42,490.51L569.85,489.73L567.11,489.21L565.51,488.36L563.73,487.89L562.61,487.41L561.44,486.7L559.93,483.15L558.3,481.58L557.74,479.96L558.02,478.5L557.52,475.93L558.68,475.8L559.69,474.79L560.79,473.33L561.48,472.75L561.45,471.84L560.85,471.21L560.69,470.11L561.49,469.76L561.66,468.12L560.54,466.55L561.53,466.21L564.6,466.25z"
830
- },
831
- {
832
- "id":"UA",
833
- "title":"Ukraine",
834
- "d":"M564.38,292.49L565.42,292.68L566.13,291.64L566.98,291.87L569.89,291.43L571.68,294L570.98,294.92L571.21,296.31L573.45,296.52L574.45,298.45L574.39,299.32L577.95,300.86L580.1,300.17L581.83,302.21L583.47,302.16L587.6,303.57L587.63,304.84L586.5,307.07L587.11,309.4L586.67,310.79L583.96,311.1L582.51,312.26L582.43,314.09L580.19,314.42L578.32,315.74L575.7,315.95L573.28,317.47L573.45,319.97L574.82,320.93L577.68,320.69L577.13,322.11L574.06,322.79L570.25,325.06L568.7,324.27L569.31,322.42L566.25,321.26L566.75,320.49L569.43,319.16L568.62,318.24L564.26,317.22L564.07,315.71L561.47,316.21L560.43,318.44L558.26,321.39L556.98,320.71L555.67,321.35L554.42,320.62L555.12,320.18L555.61,318.81L556.38,317.52L556.18,316.8L556.77,316.47L557.04,317.04L558.7,317.15L559.44,316.86L558.92,316.44L559.11,315.84L558.13,314.8L557.73,313.08L556.71,312.41L556.91,311L555.64,309.88L554.49,309.72L552.42,308.41L550.56,308.83L549.89,309.45L548.71,309.44L548,310.42L545.93,310.82L544.97,311.46L543.67,310.45L541.88,310.43L540.14,309.97L538.93,310.86L538.73,309.74L537.18,308.6L537.73,306.89L538.5,305.78L539.11,306.03L538.39,304.11L540.94,300.5L542.33,299.99L542.63,298.75L541.22,294.86L542.56,294.69L544.1,293.46L546.27,293.36L549.1,293.72L552.23,294.8L554.44,294.89L555.49,295.54L556.54,294.76L557.28,295.81L559.81,295.59L560.92,296.02L561.11,293.76L561.97,292.76z"
835
- },
836
- {
837
- "id":"UG",
838
- "title":"Uganda",
839
- "d":"M564.6,466.25L561.53,466.21L560.54,466.55L558.87,467.41L558.19,467.12L558.21,465.02L558.86,463.96L559.02,461.72L559.61,460.43L560.68,458.97L561.76,458.23L562.66,457.24L561.54,456.87L561.71,453.61L562.86,452.84L564.64,453.47L566.9,452.82L568.87,452.82L570.6,451.54L571.93,453.48L572.26,454.88L573.49,458.08L572.47,460.11L571.09,461.95L570.29,463.08L570.31,466.03z"
840
- },
841
- {
842
- "id":"US",
843
- "title":"United States",
844
- "d":"M109.25,279.8L109.25,279.8l-1.54,-1.83l-2.47,-1.57l-0.79,-4.36l-3.61,-4.13l-1.51,-4.94l-2.69,-0.34l-4.46,-0.13l-3.29,-1.54l-5.8,-5.64l-2.68,-1.05l-4.9,-1.99l-3.88,0.48l-5.51,-2.59l-3.33,-2.43l-3.11,1.21l0.58,3.93l-1.55,0.36l-3.24,1.16L53,256.26l-3.11,1.16l-0.4,-3.24l1.26,-5.53l2.98,-1.77l-0.77,-1.46l-3.57,3.22l-1.91,3.77l-4.04,3.95l2.05,2.65l-2.65,3.85l-3.01,2.21l-2.81,1.59l-0.69,2.29l-4.38,2.63l-0.89,2.36l-3.28,2.13l-1.92,-0.38l-2.62,1.38l-2.85,1.67l-2.33,1.63l-4.81,1.38l-0.44,-0.81l3.07,-2.27l2.74,-1.51l2.99,-2.71l3.48,-0.56l1.38,-2.06l3.89,-3.05l0.63,-1.03l2.07,-1.83l0.48,-4l1.43,-3.17l-3.23,1.64l-0.9,-0.93l-1.52,1.95l-1.83,-2.73l-0.76,1.94l-1.05,-2.7l-2.8,2.17h-1.72l-0.24,-3.23l0.51,-2.02l-1.81,-1.98l-3.65,1.07l-2.37,-2.63l-1.92,-1.36l-0.01,-3.25l-2.16,-2.48l1.08,-3.41l2.29,-3.37l1,-3.15l2.27,-0.45l1.92,0.99l2.26,-3.01l2.04,0.54l2.14,-1.96l-0.52,-2.92l-1.57,-1.16l2.08,-2.52l-1.72,0.07l-2.98,1.43l-0.85,1.43l-2.21,-1.43l-3.97,0.73l-4.11,-1.56l-1.18,-2.65l-3.55,-3.91l3.94,-2.87l6.25,-3.41h2.31l-0.38,3.48l5.92,-0.27l-2.28,-4.34l-3.45,-2.72l-1.99,-3.64l-2.69,-3.17l-3.85,-2.38l1.57,-4.03l4.97,-0.25l3.54,-3.58l0.67,-3.92l2.86,-3.91l2.73,-0.95l5.31,-3.76l2.58,0.57l4.31,-4.61l4.24,1.83l2.03,3.87l1.25,-1.65l4.74,0.51l-0.17,1.95l4.29,1.43l2.86,-0.84l5.91,2.64l5.39,0.78l2.16,1.07l3.73,-1.34l4.25,2.46l3.05,1.13l-0.02,27.65l-0.01,35.43l2.76,0.17l2.73,1.56l1.96,2.44l2.49,3.6l2.73,-3.05l2.81,-1.79l1.49,2.85l1.89,2.23l2.57,2.42l1.75,3.79l2.87,5.88l4.77,3.2l0.08,3.12L109.25,279.8zM285.18,314.23l-1.25,-1.19l-1.88,0.7l-0.93,-1.08l-2.14,3.1l-0.86,3.15l-1,1.82l-1.19,0.62l-0.9,0.2l-0.28,0.98h-5.17l-4.26,0.03l-1.27,0.73l-2.87,2.73l0.29,0.54l0.17,1.51l-2.1,1.27l-2.3,-0.32l-2.2,-0.14l-1.33,0.44l0.25,1.15l0,0l0.05,0.37l-2.42,2.27l-2.11,1.09l-1.44,0.51l-1.66,1.03l-2.03,0.5l-1.4,-0.19l-1.73,-0.77l0.96,-1.45l0.62,-1.32l1.32,-2.09l-0.14,-1.57l-0.5,-2.24l-1.04,-0.39l-1.74,1.7l-0.56,-0.03l-0.14,-0.97l1.54,-1.56l0.26,-1.79l-0.23,-1.79l-2.08,-1.55l-2.38,-0.8l-0.39,1.52l-0.62,0.4l-0.5,1.95l-0.26,-1.33l-1.12,0.95l-0.7,1.32l-0.73,1.92l-0.14,1.64l0.93,2.38l-0.08,2.51l-1.14,1.84l-0.57,0.52l-0.76,0.41l-0.95,0.02l-0.26,-0.25l-0.76,-1.98l-0.02,-0.98l0.08,-0.94l-0.35,-1.87l0.53,-2.18l0.63,-2.71l1.46,-3.03l-0.42,0.01l-2.06,2.54l-0.38,-0.46l1.1,-1.42l1.67,-2.57l1.91,-0.36l2.19,-0.8l2.21,0.42l0.09,0.02l2.47,-0.36l-1.4,-1.61l-0.75,-0.13l-0.86,-0.16l-0.59,-1.14l-2.75,0.36l-2.49,0.9l-1.97,-1.55l-1.59,-0.52l0.9,-2.17l-2.48,1.37l-2.25,1.33l-2.16,1.04l-1.72,-1.4l-2.81,0.85l0.01,-0.6l1.9,-1.73l1.99,-1.65l2.86,-1.37l-3.45,-1.09l-2.27,0.55l-2.72,-1.3l-2.86,-0.67l-1.96,-0.26l-0.87,-0.72l-0.5,-2.35l-0.95,0.02l-0.01,1.64h-5.8h-9.59h-9.53h-8.42h-8.41h-8.27h-8.55h-2.76h-8.32h-7.96l0.95,3.47l0.45,3.41l-0.69,1.09l-1.49,-3.91l-4.05,-1.42l-0.34,0.82l0.82,1.94l0.89,3.53l0.51,5.42l-0.34,3.59l-0.34,3.54l-1.1,3.61l0.9,2.9l0.1,3.2l-0.61,3.05l1.49,1.99l0.39,2.95l2.17,2.99l1.24,1.17l-0.1,0.82l2.34,4.85l2.72,3.45l0.34,1.87l0.71,0.55l2.6,0.33l1,0.91l1.57,0.17l0.31,0.96l1.31,0.4l1.82,1.92l0.47,1.7l3.19,-0.25l3.56,-0.36l-0.26,0.65l4.23,1.6l6.4,2.31l5.58,-0.02h2.22l0.01,-1.35h4.86l1.02,1.16l1.43,1.03l1.67,1.43l0.93,1.69l0.7,1.77l1.45,0.97l2.33,0.96l1.77,-2.53l2.29,-0.06l1.98,1.28l1.41,2.18l0.97,1.86l1.65,1.8l0.62,2.19l0.79,1.47l2.19,0.96l1.99,0.68l1.09,-0.09l-0.53,-1.06l-0.14,-1.5l0.03,-2.16l0.65,-1.42l1.53,-1.51l2.79,-1.37l2.55,-2.37l2.36,-0.75l1.74,-0.23l2.04,0.74l2.45,-0.4l2.09,1.69l2.03,0.1l1.05,-0.61l1.04,0.47l0.53,-0.42l-0.6,-0.63l0.05,-1.3l-0.5,-0.86l1.16,-0.5l2.14,-0.22l2.49,0.36l3.17,-0.41l1.76,0.8l1.36,1.5l0.5,0.16l2.83,-1.46l1.09,0.49l2.19,2.68l0.79,1.75l-0.58,2.1l0.42,1.23l1.3,2.4l1.49,2.68l1.07,0.71l0.44,1.35l1.38,0.37l0.84,-0.39l0.7,-1.89l0.12,-1.21l0.09,-2.1l-1.33,-3.65l-0.02,-1.37l-1.25,-2.25l-0.94,-2.75l-0.5,-2.25l0.43,-2.31l1.32,-1.94l1.58,-1.57l3.08,-2.16l0.4,-1.12l1.42,-1.23l1.4,-0.22l1.84,-1.98l2.9,-1.01l1.78,-2.53l-0.39,-3.46l-0.29,-1.21l-0.8,-0.24l-0.12,-3.35l-1.93,-1.14l1.85,0.56l-0.6,-2.26l0.54,-1.55l0.33,2.97l1.43,1.36l-0.87,2.4l0.26,0.14l1.58,-2.81l0.9,-1.38l-0.04,-1.35l-0.7,-0.64l-0.58,-1.94l0.92,0.9l0.62,0.19l0.21,0.92l2.04,-2.78l0.61,-2.62l-0.83,-0.17l0.85,-1.02l-0.08,0.45l1.79,-0.01l3.93,-1.11l-0.83,-0.7l-4.12,0.7l2.34,-1.07l1.63,-0.18l1.22,-0.19l2.07,-0.65l1.35,0.07l1.89,-0.61l0.22,-1.07l-0.84,-0.84l0.29,1.37l-1.16,-0.09l-0.93,-1.99l0.03,-2.01l0.48,-0.86l1.48,-2.28l2.96,-1.15l2.88,-1.34l2.99,-1.9l-0.48,-1.29l-1.83,-2.25L285.18,314.23zM45.62,263.79l-1.5,0.8l-2.55,1.86l0.43,2.42l1.43,1.32l2.8,-1.95l2.43,-2.47l-1.19,-1.63L45.62,263.79zM0,235.22l2.04,-1.26l0.23,-0.68L0,232.61V235.22zM8.5,250.59l-2.77,0.97l1.7,1.52l1.84,1.04l1.72,-0.87l-0.27,-2.15L8.5,250.59zM105.85,283.09l-2.69,0.38l-1.32,-0.62l-0.17,1.52l0.52,2.07l1.42,1.46l1.04,2.13l1.69,2.1l1.12,0.01l-2.44,-3.7L105.85,283.09zM37.13,403.77l-1,-0.28l-0.27,0.26l0.02,0.19l0.32,0.24l0.48,0.63l0.94,-0.21l0.23,-0.36L37.13,403.77zM34.14,403.23l1.5,0.09l0.09,-0.32l-1.38,-0.13L34.14,403.23zM40.03,406.52l-0.5,-0.26l-1.07,-0.5l-0.21,-0.06l-0.16,0.28l0.19,0.58l-0.49,0.48l-0.14,0.33l0.46,1.08l-0.08,0.83l0.7,0.42l0.41,-0.49l0.9,-0.46l1.1,-0.63l0.07,-0.16l-0.71,-1.04L40.03,406.52zM32.17,401.38l-0.75,0.41l0.11,0.12l0.36,0.68l0.98,0.11l0.2,0.04l0.15,-0.17l-0.81,-0.99L32.17,401.38zM27.77,399.82l-0.43,0.3l-0.15,0.22l0.94,0.55l0.33,-0.3l-0.06,-0.7L27.77,399.82z"
845
- },
846
- {
847
- "id":"UY",
848
- "title":"Uruguay",
849
- "d":"M313.68,551.79L315.5,551.45L318.31,553.95L319.35,553.86L322.24,555.94L324.44,557.76L326.06,560.01L324.82,561.58L325.6,563.48L324.39,565.6L321.22,567.48L319.15,566.8L317.63,567.17L315.04,565.71L313.14,565.82L311.43,563.95L311.65,561.79L312.26,561.05L312.23,557.75L312.98,554.38z"
850
- },
851
- {
852
- "id":"UZ",
853
- "title":"Uzbekistan",
854
- "d":"M661.76,350.95L661.84,348.79L658.11,347.27L655.18,345.52L653.35,343.83L650.14,341.32L648.76,337.53L647.82,336.86L644.79,337.03L643.72,336.26L643.42,333.27L639.64,331.27L637.28,333.47L634.88,334.77L635.34,336.65L632.18,336.7L632.07,322.57L639.29,320.22L639.81,320.57L644.16,323.41L646.45,324.89L649.13,328.39L652.42,327.83L657.23,327.53L660.58,330.33L660.37,334.13L661.74,334.16L662.31,337.22L665.88,337.34L666.64,339.09L667.69,339.07L668.92,336.42L672.61,333.81L674.22,333.11L675.05,333.48L672.7,335.91L674.77,337.31L676.77,336.38L680.09,338.34L676.5,340.98L674.37,340.62L673.21,340.72L672.81,339.7L673.39,337.99L669.64,338.85L668.75,341.2L667.42,343.21L665.08,343.04L664.35,344.63L666.41,345.49L667.01,348.15L665.44,351.72L663.32,350.98z"
855
- },
856
- {
857
- "id":"VE",
858
- "title":"Venezuela",
859
- "d":"M275.25,430.35L275.17,431.02L273.52,431.35L274.44,432.64L274.4,434.13L273.17,435.77L274.23,438.01L275.44,437.83L276.07,435.79L275.2,434.79L275.06,432.65L278.55,431.49L278.16,430.15L279.14,429.25L280.15,431.25L282.12,431.3L283.94,432.88L284.05,433.82L286.56,433.84L289.56,433.55L291.17,434.82L293.31,435.17L294.88,434.29L294.91,433.57L298.39,433.4L301.75,433.36L299.37,434.2L300.32,435.54L302.57,435.75L304.69,437.14L305.14,439.4L306.6,439.33L307.7,440L305.48,441.65L305.23,442.68L306.19,443.72L305.5,444.24L303.77,444.69L303.83,445.99L303.07,446.76L304.96,448.88L305.34,449.67L304.31,450.74L301.17,451.78L299.16,452.22L298.35,452.88L296.12,452.18L294.04,451.82L293.52,452.08L294.77,452.8L294.66,454.67L295.05,456.43L297.42,456.67L297.58,457.25L295.57,458.05L295.25,459.23L294.09,459.68L292.01,460.33L291.47,461.19L289.29,461.37L287.74,459.89L286.89,457.12L286.14,456.14L285.12,455.53L286.54,454.14L286.45,453.51L285.65,452.68L285.09,450.83L285.31,448.82L285.93,447.88L286.44,446.38L285.45,445.89L283.85,446.21L281.83,446.06L280.7,446.36L278.72,443.95L277.09,443.59L273.49,443.86L272.82,442.88L272.13,442.65L272.03,442.06L272.36,441.02L272.14,439.89L271.52,439.27L271.16,437.97L269.72,437.79L270.49,436.13L270.84,434.12L271.65,433.06L272.74,432.25L273.45,430.83z"
860
- },
861
- {
862
- "id":"VN",
863
- "title":"Viet Nam",
864
- "d":"M778.21,401.87L774.47,404.43L772.13,407.24L771.51,409.29L773.66,412.38L776.28,416.2L778.82,417.99L780.53,420.32L781.81,425.64L781.43,430.66L779.1,432.53L775.88,434.36L773.6,436.72L770.1,439.34L769.08,437.53L769.87,435.62L767.79,434.01L770.22,432.87L773.16,432.67L771.93,430.94L776.64,428.75L776.99,425.33L776.34,423.41L776.85,420.53L776.14,418.49L774.02,416.47L772.25,413.9L769.92,410.44L766.56,408.68L767.37,407.61L769.16,406.84L768.07,404.25L764.62,404.22L763.36,401.5L761.72,399.13L763.23,398.39L765.46,398.41L768.19,398.06L770.58,396.44L771.93,397.58L774.5,398.13L774.05,399.87L775.39,401.09z"
865
- },
866
- {
867
- "id":"VU",
868
- "title":"Vanuatu",
869
- "d":"M945.87,509.9l-0.92,0.38l-0.94,-1.27l0.1,-0.78L945.87,509.9zM943.8,505.46l0.46,2.33l-0.75,-0.36l-0.58,0.16l-0.4,-0.8l-0.06,-2.21L943.8,505.46z"
870
- },
871
- {
872
- "id":"YE",
873
- "title":"Yemen",
874
- "d":"M624.16,416.33L622.13,417.12L621.59,418.4L621.52,419.39L618.73,420.61L614.25,421.96L611.74,423.99L610.51,424.14L609.67,423.97L608.03,425.17L606.24,425.72L603.89,425.87L603.18,426.03L602.57,426.78L601.83,426.99L601.4,427.72L600.01,427.66L599.11,428.04L597.17,427.9L596.44,426.23L596.52,424.66L596.07,423.81L595.52,421.69L594.71,420.5L595.27,420.36L594.98,419.04L595.32,418.48L595.2,417.22L596.43,416.29L596.14,415.06L596.89,413.63L598.04,414.39L598.8,414.12L602.03,414.05L602.55,414.35L605.26,414.64L606.33,414.49L607.03,415.46L608.34,414.98L610.35,411.91L612.97,410.59L621.05,409.46L623.25,414.3z"
875
- },
876
- {
877
- "id":"ZA",
878
- "title":"South Africa",
879
- "d":"M563.63,548.71l-0.55,0.46l-1.19,1.63l-0.78,1.66l-1.59,2.33l-3.17,3.38l-1.98,1.98l-2.12,1.51l-2.93,1.3l-1.43,0.17l-0.36,0.93l-1.7,-0.5l-1.39,0.64l-3.04,-0.65l-1.7,0.41l-1.16,-0.18l-2.89,1.33l-2.39,0.54l-1.73,1.28l-1.28,0.08l-1.19,-1.21l-0.95,-0.06l-1.21,-1.51l-0.13,0.47l-0.37,-0.91l0.02,-1.96l-0.91,-2.23l0.9,-0.6l-0.07,-2.53l-1.84,-3.05l-1.41,-2.74v-0.01l-2.01,-4.15l1.34,-1.57l1.11,0.87l0.47,1.36l1.26,0.23l1.76,0.6l1.51,-0.23l2.5,-1.63v-11.52l0.76,0.46l1.66,2.93l-0.26,1.89l0.63,1.1l2.01,-0.32l1.4,-1.39l1.33,-0.93l0.69,-1.48l1.37,-0.72l1.18,0.38l1.34,0.87l2.28,0.15l1.79,-0.72l0.28,-0.96l0.49,-1.47l1.53,-0.25l0.84,-1.15l0.93,-2.03l2.52,-2.26l3.97,-2.22l1.14,0.03l1.36,0.51l0.94,-0.36l1.49,0.3l1.34,4.26l0.73,2.17l-0.5,3.43l0.24,1.11l-1.42,-0.57l-0.81,0.22l-0.26,0.9l-0.77,1.17l0.03,1.08l1.67,1.7l1.64,-0.34l0.57,-1.39l2.13,0.03l-0.7,2.28l-0.33,2.62l-0.73,1.43L563.63,548.71zM556.5,547.75l-1.22,-0.98l-1.31,0.65l-1.52,1.25l-1.5,2.03l2.1,2.48l1,-0.32l0.52,-1.03l1.56,-0.5l0.48,-1.05l0.86,-1.56L556.5,547.75z"
880
- },
881
- {
882
- "id":"ZM",
883
- "title":"Zambia",
884
- "d":"M567.11,489.21L568.43,490.47L569.14,492.87L568.66,493.64L568.1,495.94L568.64,498.3L567.76,499.29L566.91,501.95L568.38,502.69L559.87,505.07L560.14,507.12L558.01,507.52L556.42,508.67L556.08,509.68L555.07,509.9L552.63,512.3L551.08,514.19L550.13,514.26L549.22,513.92L546.09,513.6L545.59,513.38L545.56,513.14L544.46,512.48L542.64,512.31L540.34,512.98L538.51,511.16L536.62,508.78L536.75,499.62L542.59,499.66L542.35,498.67L542.77,497.6L542.28,496.27L542.6,494.89L542.3,494.01L543.27,494.08L543.43,494.96L544.74,494.89L546.52,495.15L547.46,496.44L549.7,496.84L551.42,495.94L552.05,497.43L554.2,497.83L555.23,499.05L556.38,500.62L558.53,500.65L558.29,497.57L557.52,498.08L555.56,496.98L554.8,496.47L555.15,493.62L555.65,490.27L555.02,489.02L555.82,487.22L556.57,486.89L560.34,486.41L561.44,486.7L562.61,487.41L563.73,487.89L565.51,488.36z"
885
- },
886
- {
887
- "id":"ZW",
888
- "title":"Zimbabwe",
889
- "d":"M562.71,527L561.22,526.7L560.27,527.06L558.92,526.55L557.78,526.52L555.99,525.16L553.82,524.7L553,522.8L552.99,521.75L551.79,521.43L548.62,518.18L547.73,516.47L547.17,515.95L546.09,513.6L549.22,513.92L550.13,514.26L551.08,514.19L552.63,512.3L555.07,509.9L556.08,509.68L556.42,508.67L558.01,507.52L560.14,507.12L560.32,508.2L562.66,508.14L563.96,508.75L564.56,509.47L565.9,509.68L567.35,510.62L567.36,514.31L566.81,516.35L566.69,518.55L567.14,519.43L566.83,521.17L566.4,521.44L565.66,523.59z"
890
- }
891
- ]
892
- }
893
- }
894
  };
1
+ // (c) ammap.com | SVG (in JSON format) map of World - Low
2
+ // areas: {id:"AE"},{id:"AF"},{id:"AL"},{id:"AM"},{id:"AO"},{id:"AR"},{id:"AT"},{id:"AU"},{id:"AZ"},{id:"BA"},{id:"BD"},{id:"BE"},{id:"BF"},{id:"BG"},{id:"BI"},{id:"BJ"},{id:"BN"},{id:"BO"},{id:"BR"},{id:"BS"},{id:"BT"},{id:"BW"},{id:"BY"},{id:"BZ"},{id:"CA"},{id:"CD"},{id:"CF"},{id:"CG"},{id:"CH"},{id:"CI"},{id:"CL"},{id:"CM"},{id:"CN"},{id:"CO"},{id:"CR"},{id:"CU"},{id:"CY"},{id:"CZ"},{id:"DE"},{id:"DJ"},{id:"DK"},{id:"DO"},{id:"DZ"},{id:"EC"},{id:"EE"},{id:"EG"},{id:"ER"},{id:"ES"},{id:"ET"},{id:"FK"},{id:"FI"},{id:"FJ"},{id:"FR"},{id:"GA"},{id:"GB"},{id:"GE"},{id:"GF"},{id:"GH"},{id:"GL"},{id:"GM"},{id:"GN"},{id:"GQ"},{id:"GR"},{id:"GT"},{id:"GW"},{id:"GY"},{id:"HN"},{id:"HR"},{id:"HT"},{id:"HU"},{id:"ID"},{id:"IE"},{id:"IL"},{id:"IN"},{id:"IQ"},{id:"IR"},{id:"IS"},{id:"IT"},{id:"JM"},{id:"JO"},{id:"JP"},{id:"KE"},{id:"KG"},{id:"KH"},{id:"KP"},{id:"KR"},{id:"KV"},{id:"KW"},{id:"KZ"},{id:"LA"},{id:"LB"},{id:"LK"},{id:"LR"},{id:"LS"},{id:"LT"},{id:"LU"},{id:"LV"},{id:"LY"},{id:"MA"},{id:"MD"},{id:"ME"},{id:"MG"},{id:"MK"},{id:"ML"},{id:"MM"},{id:"MN"},{id:"MR"},{id:"MW"},{id:"MX"},{id:"MY"},{id:"MZ"},{id:"NA"},{id:"NC"},{id:"NE"},{id:"NG"},{id:"NI"},{id:"NL"},{id:"NO"},{id:"NP"},{id:"NZ"},{id:"OM"},{id:"PA"},{id:"PE"},{id:"PG"},{id:"PH"},{id:"PK"},{id:"PL"},{id:"PR"},{id:"PS"},{id:"PT"},{id:"PY"},{id:"QA"},{id:"RO"},{id:"RS"},{id:"RU"},{id:"RW"},{id:"SA"},{id:"SB"},{id:"SD"},{id:"SE"},{id:"SI"},{id:"SJ"},{id:"SK"},{id:"SL"},{id:"SN"},{id:"SO"},{id:"SR"},{id:"SS"},{id:"SV"},{id:"SY"},{id:"SZ"},{id:"TD"},{id:"TF"},{id:"TG"},{id:"TH"},{id:"TJ"},{id:"TL"},{id:"TM"},{id:"TN"},{id:"TR"},{id:"TT"},{id:"TW"},{id:"TZ"},{id:"UA"},{id:"UG"},{id:"US"},{id:"UY"},{id:"UZ"},{id:"VE"},{id:"VN"},{id:"VU"},{id:"YE"},{id:"ZA"},{id:"ZM"},{id:"ZW"}
3
+ AmCharts.maps.worldLow={
4
+ "svg": {
5
+ "defs": {
6
+ "amcharts:ammap": {
7
+ "projection":"mercator",
8
+ "leftLongitude":"-169.522279",
9
+ "topLatitude":"83.646363",
10
+ "rightLongitude":"190.122401",
11
+ "bottomLatitude":"-55.621433"
12
+ }
13
+ },
14
+ "g":{
15
+ "path":[
16
+ {
17
+ "id":"AE",
18
+ "title":"United Arab Emirates",
19
+ "d":"M619.87,393.72L620.37,393.57L620.48,394.41L622.67,393.93L624.99,394.01L626.68,394.1L628.6,392.03L630.7,390.05L632.47,388.15L633,389.2L633.38,391.64L631.95,391.65L631.72,393.65L632.22,394.07L630.95,394.67L630.94,395.92L630.12,397.18L630.05,398.39L629.48,399.03L621.06,397.51L619.98,394.43z"
20
+ },
21
+ {
22
+ "id":"AF",
23
+ "title":"Afghanistan",
24
+ "d":"M646.88,356.9L649.74,358.2L651.85,357.74L652.44,356.19L654.65,355.67L656.23,354.62L656.79,351.83L659.15,351.15L659.59,349.9L660.92,350.84L661.76,350.95L663.32,350.98L665.44,351.72L666.29,352.14L668.32,351.02L669.27,351.69L670.17,350.09L671.85,350.16L672.28,349.64L672.58,348.21L673.79,346.98L675.3,347.78L675,348.87L675.85,349.04L675.58,351.99L676.69,353.14L677.67,352.4L678.92,352.06L680.66,350.49L682.59,350.75L685.49,350.75L685.99,351.76L684.35,352.15L682.93,352.8L679.71,353.2L676.7,353.93L675.06,355.44L675.72,356.9L676.05,358.6L674.65,360.03L674.77,361.33L674,362.55L671.33,362.44L672.43,364.66L670.65,365.51L669.46,367.51L669.61,369.49L668.51,370.41L667.48,370.11L665.33,370.54L665.03,371.45L662.94,371.45L661.38,373.29L661.28,376.04L657.63,377.37L655.68,377.09L655.11,377.79L653.44,377.39L650.63,377.87L645.94,376.23L648.48,373.3L648.25,371.2L646.13,370.65L645.91,368.56L644.99,365.92L646.19,364.09L644.97,363.6L645.74,361.15z"
25
+ },
26
+ {
27
+ "id":"AL",
28
+ "title":"Albania",
29
+ "d":"M532.98,334.66L532.63,335.93L533.03,337.52L534.19,338.42L534.13,339.39L533.22,339.93L533.05,341.12L531.75,342.88L531.27,342.63L531.22,341.83L529.66,340.6L529.42,338.85L529.66,336.32L530.04,335.16L529.57,334.57L529.38,333.38L530.6,331.51L530.77,332.23L531.53,331.89L532.13,332.91L532.8,333.29z"
30
+ },
31
+ {
32
+ "id":"AM",
33
+ "title":"Armenia",
34
+ "d":"M597.45,337.5L601.35,336.92L601.93,337.9L603,338.54L602.43,339.46L603.93,340.72L603.14,341.88L604.33,342.87L605.59,343.46L605.65,345.96L604.63,346.06L603.49,343.98L603.5,343.43L602.26,343.44L601.43,342.46L600.85,342.56L599.74,341.5L597.66,340.59L597.93,338.8z"
35
+ },
36
+ {
37
+ "id":"AO",
38
+ "title":"Angola",
39
+ "d":"M521.03,479.78l0.69,2.09l0.8,1.68l0.64,0.91l1.07,1.47l1.85,-0.23l0.93,-0.4l1.55,0.4l0.42,-0.7l0.7,-1.64l1.74,-0.11l0.15,-0.49l1.43,-0.01l-0.24,1.01l3.4,-0.02l0.05,1.77l0.57,1.09l-0.41,1.7l0.21,1.74l0.94,1.05l-0.15,3.37l0.69,-0.26l1.22,0.07l1.74,-0.42l1.28,0.17l0.3,0.88l-0.32,1.38l0.49,1.34l-0.42,1.07l0.24,0.99l-5.84,-0.04l-0.13,9.16l1.89,2.38l1.83,1.82l-5.15,1.19l-6.79,-0.41l-1.94,-1.4l-11.37,0.13l-0.42,0.21L513,511.4l-1.82,-0.09l-1.68,0.5l-1.35,0.56l-0.26,-1.83l0.39,-2.55l0.97,-2.65l0.15,-1.24l0.91,-2.59l0.67,-1.17l1.61,-1.87l0.9,-1.27l0.29,-2.11l-0.15,-1.61l-0.84,-1.01l-0.75,-1.72l-0.69,-1.69l0.15,-0.59l0.86,-1.12l-0.85,-2.72l-0.57,-1.88l-1.4,-1.77l0.27,-0.54l1.16,-0.38l0.81,0.05l0.98,-0.34L521.03,479.78zM510.12,479.24l-0.71,0.3l-0.75,-2.1l1.13,-1.21l0.85,-0.47l1.05,0.96l-1.02,0.59l-0.46,0.72L510.12,479.24z"
40
+ },
41
+ {
42
+ "id":"AR",
43
+ "title":"Argentina",
44
+ "d":"M291.6,648.91l-2.66,0.25l-1.43,-1.73l-1.69,-0.13h-3v-10.57l1.08,2.15l1.4,3.53l3.65,2.87l3.93,1.21L291.6,648.91zM293.1,526.47l1.65,2.18l1.09,-2.43l3.2,0.12l0.45,0.64l5.15,4.94l2.29,0.46l3.43,2.26l2.89,1.2l0.4,1.36l-2.76,4.73l2.83,0.85l3.15,0.48l2.22,-0.5l2.54,-2.4l0.46,-2.74l1.39,-0.59l1.41,1.79l-0.06,2.49l-2.36,1.73l-1.88,1.28l-3.16,3.08l-3.74,4.37l-0.7,2.59l-0.75,3.37l0.03,3.3l-0.61,0.74l-0.22,2.17l-0.19,1.76l3.56,2.91l-0.38,2.37l1.75,1.51l-0.14,1.7l-2.69,4.52l-4.16,1.91l-5.62,0.75l-3.08,-0.36l0.59,2.15l-0.57,2.72l0.52,1.85l-1.68,1.3l-2.87,0.51l-2.7,-1.35l-1.08,0.97l0.39,3.71l1.89,1.14l1.54,-1.19l0.84,1.96l-2.58,1.18l-2.25,2.38l-0.41,3.91l-0.66,2.11l-2.65,0.01l-2.2,2.04l-0.8,3.01l2.76,2.98l2.68,0.83l-0.96,3.73l-3.31,2.38l-1.82,5.03l-2.56,1.72l-1.15,2.06l0.91,4.64l1.87,2.63l-1.18,-0.23l-2.6,-0.71l-6.78,-0.61l-1.16,-2.63l0.05,-3.33l-1.87,0.28l-0.99,-1.6l-0.25,-4.6l2.15,-1.88l0.89,-2.68l-0.33,-2.11l1.49,-3.52l1.02,-5.35l-0.3,-2.33l1.22,-0.75l-0.3,-1.48l-1.3,-0.78l0.92,-1.63l-1.27,-1.46l-0.65,-4.4l1.13,-0.77l-0.47,-4.54l0.66,-3.75l0.75,-3.22l1.68,-1.3l-0.85,-3.46l-0.01,-3.22l2.12,-2.26l-0.06,-2.87l1.6,-3.31l0.01,-3.09l-0.73,-0.61l-1.29,-5.69l1.73,-3.34l-0.27,-3.11l1,-2.9l1.84,-2.96l1.98,-1.95l-0.84,-1.23l0.59,-1l-0.09,-5.14l3.05,-1.51l0.96,-3.16l-0.34,-0.76l2.34,-2.72L293.1,526.47z"
45
+ },
46
+ {
47
+ "id":"AT",
48
+ "title":"Austria",
49
+ "d":"M522.86,309.85L522.65,311.56L521.07,311.57L521.61,312.46L520.68,315.11L520.15,315.8L517.7,315.9L516.28,316.82L513.96,316.51L509.95,315.46L509.33,314.03L506.56,314.75L506.23,315.52L504.53,314.94L503.1,314.83L501.83,314.09L502.26,313.08L502.15,312.34L503,312.12L504.42,313.26L504.82,312.17L507.29,312.35L509.3,311.61L510.64,311.73L511.51,312.58L511.78,311.88L511.38,309.16L512.39,308.62L513.37,306.67L515.46,308.04L517.03,306.3L518.02,305.98L520.2,307.28L521.51,307.06L522.81,307.86L522.58,308.4z"
50
+ },
51
+ {
52
+ "id":"AU",
53
+ "title":"Australia",
54
+ "d":"M882.93,588.16l2.71,1.28l1.53,-0.51l2.19,-0.71l1.68,0.25l0.2,4.43l-0.96,1.3l-0.29,3.06l-0.98,-1.05l-1.95,2.67l-0.58,-0.21l-1.72,-0.12l-1.73,-3.28l-0.38,-2.5l-1.62,-3.25l0.07,-1.7L882.93,588.16zM877.78,502.1l1.01,2.25l1.8,-1.08l0.93,1.22l1.35,1.13l-0.29,1.28l0.6,2.48l0.43,1.45l0.71,0.35l0.76,2.5l-0.27,1.52l0.91,1.99l3.04,1.54l1.98,1.41l1.88,1.29l-0.37,0.72l1.6,1.87l1.09,3.25l1.12,-0.66l1.14,1.31l0.69,-0.46l0.48,3.21l1.99,1.87l1.3,1.17l2.19,2.49l0.79,2.49l0.07,1.77l-0.19,1.94l1.34,2.68l-0.16,2.81l-0.49,1.48l-0.76,2.87l0.06,1.86l-0.55,2.34l-1.24,3l-2.08,1.63l-1.02,2.59l-0.94,1.67l-0.83,2.93l-1.08,1.71l-0.71,2.58l-0.36,2.4l0.14,1.11l-1.61,1.22l-3.14,0.13l-2.59,1.45l-1.29,1.38l-1.69,1.54l-2.32,-1.58l-1.72,-0.63l0.44,-1.85l-1.53,0.67l-2.46,2.58l-2.42,-0.97l-1.59,-0.56l-1.6,-0.25l-2.71,-1.03l-1.81,-2.18l-0.52,-2.66l-0.65,-1.75l-1.38,-1.4l-2.7,-0.41l0.92,-1.66l-0.68,-2.52l-1.37,2.35l-2.5,0.63l1.47,-1.88l0.42,-1.95l1.08,-1.65l-0.22,-2.47l-2.28,2.85l-1.75,1.15l-1.07,2.69l-2.19,-1.4l0.09,-1.79l-1.75,-2.43l-1.48,-1.25l0.53,-0.77l-3.6,-2l-1.97,-0.09l-2.7,-1.6l-5.02,0.31l-3.63,1.18l-3.19,1.1l-2.68,-0.22l-2.97,1.7l-2.43,0.77l-0.54,1.75l-1.04,1.36l-2.38,0.08l-1.76,0.3l-2.48,-0.61l-2.02,0.37l-1.92,0.15l-1.67,1.8l-0.82,-0.15l-1.41,0.96l-1.35,1.08l-2.05,-0.13h-1.88l-2.97,-2.17l-1.51,-0.64l0.06,-1.93l1.39,-0.46l0.48,-0.76l-0.1,-1.2l0.34,-2.3l-0.31,-1.95l-1.48,-3.29l-0.46,-1.85l0.12,-1.83l-1.12,-2.08l-0.07,-0.93l-1.24,-1.26l-0.35,-2.47l-1.6,-2.48l-0.39,-1.33l1.23,1.35l-0.95,-2.88l1.39,0.9l0.83,1.2l-0.05,-1.59l-1.39,-2.43l-0.27,-0.97l-0.65,-0.92l0.3,-1.77l0.57,-0.75l0.38,-1.52l-0.3,-1.77l1.16,-2.17l0.21,2.29l1.18,-2.07l2.28,-1l1.37,-1.28l2.14,-1.1l1.27,-0.23l0.77,0.37l2.21,-1.11l1.7,-0.33l0.42,-0.65l0.74,-0.27l1.55,0.07l2.95,-0.87l1.52,-1.31l0.72,-1.58l1.64,-1.49l0.13,-1.17l0.07,-1.59l1.96,-2.47l1.18,2.51l1.19,-0.58l-1,-1.38l0.88,-1.41l1.24,0.63l0.34,-2.21l1.53,-1.42l0.68,-1.14l1.41,-0.49l0.04,-0.8l1.23,0.34l0.05,-0.72l1.23,-0.41l1.36,-0.39l2.07,1.32l1.56,1.71l1.75,0.02l1.78,0.27l-0.59,-1.58l1.34,-2.3l1.26,-0.75l-0.44,-0.71l1.22,-1.63l1.7,-1.01l1.43,0.34l2.36,-0.54l-0.05,-1.45l-2.05,-0.94l1.49,-0.41l1.86,0.7l1.49,1.17l2.36,0.73l0.8,-0.29l1.74,0.88l1.64,-0.82l1.05,0.25l0.66,-0.55l1.29,1.41l-0.75,1.53l-1.06,1.16l-0.96,0.1l0.33,1.15l-0.82,1.43l-1,1.41l0.2,0.81l2.23,1.6l2.16,0.93l1.44,1l2.03,1.72h0.79l1.47,0.75l0.43,0.9l2.68,0.99l1.85,-1l0.55,-1.57l0.57,-1.29l0.35,-1.59l0.85,-2.3l-0.39,-1.39l0.2,-0.84l-0.32,-1.64l0.37,-2.16l0.54,-0.58l-0.44,-0.95l0.68,-1.51l0.53,-1.56l0.07,-0.81l1.04,-1.06l0.79,1.39l0.19,1.78l0.7,0.34l0.12,1.2l1.02,1.45l0.21,1.62L877.78,502.1z"
55
+ },
56
+ {
57
+ "id":"AZ",
58
+ "title":"Azerbaijan",
59
+ "d":"M601.43,342.46l0.83,0.97l1.24,-0.01l-0.01,0.56l1.14,2.08l-1.92,-0.48l-1.42,-1.66l-0.44,-1.37L601.43,342.46zM608.08,337.03l1.24,0.25l0.48,-0.95l1.67,-1.51l1.47,1.97l1.43,2.62l1.31,0.17l0.86,0.99l-2.31,0.29l-0.49,2.82l-0.48,1.26l-1.03,0.84l0.08,1.77l-0.7,0.18l-1.75,-1.87l0.97,-1.78l-0.83,-1.06l-1.05,0.27l-3.31,2.66l-0.06,-2.5l-1.26,-0.59l-1.19,-0.99l0.79,-1.16l-1.49,-1.26l0.56,-0.92l-1.07,-0.64l-0.58,-0.97l0.69,-0.61l2.09,1.07l1.51,0.22l0.38,-0.43l-1.38,-2.02l0.73,-0.52l0.79,0.13L608.08,337.03z"
60
+ },
61
+ {
62
+ "id":"BA",
63
+ "title":"Bosnia and Herzegovina",
64
+ "d":"M528.54,323.11L529.56,323.1L528.86,324.82L530.21,326.32L529.8,328.14L529.14,328.31L528.61,328.67L527.7,329.56L527.29,331.66L524.81,330.22L523.75,328.61L522.68,327.76L521.39,326.31L520.79,325.1L519.41,323.27L520,321.63L521.01,322.54L521.61,321.72L522.92,321.63L525.33,322.29L527.27,322.23z"
65
+ },
66
+ {
67
+ "id":"BD",
68
+ "title":"Bangladesh",
69
+ "d":"M735.09,400.41L735.04,402.56L734.06,402.1L734.24,404.51L733.44,402.95L733.28,401.43L732.74,399.98L731.57,398.22L728.99,398.1L729.25,399.35L728.37,401.02L727.17,400.41L726.76,400.96L725.97,400.63L724.89,400.36L724.45,397.88L723.48,395.6L723.95,393.76L722.23,392.94L722.85,391.82L724.6,390.67L722.58,389.04L723.57,386.93L725.79,388.27L727.13,388.43L727.38,390.58L730.04,391L732.65,390.95L734.26,391.48L732.97,394.07L731.71,394.25L730.85,395.98L732.38,397.56L732.84,395.62L733.62,395.61z"
70
+ },
71
+ {
72
+ "id":"BE",
73
+ "title":"Belgium",
74
+ "d":"M484.55,295.91L486.6,296.26L489.2,295.33L490.97,297.28L492.52,298.32L492.2,301.29L491.47,301.45L491.16,303.88L488.71,301.91L487.27,302.25L485.31,300.19L484.01,298.42L482.71,298.35L482.3,296.79z"
75
+ },
76
+ {
77
+ "id":"BF",
78
+ "title":"Burkina Faso",
79
+ "d":"M467.33,436.4L465.41,435.67L464.09,435.78L463.11,436.49L461.85,435.89L461.36,434.96L460.1,434.34L459.91,432.7L460.68,431.49L460.61,430.53L462.84,428.17L463.25,426.21L464.02,425.51L465.38,425.89L466.55,425.31L466.93,424.57L469.11,423.29L469.64,422.39L472.26,421.19L473.81,420.78L474.51,421.33L476.3,421.32L476.08,422.72L476.46,424.03L478.04,425.9L478.12,427.28L481.36,427.93L481.29,429.88L480.68,430.74L479.31,431L478.74,432.24L477.78,432.56L475.32,432.5L474.02,432.28L473.12,432.74L471.88,432.53L467.01,432.66L466.94,434.27z"
80
+ },
81
+ {
82
+ "id":"BG",
83
+ "title":"Bulgaria",
84
+ "d":"M538.78,325.56L539.59,327.16L540.67,326.87L542.83,327.48L546.95,327.68L548.34,326.69L551.64,325.79L553.68,327.2L555.33,327.61L553.87,329.2L552.85,331.93L553.75,334.09L551.34,333.58L548.48,334.76L548.45,336.62L545.9,336.97L543.93,335.67L541.68,336.7L539.61,336.59L539.41,334.12L538,332.91L538.47,332.37L538.16,331.92L538.63,330.71L539.7,329.52L538.34,327.86L538.09,326.44z"
85
+ },
86
+ {
87
+ "id":"BI",
88
+ "title":"Burundi",
89
+ "d":"M557.52,475.93L557.34,472.56L556.63,471.3L558.34,471.52L559.2,469.93L560.69,470.11L560.85,471.21L561.45,471.84L561.48,472.75L560.79,473.33L559.69,474.79L558.68,475.8z"
90
+ },
91
+ {
92
+ "id":"BJ",
93
+ "title":"Benin",
94
+ "d":"M482.8,445.92L480.48,446.25L479.79,444.31L479.92,437.85L479.35,437.27L479.25,435.88L478.27,434.89L477.42,434.06L477.78,432.56L478.74,432.24L479.31,431L480.68,430.74L481.29,429.88L482.23,429.05L483.24,429.04L485.38,430.68L485.27,431.63L485.9,433.31L485.35,434.45L485.64,435.21L484.28,436.96L483.42,437.83L482.89,439.6L482.96,441.39z"
95
+ },
96
+ {
97
+ "id":"BN",
98
+ "title":"Brunei Darussalam",
99
+ "d":"M795.46,450.77L796.57,449.72L798.96,448.19L798.83,449.57L798.67,451.35L797.33,451.26L796.74,452.21z"
100
+ },
101
+ {
102
+ "id":"BO",
103
+ "title":"Bolivia",
104
+ "d":"M299.04,526.35L295.84,526.22L294.75,528.65L293.1,526.47L289.43,525.74L287.1,528.46L285.07,528.87L283.97,524.72L282.47,521.38L283.35,518.51L281.88,517.26L281.51,515.14L280.13,513.14L281.9,510L280.69,507.56L281.34,506.59L280.83,505.52L281.93,504.08L281.99,501.64L282.12,499.62L282.73,498.66L280.3,494.08L282.39,494.32L283.83,494.25L284.46,493.4L286.91,492.25L288.38,491.19L292.05,490.71L291.76,492.83L292.1,493.92L291.87,495.82L294.92,498.37L298.06,498.84L299.16,499.91L301.06,500.48L302.22,501.31L303.98,501.28L305.61,502.13L305.73,503.79L306.28,504.63L306.32,505.88L305.5,505.92L306.58,509.29L311.95,509.41L311.54,511.09L311.84,512.24L313.37,513.06L314.04,514.88L313.54,517.2L312.77,518.49L313.04,520.18L312.16,520.79L312.12,519.88L309.5,518.37L306.9,518.32L302.01,519.18L300.67,521.8L300.6,523.4L299.49,526.99z"
105
+ },
106
+ {
107
+ "id":"BR",
108
+ "title":"Brazil",
109
+ "d":"M313.68,551.79L317.42,547.42L320.59,544.34L322.47,543.06L324.83,541.33L324.89,538.84L323.48,537.05L322.09,537.64L322.64,535.86L323.02,534.04L323.02,532.36L322.01,531.81L320.96,532.3L319.92,532.17L319.59,530.99L319.33,528.22L318.8,527.32L316.91,526.5L315.77,527.09L312.81,526.51L312.99,522.45L312.16,520.79L313.04,520.18L312.77,518.49L313.54,517.2L314.04,514.88L313.37,513.06L311.84,512.24L311.54,511.09L311.95,509.41L306.58,509.29L305.5,505.92L306.32,505.88L306.28,504.63L305.73,503.79L305.61,502.13L303.98,501.28L302.22,501.31L301.06,500.48L299.16,499.91L298.06,498.84L294.92,498.37L291.87,495.82L292.1,493.92L291.76,492.83L292.05,490.71L288.38,491.19L286.91,492.25L284.46,493.4L283.83,494.25L282.39,494.32L280.3,494.08L278.72,494.57L277.44,494.24L277.63,489.94L275.33,491.6L272.86,491.53L271.8,490.02L269.94,489.86L270.53,488.65L268.97,486.93L267.8,484.4L268.54,483.89L268.54,482.7L270.24,481.89L269.96,480.38L270.67,479.4L270.88,478.1L274.08,476.19L276.38,475.66L276.75,475.24L279.28,475.37L280.54,467.72L280.61,466.51L280.17,464.92L278.93,463.9L278.94,461.88L280.52,461.42L281.08,461.71L281.17,460.64L279.53,460.35L279.5,458.61L284.96,458.67L285.89,457.71L286.67,458.59L287.21,460.24L287.74,459.89L289.29,461.37L291.47,461.19L292.01,460.33L294.09,459.68L295.25,459.23L295.57,458.05L297.58,457.25L297.42,456.67L295.05,456.43L294.66,454.67L294.77,452.8L293.52,452.08L294.04,451.82L296.12,452.18L298.35,452.88L299.16,452.22L301.17,451.78L304.31,450.74L305.34,449.67L304.96,448.88L306.42,448.76L307.08,449.4L306.71,450.63L307.67,451.05L308.32,452.35L307.54,453.33L307.09,455.71L307.81,457.12L308.01,458.41L309.74,459.71L311.12,459.85L311.43,459.31L312.31,459.19L313.58,458.7L314.49,457.96L316.04,458.19L316.72,458.09L318.25,458.32L318.5,457.75L318.03,457.2L318.31,456.39L319.44,456.64L320.77,456.35L322.37,456.94L323.6,457.52L324.47,456.76L325.09,456.88L325.48,457.67L326.82,457.47L327.89,456.41L328.75,454.35L330.41,451.8L331.37,451.67L332.06,453.21L333.63,458.09L335.13,458.55L335.21,460.47L333.1,462.76L333.97,463.6L338.93,464.04L339.03,466.83L341.16,465L344.69,466.01L349.34,467.71L350.71,469.34L350.25,470.88L353.51,470.02L358.97,471.5L363.16,471.39L367.3,473.7L370.88,476.83L373.04,477.63L375.44,477.75L376.46,478.63L377.41,482.2L377.88,483.89L376.76,488.55L375.33,490.39L371.38,494.33L369.59,497.54L367.52,500.02L366.82,500.08L366.03,502.18L366.23,507.58L365.45,512.06L365.15,513.99L364.27,515.14L363.77,519.08L360.93,522.96L360.45,526.05L358.18,527.36L357.52,529.17L354.48,529.16L350.07,530.33L348.09,531.68L344.95,532.57L341.65,535.01L339.28,538.07L338.87,540.39L339.34,542.12L338.81,545.3L338.18,546.85L336.22,548.6L333.11,554.28L330.64,556.87L328.73,558.41L327.46,561.57L325.6,563.48L324.82,561.58L326.06,560.01L324.44,557.76L322.24,555.94L319.35,553.86L318.31,553.95L315.5,551.45z"
110
+ },
111
+ {
112
+ "id":"BS",
113
+ "title":"Bahamas",
114
+ "d":"M257.86,395.2l-0.69,0.15l-0.71,-1.76l-1.05,-0.89l0.61,-1.95l0.84,0.12l0.98,2.55L257.86,395.2zM257.06,386.51l-3.06,0.5l-0.2,-1.15l1.32,-0.25l1.85,0.09L257.06,386.51zM259.36,386.48l-0.48,2.21l-0.52,-0.4l0.05,-1.63l-1.26,-1.23l-0.01,-0.36L259.36,386.48z"
115
+ },
116
+ {
117
+ "id":"BT",
118
+ "title":"Bhutan",
119
+ "d":"M732.36,382.78L733.5,383.78L733.3,385.71L731.01,385.8L728.65,385.59L726.88,386.08L724.33,384.89L724.28,384.26L726.13,381.92L727.64,381.12L729.65,381.85L731.13,381.93z"
120
+ },
121
+ {
122
+ "id":"BW",
123
+ "title":"Botswana",
124
+ "d":"M547.17,515.95L547.73,516.47L548.62,518.18L551.79,521.43L552.99,521.75L553,522.8L553.82,524.7L555.99,525.16L557.78,526.52L553.81,528.74L551.29,531L550.36,533.03L549.52,534.18L547.99,534.43L547.5,535.9L547.21,536.86L545.42,537.58L543.14,537.43L541.8,536.57L540.62,536.19L539.25,536.91L538.56,538.39L537.23,539.32L535.83,540.71L533.82,541.03L533.2,539.94L533.46,538.04L531.79,535.11L531.04,534.65L531.04,525.79L533.8,525.68L533.88,515.11L535.97,515.02L540.29,513.99L541.37,515.2L543.15,514.05L544.01,514.04L545.59,513.38L546.09,513.6z"
125
+ },
126
+ {
127
+ "id":"BY",
128
+ "title":"Belarus",
129
+ "d":"M541.1,284.07L543.81,284.11L546.85,282.31L547.5,279.59L549.8,278.02L549.54,275.82L551.24,274.98L554.26,273.05L557.21,274.31L557.61,275.54L559.08,274.95L561.82,276.13L562.09,278.44L561.49,279.76L563.25,282.91L564.39,283.78L564.22,284.64L566.11,285.47L566.92,286.72L565.83,287.74L563.57,287.58L563.03,288.02L563.69,289.56L564.38,292.49L561.97,292.76L561.11,293.76L560.92,296.02L559.81,295.59L557.28,295.81L556.54,294.76L555.49,295.54L554.44,294.89L552.23,294.8L549.1,293.72L546.27,293.36L544.1,293.46L542.56,294.69L541.22,294.86L541.17,292.85L540.3,290.73L541.98,289.79L542,287.94L541.22,286.16z"
130
+ },
131
+ {
132
+ "id":"BZ",
133
+ "title":"Belize",
134
+ "d":"M225.31,412.96L225.29,412.53L225.63,412.39L226.14,412.74L227.14,410.97L227.67,410.93L227.68,411.36L228.21,411.37L228.17,412.17L227.71,413.44L227.96,413.89L227.67,414.94L227.84,415.21L227.52,416.68L226.97,417.46L226.46,417.55L225.9,418.55L225.07,418.55L225.29,415.27z"
135
+ },
136
+ {
137
+ "id":"CA",
138
+ "title":"Canada",
139
+ "d":"M198.93,96.23l-0.22,-5.9l3.63,0.58l1.63,0.96l3.35,4.92l-0.76,4.97l-4.15,2.77l-2.28,-3.12L198.93,96.23zM212.14,108.88l0.33,-1.49l-1.97,-2.45l-5.65,-0.19l0.75,3.68l5.25,0.83L212.14,108.88zM248.49,155.83l3.08,5.1l0.81,0.57l3.07,-1.27l3.02,0.2l2.98,0.28l-0.25,-2.64l-4.84,-5.38l-6.42,-1.08l-1.35,0.67L248.49,155.83zM183.06,93.13l-2.71,4.19l6.24,0.52l4.61,4.44l4.58,1.5l-1.09,-5.68l-2.14,-6.73l-7.58,-5.35l-5.5,-2.04l0.2,5.69L183.06,93.13zM208.96,82.89l5.13,-0.12l-2.22,4l-0.04,5.3l3.01,5.76l5.81,1.77l4.96,-0.99l5.18,-10.73l3.85,-4.45l-3.38,-4.97l-2.21,-10.65l-4.6,-3.19l-4.72,-3.68l-3.58,-9.56l-6.52,0.94l1.23,4.15l-2.87,1.25l-1.94,5.32l-1.94,7.46l1.78,7.26L208.96,82.89zM145.21,136.27l3.92,1.95l12.67,-1.3l-5.82,4.77l0.36,3.43l4.26,-0.24l7.07,-4.58l9.5,-1.67l1.71,-5.22l-0.49,-5.57l-2.94,-0.5l-2.5,1.93l-1.1,-4.13l-0.95,-5.7l-2.9,-1.42l-2.57,4.41l4.01,11.05l-4.9,-0.85l-4.98,-6.79l-7.89,-4l-2.64,3.32L145.21,136.27zM167.77,94.21l-3.65,-2.9l-1.5,-0.66l-2.88,4.28l-0.05,2l4.66,0.01L167.77,94.21zM166.31,106.56l0.93,-3.99l-3.95,-2.12l-4.09,1.39l-2.27,4.26l4.16,4.21L166.31,106.56zM195.4,139.8l4.62,-1.11l1.28,-8.25l-0.09,-5.95l-2.14,-5.56l-0.22,1.6l-3.94,-0.7l-4.22,4.09l-3.02,-0.37l0.18,8.92l4.6,-0.87l-0.06,6.47L195.4,139.8zM192.12,185.41l-5.06,-3.93l-4.71,-4.21l-0.87,-6.18l-1.76,-8.92l-3.14,-3.84l-2.79,-1.55l-2.47,1.42l1.99,9.59l-1.41,3.73l-2.29,-8.98l-2.56,-3.11l-3.17,4.81l-3.9,-4.76l-6.24,2.87l1.4,-4.46l-2.87,-1.87l-7.51,5.84l-1.95,3.71l-2.35,6.77l4.9,2.32l4.33,-0.12l-6.5,3.46l1.48,3.13l3.98,0.17l5.99,-0.67l5.42,1.96l-3.66,1.44l-3.95,-0.37l-4.33,1.41l-1.87,0.87l3.45,6.35l2.49,-0.88l3.83,2.15l1.52,3.65l4.99,-0.73l7.1,-1.16l5.26,-2.65l3.26,-0.48l4.82,2.12l5.07,1.22l0.94,-2.86l-1.79,-3.05l4.6,-0.64L192.12,185.41zM199.86,184.43l-1.96,3.54l-2.47,2.49l3.83,3.54l2.28,-0.85l3.78,2.36l1.74,-2.73l-1.71,-3.03l-0.84,-1.53l-1.68,-1.46L199.86,184.43zM182.25,154.98l-2.13,-2.17l-3.76,0.4l-0.95,1.38l4.37,6.75L182.25,154.98zM210.94,168.15l3.01,-6.93l3.34,-1.85l4.19,-8.74l-5.36,-2.47l-5.84,-0.36l-2.78,2.77l-1.47,4.23l-0.04,4.82l1.75,8.19L210.94,168.15zM228.09,145.15l5.76,-0.18l8.04,-1.61l3.59,1.28l4.18,-2.26l1.75,-2.84l-0.63,-4.52l-3,-4.23l-4.56,-0.8l-5.71,0.97l-4.46,2.44l-4.09,-0.94l-3.78,-0.5l-1.78,-2.7l-3.22,-2.61l0.64,-4.43l-2.42,-3.98l-5.52,0.03l-3.11,-3.99l-5.78,-0.8l-1.06,5.1l3.25,3.74l5.8,1.45l2.81,5.09l0.34,5.6l0.97,5.99l7.45,3.42L228.09,145.15zM139.07,126.88l5.21,-5.05l2.62,-0.59l2.16,-4.23l0.38,-9.77l-3.85,1.91l-4.3,-0.18l-5.76,8.19l-4.76,8.98l3.8,2.51L139.07,126.88zM211.25,143.05l1.53,-4.14l-1.02,-3.46l-2.45,-3.92l-4.03,3.02l-1.49,4.92l3.4,2.79L211.25,143.05zM202.94,154.49l-0.73,-2.88l-5,1.26l-3.34,-2.11l-3.32,4.8l3.09,6.28l-5.72,-1.17l-0.06,3.01l6.97,7.05l1.94,3.38l2.7,0.73l4.6,-3.41l0.5,-8.21l-4.24,-4.07L202.94,154.49zM128.95,308.23l-1.16,-2.34l-2.8,-1.77l-1.39,-2.05l-0.95,-1.5l-2.64,-0.46l-1.72,-0.67l-2.94,-0.96l-0.24,1.02l1.08,2.38l2.89,0.78l0.5,1.23l2.51,1.5l0.84,1.51l4.6,1.92L128.95,308.23zM250.65,230.6l-2,-2.11l-2.06,0.5l-0.25,-3.06l-3.21,-2.04l-3.07,-2.27l-1.63,-1.75L237,220.9l-0.52,-2.96l-2.03,-0.55l-0.96,6.13l-0.36,5.11l-2.44,3.14l3.8,-0.6l0.96,3.65l3.99,-3.23l2.78,-3.38l1.57,2.86l4.36,1.51L250.65,230.6zM130.12,178.05l7.38,-4.18V170l3.48,-6.41l6.88,-6.69l3.52,-2.47l-3.01,-4.2l-2.72,-2.95l-7.16,-0.57l-4,-2.16l-9.48,1.63l2.74,6.23l-2.43,6.43l-1.94,6.87l-1.2,3.86l6.47,4.69L130.12,178.05zM264.36,205.36l0.32,-1.01l-0.03,-3.17l-2.19,-2.08l-2.57,1.05l-1.19,4.17l0.7,3.56l3.14,-0.36L264.36,205.36zM288.18,212.9l4.41,6.6l3.45,2.85l4.92,-7.87l0.87,-4.93l-4.41,-0.47l-4.03,-6.7l-4.45,-1.64l-6.6,-4.97l5.15,-3.63l-2.65,-7.54l-2.44,-3.35l-6.77,-3.35l-2.92,-5.55l-5.21,1.99l-0.36,-3.86l-3.86,-4.32l-6.22,-4.71l-2.65,3.71l-5.55,2.66l0.42,-6.06l-4.81,-10.05l-7.11,4.06l-2.59,7.7l-2.21,-5.92l2.06,-6.37l-7.24,2.65l-2.88,3.99l-2.15,8.42l0.89,9.05l3.98,0.04l-2.93,3.92l2.33,2.96l4.55,1.25l5.93,2.42l10.2,1.82l5.08,-1.04l1.5,-2.42l2.21,2.79l2.47,0.46l2.97,4.96l-1.8,1.98l5.68,2.63l4.29,3.68l1.08,2.55l0.77,3.24l-3.63,6.93l-0.98,3.44l0.94,2.42l-5.77,0.86l-5.27,0.12l-1.85,4.87l2.37,2.23l8.11,-1.03l-0.04,-1.89l4.08,3.15l4.18,3.28l-0.98,1.77l3.4,3.02l6.02,3.53l7.6,2.39l-0.46,-2.09l-2.92,-3.67l-3.96,-5.37l7.03,5l3.54,1.66l0.97,-4.44l-1.82,-6.3l-1.16,-1.73l-3.81,-3.03l-2.95,-3.91l0.35,-3.94L288.18,212.9zM222.35,51.34l2.34,7.29l4.96,5.88l9.81,-1.09l6.31,1.97l-4.38,6.05l-2.21,-1.78l-7.66,-0.71l1.19,8.31l3.96,6.04l-0.8,5.2l-4.97,3.46l-2.27,5.47l4.55,2.65l3.82,8.55l-7.5,-5.7l-1.71,0.94l1.38,9.38l-5.18,2.83l0.35,5.85l5.3,0.63l4.17,1.44l8.24,-1.84l7.33,3.27l7.49,-7.19l-0.06,-3.02l-4.79,0.48l-0.39,-2.84l3.92,-3.83l1.33,-5.15l4.33,-3.83l2.66,-4.76l-2.32,-7.1l1.94,-2.65l-3.86,-1.89l8.49,-1.63l1.79,-3.15l5.78,-2.6l4.8,-13.47l4.57,-4.94l6.62,-11.12l-6.1,0.1l2.54,-4.3l6.78,-3.99l6.84,-8.9l0.12,-5.73l-5.13,-6.04l-6.02,-2.93l-7.49,-1.82l-6.07,-1.49l-6.07,-1.5l-8.1,3.98l-1.49,-2.53l-8.57,0.98l-5.03,2.57l-3.7,3.65l-2.13,11.74L239,24.52l-3.48,-1.14l-4.12,7.97l-5.5,3.35l-3.27,0.66l-4.17,3.84l0.61,6.65L222.35,51.34zM296.75,316.34l-0.98,-1.98l-1.06,1.26l0.7,1.36l3.56,1.71l1.04,-0.26l1.38,-1.66l-2.6,0.11L296.75,316.34zM239.75,238.48l0.61,1.63l1.98,0.14l3.28,-3.34l0.06,-1.19l-3.85,-0.06L239.75,238.48zM301.88,304.92l-2.87,-1.8l-3.69,-1.09l-0.97,0.37l2.61,2.04l3.63,1.34l1.36,-0.08L301.88,304.92zM326.76,309.71l-0.36,-2.24l-1.96,0.72l0.87,-3.11l-2.8,-1.32l-1.29,1.05l-2.49,-1.18l0.98,-1.51l-1.88,-0.93l-1.83,1.47l1.86,-3.82l1.5,-2.8l0.54,-1.22l-1.3,-0.2l-2.43,1.55l-1.74,2.53l-2.9,6.92l-2.35,2.56l1.22,1.14l-1.75,1.47l0.43,1.23l5.44,0.13l3.01,-0.25l2.69,1.01l-1.98,1.93l1.67,0.14l3.25,-3.58l0.78,0.53l-0.61,3.37l1.84,0.77l1.27,-0.15l1.18,-3.61L326.76,309.71zM305.57,314.47l-2.81,4.56l-4.63,0.58l-3.64,-2.01l-0.92,-3.07l-0.89,-4.46l2.65,-2.83l-2.48,-2.09l-4.19,0.43l-5.88,3.53l-4.5,5.45l-2.38,0.67l3.23,-3.8l4.04,-5.57l3.57,-1.9l2.35,-3.11l2.9,-0.3l4.21,0.03l6,0.92l4.74,-0.71l3.53,-3.62l4.62,-1.59l2.01,-1.58l2.04,-1.71l-0.2,-5.19l-1.13,-1.77l-2.18,-0.63l-1.11,-4.05l-1.8,-1.55l-4.47,-1.26l-2.52,-2.82l-3.73,-2.83l1.13,-3.2l-3.1,-6.26l-3.65,-6.89l-2.18,-4.98l-1.86,2.61l-2.68,6.05l-4.06,2.97l-2.03,-3.16l-2.56,-0.85l-0.93,-6.99l0.08,-4.8l-5,-0.44l-0.85,-2.27l-3.45,-3.44l-2.61,-2.04l-2.32,1.58l-2.88,-0.58l-4.81,-1.65l-1.95,1.4l0.94,9.18l1.22,5.12l-3.31,5.75l3.41,4.02l1.9,4.44l0.23,3.42l-1.55,3.5l-3.18,3.46l-4.49,2.28l1.98,2.53l1.46,7.4l-1.52,4.68l-2.16,1.46l-4.17,-4.28l-2.03,-5.17l-0.87,-4.76l0.46,-4.19l-3.05,-0.47l-4.63,-0.28l-2.97,-2.08l-3.51,-1.37l-2.01,-2.38l-2.8,-1.94l-5.21,-2.23l-3.92,1.02l-1.31,-3.95l-1.26,-4.99l-4.12,-0.9l0.15,-6.41l1.09,-4.48l3.04,-6.6l3.43,-4.9l3.26,-0.77l0.19,-4.05l2.21,-2.68l4.01,-0.42l3.25,-4.39l0.82,-2.9l2.7,-5.73l0.84,-3.5l2.9,2.11l3.9,-1.08l5.49,-4.96l0.36,-3.54l-1.98,-3.98l2.09,-4.06l-0.17,-3.87l-3.76,-3.95l-4.14,-1.19l-3.98,-0.62l-0.15,8.71l-2.04,6.56l-2.93,5.3l-2.71,-4.95l0.84,-5.61l-3.35,-5.02l-3.75,6.09l0.01,-7.99l-5.21,-1.63l2.49,-4.01l-3.81,-9.59l-2.84,-3.91l-3.7,-1.44l-3.32,6.43l-0.22,9.34l3.27,3.29l3,4.91l-1.27,7.71l-2.26,-0.2l-1.78,5.88l0.02,-7l-4.34,-2.58l-2.49,1.33l0.32,4.67l-4.09,-0.18l-4.35,1.17l-4.95,-3.35l-3.13,0.6l-2.82,-4.11l-2.26,-1.84l-2.24,0.77l-3.41,0.35l-1.81,2.61l2.86,3.19l-3.05,3.72l-2.99,-4.42l-2.39,1.3l-7.57,0.87l-5.07,-1.59l3.94,-3.74l-3.78,-3.9l-2.75,0.5l-3.86,-1.32l-6.56,-2.89l-4.29,-3.37l-3.4,-0.47l-1.06,2.36l-3.44,1.31l-0.38,-6.15l-3.73,5.5l-4.74,-7.32l-1.94,-0.89l-0.63,3.91l-2.09,1.9l-1.93,-3.39l-4.59,2.05l-4.2,3.55l-4.17,-0.98l-3.4,2.5l-2.46,3.28l-2.92,-0.72l-4.41,-3.8l-5.23,-1.94l-0.02,27.65l-0.01,35.43l2.76,0.17l2.73,1.56l1.96,2.44l2.49,3.6l2.73,-3.05l2.81,-1.79l1.49,2.85l1.89,2.23l2.57,2.42l1.75,3.79l2.87,5.88l4.77,3.2l0.08,3.12l-1.56,2.35l0.06,2.48l3.39,3.45l0.49,3.76l3.59,1.96l-0.4,2.79l1.56,3.96l5.08,1.82l2,1.89l5.43,4.23l0.38,0.01h7.96h8.32h2.76h8.55h8.27h8.41h8.42h9.53h9.59h5.8l0.01,-1.64l0.95,-0.02l0.5,2.35l0.87,0.72l1.96,0.26l2.86,0.67l2.72,1.3l2.27,-0.55l3.45,1.09l1.14,-1.66l1.59,-0.66l0.62,-1.03l0.63,-0.55l2.61,0.86l1.93,0.1l0.67,0.57l0.94,2.38l3.15,0.63l-0.49,1.18l1.11,1.21l-0.48,1.56l1.18,0.51l-0.59,1.37l0.75,0.13l0.53,-0.6l0.55,0.9l2.1,0.5l2.13,0.04l2.27,0.41l2.51,0.78l0.91,1.26l1.82,3.04l-0.9,1.3l-2.28,-0.54l-1.42,-2.44l0.36,2.49l-1.34,2.17l0.15,1.84l-0.23,1.07l-1.81,1.27l-1.32,2.09l-0.62,1.32l1.54,0.24l2.08,-1.2l1.23,-1.06l0.83,-0.17l1.54,0.38l0.75,-0.59l1.37,-0.48l2.44,-0.47l0,0l0,0l-0.25,-1.15l-0.13,0.04l-0.86,0.2l-1.12,-0.36l0.84,-1.32l0.85,-0.46l1.98,-0.56l2.37,-0.53l1.24,0.73l0.78,-0.85l0.89,-0.54l0.6,0.29l0.03,0.06l2.87,-2.73l1.27,-0.73l4.26,-0.03h5.17l0.28,-0.98l0.9,-0.2l1.19,-0.62l1,-1.82l0.86,-3.15l2.14,-3.1l0.93,1.08l1.88,-0.7l1.25,1.19v5.52l1.83,2.25l3.12,-0.48l4.49,-0.13l-4.87,3.26l0.11,3.29l2.13,0.28l3.13,-2.79l2.78,-1.58l6.21,-2.35l3.47,-2.62l-1.81,-1.46L305.57,314.47zM251.91,243.37l1.1,-3.12l-0.71,-1.23l-1.15,-0.13l-1.08,1.8l-0.13,0.41l0.74,1.77L251.91,243.37zM109.25,279.8L109.25,279.8l1.56,-2.35L109.25,279.8z"
140
+ },
141
+ {
142
+ "id":"CD",
143
+ "title":"The Democratic Republic of the Congo",
144
+ "d":"M561.71,453.61L561.54,456.87L562.66,457.24L561.76,458.23L560.68,458.97L559.61,460.43L559.02,461.72L558.86,463.96L558.21,465.02L558.19,467.12L557.38,467.9L557.28,469.56L556.89,469.77L556.63,471.3L557.34,472.56L557.52,475.93L558.02,478.5L557.74,479.96L558.3,481.58L559.93,483.15L561.44,486.7L560.34,486.41L556.57,486.89L555.82,487.22L555.02,489.02L555.65,490.27L555.15,493.62L554.8,496.47L555.56,496.98L557.52,498.08L558.29,497.57L558.53,500.65L556.38,500.62L555.23,499.05L554.2,497.83L552.05,497.43L551.42,495.94L549.7,496.84L547.46,496.44L546.52,495.15L544.74,494.89L543.43,494.96L543.27,494.08L542.3,494.01L541.02,493.84L539.29,494.26L538.07,494.19L537.37,494.45L537.52,491.08L536.59,490.03L536.38,488.3L536.79,486.6L536.23,485.51L536.18,483.75L532.77,483.77L533.02,482.76L531.59,482.77L531.44,483.26L529.7,483.37L528.99,485L528.57,485.71L527.02,485.31L526.1,485.71L524.24,485.93L523.17,484.46L522.53,483.55L521.72,481.87L521.03,479.78L512.76,479.75L511.77,480.08L510.96,480.03L509.8,480.41L509.41,479.54L510.12,479.24L510.21,478.02L510.67,477.3L511.69,476.72L512.43,477L513.39,475.93L514.91,475.96L515.09,476.75L516.14,477.25L517.79,475.49L519.42,474.13L520.13,473.24L520.04,470.94L521.26,468.23L522.54,466.8L524.39,465.46L524.71,464.57L524.78,463.55L525.24,462.58L525.09,461L525.44,458.53L525.99,456.79L526.83,455.3L526.99,453.62L527.24,451.67L528.34,450.25L529.84,449.35L532.15,450.3L533.93,451.33L535.98,451.61L538.07,452.15L538.91,450.47L539.3,450.25L540.57,450.53L543.7,449.14L544.8,449.73L545.71,449.65L546.13,448.97L547.17,448.73L549.28,449.02L551.08,449.08L552.01,448.79L553.7,451.1L554.96,451.43L555.71,450.96L557.01,451.15L558.57,450.56L559.24,451.75z"
145
+ },
146
+ {
147
+ "id":"CF",
148
+ "title":"Central African Republic",
149
+ "d":"M518.09,442.66L520.41,442.44L520.93,441.72L521.39,441.78L522.09,442.41L525.62,441.34L526.81,440.24L528.28,439.25L528,438.26L528.79,438L531.5,438.18L534.14,436.87L536.16,433.78L537.59,432.64L539.36,432.15L539.68,433.37L541.3,435.14L541.3,436.29L540.85,437.47L541.03,438.34L542,439.15L544.14,440.39L545.67,441.52L545.7,442.44L547.58,443.9L548.75,445.11L549.46,446.79L551.56,447.9L552.01,448.79L551.08,449.08L549.28,449.02L547.17,448.73L546.13,448.97L545.71,449.65L544.8,449.73L543.7,449.14L540.57,450.53L539.3,450.25L538.91,450.47L538.07,452.15L535.98,451.61L533.93,451.33L532.15,450.3L529.84,449.35L528.34,450.25L527.24,451.67L526.99,453.62L525.19,453.46L523.29,452.99L521.62,454.47L520.15,457.07L519.85,456.26L519.73,454.99L518.45,454.09L517.41,452.65L517.17,451.65L515.85,450.19L516.07,449.36L515.79,448.18L516.01,446.01L516.68,445.5z"
150
+ },
151
+ {
152
+ "id":"CG",
153
+ "title":"Republic of Congo",
154
+ "d":"M511.69,476.72L510.64,475.76L509.79,476.23L508.66,477.43L506.36,474.48L508.49,472.94L507.44,471.09L508.4,470.39L510.29,470.05L510.51,468.81L512.01,470.15L514.49,470.27L515.35,468.95L515.7,467.1L515.39,464.92L514.07,463.28L515.28,460.05L514.58,459.5L512.5,459.72L511.71,458.29L511.92,457.07L515.45,457.18L517.72,457.91L519.95,458.57L520.15,457.07L521.62,454.47L523.29,452.99L525.19,453.46L526.99,453.62L526.83,455.3L525.99,456.79L525.44,458.53L525.09,461L525.24,462.58L524.78,463.55L524.71,464.57L524.39,465.46L522.54,466.8L521.26,468.23L520.04,470.94L520.13,473.24L519.42,474.13L517.79,475.49L516.14,477.25L515.09,476.75L514.91,475.96L513.39,475.93L512.43,477z"
155
+ },
156
+ {
157
+ "id":"CH",
158
+ "title":"Switzerland",
159
+ "d":"M502.15,312.34L502.26,313.08L501.83,314.09L503.1,314.83L504.53,314.94L504.31,316.61L503.08,317.3L501,316.79L500.39,318.42L499.06,318.55L498.57,317.91L497,319.27L495.65,319.46L494.44,318.6L493.48,316.83L492.14,317.47L492.18,315.63L494.23,313.32L494.14,312.27L495.42,312.66L496.19,311.95L498.57,311.98L499.15,311.08z"
160
+ },
161
+ {
162
+ "id":"CI",
163
+ "title":"Cote D'ivoire",
164
+ "d":"M467.24,449.46L465.97,449.49L464.01,448.94L462.22,448.97L458.89,449.46L456.95,450.27L454.17,451.29L453.63,451.22L453.84,448.92L454.11,448.57L454.03,447.46L452.84,446.29L451.95,446.1L451.13,445.33L451.74,444.09L451.46,442.73L451.59,441.91L452.04,441.91L452.2,440.68L451.98,440.14L452.25,439.75L453.29,439.41L452.6,437.15L451.95,435.99L452.18,435.02L452.74,434.81L453.1,434.55L453.88,434.97L456.04,435L456.56,434.17L457.04,434.23L457.85,433.91L458.29,435.12L458.94,434.76L460.1,434.34L461.36,434.96L461.85,435.89L463.11,436.49L464.09,435.78L465.41,435.67L467.33,436.4L468.07,440.41L466.89,442.77L466.16,445.94L467.37,448.35z"
165
+ },
166
+ {
167
+ "id":"CL",
168
+ "title":"Chile",
169
+ "d":"M282.81,636.73v10.57h3l1.69,0.13l-0.93,1.98l-2.4,1.53l-1.38,-0.16l-1.66,-0.4l-2.04,-1.48l-2.94,-0.71l-3.53,-2.71l-2.86,-2.57l-3.86,-5.25l2.31,0.97l3.94,3.13l3.72,1.7l1.45,-2.17l0.91,-3.2l2.58,-1.91L282.81,636.73zM283.97,524.72l1.1,4.15l2.02,-0.41l0.34,0.76l-0.96,3.16l-3.05,1.51l0.09,5.14l-0.59,1l0.84,1.23l-1.98,1.95l-1.84,2.96l-1,2.9l0.27,3.11l-1.73,3.34l1.29,5.69l0.73,0.61l-0.01,3.09l-1.6,3.31l0.06,2.87l-2.12,2.26l0.01,3.22l0.85,3.46l-1.68,1.3l-0.75,3.22l-0.66,3.75l0.47,4.54l-1.13,0.77l0.65,4.4l1.27,1.46l-0.92,1.63l1.3,0.78l0.3,1.48l-1.22,0.75l0.3,2.33l-1.02,5.35l-1.49,3.52l0.33,2.11l-0.89,2.68l-2.15,1.88l0.25,4.6l0.99,1.6l1.87,-0.28l-0.05,3.33l1.16,2.63l6.78,0.61l2.6,0.71l-2.49,-0.03l-1.35,1.13l-2.53,1.67l-0.45,4.38l-1.19,0.11l-3.16,-1.54l-3.21,-3.25l0,0l-3.49,-2.63l-0.88,-2.87l0.79,-2.62l-1.41,-2.94l-0.36,-7.34l1.19,-4.03l2.96,-3.19l-4.26,-1.19l2.67,-3.57l0.95,-6.56l3.12,1.37l1.46,-7.97l-1.88,-1l-0.88,4.75l-1.77,-0.54l0.88,-5.42l0.96,-6.84l1.29,-2.48l-0.81,-3.5l-0.23,-3.98l1.18,-0.11l1.72,-5.6l1.94,-5.43l1.19,-4.97l-0.65,-4.91l0.84,-2.67l-0.34,-3.96l1.64,-3.87l0.51,-6.04l0.9,-6.37l0.88,-6.75l-0.21,-4.87l-0.58,-4.15l1.44,-0.75l0.75,-1.5l1.37,1.99l0.37,2.12l1.47,1.25l-0.88,2.87L283.97,524.72z"
170
+ },
171
+ {
172
+ "id":"CM",
173
+ "title":"Cameroon",
174
+ "d":"M511.92,457.07L511.57,456.92L509.91,457.28L508.2,456.9L506.87,457.09L502.31,457.02L502.72,454.82L501.62,452.98L500.34,452.5L499.77,451.25L499.05,450.85L499.09,450.08L499.81,448.1L501.14,445.4L501.95,445.37L503.62,443.73L504.69,443.69L506.26,444.84L508.19,443.89L508.45,442.73L509.08,441.59L509.51,440.17L511.01,439.01L511.58,437.04L512.17,436.41L512.57,434.94L513.31,433.13L515.67,430.93L515.82,429.98L516.13,429.47L515.02,428.33L515.11,427.43L515.9,427.26L517.01,429.09L517.2,430.98L517.1,432.87L518.62,435.44L517.06,435.41L516.27,435.61L514.99,435.33L514.38,436.66L516.03,438.31L517.25,438.79L517.65,439.96L518.53,441.89L518.09,442.66L516.68,445.5L516.01,446.01L515.79,448.18L516.07,449.36L515.85,450.19L517.17,451.65L517.41,452.65L518.45,454.09L519.73,454.99L519.85,456.26L520.15,457.07L519.95,458.57L517.72,457.91L515.45,457.18z"
175
+ },
176
+ {
177
+ "id":"CN",
178
+ "title":"China",
179
+ "d":"M785.88,406.27l0.63,1.13l-1.23,1.3l-0.65,1.7l-2.42,1.41l-2.3,-0.91l-0.08,-2.53l1.38,-1.34l3.06,-0.83L785.88,406.27zM849.21,309.6l-2.43,1.65h-4.26l-1.13,-3.95l-3.32,-3.03l-4.88,-1.38l-1.04,-4.28l-0.98,-2.73l-1.05,-1.94l-1.73,-4.61l-2.46,-1.71l-4.2,-1.39l-3.72,0.13l-3.48,0.84l-2.32,2.31l1.54,1.1l0.04,2.52l-1.56,1.45l-2.53,4.73l0.03,1.93l-3.95,2.74l-3.37,-1.63l-1.37,3.25l-1.98,4.23l0.72,1.71l1.59,-0.53l2.77,0.65l2.16,-1.54l2.25,1.33l2.54,2.89l-0.31,1.45l-2.21,-0.46l-4.07,0.54l-1.97,1.16l-2.05,2.66l-4.28,1.55l-2.79,2.1l-2.88,-0.8l-1.58,-0.36l-1.47,2.54l0.9,1.5l0.45,1.28l-1.96,1.3l-2.01,2.05l-3.28,1.34l-4.2,0.14l-4.53,1.31l-3.26,2.01l-1.24,-1.16h-3.39l-4.15,-2.29l-2.77,-0.57l-3.73,0.53l-5.79,-0.85l-3.09,0.09l-1.65,-2.27l-1.28,-3.57l-1.73,-0.43l-3.39,-2.45l-3.78,-0.55l-3.33,-0.68l-1.01,-1.73l1.08,-4.73l-1.93,-3.32l-4,-1.57l-2.36,-2.23l-0.74,-2.97l-1.1,0.35l-2.13,2.83l-2.33,0.39l-0.13,4.19l-1.56,1.86l-5.56,-1.35l-2.02,7.26l-1.44,0.89l-5.55,1.58l2.52,6.75l-1.92,1l0.22,2.17l-0.39,0.85l-4.42,2.03l-1,1.48l-3.6,0.44l-1.06,2.35l-2.97,-0.49l-1.94,0.72l-2.68,1.73l0.39,0.85l-0.8,0.83l0.71,3.32l0.92,-0.36l1.7,0.81l-0.1,1.38l0.42,2.01l0.5,1.01l2.07,1.63l0.83,2.66l4.42,1.33l0.14,-0.04l3.88,-1.37l2.88,1.37l-0.91,2.76l-1.6,2.23l-1.24,0.1h-0.05l-0.18,1.74l1.12,1.71l-0.09,1.69l-2.01,-0.44l0.79,3.63l2.75,2.07l3.9,2.26l1.16,-0.77l2.25,0.99l2.83,2.09l1.58,0.46l0.94,1.53l2.18,0.63l2.28,1.39l3.17,0.73l3.27,0.31l1.71,-0.66l0.24,2.48l1.85,-2.34l1.51,-0.8l2,0.73l1.48,0.08l1.23,0.85l2.26,-0.39l2.55,-2.36l3.23,-2.03l2.35,0.78l2,-1.35l1.31,1.99l-0.95,1.33l3.02,0.47l1.64,-0.24l0.94,1.86l1.22,0.75l0.08,2.4l-0.11,2.57l-2.66,2.58l-0.34,3.63l2.96,-0.51l0.67,2.8l1.78,0.59l-0.82,2.51l2.08,1.13l1.21,0.55l2.06,-0.87l0.08,1.24l0.25,0.7l1.5,0.08l-0.42,-3.43l1.45,-0.44l1.5,-0.74l2.24,0.02l2.73,-0.35l2.39,-1.62l1.35,1.14l2.56,0.55l-0.44,1.74l1.33,1.22l2.82,0.78l1.33,-0.49l3.76,0.96l-0.66,1.16l0.74,2.16l1.55,-0.17l0.96,-3.15l2.97,-0.46l3.92,-1.5l1.59,-1.5l0.97,0.98l1.71,-1.34l3.16,-0.35l3.9,-2.55l3.86,-2.82l2.6,-3.68l2.27,-4.09l2.05,-3.41l1.57,-0.28l0.71,-2.52l0.43,-2.61l-1.65,-1l-0.67,-1.73l1.76,-0.89l0.05,-2.43l-1.9,-2.53l-1.71,-3.05l-1.1,-3.31l-3.02,-1.86l1.44,-2.39l2.73,-1.73l1.31,-1.87l3.97,-0.97l-0.46,-1.84l-1.81,-0.09l-2.49,-1.37l-3.14,2.51l-2.22,-1.02l-0.09,-1.58l-2.29,-0.58l-1.48,-2.41l1.43,-1.68l2.75,-0.17l1.73,-2.34l3.17,-2.54l2.44,-1.3l1.48,1.93l-2.22,2.45l0.59,1.41l-1.49,1.67l3.02,-0.98l2.06,-1.69l3.92,-1.06l2.28,-2.35l3.09,-1.98l1.93,-2.64l1.33,1.17l2.42,0.14l-0.44,-1.97l4.33,-1.62l1.11,-2.13l1.81,2.24l-0.02,-1.93l1.43,-0.1l0.4,-4.55l-0.74,-3.36l2.41,-1.4l3.4,0.7l1.89,-3.89l0.96,-4.46l1.09,-1.51l1.47,-3.76L849.21,309.6z"
180
+ },
181
+ {
182
+ "id":"CO",
183
+ "title":"Colombia",
184
+ "d":"M263.92,463.81L262.72,463.15L261.34,462.23L260.54,462.67L258.16,462.28L257.48,461.08L256.96,461.13L254.15,459.54L253.77,458.67L254.82,458.46L254.7,457.07L255.35,456.06L256.74,455.87L257.93,454.12L259,452.66L257.96,451.99L258.49,450.37L257.86,447.81L258.46,447.08L258.02,444.71L256.88,443.21L257.24,441.85L258.15,442.05L258.68,441.21L258.03,439.56L258.37,439.14L259.81,439.23L261.92,437.26L263.07,436.96L263.1,436.03L263.62,433.64L265.23,432.32L266.99,432.27L267.21,431.68L269.41,431.91L271.62,430.48L272.71,429.84L274.06,428.47L275.06,428.64L275.79,429.39L275.25,430.35L273.45,430.83L272.74,432.25L271.65,433.06L270.84,434.12L270.49,436.13L269.72,437.79L271.16,437.97L271.52,439.27L272.14,439.89L272.36,441.02L272.03,442.06L272.13,442.65L272.82,442.88L273.49,443.86L277.09,443.59L278.72,443.95L280.7,446.36L281.83,446.06L283.85,446.21L285.45,445.89L286.44,446.38L285.93,447.88L285.31,448.82L285.09,450.83L285.65,452.68L286.45,453.51L286.54,454.14L285.12,455.53L286.14,456.14L286.89,457.12L287.74,459.89L287.21,460.24L286.67,458.59L285.89,457.71L284.96,458.67L279.5,458.61L279.53,460.35L281.17,460.64L281.08,461.71L280.52,461.42L278.94,461.88L278.93,463.9L280.17,464.92L280.61,466.51L280.54,467.72L279.28,475.37L277.88,473.88L277.04,473.82L278.85,470.98L276.7,469.67L275.02,469.91L274.01,469.43L272.46,470.17L270.37,469.82L268.72,466.9L267.42,466.18L266.53,464.86L264.67,463.54z"
185
+ },
186
+ {
187
+ "id":"CR",
188
+ "title":"Costa Rica",
189
+ "d":"M242.63,440.4L241.11,439.77L240.54,439.18L240.86,438.69L240.76,438.07L239.98,437.39L238.88,436.84L237.91,436.48L237.73,435.65L236.99,435.14L237.17,435.97L236.61,436.64L235.97,435.86L235.07,435.58L234.69,435.01L234.71,434.15L235.08,433.25L234.29,432.85L234.93,432.31L235.35,431.94L237.2,432.69L237.84,432.32L238.73,432.56L239.2,433.14L240.02,433.33L240.69,432.73L241.41,434.27L242.49,435.41L243.81,436.62L242.72,436.87L242.74,438L243.32,438.42L242.9,438.76L243.01,439.27L242.78,439.84z"
190
+ },
191
+ {
192
+ "id":"CU",
193
+ "title":"Cuba",
194
+ "d":"M244.58,396.94L247.01,397.16L249.21,397.19L251.84,398.22L252.96,399.33L255.58,398.99L256.57,399.69L258.95,401.56L260.69,402.91L261.61,402.87L263.29,403.48L263.08,404.32L265.15,404.44L267.27,405.66L266.94,406.35L265.07,406.73L263.18,406.88L261.25,406.64L257.24,406.93L259.12,405.27L257.98,404.5L256.17,404.3L255.2,403.44L254.53,401.74L252.95,401.85L250.33,401.05L249.49,400.42L245.84,399.95L244.86,399.36L245.91,398.61L243.16,398.46L241.15,400.02L239.98,400.06L239.58,400.8L238.2,401.13L237,400.84L238.48,399.91L239.08,398.82L240.35,398.15L241.78,397.56L243.91,397.27z"
195
+ },
196
+ {
197
+ "id":"CY",
198
+ "title":"Cyprus",
199
+ "d":"M570.31,358.29L572.2,356.83L569.65,357.85L567.63,357.8L567.23,358.63L567.03,358.65L565.7,358.77L566.35,360.14L567.72,360.58L570.6,359.2L570.51,358.93z"
200
+ },
201
+ {
202
+ "id":"CZ",
203
+ "title":"Czech Republic",
204
+ "d":"M522.81,307.86L521.51,307.06L520.2,307.28L518.02,305.98L517.03,306.3L515.46,308.04L513.37,306.67L511.79,304.84L510.36,303.8L510.06,301.98L509.57,300.68L511.61,299.73L512.65,298.63L514.66,297.77L515.37,296.93L516.11,297.44L517.36,296.97L518.69,298.4L520.78,298.79L520.61,300L522.13,300.9L522.55,299.77L524.47,300.26L524.74,301.63L526.82,301.89L528.11,304.02L527.28,304.03L526.84,304.8L526.2,304.99L526.02,305.96L525.48,306.17L525.4,306.56L524.45,307L523.2,306.93z"
205
+ },
206
+ {
207
+ "id":"DE",
208
+ "title":"Germany",
209
+ "d":"M503.07,278.92L503.12,280.8L505.96,281.92L505.93,283.62L508.78,282.72L510.35,281.41L513.52,283.3L514.84,284.81L515.5,287.2L514.72,288.45L515.73,290.1L516.43,292.55L516.21,294.11L517.36,296.97L516.11,297.44L515.37,296.93L514.66,297.77L512.65,298.63L511.61,299.73L509.57,300.68L510.06,301.98L510.36,303.8L511.79,304.84L513.37,306.67L512.39,308.62L511.38,309.16L511.78,311.88L511.51,312.58L510.64,311.73L509.3,311.61L507.29,312.35L504.82,312.17L504.42,313.26L503,312.12L502.15,312.34L499.15,311.08L498.57,311.98L496.19,311.95L496.54,308.97L497.96,306.07L493.92,305.29L492.6,304.16L492.76,302.27L492.2,301.29L492.52,298.32L492.04,293.63L493.73,293.63L494.44,291.92L495.14,287.69L494.61,286.11L495.16,285.11L497.5,284.85L498.02,285.89L499.93,283.56L499.29,281.77L499.16,279.02L501.28,279.66z"
210
+ },
211
+ {
212
+ "id":"DJ",
213
+ "title":"Djibouti",
214
+ "d":"M596.05,427.72L596.71,428.6L596.62,429.79L595.02,430.47L596.23,431.24L595.19,432.76L594.57,432.26L593.9,432.46L592.33,432.41L592.28,431.55L592.07,430.76L593.01,429.43L594,428.17L595.2,428.42z"
215
+ },
216
+ {
217
+ "id":"DK",
218
+ "title":"Denmark",
219
+ "d":"M510.83,275.84l-1.68,3.97l-2.93,-2.76l-0.39,-2.05l4.11,-1.66L510.83,275.84zM505.85,271.59l-0.69,1.9l-0.83,-0.55l-2.02,3.59l0.76,2.39l-1.79,0.74l-2.12,-0.64l-1.14,-2.72l-0.08,-5.12l0.47,-1.38l0.8,-1.54l2.47,-0.32l0.98,-1.43l2.26,-1.47l-0.1,2.68l-0.83,1.68l0.34,1.43L505.85,271.59z"
220
+ },
221
+ {
222
+ "id":"DO",
223
+ "title":"Dominican Republic",
224
+ "d":"M274.18,407.35L274.53,406.84L276.72,406.86L278.38,407.62L279.12,407.54L279.63,408.59L281.16,408.53L281.07,409.41L282.32,409.52L283.7,410.6L282.66,411.8L281.32,411.16L280.04,411.28L279.12,411.14L278.61,411.68L277.53,411.86L277.11,411.14L276.18,411.57L275.06,413.57L274.34,413.11L274.19,412.27L274.25,411.47L273.53,410.59L274.21,410.09L274.43,408.96z"
225
+ },
226
+ {
227
+ "id":"DZ",
228
+ "title":"Algeria",
229
+ "d":"M508.9,396.08L499.29,401.83L491.17,407.68L487.22,409L484.11,409.29L484.08,407.41L482.78,406.93L481.03,406.08L480.37,404.69L470.91,398.14L461.45,391.49L450.9,383.96L450.96,383.35L450.96,383.14L450.93,379.39L455.46,377.03L458.26,376.54L460.55,375.68L461.63,374.06L464.91,372.77L465.03,370.36L466.65,370.07L467.92,368.86L471.59,368.3L472.1,367.02L471.36,366.31L470.39,362.78L470.23,360.73L469.17,358.55L471.86,356.68L474.9,356.08L476.67,354.65L479.37,353.6L484.12,352.98L488.76,352.69L490.17,353.21L492.81,351.84L495.81,351.81L496.95,352.62L498.86,352.41L498.29,354.2L498.74,357.48L498.08,360.3L496.35,362.18L496.6,364.71L498.89,366.69L498.92,367.5L500.64,368.83L501.84,374.69L502.75,377.53L502.9,379.01L502.41,381.6L502.61,383.04L502.25,384.76L502.5,386.73L501.38,388.02L503.04,390.28L503.15,391.6L504.14,393.31L505.45,392.75L507.67,394.17z"
230
+ },
231
+ {
232
+ "id":"EC",
233
+ "title":"Ecuador",
234
+ "d":"M250.1,472.87L251.59,470.79L250.98,469.57L249.91,470.87L248.23,469.64L248.8,468.86L248.33,466.33L249.31,465.91L249.83,464.18L250.89,462.38L250.69,461.25L252.23,460.65L254.15,459.54L256.96,461.13L257.48,461.08L258.16,462.28L260.54,462.67L261.34,462.23L262.72,463.15L263.92,463.81L264.31,465.92L263.44,467.73L260.38,470.65L257.01,471.75L255.29,474.18L254.76,476.06L253.17,477.21L252,475.8L250.86,475.5L249.7,475.72L249.63,474.7L250.43,474.04z"
235
+ },
236
+ {
237
+ "id":"EE",
238
+ "title":"Estonia",
239
+ "d":"M543.42,264.71L543.75,261.59L542.72,262.26L540.94,260.36L540.69,257.25L544.24,255.72L547.77,254.91L550.81,255.83L553.71,255.66L554.13,256.62L552.14,259.76L552.97,264.72L551.77,266.38L549.45,266.37L547.04,264.43L545.81,263.78z"
240
+ },
241
+ {
242
+ "id":"EG",
243
+ "title":"Egypt",
244
+ "d":"M573.17,377.28L572.38,378.57L571.78,380.97L571.02,382.61L570.36,383.17L569.43,382.15L568.16,380.73L566.16,376.16L565.88,376.45L567.04,379.82L568.76,383L570.88,387.88L571.91,389.56L572.81,391.3L575.33,394.7L574.77,395.23L574.86,397.2L578.13,399.91L578.62,400.53L567.5,400.53L556.62,400.53L545.35,400.53L545.35,389.3L545.35,378.12L544.51,375.54L545.23,373.54L544.8,372.15L545.81,370.58L549.54,370.53L552.24,371.39L555.02,372.36L556.32,372.86L558.48,371.83L559.63,370.9L562.11,370.63L564.1,371.04L564.87,372.66L565.52,371.59L567.76,372.36L569.95,372.55L571.33,371.73z"
245
+ },
246
+ {
247
+ "id":"ER",
248
+ "title":"Eritrea",
249
+ "d":"M594,428.17L593.04,427.24L591.89,425.57L590.65,424.65L589.92,423.65L587.48,422.5L585.56,422.47L584.88,421.86L583.24,422.54L581.54,421.23L580.66,423.38L577.4,422.78L577.1,421.63L578.31,417.38L578.58,415.45L579.46,414.55L581.53,414.07L582.95,412.4L584.58,415.78L585.35,418.45L586.89,419.86L590.71,422.58L592.27,424.22L593.79,425.88L594.67,426.86L596.05,427.72L595.2,428.42z"
250
+ },
251
+ {
252
+ "id":"ES",
253
+ "title":"Spain",
254
+ "d":"M449.92,334.56L450.06,331.88L448.92,330.22L452.88,327.45L456.31,328.15L460.08,328.12L463.06,328.78L465.39,328.58L469.92,328.7L471.04,330.19L476.2,331.92L477.22,331.1L480.38,332.82L483.63,332.33L483.78,334.52L481.12,337.01L477.53,337.79L477.28,339.03L475.55,341.06L474.47,344.02L475.56,346.07L473.94,347.67L473.34,349.97L471.22,350.67L469.23,353.36L465.68,353.41L463,353.35L461.25,354.57L460.18,355.88L458.8,355.59L457.77,354.42L456.97,352.42L454.35,351.88L454.12,350.72L455.16,349.4L455.54,348.44L454.58,347.38L455.35,345.03L454.23,342.86L455.44,342.56L455.55,340.84L456.01,340.31L456.04,337.43L457.34,336.43L456.56,334.55L454.92,334.42L454.44,334.89L452.79,334.9L452.08,333.06L450.94,333.61z"
255
+ },
256
+ {
257
+ "id":"ET",
258
+ "title":"Ethiopia",
259
+ "d":"M581.54,421.23L583.24,422.54L584.88,421.86L585.56,422.47L587.48,422.5L589.92,423.65L590.65,424.65L591.89,425.57L593.04,427.24L594,428.17L593.01,429.43L592.07,430.76L592.28,431.55L592.33,432.41L593.9,432.46L594.57,432.26L595.19,432.76L594.58,433.77L595.62,435.33L596.65,436.69L597.72,437.7L606.89,441.04L609.25,441.02L601.32,449.44L597.67,449.56L595.17,451.53L593.38,451.58L592.61,452.46L590.69,452.46L589.56,451.52L587,452.69L586.17,453.85L584.3,453.63L583.68,453.31L583.02,453.38L582.14,453.36L578.59,450.98L576.64,450.98L575.68,450.07L575.68,448.5L574.22,448.03L572.57,444.98L571.29,444.33L570.79,443.21L569.37,441.84L567.65,441.64L568.61,440.03L570.09,439.96L570.51,439.1L570.48,436.57L571.31,433.61L572.63,432.81L572.92,431.65L574.12,429.48L575.81,428.06L576.95,425.25L577.4,422.78L580.66,423.38z"
260
+ },
261
+ {
262
+ "id":"FK",
263
+ "title":"Falkland Islands",
264
+ "d":"M303.66,633.13L307.02,630.44L309.41,631.56L311.09,629.77L313.33,631.78L312.49,633.36L308.7,634.72L307.44,633.13L305.06,635.18z"
265
+ },
266
+ {
267
+ "id":"FI",
268
+ "title":"Finland",
269
+ "d":"M555.42,193.1L555.01,198.5L559.31,203.49L556.72,208.97L559.98,216.93L558.09,222.69L560.62,227.55L559.47,231.69L563.62,235.95L562.56,239.05L559.96,242.5L553.96,249.91L548.87,250.36L543.94,252.43L539.38,253.61L537.75,250.54L535.04,248.67L535.66,242.95L534.3,237.54L535.64,233.96L538.18,230.02L544.59,223L546.47,221.61L546.17,218.77L542.27,215.55L541.33,212.85L541.25,201.73L536.88,196.58L533.14,192.77L534.82,190.69L537.94,194.84L541.6,194.45L544.61,196.32L547.28,192.88L548.66,187.03L553.01,184.25L556.61,187.51z"
270
+ },
271
+ {
272
+ "id":"FJ",
273
+ "title":"Fiji",
274
+ "d":"M980.53,508.61l-0.35,1.4l-0.23,0.16l-1.78,0.72l-1.79,0.61l-0.36,-1.09l1.4,-0.6l0.89,-0.16l1.64,-0.91L980.53,508.61zM974.69,512.92l-1.27,-0.36l-1.08,1l0.27,1.29l1.55,0.36l1.74,-0.4l0.46,-1.53l-0.96,-0.84L974.69,512.92z"
275
+ },
276
+ {
277
+ "id":"FR",
278
+ "title":"France",
279
+ "d":"M502.06,333.54l-0.93,2.89l-1.27,-0.76l-0.65,-2.53l0.57,-1.41l1.81,-1.45L502.06,333.54zM485.31,300.19l1.96,2.06l1.44,-0.34l2.45,1.97l0.63,0.37l0.81,-0.09l1.32,1.12l4.04,0.79l-1.42,2.9l-0.36,2.98l-0.77,0.71l-1.28,-0.38l0.09,1.05l-2.05,2.3l-0.04,1.84l1.34,-0.63l0.96,1.77l-0.12,1.13l0.83,1.5l-0.97,1.21l0.72,3.04l1.52,0.49l-0.32,1.68l-2.54,2.17l-5.53,-1.04l-4.08,1.24l-0.32,2.29l-3.25,0.49l-3.15,-1.72l-1.02,0.82l-5.16,-1.73l-1.12,-1.49l1.45,-2.32l0.53,-7.88l-2.89,-4.26l-2.07,-2.09l-4.29,-1.6l-0.28,-3.07l3.64,-0.92l4.71,1.09l-0.89,-4.84l2.65,1.85l6.53,-3.37l0.84,-3.61l2.45,-0.9l0.41,1.56l1.3,0.07L485.31,300.19z"
280
+ },
281
+ {
282
+ "id":"GA",
283
+ "title":"Gabon",
284
+ "d":"M506.36,474.48L503.48,471.66L501.62,469.36L499.92,466.48L500.01,465.56L500.62,464.66L501.3,462.64L501.87,460.57L502.82,460.41L506.89,460.44L506.87,457.09L508.2,456.9L509.91,457.28L511.57,456.92L511.92,457.07L511.71,458.29L512.5,459.72L514.58,459.5L515.28,460.05L514.07,463.28L515.39,464.92L515.7,467.1L515.35,468.95L514.49,470.27L512.01,470.15L510.51,468.81L510.29,470.05L508.4,470.39L507.44,471.09L508.49,472.94z"
285
+ },
286
+ {
287
+ "id":"GB",
288
+ "title":"United Kingdom",
289
+ "d":"M459.38,281l-1.5,3.29l-2.12,-0.98l-1.73,0.07l0.58,-2.57l-0.58,-2.6l2.35,-0.2L459.38,281zM466.83,260.24l-3,5.73l2.86,-0.72l3.07,0.03l-0.73,4.22l-2.52,4.53l2.9,0.32l0.22,0.52l2.5,5.79l1.92,0.77l1.73,5.41l0.8,1.84l3.4,0.88l-0.34,2.93l-1.43,1.33l1.12,2.33l-2.52,2.33l-3.75,-0.04l-4.77,1.21l-1.31,-0.87l-1.85,2.06l-2.59,-0.5l-1.97,1.67l-1.49,-0.87l4.11,-4.64l2.51,-0.97h-0.02l-4.38,-0.75l-0.79,-1.8l2.93,-1.41l-1.54,-2.48l0.53,-3.06l4.17,0.42l0,0l0.41,-2.74l-1.88,-2.95l-0.04,-0.07l-3.4,-0.85l-0.67,-1.32l1.02,-2.2l-0.92,-1.37l-1.51,2.34l-0.16,-4.8l-1.42,-2.59l1.02,-5.36l2.18,-4.31l2.24,0.42L466.83,260.24z"
290
+ },
291
+ {
292
+ "id":"GE",
293
+ "title":"Georgia",
294
+ "d":"M591.76,335.85L592.18,334.25L591.48,331.68L589.86,330.27L588.31,329.83L587.28,328.66L587.62,328.2L589.99,328.86L594.12,329.48L597.94,331.31L598.43,332.02L600.13,331.42L602.75,332.22L603.6,333.77L605.37,334.64L604.64,335.15L606.02,337.17L605.64,337.6L604.13,337.38L602.04,336.32L601.35,336.92L597.45,337.5L594.75,335.68z"
295
+ },
296
+ {
297
+ "id":"GF",
298
+ "title":"French Guiana",
299
+ "d":"M327.89,456.41l-1.07,1.06l-1.34,0.2l-0.38,-0.78l-0.63,-0.12l-0.87,0.76l-1.22,-0.57l0.71,-1.19l0.24,-1.27l0.48,-1.2l-1.09,-1.65l-0.22,-1.91l1.46,-2.41l0.95,0.31l2.06,0.66l2.97,2.36l0.46,1.14l-1.66,2.55L327.89,456.41z"
300
+ },
301
+ {
302
+ "id":"GH",
303
+ "title":"Ghana",
304
+ "d":"M478.23,446.84L473.83,448.48L472.27,449.44L469.74,450.25L467.24,449.46L467.37,448.35L466.16,445.94L466.89,442.77L468.07,440.41L467.33,436.4L466.94,434.27L467.01,432.66L471.88,432.53L473.12,432.74L474.02,432.28L475.32,432.5L475.11,433.39L476.28,434.85L476.28,436.9L476.55,439.12L477.25,440.15L476.63,442.68L476.85,444.08L477.6,445.86z"
305
+ },
306
+ {
307
+ "id":"GL",
308
+ "title":"Greenland",
309
+ "d":"M344.13,23.91L353.55,10.3L363.39,11.37L366.96,2.42L376.87,0L399.27,3.15L416.81,21.74L411.63,30.04L400.9,30.97L385.81,33L387.22,36.64L397.15,34.4L405.59,41.31L411.04,35.19L413.37,42.34L410.29,53.31L417.43,46.38L431.04,38.83L439.45,42.64L441.02,50.76L429.59,63.42L428.01,67.32L419.05,70.18L425.54,70.97L422.26,82.48L420,92.07L420.09,107.33L423.46,115.67L419.08,116.18L414.47,120.06L419.64,126.36L420.3,135.98L417.3,137L420.93,146.15L414.71,146.9L417.96,151.04L417.04,154.55L413.09,156.06L409.18,156.09L412.69,162.57L412.73,166.7L407.18,162.87L405.74,165.36L409.52,167.65L413.2,173.13L414.26,180.08L409.26,181.7L407.1,178.44L403.63,173.46L404.59,179.33L401.34,183.74L408.72,184.09L412.59,184.54L405.07,191.57L397.45,197.7L389.25,200.31L386.16,200.35L383.26,203.22L379.36,210.85L373.33,215.74L371.39,216.03L367.65,217.7L363.63,219.29L361.22,223.41L361.18,227.97L359.77,232.13L355.19,237.08L356.32,241.79L355.06,246.64L353.63,252.2L349.68,252.54L345.54,247.91L339.93,247.88L337.21,244.7L335.34,238.9L330.48,231.22L329.06,227.07L328.68,221.18L324.79,214.91L325.8,209.74L323.93,207.21L326.7,198.56L330.92,195.71L332.03,192.45L332.62,186.19L329.41,189.05L327.89,190.24L325.37,191.38L321.93,188.77L321.74,183.22L322.84,178.74L325.44,178.62L331.16,180.87L326.34,175.44L323.83,172.43L321.04,173.67L318.7,171.48L321.83,162.98L320.13,159.45L317.9,152.71L314.53,141.8L310.96,137.63L310.99,133L303.46,126.31L297.51,125.46L290.02,125.93L283.18,126.79L279.92,123.04L275.05,115.38L282.41,111.41L288.06,110.73L276.06,107.37L269.74,101.93L270.13,96.59L280.74,89.72L291.01,82.56L292.09,76.92L284.53,71.16L286.97,64.52L296.68,52.19L300.76,50.21L299.59,41.64L306.23,36.4L314.85,33.19L323.47,33.01L326.53,39.31L333.97,27.99L340.66,35.77L344.59,37.36L350.42,43.77L343.75,33z"
310
+ },
311
+ {
312
+ "id":"GM",
313
+ "title":"The Gambia",
314
+ "d":"M428.03,426.43L428.39,425.16L431.44,425.07L432.08,424.4L432.97,424.35L434.07,425.06L434.94,425.07L435.87,424.59L436.43,425.41L435.22,426.06L434,426.01L432.8,425.4L431.76,426.06L431.26,426.09L430.58,426.49z"
315
+ },
316
+ {
317
+ "id":"GN",
318
+ "title":"Guinea",
319
+ "d":"M451.59,441.91L450.8,441.84L450.23,442.97L449.43,442.96L448.89,442.36L449.07,441.23L447.9,439.51L447.17,439.82L446.57,439.89L445.8,440.05L445.83,439.02L445.38,438.28L445.47,437.46L444.86,436.27L444.08,435.26L441.84,435.26L441.19,435.79L440.41,435.85L439.93,436.46L439.61,437.25L438.11,438.49L436.88,436.82L435.79,435.71L435.07,435.35L434.37,434.78L434.06,433.53L433.65,432.91L432.83,432.44L434.08,431.06L434.93,431.11L435.66,430.63L436.28,430.63L436.72,430.25L436.48,429.31L436.79,429.01L436.84,428.04L438.19,428.07L440.21,428.77L440.83,428.7L441.04,428.39L442.56,428.61L442.97,428.45L443.13,429.5L443.58,429.49L444.31,429.11L444.77,429.21L445.55,429.93L446.75,430.16L447.52,429.54L448.43,429.16L449.1,428.76L449.66,428.84L450.28,429.46L450.62,430.25L451.77,431.44L451.19,432.17L451.08,433.09L451.68,432.81L452.03,433.15L451.88,433.99L452.74,434.81L452.18,435.02L451.95,435.99L452.6,437.15L453.29,439.41L452.25,439.75L451.98,440.14L452.2,440.68L452.04,441.91z"
320
+ },
321
+ {
322
+ "id":"GQ",
323
+ "title":"Equatorial Guinea",
324
+ "d":"M501.87,460.57L501.34,460.15L502.31,457.02L506.87,457.09L506.89,460.44L502.82,460.41z"
325
+ },
326
+ {
327
+ "id":"GR",
328
+ "title":"Greece",
329
+ "d":"M541.7,356.71l1.53,1.16l2.18,-0.2l2.09,0.24l-0.07,0.59l1.53,-0.41l-0.35,1.01l-4.04,0.29l0.03,-0.56l-3.42,-0.67L541.7,356.71zM549.85,335.75l-0.87,2.33l-0.67,0.41l-1.71,-0.1l-1.46,-0.35l-3.4,0.96l1.94,2.06l-1.42,0.59h-1.56l-1.48,-1.88l-0.53,0.8l0.63,2.18l1.4,1.7l-1.06,0.79l1.56,1.65l1.39,1.03l0.04,2l-2.59,-0.94l0.83,1.8l-1.78,0.37l1.06,3.08l-1.86,0.04l-2.3,-1.51l-1.05,-2.81l-0.49,-2.36l-1.09,-1.64l-1.44,-2.05l-0.19,-1.03l1.3,-1.76l0.17,-1.19l0.91,-0.53l0.06,-0.97l1.83,-0.33l1.07,-0.81l1.52,0.07l0.46,-0.65l0.53,-0.12l2.07,0.11l2.24,-1.02l1.98,1.3l2.55,-0.35l0.03,-1.86L549.85,335.75z"
330
+ },
331
+ {
332
+ "id":"GT",
333
+ "title":"Guatemala",
334
+ "d":"M222.64,424.75L221.2,424.25L219.45,424.2L218.17,423.63L216.66,422.45L216.73,421.61L217.05,420.93L216.66,420.39L218.01,418.03L221.6,418.02L221.68,417.04L221.22,416.86L220.91,416.23L219.87,415.56L218.83,414.58L220.1,414.58L220.1,412.93L222.72,412.93L225.31,412.96L225.29,415.27L225.07,418.55L225.9,418.55L226.82,419.08L227.06,418.64L227.88,419.01L226.61,420.12L225.28,420.93L225.08,421.48L225.3,422.04L224.72,422.78L224.06,422.95L224.21,423.29L223.69,423.61L222.73,424.33z"
335
+ },
336
+ {
337
+ "id":"GW",
338
+ "title":"Guinea-Bissau",
339
+ "d":"M432.83,432.44L431.33,431.25L430.15,431.07L429.51,430.26L429.52,429.83L428.67,429.23L428.49,428.62L429.98,428.15L430.91,428.24L431.66,427.92L436.84,428.04L436.79,429.01L436.48,429.31L436.72,430.25L436.28,430.63L435.66,430.63L434.93,431.11L434.08,431.06z"
340
+ },
341
+ {
342
+ "id":"GY",
343
+ "title":"Guyana",
344
+ "d":"M307.7,440L309.54,441.03L311.28,442.86L311.35,444.31L312.41,444.38L313.91,445.74L315.02,446.72L314.57,449.24L312.87,449.97L313.02,450.62L312.5,452.07L313.75,454.09L314.64,454.1L315.01,455.67L316.72,458.09L316.04,458.19L314.49,457.96L313.58,458.7L312.31,459.19L311.43,459.31L311.12,459.85L309.74,459.71L308.01,458.41L307.81,457.12L307.09,455.71L307.54,453.33L308.32,452.35L307.67,451.05L306.71,450.63L307.08,449.4L306.42,448.76L304.96,448.88L303.07,446.76L303.83,445.99L303.77,444.69L305.5,444.24L306.19,443.72L305.23,442.68L305.48,441.65z"
345
+ },
346
+ {
347
+ "id":"HN",
348
+ "title":"Honduras",
349
+ "d":"M230.43,426.9L229.95,426.01L229.09,425.76L229.29,424.61L228.91,424.3L228.33,424.1L227.1,424.44L227,424.05L226.15,423.59L225.55,423.02L224.72,422.78L225.3,422.04L225.08,421.48L225.28,420.93L226.61,420.12L227.88,419.01L228.17,419.13L228.79,418.62L229.59,418.58L229.85,418.81L230.29,418.67L231.59,418.93L232.89,418.85L233.79,418.53L234.12,418.21L235.01,418.36L235.68,418.56L236.41,418.49L236.97,418.24L238.25,418.64L238.7,418.7L239.55,419.24L240.36,419.89L241.38,420.33L242.12,421.13L241.16,421.07L240.77,421.46L239.8,421.84L239.09,421.84L238.47,422.21L237.91,422.08L237.43,421.64L237.14,421.72L236.78,422.41L236.51,422.38L236.46,422.98L235.48,423.77L234.97,424.11L234.68,424.47L233.85,423.89L233.25,424.65L232.66,424.63L232,424.7L232.06,426.11L231.65,426.13L231.3,426.79z"
350
+ },
351
+ {
352
+ "id":"HR",
353
+ "title":"Croatia",
354
+ "d":"M528.05,318.93L528.73,320.48L529.62,321.62L528.54,323.11L527.27,322.23L525.33,322.29L522.92,321.63L521.61,321.72L521.01,322.54L520,321.63L519.41,323.27L520.79,325.1L521.39,326.31L522.68,327.76L523.75,328.61L524.81,330.22L527.29,331.66L526.98,332.3L524.35,330.9L522.72,329.52L520.16,328.38L517.8,325.53L518.37,325.23L517.09,323.59L517.03,322.25L515.23,321.63L514.37,323.34L513.54,322.01L513.61,320.63L513.71,320.57L515.66,320.71L516.18,320.03L517.13,320.68L518.23,320.76L518.22,319.64L519.19,319.23L519.47,317.61L521.7,316.53L522.59,317.03L524.69,318.76L527,319.53z"
355
+ },
356
+ {
357
+ "id":"HT",
358
+ "title":"Haiti",
359
+ "d":"M270.04,406.75L271.75,406.88L274.18,407.35L274.43,408.96L274.21,410.09L273.53,410.59L274.25,411.47L274.19,412.27L272.33,411.77L271.01,411.97L269.3,411.76L267.99,412.31L266.48,411.39L266.73,410.44L269.31,410.85L271.43,411.09L272.44,410.43L271.16,409.16L271.18,408.03L269.41,407.57z"
360
+ },
361
+ {
362
+ "id":"HU",
363
+ "title":"Hungary",
364
+ "d":"M520.68,315.11L521.61,312.46L521.07,311.57L522.65,311.56L522.86,309.85L524.29,310.92L525.32,311.38L527.68,310.87L527.9,310.03L529.02,309.9L530.38,309.25L530.68,309.52L532,309L532.66,308L533.58,307.75L536.58,309.03L537.18,308.6L538.73,309.74L538.93,310.86L537.22,311.73L535.89,314.53L534.2,317.29L531.95,318.05L530.2,317.88L528.05,318.93L527,319.53L524.69,318.76L522.59,317.03L521.7,316.53L521.15,315.16z"
365
+ },
366
+ {
367
+ "id":"ID",
368
+ "title":"Indonesia",
369
+ "d":"M813.72,492.06l-1.18,0.05l-3.72,-1.98l2.61,-0.56l1.47,0.86l0.98,0.86L813.72,492.06zM824.15,491.78l-2.4,0.62l-0.34,-0.34l0.25,-0.96l1.21,-1.72l2.77,-1.12l0.28,0.56l0.05,0.86L824.15,491.78zM805.83,486.01l1.01,0.75l1.73,-0.23l0.7,1.2l-3.24,0.57l-1.94,0.38l-1.51,-0.02l0.96,-1.62l1.54,-0.02L805.83,486.01zM819.86,486l-0.41,1.56l-4.21,0.8l-3.73,-0.35l-0.01,-1.03l2.23,-0.59l1.76,0.84l1.87,-0.21L819.86,486zM779.82,482.31l5.37,0.28l0.62,-1.16l5.2,1.35l1.02,1.82l4.21,0.51l3.44,1.67l-3.2,1.07l-3.08,-1.13l-2.54,0.08l-2.91,-0.21l-2.62,-0.51l-3.25,-1.07l-2.06,-0.28l-1.17,0.35l-5.11,-1.16l-0.49,-1.21l-2.57,-0.21l1.92,-2.68l3.4,0.17l2.26,1.09l1.16,0.21L779.82,482.31zM853,480.73l-1.44,1.91l-0.27,-2.11l0.5,-1.01l0.59,-0.95l0.64,0.82L853,480.73zM832.04,473.02l-1.05,0.93l-1.94,-0.51l-0.55,-1.2l2.84,-0.13L832.04,473.02zM841.08,472.01l1.02,2.13l-2.37,-1.15l-2.34,-0.23l-1.58,0.18l-1.94,-0.1l0.67,-1.53l3.46,-0.12L841.08,472.01zM851.37,466.59l0.78,4.51l2.9,1.67l2.34,-2.96l3.22,-1.68h2.49l2.4,0.97l2.08,1l3.01,0.53l0.05,9.1l0.05,9.16l-2.5,-2.31l-2.85,-0.57l-0.69,0.8l-3.55,0.09l1.19,-2.29l1.77,-0.78l-0.73,-3.05l-1.35,-2.35l-5.44,-2.37l-2.31,-0.23l-4.21,-2.58l-0.83,1.36l-1.08,0.25l-0.64,-1.02l-0.01,-1.21l-2.14,-1.37l3.02,-1l2,0.05l-0.24,-0.74l-4.1,-0.01l-1.11,-1.66l-2.5,-0.51l-1.19,-1.38l3.78,-0.67l1.44,-0.91l4.5,1.14L851.37,466.59zM826.41,459.43l-2.25,2.76l-2.11,0.54l-2.7,-0.54l-4.67,0.14l-2.45,0.4l-0.4,2.11l2.51,2.48l1.51,-1.26l5.23,-0.95l-0.23,1.28l-1.22,-0.4l-1.22,1.63l-2.47,1.08l2.65,3.57l-0.51,0.96l2.52,3.22l-0.02,1.84l-1.5,0.82l-1.1,-0.98l1.36,-2.29l-2.75,1.08l-0.7,-0.77l0.36,-1.08l-2.02,-1.64l0.21,-2.72l-1.87,0.85l0.24,3.25l0.11,4l-1.78,0.41l-1.2,-0.82l0.8,-2.57l-0.43,-2.69l-1.18,-0.02l-0.87,-1.91l1.16,-1.83l0.4,-2.21l1.41,-4.2l0.59,-1.15l2.38,-2.07l2.19,0.82l3.54,0.39l3.22,-0.12l2.77,-2.02L826.41,459.43zM836.08,460.23l-0.15,2.43l-1.45,-0.27l-0.43,1.69l1.16,1.47l-0.79,0.33l-1.13,-1.76l-0.83,-3.56l0.56,-2.23l0.93,-1.01l0.2,1.52l1.66,0.24L836.08,460.23zM805.76,458.29l3.14,2.58l-3.32,0.33l-0.94,1.9l0.12,2.52l-2.7,1.91L802,470.3l-1.08,4.27l-0.41,-0.99l-3.19,1.26l-1.11,-1.71l-2,-0.16l-1.4,-0.89l-3.33,1l-1.02,-1.35l-1.84,0.15l-2.31,-0.32l-0.43,-3.74l-1.4,-0.77l-1.35,-2.38l-0.39,-2.44l0.33,-2.58l1.67,-1.85l0.47,1.86l1.92,1.57l1.81,-0.57l1.79,0.2l1.63,-1.41l1.34,-0.24l2.65,0.78l2.29,-0.59l1.44,-3.88l1.08,-0.97l0.97,-3.17h3.22l2.43,0.47l-1.59,2.52l2.06,2.64L805.76,458.29zM771.95,479.71l-3.1,0.06l-2.36,-2.34l-3.6,-2.28l-1.2,-1.69l-2.12,-2.27l-1.39,-2.09l-2.13,-3.9l-2.46,-2.32l-0.82,-2.39l-1.03,-2.17l-2.53,-1.75l-1.47,-2.39l-2.11,-1.56l-2.92,-3.08l-0.25,-1.42l1.81,0.11l4.34,0.54l2.48,2.73l2.17,1.89l1.55,1.16l2.66,3l2.85,0.04l2.36,1.91l1.62,2.33l2.13,1.27l-1.12,2.27l1.61,0.97l1.01,0.07l0.48,1.94l0.98,1.56l2.06,0.25l1.36,1.76l-0.7,3.47L771.95,479.71z"
370
+ },
371
+ {
372
+ "id":"IE",
373
+ "title":"Ireland",
374
+ "d":"M457.88,284.29L458.34,287.65L456.22,291.77L451.25,294.45L447.28,293.77L449.55,288.99L448.09,284.22L451.9,280.47L454.02,278.2L454.6,280.8L454.02,283.37L455.76,283.31z"
375
+ },
376
+ {
377
+ "id":"IL",
378
+ "title":"Israel",
379
+ "d":"M575.41,366.82L574.92,367.87L573.9,367.41L573.32,369.61L574.02,369.97L573.31,370.43L573.18,371.29L574.5,370.84L574.57,372.11L573.17,377.28L571.33,371.73L572.14,370.65L571.95,370.46L572.69,368.93L573.26,366.43L573.66,365.59L573.74,365.56L574.68,365.56L574.94,364.98L575.69,364.93L575.73,366.3L575.35,366.8z"
380
+ },
381
+ {
382
+ "id":"IN",
383
+ "title":"India",
384
+ "d":"M748.36,382.43L748.14,381.23L745.12,380.76L746.07,379.42L744.75,377.44L742.75,378.78L740.4,378L737.17,380.03L734.62,382.38L732.36,382.78L733.5,383.78L733.3,385.71L731.01,385.8L728.65,385.59L726.88,386.08L724.33,384.89L724.28,384.26L724.04,381.78L722.33,382.45L722.11,383.8L722.48,385.79L722.16,387.03L719.83,387.08L716.45,386.35L714.29,386.06L712.67,384.47L708.83,384.06L705.17,382.29L702.53,380.74L699.81,379.54L700.9,376.55L702.68,375.09L698.78,372.82L696.03,370.76L695.24,367.13L697.25,367.57L697.34,365.88L696.23,364.17L696.41,362.43L696.46,362.43L697.7,362.33L699.3,360.1L700.21,357.34L697.33,355.97L693.45,357.34L693.31,357.38L693.5,357.44L688.89,356.05L688.06,353.39L685.99,351.76L684.35,352.15L682.93,352.8L681.65,352.96L681.53,353.07L678.45,355.41L678.81,356.56L679.77,356.55L682.81,359.16L680.94,360.84L681.52,365.64L683.9,366.63L683.99,366.6L684,366.64L686.27,368.27L683.88,370.18L683.92,372.51L681.2,375.75L679.44,379.01L676.51,382.33L673.25,382.09L670.16,385.39L672,386.79L672.32,389.18L673.89,390.74L674.45,393.38L668.28,393.37L666.41,395.41L669.7,397.99L670.53,399.17L669.18,400.26L672.84,403.89L674.82,404.25L678.9,402.46L679.44,405.26L679.43,408.84L680.27,412.61L681.43,418.25L683.98,422.22L684.47,424.02L685.16,427.6L686.65,430.34L687.63,431.68L688.71,434.54L690.01,438.5L692.66,441.13L693.79,440.32L694.73,438.4L697.29,437.6L696.44,436.67L697.71,434.52L699.16,434.38L699.18,429.55L700.36,426.84L700.21,424.47L699.63,420.72L700.47,418.52L701.78,418.36L704.31,417.33L705.71,416.61L705.71,415.27L708.5,413.36L710.61,411.51L713.75,408.05L717.78,406.05L719.28,404.29L719.12,402.04L722.58,401.42L724.48,401.46L724.89,400.36L724.45,397.88L723.48,395.6L723.95,393.76L722.23,392.94L722.85,391.82L724.6,390.67L722.58,389.04L723.57,386.93L725.79,388.27L727.13,388.43L727.38,390.58L730.04,391L732.65,390.95L734.26,391.48L732.97,394.07L731.71,394.25L730.85,395.98L732.38,397.56L732.84,395.62L733.62,395.61L735.09,400.41L736.48,399.69L736.18,398.41L736.81,397.38L736.92,394.23L739.11,394.93L740.36,392.41L740.51,390.91L742.05,388.31L741.97,386.53L745.6,384.37L747.6,384.94L747.37,383.01z"
385
+ },
386
+ {
387
+ "id":"IQ",
388
+ "title":"Iraq",
389
+ "d":"M602.61,355.77L604.44,356.81L604.66,358.81L603.24,359.98L602.59,362.62L604.54,365.8L607.97,367.62L609.42,370.12L608.96,372.49L609.85,372.49L609.88,374.22L611.43,375.91L609.77,375.76L607.88,375.49L605.82,378.57L600.61,378.31L592.71,371.82L588.53,369.53L585.15,368.64L584.02,364.6L590.23,361.1L591.29,356.98L591.02,354.46L592.56,353.6L594,351.42L595.2,350.87L598.46,351.33L599.45,352.22L600.79,351.63z"
390
+ },
391
+ {
392
+ "id":"IR",
393
+ "title":"Iran",
394
+ "d":"M626.44,351.53L628.91,350.85L630.9,348.83L632.77,348.93L634,348.27L636,348.6L639.1,350.39L641.34,350.78L644.54,353.87L646.63,353.99L646.88,356.9L645.74,361.15L644.97,363.6L646.19,364.09L644.99,365.92L645.91,368.56L646.13,370.65L648.25,371.2L648.48,373.3L645.94,376.23L647.32,377.91L648.45,379.84L651.13,381.24L651.21,384.01L652.55,384.52L652.78,385.96L648.74,387.57L647.68,391.17L642.41,390.24L639.35,389.53L636.19,389.12L634.99,385.31L633.65,384.75L631.49,385.31L628.67,386.82L625.24,385.79L622.41,383.38L619.71,382.48L617.84,379.47L615.77,375.2L614.26,375.72L612.48,374.65L611.43,375.91L609.88,374.22L609.85,372.49L608.96,372.49L609.42,370.12L607.97,367.62L604.54,365.8L602.59,362.62L603.24,359.98L604.66,358.81L604.44,356.81L602.61,355.77L600.79,351.63L599.26,348.8L599.8,347.71L598.93,343.59L600.85,342.56L601.29,343.93L602.71,345.59L604.63,346.06L605.65,345.96L608.96,343.3L610.01,343.03L610.83,344.1L609.87,345.88L611.62,347.74L612.31,347.57L613.2,350.18L615.86,350.91L617.81,352.67L621.79,353.27L626.17,352.35z"
395
+ },
396
+ {
397
+ "id":"IS",
398
+ "title":"Iceland",
399
+ "d":"M434.57,212.43L433.93,216.91L437.09,221.51L433.45,226.52L425.36,230.9L422.94,232.05L419.25,231.12L411.43,229.11L414.19,226.27L408.09,223.07L413.05,221.79L412.93,219.82L407.05,218.25L408.94,213.78L413.19,212.75L417.56,217.43L421.82,213.68L425.35,215.64L429.92,211.93z"
400
+ },
401
+ {
402
+ "id":"IT",
403
+ "title":"Italy",
404
+ "d":"M518.77,347.88l-1.01,2.78l0.42,1.09l-0.59,1.79l-2.14,-1.31l-1.43,-0.38l-3.91,-1.79l0.39,-1.82l3.28,0.32l2.86,-0.39L518.77,347.88zM501.08,337.06l1.68,2.62l-0.39,4.81l-1.27,-0.23l-1.14,1.2l-1.06,-0.95l-0.11,-4.38l-0.64,-2.1l1.54,0.19L501.08,337.06zM509.95,315.46l4.01,1.05l-0.3,1.99l0.67,1.71l-2.23,-0.58l-2.28,1.42l0.16,1.97l-0.34,1.12l0.92,1.99l2.63,1.95l1.41,3.17l3.12,3.05l2.2,-0.02l0.68,0.83l-0.79,0.74l2.51,1.35l2.06,1.12l2.4,1.92l0.29,0.68l-0.52,1.31l-1.56,-1.7l-2.44,-0.6l-1.18,2.36l2.03,1.34l-0.33,1.88l-1.17,0.21l-1.5,3.06l-1.17,0.27l0.01,-1.08l0.57,-1.91l0.61,-0.77l-1.09,-2.09l-0.86,-1.83l-1.16,-0.46l-0.83,-1.58l-1.8,-0.67l-1.21,-1.49l-2.07,-0.24l-2.19,-1.68l-2.56,-2.45l-1.91,-2.19l-0.87,-3.8l-1.4,-0.45l-2.28,-1.29l-1.29,0.53l-1.62,1.8l-1.17,0.28l0.32,-1.68l-1.52,-0.49l-0.72,-3.04l0.97,-1.21l-0.83,-1.5l0.12,-1.13l1.21,0.86l1.35,-0.19l1.57,-1.36l0.49,0.64l1.34,-0.13l0.61,-1.63l2.07,0.51l1.24,-0.68l0.22,-1.67l1.7,0.58l0.33,-0.78l2.77,-0.71L509.95,315.46z"
405
+ },
406
+ {
407
+ "id":"JM",
408
+ "title":"Jamaica",
409
+ "d":"M257.76,410.96L259.65,411.22L261.14,411.93L261.6,412.73L259.63,412.78L258.78,413.27L257.21,412.8L255.61,411.73L255.94,411.06L257.12,410.86z"
410
+ },
411
+ {
412
+ "id":"JO",
413
+ "title":"Jordan",
414
+ "d":"M574.92,367.87L575.41,366.82L578.53,368.14L584.02,364.6L585.15,368.64L584.62,369.13L579,370.78L581.8,374.04L580.87,374.58L580.41,375.67L578.27,376.11L577.6,377.27L576.38,378.25L573.26,377.74L573.17,377.28L574.57,372.11L574.5,370.84L574.92,369.88z"
415
+ },
416
+ {
417
+ "id":"JP",
418
+ "title":"Japan",
419
+ "d":"M852.76,362.01l0.36,1.15l-1.58,2.03l-1.15,-1.07l-1.44,0.78l-0.74,1.95l-1.83,-0.95l0.02,-1.58l1.55,-2l1.59,0.39l1.15,-1.42L852.76,362.01zM870.53,351.73l-1.06,2.78l0.49,1.73l-1.46,2.42l-3.58,1.6l-4.93,0.21l-4,3.84l-1.88,-1.29L854,360.5l-4.88,0.75l-3.32,1.59l-3.28,0.06l2.84,2.46l-1.87,5.61l-1.81,1.37l-1.36,-1.27l0.69,-2.96l-1.77,-0.96l-1.14,-2.28l2.65,-1.03l1.47,-2.11l2.82,-1.75l2.06,-2.33l5.58,-1.02l3,0.7l2.93,-6.17l1.87,1.67l4.11,-3.51l1.59,-1.38l1.76,-4.38l-0.48,-4.1l1.18,-2.33l2.98,-0.68l1.53,5.11l-0.08,2.94l-2.59,3.6L870.53,351.73zM878.76,325.8l1.97,0.83l1.98,-1.65l0.62,4.35l-4.16,1.05l-2.46,3.76l-4.41,-2.58l-1.53,4.12l-3.12,0.06l-0.39,-3.74l1.39,-2.94l3,-0.21l0.82,-5.38l0.83,-3.09l3.29,4.12L878.76,325.8z"
420
+ },
421
+ {
422
+ "id":"KE",
423
+ "title":"Kenya",
424
+ "d":"M590.19,465.78L591.85,468.07L589.89,469.19L589.2,470.35L588.14,470.55L587.75,472.52L586.85,473.64L586.3,475.5L585.17,476.42L581.15,473.63L580.95,472.01L570.79,466.34L570.31,466.03L570.29,463.08L571.09,461.95L572.47,460.11L573.49,458.08L572.26,454.88L571.93,453.48L570.6,451.54L572.32,449.87L574.22,448.03L575.68,448.5L575.68,450.07L576.64,450.98L578.59,450.98L582.14,453.36L583.02,453.38L583.68,453.31L584.3,453.63L586.17,453.85L587,452.69L589.56,451.52L590.69,452.46L592.61,452.46L590.16,455.63z"
425
+ },
426
+ {
427
+ "id":"KG",
428
+ "title":"Kyrgyzstan",
429
+ "d":"M674.22,333.11L674.85,331.45L676.69,330.91L681.31,332.22L681.74,329.98L683.33,329.18L687.33,330.79L688.35,330.37L693,330.47L697.16,330.87L698.56,332.24L700.29,332.79L699.9,333.65L695.48,335.68L694.48,337.16L690.88,337.6L689.82,339.95L686.85,339.46L684.92,340.18L682.24,341.9L682.63,342.75L681.83,343.58L676.53,344.13L673.06,342.96L670.02,343.24L670.29,341.14L673.34,341.75L674.37,340.62L676.5,340.98L680.09,338.34L676.77,336.38L674.77,337.31L672.7,335.91L675.05,333.48z"
430
+ },
431
+ {
432
+ "id":"KH",
433
+ "title":"Cambodia",
434
+ "d":"M765.44,433.6L764.3,432.12L762.89,429.18L762.22,425.73L764.02,423.35L767.64,422.8L770.27,423.21L772.58,424.34L773.85,422.35L776.34,423.41L776.99,425.33L776.64,428.75L771.93,430.94L773.16,432.67L770.22,432.87L767.79,434.01z"
435
+ },
436
+ {
437
+ "id":"KP",
438
+ "title":"North Korea",
439
+ "d":"M841.55,332.62L841.94,333.29L840.88,333.06L839.66,334.33L838.82,335.61L838.93,338.28L837.48,339.09L836.98,339.74L835.92,340.82L834.05,341.42L832.84,342.4L832.75,343.97L832.42,344.37L833.54,344.95L835.13,346.53L834.72,347.39L833.53,347.62L831.55,347.79L830.46,349.39L829.2,349.27L829.03,349.59L827.67,348.92L827.33,349.58L826.51,349.87L826.41,349.21L825.68,348.89L824.93,348.32L825.7,346.75L826.36,346.33L826.11,345.68L826.82,343.74L826.63,343.15L825,342.75L823.68,341.78L825.96,339.43L829.05,337.45L830.98,334.8L832.31,335.97L834.73,336.11L834.29,334.14L838.62,332.51L839.74,330.38z"
440
+ },
441
+ {
442
+ "id":"KR",
443
+ "title":"South Korea",
444
+ "d":"M835.13,346.53L837.55,350.71L838.24,352.98L838.26,356.96L837.21,358.84L834.67,359.5L832.43,360.91L829.9,361.2L829.59,359.35L830.11,356.78L828.87,353.18L830.95,352.59L829.03,349.59L829.2,349.27L830.46,349.39L831.55,347.79L833.53,347.62L834.72,347.39z"
445
+ },
446
+ {
447
+ "id":"KV",
448
+ "title":"Kosovo",
449
+ "d":"M533.47,333.92L533.34,334.69L532.98,334.66L532.8,333.29L532.13,332.91L531.53,331.89L532.05,331.04L532.72,330.76L533.11,329.5L533.61,329.28L534.01,329.82L534.54,330.06L534.9,330.67L535.36,330.85L535.91,331.55L536.31,331.53L535.99,332.46L535.66,332.91L535.75,333.19L535.12,333.33z"
450
+ },
451
+ {
452
+ "id":"KW",
453
+ "title":"Kuwait",
454
+ "d":"M609.77,375.76L610.35,377.17L610.1,377.9L611,380.31L609.02,380.39L608.32,378.88L605.82,378.57L607.88,375.49z"
455
+ },
456
+ {
457
+ "id":"KZ",
458
+ "title":"Kazakhstan",
459
+ "d":"M674.22,333.11L672.61,333.81L668.92,336.42L667.69,339.07L666.64,339.09L665.88,337.34L662.31,337.22L661.74,334.16L660.37,334.13L660.58,330.33L657.23,327.53L652.42,327.83L649.13,328.39L646.45,324.89L644.16,323.41L639.81,320.57L639.29,320.22L632.07,322.57L632.18,336.7L630.74,336.88L628.78,333.95L626.88,332.89L623.7,333.68L622.46,334.93L622.3,334.01L622.99,332.44L622.46,331.12L619.21,329.82L617.94,326.35L616.4,325.37L616.3,324.09L619.03,324.46L619.14,321.58L621.52,320.94L623.97,321.53L624.48,317.62L623.98,315.11L621.17,315.31L618.79,314.31L615.54,316.1L612.93,316.96L611.5,316.3L611.79,314.2L610,311.44L607.92,311.55L605.54,308.72L607.16,305.5L606.34,304.63L608.57,299.86L611.46,302.39L611.81,299.2L617.59,294.35L621.97,294.23L628.16,297.33L631.47,299.12L634.45,297.25L638.89,297.17L642.48,299.46L643.3,298.15L647.23,298.34L647.94,296.23L643.39,293.14L646.08,290.91L645.56,289.66L648.25,288.45L646.23,285.25L647.51,283.63L658,281.97L659.37,280.78L666.39,278.99L668.91,276.95L673.95,278.01L674.83,283.02L677.76,281.86L681.36,283.49L681.13,286.07L683.82,285.8L690.84,281.31L689.82,282.81L693.4,286.47L699.66,298.05L701.16,295.72L705.02,298.28L709.05,297.14L710.59,297.94L711.94,300.49L713.9,301.33L715.1,303.18L718.71,302.6L720.2,305.23L718.06,308.06L715.73,308.46L715.6,312.64L714.04,314.5L708.48,313.15L706.46,320.41L705.02,321.3L699.47,322.88L701.99,329.63L700.07,330.63L700.29,332.79L698.56,332.24L697.16,330.87L693,330.47L688.35,330.37L687.33,330.79L683.33,329.18L681.74,329.98L681.31,332.22L676.69,330.91L674.85,331.45z"
460
+ },
461
+ {
462
+ "id":"LA",
463
+ "title":"Lao People's Democratic Republic",
464
+ "d":"M770.27,423.21L771.18,421.91L771.31,419.47L769.04,416.94L768.86,414.07L766.73,411.69L764.61,411.49L764.05,412.51L762.4,412.59L761.56,412.08L758.61,413.82L758.54,411.2L759.23,408.09L757.34,407.96L757.18,406.18L755.96,405.26L756.56,404.16L758.95,402.22L759.2,402.92L760.69,403L760.27,399.57L761.72,399.13L763.36,401.5L764.62,404.22L768.07,404.25L769.16,406.84L767.37,407.61L766.56,408.68L769.92,410.44L772.25,413.9L774.02,416.47L776.14,418.49L776.85,420.53L776.34,423.41L773.85,422.35L772.58,424.34z"
465
+ },
466
+ {
467
+ "id":"LB",
468
+ "title":"Lebanon",
469
+ "d":"M575.69,364.93L574.94,364.98L574.68,365.56L573.74,365.56L574.74,362.83L576.13,360.45L576.19,360.33L577.45,360.51L577.91,361.83L576.38,363.1z"
470
+ },
471
+ {
472
+ "id":"LK",
473
+ "title":"Sri Lanka",
474
+ "d":"M704.57,442.37L704.15,445.29L702.98,446.09L700.54,446.73L699.2,444.5L698.71,440.47L699.98,435.89L701.91,437.46L703.22,439.44z"
475
+ },
476
+ {
477
+ "id":"LR",
478
+ "title":"Liberia",
479
+ "d":"M453.63,451.22L452.89,451.24L450,449.91L447.46,447.78L445.07,446.25L443.18,444.44L443.85,443.54L444,442.73L445.26,441.2L446.57,439.89L447.17,439.82L447.9,439.51L449.07,441.23L448.89,442.36L449.43,442.96L450.23,442.97L450.8,441.84L451.59,441.91L451.46,442.73L451.74,444.09L451.13,445.33L451.95,446.1L452.84,446.29L454.03,447.46L454.11,448.57L453.84,448.92z"
480
+ },
481
+ {
482
+ "id":"LS",
483
+ "title":"Lesotho",
484
+ "d":"M556.5,547.75L557.48,548.71L556.62,550.27L556.14,551.32L554.58,551.82L554.06,552.86L553.06,553.18L550.96,550.69L552.45,548.66L553.97,547.41L555.28,546.77z"
485
+ },
486
+ {
487
+ "id":"LT",
488
+ "title":"Lithuania",
489
+ "d":"M538.99,282.09L538.76,280.87L539.06,279.54L537.82,278.77L534.89,277.91L534.29,273.75L537.5,272.2L542.2,272.53L544.96,272.03L545.35,273.08L546.84,273.4L549.54,275.82L549.8,278.02L547.5,279.59L546.85,282.31L543.81,284.11L541.1,284.07L540.43,282.61z"
490
+ },
491
+ {
492
+ "id":"LU",
493
+ "title":"Luxembourg",
494
+ "d":"M492.2,301.29L492.76,302.27L492.6,304.16L491.79,304.26L491.16,303.88L491.47,301.45z"
495
+ },
496
+ {
497
+ "id":"LV",
498
+ "title":"Latvia",
499
+ "d":"M534.29,273.75L534.39,269.94L535.77,266.7L538.41,264.92L540.63,268.8L542.88,268.7L543.42,264.71L545.81,263.78L547.04,264.43L549.45,266.37L551.77,266.38L553.12,267.57L553.35,270.06L554.26,273.05L551.24,274.98L549.54,275.82L546.84,273.4L545.35,273.08L544.96,272.03L542.2,272.53L537.5,272.2z"
500
+ },
501
+ {
502
+ "id":"LY",
503
+ "title":"Libya",
504
+ "d":"M516.89,397.93L514.91,399.05L513.33,397.39L508.9,396.08L507.67,394.17L505.45,392.75L504.14,393.31L503.15,391.6L503.04,390.28L501.38,388.02L502.5,386.73L502.25,384.76L502.61,383.04L502.41,381.6L502.9,379.01L502.75,377.53L501.84,374.69L503.21,373.94L503.45,372.56L503.15,371.21L505.08,369.95L505.94,368.9L507.31,367.95L507.47,365.4L510.76,366.55L511.94,366.26L514.28,366.82L518,368.29L519.31,371.21L521.83,371.85L525.78,373.21L528.77,374.82L530.14,373.98L531.48,372.49L530.83,369.98L531.71,368.38L533.73,366.83L535.66,366.38L539.45,367.06L540.41,368.54L541.45,368.55L542.34,369.11L545.13,369.5L545.81,370.58L544.8,372.15L545.23,373.54L544.51,375.54L545.35,378.12L545.35,389.3L545.35,400.53L545.35,406.49L542.13,406.5L542.09,407.74L530.91,402.04L519.72,396.27z"
505
+ },
506
+ {
507
+ "id":"MA",
508
+ "title":"Morocco",
509
+ "d":"M471.36,366.31L470.39,362.78L470.23,360.73L469.17,358.55L467.95,358.51L465.05,357.76L462.38,358L460.69,356.54L458.63,356.52L457.74,358.63L455.87,362.14L453.79,363.53L450.98,365.06L449.18,367.3L448.8,369.04L447.73,371.86L448.43,375.89L446.09,378.57L444.69,379.42L442.48,381.59L439.87,381.94L438.46,383.15L438.41,383.19L436.63,386.39L434.77,387.53L433.75,389.44L433.69,391.09L432.94,392.88L432,393.37L430.44,395.31L429.48,397.46L429.66,398.48L428.74,400.05L427.66,400.87L427.53,402.26L427.41,403.53L428.02,402.53L439,402.55L438.47,398.2L439.16,396.65L441.78,396.38L441.69,388.52L450.9,388.69L450.9,383.96L450.96,383.35L450.96,383.14L450.93,379.39L455.46,377.03L458.26,376.54L460.55,375.68L461.63,374.06L464.91,372.77L465.03,370.36L466.65,370.07L467.92,368.86L471.59,368.3L472.1,367.02z"
510
+ },
511
+ {
512
+ "id":"MD",
513
+ "title":"Moldova",
514
+ "d":"M549.89,309.45L550.56,308.83L552.42,308.41L554.49,309.72L555.64,309.88L556.91,311L556.71,312.41L557.73,313.08L558.13,314.8L559.11,315.84L558.92,316.44L559.44,316.86L558.7,317.15L557.04,317.04L556.77,316.47L556.18,316.8L556.38,317.52L555.61,318.81L555.12,320.18L554.42,320.62L553.91,318.79L554.21,317.07L554.12,315.28L552.5,312.84L551.61,311.09L550.74,309.85z"
515
+ },
516
+ {
517
+ "id":"ME",
518
+ "title":"Montenegro",
519
+ "d":"M530.77,332.23L530.6,331.51L529.38,333.38L529.57,334.57L528.98,334.28L528.2,333.05L526.98,332.3L527.29,331.66L527.7,329.56L528.61,328.67L529.14,328.31L529.88,328.97L530.29,329.51L531.21,329.92L532.28,330.71L532.05,331.04L531.53,331.89z"
520
+ },
521
+ {
522
+ "id":"MG",
523
+ "title":"Madagascar",
524
+ "d":"M614.17,498.4L614.91,499.61L615.6,501.5L616.06,504.96L616.78,506.31L616.5,507.69L616.01,508.55L615.05,506.85L614.53,507.71L615.06,509.85L614.81,511.09L614.04,511.76L613.86,514.24L612.76,517.66L611.38,521.75L609.64,527.42L608.57,531.63L607.3,535.18L605.02,535.91L602.57,537.22L600.96,536.43L598.73,535.33L597.96,533.71L597.77,531L596.79,528.58L596.53,526.41L597.03,524.25L598.32,523.73L598.33,522.74L599.67,520.48L599.92,518.6L599.27,517.2L598.74,515.35L598.52,512.65L599.5,511.02L599.87,509.17L601.27,509.07L602.84,508.47L603.87,507.95L605.11,507.91L606.7,506.26L609.01,504.48L609.85,503.04L609.47,501.81L610.66,502.16L612.21,500.17L612.26,498.45L613.19,497.17z"
525
+ },
526
+ {
527
+ "id":"MK",
528
+ "title":"Macedonia",
529
+ "d":"M532.98,334.66L533.34,334.69L533.47,333.92L535.12,333.33L535.75,333.19L536.71,332.97L538,332.91L539.41,334.12L539.61,336.59L539.07,336.71L538.61,337.36L537.09,337.29L536.02,338.1L534.19,338.42L533.03,337.52L532.63,335.93z"
530
+ },
531
+ {
532
+ "id":"ML",
533
+ "title":"Mali",
534
+ "d":"M441.13,422.22L442.07,421.7L442.54,420L443.43,419.93L445.39,420.73L446.97,420.16L448.05,420.35L448.48,419.71L459.73,419.67L460.35,417.64L459.86,417.28L458.51,404.6L457.16,391.54L461.45,391.49L470.91,398.14L480.37,404.69L481.03,406.08L482.78,406.93L484.08,407.41L484.11,409.29L487.22,409L487.23,415.75L485.69,417.69L485.45,419.48L482.96,419.93L479.14,420.18L478.1,421.21L476.3,421.32L474.51,421.33L473.81,420.78L472.26,421.19L469.64,422.39L469.11,423.29L466.93,424.57L466.55,425.31L465.38,425.89L464.02,425.51L463.25,426.21L462.84,428.17L460.61,430.53L460.68,431.49L459.91,432.7L460.1,434.34L458.94,434.76L458.29,435.12L457.85,433.91L457.04,434.23L456.56,434.17L456.04,435L453.88,434.97L453.1,434.55L452.74,434.81L451.88,433.99L452.03,433.15L451.68,432.81L451.08,433.09L451.19,432.17L451.77,431.44L450.62,430.25L450.28,429.46L449.66,428.84L449.1,428.76L448.43,429.16L447.52,429.54L446.75,430.16L445.55,429.93L444.77,429.21L444.31,429.11L443.58,429.49L443.13,429.5L442.97,428.45L443.1,427.56L442.86,426.46L441.81,425.65L441.26,424.01z"
535
+ },
536
+ {
537
+ "id":"MM",
538
+ "title":"Myanmar",
539
+ "d":"M754.36,405.95L752.72,407.23L750.74,407.37L749.46,410.56L748.28,411.09L749.64,413.66L751.42,415.79L752.56,417.71L751.54,420.23L750.57,420.76L751.24,422.21L753.11,424.49L753.43,426.09L753.38,427.42L754.48,430.02L752.94,432.67L751.58,435.58L751.31,433.48L752.17,431.3L751.23,429.62L751.46,426.51L750.32,425.03L749.41,421.59L748.9,417.93L747.69,415.53L745.84,416.99L742.65,419.05L741.08,418.79L739.34,418.12L740.31,414.51L739.73,411.77L737.53,408.38L737.87,407.31L736.23,406.93L734.24,404.51L734.06,402.1L735.04,402.56L735.09,400.41L736.48,399.69L736.18,398.41L736.81,397.38L736.92,394.23L739.11,394.93L740.36,392.41L740.51,390.91L742.05,388.31L741.97,386.53L745.6,384.37L747.6,384.94L747.37,383.01L748.36,382.43L748.14,381.23L749.78,380.99L750.72,382.85L751.94,383.6L752.03,386L751.91,388.57L749.26,391.15L748.92,394.78L751.88,394.28L752.55,397.08L754.33,397.67L753.51,400.17L755.59,401.3L756.81,401.85L758.86,400.98L758.95,402.22L756.56,404.16L755.96,405.26z"
540
+ },
541
+ {
542
+ "id":"MN",
543
+ "title":"Mongolia",
544
+ "d":"M721.29,304.88L724.25,304.14L729.6,300.4L733.87,298.33L736.3,299.68L739.23,299.74L741.1,301.79L743.9,301.94L747.96,303.03L750.68,300L749.54,297.4L752.45,292.74L755.59,294.61L758.13,295.14L761.43,296.29L761.96,299.61L765.95,301.45L768.6,300.64L772.14,300.07L774.95,300.65L777.7,302.74L779.4,304.94L782,304.9L785.53,305.59L788.11,304.53L791.8,303.82L795.91,300.76L797.59,301.23L799.06,302.69L802.4,302.33L801.04,305.58L799.06,309.8L799.78,311.51L801.37,310.98L804.13,311.63L806.29,310.09L808.54,311.42L811.08,314.31L810.77,315.76L808.56,315.3L804.49,315.84L802.51,317L800.46,319.66L796.18,321.21L793.39,323.31L790.51,322.51L788.93,322.15L787.46,324.69L788.35,326.19L788.81,327.47L786.84,328.77L784.83,330.82L781.56,332.15L777.35,332.3L772.82,333.61L769.56,335.62L768.32,334.46L764.93,334.46L760.78,332.17L758.01,331.6L754.28,332.13L748.49,331.28L745.4,331.37L743.76,329.1L742.48,325.53L740.75,325.1L737.36,322.65L733.58,322.1L730.25,321.42L729.24,319.69L730.32,314.96L728.39,311.65L724.39,310.08L722.03,307.85z"
545
+ },
546
+ {
547
+ "id":"MR",
548
+ "title":"Mauritania",
549
+ "d":"M441.13,422.22L439.28,420.24L437.58,418.11L435.72,417.34L434.38,416.49L432.81,416.52L431.45,417.15L430.05,416.9L429.09,417.83L428.85,416.27L429.63,414.83L429.98,412.08L429.67,409.17L429.33,407.7L429.61,406.23L428.89,404.81L427.41,403.53L428.02,402.53L439,402.55L438.47,398.2L439.16,396.65L441.78,396.38L441.69,388.52L450.9,388.69L450.9,383.96L461.45,391.49L457.16,391.54L458.51,404.6L459.86,417.28L460.35,417.64L459.73,419.67L448.48,419.71L448.05,420.35L446.97,420.16L445.39,420.73L443.43,419.93L442.54,420L442.07,421.7z"
550
+ },
551
+ {
552
+ "id":"MW",
553
+ "title":"Malawi",
554
+ "d":"M572.15,495.69L571.37,497.85L572.15,501.57L573.13,501.53L574.14,502.45L575.31,504.53L575.55,508.25L574.34,508.86L573.48,510.87L571.65,509.08L571.45,507.04L572.04,505.69L571.87,504.54L570.77,503.81L569.99,504.07L568.38,502.69L566.91,501.95L567.76,499.29L568.64,498.3L568.1,495.94L568.66,493.64L569.14,492.87L568.43,490.47L567.11,489.21L569.85,489.73L570.42,490.51L571.37,491.83z"
555
+ },
556
+ {
557
+ "id":"MX",
558
+ "title":"Mexico",
559
+ "d":"M202.89,388.72L201.8,391.43L201.31,393.64L201.1,397.72L200.83,399.19L201.32,400.83L202.19,402.3L202.75,404.61L204.61,406.82L205.26,408.51L206.36,409.96L209.34,410.75L210.5,411.97L212.96,411.15L215.09,410.86L217.19,410.33L218.96,409.82L220.74,408.62L221.41,406.89L221.64,404.4L222.13,403.53L224.02,402.74L226.99,402.05L229.47,402.15L231.17,401.9L231.84,402.53L231.75,403.97L230.24,405.74L229.58,407.55L230.09,408.06L229.67,409.34L228.97,411.63L228.26,410.88L227.67,410.93L227.14,410.97L226.14,412.74L225.63,412.39L225.29,412.53L225.31,412.96L222.72,412.93L220.1,412.93L220.1,414.58L218.83,414.58L219.87,415.56L220.91,416.23L221.22,416.86L221.68,417.04L221.6,418.02L218.01,418.03L216.66,420.39L217.05,420.93L216.73,421.61L216.66,422.45L213.49,419.34L212.04,418.4L209.75,417.64L208.19,417.85L205.93,418.94L204.52,419.23L202.54,418.47L200.44,417.91L197.82,416.58L195.72,416.17L192.54,414.82L190.2,413.42L189.49,412.64L187.92,412.47L185.05,411.54L183.88,410.2L180.87,408.53L179.47,406.66L178.8,405.21L179.73,404.92L179.44,404.07L180.09,403.3L180.1,402.26L179.16,400.92L178.9,399.72L177.96,398.2L175.49,395.18L172.67,392.79L171.31,390.88L168.9,389.62L168.39,388.86L168.82,386.94L167.39,386.21L165.73,384.69L165.03,382.5L163.52,382.24L161.9,380.58L160.58,379.03L160.46,378.03L158.95,375.61L157.96,373.13L158,371.88L155.97,370.59L155.04,370.73L153.44,369.83L152.99,371.16L153.45,372.72L153.72,375.15L154.69,376.48L156.77,378.69L157.23,379.44L157.66,379.66L158.02,380.76L158.52,380.71L159.09,382.75L159.94,383.55L160.53,384.66L162.3,386.26L163.23,389.15L164.06,390.5L164.84,391.94L164.99,393.56L166.34,393.66L167.47,395.05L168.49,396.41L168.42,396.95L167.24,398.06L166.74,398.05L166,396.2L164.17,394.47L162.15,392.99L160.71,392.21L160.8,389.96L160.38,388.28L159.04,387.32L157.11,385.93L156.74,386.33L156.04,385.51L154.31,384.76L152.66,382.93L152.86,382.69L154.01,382.87L155.05,381.69L155.16,380.26L153,377.99L151.36,377.1L150.32,375.09L149.28,372.97L147.98,370.36L146.84,367.4L150.03,367.15L153.59,366.79L153.33,367.43L157.56,369.04L163.96,371.35L169.54,371.32L171.76,371.32L171.76,369.97L176.62,369.97L177.64,371.14L179.08,372.17L180.74,373.6L181.67,375.29L182.37,377.05L183.82,378.02L186.15,378.98L187.91,376.45L190.21,376.39L192.18,377.67L193.59,379.85L194.56,381.71L196.21,383.51L196.83,385.7L197.62,387.17L199.8,388.13L201.79,388.81z"
560
+ },
561
+ {
562
+ "id":"MY",
563
+ "title":"Malaysia",
564
+ "d":"M758.65,446.07l0.22,1.44l1.85,-0.33l0.92,-1.15l0.64,0.26l1.66,1.69l1.18,1.87l0.16,1.88l-0.3,1.27l0.27,0.96l0.21,1.65l0.99,0.77l1.1,2.46l-0.05,0.94l-1.99,0.19l-2.65,-2.06l-3.32,-2.21l-0.33,-1.42l-1.62,-1.87l-0.39,-2.31l-1.01,-1.52l0.31,-2.04l-0.62,-1.19l0.49,-0.5L758.65,446.07zM807.84,450.9l-2.06,0.95l-2.43,-0.47h-3.22l-0.97,3.17l-1.08,0.97l-1.44,3.88l-2.29,0.59l-2.65,-0.78l-1.34,0.24l-1.63,1.41l-1.79,-0.2l-1.81,0.57l-1.92,-1.57l-0.47,-1.86l2.05,0.96l2.17,-0.52l0.56,-2.36l1.2,-0.53l3.36,-0.6l2.01,-2.21l1.38,-1.77l1.28,1.45l0.59,-0.95l1.34,0.09l0.16,-1.78l0.13,-1.38l2.16,-1.95l1.41,-2.19l1.13,-0.01l1.44,1.42l0.13,1.22l1.85,0.78l2.34,0.84l-0.2,1.1l-1.88,0.14L807.84,450.9z"
565
+ },
566
+ {
567
+ "id":"MZ",
568
+ "title":"Mozambique",
569
+ "d":"M572.15,495.69L574.26,495.46L577.63,496.26L578.37,495.9L580.32,495.83L581.32,494.98L583,495.02L586.06,493.92L588.29,492.28L588.75,493.55L588.63,496.38L588.98,498.88L589.09,503.36L589.58,504.76L588.75,506.83L587.66,508.84L585.87,510.64L583.31,511.75L580.15,513.16L576.98,516.31L575.9,516.85L573.94,518.94L572.79,519.63L572.55,521.75L573.88,524L574.43,525.76L574.47,526.66L574.96,526.51L574.88,529.47L574.43,530.88L575.09,531.4L574.67,532.67L573.5,533.76L571.19,534.8L567.82,536.46L566.59,537.61L566.83,538.91L567.54,539.12L567.3,540.76L565.18,540.74L564.94,539.36L564.52,537.97L564.28,536.86L564.78,533.43L564.05,531.26L562.71,527L565.66,523.59L566.4,521.44L566.83,521.17L567.14,519.43L566.69,518.55L566.81,516.35L567.36,514.31L567.35,510.62L565.9,509.68L564.56,509.47L563.96,508.75L562.66,508.14L560.32,508.2L560.14,507.12L559.87,505.07L568.38,502.69L569.99,504.07L570.77,503.81L571.87,504.54L572.04,505.69L571.45,507.04L571.65,509.08L573.48,510.87L574.34,508.86L575.55,508.25L575.31,504.53L574.14,502.45L573.13,501.53L572.15,501.57L571.37,497.85z"
570
+ },
571
+ {
572
+ "id":"NA",
573
+ "title":"Namibia",
574
+ "d":"M521.08,546.54L519,544.15L517.9,541.85L517.28,538.82L516.59,536.57L515.65,531.85L515.59,528.22L515.23,526.58L514.14,525.34L512.69,522.87L511.22,519.3L510.61,517.45L508.32,514.58L508.15,512.33L509.5,511.78L511.18,511.28L513,511.37L514.67,512.69L515.09,512.48L526.46,512.36L528.4,513.76L535.19,514.17L540.34,512.98L542.64,512.31L544.46,512.48L545.56,513.14L545.59,513.38L544.01,514.04L543.15,514.05L541.37,515.2L540.29,513.99L535.97,515.02L533.88,515.11L533.8,525.68L531.04,525.79L531.04,534.65L531.03,546.17L528.53,547.8L527.03,548.03L525.26,547.43L524,547.2L523.53,545.84L522.42,544.97z"
575
+ },
576
+ {
577
+ "id":"NC",
578
+ "title":"New Caledonia",
579
+ "d":"M940.08,523.48L942.38,525.34L943.83,526.72L942.77,527.45L941.22,526.63L939.22,525.28L937.41,523.69L935.56,521.59L935.17,520.58L936.37,520.63L937.95,521.64L939.18,522.65z"
580
+ },
581
+ {
582
+ "id":"NE",
583
+ "title":"Niger",
584
+ "d":"M481.29,429.88L481.36,427.93L478.12,427.28L478.04,425.9L476.46,424.03L476.08,422.72L476.3,421.32L478.1,421.21L479.14,420.18L482.96,419.93L485.45,419.48L485.69,417.69L487.23,415.75L487.22,409L491.17,407.68L499.29,401.83L508.9,396.08L513.33,397.39L514.91,399.05L516.89,397.93L517.58,402.6L518.63,403.38L518.68,404.33L519.84,405.35L519.23,406.63L518.15,412.61L518.01,416.4L514.43,419.14L513.22,422.94L514.39,424L514.38,425.85L516.18,425.92L515.9,427.26L515.11,427.43L515.02,428.33L514.49,428.4L512.6,425.27L511.94,425.15L509.75,426.75L507.58,425.92L506.07,425.75L505.26,426.15L503.61,426.07L501.96,427.29L500.53,427.36L497.14,425.88L495.81,426.58L494.38,426.53L493.33,425.45L490.51,424.38L487.5,424.72L486.77,425.34L486.38,426.99L485.57,428.14L485.38,430.68L483.24,429.04L482.23,429.05z"
585
+ },
586
+ {
587
+ "id":"NG",
588
+ "title":"Nigeria",
589
+ "d":"M499.09,450.08L496.18,451.08L495.11,450.94L494.03,451.56L491.79,451.5L490.29,449.75L489.37,447.73L487.38,445.89L485.27,445.92L482.8,445.92L482.96,441.39L482.89,439.6L483.42,437.83L484.28,436.96L485.64,435.21L485.35,434.45L485.9,433.31L485.27,431.63L485.38,430.68L485.57,428.14L486.38,426.99L486.77,425.34L487.5,424.72L490.51,424.38L493.33,425.45L494.38,426.53L495.81,426.58L497.14,425.88L500.53,427.36L501.96,427.29L503.61,426.07L505.26,426.15L506.07,425.75L507.58,425.92L509.75,426.75L511.94,425.15L512.6,425.27L514.49,428.4L515.02,428.33L516.13,429.47L515.82,429.98L515.67,430.93L513.31,433.13L512.57,434.94L512.17,436.41L511.58,437.04L511.01,439.01L509.51,440.17L509.08,441.59L508.45,442.73L508.19,443.89L506.26,444.84L504.69,443.69L503.62,443.73L501.95,445.37L501.14,445.4L499.81,448.1z"
590
+ },
591
+ {
592
+ "id":"NI",
593
+ "title":"Nicaragua",
594
+ "d":"M234.93,432.31L233.96,431.41L232.65,430.26L232.03,429.3L230.85,428.41L229.44,427.12L229.75,426.68L230.22,427.11L230.43,426.9L231.3,426.79L231.65,426.13L232.06,426.11L232,424.7L232.66,424.63L233.25,424.65L233.85,423.89L234.68,424.47L234.97,424.11L235.48,423.77L236.46,422.98L236.51,422.38L236.78,422.41L237.14,421.72L237.43,421.64L237.91,422.08L238.47,422.21L239.09,421.84L239.8,421.84L240.77,421.46L241.16,421.07L242.12,421.13L241.88,421.41L241.74,422.05L242.02,423.1L241.38,424.08L241.08,425.23L240.98,426.5L241.14,427.23L241.21,428.52L240.78,428.8L240.52,430.02L240.71,430.77L240.13,431.5L240.27,432.26L240.69,432.73L240.02,433.33L239.2,433.14L238.73,432.56L237.84,432.32L237.2,432.69L235.35,431.94z"
595
+ },
596
+ {
597
+ "id":"NL",
598
+ "title":"Netherlands",
599
+ "d":"M492.28,285.98L494.61,286.11L495.14,287.69L494.44,291.92L493.73,293.63L492.04,293.63L492.52,298.32L490.97,297.28L489.2,295.33L486.6,296.26L484.55,295.91L485.99,294.67L488.45,287.93z"
600
+ },
601
+ {
602
+ "id":"NO",
603
+ "title":"Norway",
604
+ "d":"M554.23,175.61l8.77,6.24l-3.61,2.23l3.07,5.11l-4.77,3.19l-2.26,0.72l1.19,-5.59l-3.6,-3.25l-4.35,2.78l-1.38,5.85l-2.67,3.44l-3.01,-1.87l-3.66,0.38l-3.12,-4.15l-1.68,2.09l-1.74,0.32l-0.41,5.08l-5.28,-1.22l-0.74,4.22l-2.69,-0.03l-1.85,5.24l-2.8,7.87l-4.35,9.5l1.02,2.23l-0.98,2.55l-2.78,-0.11l-1.82,5.91l0.17,8.04l1.79,2.98l-0.93,6.73l-2.33,3.81l-1.24,3.15l-1.88,-3.35l-5.54,6.27l-3.74,1.24l-3.88,-2.71l-1,-5.86l-0.89,-13.26l2.58,-3.88l7.4,-5.18l5.54,-6.59l5.13,-9.3l6.74,-13.76l4.7,-5.67l7.71,-9.89l6.15,-3.59l4.61,0.44l4.27,-6.99l5.11,0.38L554.23,175.61z"
605
+ },
606
+ {
607
+ "id":"NP",
608
+ "title":"Nepal",
609
+ "d":"M722.33,382.45L722.11,383.8L722.48,385.79L722.16,387.03L719.83,387.08L716.45,386.35L714.29,386.06L712.67,384.47L708.83,384.06L705.17,382.29L702.53,380.74L699.81,379.54L700.9,376.55L702.68,375.09L703.84,374.31L706.09,375.31L708.92,377.4L710.49,377.86L711.43,379.39L713.61,380.02L715.89,381.41L719.06,382.14z"
610
+ },
611
+ {
612
+ "id":"NZ",
613
+ "title":"New Zealand",
614
+ "d":"M960.38,588.63l0.64,1.53l1.99,-1.5l0.81,1.57v1.57l-1.04,1.74l-1.83,2.8l-1.43,1.54l1.03,1.86l-2.16,0.05l-2.4,1.46l-0.75,2.57l-1.59,4.03l-2.2,1.8l-1.4,1.16l-2.58,-0.09l-1.82,-1.34l-3.05,-0.28l-0.47,-1.48l1.51,-2.96l3.53,-3.87l1.81,-0.73l2.01,-1.47l2.4,-2.01l1.68,-1.98l1.25,-2.81l1.06,-0.95l0.42,-2.07l1.97,-1.7L960.38,588.63zM964.84,571.61l2.03,3.67l0.06,-2.38l1.27,0.95l0.42,2.65l2.26,1.15l1.89,0.28l1.6,-1.35l1.42,0.41l-0.68,3.15l-0.85,2.09l-2.14,-0.07l-0.75,1.1l0.26,1.56l-0.41,0.68l-1.06,1.97l-1.39,2.53l-2.17,1.49l-0.48,-0.98l-1.17,-0.54l1.62,-3.04l-0.92,-2.01l-3.02,-1.45l0.08,-1.31l2.03,-1.25l0.47,-2.74l-0.13,-2.28l-1.14,-2.34l0.08,-0.61l-1.34,-1.43l-2.21,-3.04l-1.17,-2.41l1.04,-0.27l1.53,1.89l2.18,0.89L964.84,571.61z"
615
+ },
616
+ {
617
+ "id":"OM",
618
+ "title":"Oman",
619
+ "d":"M640.29,403.18l-1.05,2.04l-1.27,-0.16l-0.58,0.71l-0.45,1.5l0.34,1.98l-0.26,0.36l-1.29,-0.01l-1.75,1.1l-0.27,1.43l-0.64,0.62l-1.74,-0.02l-1.1,0.74l0.01,1.18l-1.36,0.81l-1.55,-0.27l-1.88,0.98l-1.3,0.16l-0.92,-2.04l-2.19,-4.84l8.41,-2.96l1.87,-5.97l-1.29,-2.14l0.07,-1.22l0.82,-1.26l0.01,-1.25l1.27,-0.6l-0.5,-0.42l0.23,-2l1.43,-0.01l1.26,2.09l1.57,1.11l2.06,0.4l1.66,0.55l1.27,1.74l0.76,1l1,0.38l-0.01,0.67l-1.02,1.79l-0.45,0.84L640.29,403.18zM633.37,388.64L633,389.2l-0.53,-1.06l0.82,-1.06l0.35,0.27L633.37,388.64z"
620
+ },
621
+ {
622
+ "id":"PA",
623
+ "title":"Panama",
624
+ "d":"M256.88,443.21L255.95,442.4L255.35,440.88L256.04,440.13L255.33,439.94L254.81,439.01L253.41,438.23L252.18,438.41L251.62,439.39L250.48,440.09L249.87,440.19L249.6,440.78L250.93,442.3L250.17,442.66L249.76,443.08L248.46,443.22L247.97,441.54L247.61,442.02L246.68,441.86L246.12,440.72L244.97,440.54L244.24,440.21L243.04,440.21L242.95,440.82L242.63,440.4L242.78,439.84L243.01,439.27L242.9,438.76L243.32,438.42L242.74,438L242.72,436.87L243.81,436.62L244.81,437.63L244.75,438.23L245.87,438.35L246.14,438.12L246.91,438.82L248.29,438.61L249.48,437.9L251.18,437.33L252.14,436.49L253.69,436.65L253.58,436.93L255.15,437.03L256.4,437.52L257.31,438.36L258.37,439.14L258.03,439.56L258.68,441.21L258.15,442.05L257.24,441.85z"
625
+ },
626
+ {
627
+ "id":"PE",
628
+ "title":"Peru",
629
+ "d":"M280.13,513.14L279.38,514.65L277.94,515.39L275.13,513.71L274.88,512.51L269.33,509.59L264.3,506.42L262.13,504.64L260.97,502.27L261.43,501.44L259.06,497.69L256.29,492.45L253.65,486.83L252.5,485.54L251.62,483.48L249.44,481.64L247.44,480.51L248.35,479.26L246.99,476.59L247.86,474.64L250.1,472.87L250.43,474.04L249.63,474.7L249.7,475.72L250.86,475.5L252,475.8L253.17,477.21L254.76,476.06L255.29,474.18L257.01,471.75L260.38,470.65L263.44,467.73L264.31,465.92L263.92,463.81L264.67,463.54L266.53,464.86L267.42,466.18L268.72,466.9L270.37,469.82L272.46,470.17L274.01,469.43L275.02,469.91L276.7,469.67L278.85,470.98L277.04,473.82L277.88,473.88L279.28,475.37L276.75,475.24L276.38,475.66L274.08,476.19L270.88,478.1L270.67,479.4L269.96,480.38L270.24,481.89L268.54,482.7L268.54,483.89L267.8,484.4L268.97,486.93L270.53,488.65L269.94,489.86L271.8,490.02L272.86,491.53L275.33,491.6L277.63,489.94L277.44,494.24L278.72,494.57L280.3,494.08L282.73,498.66L282.12,499.62L281.99,501.64L281.93,504.08L280.83,505.52L281.34,506.59L280.69,507.56L281.9,510z"
630
+ },
631
+ {
632
+ "id":"PG",
633
+ "title":"Papua New Guinea",
634
+ "d":"M912.32,482.42l-0.79,0.28l-1.21,-1.08l-1.23,-1.78l-0.6,-2.13l0.39,-0.27l0.3,0.83l0.85,0.63l1.36,1.77l1.32,0.95L912.32,482.42zM901.39,478.67l-1.47,0.23l-0.44,0.79l-1.53,0.68l-1.44,0.66h-1.49l-2.3,-0.81l-1.6,-0.78l0.23,-0.87l2.51,0.41l1.53,-0.22l0.42,-1.34l0.4,-0.07l0.27,1.49l1.6,-0.21l0.79,-0.96l1.57,-1l-0.31,-1.65l1.68,-0.05l0.57,0.46l-0.06,1.55L901.39,478.67zM887.96,484.02l2.5,1.84l1.82,2.99l1.61,-0.09l-0.11,1.25l2.17,0.48l-0.84,0.53l2.98,1.19l-0.31,0.82l-1.86,0.2l-0.69,-0.73l-2.41,-0.32l-2.83,-0.43l-2.18,-1.8l-1.59,-1.55l-1.46,-2.46l-3.66,-1.23l-2.38,0.8l-1.71,0.93l0.36,2.08l-2.2,0.97l-1.57,-0.47l-2.9,-0.12l-0.05,-9.16l-0.05,-9.1l4.87,1.92l5.18,1.6l1.93,1.43l1.56,1.41l0.43,1.65l4.67,1.73l0.68,1.49l-2.58,0.3L887.96,484.02zM904.63,475.93l-0.88,0.74l-0.53,-1.65l-0.65,-1.08l-1.27,-0.91l-1.6,-1.19l-2.02,-0.82l0.78,-0.67l1.51,0.78l0.95,0.61l1.18,0.67l1.12,1.17l1.07,0.89L904.63,475.93z"
635
+ },
636
+ {
637
+ "id":"PH",
638
+ "title":"Philippines",
639
+ "d":"M829.59,439.86l0.29,1.87l0.17,1.58l-0.96,2.57l-1.02,-2.86l-1.31,1.42l0.9,2.06l-0.8,1.31l-3.3,-1.63l-0.79,-2.03l0.86,-1.33l-1.78,-1.33l-0.88,1.17l-1.32,-0.11l-2.08,1.57l-0.46,-0.82l1.1,-2.37l1.77,-0.79l1.53,-1.06l0.99,1.27l2.13,-0.77l0.46,-1.26l1.98,-0.08l-0.17,-2.18l2.27,1.34l0.24,1.42L829.59,439.86zM822.88,434.6l-1.01,0.93l-0.88,1.79l-0.88,0.84l-1.73,-1.95l0.58,-0.76l0.7,-0.79l0.31,-1.76l1.55,-0.17l-0.45,1.91l2.08,-2.74L822.88,434.6zM807.52,437.32l-3.73,2.67l1.38,-1.97l2.03,-1.74l1.68,-1.96l1.47,-2.82l0.5,2.31l-1.85,1.56L807.52,437.32zM817,430.02l1.68,0.88h1.78l-0.05,1.19l-1.3,1.2l-1.78,0.85l-0.1,-1.32l0.2,-1.45L817,430.02zM827.14,429.25l0.79,3.18l-2.16,-0.75l0.06,0.95l0.69,1.75l-1.33,0.63l-0.12,-1.99l-0.84,-0.15l-0.44,-1.72l1.65,0.23l-0.04,-1.08l-1.71,-2.18l2.69,0.06L827.14,429.25zM816,426.66l-0.74,2.47l-1.2,-1.42l-1.43,-2.18l2.4,0.1L816,426.66zM815.42,410.92l1.73,0.84l0.86,-0.76l0.25,0.75l-0.46,1.22l0.96,2.09l-0.74,2.42l-1.65,0.96l-0.44,2.33l0.63,2.29l1.49,0.32l1.24,-0.34l3.5,1.59l-0.27,1.56l0.92,0.69l-0.29,1.32l-2.18,-1.4l-1.04,-1.5l-0.72,1.05l-1.79,-1.72l-2.55,0.42l-1.4,-0.63l0.14,-1.19l0.88,-0.73l-0.84,-0.67l-0.36,1.04l-1.38,-1.65l-0.42,-1.26l-0.1,-2.77l1.13,0.96l0.29,-4.55l0.91,-2.66L815.42,410.92z"
640
+ },
641
+ {
642
+ "id":"PK",
643
+ "title":"Pakistan",
644
+ "d":"M681.52,365.64L680.94,360.84L682.81,359.16L679.77,356.55L678.81,356.56L678.45,355.41L681.53,353.07L681.65,352.96L679.71,353.2L676.7,353.93L675.06,355.44L675.72,356.9L676.05,358.6L674.65,360.03L674.77,361.33L674,362.55L671.33,362.44L672.43,364.66L670.65,365.51L669.46,367.51L669.61,369.49L668.51,370.41L667.48,370.11L665.33,370.54L665.03,371.45L662.94,371.45L661.38,373.29L661.28,376.04L657.63,377.37L655.68,377.09L655.11,377.79L653.44,377.39L650.63,377.87L645.94,376.23L647.32,377.91L648.45,379.84L651.13,381.24L651.21,384.01L652.55,384.52L652.78,385.96L648.74,387.57L647.68,391.17L651.63,390.73L656.19,390.68L661.35,390.1L663.52,392.44L664.36,394.64L666.41,395.41L668.28,393.37L674.45,393.38L673.89,390.74L672.32,389.18L672,386.79L670.16,385.39L673.25,382.09L676.51,382.33L679.44,379.01L681.2,375.75L683.92,372.51L683.88,370.18L686.27,368.27L684,366.64L683.99,366.6L683.9,366.63z"
645
+ },
646
+ {
647
+ "id":"PL",
648
+ "title":"Poland",
649
+ "d":"M517.36,296.97L516.21,294.11L516.43,292.55L515.73,290.1L514.72,288.45L515.5,287.2L514.84,284.81L516.76,283.42L521.13,281.2L524.67,279.56L527.46,280.38L527.67,281.56L530.38,281.62L533.83,282.17L538.99,282.09L540.43,282.61L541.1,284.07L541.22,286.16L542,287.94L541.98,289.79L540.3,290.73L541.17,292.85L541.22,294.86L542.63,298.75L542.33,299.99L540.94,300.5L538.39,304.11L539.11,306.03L538.5,305.78L535.84,304.14L533.82,304.74L532.5,304.3L530.84,305.22L529.43,303.7L528.27,304.28L528.11,304.02L526.82,301.89L524.74,301.63L524.47,300.26L522.55,299.77L522.13,300.9L520.61,300L520.78,298.79L518.69,298.4z"
650
+ },
651
+ {
652
+ "id":"PR",
653
+ "title":"Puerto Rico",
654
+ "d":"M289.41,410.89L290.84,411.15L291.35,411.73L290.63,412.47L288.52,412.45L286.88,412.55L286.72,411.3L287.11,410.87z"
655
+ },
656
+ {
657
+ "id":"PS",
658
+ "title":"Palestinian Territories",
659
+ "d":"M574.92,367.87L574.92,369.88L574.5,370.84L573.18,371.29L573.31,370.43L574.02,369.97L573.32,369.61L573.9,367.41z"
660
+ },
661
+ {
662
+ "id":"PT",
663
+ "title":"Portugal",
664
+ "d":"M449.92,334.56L450.94,333.61L452.08,333.06L452.79,334.9L454.44,334.89L454.92,334.42L456.56,334.55L457.34,336.43L456.04,337.43L456.01,340.31L455.55,340.84L455.44,342.56L454.23,342.86L455.35,345.03L454.58,347.38L455.54,348.44L455.16,349.4L454.12,350.72L454.35,351.88L453.23,352.79L451.75,352.3L450.3,352.68L450.73,349.94L450.47,347.76L449.21,347.43L448.54,346.08L448.77,343.72L449.88,342.41L450.08,340.94L450.67,338.73L450.6,337.16L450.04,335.82z"
665
+ },
666
+ {
667
+ "id":"PY",
668
+ "title":"Paraguay",
669
+ "d":"M299.49,526.99L300.6,523.4L300.67,521.8L302.01,519.18L306.9,518.32L309.5,518.37L312.12,519.88L312.16,520.79L312.99,522.45L312.81,526.51L315.77,527.09L316.91,526.5L318.8,527.32L319.33,528.22L319.59,530.99L319.92,532.17L320.96,532.3L322.01,531.81L323.02,532.36L323.02,534.04L322.64,535.86L322.09,537.64L321.63,540.39L319.09,542.79L316.87,543.29L313.72,542.81L310.9,541.96L313.66,537.23L313.25,535.86L310.37,534.66L306.94,532.4L304.65,531.94z"
670
+ },
671
+ {
672
+ "id":"QA",
673
+ "title":"Qatar",
674
+ "d":"M617.72,392.16L617.53,389.92L618.29,388.3L619.05,387.96L619.9,388.93L619.95,390.74L619.34,392.55L618.56,392.77z"
675
+ },
676
+ {
677
+ "id":"RO",
678
+ "title":"Romania",
679
+ "d":"M538.93,310.86L540.14,309.97L541.88,310.43L543.67,310.45L544.97,311.46L545.93,310.82L548,310.42L548.71,309.44L549.89,309.45L550.74,309.85L551.61,311.09L552.5,312.84L554.12,315.28L554.21,317.07L553.91,318.79L554.42,320.62L555.67,321.35L556.98,320.71L558.26,321.39L558.32,322.42L556.96,323.26L556.11,322.9L555.33,327.61L553.68,327.2L551.64,325.79L548.34,326.69L546.95,327.68L542.83,327.48L540.67,326.87L539.59,327.16L538.78,325.56L538.27,324.88L538.92,324.22L538.22,323.73L537.34,324.61L535.71,323.47L535.49,321.84L533.78,320.9L533.47,319.63L531.95,318.05L534.2,317.29L535.89,314.53L537.22,311.73z"
680
+ },
681
+ {
682
+ "id":"RS",
683
+ "title":"Serbia",
684
+ "d":"M533.78,320.9L535.49,321.84L535.71,323.47L537.34,324.61L538.22,323.73L538.92,324.22L538.27,324.88L538.78,325.56L538.09,326.44L538.34,327.86L539.7,329.52L538.63,330.71L538.16,331.92L538.47,332.37L538,332.91L536.71,332.97L535.75,333.19L535.66,332.91L535.99,332.46L536.31,331.53L535.91,331.55L535.36,330.85L534.9,330.67L534.54,330.06L534.01,329.82L533.61,329.28L533.11,329.5L532.72,330.76L532.05,331.04L532.28,330.71L531.21,329.92L530.29,329.51L529.88,328.97L529.14,328.31L529.8,328.14L530.21,326.32L528.86,324.82L529.56,323.1L528.54,323.11L529.62,321.62L528.73,320.48L528.05,318.93L530.2,317.88L531.95,318.05L533.47,319.63z"
685
+ },
686
+ {
687
+ "id":"RU",
688
+ "title":"Russian Federation",
689
+ "d":"M1008.27,215.75l-2.78,2.97l-4.6,0.7l-0.07,6.46l-1.12,1.35l-2.63,-0.19l-2.14,-2.26l-3.73,-1.92l-0.63,-2.89l-2.85,-1.1l-3.19,0.87l-1.52,-2.37l0.61,-2.55l-3.36,1.64l1.26,3.19l-1.59,2.83l-0.02,0.04l-3.6,2.89l-3.63,-0.48l2.53,3.44l1.67,5.2l1.29,1.67l0.33,2.53l-0.72,1.6l-5.23,-1.32l-7.84,4.51l-2.49,0.69l-4.29,4.1l-4.07,3.5l-1.03,2.55l-4.01,-3.9l-7.31,4.42l-1.28,-2.08l-2.7,2.39l-3.75,-0.76l-0.9,3.63l-3.36,5.22l0.1,2.14l3.19,1.17l-0.38,7.46l-2.6,0.19l-1.2,4.15l1.17,2.1l-4.9,2.47l-0.97,5.4l-4.18,1.14l-0.84,4.66l-4.04,4.18l-1.04,-3.08l-1.2,-6.69l-1.56,-10.65l1.35,-6.95l2.37,-3.07l0.15,-2.44l4.36,-1.18l5.01,-6.78l4.83,-5.73l5.04,-4.57l2.25,-8.37l-3.41,0.51l-1.68,4.92l-7.11,6.36l-2.3,-7.14l-7.24,2l-7.02,9.56l2.32,3.38l-6.26,1.42l-4.33,0.56l0.2,-3.95l-4.36,-0.84l-3.47,2.7l-8.57,-0.94l-9.22,1.62l-9.08,10.33l-10.75,11.78l4.42,0.61l1.38,3l2.72,1.05l1.79,-2.38l3.08,0.31l4.05,5.19l0.09,3.92l-2.19,4.51l-0.24,5.27l-1.26,6.85l-4.23,6.01l-0.94,2.82l-3.81,4.66l-3.78,4.53l-1.81,2.28l-3.74,2.25l-1.77,0.05l-1.76,-1.86l-3.76,2.79l-0.44,1.26l-0.39,-0.66l-0.02,-1.93l1.43,-0.1l0.4,-4.55l-0.74,-3.36l2.41,-1.4l3.4,0.7l1.89,-3.89l0.96,-4.46l1.09,-1.51l1.47,-3.76l-4.63,1.24l-2.43,1.65h-4.26l-1.13,-3.95l-3.32,-3.03l-4.88,-1.38l-1.04,-4.28l-0.98,-2.73l-1.05,-1.94l-1.73,-4.61l-2.46,-1.71l-4.2,-1.39l-3.72,0.13l-3.48,0.84l-2.32,2.31l1.54,1.1l0.04,2.52l-1.56,1.45l-2.53,4.72l0.03,1.93l-3.95,2.74l-3.37,-1.63l-3.35,0.36l-1.47,-1.46l-1.68,-0.47l-4.11,3.06l-3.69,0.71l-2.58,1.06l-3.53,-0.7l-2.6,0.04l-1.7,-2.2l-2.75,-2.09l-2.81,-0.58l-3.55,0.57l-2.65,0.81l-3.98,-1.84l-0.53,-3.32l-3.3,-1.15l-2.54,-0.53l-3.14,-1.87l-2.9,4.66l1.14,2.6l-2.73,3.03l-4.05,-1.09l-2.8,-0.16l-1.87,-2.04l-2.92,-0.06l-2.44,-1.35l-4.26,2.07l-5.35,3.74l-2.96,0.74l-1.1,0.35l-1.49,-2.63l-3.61,0.58l-1.19,-1.84l-1.96,-0.85l-1.35,-2.55l-1.55,-0.8l-4.03,1.14l-3.86,-2.57l-1.49,2.33l-6.27,-11.58l-3.58,-3.66l1.03,-1.5l-7.03,4.49l-2.69,0.27l0.23,-2.58l-3.6,-1.63l-2.93,1.17l-0.88,-5.01l-5.04,-1.06l-2.52,2.03l-7.02,1.79l-1.37,1.19l-10.49,1.66l-1.29,1.62l2.02,3.21l-2.69,1.2l0.53,1.25l-2.69,2.22l4.54,3.1l-0.7,2.11l-3.94,-0.19l-0.81,1.31l-3.59,-2.29l-4.45,0.09l-2.98,1.87l-3.32,-1.79l-6.18,-3.1l-4.38,0.12l-5.79,4.85l-0.35,3.19l-2.88,-2.53l-2.24,4.77l0.82,0.87l-1.62,3.21l2.38,2.84l2.08,-0.12l1.79,2.76l-0.28,2.1l1.42,0.66l-1.28,2.39l-2.72,0.66l-2.79,4.09l2.55,3.7l-0.28,2.59l3.06,4.46l-1.67,1.51l-0.48,0.95l-1.24,-0.25l-1.93,-2.27l-0.79,-0.13l-1.76,-0.87l-0.86,-1.55l-2.62,-0.79l-1.7,0.6l-0.49,-0.71l-3.82,-1.83l-4.13,-0.62l-2.37,-0.66l-0.34,0.45l-3.57,-3.27l-3.2,-1.48l-2.42,-2.32l2.04,-0.64l2.33,-3.35l-1.57,-1.6l4.13,-1.67l-0.07,-0.9l-2.52,0.66l0.09,-1.83l1.45,-1.16l2.71,-0.31l0.44,-1.4l-0.62,-2.33l1.14,-2.23l-0.03,-1.26l-4.13,-1.41l-1.64,0.05l-1.73,-2.04l-2.15,0.69l-3.56,-1.54l0.06,-0.87l-1,-1.93l-2.24,-0.22l-0.23,-1.39l0.7,-0.91l-1.79,-2.58l-2.91,0.44l-0.85,-0.23l-0.71,1.04l-1.05,-0.18l-0.69,-2.94l-0.66,-1.54l0.54,-0.44l2.26,0.16l1.09,-1.02l-0.81,-1.25l-1.89,-0.83l0.17,-0.86l-1.14,-0.87l-1.76,-3.15l0.6,-1.31l-0.27,-2.31l-2.74,-1.18l-1.47,0.59l-0.4,-1.24l-2.95,-1.26l-0.9,-2.99l-0.24,-2.49l-1.35,-1.19l1.2,-1.66l-0.83,-4.96l2,-3.13l-0.42,-0.96l3.19,-3.07l-2.94,-2.68l6,-7.41l2.6,-3.45l1.05,-3.1l-4.15,-4.26l1.15,-4.15l-2.52,-4.85l1.89,-5.76l-3.26,-7.96l2.59,-5.48l-4.29,-4.99l0.41,-5.4l2.26,-0.72l4.77,-3.19l2.89,-2.81l4.61,4.86l7.68,1.88l10.59,8.65l2.15,3.51l0.19,4.8l-3.11,3.69l-4.58,1.85l-12.52,-5.31l-2.06,0.9l4.57,5.1l0.18,3.15l0.18,6.75l3.61,1.97l2.19,1.66l0.36,-3.11l-1.69,-2.8l1.78,-2.51l6.78,4.1l2.36,-1.59l-1.89,-4.88l6.53,-6.74l2.59,0.4l2.62,2.43l1.63,-4.81l-2.34,-4.28l1.37,-4.41l-2.06,-4.69l7.84,2.44l1.6,4.18l-3.55,0.91l0.02,4.04l2.21,2.44l4.33,-1.54l0.69,-4.61l5.86,-3.52l9.79,-6.54l2.11,0.38l-2.76,4.64l3.48,0.78l2.01,-2.58l5.25,-0.21l4.16,-3.19l3.2,4.62l3.19,-5.09l-2.94,-4.58l1.46,-2.66l8.28,2.44l3.88,2.49l10.16,8.8l1.88,-3.97l-2.85,-4.11l-0.08,-1.68l-3.38,-0.78l0.92,-3.83l-1.5,-6.49l-0.08,-2.74l5.17,-7.99l1.84,-8.42l2.08,-1.88l7.42,2.51l0.58,5.18l-2.66,7.28l1.74,2.78l0.9,5.94l-0.64,11.07l3.09,4.73l-1.2,5.01l-5.49,10.2l3.21,1.02l1.12,-2.51l3.08,-1.82l0.74,-3.55l2.43,-3.49l-1.63,-4.26l1.31,-5.08l-3.07,-0.64l-0.67,-4.42l2.24,-8.28l-3.64,-7.03l5.02,-6.04l-0.65,-6.62l1.4,-0.22l1.47,5.19l-1.11,8.67l3,1.59l-1.28,-6.37l4.69,-3.58l5.82,-0.49l5.18,5.18l-2.49,-7.62l-0.28,-10.28l4.88,-2.02l6.74,0.44l6.08,-1.32l-2.28,-5.38l3.25,-7.02l3.22,-0.3l5.45,-5.51l7.4,-1.51l0.94,-3.15l7.36,-1.08l2.29,2.61l6.29,-6.24l5.15,0.2l0.77,-5.24l2.68,-5.33l6.62,-5.31l4.81,4.21l-3.82,3.13l6.35,1.92l0.76,6.03l2.56,-2.94l8.2,0.16l6.32,5.84l2.25,4.35l-0.7,5.85l-3.1,3.24l-7.37,5.92l-2.11,3.08l3.48,1.43l4.15,2.55l2.52,-1.91l1.43,6.39l1.23,-2.56l4.48,-1.57l9,1.65l0.68,4.58l11.72,1.43l0.16,-7.47l5.95,1.74l4.48,-0.05l4.53,5.14l1.29,6.04l-1.66,3.84l3.52,6.98l4.41,3.49l2.71,-9.18l4.5,4l4.78,-2.38l5.43,2.72l2.07,-2.47l4.59,1.24l-2.02,-8.4l3.7,-4.07l25.32,6.06l2.39,5.35l7.34,6.65l11.32,-1.62l5.58,1.41l2.33,3.5l-0.34,6.02l3.45,2.29l3.75,-1.64l4.97,-0.21l5.29,1.57l5.31,-0.89l4.88,6.99l3.47,-2.48l-2.27,-5.07l1.25,-3.62l8.95,2.29l5.83,-0.49l8.06,3.84l3.92,3.44l6.87,5.86l7.35,7.34l-0.24,4.44l1.89,1.74l-0.65,-5.15l7.61,1.07L1008.27,215.75zM880.84,306.25l-2.82,-7.68l-1.16,-4.51l0.07,-4.5l-0.97,-4.5l-0.73,-3.15l-1.25,0.67l1.11,2.21l-2.59,2.17l-0.25,6.3l1.64,4.41l-0.12,5.85l-0.65,3.24l0.32,4.54l-0.31,4.01l0.52,3.4l1.84,-3.13l2.13,2.44l0.08,-2.84l-2.73,-4.23l1.72,-6.11L880.84,306.25zM537.82,278.77l-2.94,-0.86l-3.87,1.58l-0.64,2.13l3.45,0.55l5.16,-0.07l-0.22,-1.23l0.3,-1.33L537.82,278.77zM979.95,178.65l3.66,-0.52l2.89,-2.06l0.24,-1.19l-4.06,-2.51l-2.38,-0.02l-0.36,0.37l-3.57,3.64l0.5,2.73L979.95,178.65zM870.07,151.56l-2.66,3.92l0.49,0.52l5.75,1.08l4.25,-0.07l-0.34,-2.57l-3.98,-3.81L870.07,151.56zM894.64,142.03l3.24,-4.25l-7.04,-2.88l-5.23,-1.68l-0.67,3.59l5.21,4.27L894.64,142.03zM869.51,140.34l10.33,0.3l2.21,-8.14l-10.13,-6.07l-7.4,-0.51l-3.7,2.18l-1.51,7.75l5.55,7.01L869.51,140.34zM622.39,166.28l-2.87,1.96l0.41,4.83l5.08,2.35l0.74,3.82l9.16,1.1l1.66,-0.74l-5.36,-7.11l-0.57,-7.52l4.39,-9.14l4.18,-9.82l8.71,-10.17l8.56,-5.34l9.93,-5.74l1.88,-3.71l-1.95,-4.83l-5.46,1.6l-4.8,4.49l-9.33,2.22l-9.26,7.41l-6.27,5.85l0.76,4.87l-6.71,9.03l2.58,1.22l-5.56,8.27L622.39,166.28zM769.87,98.34l0.83,-5.72l-7.11,-8.34l-2.11,-0.98l-2.3,1.7l-5.12,18.6L769.87,98.34zM605.64,69.03l3.04,3.88l3.28,-2.69l0.39,-2.72l2.52,-1.27l3.76,-2.23l1.08,-2.62l-4.16,-3.85l-2.64,2.9l-1.61,4.12l-0.57,-4.65l-4.26,0.21L601,63.25l6.24,0.52L605.64,69.03zM736.89,82.07l4.65,5.73l7.81,4.2l6.12,-1.8l0.69,-13.62l-6.46,-16.04l-5.45,-9.02l-6.07,4.11l-7.28,11.83l3.83,3.27L736.89,82.07z"
690
+ },
691
+ {
692
+ "id":"RW",
693
+ "title":"Rwanda",
694
+ "d":"M560.54,466.55L561.66,468.12L561.49,469.76L560.69,470.11L559.2,469.93L558.34,471.52L556.63,471.3L556.89,469.77L557.28,469.56L557.38,467.9L558.19,467.12L558.87,467.41z"
695
+ },
696
+ {
697
+ "id":"SA",
698
+ "title":"Saudi Arabia",
699
+ "d":"M595.2,417.22L594.84,415.98L593.99,415.1L593.77,413.93L592.33,412.89L590.83,410.43L590.04,408.02L588.1,405.98L586.85,405.5L584.99,402.65L584.67,400.57L584.79,398.78L583.18,395.42L581.87,394.23L580.35,393.6L579.43,391.84L579.58,391.15L578.8,389.55L577.98,388.86L576.89,386.54L575.18,384.02L573.75,381.86L572.36,381.87L572.79,380.13L572.92,379.02L573.26,377.74L576.38,378.25L577.6,377.27L578.27,376.11L580.41,375.67L580.87,374.58L581.8,374.04L579,370.78L584.62,369.13L585.15,368.64L588.53,369.53L592.71,371.82L600.61,378.31L605.82,378.57L608.32,378.88L609.02,380.39L611,380.31L612.1,383.04L613.48,383.75L613.96,384.86L615.87,386.17L616.04,387.46L615.76,388.49L616.12,389.53L616.92,390.4L617.3,391.41L617.72,392.16L618.56,392.77L619.34,392.55L619.87,393.72L619.98,394.43L621.06,397.51L629.48,399.03L630.05,398.39L631.33,400.53L629.46,406.5L621.05,409.46L612.97,410.59L610.35,411.91L608.34,414.98L607.03,415.46L606.33,414.49L605.26,414.64L602.55,414.35L602.03,414.05L598.8,414.12L598.04,414.39L596.89,413.63L596.14,415.06L596.43,416.29z"
700
+ },
701
+ {
702
+ "id":"SB",
703
+ "title":"Solomon Islands",
704
+ "d":"M929.81,492.75l0.78,0.97l-1.96,-0.02l-1.07,-1.74l1.67,0.69L929.81,492.75zM926.26,491.02l-1.09,0.06l-1.72,-0.29l-0.59,-0.44l0.18,-1.12l1.85,0.44l0.91,0.59L926.26,491.02zM928.58,490.25l-0.42,0.52l-2.08,-2.45l-0.58,-1.68h0.95l1.01,2.25L928.58,490.25zM923.52,486.69l0.12,0.57l-2.2,-1.19l-1.54,-1.01l-1.05,-0.94l0.42,-0.29l1.29,0.67l2.3,1.29L923.52,486.69zM916.97,483.91l-0.56,0.16l-1.23,-0.64l-1.15,-1.15l0.14,-0.47l1.67,1.18L916.97,483.91z"
705
+ },
706
+ {
707
+ "id":"SD",
708
+ "title":"Sudan",
709
+ "d":"M570.48,436.9L570.09,436.85L570.14,435.44L569.8,434.47L568.36,433.35L568.02,431.3L568.36,429.2L567.06,429.01L566.87,429.64L565.18,429.79L565.86,430.62L566.1,432.33L564.56,433.89L563.16,435.93L561.72,436.22L559.36,434.57L558.3,435.15L558.01,435.98L556.57,436.51L556.47,437.09L553.68,437.09L553.29,436.51L551.27,436.41L550.26,436.9L549.49,436.65L548.05,435L547.57,434.23L545.54,434.62L544.77,435.93L544.05,438.45L543.09,438.98L542.23,439.29L542,439.15L541.03,438.34L540.85,437.47L541.3,436.29L541.3,435.14L539.68,433.37L539.36,432.15L539.39,431.46L538.36,430.63L538.33,428.97L537.75,427.87L536.76,428.04L537.04,426.99L537.77,425.79L537.45,424.61L538.37,423.73L537.79,423.06L538.53,421.28L539.81,419.15L542.23,419.35L542.09,407.74L542.13,406.5L545.35,406.49L545.35,400.53L556.62,400.53L567.5,400.53L578.62,400.53L579.52,403.47L578.91,404.01L579.32,407.07L580.35,410.59L581.41,411.32L582.95,412.4L581.53,414.07L579.46,414.55L578.58,415.45L578.31,417.38L577.1,421.63L577.4,422.78L576.95,425.25L575.81,428.06L574.12,429.48L572.92,431.65L572.63,432.81L571.31,433.61L570.48,436.57z"
710
+ },
711
+ {
712
+ "id":"SE",
713
+ "title":"Sweden",
714
+ "d":"M537.45,217.49L534.73,222.18L535.17,226.2L530.71,231.33L525.3,236.67L523.25,245.08L525.25,249.15L527.93,252.29L525.36,258.52L522.44,259.78L521.37,268.62L519.78,273.38L516.38,272.89L514.79,276.84L511.54,277.07L510.65,272.36L508.3,266.55L506.17,259.05L507.41,255.9L509.74,252.09L510.67,245.36L508.88,242.38L508.7,234.34L510.53,228.43L513.31,228.54L514.28,225.99L513.26,223.76L517.61,214.26L520.42,206.39L522.27,201.15L524.96,201.17L525.71,196.96L530.99,198.18L531.4,193.1L533.14,192.77L536.88,196.58L541.25,201.73L541.33,212.85L542.27,215.55z"
715
+ },
716
+ {
717
+ "id":"SI",
718
+ "title":"Slovenia",
719
+ "d":"M513.96,316.51L516.28,316.82L517.7,315.9L520.15,315.8L520.68,315.11L521.15,315.16L521.7,316.53L519.47,317.61L519.19,319.23L518.22,319.64L518.23,320.76L517.13,320.68L516.18,320.03L515.66,320.71L513.71,320.57L514.33,320.21L513.66,318.5z"
720
+ },
721
+ {
722
+ "id":"SJ",
723
+ "title":"Svalbard and Jan Mayen",
724
+ "d":"M544.58,104.49l-6.26,5.36l-4.95,-3.02l1.94,-3.42l-1.69,-4.34l5.81,-2.78l1.11,5.18L544.58,104.49zM526.43,77.81l9.23,11.29l-7.06,5.66l-1.56,10.09l-2.46,2.49l-1.33,10.51l-3.38,0.48l-6.03,-7.64l2.54,-4.62l-4.2,-3.86l-5.46,-11.82l-2.18,-11.79l7.64,-5.69l1.54,5.56l3.99,-0.22l1.06,-5.43l4.12,-0.56L526.43,77.81zM546.6,66.35l5.5,5.8l-4.16,8.52l-8.13,1.81l-8.27,-2.56l-0.5,-4.32l-4.02,-0.28l-3.07,-7.48l8.66,-4.72l4.07,4.08l2.84,-5.09L546.6,66.35z"
725
+ },
726
+ {
727
+ "id":"SK",
728
+ "title":"Slovakia",
729
+ "d":"M528.11,304.02L528.27,304.28L529.43,303.7L530.84,305.22L532.5,304.3L533.82,304.74L535.84,304.14L538.5,305.78L537.73,306.89L537.18,308.6L536.58,309.03L533.58,307.75L532.66,308L532,309L530.68,309.52L530.38,309.25L529.02,309.9L527.9,310.03L527.68,310.87L525.32,311.38L524.29,310.92L522.86,309.85L522.58,308.4L522.81,307.86L523.2,306.93L524.45,307L525.4,306.56L525.48,306.17L526.02,305.96L526.2,304.99L526.84,304.8L527.28,304.03z"
730
+ },
731
+ {
732
+ "id":"SL",
733
+ "title":"Sierra Leone",
734
+ "d":"M443.18,444.44L442.42,444.23L440.41,443.1L438.95,441.6L438.46,440.57L438.11,438.49L439.61,437.25L439.93,436.46L440.41,435.85L441.19,435.79L441.84,435.26L444.08,435.26L444.86,436.27L445.47,437.46L445.38,438.28L445.83,439.02L445.8,440.05L446.57,439.89L445.26,441.2L444,442.73L443.85,443.54z"
735
+ },
736
+ {
737
+ "id":"SN",
738
+ "title":"Senegal",
739
+ "d":"M428.39,425.16L427.23,422.92L425.83,421.9L427.07,421.35L428.43,419.32L429.09,417.83L430.05,416.9L431.45,417.15L432.81,416.52L434.38,416.49L435.72,417.34L437.58,418.11L439.28,420.24L441.13,422.22L441.26,424.01L441.81,425.65L442.86,426.46L443.1,427.56L442.97,428.45L442.56,428.61L441.04,428.39L440.83,428.7L440.21,428.77L438.19,428.07L436.84,428.04L431.66,427.92L430.91,428.24L429.98,428.15L428.49,428.62L428.03,426.43L430.58,426.49L431.26,426.09L431.76,426.06L432.8,425.4L434,426.01L435.22,426.06L436.43,425.41L435.87,424.59L434.94,425.07L434.07,425.06L432.97,424.35L432.08,424.4L431.44,425.07z"
740
+ },
741
+ {
742
+ "id":"SO",
743
+ "title":"Somalia",
744
+ "d":"M618.63,430.43L618.56,429.64L617.5,429.65L616.17,430.63L614.68,430.91L613.39,431.33L612.5,431.39L610.9,431.49L609.9,432.01L608.51,432.2L606.04,433.08L602.99,433.41L600.34,434.14L598.95,434.13L597.69,432.94L597.14,431.77L596.23,431.24L595.19,432.76L594.58,433.77L595.62,435.33L596.65,436.69L597.72,437.7L606.89,441.04L609.25,441.02L601.32,449.44L597.67,449.56L595.17,451.53L593.38,451.58L592.61,452.46L590.16,455.63L590.19,465.78L591.85,468.07L592.48,467.41L593.13,465.95L596.2,462.57L598.81,460.45L603.01,457.69L605.81,455.43L609.11,451.62L611.5,448.49L613.91,444.39L615.64,440.8L616.99,437.65L617.78,434.6L618.38,433.58L618.37,432.08z"
745
+ },
746
+ {
747
+ "id":"SR",
748
+ "title":"Suriname",
749
+ "d":"M315.02,446.72L318.38,447.28L318.68,446.77L320.95,446.57L323.96,447.33L322.5,449.73L322.72,451.64L323.83,453.3L323.34,454.5L323.09,455.77L322.37,456.94L320.77,456.35L319.44,456.64L318.31,456.39L318.03,457.2L318.5,457.75L318.25,458.32L316.72,458.09L315.01,455.67L314.64,454.1L313.75,454.09L312.5,452.07L313.02,450.62L312.87,449.97L314.57,449.24z"
750
+ },
751
+ {
752
+ "id":"SS",
753
+ "title":"South Sudan",
754
+ "d":"M570.48,436.9L570.51,439.1L570.09,439.96L568.61,440.03L567.65,441.64L569.37,441.84L570.79,443.21L571.29,444.33L572.57,444.98L574.22,448.03L572.32,449.87L570.6,451.54L568.87,452.82L566.9,452.82L564.64,453.47L562.86,452.84L561.71,453.61L559.24,451.75L558.57,450.56L557.01,451.15L555.71,450.96L554.96,451.43L553.7,451.1L552.01,448.79L551.56,447.9L549.46,446.79L548.75,445.11L547.58,443.9L545.7,442.44L545.67,441.52L544.14,440.39L542.23,439.29L543.09,438.98L544.05,438.45L544.77,435.93L545.54,434.62L547.57,434.23L548.05,435L549.49,436.65L550.26,436.9L551.27,436.41L553.29,436.51L553.68,437.09L556.47,437.09L556.57,436.51L558.01,435.98L558.3,435.15L559.36,434.57L561.72,436.22L563.16,435.93L564.56,433.89L566.1,432.33L565.86,430.62L565.18,429.79L566.87,429.64L567.06,429.01L568.36,429.2L568.02,431.3L568.36,433.35L569.8,434.47L570.14,435.44L570.09,436.85z"
755
+ },
756
+ {
757
+ "id":"SV",
758
+ "title":"El Salvador",
759
+ "d":"M229.09,425.76L228.78,426.43L227.16,426.39L226.15,426.12L224.99,425.55L223.43,425.37L222.64,424.75L222.73,424.33L223.69,423.61L224.21,423.29L224.06,422.95L224.72,422.78L225.55,423.02L226.15,423.59L227,424.05L227.1,424.44L228.33,424.1L228.91,424.3L229.29,424.61z"
760
+ },
761
+ {
762
+ "id":"SY",
763
+ "title":"Syrian Arab Republic",
764
+ "d":"M584.02,364.6L578.53,368.14L575.41,366.82L575.35,366.8L575.73,366.3L575.69,364.93L576.38,363.1L577.91,361.83L577.45,360.51L576.19,360.33L575.93,357.72L576.61,356.31L577.36,355.56L578.11,354.8L578.27,352.86L579.18,353.54L582.27,352.57L583.76,353.22L586.07,353.21L589.29,351.9L590.81,351.96L594,351.42L592.56,353.6L591.02,354.46L591.29,356.98L590.23,361.1z"
765
+ },
766
+ {
767
+ "id":"SZ",
768
+ "title":"Swaziland",
769
+ "d":"M565.18,540.74L564.61,542.13L562.97,542.46L561.29,540.77L561.27,539.69L562.03,538.52L562.3,537.62L563.11,537.4L564.52,537.97L564.94,539.36z"
770
+ },
771
+ {
772
+ "id":"TD",
773
+ "title":"Chad",
774
+ "d":"M515.9,427.26L516.18,425.92L514.38,425.85L514.39,424L513.22,422.94L514.43,419.14L518.01,416.4L518.15,412.61L519.23,406.63L519.84,405.35L518.68,404.33L518.63,403.38L517.58,402.6L516.89,397.93L519.72,396.27L530.91,402.04L542.09,407.74L542.23,419.35L539.81,419.15L538.53,421.28L537.79,423.06L538.37,423.73L537.45,424.61L537.77,425.79L537.04,426.99L536.76,428.04L537.75,427.87L538.33,428.97L538.36,430.63L539.39,431.46L539.36,432.15L537.59,432.64L536.16,433.78L534.14,436.87L531.5,438.18L528.79,438L528,438.26L528.28,439.25L526.81,440.24L525.62,441.34L522.09,442.41L521.39,441.78L520.93,441.72L520.41,442.44L518.09,442.66L518.53,441.89L517.65,439.96L517.25,438.79L516.03,438.31L514.38,436.66L514.99,435.33L516.27,435.61L517.06,435.41L518.62,435.44L517.1,432.87L517.2,430.98L517.01,429.09z"
775
+ },
776
+ {
777
+ "id":"TF",
778
+ "title":"French Southern and Antarctic Lands",
779
+ "d":"M668.54,619.03L670.34,620.36L672.99,620.9L673.09,621.71L672.31,623.67L668,623.95L667.93,621.66L668.35,619.9z"
780
+ },
781
+ {
782
+ "id":"TG",
783
+ "title":"Togo",
784
+ "d":"M480.48,446.25L478.23,446.84L477.6,445.86L476.85,444.08L476.63,442.68L477.25,440.15L476.55,439.12L476.28,436.9L476.28,434.85L475.11,433.39L475.32,432.5L477.78,432.56L477.42,434.06L478.27,434.89L479.25,435.88L479.35,437.27L479.92,437.85L479.79,444.31z"
785
+ },
786
+ {
787
+ "id":"TH",
788
+ "title":"Thailand",
789
+ "d":"M762.89,429.18L760.37,427.87L757.97,427.93L758.38,425.68L755.91,425.7L755.69,428.84L754.18,432.99L753.27,435.49L753.46,437.54L755.28,437.63L756.42,440.2L756.93,442.63L758.49,444.24L760.19,444.57L761.64,446.02L760.73,447.17L758.87,447.51L758.65,446.07L756.37,444.84L755.88,445.34L754.77,444.27L754.29,442.88L752.8,441.29L751.44,439.96L750.98,441.61L750.45,440.05L750.76,438.29L751.58,435.58L752.94,432.67L754.48,430.02L753.38,427.42L753.43,426.09L753.11,424.49L751.24,422.21L750.57,420.76L751.54,420.23L752.56,417.71L751.42,415.79L749.64,413.66L748.28,411.09L749.46,410.56L750.74,407.37L752.72,407.23L754.36,405.95L755.96,405.26L757.18,406.18L757.34,407.96L759.23,408.09L758.54,411.2L758.61,413.82L761.56,412.08L762.4,412.59L764.05,412.51L764.61,411.49L766.73,411.69L768.86,414.07L769.04,416.94L771.31,419.47L771.18,421.91L770.27,423.21L767.64,422.8L764.02,423.35L762.22,425.73z"
790
+ },
791
+ {
792
+ "id":"TJ",
793
+ "title":"Tajikistan",
794
+ "d":"M674.37,340.62L673.34,341.75L670.29,341.14L670.02,343.24L673.06,342.96L676.53,344.13L681.83,343.58L682.54,346.91L683.46,346.55L685.16,347.36L685.07,348.74L685.49,350.75L682.59,350.75L680.66,350.49L678.92,352.06L677.67,352.4L676.69,353.14L675.58,351.99L675.85,349.04L675,348.87L675.3,347.78L673.79,346.98L672.58,348.21L672.28,349.64L671.85,350.16L670.17,350.09L669.27,351.69L668.32,351.02L666.29,352.14L665.44,351.72L667.01,348.15L666.41,345.49L664.35,344.63L665.08,343.04L667.42,343.21L668.75,341.2L669.64,338.85L673.39,337.99L672.81,339.7L673.21,340.72z"
795
+ },
796
+ {
797
+ "id":"TL",
798
+ "title":"Timor-Leste",
799
+ "d":"M825.65,488.25L825.98,487.59L828.39,486.96L830.35,486.86L831.22,486.51L832.28,486.86L831.25,487.62L828.33,488.85L825.98,489.67L825.93,488.81z"
800
+ },
801
+ {
802
+ "id":"TM",
803
+ "title":"Turkmenistan",
804
+ "d":"M646.88,356.9L646.63,353.99L644.54,353.87L641.34,350.78L639.1,350.39L636,348.6L634,348.27L632.77,348.93L630.9,348.83L628.91,350.85L626.44,351.53L625.92,349.04L626.33,345.31L624.14,344.09L624.86,341.61L623,341.39L623.62,338.3L626.26,339.21L628.73,338.02L626.68,335.79L625.88,333.65L623.62,334.61L623.34,337.34L622.46,334.93L623.7,333.68L626.88,332.89L628.78,333.95L630.74,336.88L632.18,336.7L635.34,336.65L634.88,334.77L637.28,333.47L639.64,331.27L643.42,333.27L643.72,336.26L644.79,337.03L647.82,336.86L648.76,337.53L650.14,341.32L653.35,343.83L655.18,345.52L658.11,347.27L661.84,348.79L661.76,350.95L660.92,350.84L659.59,349.9L659.15,351.15L656.79,351.83L656.23,354.62L654.65,355.67L652.44,356.19L651.85,357.74L649.74,358.2z"
805
+ },
806
+ {
807
+ "id":"TN",
808
+ "title":"Tunisia",
809
+ "d":"M501.84,374.69L500.64,368.83L498.92,367.5L498.89,366.69L496.6,364.71L496.35,362.18L498.08,360.3L498.74,357.48L498.29,354.2L498.86,352.41L501.92,351L503.88,351.42L503.8,353.19L506.18,351.9L506.38,352.57L504.97,354.28L504.96,355.88L505.93,356.73L505.56,359.69L503.71,361.4L504.24,363.23L505.69,363.29L506.4,364.88L507.47,365.4L507.31,367.95L505.94,368.9L505.08,369.95L503.15,371.21L503.45,372.56L503.21,373.94z"
810
+ },
811
+ {
812
+ "id":"TR",
813
+ "title":"Turkey",
814
+ "d":"M578.75,336.6l4.02,1.43l3.27,-0.57l2.41,0.33l3.31,-1.94l2.99,-0.18l2.7,1.83l0.48,1.3l-0.27,1.79l2.08,0.91l1.1,1.06l-1.92,1.03l0.88,4.11l-0.55,1.1l1.53,2.82l-1.34,0.59l-0.98,-0.89l-3.26,-0.45l-1.2,0.55l-3.19,0.54l-1.51,-0.06l-3.23,1.31l-2.31,0.01l-1.49,-0.66l-3.09,0.97l-0.92,-0.68l-0.15,1.94l-0.75,0.76l-0.75,0.76l-1.03,-1.57l1.06,-1.3l-1.71,0.3l-2.35,-0.8l-1.93,2l-4.26,0.39l-2.27,-1.86l-3.02,-0.12l-0.65,1.44l-1.94,0.41l-2.71,-1.85l-3.06,0.06l-1.66,-3.48l-2.05,-1.96l1.36,-2.78l-1.78,-1.72l3.11,-3.48l4.32,-0.15l1.18,-2.81l5.34,0.49l3.37,-2.42l3.27,-1.06l4.64,-0.08L578.75,336.6zM551.5,338.99l-2.34,1.98l-0.88,-1.71l0.04,-0.76l0.67,-0.41l0.87,-2.33l-1.37,-0.99l2.86,-1.18l2.41,0.5l0.33,1.44l2.45,1.2l-0.51,0.91l-3.33,0.2L551.5,338.99z"
815
+ },
816
+ {
817
+ "id":"TT",
818
+ "title":"Trinidad and Tobago",
819
+ "d":"M302.31,433.24L303.92,432.87L304.51,432.97L304.4,435.08L302.06,435.39L301.55,435.14L302.37,434.36z"
820
+ },
821
+ {
822
+ "id":"TW",
823
+ "title":"Taiwan",
824
+ "d":"M816.7,393.27L815.01,398.14L813.81,400.62L812.33,398.07L812.01,395.82L813.66,392.82L815.91,390.5L817.19,391.41z"
825
+ },
826
+ {
827
+ "id":"TZ",
828
+ "title":"Tanzania",
829
+ "d":"M570.31,466.03L570.79,466.34L580.95,472.01L581.15,473.63L585.17,476.42L583.88,479.87L584.04,481.46L585.84,482.48L585.92,483.21L585.15,484.91L585.31,485.76L585.13,487.11L586.11,488.87L587.27,491.66L588.29,492.28L586.06,493.92L583,495.02L581.32,494.98L580.32,495.83L578.37,495.9L577.63,496.26L574.26,495.46L572.15,495.69L571.37,491.83L570.42,490.51L569.85,489.73L567.11,489.21L565.51,488.36L563.73,487.89L562.61,487.41L561.44,486.7L559.93,483.15L558.3,481.58L557.74,479.96L558.02,478.5L557.52,475.93L558.68,475.8L559.69,474.79L560.79,473.33L561.48,472.75L561.45,471.84L560.85,471.21L560.69,470.11L561.49,469.76L561.66,468.12L560.54,466.55L561.53,466.21L564.6,466.25z"
830
+ },
831
+ {
832
+ "id":"UA",
833
+ "title":"Ukraine",
834
+ "d":"M564.38,292.49L565.42,292.68L566.13,291.64L566.98,291.87L569.89,291.43L571.68,294L570.98,294.92L571.21,296.31L573.45,296.52L574.45,298.45L574.39,299.32L577.95,300.86L580.1,300.17L581.83,302.21L583.47,302.16L587.6,303.57L587.63,304.84L586.5,307.07L587.11,309.4L586.67,310.79L583.96,311.1L582.51,312.26L582.43,314.09L580.19,314.42L578.32,315.74L575.7,315.95L573.28,317.47L573.45,319.97L574.82,320.93L577.68,320.69L577.13,322.11L574.06,322.79L570.25,325.06L568.7,324.27L569.31,322.42L566.25,321.26L566.75,320.49L569.43,319.16L568.62,318.24L564.26,317.22L564.07,315.71L561.47,316.21L560.43,318.44L558.26,321.39L556.98,320.71L555.67,321.35L554.42,320.62L555.12,320.18L555.61,318.81L556.38,317.52L556.18,316.8L556.77,316.47L557.04,317.04L558.7,317.15L559.44,316.86L558.92,316.44L559.11,315.84L558.13,314.8L557.73,313.08L556.71,312.41L556.91,311L555.64,309.88L554.49,309.72L552.42,308.41L550.56,308.83L549.89,309.45L548.71,309.44L548,310.42L545.93,310.82L544.97,311.46L543.67,310.45L541.88,310.43L540.14,309.97L538.93,310.86L538.73,309.74L537.18,308.6L537.73,306.89L538.5,305.78L539.11,306.03L538.39,304.11L540.94,300.5L542.33,299.99L542.63,298.75L541.22,294.86L542.56,294.69L544.1,293.46L546.27,293.36L549.1,293.72L552.23,294.8L554.44,294.89L555.49,295.54L556.54,294.76L557.28,295.81L559.81,295.59L560.92,296.02L561.11,293.76L561.97,292.76z"
835
+ },
836
+ {
837
+ "id":"UG",
838
+ "title":"Uganda",
839
+ "d":"M564.6,466.25L561.53,466.21L560.54,466.55L558.87,467.41L558.19,467.12L558.21,465.02L558.86,463.96L559.02,461.72L559.61,460.43L560.68,458.97L561.76,458.23L562.66,457.24L561.54,456.87L561.71,453.61L562.86,452.84L564.64,453.47L566.9,452.82L568.87,452.82L570.6,451.54L571.93,453.48L572.26,454.88L573.49,458.08L572.47,460.11L571.09,461.95L570.29,463.08L570.31,466.03z"
840
+ },
841
+ {
842
+ "id":"US",
843
+ "title":"United States",
844
+ "d":"M109.25,279.8L109.25,279.8l-1.54,-1.83l-2.47,-1.57l-0.79,-4.36l-3.61,-4.13l-1.51,-4.94l-2.69,-0.34l-4.46,-0.13l-3.29,-1.54l-5.8,-5.64l-2.68,-1.05l-4.9,-1.99l-3.88,0.48l-5.51,-2.59l-3.33,-2.43l-3.11,1.21l0.58,3.93l-1.55,0.36l-3.24,1.16L53,256.26l-3.11,1.16l-0.4,-3.24l1.26,-5.53l2.98,-1.77l-0.77,-1.46l-3.57,3.22l-1.91,3.77l-4.04,3.95l2.05,2.65l-2.65,3.85l-3.01,2.21l-2.81,1.59l-0.69,2.29l-4.38,2.63l-0.89,2.36l-3.28,2.13l-1.92,-0.38l-2.62,1.38l-2.85,1.67l-2.33,1.63l-4.81,1.38l-0.44,-0.81l3.07,-2.27l2.74,-1.51l2.99,-2.71l3.48,-0.56l1.38,-2.06l3.89,-3.05l0.63,-1.03l2.07,-1.83l0.48,-4l1.43,-3.17l-3.23,1.64l-0.9,-0.93l-1.52,1.95l-1.83,-2.73l-0.76,1.94l-1.05,-2.7l-2.8,2.17h-1.72l-0.24,-3.23l0.51,-2.02l-1.81,-1.98l-3.65,1.07l-2.37,-2.63l-1.92,-1.36l-0.01,-3.25l-2.16,-2.48l1.08,-3.41l2.29,-3.37l1,-3.15l2.27,-0.45l1.92,0.99l2.26,-3.01l2.04,0.54l2.14,-1.96l-0.52,-2.92l-1.57,-1.16l2.08,-2.52l-1.72,0.07l-2.98,1.43l-0.85,1.43l-2.21,-1.43l-3.97,0.73l-4.11,-1.56l-1.18,-2.65l-3.55,-3.91l3.94,-2.87l6.25,-3.41h2.31l-0.38,3.48l5.92,-0.27l-2.28,-4.34l-3.45,-2.72l-1.99,-3.64l-2.69,-3.17l-3.85,-2.38l1.57,-4.03l4.97,-0.25l3.54,-3.58l0.67,-3.92l2.86,-3.91l2.73,-0.95l5.31,-3.76l2.58,0.57l4.31,-4.61l4.24,1.83l2.03,3.87l1.25,-1.65l4.74,0.51l-0.17,1.95l4.29,1.43l2.86,-0.84l5.91,2.64l5.39,0.78l2.16,1.07l3.73,-1.34l4.25,2.46l3.05,1.13l-0.02,27.65l-0.01,35.43l2.76,0.17l2.73,1.56l1.96,2.44l2.49,3.6l2.73,-3.05l2.81,-1.79l1.49,2.85l1.89,2.23l2.57,2.42l1.75,3.79l2.87,5.88l4.77,3.2l0.08,3.12L109.25,279.8zM285.18,314.23l-1.25,-1.19l-1.88,0.7l-0.93,-1.08l-2.14,3.1l-0.86,3.15l-1,1.82l-1.19,0.62l-0.9,0.2l-0.28,0.98h-5.17l-4.26,0.03l-1.27,0.73l-2.87,2.73l0.29,0.54l0.17,1.51l-2.1,1.27l-2.3,-0.32l-2.2,-0.14l-1.33,0.44l0.25,1.15l0,0l0.05,0.37l-2.42,2.27l-2.11,1.09l-1.44,0.51l-1.66,1.03l-2.03,0.5l-1.4,-0.19l-1.73,-0.77l0.96,-1.45l0.62,-1.32l1.32,-2.09l-0.14,-1.57l-0.5,-2.24l-1.04,-0.39l-1.74,1.7l-0.56,-0.03l-0.14,-0.97l1.54,-1.56l0.26,-1.79l-0.23,-1.79l-2.08,-1.55l-2.38,-0.8l-0.39,1.52l-0.62,0.4l-0.5,1.95l-0.26,-1.33l-1.12,0.95l-0.7,1.32l-0.73,1.92l-0.14,1.64l0.93,2.38l-0.08,2.51l-1.14,1.84l-0.57,0.52l-0.76,0.41l-0.95,0.02l-0.26,-0.25l-0.76,-1.98l-0.02,-0.98l0.08,-0.94l-0.35,-1.87l0.53,-2.18l0.63,-2.71l1.46,-3.03l-0.42,0.01l-2.06,2.54l-0.38,-0.46l1.1,-1.42l1.67,-2.57l1.91,-0.36l2.19,-0.8l2.21,0.42l0.09,0.02l2.47,-0.36l-1.4,-1.61l-0.75,-0.13l-0.86,-0.16l-0.59,-1.14l-2.75,0.36l-2.49,0.9l-1.97,-1.55l-1.59,-0.52l0.9,-2.17l-2.48,1.37l-2.25,1.33l-2.16,1.04l-1.72,-1.4l-2.81,0.85l0.01,-0.6l1.9,-1.73l1.99,-1.65l2.86,-1.37l-3.45,-1.09l-2.27,0.55l-2.72,-1.3l-2.86,-0.67l-1.96,-0.26l-0.87,-0.72l-0.5,-2.35l-0.95,0.02l-0.01,1.64h-5.8h-9.59h-9.53h-8.42h-8.41h-8.27h-8.55h-2.76h-8.32h-7.96l0.95,3.47l0.45,3.41l-0.69,1.09l-1.49,-3.91l-4.05,-1.42l-0.34,0.82l0.82,1.94l0.89,3.53l0.51,5.42l-0.34,3.59l-0.34,3.54l-1.1,3.61l0.9,2.9l0.1,3.2l-0.61,3.05l1.49,1.99l0.39,2.95l2.17,2.99l1.24,1.17l-0.1,0.82l2.34,4.85l2.72,3.45l0.34,1.87l0.71,0.55l2.6,0.33l1,0.91l1.57,0.17l0.31,0.96l1.31,0.4l1.82,1.92l0.47,1.7l3.19,-0.25l3.56,-0.36l-0.26,0.65l4.23,1.6l6.4,2.31l5.58,-0.02h2.22l0.01,-1.35h4.86l1.02,1.16l1.43,1.03l1.67,1.43l0.93,1.69l0.7,1.77l1.45,0.97l2.33,0.96l1.77,-2.53l2.29,-0.06l1.98,1.28l1.41,2.18l0.97,1.86l1.65,1.8l0.62,2.19l0.79,1.47l2.19,0.96l1.99,0.68l1.09,-0.09l-0.53,-1.06l-0.14,-1.5l0.03,-2.16l0.65,-1.42l1.53,-1.51l2.79,-1.37l2.55,-2.37l2.36,-0.75l1.74,-0.23l2.04,0.74l2.45,-0.4l2.09,1.69l2.03,0.1l1.05,-0.61l1.04,0.47l0.53,-0.42l-0.6,-0.63l0.05,-1.3l-0.5,-0.86l1.16,-0.5l2.14,-0.22l2.49,0.36l3.17,-0.41l1.76,0.8l1.36,1.5l0.5,0.16l2.83,-1.46l1.09,0.49l2.19,2.68l0.79,1.75l-0.58,2.1l0.42,1.23l1.3,2.4l1.49,2.68l1.07,0.71l0.44,1.35l1.38,0.37l0.84,-0.39l0.7,-1.89l0.12,-1.21l0.09,-2.1l-1.33,-3.65l-0.02,-1.37l-1.25,-2.25l-0.94,-2.75l-0.5,-2.25l0.43,-2.31l1.32,-1.94l1.58,-1.57l3.08,-2.16l0.4,-1.12l1.42,-1.23l1.4,-0.22l1.84,-1.98l2.9,-1.01l1.78,-2.53l-0.39,-3.46l-0.29,-1.21l-0.8,-0.24l-0.12,-3.35l-1.93,-1.14l1.85,0.56l-0.6,-2.26l0.54,-1.55l0.33,2.97l1.43,1.36l-0.87,2.4l0.26,0.14l1.58,-2.81l0.9,-1.38l-0.04,-1.35l-0.7,-0.64l-0.58,-1.94l0.92,0.9l0.62,0.19l0.21,0.92l2.04,-2.78l0.61,-2.62l-0.83,-0.17l0.85,-1.02l-0.08,0.45l1.79,-0.01l3.93,-1.11l-0.83,-0.7l-4.12,0.7l2.34,-1.07l1.63,-0.18l1.22,-0.19l2.07,-0.65l1.35,0.07l1.89,-0.61l0.22,-1.07l-0.84,-0.84l0.29,1.37l-1.16,-0.09l-0.93,-1.99l0.03,-2.01l0.48,-0.86l1.48,-2.28l2.96,-1.15l2.88,-1.34l2.99,-1.9l-0.48,-1.29l-1.83,-2.25L285.18,314.23zM45.62,263.79l-1.5,0.8l-2.55,1.86l0.43,2.42l1.43,1.32l2.8,-1.95l2.43,-2.47l-1.19,-1.63L45.62,263.79zM0,235.22l2.04,-1.26l0.23,-0.68L0,232.61V235.22zM8.5,250.59l-2.77,0.97l1.7,1.52l1.84,1.04l1.72,-0.87l-0.27,-2.15L8.5,250.59zM105.85,283.09l-2.69,0.38l-1.32,-0.62l-0.17,1.52l0.52,2.07l1.42,1.46l1.04,2.13l1.69,2.1l1.12,0.01l-2.44,-3.7L105.85,283.09zM37.13,403.77l-1,-0.28l-0.27,0.26l0.02,0.19l0.32,0.24l0.48,0.63l0.94,-0.21l0.23,-0.36L37.13,403.77zM34.14,403.23l1.5,0.09l0.09,-0.32l-1.38,-0.13L34.14,403.23zM40.03,406.52l-0.5,-0.26l-1.07,-0.5l-0.21,-0.06l-0.16,0.28l0.19,0.58l-0.49,0.48l-0.14,0.33l0.46,1.08l-0.08,0.83l0.7,0.42l0.41,-0.49l0.9,-0.46l1.1,-0.63l0.07,-0.16l-0.71,-1.04L40.03,406.52zM32.17,401.38l-0.75,0.41l0.11,0.12l0.36,0.68l0.98,0.11l0.2,0.04l0.15,-0.17l-0.81,-0.99L32.17,401.38zM27.77,399.82l-0.43,0.3l-0.15,0.22l0.94,0.55l0.33,-0.3l-0.06,-0.7L27.77,399.82z"
845
+ },
846
+ {
847
+ "id":"UY",
848
+ "title":"Uruguay",
849
+ "d":"M313.68,551.79L315.5,551.45L318.31,553.95L319.35,553.86L322.24,555.94L324.44,557.76L326.06,560.01L324.82,561.58L325.6,563.48L324.39,565.6L321.22,567.48L319.15,566.8L317.63,567.17L315.04,565.71L313.14,565.82L311.43,563.95L311.65,561.79L312.26,561.05L312.23,557.75L312.98,554.38z"
850
+ },
851
+ {
852
+ "id":"UZ",
853
+ "title":"Uzbekistan",
854
+ "d":"M661.76,350.95L661.84,348.79L658.11,347.27L655.18,345.52L653.35,343.83L650.14,341.32L648.76,337.53L647.82,336.86L644.79,337.03L643.72,336.26L643.42,333.27L639.64,331.27L637.28,333.47L634.88,334.77L635.34,336.65L632.18,336.7L632.07,322.57L639.29,320.22L639.81,320.57L644.16,323.41L646.45,324.89L649.13,328.39L652.42,327.83L657.23,327.53L660.58,330.33L660.37,334.13L661.74,334.16L662.31,337.22L665.88,337.34L666.64,339.09L667.69,339.07L668.92,336.42L672.61,333.81L674.22,333.11L675.05,333.48L672.7,335.91L674.77,337.31L676.77,336.38L680.09,338.34L676.5,340.98L674.37,340.62L673.21,340.72L672.81,339.7L673.39,337.99L669.64,338.85L668.75,341.2L667.42,343.21L665.08,343.04L664.35,344.63L666.41,345.49L667.01,348.15L665.44,351.72L663.32,350.98z"
855
+ },
856
+ {
857
+ "id":"VE",
858
+ "title":"Venezuela",
859
+ "d":"M275.25,430.35L275.17,431.02L273.52,431.35L274.44,432.64L274.4,434.13L273.17,435.77L274.23,438.01L275.44,437.83L276.07,435.79L275.2,434.79L275.06,432.65L278.55,431.49L278.16,430.15L279.14,429.25L280.15,431.25L282.12,431.3L283.94,432.88L284.05,433.82L286.56,433.84L289.56,433.55L291.17,434.82L293.31,435.17L294.88,434.29L294.91,433.57L298.39,433.4L301.75,433.36L299.37,434.2L300.32,435.54L302.57,435.75L304.69,437.14L305.14,439.4L306.6,439.33L307.7,440L305.48,441.65L305.23,442.68L306.19,443.72L305.5,444.24L303.77,444.69L303.83,445.99L303.07,446.76L304.96,448.88L305.34,449.67L304.31,450.74L301.17,451.78L299.16,452.22L298.35,452.88L296.12,452.18L294.04,451.82L293.52,452.08L294.77,452.8L294.66,454.67L295.05,456.43L297.42,456.67L297.58,457.25L295.57,458.05L295.25,459.23L294.09,459.68L292.01,460.33L291.47,461.19L289.29,461.37L287.74,459.89L286.89,457.12L286.14,456.14L285.12,455.53L286.54,454.14L286.45,453.51L285.65,452.68L285.09,450.83L285.31,448.82L285.93,447.88L286.44,446.38L285.45,445.89L283.85,446.21L281.83,446.06L280.7,446.36L278.72,443.95L277.09,443.59L273.49,443.86L272.82,442.88L272.13,442.65L272.03,442.06L272.36,441.02L272.14,439.89L271.52,439.27L271.16,437.97L269.72,437.79L270.49,436.13L270.84,434.12L271.65,433.06L272.74,432.25L273.45,430.83z"
860
+ },
861
+ {
862
+ "id":"VN",
863
+ "title":"Viet Nam",
864
+ "d":"M778.21,401.87L774.47,404.43L772.13,407.24L771.51,409.29L773.66,412.38L776.28,416.2L778.82,417.99L780.53,420.32L781.81,425.64L781.43,430.66L779.1,432.53L775.88,434.36L773.6,436.72L770.1,439.34L769.08,437.53L769.87,435.62L767.79,434.01L770.22,432.87L773.16,432.67L771.93,430.94L776.64,428.75L776.99,425.33L776.34,423.41L776.85,420.53L776.14,418.49L774.02,416.47L772.25,413.9L769.92,410.44L766.56,408.68L767.37,407.61L769.16,406.84L768.07,404.25L764.62,404.22L763.36,401.5L761.72,399.13L763.23,398.39L765.46,398.41L768.19,398.06L770.58,396.44L771.93,397.58L774.5,398.13L774.05,399.87L775.39,401.09z"
865
+ },
866
+ {
867
+ "id":"VU",
868
+ "title":"Vanuatu",
869
+ "d":"M945.87,509.9l-0.92,0.38l-0.94,-1.27l0.1,-0.78L945.87,509.9zM943.8,505.46l0.46,2.33l-0.75,-0.36l-0.58,0.16l-0.4,-0.8l-0.06,-2.21L943.8,505.46z"
870
+ },
871
+ {
872
+ "id":"YE",
873
+ "title":"Yemen",
874
+ "d":"M624.16,416.33L622.13,417.12L621.59,418.4L621.52,419.39L618.73,420.61L614.25,421.96L611.74,423.99L610.51,424.14L609.67,423.97L608.03,425.17L606.24,425.72L603.89,425.87L603.18,426.03L602.57,426.78L601.83,426.99L601.4,427.72L600.01,427.66L599.11,428.04L597.17,427.9L596.44,426.23L596.52,424.66L596.07,423.81L595.52,421.69L594.71,420.5L595.27,420.36L594.98,419.04L595.32,418.48L595.2,417.22L596.43,416.29L596.14,415.06L596.89,413.63L598.04,414.39L598.8,414.12L602.03,414.05L602.55,414.35L605.26,414.64L606.33,414.49L607.03,415.46L608.34,414.98L610.35,411.91L612.97,410.59L621.05,409.46L623.25,414.3z"
875
+ },
876
+ {
877
+ "id":"ZA",
878
+ "title":"South Africa",
879
+ "d":"M563.63,548.71l-0.55,0.46l-1.19,1.63l-0.78,1.66l-1.59,2.33l-3.17,3.38l-1.98,1.98l-2.12,1.51l-2.93,1.3l-1.43,0.17l-0.36,0.93l-1.7,-0.5l-1.39,0.64l-3.04,-0.65l-1.7,0.41l-1.16,-0.18l-2.89,1.33l-2.39,0.54l-1.73,1.28l-1.28,0.08l-1.19,-1.21l-0.95,-0.06l-1.21,-1.51l-0.13,0.47l-0.37,-0.91l0.02,-1.96l-0.91,-2.23l0.9,-0.6l-0.07,-2.53l-1.84,-3.05l-1.41,-2.74v-0.01l-2.01,-4.15l1.34,-1.57l1.11,0.87l0.47,1.36l1.26,0.23l1.76,0.6l1.51,-0.23l2.5,-1.63v-11.52l0.76,0.46l1.66,2.93l-0.26,1.89l0.63,1.1l2.01,-0.32l1.4,-1.39l1.33,-0.93l0.69,-1.48l1.37,-0.72l1.18,0.38l1.34,0.87l2.28,0.15l1.79,-0.72l0.28,-0.96l0.49,-1.47l1.53,-0.25l0.84,-1.15l0.93,-2.03l2.52,-2.26l3.97,-2.22l1.14,0.03l1.36,0.51l0.94,-0.36l1.49,0.3l1.34,4.26l0.73,2.17l-0.5,3.43l0.24,1.11l-1.42,-0.57l-0.81,0.22l-0.26,0.9l-0.77,1.17l0.03,1.08l1.67,1.7l1.64,-0.34l0.57,-1.39l2.13,0.03l-0.7,2.28l-0.33,2.62l-0.73,1.43L563.63,548.71zM556.5,547.75l-1.22,-0.98l-1.31,0.65l-1.52,1.25l-1.5,2.03l2.1,2.48l1,-0.32l0.52,-1.03l1.56,-0.5l0.48,-1.05l0.86,-1.56L556.5,547.75z"
880
+ },
881
+ {
882
+ "id":"ZM",
883
+ "title":"Zambia",
884
+ "d":"M567.11,489.21L568.43,490.47L569.14,492.87L568.66,493.64L568.1,495.94L568.64,498.3L567.76,499.29L566.91,501.95L568.38,502.69L559.87,505.07L560.14,507.12L558.01,507.52L556.42,508.67L556.08,509.68L555.07,509.9L552.63,512.3L551.08,514.19L550.13,514.26L549.22,513.92L546.09,513.6L545.59,513.38L545.56,513.14L544.46,512.48L542.64,512.31L540.34,512.98L538.51,511.16L536.62,508.78L536.75,499.62L542.59,499.66L542.35,498.67L542.77,497.6L542.28,496.27L542.6,494.89L542.3,494.01L543.27,494.08L543.43,494.96L544.74,494.89L546.52,495.15L547.46,496.44L549.7,496.84L551.42,495.94L552.05,497.43L554.2,497.83L555.23,499.05L556.38,500.62L558.53,500.65L558.29,497.57L557.52,498.08L555.56,496.98L554.8,496.47L555.15,493.62L555.65,490.27L555.02,489.02L555.82,487.22L556.57,486.89L560.34,486.41L561.44,486.7L562.61,487.41L563.73,487.89L565.51,488.36z"
885
+ },
886
+ {
887
+ "id":"ZW",
888
+ "title":"Zimbabwe",
889
+ "d":"M562.71,527L561.22,526.7L560.27,527.06L558.92,526.55L557.78,526.52L555.99,525.16L553.82,524.7L553,522.8L552.99,521.75L551.79,521.43L548.62,518.18L547.73,516.47L547.17,515.95L546.09,513.6L549.22,513.92L550.13,514.26L551.08,514.19L552.63,512.3L555.07,509.9L556.08,509.68L556.42,508.67L558.01,507.52L560.14,507.12L560.32,508.2L562.66,508.14L563.96,508.75L564.56,509.47L565.9,509.68L567.35,510.62L567.36,514.31L566.81,516.35L566.69,518.55L567.14,519.43L566.83,521.17L566.4,521.44L565.66,523.59z"
890
+ }
891
+ ]
892
+ }
893
+ }
894
  };
admin/js/slimstat.admin.js CHANGED
@@ -219,6 +219,12 @@ var SlimStatAdmin = {
219
  SlimStatAdmin._refresh_timer[1] = SlimStatAdminParams.refresh_interval%60;
220
  refresh_handle = window.setTimeout("SlimStatAdmin.refresh_countdown();", 1000);
221
  }
 
 
 
 
 
 
222
  }
223
  }
224
 
@@ -239,7 +245,7 @@ jQuery(function(){
239
  jQuery('.box-refresh').click(
240
  function(){
241
  report_id = '#'+jQuery(this).parent().attr('id');
242
- data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()}
243
  jQuery(report_id+' .inside').html('<p class="loading"></p>');
244
  SlimStatAdmin.load_ajax_data(report_id, data);
245
 
@@ -251,6 +257,30 @@ jQuery(function(){
251
  }
252
  }
253
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
 
255
  jQuery('div[id^=slim_]').each(function(){
256
  report_id = '#'+jQuery(this).attr('id');
219
  SlimStatAdmin._refresh_timer[1] = SlimStatAdminParams.refresh_interval%60;
220
  refresh_handle = window.setTimeout("SlimStatAdmin.refresh_countdown();", 1000);
221
  }
222
+ },
223
+
224
+ hacker_ninja_show_result: function(id){
225
+ return function(response){
226
+ jQuery(id).removeClass('blink').html(response);
227
+ }
228
  }
229
  }
230
 
245
  jQuery('.box-refresh').click(
246
  function(){
247
  report_id = '#'+jQuery(this).parent().attr('id');
248
+ data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()};
249
  jQuery(report_id+' .inside').html('<p class="loading"></p>');
250
  SlimStatAdmin.load_ajax_data(report_id, data);
251
 
257
  }
258
  }
259
  );
260
+
261
+ jQuery(document).on('click', '.button-hacker-ninja', function(){
262
+ var data = {action: 'slimstat_load_report', report_id: '#slim_p1_16', security: jQuery('#meta-box-order-nonce').val(), 'run_scan': '00'};
263
+ jQuery('#slim_p1_16 .inside').html('<p class="loading"></p>');
264
+ jQuery.ajax({
265
+ url: ajaxurl,
266
+ type: 'post',
267
+ async: false,
268
+ data: data
269
+ }).done(function(response){
270
+ jQuery('#slim_p1_16 .inside').html(response);
271
+ });
272
+
273
+ jQuery('#slim_p1_16 .blink').each(function(){
274
+ data['run_scan'] = jQuery(this).attr('id');
275
+ jQuery.ajax({
276
+ url: ajaxurl,
277
+ type: 'post',
278
+ async: true,
279
+ data: data,
280
+ success: SlimStatAdmin.hacker_ninja_show_result('#'+data['run_scan'])
281
+ });
282
+ });
283
+ });
284
 
285
  jQuery('div[id^=slim_]').each(function(){
286
  report_id = '#'+jQuery(this).attr('id');
admin/lang/dynamic_strings.php CHANGED
@@ -2,9 +2,9 @@
2
  $dynamic_strings = array(
3
  __('xx','wp-slimstat'),
4
  __('unknown','wp-slimstat'), // Unknown
5
- __('win7','wp-slimstat'), // Windows 7
6
  __('win8','wp-slimstat'), // Windows 8
7
- __('winphone7','wp-slimstat'), // Windows Phone
8
  __('winvista','wp-slimstat'), // Windows Vista
9
  __('win2003','wp-slimstat'), // Windows 2003
10
  __('winxp','wp-slimstat'), // Windows XP
@@ -29,11 +29,8 @@ __('hp-ux','wp-slimstat'), // HP-UX
29
  __('aix','wp-slimstat'), // IBM AIX
30
  __('beos','wp-slimstat'), // BeOS
31
  __('cygwin','wp-slimstat'), // Cygwin
32
- __('darwin','wp-slimstat'), // Darwin
33
  __('digital unix','wp-slimstat'), // Digital Unix
34
  __('risc os','wp-slimstat'), // Risc OS
35
- __('dec alpha','wp-slimstat'), // DEC Alpha
36
- __('vax','wp-slimstat'), // VAX
37
  __('openvms','wp-slimstat'), // OpenVMS
38
  __('linux','wp-slimstat'), // Linux
39
  __('freebsd','wp-slimstat'), // FreeBSD
@@ -48,6 +45,7 @@ __('ios','wp-slimstat'), // iPhone OS X
48
  __('palm','wp-slimstat'), // Palm
49
  __('wap','wp-slimstat'), // WAP
50
  __('java','wp-slimstat'), // Java
 
51
  __('wince','wp-slimstat'), // Windows CE
52
  __('symbianos','wp-slimstat'), // Symbian OS
53
  __('blackberry os','wp-slimstat'), // BlackBerry OS
@@ -71,277 +69,245 @@ __('mediaplayer','wp-slimstat'), // Microsoft Media Player
71
  __('quicktime','wp-slimstat'), // QuickTime
72
  __('real','wp-slimstat'), // Real Player
73
  __('silverlight','wp-slimstat'), // Microsoft Silverlight
74
- __('l-aa','wp-slimstat'), // Afar
75
- __('l-ab','wp-slimstat'), // Abkhazian
76
- __('l-ae','wp-slimstat'), // Avestan
77
  __('l-af','wp-slimstat'), // Afrikaans
78
- __('l-ak','wp-slimstat'), // Akan
79
- __('l-am','wp-slimstat'), // Amharic
80
- __('l-an','wp-slimstat'), // Aragonese
81
  __('l-ar','wp-slimstat'), // Arabic
82
- __('l-as','wp-slimstat'), // Assamese
83
- __('l-av','wp-slimstat'), // Avaric
84
- __('l-ay','wp-slimstat'), // Aymara
85
- __('l-az','wp-slimstat'), // Azerbaijani
86
- __('l-ba','wp-slimstat'), // Bashkir
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  __('l-be','wp-slimstat'), // Belarusian
 
88
  __('l-bg','wp-slimstat'), // Bulgarian
89
- __('l-bh','wp-slimstat'), // Bihari languages
90
- __('l-bi','wp-slimstat'), // Bislama
91
- __('l-bm','wp-slimstat'), // Bambara
92
- __('l-bn','wp-slimstat'), // Bengali
93
- __('l-bo','wp-slimstat'), // Tibetan
94
- __('l-br','wp-slimstat'), // Breton
95
- __('l-bs','wp-slimstat'), // Bosnian
96
- __('l-ca','wp-slimstat'), // Catalan; Valencian
97
- __('l-ce','wp-slimstat'), // Chechen
98
- __('l-ch','wp-slimstat'), // Chamorro
99
- __('l-co','wp-slimstat'), // Corsican
100
- __('l-cr','wp-slimstat'), // Cree
101
  __('l-cs','wp-slimstat'), // Czech
102
- __('l-cu','wp-slimstat'), // Church Slavic; Church Slavonic
103
- __('l-cv','wp-slimstat'), // Chuvash
104
  __('l-cy','wp-slimstat'), // Welsh
 
105
  __('l-da','wp-slimstat'), // Danish
 
106
  __('l-de','wp-slimstat'), // German
107
- __('l-dv','wp-slimstat'), // Dhivehi; Divehi; Maldivian
108
- __('l-dz','wp-slimstat'), // Dzongkha
109
- __('l-ee','wp-slimstat'), // Ewe
110
- __('l-el','wp-slimstat'), // Modern Greek (1453-)
 
 
 
 
 
111
  __('l-en','wp-slimstat'), // English
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  __('l-eo','wp-slimstat'), // Esperanto
113
- __('l-es','wp-slimstat'), // Spanish; Castilian
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  __('l-et','wp-slimstat'), // Estonian
 
115
  __('l-eu','wp-slimstat'), // Basque
116
- __('l-fa','wp-slimstat'), // Persian
117
- __('l-ff','wp-slimstat'), // Fulah
 
118
  __('l-fi','wp-slimstat'), // Finnish
119
- __('l-fj','wp-slimstat'), // Fijian
120
  __('l-fo','wp-slimstat'), // Faroese
 
121
  __('l-fr','wp-slimstat'), // French
122
- __('l-fy','wp-slimstat'), // Western Frisian
123
- __('l-ga','wp-slimstat'), // Irish
124
- __('l-gd','wp-slimstat'), // Scottish Gaelic; Gaelic
 
 
 
125
  __('l-gl','wp-slimstat'), // Galician
126
- __('l-gn','wp-slimstat'), // Guarani
127
  __('l-gu','wp-slimstat'), // Gujarati
128
- __('l-gv','wp-slimstat'), // Manx
129
- __('l-ha','wp-slimstat'), // Hausa
130
  __('l-he','wp-slimstat'), // Hebrew
 
131
  __('l-hi','wp-slimstat'), // Hindi
132
- __('l-ho','wp-slimstat'), // Hiri Motu
133
  __('l-hr','wp-slimstat'), // Croatian
134
- __('l-ht','wp-slimstat'), // Haitian; Haitian Creole
 
135
  __('l-hu','wp-slimstat'), // Hungarian
 
136
  __('l-hy','wp-slimstat'), // Armenian
137
- __('l-hz','wp-slimstat'), // Herero
138
- __('l-ia','wp-slimstat'), // Interlingua (International Auxiliary Language Association)
139
  __('l-id','wp-slimstat'), // Indonesian
140
- __('l-ie','wp-slimstat'), // Interlingue; Occidental
141
- __('l-ig','wp-slimstat'), // Igbo
142
- __('l-ii','wp-slimstat'), // Sichuan Yi; Nuosu
143
- __('l-ik','wp-slimstat'), // Inupiaq
144
- __('l-in','wp-slimstat'), // Indonesian
145
- __('l-io','wp-slimstat'), // Ido
146
  __('l-is','wp-slimstat'), // Icelandic
 
147
  __('l-it','wp-slimstat'), // Italian
148
- __('l-iu','wp-slimstat'), // Inuktitut
149
- __('l-iw','wp-slimstat'), // Hebrew
150
  __('l-ja','wp-slimstat'), // Japanese
151
- __('l-ji','wp-slimstat'), // Yiddish
152
- __('l-jv','wp-slimstat'), // Javanese
153
- __('l-jw','wp-slimstat'), // Javanese
154
  __('l-ka','wp-slimstat'), // Georgian
155
- __('l-kg','wp-slimstat'), // Kongo
156
- __('l-ki','wp-slimstat'), // Kikuyu; Gikuyu
157
- __('l-kj','wp-slimstat'), // Kuanyama; Kwanyama
158
  __('l-kk','wp-slimstat'), // Kazakh
159
- __('l-kl','wp-slimstat'), // Kalaallisut; Greenlandic
160
- __('l-km','wp-slimstat'), // Central Khmer
161
  __('l-kn','wp-slimstat'), // Kannada
 
162
  __('l-ko','wp-slimstat'), // Korean
163
- __('l-kr','wp-slimstat'), // Kanuri
164
- __('l-ks','wp-slimstat'), // Kashmiri
165
- __('l-ku','wp-slimstat'), // Kurdish
166
- __('l-kv','wp-slimstat'), // Komi
167
- __('l-kw','wp-slimstat'), // Cornish
168
- __('l-ky','wp-slimstat'), // Kirghiz; Kyrgyz
169
- __('l-la','wp-slimstat'), // Latin
170
- __('l-lb','wp-slimstat'), // Luxembourgish; Letzeburgesch
171
- __('l-lg','wp-slimstat'), // Ganda
172
- __('l-li','wp-slimstat'), // Limburgan; Limburge; Limburgish
173
- __('l-ln','wp-slimstat'), // Lingala
174
- __('l-lo','wp-slimstat'), // Lao
175
  __('l-lt','wp-slimstat'), // Lithuanian
176
- __('l-lu','wp-slimstat'), // Luba-Katanga
177
  __('l-lv','wp-slimstat'), // Latvian
178
- __('l-mg','wp-slimstat'), // Malagasy
179
- __('l-mh','wp-slimstat'), // Marshallese
180
  __('l-mi','wp-slimstat'), // Maori
181
- __('l-mk','wp-slimstat'), // Macedonian
182
- __('l-ml','wp-slimstat'), // Malayalam
 
183
  __('l-mn','wp-slimstat'), // Mongolian
184
- __('l-mo','wp-slimstat'), // Moldavian; Moldovan
185
  __('l-mr','wp-slimstat'), // Marathi
 
186
  __('l-ms','wp-slimstat'), // Malay
 
 
187
  __('l-mt','wp-slimstat'), // Maltese
188
- __('l-my','wp-slimstat'), // Burmese
189
- __('l-na','wp-slimstat'), // Nauru
190
- __('l-nb','wp-slimstat'), // Norwegian Bokmal
191
- __('l-nd','wp-slimstat'), // North Ndebele
192
- __('l-ne','wp-slimstat'), // Nepali
193
- __('l-ng','wp-slimstat'), // Ndonga
194
- __('l-nl','wp-slimstat'), // Dutch; Flemish
195
- __('l-nn','wp-slimstat'), // Norwegian Nynorsk
196
- __('l-no','wp-slimstat'), // Norwegian
197
- __('l-nr','wp-slimstat'), // South Ndebele
198
- __('l-nv','wp-slimstat'), // Navajo; Navaho
199
- __('l-ny','wp-slimstat'), // Nyanja; Chewa; Chichewa
200
- __('l-oc','wp-slimstat'), // Occitan (post 1500)
201
- __('l-oj','wp-slimstat'), // Ojibwa
202
- __('l-om','wp-slimstat'), // Oromo
203
- __('l-or','wp-slimstat'), // Oriya
204
- __('l-os','wp-slimstat'), // Ossetian; Ossetic
205
- __('l-pa','wp-slimstat'), // Panjabi; Punjabi
206
- __('l-pi','wp-slimstat'), // Pali
207
  __('l-pl','wp-slimstat'), // Polish
208
- __('l-pl-pl','wp-slimstat'), // Polish (Poland)
209
- __('l-ps','wp-slimstat'), // Pushto; Pashto
 
210
  __('l-pt','wp-slimstat'), // Portuguese
211
- __('l-pt-pt','wp-slimstat'), // Portuguese (Portugal)
 
212
  __('l-qu','wp-slimstat'), // Quechua
213
- __('l-rm','wp-slimstat'), // Romansh
214
- __('l-rn','wp-slimstat'), // Rundi
215
- __('l-ro','wp-slimstat'), // Romanian; Moldavian; Moldovan
 
 
216
  __('l-ru','wp-slimstat'), // Russian
217
- __('l-rw','wp-slimstat'), // Kinyarwanda
218
  __('l-sa','wp-slimstat'), // Sanskrit
219
- __('l-sc','wp-slimstat'), // Sardinian
220
- __('l-sd','wp-slimstat'), // Sindhi
221
- __('l-se','wp-slimstat'), // Northern Sami
222
- __('l-sg','wp-slimstat'), // Sango
223
- __('l-sh','wp-slimstat'), // Serbo-Croatian
224
- __('l-si','wp-slimstat'), // Sinhala; Sinhalese
 
 
 
 
 
225
  __('l-sk','wp-slimstat'), // Slovak
 
226
  __('l-sl','wp-slimstat'), // Slovenian
227
- __('l-sm','wp-slimstat'), // Samoan
228
- __('l-sn','wp-slimstat'), // Shona
229
- __('l-so','wp-slimstat'), // Somali
230
  __('l-sq','wp-slimstat'), // Albanian
231
- __('l-sr','wp-slimstat'), // Serbian
232
- __('l-ss','wp-slimstat'), // Swati
233
- __('l-st','wp-slimstat'), // Southern Sotho
234
- __('l-su','wp-slimstat'), // Sundanese
 
235
  __('l-sv','wp-slimstat'), // Swedish
 
 
236
  __('l-sw','wp-slimstat'), // Swahili
 
 
 
237
  __('l-ta','wp-slimstat'), // Tamil
 
238
  __('l-te','wp-slimstat'), // Telugu
239
- __('l-tg','wp-slimstat'), // Tajik
240
  __('l-th','wp-slimstat'), // Thai
241
- __('l-th-th','wp-slimstat'), // Thai (Thailand)
242
- __('l-ti','wp-slimstat'), // Tigrinya
243
- __('l-tk','wp-slimstat'), // Turkmen
244
  __('l-tl','wp-slimstat'), // Tagalog
 
245
  __('l-tn','wp-slimstat'), // Tswana
246
- __('l-to','wp-slimstat'), // Tonga (Tonga Islands)
247
  __('l-tr','wp-slimstat'), // Turkish
248
- __('l-ts','wp-slimstat'), // Tsonga
249
  __('l-tt','wp-slimstat'), // Tatar
250
- __('l-tw','wp-slimstat'), // Twi
251
- __('l-ty','wp-slimstat'), // Tahitian
252
- __('l-ug','wp-slimstat'), // Uighur; Uyghur
253
  __('l-uk','wp-slimstat'), // Ukrainian
 
254
  __('l-ur','wp-slimstat'), // Urdu
255
- __('l-uz','wp-slimstat'), // Uzbek
256
- __('l-ve','wp-slimstat'), // Venda
 
 
257
  __('l-vi','wp-slimstat'), // Vietnamese
258
- __('l-vi-vn','wp-slimstat'), // Vietnamese (Vietnam)
259
- __('l-vo','wp-slimstat'), // Volapuk
260
- __('l-wa','wp-slimstat'), // Walloon
261
- __('l-wo','wp-slimstat'), // Wolof
262
  __('l-xh','wp-slimstat'), // Xhosa
263
- __('l-yi','wp-slimstat'), // Yiddish
264
- __('l-yo','wp-slimstat'), // Yoruba
265
- __('l-za','wp-slimstat'), // Zhuang; Chuang
266
  __('l-zh','wp-slimstat'), // Chinese
 
 
 
 
 
267
  __('l-zu','wp-slimstat'), // Zulu
268
- __('l-ar-sa','wp-slimstat'), // Arabic (Saudi Arabia)
269
- __('l-ar-iq','wp-slimstat'), // Arabic (Iraq)
270
- __('l-ar-eg','wp-slimstat'), // Arabic (Egypt)
271
- __('l-ar-ly','wp-slimstat'), // Arabic (Libya)
272
- __('l-ar-dz','wp-slimstat'), // Arabic (Algeria)
273
- __('l-ar-ma','wp-slimstat'), // Arabic (Morocco)
274
- __('l-ar-tn','wp-slimstat'), // Arabic (Tunisia)
275
- __('l-ar-om','wp-slimstat'), // Arabic (Oman)
276
- __('l-ar-ye','wp-slimstat'), // Arabic (Yemen)
277
- __('l-ar-sy','wp-slimstat'), // Arabic (Syria)
278
- __('l-ar-jo','wp-slimstat'), // Arabic (Jordan)
279
- __('l-ar-lb','wp-slimstat'), // Arabic (Lebanon)
280
- __('l-ar-kw','wp-slimstat'), // Arabic (Kuwait)
281
- __('l-ar-ae','wp-slimstat'), // Arabic (United Arab Emirates)
282
- __('l-ar-bh','wp-slimstat'), // Arabic (Bahrain)
283
- __('l-ar-qa','wp-slimstat'), // Arabic (Qatar)
284
- __('l-zh-cn','wp-slimstat'), // Chinese (China)
285
- __('l-zh-tw','wp-slimstat'), // Taiwanese
286
- __('l-zh-hk','wp-slimstat'), // Chinese (Hong Kong)
287
- __('l-zh-sg','wp-slimstat'), // Chinese (Singapore)
288
- __('l-nl-nl','wp-slimstat'), // Dutch (Netherlands)
289
- __('l-nl-be','wp-slimstat'), // Dutch (Belgium)
290
- __('l-en-gb','wp-slimstat'), // English (United Kingdom)
291
- __('l-en-us','wp-slimstat'), // English (United States)
292
- __('l-en-au','wp-slimstat'), // English (Australia)
293
- __('l-en-ca','wp-slimstat'), // English (Canada)
294
- __('l-en-nz','wp-slimstat'), // English (New Zealand)
295
- __('l-en-ie','wp-slimstat'), // English (Ireland)
296
- __('l-en-za','wp-slimstat'), // English (South Africa)
297
- __('l-en-jm','wp-slimstat'), // English (Jamaica)
298
- __('l-en-bz','wp-slimstat'), // English (Belize)
299
- __('l-en-tt','wp-slimstat'), // English (Trinidad)
300
- __('l-fr-be','wp-slimstat'), // French (Belgium)
301
- __('l-fr-fr','wp-slimstat'), // French (France)
302
- __('l-fr-ch','wp-slimstat'), // French (Switzerland)
303
- __('l-fr-ca','wp-slimstat'), // French (Canada)
304
- __('l-fr-lu','wp-slimstat'), // French (Luxembourg)
305
- __('l-de-at','wp-slimstat'), // German (Austria)
306
- __('l-de-de','wp-slimstat'), // German (Germany)
307
- __('l-de-ch','wp-slimstat'), // German (Switzerland)
308
- __('l-de-lu','wp-slimstat'), // German (Luxembourg)
309
- __('l-de-li','wp-slimstat'), // German (Liechtenstein)
310
- __('l-el-gr','wp-slimstat'), // Greek (Greece)
311
- __('l-es-do','wp-slimstat'), // Spanish (Dominican Republic)
312
- __('l-es-ar','wp-slimstat'), // Spanish (Argentina)
313
- __('l-es-co','wp-slimstat'), // Spanish (Colombia)
314
- __('l-es-mx','wp-slimstat'), // Spanish (Mexico)
315
- __('l-es-es','wp-slimstat'), // Spanish (Spain)
316
- __('l-es-gt','wp-slimstat'), // Spanish (Guatemala)
317
- __('l-es-cr','wp-slimstat'), // Spanish (Costa Rica)
318
- __('l-es-pa','wp-slimstat'), // Spanish (Panama)
319
- __('l-es-ve','wp-slimstat'), // Spanish (Venezuela)
320
- __('l-es-pe','wp-slimstat'), // Spanish (Peru)
321
- __('l-es-ec','wp-slimstat'), // Spanish (Ecuador)
322
- __('l-es-cl','wp-slimstat'), // Spanish (Chile)
323
- __('l-es-uy','wp-slimstat'), // Spanish (Uruguay)
324
- __('l-es-py','wp-slimstat'), // Spanish (Paraguay)
325
- __('l-es-bo','wp-slimstat'), // Spanish (Bolivia)
326
- __('l-es-sv','wp-slimstat'), // Spanish (El Salvador)
327
- __('l-es-hn','wp-slimstat'), // Spanish (Honduras)
328
- __('l-es-ni','wp-slimstat'), // Spanish (Nicaragua)
329
- __('l-es-pr','wp-slimstat'), // Spanish (Puerto Rico)
330
- __('l-he-il','wp-slimstat'), // Hebrew (Israel)
331
- __('l-hu-hu','wp-slimstat'), // Hungarian (Hungary)
332
- __('l-ie-ee','wp-slimstat'), // Internet Explorer Easter Egg
333
- __('l-it-it','wp-slimstat'), // Italian (Italia)
334
- __('l-it-ch','wp-slimstat'), // Italian (Switzerland)
335
- __('l-ko-kr','wp-slimstat'), // Korean (Republic of Korea)
336
- __('l-ko-kp','wp-slimstat'), // Korean (Democratic People's Republic of Korea)
337
- __('l-pt-br','wp-slimstat'), // Portuguese (Brazil)
338
- __('l-ro-md','wp-slimstat'), // Romanian (Moldava)
339
- __('l-ru-ru','wp-slimstat'), // Russian (Russia)
340
- __('l-ru-md','wp-slimstat'), // Russian (Moldava)
341
- __('l-sv-se','wp-slimstat'), // Swedish (Sweden)
342
- __('l-sv-fi','wp-slimstat'), // Swedish (Finland)
343
- __('l-ja-jp','wp-slimstat'), // Japanese
344
- __('l-tr-tr','wp-slimstat'), // Turkish
345
  __('l-','wp-slimstat'), // Unknown
346
  __('l-empty','wp-slimstat'), // Unknown
347
  __('l-xx','wp-slimstat') // Unknown
2
  $dynamic_strings = array(
3
  __('xx','wp-slimstat'),
4
  __('unknown','wp-slimstat'), // Unknown
5
+ __('win8.1','wp-slimstat'), // Windows 8.1
6
  __('win8','wp-slimstat'), // Windows 8
7
+ __('win7','wp-slimstat'), // Windows 7
8
  __('winvista','wp-slimstat'), // Windows Vista
9
  __('win2003','wp-slimstat'), // Windows 2003
10
  __('winxp','wp-slimstat'), // Windows XP
29
  __('aix','wp-slimstat'), // IBM AIX
30
  __('beos','wp-slimstat'), // BeOS
31
  __('cygwin','wp-slimstat'), // Cygwin
 
32
  __('digital unix','wp-slimstat'), // Digital Unix
33
  __('risc os','wp-slimstat'), // Risc OS
 
 
34
  __('openvms','wp-slimstat'), // OpenVMS
35
  __('linux','wp-slimstat'), // Linux
36
  __('freebsd','wp-slimstat'), // FreeBSD
45
  __('palm','wp-slimstat'), // Palm
46
  __('wap','wp-slimstat'), // WAP
47
  __('java','wp-slimstat'), // Java
48
+ __('winphone7','wp-slimstat'), // Windows Phone
49
  __('wince','wp-slimstat'), // Windows CE
50
  __('symbianos','wp-slimstat'), // Symbian OS
51
  __('blackberry os','wp-slimstat'), // BlackBerry OS
69
  __('quicktime','wp-slimstat'), // QuickTime
70
  __('real','wp-slimstat'), // Real Player
71
  __('silverlight','wp-slimstat'), // Microsoft Silverlight
 
 
 
72
  __('l-af','wp-slimstat'), // Afrikaans
73
+ __('l-af-ZA','wp-slimstat'), // Afrikaans (South Africa)
 
 
74
  __('l-ar','wp-slimstat'), // Arabic
75
+ __('l-ar-AE','wp-slimstat'), // Arabic (U.A.E.)
76
+ __('l-ar-BH','wp-slimstat'), // Arabic (Bahrain)
77
+ __('l-ar-DZ','wp-slimstat'), // Arabic (Algeria)
78
+ __('l-ar-EG','wp-slimstat'), // Arabic (Egypt)
79
+ __('l-ar-IQ','wp-slimstat'), // Arabic (Iraq)
80
+ __('l-ar-JO','wp-slimstat'), // Arabic (Jordan)
81
+ __('l-ar-KW','wp-slimstat'), // Arabic (Kuwait)
82
+ __('l-ar-LB','wp-slimstat'), // Arabic (Lebanon)
83
+ __('l-ar-LY','wp-slimstat'), // Arabic (Libya)
84
+ __('l-ar-MA','wp-slimstat'), // Arabic (Morocco)
85
+ __('l-ar-OM','wp-slimstat'), // Arabic (Oman)
86
+ __('l-ar-QA','wp-slimstat'), // Arabic (Qatar)
87
+ __('l-ar-SA','wp-slimstat'), // Arabic (Saudi Arabia)
88
+ __('l-ar-SY','wp-slimstat'), // Arabic (Syria)
89
+ __('l-ar-TN','wp-slimstat'), // Arabic (Tunisia)
90
+ __('l-ar-YE','wp-slimstat'), // Arabic (Yemen)
91
+ __('l-az','wp-slimstat'), // Azeri (Latin)
92
+ __('l-az-AZ','wp-slimstat'), // Azeri (Latin) (Azerbaijan)
93
+ __('l-az-AZ','wp-slimstat'), // Azeri (Cyrillic) (Azerbaijan)
94
  __('l-be','wp-slimstat'), // Belarusian
95
+ __('l-be-BY','wp-slimstat'), // Belarusian (Belarus)
96
  __('l-bg','wp-slimstat'), // Bulgarian
97
+ __('l-bg-BG','wp-slimstat'), // Bulgarian (Bulgaria)
98
+ __('l-bs-BA','wp-slimstat'), // Bosnian (Bosnia and Herzegovina)
99
+ __('l-ca','wp-slimstat'), // Catalan
100
+ __('l-ca-ES','wp-slimstat'), // Catalan (Spain)
 
 
 
 
 
 
 
 
101
  __('l-cs','wp-slimstat'), // Czech
102
+ __('l-cs-CZ','wp-slimstat'), // Czech (Czech Republic)
 
103
  __('l-cy','wp-slimstat'), // Welsh
104
+ __('l-cy-GB','wp-slimstat'), // Welsh (United Kingdom)
105
  __('l-da','wp-slimstat'), // Danish
106
+ __('l-da-DK','wp-slimstat'), // Danish (Denmark)
107
  __('l-de','wp-slimstat'), // German
108
+ __('l-de-AT','wp-slimstat'), // German (Austria)
109
+ __('l-de-CH','wp-slimstat'), // German (Switzerland)
110
+ __('l-de-DE','wp-slimstat'), // German (Germany)
111
+ __('l-de-LI','wp-slimstat'), // German (Liechtenstein)
112
+ __('l-de-LU','wp-slimstat'), // German (Luxembourg)
113
+ __('l-dv','wp-slimstat'), // Divehi
114
+ __('l-dv-MV','wp-slimstat'), // Divehi (Maldives)
115
+ __('l-el','wp-slimstat'), // Greek
116
+ __('l-el-GR','wp-slimstat'), // Greek (Greece)
117
  __('l-en','wp-slimstat'), // English
118
+ __('l-en-AU','wp-slimstat'), // English (Australia)
119
+ __('l-en-BZ','wp-slimstat'), // English (Belize)
120
+ __('l-en-CA','wp-slimstat'), // English (Canada)
121
+ __('l-en-CB','wp-slimstat'), // English (Caribbean)
122
+ __('l-en-GB','wp-slimstat'), // English (United Kingdom)
123
+ __('l-en-IE','wp-slimstat'), // English (Ireland)
124
+ __('l-en-JM','wp-slimstat'), // English (Jamaica)
125
+ __('l-en-NZ','wp-slimstat'), // English (New Zealand)
126
+ __('l-en-PH','wp-slimstat'), // English (Republic of the Philippines)
127
+ __('l-en-TT','wp-slimstat'), // English (Trinidad and Tobago)
128
+ __('l-en-US','wp-slimstat'), // English (United States)
129
+ __('l-en-ZA','wp-slimstat'), // English (South Africa)
130
+ __('l-en-ZW','wp-slimstat'), // English (Zimbabwe)
131
  __('l-eo','wp-slimstat'), // Esperanto
132
+ __('l-es','wp-slimstat'), // Spanish
133
+ __('l-es-AR','wp-slimstat'), // Spanish (Argentina)
134
+ __('l-es-BO','wp-slimstat'), // Spanish (Bolivia)
135
+ __('l-es-CL','wp-slimstat'), // Spanish (Chile)
136
+ __('l-es-CO','wp-slimstat'), // Spanish (Colombia)
137
+ __('l-es-CR','wp-slimstat'), // Spanish (Costa Rica)
138
+ __('l-es-DO','wp-slimstat'), // Spanish (Dominican Republic)
139
+ __('l-es-EC','wp-slimstat'), // Spanish (Ecuador)
140
+ __('l-es-ES','wp-slimstat'), // Spanish (Castilian)
141
+ __('l-es-ES','wp-slimstat'), // Spanish (Spain)
142
+ __('l-es-GT','wp-slimstat'), // Spanish (Guatemala)
143
+ __('l-es-HN','wp-slimstat'), // Spanish (Honduras)
144
+ __('l-es-MX','wp-slimstat'), // Spanish (Mexico)
145
+ __('l-es-NI','wp-slimstat'), // Spanish (Nicaragua)
146
+ __('l-es-PA','wp-slimstat'), // Spanish (Panama)
147
+ __('l-es-PE','wp-slimstat'), // Spanish (Peru)
148
+ __('l-es-PR','wp-slimstat'), // Spanish (Puerto Rico)
149
+ __('l-es-PY','wp-slimstat'), // Spanish (Paraguay)
150
+ __('l-es-SV','wp-slimstat'), // Spanish (El Salvador)
151
+ __('l-es-UY','wp-slimstat'), // Spanish (Uruguay)
152
+ __('l-es-VE','wp-slimstat'), // Spanish (Venezuela)
153
  __('l-et','wp-slimstat'), // Estonian
154
+ __('l-et-EE','wp-slimstat'), // Estonian (Estonia)
155
  __('l-eu','wp-slimstat'), // Basque
156
+ __('l-eu-ES','wp-slimstat'), // Basque (Spain)
157
+ __('l-fa','wp-slimstat'), // Farsi
158
+ __('l-fa-IR','wp-slimstat'), // Farsi (Iran)
159
  __('l-fi','wp-slimstat'), // Finnish
160
+ __('l-fi-FI','wp-slimstat'), // Finnish (Finland)
161
  __('l-fo','wp-slimstat'), // Faroese
162
+ __('l-fo-FO','wp-slimstat'), // Faroese (Faroe Islands)
163
  __('l-fr','wp-slimstat'), // French
164
+ __('l-fr-BE','wp-slimstat'), // French (Belgium)
165
+ __('l-fr-CA','wp-slimstat'), // French (Canada)
166
+ __('l-fr-CH','wp-slimstat'), // French (Switzerland)
167
+ __('l-fr-FR','wp-slimstat'), // French (France)
168
+ __('l-fr-LU','wp-slimstat'), // French (Luxembourg)
169
+ __('l-fr-MC','wp-slimstat'), // French (Principality of Monaco)
170
  __('l-gl','wp-slimstat'), // Galician
171
+ __('l-gl-ES','wp-slimstat'), // Galician (Spain)
172
  __('l-gu','wp-slimstat'), // Gujarati
173
+ __('l-gu-IN','wp-slimstat'), // Gujarati (India)
 
174
  __('l-he','wp-slimstat'), // Hebrew
175
+ __('l-he-IL','wp-slimstat'), // Hebrew (Israel)
176
  __('l-hi','wp-slimstat'), // Hindi
177
+ __('l-hi-IN','wp-slimstat'), // Hindi (India)
178
  __('l-hr','wp-slimstat'), // Croatian
179
+ __('l-hr-BA','wp-slimstat'), // Croatian (Bosnia and Herzegovina)
180
+ __('l-hr-HR','wp-slimstat'), // Croatian (Croatia)
181
  __('l-hu','wp-slimstat'), // Hungarian
182
+ __('l-hu-HU','wp-slimstat'), // Hungarian (Hungary)
183
  __('l-hy','wp-slimstat'), // Armenian
184
+ __('l-hy-AM','wp-slimstat'), // Armenian (Armenia)
 
185
  __('l-id','wp-slimstat'), // Indonesian
186
+ __('l-id-ID','wp-slimstat'), // Indonesian (Indonesia)
 
 
 
 
 
187
  __('l-is','wp-slimstat'), // Icelandic
188
+ __('l-is-IS','wp-slimstat'), // Icelandic (Iceland)
189
  __('l-it','wp-slimstat'), // Italian
190
+ __('l-it-CH','wp-slimstat'), // Italian (Switzerland)
191
+ __('l-it-IT','wp-slimstat'), // Italian (Italy)
192
  __('l-ja','wp-slimstat'), // Japanese
193
+ __('l-ja-JP','wp-slimstat'), // Japanese (Japan)
 
 
194
  __('l-ka','wp-slimstat'), // Georgian
195
+ __('l-ka-GE','wp-slimstat'), // Georgian (Georgia)
 
 
196
  __('l-kk','wp-slimstat'), // Kazakh
197
+ __('l-kk-KZ','wp-slimstat'), // Kazakh (Kazakhstan)
 
198
  __('l-kn','wp-slimstat'), // Kannada
199
+ __('l-kn-IN','wp-slimstat'), // Kannada (India)
200
  __('l-ko','wp-slimstat'), // Korean
201
+ __('l-ko-KR','wp-slimstat'), // Korean (Korea)
202
+ __('l-kok','wp-slimstat'), // Konkani
203
+ __('l-kok-IN','wp-slimstat'), // Konkani (India)
204
+ __('l-ky','wp-slimstat'), // Kyrgyz
205
+ __('l-ky-KG','wp-slimstat'), // Kyrgyz (Kyrgyzstan)
 
 
 
 
 
 
 
206
  __('l-lt','wp-slimstat'), // Lithuanian
207
+ __('l-lt-LT','wp-slimstat'), // Lithuanian (Lithuania)
208
  __('l-lv','wp-slimstat'), // Latvian
209
+ __('l-lv-LV','wp-slimstat'), // Latvian (Latvia)
 
210
  __('l-mi','wp-slimstat'), // Maori
211
+ __('l-mi-NZ','wp-slimstat'), // Maori (New Zealand)
212
+ __('l-mk','wp-slimstat'), // FYRO Macedonian
213
+ __('l-mk-MK','wp-slimstat'), // FYRO Macedonian (Former Yugoslav Republic of Macedonia)
214
  __('l-mn','wp-slimstat'), // Mongolian
215
+ __('l-mn-MN','wp-slimstat'), // Mongolian (Mongolia)
216
  __('l-mr','wp-slimstat'), // Marathi
217
+ __('l-mr-IN','wp-slimstat'), // Marathi (India)
218
  __('l-ms','wp-slimstat'), // Malay
219
+ __('l-ms-BN','wp-slimstat'), // Malay (Brunei Darussalam)
220
+ __('l-ms-MY','wp-slimstat'), // Malay (Malaysia)
221
  __('l-mt','wp-slimstat'), // Maltese
222
+ __('l-mt-MT','wp-slimstat'), // Maltese (Malta)
223
+ __('l-nb','wp-slimstat'), // Norwegian (Bokm?l)
224
+ __('l-nb-NO','wp-slimstat'), // Norwegian (Bokm?l) (Norway)
225
+ __('l-nl','wp-slimstat'), // Dutch
226
+ __('l-nl-BE','wp-slimstat'), // Dutch (Belgium)
227
+ __('l-nl-NL','wp-slimstat'), // Dutch (Netherlands)
228
+ __('l-nn-NO','wp-slimstat'), // Norwegian (Nynorsk) (Norway)
229
+ __('l-ns','wp-slimstat'), // Northern Sotho
230
+ __('l-ns-ZA','wp-slimstat'), // Northern Sotho (South Africa)
231
+ __('l-pa','wp-slimstat'), // Punjabi
232
+ __('l-pa-IN','wp-slimstat'), // Punjabi (India)
 
 
 
 
 
 
 
 
233
  __('l-pl','wp-slimstat'), // Polish
234
+ __('l-pl-PL','wp-slimstat'), // Polish (Poland)
235
+ __('l-ps','wp-slimstat'), // Pashto
236
+ __('l-ps-AR','wp-slimstat'), // Pashto (Afghanistan)
237
  __('l-pt','wp-slimstat'), // Portuguese
238
+ __('l-pt-BR','wp-slimstat'), // Portuguese (Brazil)
239
+ __('l-pt-PT','wp-slimstat'), // Portuguese (Portugal)
240
  __('l-qu','wp-slimstat'), // Quechua
241
+ __('l-qu-BO','wp-slimstat'), // Quechua (Bolivia)
242
+ __('l-qu-EC','wp-slimstat'), // Quechua (Ecuador)
243
+ __('l-qu-PE','wp-slimstat'), // Quechua (Peru)
244
+ __('l-ro','wp-slimstat'), // Romanian
245
+ __('l-ro-RO','wp-slimstat'), // Romanian (Romania)
246
  __('l-ru','wp-slimstat'), // Russian
247
+ __('l-ru-RU','wp-slimstat'), // Russian (Russia)
248
  __('l-sa','wp-slimstat'), // Sanskrit
249
+ __('l-sa-IN','wp-slimstat'), // Sanskrit (India)
250
+ __('l-se','wp-slimstat'), // Sami (Northern)
251
+ __('l-se-FI','wp-slimstat'), // Sami (Northern) (Finland)
252
+ __('l-se-FI','wp-slimstat'), // Sami (Skolt) (Finland)
253
+ __('l-se-FI','wp-slimstat'), // Sami (Inari) (Finland)
254
+ __('l-se-NO','wp-slimstat'), // Sami (Northern) (Norway)
255
+ __('l-se-NO','wp-slimstat'), // Sami (Lule) (Norway)
256
+ __('l-se-NO','wp-slimstat'), // Sami (Southern) (Norway)
257
+ __('l-se-SE','wp-slimstat'), // Sami (Northern) (Sweden)
258
+ __('l-se-SE','wp-slimstat'), // Sami (Lule) (Sweden)
259
+ __('l-se-SE','wp-slimstat'), // Sami (Southern) (Sweden)
260
  __('l-sk','wp-slimstat'), // Slovak
261
+ __('l-sk-SK','wp-slimstat'), // Slovak (Slovakia)
262
  __('l-sl','wp-slimstat'), // Slovenian
263
+ __('l-sl-SI','wp-slimstat'), // Slovenian (Slovenia)
 
 
264
  __('l-sq','wp-slimstat'), // Albanian
265
+ __('l-sq-AL','wp-slimstat'), // Albanian (Albania)
266
+ __('l-sr-BA','wp-slimstat'), // Serbian (Latin) (Bosnia and Herzegovina)
267
+ __('l-sr-BA','wp-slimstat'), // Serbian (Cyrillic) (Bosnia and Herzegovina)
268
+ __('l-sr-SP','wp-slimstat'), // Serbian (Latin) (Serbia and Montenegro)
269
+ __('l-sr-SP','wp-slimstat'), // Serbian (Cyrillic) (Serbia and Montenegro)
270
  __('l-sv','wp-slimstat'), // Swedish
271
+ __('l-sv-FI','wp-slimstat'), // Swedish (Finland)
272
+ __('l-sv-SE','wp-slimstat'), // Swedish (Sweden)
273
  __('l-sw','wp-slimstat'), // Swahili
274
+ __('l-sw-KE','wp-slimstat'), // Swahili (Kenya)
275
+ __('l-syr','wp-slimstat'), // Syriac
276
+ __('l-syr-SY','wp-slimstat'), // Syriac (Syria)
277
  __('l-ta','wp-slimstat'), // Tamil
278
+ __('l-ta-IN','wp-slimstat'), // Tamil (India)
279
  __('l-te','wp-slimstat'), // Telugu
280
+ __('l-te-IN','wp-slimstat'), // Telugu (India)
281
  __('l-th','wp-slimstat'), // Thai
282
+ __('l-th-TH','wp-slimstat'), // Thai (Thailand)
 
 
283
  __('l-tl','wp-slimstat'), // Tagalog
284
+ __('l-tl-PH','wp-slimstat'), // Tagalog (Philippines)
285
  __('l-tn','wp-slimstat'), // Tswana
286
+ __('l-tn-ZA','wp-slimstat'), // Tswana (South Africa)
287
  __('l-tr','wp-slimstat'), // Turkish
288
+ __('l-tr-TR','wp-slimstat'), // Turkish (Turkey)
289
  __('l-tt','wp-slimstat'), // Tatar
290
+ __('l-tt-RU','wp-slimstat'), // Tatar (Russia)
291
+ __('l-ts','wp-slimstat'), // Tsonga
 
292
  __('l-uk','wp-slimstat'), // Ukrainian
293
+ __('l-uk-UA','wp-slimstat'), // Ukrainian (Ukraine)
294
  __('l-ur','wp-slimstat'), // Urdu
295
+ __('l-ur-PK','wp-slimstat'), // Urdu (Islamic Republic of Pakistan)
296
+ __('l-uz','wp-slimstat'), // Uzbek (Latin)
297
+ __('l-uz-UZ','wp-slimstat'), // Uzbek (Latin) (Uzbekistan)
298
+ __('l-uz-UZ','wp-slimstat'), // Uzbek (Cyrillic) (Uzbekistan)
299
  __('l-vi','wp-slimstat'), // Vietnamese
300
+ __('l-vi-VN','wp-slimstat'), // Vietnamese (Viet Nam)
 
 
 
301
  __('l-xh','wp-slimstat'), // Xhosa
302
+ __('l-xh-ZA','wp-slimstat'), // Xhosa (South Africa)
 
 
303
  __('l-zh','wp-slimstat'), // Chinese
304
+ __('l-zh-CN','wp-slimstat'), // Chinese (S)
305
+ __('l-zh-HK','wp-slimstat'), // Chinese (Hong Kong)
306
+ __('l-zh-MO','wp-slimstat'), // Chinese (Macau)
307
+ __('l-zh-SG','wp-slimstat'), // Chinese (Singapore)
308
+ __('l-zh-TW','wp-slimstat'), // Chinese (T)
309
  __('l-zu','wp-slimstat'), // Zulu
310
+ __('l-zu-ZA','wp-slimstat') // Zulu (South Africa)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
311
  __('l-','wp-slimstat'), // Unknown
312
  __('l-empty','wp-slimstat'), // Unknown
313
  __('l-xx','wp-slimstat') // Unknown
admin/lang/wp-slimstat-de_DE.mo CHANGED
Binary file
admin/lang/wp-slimstat-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-16 22:44-0500\n"
6
- "PO-Revision-Date: 2013-10-16 22:44-0500\n"
7
  "Last-Translator: get used to it <support@getused.to.it>\n"
8
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
9
  "Language: de_DE\n"
@@ -16,88 +16,88 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
- #: ../../wp-slimstat.php:1137 ../../admin/wp-slimstat-admin.php:407
20
- #: ../../admin/view/index.php:12 ../../admin/view/wp-slimstat-reports.php:139
21
  msgid "Right Now"
22
  msgstr "Aktuell"
23
 
24
- #: ../../wp-slimstat.php:1138 ../../admin/wp-slimstat-admin.php:408
25
- #: ../../admin/wp-slimstat-admin.php:425 ../../admin/view/index.php:13
26
  msgid "Overview"
27
  msgstr "&Uuml;bersicht"
28
 
29
- #: ../../wp-slimstat.php:1139 ../../admin/wp-slimstat-admin.php:409
30
- #: ../../admin/wp-slimstat-admin.php:426 ../../admin/view/index.php:14
31
  msgid "Visitors"
32
  msgstr "Besucher"
33
 
34
- #: ../../wp-slimstat.php:1140 ../../admin/wp-slimstat-admin.php:410
35
- #: ../../admin/wp-slimstat-admin.php:427 ../../admin/view/index.php:15
36
  msgid "Content"
37
  msgstr "Inhalt"
38
 
39
- #: ../../wp-slimstat.php:1141 ../../admin/wp-slimstat-admin.php:411
40
- #: ../../admin/wp-slimstat-admin.php:428 ../../admin/view/index.php:16
41
- #: ../../admin/view/index.php:311
42
  msgid "Traffic Sources"
43
  msgstr "Traffic-Ursprung"
44
 
45
- #: ../../wp-slimstat.php:1142 ../../admin/wp-slimstat-admin.php:412
46
- #: ../../admin/wp-slimstat-admin.php:429 ../../admin/view/index.php:17
47
- #: ../../admin/view/index.php:364
48
  msgid "World Map"
49
  msgstr "Weltkarte"
50
 
51
- #: ../../wp-slimstat.php:1143 ../../admin/wp-slimstat-admin.php:413
52
- #: ../../admin/wp-slimstat-admin.php:430 ../../admin/view/index.php:18
53
  msgid "Custom Reports"
54
  msgstr "individuelle Auswertungen"
55
 
56
- #: ../../wp-slimstat.php:1144 ../../admin/wp-slimstat-admin.php:414
57
- #: ../../admin/wp-slimstat-admin.php:431 ../../admin/config/index.php:9
58
  #: ../../admin/config/index.php:208 ../../admin/config/index.php:216
59
  msgid "Add-ons"
60
  msgstr ""
61
 
62
- #: ../../wp-slimstat.php:1147 ../../admin/wp-slimstat-admin.php:462
63
- #: ../../admin/wp-slimstat-admin.php:465 ../../admin/wp-slimstat-admin.php:509
64
- #: ../../admin/wp-slimstat-admin.php:512
65
  #, fuzzy
66
  msgid "Settings"
67
  msgstr "Sortierung w&auml;hlen"
68
 
69
- #: ../../admin/wp-slimstat-admin.php:528
70
  msgid "Stats"
71
  msgstr "Statistik"
72
 
73
- #: ../../admin/wp-slimstat-admin.php:561
74
  msgid "Show on screen"
75
  msgstr "Anzeigen"
76
 
77
- #: ../../admin/wp-slimstat-admin.php:605
78
  msgid "There was an error updating the following options:"
79
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
80
 
81
- #: ../../admin/wp-slimstat-admin.php:608
82
  msgid "Your settings have been successfully updated."
83
  msgstr "Optionen erfolgreich aktualisiert."
84
 
85
- #: ../../admin/wp-slimstat-admin.php:624
86
  msgid "Save Changes"
87
  msgstr "Änderungen speichern"
88
 
89
- #: ../../admin/wp-slimstat-admin.php:637 ../../admin/config/maintenance.php:9
90
- #: ../../admin/config/maintenance.php:18
91
  msgid "Yes"
92
  msgstr "Ja"
93
 
94
- #: ../../admin/wp-slimstat-admin.php:638 ../../admin/config/maintenance.php:9
95
- #: ../../admin/config/maintenance.php:18
96
- #: ../../admin/view/wp-slimstat-reports.php:591
97
  msgid "No"
98
  msgstr "Nein"
99
 
100
- #: ../../admin/wp-slimstat-admin.php:675
101
  msgid ""
102
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
103
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -109,16 +109,16 @@ msgstr ""
109
  "\"http://wordpress.org/extend/plugins/wp-slimstat/faq/\">In den FAQs</a> "
110
  "gibt es mehr Informationen dazu."
111
 
112
- #: ../../admin/wp-slimstat-admin.php:695
113
  msgid "Definitions"
114
  msgstr "Definitionen"
115
 
116
- #: ../../admin/wp-slimstat-admin.php:698
117
  #, fuzzy
118
  msgid "Pageview"
119
  msgstr "Seitenaufrufe"
120
 
121
- #: ../../admin/wp-slimstat-admin.php:698
122
  #, fuzzy
123
  msgid ""
124
  "A request to load a single HTML file (\"page\"). This should be contrasted "
@@ -129,12 +129,12 @@ msgstr ""
129
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
130
  "wird."
131
 
132
- #: ../../admin/wp-slimstat-admin.php:699
133
  #, fuzzy
134
  msgid "(Human) Visit"
135
  msgstr "Echte Besuche"
136
 
137
- #: ../../admin/wp-slimstat-admin.php:699
138
  msgid ""
139
  "A period of interaction between a visitor's browser and your website, ending "
140
  "when the browser is closed or when the user has been inactive on that site "
@@ -144,13 +144,13 @@ msgstr ""
144
  "Diese endet wenn der Browser geschlossen wird oder der Besucher 30 Minuten "
145
  "lang nicht auf der Website aktiv war"
146
 
147
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/view/index.php:139
148
- #: ../../admin/view/index.php:329 ../../admin/view/right-now.php:168
149
  #, fuzzy
150
  msgid "Known Visitor"
151
  msgstr "Bekannte Besucher"
152
 
153
- #: ../../admin/wp-slimstat-admin.php:700
154
  msgid ""
155
  "Any user who has left a comment on your blog, and is thus identified by "
156
  "Wordpress as a returning visitor"
@@ -158,12 +158,12 @@ msgstr ""
158
  "Jeder Benutzer, der einen Kommentar auf Ihrer Website hinterlassen hat und "
159
  "damit als wiederkehrender Besucher erkannt wird."
160
 
161
- #: ../../admin/wp-slimstat-admin.php:701
162
  #, fuzzy
163
  msgid "Unique IP"
164
  msgstr "Eindeutige IPs"
165
 
166
- #: ../../admin/wp-slimstat-admin.php:701
167
  msgid ""
168
  "Used to differentiate between multiple requests to download a file from one "
169
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -175,13 +175,13 @@ msgstr ""
175
  "Adresse von der ein Seitenaufruf stammt achtet, ist es nützlich, aber nicht "
176
  "perfekt."
177
 
178
- #: ../../admin/wp-slimstat-admin.php:702 ../../admin/wp-slimstat-admin.php:744
179
- #: ../../admin/view/index.php:58 ../../admin/view/right-now.php:90
180
  #: ../../admin/view/wp-slimstat-reports.php:60
181
  msgid "Originating IP"
182
  msgstr "Ursprüngliche IP"
183
 
184
- #: ../../admin/wp-slimstat-admin.php:702
185
  msgid ""
186
  "the originating IP address of a client connecting to a web server through an "
187
  "HTTP proxy or load balancer"
@@ -189,12 +189,12 @@ msgstr ""
189
  "Die ursprüngliche IP Adresse eines Clients, der sich durch einen HTTP Proxy "
190
  "oder Load Balancer mit dem Server verbunden hat."
191
 
192
- #: ../../admin/wp-slimstat-admin.php:703
193
  #, fuzzy
194
  msgid "Direct Traffic"
195
  msgstr "Direkter Besuch"
196
 
197
- #: ../../admin/wp-slimstat-admin.php:703
198
  msgid ""
199
  "All those people showing up to your Web site by typing in the URL of your "
200
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -204,12 +204,12 @@ msgstr ""
204
  "oder ein Lesezeichen erreichen; auch \"default traffic\" oder \"ambient "
205
  "traffic\" genannt."
206
 
207
- #: ../../admin/wp-slimstat-admin.php:704
208
  #, fuzzy
209
  msgid "Search Engine"
210
  msgstr "Suchmaschinen"
211
 
212
- #: ../../admin/wp-slimstat-admin.php:704
213
  msgid ""
214
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
215
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -217,22 +217,22 @@ msgstr ""
217
  "Google, Yahoo, MSN, Ask usw.; hiwer ist sowohl organischer als auch "
218
  "bezahlter (PPC/SEM) Traffic enthalten."
219
 
220
- #: ../../admin/wp-slimstat-admin.php:705 ../../admin/wp-slimstat-admin.php:721
221
- #: ../../admin/config/maintenance.php:173 ../../admin/view/index.php:40
222
  #: ../../admin/view/wp-slimstat-reports.php:43
223
  msgid "Search Terms"
224
  msgstr "Suchbegriffe"
225
 
226
- #: ../../admin/wp-slimstat-admin.php:705 ../../admin/wp-slimstat-admin.php:721
227
- #: ../../admin/view/index.php:142 ../../admin/view/index.php:332
228
  msgid "Keywords used by your visitors to find your website on a search engine"
229
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
230
 
231
- #: ../../admin/wp-slimstat-admin.php:706
232
  msgid "SERP"
233
  msgstr "SERP"
234
 
235
- #: ../../admin/wp-slimstat-admin.php:706
236
  msgid ""
237
  "Short for search engine results page, the Web page that a search engine "
238
  "returns with the results of its search. The value shown represents your rank "
@@ -241,13 +241,14 @@ msgstr ""
241
  "\"Search Engine Result Pages\" - Suchmaschinenranking. Der Wert "
242
  "repräsentiert Ihren Rang (die Postition) in den Suchergebnissen."
243
 
244
- #: ../../admin/wp-slimstat-admin.php:707 ../../admin/view/index.php:51
 
245
  #: ../../admin/view/wp-slimstat-reports.php:53
246
  #, fuzzy
247
  msgid "User Agent"
248
  msgstr "Top Browser"
249
 
250
- #: ../../admin/wp-slimstat-admin.php:707
251
  msgid ""
252
  "Any program used for accessing a website; this includes browsers, robots, "
253
  "spiders and any other program that was used to retrieve information from the "
@@ -257,13 +258,13 @@ msgstr ""
257
  "usw.), 'Robots' und 'Spider' sowie jedes andere Programm welches "
258
  "Informationen von einer Website abruft."
259
 
260
- #: ../../admin/wp-slimstat-admin.php:708 ../../admin/view/index.php:55
261
  #: ../../admin/view/wp-slimstat-reports.php:57
262
  #, fuzzy
263
  msgid "Outbound Link"
264
  msgstr "Letzte ausgehende Links"
265
 
266
- #: ../../admin/wp-slimstat-admin.php:708
267
  msgid ""
268
  "A link from one domain to another is said to be outbound from its source "
269
  "anchor and inbound to its target. This report lists all the links to other "
@@ -272,48 +273,48 @@ msgstr ""
272
  "Ausgehende Links sind links zu einer anderen Domain. Dieser Report zeigt "
273
  "alle Links zu anderen Websites die Ihre Besucher verfolgt haben."
274
 
275
- #: ../../admin/wp-slimstat-admin.php:715
276
  msgid "Basic Filters"
277
  msgstr "Einfache Filter"
278
 
279
- #: ../../admin/wp-slimstat-admin.php:718 ../../admin/view/index.php:37
280
  #: ../../admin/view/right-now.php:98
281
  #: ../../admin/view/wp-slimstat-reports.php:40
282
  msgid "Browser"
283
  msgstr "Browser"
284
 
285
- #: ../../admin/wp-slimstat-admin.php:718
286
  msgid "User agent (Firefox, Chrome, ...)"
287
  msgstr "Browser (Firefox, Chrome ...)"
288
 
289
- #: ../../admin/wp-slimstat-admin.php:719
290
- #: ../../admin/config/maintenance.php:169 ../../admin/view/index.php:38
291
  #: ../../admin/view/wp-slimstat-reports.php:41
292
- #: ../../admin/view/wp-slimstat-reports.php:408
293
  msgid "Country Code"
294
  msgstr "L&auml;nder-Code"
295
 
296
- #: ../../admin/wp-slimstat-admin.php:719
297
  msgid "2-letter code (us, ru, de, it, ...)"
298
  msgstr ""
299
 
300
- #: ../../admin/wp-slimstat-admin.php:720 ../../admin/view/index.php:39
301
  #: ../../admin/view/wp-slimstat-reports.php:42
302
  msgid "IP"
303
  msgstr "IP"
304
 
305
- #: ../../admin/wp-slimstat-admin.php:720
306
  msgid "Visitor's public IP address"
307
  msgstr "&Ouml;ffentliche IP Adresse des Besuchers"
308
 
309
- #: ../../admin/wp-slimstat-admin.php:722
310
- #: ../../admin/config/maintenance.php:171 ../../admin/view/index.php:41
311
  #: ../../admin/view/wp-slimstat-reports.php:44
312
- #: ../../admin/view/wp-slimstat-reports.php:420
313
  msgid "Language Code"
314
  msgstr "Sprach-Kodierung"
315
 
316
- #: ../../admin/wp-slimstat-admin.php:722
317
  msgid ""
318
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
319
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -322,12 +323,12 @@ msgstr ""
322
  "Siehe <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
323
  "ee825488(v=cs.20).aspx\">Tabelle von Sprach-Kodierungen</a> "
324
 
325
- #: ../../admin/wp-slimstat-admin.php:723 ../../admin/view/index.php:42
326
  #: ../../admin/view/wp-slimstat-reports.php:45
327
  msgid "Operating System"
328
  msgstr "Betriebssystem"
329
 
330
- #: ../../admin/wp-slimstat-admin.php:723
331
  msgid ""
332
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
333
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -337,32 +338,32 @@ msgstr ""
337
  "gibt es auf <a href=\"http://php.net/manual/de/function.get-browser.php\" "
338
  "target=\"_blank\">dieser Seite</a>"
339
 
340
- #: ../../admin/wp-slimstat-admin.php:724
341
- #: ../../admin/config/maintenance.php:172 ../../admin/view/index.php:43
342
  #: ../../admin/view/wp-slimstat-reports.php:46
343
  msgid "Permalink"
344
  msgstr "Permalink"
345
 
346
- #: ../../admin/wp-slimstat-admin.php:724
347
  msgid "URL accessed on your site"
348
  msgstr "URL, die auf Ihrer Seite besucht wurde"
349
 
350
- #: ../../admin/wp-slimstat-admin.php:725 ../../admin/view/index.php:44
351
  #: ../../admin/view/wp-slimstat-reports.php:48
352
  msgid "Referer"
353
  msgstr "Herkunft"
354
 
355
- #: ../../admin/wp-slimstat-admin.php:725
356
  #, fuzzy
357
  msgid "Complete address of the referrer page"
358
  msgstr "Verweisende Seite &ouml;ffnen"
359
 
360
- #: ../../admin/wp-slimstat-admin.php:726 ../../admin/view/index.php:45
361
  #: ../../admin/view/wp-slimstat-reports.php:49
362
  msgid "Visitor's Name"
363
  msgstr "Besuchername"
364
 
365
- #: ../../admin/wp-slimstat-admin.php:726
366
  msgid ""
367
  "Visitors' names according to the cookie set by Wordpress after they leave a "
368
  "comment"
@@ -370,26 +371,26 @@ msgstr ""
370
  "Besuchername laut Cookie, welches Wordpress beim hinterlassen eines "
371
  "Kommentars anlegt"
372
 
373
- #: ../../admin/wp-slimstat-admin.php:734
374
  #, fuzzy
375
  msgid "Advanced Filters"
376
  msgstr "-- Erweiterte Filter --"
377
 
378
- #: ../../admin/wp-slimstat-admin.php:737 ../../admin/view/index.php:49
379
  #: ../../admin/view/wp-slimstat-reports.php:51
380
  msgid "Browser Version"
381
  msgstr "Browser-Version"
382
 
383
- #: ../../admin/wp-slimstat-admin.php:737
384
  msgid "user agent version (9.0, 11, ...)"
385
  msgstr "Browser-Version (9.0, 11, ...)"
386
 
387
- #: ../../admin/wp-slimstat-admin.php:738 ../../admin/view/index.php:50
388
  #: ../../admin/view/wp-slimstat-reports.php:52
389
  msgid "Browser Type"
390
  msgstr "Browser-Typ"
391
 
392
- #: ../../admin/wp-slimstat-admin.php:738
393
  msgid ""
394
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
395
  "all others"
@@ -397,33 +398,33 @@ msgstr ""
397
  "1 = Suchmaschinen Crawler, 2 = Mobiles Gerät, 3 = Feed-Reader, 0 = alle "
398
  "anderen"
399
 
400
- #: ../../admin/wp-slimstat-admin.php:739 ../../admin/view/index.php:52
401
  #: ../../admin/view/wp-slimstat-reports.php:54
402
  msgid "Color Depth"
403
  msgstr "Farbtiefe"
404
 
405
- #: ../../admin/wp-slimstat-admin.php:739
406
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
407
  msgstr "Farbtiefe des Monitors des Besuchers (8, 16, 24, ...)"
408
 
409
- #: ../../admin/wp-slimstat-admin.php:740 ../../admin/view/index.php:53
410
  #: ../../admin/view/wp-slimstat-reports.php:55
411
  msgid "CSS Version"
412
  msgstr "CSS Version"
413
 
414
- #: ../../admin/wp-slimstat-admin.php:740
415
  msgid ""
416
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
417
  "values)"
418
  msgstr ""
419
  "Vom Browser unterstützter CSS standard (1, 2, 3 und andere ganze Zahlen)"
420
 
421
- #: ../../admin/wp-slimstat-admin.php:741 ../../admin/view/index.php:54
422
  #: ../../admin/view/wp-slimstat-reports.php:56
423
  msgid "Pageview Attributes"
424
  msgstr "Eigenschaften Seitenaufrufe"
425
 
426
- #: ../../admin/wp-slimstat-admin.php:741
427
  msgid ""
428
  "this field is set to <em>[pre]</em> if the resource has been accessed "
429
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -433,34 +434,34 @@ msgstr ""
433
  "target=\"_blank\" href=\"https://developer.mozilla.org/en/"
434
  "Link_prefetching_FAQ\">Link Prefetching</a> oder eine &auml;hnliche "
435
 
436
- #: ../../admin/wp-slimstat-admin.php:742 ../../admin/view/index.php:56
437
  #: ../../admin/view/wp-slimstat-reports.php:58
438
  msgid "Post Author"
439
  msgstr "Autor der Seiten"
440
 
441
- #: ../../admin/wp-slimstat-admin.php:742
442
  msgid "author associated to that post/page when the resource was accessed"
443
  msgstr "Der dem Artikel / der Seite zugeordnete Autor"
444
 
445
- #: ../../admin/wp-slimstat-admin.php:743 ../../admin/view/index.php:57
446
  #: ../../admin/view/wp-slimstat-reports.php:59
447
  msgid "Post Category ID"
448
  msgstr "Kategorie-ID der Seite"
449
 
450
- #: ../../admin/wp-slimstat-admin.php:743
451
  msgid "ID of the category/term associated to the resource, when available"
452
  msgstr "ID der zugeordneten Kategorie, falls vorhanden"
453
 
454
- #: ../../admin/wp-slimstat-admin.php:744
455
  msgid "visitor's originating IP address, if available"
456
  msgstr "IP Adresse des Besuchers, falls bekannt"
457
 
458
- #: ../../admin/wp-slimstat-admin.php:745 ../../admin/view/index.php:59
459
  #: ../../admin/view/wp-slimstat-reports.php:61
460
  msgid "Resource Content Type"
461
  msgstr "Inhalt der Ressource"
462
 
463
- #: ../../admin/wp-slimstat-admin.php:745
464
  msgid ""
465
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
466
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -473,21 +474,21 @@ msgstr ""
473
  "feed, home; F&uuml;r mehr Infos s. <a target=\"_blank\" href=\"http://codex."
474
  "wordpress.org/Conditional_Tags\">Conditional Tags</a>."
475
 
476
- #: ../../admin/wp-slimstat-admin.php:746 ../../admin/view/index.php:61
477
  #: ../../admin/view/wp-slimstat-reports.php:63
478
  msgid "Screen Resolution"
479
  msgstr "Bildschirm-Aufl&ouml;sung"
480
 
481
- #: ../../admin/wp-slimstat-admin.php:746
482
  msgid "viewport width and height (1024x768, 800x600, ...)"
483
  msgstr "Breite und H&ouml;he des sichtbaren Bereiches"
484
 
485
- #: ../../admin/wp-slimstat-admin.php:747 ../../admin/view/index.php:62
486
  #: ../../admin/view/wp-slimstat-reports.php:64
487
  msgid "Visit ID"
488
  msgstr "Besuchs-ID"
489
 
490
- #: ../../admin/wp-slimstat-admin.php:747
491
  msgid ""
492
  "generally used in conjunction with <em>is not empty</em>, identifies human "
493
  "visitors"
@@ -495,11 +496,11 @@ msgstr ""
495
  "Meist im Zusammenhang mit <em>nicht leer</em> verwendet, kennzeichnet echte "
496
  "Besucher"
497
 
498
- #: ../../admin/wp-slimstat-admin.php:748
499
  msgid "Date Filters"
500
  msgstr "Datumsfilter"
501
 
502
- #: ../../admin/wp-slimstat-admin.php:748
503
  msgid ""
504
  "you can specify the timeframe by entering a number in the <em>interval</em> "
505
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -509,22 +510,22 @@ msgstr ""
509
  "-1 erzeugt ein Intervall seit Beginn des Jahres / Monats, z.B. Tag=1, "
510
  "Monat=1, Jahr leer, Intervall=-1 erzeugt einen 'seit Jahresbeginn' Filter."
511
 
512
- #: ../../admin/wp-slimstat-admin.php:749
513
  msgid "SERP Position"
514
  msgstr "Suchmaschinenrang"
515
 
516
- #: ../../admin/wp-slimstat-admin.php:749
517
  msgid ""
518
  "set the filter to Referer contains cd=N&, where N is the position you are "
519
  "looking for"
520
  msgstr ""
521
 
522
- #: ../../admin/wp-slimstat-admin.php:765 ../../admin/config/index.php:9
523
  #: ../../admin/config/index.php:205
524
  msgid "Support"
525
  msgstr "Support"
526
 
527
- #: ../../admin/wp-slimstat-admin.php:774
528
  #, fuzzy
529
  msgid ""
530
  "<a href=\"http://slimstat.getused.to.it/\">WP SlimStat</a> is and will "
@@ -623,7 +624,7 @@ msgid ""
623
  msgstr ""
624
 
625
  #: ../../admin/config/index.php:21
626
- #: ../../admin/view/wp-slimstat-reports.php:589
627
  #, fuzzy
628
  msgid "Javascript Mode"
629
  msgstr "Tracking per JavaScript"
@@ -666,9 +667,9 @@ msgstr ""
666
  "Eintr&auml;ge, die vor dem %s erfasst wurden werden unwiderruflich gel&ouml;"
667
  "scht."
668
 
669
- #: ../../admin/config/index.php:22 ../../admin/view/index.php:31
670
- #: ../../admin/view/index.php:106 ../../admin/view/wp-slimstat-reports.php:69
671
- #: ../../admin/view/wp-slimstat-reports.php:591
672
  msgid "days"
673
  msgstr "Tage"
674
 
@@ -1012,20 +1013,10 @@ msgid ""
1012
  "will not be tracked. Capabilities are case-insensitive."
1013
  msgstr ""
1014
 
1015
- #: ../../admin/config/index.php:79
1016
- #, fuzzy
1017
- msgid "Ignore users"
1018
- msgstr "Bekannte Benutzer"
1019
-
1020
  #: ../../admin/config/index.php:82
1021
  msgid "Ignore users (username not found)"
1022
  msgstr ""
1023
 
1024
- #: ../../admin/config/index.php:102
1025
- #, fuzzy
1026
- msgid "Users by capability"
1027
- msgstr "Browser-F&auml;higkeiten"
1028
-
1029
  #: ../../admin/config/index.php:105
1030
  msgid ""
1031
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
@@ -1057,7 +1048,7 @@ msgid ""
1057
  "case, the list has precedence over the capability."
1058
  msgstr ""
1059
 
1060
- #: ../../admin/config/index.php:117 ../../admin/config/index.php:177
1061
  msgid "Capability to Admin"
1062
  msgstr ""
1063
 
@@ -1069,7 +1060,7 @@ msgid ""
1069
  "here below can be used to override this option for specific users."
1070
  msgstr ""
1071
 
1072
- #: ../../admin/config/index.php:118 ../../admin/config/index.php:133
1073
  msgid "Read access"
1074
  msgstr ""
1075
 
@@ -1081,7 +1072,7 @@ msgid ""
1081
  "Usernames are case sensitive."
1082
  msgstr ""
1083
 
1084
- #: ../../admin/config/index.php:119 ../../admin/config/index.php:164
1085
  msgid "Config access"
1086
  msgstr ""
1087
 
@@ -1099,10 +1090,6 @@ msgstr ""
1099
  msgid "Read access: username not found"
1100
  msgstr ""
1101
 
1102
- #: ../../admin/config/index.php:146
1103
- msgid "Capability to Read"
1104
- msgstr ""
1105
-
1106
  #: ../../admin/config/index.php:149 ../../admin/config/index.php:180
1107
  msgid ""
1108
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
@@ -1230,202 +1217,229 @@ msgstr ""
1230
  "23:55=Silvester."
1231
 
1232
  #: ../../admin/config/index.php:199
1233
- msgid "Enable ADN"
1234
  msgstr ""
1235
 
1236
  #: ../../admin/config/index.php:199
1237
  msgid ""
1238
- "Activates our partner's sponsorship network. It allows us to keep this "
1239
- "plugin free and offer premium functionality at no added cost to you."
 
 
1240
  msgstr ""
1241
 
1242
- #: ../../admin/config/maintenance.php:9
1243
  msgid ""
1244
  "Are you sure you want to remove all the information about your hits and "
1245
  "visits?"
1246
  msgstr ""
1247
 
1248
- #: ../../admin/config/maintenance.php:13
1249
  msgid "Your WP SlimStat table has been successfully emptied."
1250
  msgstr ""
1251
 
1252
- #: ../../admin/config/maintenance.php:18
1253
  msgid "Are you sure you want to reset your tabs?"
1254
  msgstr ""
1255
 
1256
- #: ../../admin/config/maintenance.php:24
1257
  msgid "Your WP SlimStat tabs have been successfully reset."
1258
  msgstr ""
1259
 
1260
- #: ../../admin/config/maintenance.php:32
1261
  msgid "Your WP SlimStat table has been successfully reset."
1262
  msgstr ""
1263
 
1264
- #: ../../admin/config/maintenance.php:34
1265
  msgid "ERROR: Your Slimstat table could not be initialized."
1266
  msgstr ""
1267
 
1268
- #: ../../admin/config/maintenance.php:43
1269
  msgid "Your WP SlimStat table has been successfully optimized."
1270
  msgstr ""
1271
 
1272
- #: ../../admin/config/maintenance.php:55
1273
  msgid "Your WP SlimStat tables have been successfully converted to InnoDB."
1274
  msgstr ""
1275
 
1276
- #: ../../admin/config/maintenance.php:64
1277
  msgid "Your WP SlimStat indexes have been successfully created."
1278
  msgstr ""
1279
 
1280
- #: ../../admin/config/maintenance.php:72
1281
  msgid "Your WP SlimStat indexes have been successfully removed."
1282
  msgstr ""
1283
 
1284
- #: ../../admin/config/maintenance.php:113
1285
  msgid "Your WP SlimStat table has been successfully cleaned. Rows affected:"
1286
  msgstr ""
1287
 
1288
- #: ../../admin/config/maintenance.php:130
1289
  msgid "Database Information"
1290
  msgstr ""
1291
 
1292
- #: ../../admin/config/maintenance.php:131
1293
  #, fuzzy
1294
  msgid "Engine"
1295
  msgstr "Suchmaschinen"
1296
 
1297
- #: ../../admin/config/maintenance.php:133
1298
  msgid ", it may take some time and exceed PHP's maximum execution time"
1299
  msgstr ""
1300
 
1301
- #: ../../admin/config/maintenance.php:134
1302
  msgid "switch to InnoDB"
1303
  msgstr ""
1304
 
1305
- #: ../../admin/config/maintenance.php:154
1306
  #, fuzzy
1307
  msgid "Size"
1308
  msgstr "Datenbank-Gr&ouml;sse"
1309
 
1310
- #: ../../admin/config/maintenance.php:154
1311
  #, fuzzy
1312
  msgid "Records"
1313
  msgstr "Suchbegriffe"
1314
 
1315
- #: ../../admin/config/maintenance.php:154
1316
  msgid "Average Record Length"
1317
  msgstr ""
1318
 
1319
- #: ../../admin/config/maintenance.php:154
1320
  msgid "Created on"
1321
  msgstr ""
1322
 
1323
- #: ../../admin/config/maintenance.php:156
1324
  msgid "Approximate Overhead"
1325
  msgstr ""
1326
 
1327
- #: ../../admin/config/maintenance.php:160
1328
  msgid "Optimize tables"
1329
  msgstr ""
1330
 
1331
- #: ../../admin/config/maintenance.php:164
1332
  msgid "Purge Data"
1333
  msgstr ""
1334
 
1335
- #: ../../admin/config/maintenance.php:167
1336
  #, fuzzy
1337
  msgid "Delete rows where"
1338
  msgstr "Zeige Seitenaufrufe wo"
1339
 
1340
- #: ../../admin/config/maintenance.php:170
1341
  msgid "IP Address"
1342
  msgstr ""
1343
 
1344
- #: ../../admin/config/maintenance.php:176
1345
  #, fuzzy
1346
  msgid "Is equal to"
1347
  msgstr "ist ungleich zu"
1348
 
1349
- #: ../../admin/config/maintenance.php:177
1350
  #, fuzzy
1351
  msgid "Contains"
1352
  msgstr "enth&auml;lt"
1353
 
1354
- #: ../../admin/config/maintenance.php:178
1355
  #, fuzzy
1356
  msgid "Does not contain"
1357
  msgstr "enth&auml;lt nicht"
1358
 
1359
- #: ../../admin/config/maintenance.php:179
1360
  #, fuzzy
1361
  msgid "Starts with"
1362
  msgstr "beginnt mit"
1363
 
1364
- #: ../../admin/config/maintenance.php:180
1365
  #, fuzzy
1366
  msgid "Ends with"
1367
  msgstr "endet mit"
1368
 
1369
- #: ../../admin/config/maintenance.php:181
1370
  #, fuzzy
1371
  msgid "Does not start with"
1372
  msgstr "beginnt mit"
1373
 
1374
- #: ../../admin/config/maintenance.php:182
1375
  #, fuzzy
1376
  msgid "Does not end with"
1377
  msgstr "endet mit"
1378
 
1379
- #: ../../admin/config/maintenance.php:186
1380
  msgid "DELETE"
1381
  msgstr ""
1382
 
1383
- #: ../../admin/config/maintenance.php:187
1384
  msgid ""
1385
  "Are you sure you want to PERMANENTLY delete these rows from your database?"
1386
  msgstr ""
1387
 
1388
- #: ../../admin/config/maintenance.php:194
1389
  msgid "Activate Indexes"
1390
  msgstr ""
1391
 
1392
- #: ../../admin/config/maintenance.php:195
1393
  msgid ""
1394
  "Use this feature if you want to improve the overall performance of your "
1395
  "stats. You will need about 30% more DB space, to store the extra information "
1396
  "required."
1397
  msgstr ""
1398
 
1399
- #: ../../admin/config/maintenance.php:199
1400
  msgid "Remove Indexes"
1401
  msgstr ""
1402
 
1403
- #: ../../admin/config/maintenance.php:200
1404
  msgid ""
1405
  "Use this feature if you want to save some DB space, while slightly degrading "
1406
  "WP SlimStat overall performances."
1407
  msgstr ""
1408
 
1409
- #: ../../admin/config/maintenance.php:204
1410
  msgid "Reset Tabs"
1411
  msgstr ""
1412
 
1413
- #: ../../admin/config/maintenance.php:205
1414
  msgid ""
1415
  "Reset SlimStat's box order settings if one or more tabs are empty (no "
1416
  "reports shown) or metrics are missing."
1417
  msgstr ""
1418
 
1419
- #: ../../admin/config/maintenance.php:208
1420
  msgid "Reset Stats"
1421
  msgstr ""
1422
 
1423
- #: ../../admin/config/maintenance.php:209
1424
  msgid ""
1425
  "Select this option if you want to empty your WP SlimStat database (does not "
1426
  "reset your settings)."
1427
  msgstr ""
1428
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1429
  #: ../../admin/config/support.php:22
1430
  msgid ""
1431
  "How valuable is monitoring your visitors for your site? WP SlimStat is and "
@@ -1483,16 +1497,17 @@ msgid "unknown"
1483
  msgstr "Unknown"
1484
 
1485
  #: ../../admin/lang/dynamic_strings.php:5
1486
- msgid "win7"
1487
- msgstr "Windows 7"
 
1488
 
1489
  #: ../../admin/lang/dynamic_strings.php:6
1490
  msgid "win8"
1491
  msgstr "Windows 8"
1492
 
1493
  #: ../../admin/lang/dynamic_strings.php:7
1494
- msgid "winphone7"
1495
- msgstr "Windows Phone"
1496
 
1497
  #: ../../admin/lang/dynamic_strings.php:8
1498
  msgid "winvista"
@@ -1591,1561 +1606,1518 @@ msgid "cygwin"
1591
  msgstr "Cygwin"
1592
 
1593
  #: ../../admin/lang/dynamic_strings.php:32
1594
- msgid "darwin"
1595
- msgstr "Darwin"
1596
-
1597
- #: ../../admin/lang/dynamic_strings.php:33
1598
  msgid "digital unix"
1599
  msgstr "Digital Unix"
1600
 
1601
- #: ../../admin/lang/dynamic_strings.php:34
1602
  msgid "risc os"
1603
  msgstr "Risc OS"
1604
 
1605
- #: ../../admin/lang/dynamic_strings.php:35
1606
- msgid "dec alpha"
1607
- msgstr "DEC Alpha"
1608
-
1609
- #: ../../admin/lang/dynamic_strings.php:36
1610
- msgid "vax"
1611
- msgstr "VAX"
1612
-
1613
- #: ../../admin/lang/dynamic_strings.php:37
1614
  msgid "openvms"
1615
  msgstr "OpenVMS"
1616
 
1617
- #: ../../admin/lang/dynamic_strings.php:38
1618
  msgid "linux"
1619
  msgstr "Linux"
1620
 
1621
- #: ../../admin/lang/dynamic_strings.php:39
1622
  msgid "freebsd"
1623
  msgstr "FreeBSD"
1624
 
1625
- #: ../../admin/lang/dynamic_strings.php:40
1626
  msgid "openbsd"
1627
  msgstr "OpenBSD"
1628
 
1629
- #: ../../admin/lang/dynamic_strings.php:41
1630
  msgid "netbsd"
1631
  msgstr "NetBSD"
1632
 
1633
- #: ../../admin/lang/dynamic_strings.php:42
1634
  msgid "debian"
1635
  msgstr "Debian"
1636
 
1637
- #: ../../admin/lang/dynamic_strings.php:43
1638
  msgid "amiga"
1639
  msgstr "Amiga"
1640
 
1641
- #: ../../admin/lang/dynamic_strings.php:44
1642
  msgid "android"
1643
  msgstr "Android"
1644
 
1645
- #: ../../admin/lang/dynamic_strings.php:45
1646
  msgid "wyderos"
1647
  msgstr "WyderOS"
1648
 
1649
- #: ../../admin/lang/dynamic_strings.php:46
1650
  msgid "iphone osx"
1651
  msgstr "iPhone OS X"
1652
 
1653
- #: ../../admin/lang/dynamic_strings.php:47
1654
  msgid "ios"
1655
  msgstr "iPhone OS X"
1656
 
1657
- #: ../../admin/lang/dynamic_strings.php:48
1658
  msgid "palm"
1659
  msgstr "Palm"
1660
 
1661
- #: ../../admin/lang/dynamic_strings.php:49
1662
  msgid "wap"
1663
  msgstr "WAP"
1664
 
1665
- #: ../../admin/lang/dynamic_strings.php:50
1666
  msgid "java"
1667
  msgstr "Java"
1668
 
1669
- #: ../../admin/lang/dynamic_strings.php:51
 
 
 
 
1670
  msgid "wince"
1671
  msgstr "Windows CE"
1672
 
1673
- #: ../../admin/lang/dynamic_strings.php:52
1674
  msgid "symbianos"
1675
  msgstr "Symbian OS"
1676
 
1677
- #: ../../admin/lang/dynamic_strings.php:53
1678
  msgid "blackberry os"
1679
  msgstr ""
1680
 
1681
- #: ../../admin/lang/dynamic_strings.php:54
1682
  msgid "webos"
1683
  msgstr "WebOS"
1684
 
1685
- #: ../../admin/lang/dynamic_strings.php:55
1686
  msgid "p-and"
1687
  msgstr "Android"
1688
 
1689
- #: ../../admin/lang/dynamic_strings.php:56
1690
  msgid "p-bla"
1691
  msgstr "BlackBerry"
1692
 
1693
- #: ../../admin/lang/dynamic_strings.php:57
1694
  msgid "p-chr"
1695
  msgstr "Chrome OS"
1696
 
1697
- #: ../../admin/lang/dynamic_strings.php:58
1698
  msgid "p-fre"
1699
  msgstr "Linux FreeBSD"
1700
 
1701
- #: ../../admin/lang/dynamic_strings.php:59
1702
  msgid "p-ios"
1703
  msgstr "Apple iOS"
1704
 
1705
- #: ../../admin/lang/dynamic_strings.php:60
1706
  msgid "p-jav"
1707
  msgstr "Java-based OS"
1708
 
1709
- #: ../../admin/lang/dynamic_strings.php:61
1710
  msgid "p-lin"
1711
  msgstr "Linux"
1712
 
1713
- #: ../../admin/lang/dynamic_strings.php:62
1714
  msgid "p-mac"
1715
  msgstr "Apple"
1716
 
1717
- #: ../../admin/lang/dynamic_strings.php:63
1718
  msgid "p-sym"
1719
  msgstr "Symbian OS"
1720
 
1721
- #: ../../admin/lang/dynamic_strings.php:64
1722
  msgid "p-unk"
1723
  msgstr "Unknown"
1724
 
1725
- #: ../../admin/lang/dynamic_strings.php:65
1726
  msgid "p-win"
1727
  msgstr "Microsoft"
1728
 
1729
- #: ../../admin/lang/dynamic_strings.php:66
1730
  msgid "powertv"
1731
  msgstr "PowerTV"
1732
 
1733
- #: ../../admin/lang/dynamic_strings.php:67
1734
  msgid "acrobat"
1735
  msgstr "Acrobat Reader"
1736
 
1737
- #: ../../admin/lang/dynamic_strings.php:68
1738
  msgid "director"
1739
  msgstr "Macromedia Director"
1740
 
1741
- #: ../../admin/lang/dynamic_strings.php:69
1742
  msgid "flash"
1743
  msgstr "Adobe Flash Player"
1744
 
1745
- #: ../../admin/lang/dynamic_strings.php:70
1746
  msgid "mediaplayer"
1747
  msgstr "Microsoft Media Player"
1748
 
1749
- #: ../../admin/lang/dynamic_strings.php:71
1750
  msgid "quicktime"
1751
  msgstr "QuickTime"
1752
 
1753
- #: ../../admin/lang/dynamic_strings.php:72
1754
  msgid "real"
1755
  msgstr "Real Player"
1756
 
1757
- #: ../../admin/lang/dynamic_strings.php:73
1758
  msgid "silverlight"
1759
  msgstr "Microsoft Silverlight"
1760
 
1761
  # Afar
1762
- #: ../../admin/lang/dynamic_strings.php:74
1763
  msgid "l-aa"
1764
  msgstr "Afar"
1765
 
1766
  # Abkhazian
1767
- #: ../../admin/lang/dynamic_strings.php:75
1768
  msgid "l-ab"
1769
  msgstr "Abkhazian"
1770
 
1771
  # Avestan
1772
- #: ../../admin/lang/dynamic_strings.php:76
1773
  msgid "l-ae"
1774
  msgstr "Avestan"
1775
 
1776
  # Afrikaans
1777
- #: ../../admin/lang/dynamic_strings.php:77
1778
  msgid "l-af"
1779
  msgstr "Afrikaans"
1780
 
1781
  # Akan
1782
- #: ../../admin/lang/dynamic_strings.php:78
1783
  msgid "l-ak"
1784
  msgstr "Akan"
1785
 
1786
  # Amharic
1787
- #: ../../admin/lang/dynamic_strings.php:79
1788
  msgid "l-am"
1789
  msgstr "Amharic"
1790
 
1791
- # Aragonese
1792
- #: ../../admin/lang/dynamic_strings.php:80
1793
- msgid "l-an"
1794
- msgstr "Aragonese"
1795
-
1796
  # Arabic
1797
- #: ../../admin/lang/dynamic_strings.php:81
1798
  msgid "l-ar"
1799
  msgstr "Arabic"
1800
 
1801
  # Assamese
1802
- #: ../../admin/lang/dynamic_strings.php:82
1803
  msgid "l-as"
1804
  msgstr "Assamese"
1805
 
1806
  # Avaric
1807
- #: ../../admin/lang/dynamic_strings.php:83
1808
  msgid "l-av"
1809
  msgstr "Avaric"
1810
 
1811
  # Aymara
1812
- #: ../../admin/lang/dynamic_strings.php:84
1813
  msgid "l-ay"
1814
  msgstr "Aymara"
1815
 
1816
  # Azerbaijani
1817
- #: ../../admin/lang/dynamic_strings.php:85
1818
  msgid "l-az"
1819
  msgstr "Azerbaijani"
1820
 
1821
  # Bashkir
1822
- #: ../../admin/lang/dynamic_strings.php:86
1823
  msgid "l-ba"
1824
  msgstr "Bashkir"
1825
 
1826
  # Belarusian
1827
- #: ../../admin/lang/dynamic_strings.php:87
1828
  msgid "l-be"
1829
  msgstr "Belarusian"
1830
 
1831
  # Bulgarian
1832
- #: ../../admin/lang/dynamic_strings.php:88
1833
  msgid "l-bg"
1834
  msgstr "Bulgarian"
1835
 
1836
  # Bihari languages
1837
- #: ../../admin/lang/dynamic_strings.php:89
1838
  msgid "l-bh"
1839
  msgstr "Bihari languages"
1840
 
1841
  # Bislama
1842
- #: ../../admin/lang/dynamic_strings.php:90
1843
  msgid "l-bi"
1844
  msgstr "Bislama"
1845
 
1846
  # Bambara
1847
- #: ../../admin/lang/dynamic_strings.php:91
1848
  msgid "l-bm"
1849
  msgstr "Bambara"
1850
 
1851
  # Bengali
1852
- #: ../../admin/lang/dynamic_strings.php:92
1853
  msgid "l-bn"
1854
  msgstr "Bengali"
1855
 
1856
  # Tibetan
1857
- #: ../../admin/lang/dynamic_strings.php:93
1858
  msgid "l-bo"
1859
  msgstr "Tibetan"
1860
 
1861
  # Breton
1862
- #: ../../admin/lang/dynamic_strings.php:94
1863
  msgid "l-br"
1864
  msgstr "Breton"
1865
 
1866
  # Bosnian
1867
- #: ../../admin/lang/dynamic_strings.php:95
1868
  msgid "l-bs"
1869
  msgstr "Bosnian"
1870
 
1871
  # Catalan; Valencian
1872
- #: ../../admin/lang/dynamic_strings.php:96
1873
  msgid "l-ca"
1874
  msgstr "Catalan; Valencian"
1875
 
1876
  # Chechen
1877
- #: ../../admin/lang/dynamic_strings.php:97
1878
  msgid "l-ce"
1879
  msgstr "Chechen"
1880
 
1881
- # Chamorro
1882
- #: ../../admin/lang/dynamic_strings.php:98
1883
- msgid "l-ch"
1884
- msgstr "Chamorro"
1885
-
1886
  # Corsican
1887
- #: ../../admin/lang/dynamic_strings.php:99
1888
  msgid "l-co"
1889
  msgstr "Corsican"
1890
 
1891
  # Cree
1892
- #: ../../admin/lang/dynamic_strings.php:100
1893
  msgid "l-cr"
1894
  msgstr "Cree"
1895
 
1896
  # Czech
1897
- #: ../../admin/lang/dynamic_strings.php:101
1898
  msgid "l-cs"
1899
  msgstr "Czech"
1900
 
1901
- # Church Slavic; Church Slavonic
1902
- #: ../../admin/lang/dynamic_strings.php:102
1903
- msgid "l-cu"
1904
- msgstr "Church Slavic; Church Slavonic"
1905
-
1906
  # Chuvash
1907
- #: ../../admin/lang/dynamic_strings.php:103
1908
  msgid "l-cv"
1909
  msgstr "Chuvash"
1910
 
1911
  # Welsh
1912
- #: ../../admin/lang/dynamic_strings.php:104
1913
  msgid "l-cy"
1914
  msgstr "Welsh"
1915
 
1916
  # Danish
1917
- #: ../../admin/lang/dynamic_strings.php:105
1918
  msgid "l-da"
1919
  msgstr "Danish"
1920
 
1921
  # German
1922
- #: ../../admin/lang/dynamic_strings.php:106
1923
  msgid "l-de"
1924
  msgstr "German"
1925
 
1926
  # Dhivehi; Divehi; Maldivian
1927
- #: ../../admin/lang/dynamic_strings.php:107
1928
  msgid "l-dv"
1929
  msgstr "Dhivehi; Divehi; Maldivian"
1930
 
1931
  # Dzongkha
1932
- #: ../../admin/lang/dynamic_strings.php:108
1933
  msgid "l-dz"
1934
  msgstr "Dzongkha"
1935
 
1936
  # Ewe
1937
- #: ../../admin/lang/dynamic_strings.php:109
1938
  msgid "l-ee"
1939
  msgstr "Ewe"
1940
 
1941
  # Modern Greek (1453-)
1942
- #: ../../admin/lang/dynamic_strings.php:110
1943
  msgid "l-el"
1944
  msgstr "Modern Greek (1453-)"
1945
 
1946
  # English
1947
- #: ../../admin/lang/dynamic_strings.php:111
1948
  msgid "l-en"
1949
  msgstr "English"
1950
 
1951
  # Esperanto
1952
- #: ../../admin/lang/dynamic_strings.php:112
1953
  msgid "l-eo"
1954
  msgstr "Esperanto"
1955
 
1956
  # Spanish; Castilian
1957
- #: ../../admin/lang/dynamic_strings.php:113
1958
  msgid "l-es"
1959
  msgstr "Spanish; Castilian"
1960
 
1961
  # Estonian
1962
- #: ../../admin/lang/dynamic_strings.php:114
1963
  msgid "l-et"
1964
  msgstr "Estonian"
1965
 
1966
  # Basque
1967
- #: ../../admin/lang/dynamic_strings.php:115
1968
  msgid "l-eu"
1969
  msgstr "Basque"
1970
 
1971
  # Persian
1972
- #: ../../admin/lang/dynamic_strings.php:116
1973
  msgid "l-fa"
1974
  msgstr "Persian"
1975
 
1976
  # Fulah
1977
- #: ../../admin/lang/dynamic_strings.php:117
1978
  msgid "l-ff"
1979
  msgstr "Fulah"
1980
 
1981
  # Finnish
1982
- #: ../../admin/lang/dynamic_strings.php:118
1983
  msgid "l-fi"
1984
  msgstr "Finnish"
1985
 
1986
  # Fijian
1987
- #: ../../admin/lang/dynamic_strings.php:119
1988
  msgid "l-fj"
1989
  msgstr "Fijian"
1990
 
1991
  # Faroese
1992
- #: ../../admin/lang/dynamic_strings.php:120
1993
  msgid "l-fo"
1994
  msgstr "Faroese"
1995
 
1996
  # French
1997
- #: ../../admin/lang/dynamic_strings.php:121
1998
  msgid "l-fr"
1999
  msgstr "French"
2000
 
2001
- # Western Frisian
2002
- #: ../../admin/lang/dynamic_strings.php:122
2003
- msgid "l-fy"
2004
- msgstr "Western Frisian"
2005
-
2006
  # Irish
2007
- #: ../../admin/lang/dynamic_strings.php:123
2008
  msgid "l-ga"
2009
  msgstr "Irish"
2010
 
2011
  # Scottish Gaelic; Gaelic
2012
- #: ../../admin/lang/dynamic_strings.php:124
2013
  msgid "l-gd"
2014
  msgstr "Scottish Gaelic; Gaelic"
2015
 
2016
  # Galician
2017
- #: ../../admin/lang/dynamic_strings.php:125
2018
  msgid "l-gl"
2019
  msgstr "Galician"
2020
 
2021
  # Guarani
2022
- #: ../../admin/lang/dynamic_strings.php:126
2023
  msgid "l-gn"
2024
  msgstr "Guarani"
2025
 
2026
  # Gujarati
2027
- #: ../../admin/lang/dynamic_strings.php:127
2028
  msgid "l-gu"
2029
  msgstr "Gujarati"
2030
 
2031
  # Manx
2032
- #: ../../admin/lang/dynamic_strings.php:128
2033
  msgid "l-gv"
2034
  msgstr "Manx"
2035
 
2036
  # Hausa
2037
- #: ../../admin/lang/dynamic_strings.php:129
2038
  msgid "l-ha"
2039
  msgstr "Hausa"
2040
 
2041
  # Hebrew
2042
- #: ../../admin/lang/dynamic_strings.php:130
2043
  msgid "l-he"
2044
  msgstr "Hebrew"
2045
 
2046
  # Hindi
2047
- #: ../../admin/lang/dynamic_strings.php:131
2048
  msgid "l-hi"
2049
  msgstr "Hindi"
2050
 
2051
- # Hiri Motu
2052
- #: ../../admin/lang/dynamic_strings.php:132
2053
- msgid "l-ho"
2054
- msgstr "Hiri Motu"
2055
-
2056
  # Croatian
2057
- #: ../../admin/lang/dynamic_strings.php:133
2058
  msgid "l-hr"
2059
  msgstr "Croatian"
2060
 
2061
  # Haitian; Haitian Creole
2062
- #: ../../admin/lang/dynamic_strings.php:134
2063
  msgid "l-ht"
2064
  msgstr "Haitian; Haitian Creole"
2065
 
2066
  # Hungarian
2067
- #: ../../admin/lang/dynamic_strings.php:135
2068
  msgid "l-hu"
2069
  msgstr "Hungarian"
2070
 
2071
  # Armenian
2072
- #: ../../admin/lang/dynamic_strings.php:136
2073
  msgid "l-hy"
2074
  msgstr "Armenian"
2075
 
2076
- # Herero
2077
- #: ../../admin/lang/dynamic_strings.php:137
2078
- msgid "l-hz"
2079
- msgstr "Herero"
2080
-
2081
  # Interlingua (International Auxiliary Language Association)
2082
- #: ../../admin/lang/dynamic_strings.php:138
2083
  msgid "l-ia"
2084
  msgstr "Interlingua (International Auxiliary Language Association)"
2085
 
2086
- # Indonesian
2087
- #: ../../admin/lang/dynamic_strings.php:139
2088
- msgid "l-id"
2089
- msgstr "Indonesian"
2090
-
2091
  # Interlingue; Occidental
2092
- #: ../../admin/lang/dynamic_strings.php:140
2093
  msgid "l-ie"
2094
  msgstr "Interlingue; Occidental"
2095
 
2096
- # Igbo
2097
- #: ../../admin/lang/dynamic_strings.php:141
2098
- msgid "l-ig"
2099
- msgstr "Igbo"
2100
-
2101
  # Sichuan Yi; Nuosu
2102
- #: ../../admin/lang/dynamic_strings.php:142
2103
  msgid "l-ii"
2104
  msgstr "Sichuan Yi; Nuosu"
2105
 
2106
  # Inupiaq
2107
- #: ../../admin/lang/dynamic_strings.php:143
2108
  msgid "l-ik"
2109
  msgstr "Inupiaq"
2110
 
2111
  # Indonesian
2112
- #: ../../admin/lang/dynamic_strings.php:144
2113
  msgid "l-in"
2114
  msgstr "Indonesian"
2115
 
2116
  # Ido
2117
- #: ../../admin/lang/dynamic_strings.php:145
2118
  msgid "l-io"
2119
  msgstr "Ido"
2120
 
2121
  # Icelandic
2122
- #: ../../admin/lang/dynamic_strings.php:146
2123
  msgid "l-is"
2124
  msgstr "Icelandic"
2125
 
2126
  # Italian
2127
- #: ../../admin/lang/dynamic_strings.php:147
2128
  msgid "l-it"
2129
  msgstr "Italian"
2130
 
2131
- # Inuktitut
2132
- #: ../../admin/lang/dynamic_strings.php:148
2133
- msgid "l-iu"
2134
- msgstr "Inuktitut"
2135
-
2136
  # Hebrew
2137
- #: ../../admin/lang/dynamic_strings.php:149
2138
  msgid "l-iw"
2139
  msgstr "Hebrew"
2140
 
2141
  # Japanese
2142
- #: ../../admin/lang/dynamic_strings.php:150
2143
  msgid "l-ja"
2144
  msgstr "Japanese"
2145
 
2146
  # Yiddish
2147
- #: ../../admin/lang/dynamic_strings.php:151
2148
  msgid "l-ji"
2149
  msgstr "Yiddish"
2150
 
2151
  # Javanese
2152
- #: ../../admin/lang/dynamic_strings.php:152
2153
  msgid "l-jv"
2154
  msgstr "Javanese"
2155
 
2156
  # Javanese
2157
- #: ../../admin/lang/dynamic_strings.php:153
2158
  msgid "l-jw"
2159
  msgstr "Javanese"
2160
 
2161
  # Georgian
2162
- #: ../../admin/lang/dynamic_strings.php:154
2163
  msgid "l-ka"
2164
  msgstr "Georgian"
2165
 
2166
  # Kongo
2167
- #: ../../admin/lang/dynamic_strings.php:155
2168
  msgid "l-kg"
2169
  msgstr "Kongo"
2170
 
2171
  # Kikuyu; Gikuyu
2172
- #: ../../admin/lang/dynamic_strings.php:156
2173
  msgid "l-ki"
2174
  msgstr "Kikuyu; Gikuyu"
2175
 
2176
  # Kuanyama; Kwanyama
2177
- #: ../../admin/lang/dynamic_strings.php:157
2178
  msgid "l-kj"
2179
  msgstr "Kuanyama; Kwanyama"
2180
 
2181
  # Kazakh
2182
- #: ../../admin/lang/dynamic_strings.php:158
2183
  msgid "l-kk"
2184
  msgstr "Kazakh"
2185
 
2186
  # Kalaallisut; Greenlandic
2187
- #: ../../admin/lang/dynamic_strings.php:159
2188
  msgid "l-kl"
2189
  msgstr "Kalaallisut; Greenlandic"
2190
 
2191
  # Central Khmer
2192
- #: ../../admin/lang/dynamic_strings.php:160
2193
  msgid "l-km"
2194
  msgstr "Central Khmer"
2195
 
2196
  # Kannada
2197
- #: ../../admin/lang/dynamic_strings.php:161
2198
  msgid "l-kn"
2199
  msgstr "Kannada"
2200
 
2201
  # Korean
2202
- #: ../../admin/lang/dynamic_strings.php:162
2203
  msgid "l-ko"
2204
  msgstr "Korean"
2205
 
2206
  # Kanuri
2207
- #: ../../admin/lang/dynamic_strings.php:163
2208
  msgid "l-kr"
2209
  msgstr "Kanuri"
2210
 
2211
  # Kashmiri
2212
- #: ../../admin/lang/dynamic_strings.php:164
2213
  msgid "l-ks"
2214
  msgstr "Kashmiri"
2215
 
2216
  # Kurdish
2217
- #: ../../admin/lang/dynamic_strings.php:165
2218
  msgid "l-ku"
2219
  msgstr "Kurdish"
2220
 
2221
  # Komi
2222
- #: ../../admin/lang/dynamic_strings.php:166
2223
  msgid "l-kv"
2224
  msgstr "Komi"
2225
 
2226
  # Cornish
2227
- #: ../../admin/lang/dynamic_strings.php:167
2228
  msgid "l-kw"
2229
  msgstr "Cornish"
2230
 
2231
  # Kirghiz; Kyrgyz
2232
- #: ../../admin/lang/dynamic_strings.php:168
2233
  msgid "l-ky"
2234
  msgstr "Kirghiz; Kyrgyz"
2235
 
2236
  # Latin
2237
- #: ../../admin/lang/dynamic_strings.php:169
2238
  msgid "l-la"
2239
  msgstr "Latin"
2240
 
2241
  # Luxembourgish; Letzeburgesch
2242
- #: ../../admin/lang/dynamic_strings.php:170
2243
  msgid "l-lb"
2244
  msgstr "Luxembourgish; Letzeburgesch"
2245
 
2246
  # Ganda
2247
- #: ../../admin/lang/dynamic_strings.php:171
2248
  msgid "l-lg"
2249
  msgstr "Ganda"
2250
 
2251
  # Limburgan; Limburge; Limburgish
2252
- #: ../../admin/lang/dynamic_strings.php:172
2253
  msgid "l-li"
2254
  msgstr "Limburgan; Limburge; Limburgish"
2255
 
2256
  # Lingala
2257
- #: ../../admin/lang/dynamic_strings.php:173
2258
  msgid "l-ln"
2259
  msgstr "Lingala"
2260
 
2261
  # Lao
2262
- #: ../../admin/lang/dynamic_strings.php:174
2263
  msgid "l-lo"
2264
  msgstr "Lao"
2265
 
2266
  # Lithuanian
2267
- #: ../../admin/lang/dynamic_strings.php:175
2268
  msgid "l-lt"
2269
  msgstr "Lithuanian"
2270
 
2271
  # Luba-Katanga
2272
- #: ../../admin/lang/dynamic_strings.php:176
2273
  msgid "l-lu"
2274
  msgstr "Luba-Katanga"
2275
 
2276
  # Latvian
2277
- #: ../../admin/lang/dynamic_strings.php:177
2278
  msgid "l-lv"
2279
  msgstr "Latvian"
2280
 
2281
  # Malagasy
2282
- #: ../../admin/lang/dynamic_strings.php:178
2283
  msgid "l-mg"
2284
  msgstr "Malagasy"
2285
 
2286
  # Marshallese
2287
- #: ../../admin/lang/dynamic_strings.php:179
2288
  msgid "l-mh"
2289
  msgstr "Marshallese"
2290
 
2291
  # Maori
2292
- #: ../../admin/lang/dynamic_strings.php:180
2293
  msgid "l-mi"
2294
  msgstr "Maori"
2295
 
2296
  # Macedonian
2297
- #: ../../admin/lang/dynamic_strings.php:181
2298
  msgid "l-mk"
2299
  msgstr "Macedonian"
2300
 
2301
  # Malayalam
2302
- #: ../../admin/lang/dynamic_strings.php:182
2303
  msgid "l-ml"
2304
  msgstr "Malayalam"
2305
 
2306
  # Mongolian
2307
- #: ../../admin/lang/dynamic_strings.php:183
2308
  msgid "l-mn"
2309
  msgstr "Mongolian"
2310
 
2311
  # Moldavian; Moldovan
2312
- #: ../../admin/lang/dynamic_strings.php:184
2313
  msgid "l-mo"
2314
  msgstr "Moldavian; Moldovan"
2315
 
2316
  # Marathi
2317
- #: ../../admin/lang/dynamic_strings.php:185
2318
  msgid "l-mr"
2319
  msgstr "Marathi"
2320
 
2321
  # Malay
2322
- #: ../../admin/lang/dynamic_strings.php:186
2323
  msgid "l-ms"
2324
  msgstr "Malay"
2325
 
2326
  # Maltese
2327
- #: ../../admin/lang/dynamic_strings.php:187
2328
  msgid "l-mt"
2329
  msgstr "Maltese"
2330
 
2331
  # Burmese
2332
- #: ../../admin/lang/dynamic_strings.php:188
2333
  msgid "l-my"
2334
  msgstr "Burmese"
2335
 
2336
  # Nauru
2337
- #: ../../admin/lang/dynamic_strings.php:189
2338
  msgid "l-na"
2339
  msgstr "Nauru"
2340
 
2341
  # Norwegian Bokmål
2342
- #: ../../admin/lang/dynamic_strings.php:190
2343
  msgid "l-nb"
2344
  msgstr "Norwegian Bokmål"
2345
 
2346
  # North Ndebele
2347
- #: ../../admin/lang/dynamic_strings.php:191
2348
  msgid "l-nd"
2349
  msgstr "North Ndebele"
2350
 
2351
  # Nepali
2352
- #: ../../admin/lang/dynamic_strings.php:192
2353
  msgid "l-ne"
2354
  msgstr "Nepali"
2355
 
2356
  # Ndonga
2357
- #: ../../admin/lang/dynamic_strings.php:193
2358
  msgid "l-ng"
2359
  msgstr "Ndonga"
2360
 
2361
  # Dutch; Flemish
2362
- #: ../../admin/lang/dynamic_strings.php:194
2363
  msgid "l-nl"
2364
  msgstr "Dutch; Flemish"
2365
 
2366
  # Norwegian Nynorsk
2367
- #: ../../admin/lang/dynamic_strings.php:195
2368
  msgid "l-nn"
2369
  msgstr "Norwegian Nynorsk"
2370
 
2371
  # Norwegian
2372
- #: ../../admin/lang/dynamic_strings.php:196
2373
  msgid "l-no"
2374
  msgstr "Norwegian"
2375
 
2376
- # South Ndebele
2377
- #: ../../admin/lang/dynamic_strings.php:197
2378
- msgid "l-nr"
2379
- msgstr "South Ndebele"
2380
-
2381
  # Navajo; Navaho
2382
- #: ../../admin/lang/dynamic_strings.php:198
2383
  msgid "l-nv"
2384
  msgstr "Navajo; Navaho"
2385
 
2386
  # Nyanja; Chewa; Chichewa
2387
- #: ../../admin/lang/dynamic_strings.php:199
2388
  msgid "l-ny"
2389
  msgstr "Nyanja; Chewa; Chichewa"
2390
 
2391
  # Occitan (post 1500)
2392
- #: ../../admin/lang/dynamic_strings.php:200
2393
  msgid "l-oc"
2394
  msgstr "Occitan (post 1500)"
2395
 
2396
  # Ojibwa
2397
- #: ../../admin/lang/dynamic_strings.php:201
2398
  msgid "l-oj"
2399
  msgstr "Ojibwa"
2400
 
2401
  # Oromo
2402
- #: ../../admin/lang/dynamic_strings.php:202
2403
  msgid "l-om"
2404
  msgstr "Oromo"
2405
 
2406
  # Oriya
2407
- #: ../../admin/lang/dynamic_strings.php:203
2408
  msgid "l-or"
2409
  msgstr "Oriya"
2410
 
2411
  # Ossetian; Ossetic
2412
- #: ../../admin/lang/dynamic_strings.php:204
2413
  msgid "l-os"
2414
  msgstr "Ossetian; Ossetic"
2415
 
2416
  # Panjabi; Punjabi
2417
- #: ../../admin/lang/dynamic_strings.php:205
2418
  msgid "l-pa"
2419
  msgstr "Panjabi; Punjabi"
2420
 
2421
  # Pali
2422
- #: ../../admin/lang/dynamic_strings.php:206
2423
  msgid "l-pi"
2424
  msgstr "Pali"
2425
 
2426
  # Polish
2427
- #: ../../admin/lang/dynamic_strings.php:207
2428
  msgid "l-pl"
2429
  msgstr "Polish"
2430
 
2431
  # Polish
2432
- #: ../../admin/lang/dynamic_strings.php:208
2433
  msgid "l-pl-pl"
2434
  msgstr "Polish (Poland)"
2435
 
2436
  # Pushto; Pashto
2437
- #: ../../admin/lang/dynamic_strings.php:209
2438
  msgid "l-ps"
2439
  msgstr "Pushto; Pashto"
2440
 
2441
  # Portuguese
2442
- #: ../../admin/lang/dynamic_strings.php:210
2443
  msgid "l-pt"
2444
  msgstr "Portuguese"
2445
 
2446
  # Portuguese
2447
- #: ../../admin/lang/dynamic_strings.php:211
2448
  msgid "l-pt-pt"
2449
  msgstr "Portuguese (Portugal)"
2450
 
2451
  # Quechua
2452
- #: ../../admin/lang/dynamic_strings.php:212
2453
  msgid "l-qu"
2454
  msgstr "Quechua"
2455
 
2456
  # Romansh
2457
- #: ../../admin/lang/dynamic_strings.php:213
2458
  msgid "l-rm"
2459
  msgstr "Romansh"
2460
 
2461
  # Rundi
2462
- #: ../../admin/lang/dynamic_strings.php:214
2463
  msgid "l-rn"
2464
  msgstr "Rundi"
2465
 
2466
  # Romanian; Moldavian; Moldovan
2467
- #: ../../admin/lang/dynamic_strings.php:215
2468
  msgid "l-ro"
2469
  msgstr "Romanian; Moldavian; Moldovan"
2470
 
2471
  # Russian
2472
- #: ../../admin/lang/dynamic_strings.php:216
2473
  msgid "l-ru"
2474
  msgstr "Russian"
2475
 
2476
  # Kinyarwanda
2477
- #: ../../admin/lang/dynamic_strings.php:217
2478
  msgid "l-rw"
2479
  msgstr "Kinyarwanda"
2480
 
2481
- # Sanskrit
2482
- #: ../../admin/lang/dynamic_strings.php:218
2483
- msgid "l-sa"
2484
- msgstr "Sanskrit"
2485
-
2486
  # Sardinian
2487
- #: ../../admin/lang/dynamic_strings.php:219
2488
  msgid "l-sc"
2489
  msgstr "Sardinian"
2490
 
2491
  # Sindhi
2492
- #: ../../admin/lang/dynamic_strings.php:220
2493
  msgid "l-sd"
2494
  msgstr "Sindhi"
2495
 
2496
  # Northern Sami
2497
- #: ../../admin/lang/dynamic_strings.php:221
2498
  msgid "l-se"
2499
  msgstr "Northern Sami"
2500
 
2501
  # Sango
2502
- #: ../../admin/lang/dynamic_strings.php:222
2503
  msgid "l-sg"
2504
  msgstr "Sango"
2505
 
2506
  # Serbo-Croatian
2507
- #: ../../admin/lang/dynamic_strings.php:223
2508
  msgid "l-sh"
2509
  msgstr "Serbo-Croatian"
2510
 
2511
  # Sinhala; Sinhalese
2512
- #: ../../admin/lang/dynamic_strings.php:224
2513
  msgid "l-si"
2514
  msgstr "Sinhala; Sinhalese"
2515
 
2516
  # Slovak
2517
- #: ../../admin/lang/dynamic_strings.php:225
2518
  msgid "l-sk"
2519
  msgstr "Slovak"
2520
 
2521
  # Slovenian
2522
- #: ../../admin/lang/dynamic_strings.php:226
2523
  msgid "l-sl"
2524
  msgstr "Slovenian"
2525
 
2526
  # Samoan
2527
- #: ../../admin/lang/dynamic_strings.php:227
2528
  msgid "l-sm"
2529
  msgstr "Samoan"
2530
 
2531
  # Shona
2532
- #: ../../admin/lang/dynamic_strings.php:228
2533
  msgid "l-sn"
2534
  msgstr "Shona"
2535
 
2536
  # Somali
2537
- #: ../../admin/lang/dynamic_strings.php:229
2538
  msgid "l-so"
2539
  msgstr "Somali"
2540
 
2541
  # Albanian
2542
- #: ../../admin/lang/dynamic_strings.php:230
2543
  msgid "l-sq"
2544
  msgstr "Albanian"
2545
 
2546
  # Serbian
2547
- #: ../../admin/lang/dynamic_strings.php:231
2548
  msgid "l-sr"
2549
  msgstr "Serbian"
2550
 
2551
  # Swati
2552
- #: ../../admin/lang/dynamic_strings.php:232
2553
  msgid "l-ss"
2554
  msgstr "Swati"
2555
 
2556
  # Southern Sotho
2557
- #: ../../admin/lang/dynamic_strings.php:233
2558
  msgid "l-st"
2559
  msgstr "Southern Sotho"
2560
 
2561
  # Sundanese
2562
- #: ../../admin/lang/dynamic_strings.php:234
2563
  msgid "l-su"
2564
  msgstr "Sundanese"
2565
 
2566
  # Swedish
2567
- #: ../../admin/lang/dynamic_strings.php:235
2568
  msgid "l-sv"
2569
  msgstr "Swedish"
2570
 
2571
  # Swahili
2572
- #: ../../admin/lang/dynamic_strings.php:236
2573
  msgid "l-sw"
2574
  msgstr "Swahili"
2575
 
2576
  # Tamil
2577
- #: ../../admin/lang/dynamic_strings.php:237
2578
  msgid "l-ta"
2579
  msgstr "Tamil"
2580
 
2581
  # Telugu
2582
- #: ../../admin/lang/dynamic_strings.php:238
2583
  msgid "l-te"
2584
  msgstr "Telugu"
2585
 
2586
  # Tajik
2587
- #: ../../admin/lang/dynamic_strings.php:239
2588
  msgid "l-tg"
2589
  msgstr "Tajik"
2590
 
2591
  # Thai
2592
- #: ../../admin/lang/dynamic_strings.php:240
2593
  msgid "l-th"
2594
  msgstr "Thai"
2595
 
2596
  # Thai
2597
- #: ../../admin/lang/dynamic_strings.php:241
2598
  msgid "l-th-th"
2599
  msgstr "Thai (Thailand)"
2600
 
2601
  # Tigrinya
2602
- #: ../../admin/lang/dynamic_strings.php:242
2603
  msgid "l-ti"
2604
  msgstr "Tigrinya"
2605
 
2606
  # Turkmen
2607
- #: ../../admin/lang/dynamic_strings.php:243
2608
  msgid "l-tk"
2609
  msgstr "Turkmen"
2610
 
2611
  # Tagalog
2612
- #: ../../admin/lang/dynamic_strings.php:244
2613
  msgid "l-tl"
2614
  msgstr "Tagalog"
2615
 
2616
  # Tswana
2617
- #: ../../admin/lang/dynamic_strings.php:245
2618
  msgid "l-tn"
2619
  msgstr "Tswana"
2620
 
2621
  # Tonga (Tonga Islands)
2622
- #: ../../admin/lang/dynamic_strings.php:246
2623
  msgid "l-to"
2624
  msgstr "Tonga (Tonga Islands)"
2625
 
2626
  # Turkish
2627
- #: ../../admin/lang/dynamic_strings.php:247
2628
  msgid "l-tr"
2629
  msgstr "Turkish"
2630
 
2631
  # Tsonga
2632
- #: ../../admin/lang/dynamic_strings.php:248
2633
  msgid "l-ts"
2634
  msgstr "Tsonga"
2635
 
2636
  # Tatar
2637
- #: ../../admin/lang/dynamic_strings.php:249
2638
  msgid "l-tt"
2639
  msgstr "Tatar"
2640
 
2641
- # Twi
2642
- #: ../../admin/lang/dynamic_strings.php:250
2643
- msgid "l-tw"
2644
- msgstr "Twi"
2645
-
2646
  # Tahitian
2647
- #: ../../admin/lang/dynamic_strings.php:251
2648
  msgid "l-ty"
2649
  msgstr "Tahitian"
2650
 
2651
  # Uighur; Uyghur
2652
- #: ../../admin/lang/dynamic_strings.php:252
2653
  msgid "l-ug"
2654
  msgstr "Uighur; Uyghur"
2655
 
2656
  # Ukrainian
2657
- #: ../../admin/lang/dynamic_strings.php:253
2658
  msgid "l-uk"
2659
  msgstr "Ukrainian"
2660
 
2661
  # Urdu
2662
- #: ../../admin/lang/dynamic_strings.php:254
2663
  msgid "l-ur"
2664
  msgstr "Urdu"
2665
 
2666
  # Uzbek
2667
- #: ../../admin/lang/dynamic_strings.php:255
2668
  msgid "l-uz"
2669
  msgstr "Uzbek"
2670
 
2671
  # Venda
2672
- #: ../../admin/lang/dynamic_strings.php:256
2673
  msgid "l-ve"
2674
  msgstr "Venda"
2675
 
2676
  # Vietnamese
2677
- #: ../../admin/lang/dynamic_strings.php:257
2678
  msgid "l-vi"
2679
  msgstr "Vietnamese"
2680
 
2681
  # Vietnamese
2682
- #: ../../admin/lang/dynamic_strings.php:258
2683
  msgid "l-vi-vn"
2684
  msgstr "Vietnamese (Vietnam)"
2685
 
2686
  # Volapük
2687
- #: ../../admin/lang/dynamic_strings.php:259
2688
  msgid "l-vo"
2689
  msgstr "Volapük"
2690
 
2691
- # Walloon
2692
- #: ../../admin/lang/dynamic_strings.php:260
2693
- msgid "l-wa"
2694
- msgstr "Walloon"
2695
-
2696
  # Wolof
2697
- #: ../../admin/lang/dynamic_strings.php:261
2698
  msgid "l-wo"
2699
  msgstr "Wolof"
2700
 
2701
  # Xhosa
2702
- #: ../../admin/lang/dynamic_strings.php:262
2703
  msgid "l-xh"
2704
  msgstr "Xhosa"
2705
 
2706
  # Yiddish
2707
- #: ../../admin/lang/dynamic_strings.php:263
2708
  msgid "l-yi"
2709
  msgstr "Yiddish"
2710
 
2711
  # Yoruba
2712
- #: ../../admin/lang/dynamic_strings.php:264
2713
  msgid "l-yo"
2714
  msgstr "Yoruba"
2715
 
2716
  # Zhuang; Chuang
2717
- #: ../../admin/lang/dynamic_strings.php:265
2718
  msgid "l-za"
2719
  msgstr "Zhuang; Chuang"
2720
 
2721
  # Chinese
2722
- #: ../../admin/lang/dynamic_strings.php:266
2723
  msgid "l-zh"
2724
  msgstr "Chinese"
2725
 
2726
  # Zulu
2727
- #: ../../admin/lang/dynamic_strings.php:267
2728
  msgid "l-zu"
2729
  msgstr "Zulu"
2730
 
2731
  # Arabic (Saudi Arabia)
2732
- #: ../../admin/lang/dynamic_strings.php:268
2733
  msgid "l-ar-sa"
2734
  msgstr "Arabic (Saudi Arabia)"
2735
 
2736
  # Arabic (Iraq)
2737
- #: ../../admin/lang/dynamic_strings.php:269
2738
  msgid "l-ar-iq"
2739
  msgstr "Arabic (Iraq)"
2740
 
2741
  # Arabic (Egypt)
2742
- #: ../../admin/lang/dynamic_strings.php:270
2743
  msgid "l-ar-eg"
2744
  msgstr "Arabic (Egypt)"
2745
 
2746
  # Arabic (Libya)
2747
- #: ../../admin/lang/dynamic_strings.php:271
2748
  msgid "l-ar-ly"
2749
  msgstr "Arabic (Libya)"
2750
 
2751
  # Arabic (Algeria)
2752
- #: ../../admin/lang/dynamic_strings.php:272
2753
  msgid "l-ar-dz"
2754
  msgstr "Arabic (Algeria)"
2755
 
2756
  # Arabic (Morocco)
2757
- #: ../../admin/lang/dynamic_strings.php:273
2758
  msgid "l-ar-ma"
2759
  msgstr "Arabic (Morocco)"
2760
 
2761
  # Arabic (Tunisia)
2762
- #: ../../admin/lang/dynamic_strings.php:274
2763
  msgid "l-ar-tn"
2764
  msgstr "Arabic (Tunisia)"
2765
 
2766
  # Arabic (Oman)
2767
- #: ../../admin/lang/dynamic_strings.php:275
2768
  msgid "l-ar-om"
2769
  msgstr "Arabic (Oman)"
2770
 
2771
  # Arabic (Yemen)
2772
- #: ../../admin/lang/dynamic_strings.php:276
2773
  msgid "l-ar-ye"
2774
  msgstr "Arabic (Yemen)"
2775
 
2776
  # Arabic (Syria)
2777
- #: ../../admin/lang/dynamic_strings.php:277
2778
  msgid "l-ar-sy"
2779
  msgstr "Arabic (Syria)"
2780
 
2781
  # Arabic (Jordan)
2782
- #: ../../admin/lang/dynamic_strings.php:278
2783
  msgid "l-ar-jo"
2784
  msgstr "Arabic (Jordan)"
2785
 
2786
  # Arabic (Lebanon)
2787
- #: ../../admin/lang/dynamic_strings.php:279
2788
  msgid "l-ar-lb"
2789
  msgstr "Arabic (Lebanon)"
2790
 
2791
  # Arabic (Kuwait)
2792
- #: ../../admin/lang/dynamic_strings.php:280
2793
  msgid "l-ar-kw"
2794
  msgstr "Arabic (Kuwait)"
2795
 
2796
  # Arabic (United Arab Emirates)
2797
- #: ../../admin/lang/dynamic_strings.php:281
2798
  msgid "l-ar-ae"
2799
  msgstr "Arabic (United Arab Emirates)"
2800
 
2801
  # Arabic (Bahrain)
2802
- #: ../../admin/lang/dynamic_strings.php:282
2803
  msgid "l-ar-bh"
2804
  msgstr "Arabic (Bahrain)"
2805
 
2806
  # Arabic (Qatar)
2807
- #: ../../admin/lang/dynamic_strings.php:283
2808
  msgid "l-ar-qa"
2809
  msgstr "Arabic (Qatar)"
2810
 
 
 
 
 
 
 
2811
  # Chinese (China)
2812
- #: ../../admin/lang/dynamic_strings.php:284
2813
  msgid "l-zh-cn"
2814
  msgstr "Chinese (China)"
2815
 
2816
  # Chinese (Taiwan)
2817
- #: ../../admin/lang/dynamic_strings.php:285
2818
  msgid "l-zh-tw"
2819
  msgstr "Taiwanese"
2820
 
2821
  # Chinese (Hong Kong)
2822
- #: ../../admin/lang/dynamic_strings.php:286
2823
  msgid "l-zh-hk"
2824
  msgstr "Chinese (Hong Kong)"
2825
 
2826
  # Chinese (Singapore)
2827
- #: ../../admin/lang/dynamic_strings.php:287
2828
  msgid "l-zh-sg"
2829
  msgstr "Chinese (Singapore)"
2830
 
2831
  # Dutch (Netherlands)
2832
- #: ../../admin/lang/dynamic_strings.php:288
2833
  msgid "l-nl-nl"
2834
  msgstr "Dutch (Netherlands)"
2835
 
2836
  # Dutch (Belgium)
2837
- #: ../../admin/lang/dynamic_strings.php:289
2838
  msgid "l-nl-be"
2839
  msgstr "Dutch (Belgium)"
2840
 
2841
  # English (United Kingdom)
2842
- #: ../../admin/lang/dynamic_strings.php:290
2843
  msgid "l-en-gb"
2844
  msgstr "English (United Kingdom)"
2845
 
2846
  # English (United States)
2847
- #: ../../admin/lang/dynamic_strings.php:291
2848
  msgid "l-en-us"
2849
  msgstr "English (United States)"
2850
 
2851
  # English (Australia)
2852
- #: ../../admin/lang/dynamic_strings.php:292
2853
  msgid "l-en-au"
2854
  msgstr "English (Australia)"
2855
 
2856
  # English (Canada)
2857
- #: ../../admin/lang/dynamic_strings.php:293
2858
  msgid "l-en-ca"
2859
  msgstr "English (Canada)"
2860
 
2861
  # English (New Zealand)
2862
- #: ../../admin/lang/dynamic_strings.php:294
2863
  msgid "l-en-nz"
2864
  msgstr "English (New Zealand)"
2865
 
2866
  # English (Ireland)
2867
- #: ../../admin/lang/dynamic_strings.php:295
2868
  msgid "l-en-ie"
2869
  msgstr "English (Ireland)"
2870
 
2871
  # English (South Africa)
2872
- #: ../../admin/lang/dynamic_strings.php:296
2873
  msgid "l-en-za"
2874
  msgstr "English (South Africa)"
2875
 
2876
  # English (Jamaica)
2877
- #: ../../admin/lang/dynamic_strings.php:297
2878
  msgid "l-en-jm"
2879
  msgstr "English (Jamaica)"
2880
 
2881
  # English (Belize)
2882
- #: ../../admin/lang/dynamic_strings.php:298
2883
  msgid "l-en-bz"
2884
  msgstr "English (Belize)"
2885
 
2886
  # English (Trinidad)
2887
- #: ../../admin/lang/dynamic_strings.php:299
2888
  msgid "l-en-tt"
2889
  msgstr "English (Trinidad)"
2890
 
2891
  # French (Belgium)
2892
- #: ../../admin/lang/dynamic_strings.php:300
2893
  msgid "l-fr-be"
2894
  msgstr "French (Belgium)"
2895
 
2896
  # French (France)
2897
- #: ../../admin/lang/dynamic_strings.php:301
2898
  msgid "l-fr-fr"
2899
  msgstr "French (France)"
2900
 
2901
  # French (Switzerland)
2902
- #: ../../admin/lang/dynamic_strings.php:302
2903
  msgid "l-fr-ch"
2904
  msgstr "French (Switzerland)"
2905
 
2906
  # French (Canada)
2907
- #: ../../admin/lang/dynamic_strings.php:303
2908
  msgid "l-fr-ca"
2909
  msgstr "French (Canada)"
2910
 
2911
  # French (Luxembourg)
2912
- #: ../../admin/lang/dynamic_strings.php:304
2913
  msgid "l-fr-lu"
2914
  msgstr "French (Luxembourg)"
2915
 
2916
  # German (Austria)
2917
- #: ../../admin/lang/dynamic_strings.php:305
2918
  msgid "l-de-at"
2919
  msgstr "German (Austria)"
2920
 
2921
  # German (Germany)
2922
- #: ../../admin/lang/dynamic_strings.php:306
2923
  msgid "l-de-de"
2924
  msgstr "German (Germany)"
2925
 
2926
  # German (Switzerland)
2927
- #: ../../admin/lang/dynamic_strings.php:307
2928
  msgid "l-de-ch"
2929
  msgstr "German (Switzerland)"
2930
 
2931
  # German (Luxembourg)
2932
- #: ../../admin/lang/dynamic_strings.php:308
2933
  msgid "l-de-lu"
2934
  msgstr "German (Luxembourg)"
2935
 
2936
  # German (Liechtenstein)
2937
- #: ../../admin/lang/dynamic_strings.php:309
2938
  msgid "l-de-li"
2939
  msgstr "German (Liechtenstein)"
2940
 
2941
  # Greek (Greece)
2942
- #: ../../admin/lang/dynamic_strings.php:310
2943
  msgid "l-el-gr"
2944
  msgstr "Greek (Greece)"
2945
 
2946
  # Spanish (Dominican Republic)
2947
- #: ../../admin/lang/dynamic_strings.php:311
2948
  msgid "l-es-do"
2949
  msgstr "Spanish (Dominican Republic)"
2950
 
2951
  # Spanish (Argentina)
2952
- #: ../../admin/lang/dynamic_strings.php:312
2953
  msgid "l-es-ar"
2954
  msgstr "Spanish (Argentina)"
2955
 
2956
  # Spanish (Colombia)
2957
- #: ../../admin/lang/dynamic_strings.php:313
2958
  msgid "l-es-co"
2959
  msgstr "Spanish (Colombia)"
2960
 
2961
  # Spanish (Mexico)
2962
- #: ../../admin/lang/dynamic_strings.php:314
2963
  msgid "l-es-mx"
2964
  msgstr "Spanish (Mexico)"
2965
 
2966
  # Spanish (Spain)
2967
- #: ../../admin/lang/dynamic_strings.php:315
2968
  msgid "l-es-es"
2969
  msgstr "Spanish (Spain)"
2970
 
2971
  # Spanish (Guatemala)
2972
- #: ../../admin/lang/dynamic_strings.php:316
2973
  msgid "l-es-gt"
2974
  msgstr "Spanish (Guatemala)"
2975
 
2976
  # Spanish (Costa Rica)
2977
- #: ../../admin/lang/dynamic_strings.php:317
2978
  msgid "l-es-cr"
2979
  msgstr "Spanish (Costa Rica)"
2980
 
2981
  # Spanish (Panama)
2982
- #: ../../admin/lang/dynamic_strings.php:318
2983
  msgid "l-es-pa"
2984
  msgstr "Spanish (Panama)"
2985
 
2986
  # Spanish (Venezuela)
2987
- #: ../../admin/lang/dynamic_strings.php:319
2988
  msgid "l-es-ve"
2989
  msgstr "Spanish (Venezuela)"
2990
 
2991
  # Spanish (Peru)
2992
- #: ../../admin/lang/dynamic_strings.php:320
2993
  msgid "l-es-pe"
2994
  msgstr "Spanish (Peru)"
2995
 
2996
  # Spanish (Ecuador)
2997
- #: ../../admin/lang/dynamic_strings.php:321
2998
  msgid "l-es-ec"
2999
  msgstr "Spanish (Ecuador)"
3000
 
3001
  # Spanish (Chile)
3002
- #: ../../admin/lang/dynamic_strings.php:322
3003
  msgid "l-es-cl"
3004
  msgstr "Spanish (Chile)"
3005
 
3006
  # Spanish (Uruguay)
3007
- #: ../../admin/lang/dynamic_strings.php:323
3008
  msgid "l-es-uy"
3009
  msgstr "Spanish (Uruguay)"
3010
 
3011
  # Spanish (Paraguay)
3012
- #: ../../admin/lang/dynamic_strings.php:324
3013
  msgid "l-es-py"
3014
  msgstr "Spanish (Paraguay)"
3015
 
3016
  # Spanish (Bolivia)
3017
- #: ../../admin/lang/dynamic_strings.php:325
3018
  msgid "l-es-bo"
3019
  msgstr "Spanish (Bolivia)"
3020
 
3021
  # Spanish (El Salvador)
3022
- #: ../../admin/lang/dynamic_strings.php:326
3023
  msgid "l-es-sv"
3024
  msgstr "Spanish (El Salvador)"
3025
 
3026
  # Spanish (Honduras)
3027
- #: ../../admin/lang/dynamic_strings.php:327
3028
  msgid "l-es-hn"
3029
  msgstr "Spanish (Honduras)"
3030
 
3031
  # Spanish (Nicaragua)
3032
- #: ../../admin/lang/dynamic_strings.php:328
3033
  msgid "l-es-ni"
3034
  msgstr "Spanish (Nicaragua)"
3035
 
3036
  # Spanish (Puerto Rico)
3037
- #: ../../admin/lang/dynamic_strings.php:329
3038
  msgid "l-es-pr"
3039
  msgstr "Spanish (Puerto Rico)"
3040
 
3041
  # Hebrew (Israel)
3042
- #: ../../admin/lang/dynamic_strings.php:330
3043
  msgid "l-he-il"
3044
  msgstr "Hebrew (Israel)"
3045
 
3046
  # Hungarian (Hungary)
3047
- #: ../../admin/lang/dynamic_strings.php:331
3048
  msgid "l-hu-hu"
3049
  msgstr "Hungarian (Hungary)"
3050
 
3051
  # Internet Explorer Easter Egg
3052
- #: ../../admin/lang/dynamic_strings.php:332
3053
  msgid "l-ie-ee"
3054
  msgstr "Internet Explorer Easter Egg"
3055
 
3056
  # Italian (Italia)
3057
- #: ../../admin/lang/dynamic_strings.php:333
3058
  msgid "l-it-it"
3059
  msgstr "Italian (Italia)"
3060
 
3061
  # Italian (Switzerland)
3062
- #: ../../admin/lang/dynamic_strings.php:334
3063
  msgid "l-it-ch"
3064
  msgstr "Italian (Switzerland)"
3065
 
3066
  # Korean (Republic of Korea)
3067
- #: ../../admin/lang/dynamic_strings.php:335
3068
  msgid "l-ko-kr"
3069
  msgstr "Korean (Republic of Korea)"
3070
 
3071
  # Korean (Democratic People's Republic of Korea)
3072
- #: ../../admin/lang/dynamic_strings.php:336
3073
  msgid "l-ko-kp"
3074
  msgstr "Korean (Democratic People's Republic of Korea)"
3075
 
 
 
 
 
 
 
3076
  # Portuguese (Brazil)
3077
- #: ../../admin/lang/dynamic_strings.php:337
3078
  msgid "l-pt-br"
3079
  msgstr "Portuguese (Brazil)"
3080
 
3081
  # Romanian (Moldava)
3082
- #: ../../admin/lang/dynamic_strings.php:338
3083
  msgid "l-ro-md"
3084
  msgstr "Romanian (Moldava)"
3085
 
 
 
 
 
 
 
3086
  # Russian (Russia)
3087
- #: ../../admin/lang/dynamic_strings.php:339
3088
  msgid "l-ru-ru"
3089
  msgstr "Russian (Russia)"
3090
 
3091
  # Russian (Moldava)
3092
- #: ../../admin/lang/dynamic_strings.php:340
3093
  msgid "l-ru-md"
3094
  msgstr "Russian (Moldava)"
3095
 
3096
  # Swedish (Sweden)
3097
- #: ../../admin/lang/dynamic_strings.php:341
3098
  msgid "l-sv-se"
3099
  msgstr "Swedish (Sweden)"
3100
 
3101
  # Swedish (Finland)
3102
- #: ../../admin/lang/dynamic_strings.php:342
3103
  msgid "l-sv-fi"
3104
  msgstr "Swedish (Finland)"
3105
 
3106
  # Japanes
3107
- #: ../../admin/lang/dynamic_strings.php:343
3108
  msgid "l-ja-jp"
3109
  msgstr "Japanese"
3110
 
3111
  # Turkish
3112
- #: ../../admin/lang/dynamic_strings.php:344
3113
  msgid "l-tr-tr"
3114
  msgstr "Turkish"
3115
 
3116
- #: ../../admin/lang/dynamic_strings.php:345
3117
- #: ../../admin/view/wp-slimstat-reports.php:421
 
 
 
 
 
 
 
 
 
 
 
 
3118
  msgid "l-"
3119
  msgstr "l-"
3120
 
3121
  # Unknown
3122
- #: ../../admin/lang/dynamic_strings.php:346
3123
  msgid "l-empty"
3124
  msgstr "Unknown"
3125
 
3126
  # Unknown
3127
- #: ../../admin/lang/dynamic_strings.php:347
3128
  msgid "l-xx"
3129
  msgstr "Unknown"
3130
 
3131
- #: ../../admin/lang/dynamic_strings.php:348
3132
  msgid "c-xy"
3133
  msgstr "Local IP"
3134
 
3135
- #: ../../admin/view/index.php:12
3136
  msgid "Details"
3137
  msgstr "Details"
3138
 
3139
- #: ../../admin/view/index.php:31 ../../admin/view/index.php:103
3140
- #: ../../admin/view/index.php:104 ../../admin/view/wp-slimstat-reports.php:68
3141
  msgid "Year"
3142
  msgstr "Jahr"
3143
 
3144
- #: ../../admin/view/index.php:33
3145
  msgid "Show records where"
3146
  msgstr "Zeige Datensätze wo"
3147
 
3148
- #: ../../admin/view/index.php:34
3149
  msgid ""
3150
  "Please refer to the contextual help (available on WP 3.3+) for more "
3151
  "information on what these filters mean."
@@ -3153,1431 +3125,1193 @@ msgstr ""
3153
  "F&uuml; weitere Informationen zu den Filtern schlagen Sie in der "
3154
  "kontextsensitiven Hilfe (verf&uuml;gbar ab WP 3.3+) nach."
3155
 
3156
- #: ../../admin/view/index.php:47
3157
  msgid "-- Advanced filters --"
3158
  msgstr "-- Erweiterte Filter --"
3159
 
3160
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:50
3161
- #: ../../admin/view/wp-slimstat-reports.php:98
3162
  msgid "Browser Capabilities"
3163
  msgstr "Browser-F&auml;higkeiten"
3164
 
3165
- #: ../../admin/view/index.php:60 ../../admin/view/wp-slimstat-reports.php:62
3166
  #, fuzzy
3167
  msgid "Resource ID"
3168
  msgstr "Top Ressourcen"
3169
 
3170
- #: ../../admin/view/index.php:65
3171
  msgid "equals"
3172
  msgstr "entspricht"
3173
 
3174
- #: ../../admin/view/index.php:66
3175
  msgid "is not equal to"
3176
  msgstr "ist ungleich zu"
3177
 
3178
- #: ../../admin/view/index.php:67
3179
  msgid "contains"
3180
  msgstr "enth&auml;lt"
3181
 
3182
- #: ../../admin/view/index.php:68
3183
  msgid "does not contain"
3184
  msgstr "enth&auml;lt nicht"
3185
 
3186
- #: ../../admin/view/index.php:69
3187
  msgid "starts with"
3188
  msgstr "beginnt mit"
3189
 
3190
- #: ../../admin/view/index.php:70
3191
  msgid "ends with"
3192
  msgstr "endet mit"
3193
 
3194
- #: ../../admin/view/index.php:71
3195
  msgid "sounds like"
3196
  msgstr "&auml;hnelt"
3197
 
3198
- #: ../../admin/view/index.php:72
3199
  msgid "is empty"
3200
  msgstr "ist leer"
3201
 
3202
- #: ../../admin/view/index.php:73
3203
  msgid "is not empty"
3204
  msgstr "ist nicht leer"
3205
 
3206
- #: ../../admin/view/index.php:74
3207
  msgid "is greater than"
3208
  msgstr "ist gr&ouml;sser als"
3209
 
3210
- #: ../../admin/view/index.php:75
3211
  msgid "is less than"
3212
  msgstr "ist kleiner als"
3213
 
3214
- #: ../../admin/view/index.php:76
3215
  msgid "matches"
3216
  msgstr ""
3217
 
3218
- #: ../../admin/view/index.php:77
3219
  #, fuzzy
3220
  msgid "does not match"
3221
  msgstr "enth&auml;lt nicht"
3222
 
3223
- #: ../../admin/view/index.php:82
3224
  msgid "Select a day to make the interval field appear."
3225
  msgstr ""
3226
 
3227
- #: ../../admin/view/index.php:83
3228
  msgid "Filter by date"
3229
  msgstr "Datums-Filter"
3230
 
3231
- #: ../../admin/view/index.php:86 ../../admin/view/wp-slimstat-reports.php:66
3232
  msgid "Day"
3233
  msgstr "Tag"
3234
 
3235
- #: ../../admin/view/index.php:95 ../../admin/view/wp-slimstat-reports.php:67
3236
  msgid "Month"
3237
  msgstr "Monat"
3238
 
3239
- #: ../../admin/view/index.php:112
3240
  msgid "Go"
3241
  msgstr "Los"
3242
 
3243
- #: ../../admin/view/index.php:127 ../../admin/view/wp-slimstat-reports.php:608
3244
- #: ../../admin/view/wp-slimstat-reports.php:710
3245
- #: ../../admin/view/wp-slimstat-reports.php:749
3246
- msgid "Pageviews"
3247
- msgstr "Seitenaufrufe"
3248
-
3249
- #: ../../admin/view/index.php:136
3250
- #, fuzzy
3251
- msgid ""
3252
- "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
3253
- "WP SlimStat leverages this information to identify returning visitors. "
3254
- "Please note that visitors also include registered users."
3255
- msgstr ""
3256
- "Wenn Besucher einen Kommentar im Blog hinterlassen, weist WordPress diesen "
3257
- "einen Cookie zu. WP SlimStat erweitert diese Information um die Erkennung "
3258
- "zur&uuml;kkehrender Besucher."
3259
-
3260
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:329
3261
- msgid "Take a sneak peek at what human visitors are doing on your website"
3262
- msgstr ""
3263
- "Erhalte einen Einblick von dem was echte Benutzer auf deiner Website machen"
3264
-
3265
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:265
3266
- #: ../../admin/view/index.php:268 ../../admin/view/index.php:298
3267
- #: ../../admin/view/index.php:329 ../../admin/view/right-now.php:166
3268
- msgid "Color codes"
3269
- msgstr "Farb-Code"
3270
-
3271
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:329
3272
- msgid "From a search result page"
3273
- msgstr "Von einer Suchergebnisseite"
3274
-
3275
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:265
3276
- #: ../../admin/view/index.php:268 ../../admin/view/index.php:298
3277
- #: ../../admin/view/index.php:329 ../../admin/view/right-now.php:169
3278
- msgid "Known Users"
3279
- msgstr "Bekannte Benutzer"
3280
-
3281
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:265
3282
- #: ../../admin/view/index.php:268 ../../admin/view/index.php:298
3283
- #: ../../admin/view/index.php:329 ../../admin/view/right-now.php:170
3284
- msgid "Other Humans"
3285
- msgstr "Andere echte Besucher"
3286
-
3287
- #: ../../admin/view/index.php:145
3288
- msgid ""
3289
- "Unique sessions initiated by your visitors. If a user is inactive on your "
3290
- "site for 30 minutes or more, any future activity will be attributed to a new "
3291
- "session. Users that leave your site and return within 30 minutes will be "
3292
- "counted as part of the original session."
3293
- msgstr ""
3294
- "Eindeutige Sessions er&ouml;ffnet von Besuchern. Wenn ein Benutzer mehr als "
3295
- "30 Minuten inkativ ist, wird jede folgende Aktivit&auml;t als neue Session "
3296
- "gewertet. Benutzer welche die Seite verlassen und innerhalb von 30 Minuten "
3297
- "wiederkehren, werden zur origin&auml;ren Session zugeh&ouml;rig gez&auml;hlt."
3298
-
3299
- #: ../../admin/view/index.php:178
3300
- #, fuzzy
3301
- msgid "Human Visits"
3302
- msgstr "Echte Besuche"
3303
-
3304
- #: ../../admin/view/index.php:184 ../../admin/view/index.php:220
3305
- msgid ""
3306
- "This report shows you what languages your users have installed on their "
3307
- "computers."
3308
- msgstr ""
3309
- "Diese Auswertung zeigt die installierten Sprachen der Systeme Ihrer Besucher."
3310
-
3311
- #: ../../admin/view/index.php:187 ../../admin/view/index.php:217
3312
- msgid ""
3313
- "A user agent is a generic term for any program used for accessing a website. "
3314
- "This includes browsers (such as Chrome), robots and spiders, and any other "
3315
- "software program that retrieves information from a website.<br><br>You can "
3316
- "ignore any given user agent by setting the corresponding filter under "
3317
- "Settings > SlimStat > Filters."
3318
- msgstr ""
3319
- "Der 'User Agent' ist eine generischer Kennung jedes zugreifenden Programmes. "
3320
- "Dies beinhaltet den Browser (wie z.B. Firefox), 'Robots' und 'Spider' sowie "
3321
- "jedes andere Programm welches Informationen von einer Website abruft."
3322
- "<br><br>Um diese generische Kennung generell zu ignorieren kann ein "
3323
- "entsprechender Filter unter 'Einstellungen > SlimStat > Filter' gesetzt "
3324
- "werden."
3325
-
3326
- #: ../../admin/view/index.php:190
3327
- msgid ""
3328
- "Internet Service Provider: a company which provides other companies or "
3329
- "individuals with access to the Internet. Your DSL or cable internet service "
3330
- "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
3331
- "by setting the corresponding filter under Settings > SlimStat > Filters."
3332
- msgstr ""
3333
- "Internet Service Provider: eine Firma welche Individuen oder Firmen Zugriff "
3334
- "auf das Internet gew&auml;hrt. Der Internet-Zugriff per DSL oder Kabel wird "
3335
- "vom verwendeten ISP zur Verf&uuml;gung gestellt.<br><br>Um spezifische IP-"
3336
- "Adressen generell zu ignorieren kann ein entsprechender Filter unter "
3337
- "'Einstellungen > SlimStat > Filter' gesetzt werden."
3338
-
3339
- #: ../../admin/view/index.php:193 ../../admin/view/index.php:214
3340
- msgid ""
3341
- "Which operating systems do your visitors use? Optimizing your site for the "
3342
- "appropriate technical capabilities helps make your site more engaging and "
3343
- "usable and can result in higher conversion rates and more sales."
3344
- msgstr ""
3345
- "Welche Betriebssysteme verwenden die Besucher? Optimierungen an die "
3346
- "geeigneten technischen F&auml;higkeiten helfen f&uuml;hren zu einer "
3347
- "verbesserten Benutzbarkeit und k&ouml;nnen zu einer h&ouml;heren Konversions-"
3348
- "Rate und mehr Ums&auml;tzen f&uuml;hren."
3349
-
3350
- #: ../../admin/view/index.php:196
3351
- msgid ""
3352
- "This report shows the most common screen resolutions used by your visitors. "
3353
- "Knowing the most popular screen resolution of your visitors will help you "
3354
- "create content optimized for that resolution or you may opt for resolution-"
3355
- "independence."
3356
- msgstr ""
3357
- "Diese Statitstik zeigt die g&auml;ngigen Aufl&ouml;sungen der von den "
3358
- "Besuchern verwendeten Systeme. Mit Hilfe dieser Informationen kann auf diese "
3359
- "Aufl&ouml;sungen optimierter oder aufl&ouml;sungsunabh&auml;giger Inhalt "
3360
- "erzeugt werden."
3361
-
3362
- #: ../../admin/view/index.php:199
3363
- msgid ""
3364
- "Which versions of Flash do your visitors have installed? Is Java supported "
3365
- "on your visitors' platforms?"
3366
- msgstr ""
3367
- "Welche Flash-Version haben die Besucher installiert? Wird Java auf den von "
3368
- "Benutzern verwendeten Plattformen unterst&uuml;zt?"
3369
-
3370
- #: ../../admin/view/index.php:202 ../../admin/view/index.php:320
3371
- msgid ""
3372
- "You can configure WP SlimStat to ignore a specific Country by setting the "
3373
- "corresponding filter under Settings > SlimStat > Filters."
3374
- msgstr ""
3375
- "Um ein spezifisches Land generell zu ignorieren kann ein entsprechender "
3376
- "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
3377
-
3378
- #: ../../admin/view/index.php:208
3379
- msgid ""
3380
- "You can ignore any specific Country by setting the corresponding filter "
3381
- "under Settings > SlimStat > Filters."
3382
- msgstr ""
3383
- "Um spezifische L&auml;nder generell zu ignorieren kann ein entsprechender "
3384
- "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
3385
-
3386
- #: ../../admin/view/index.php:211
3387
- msgid ""
3388
- "This report shows the most recent screen resolutions used by your visitors. "
3389
- "Knowing the most popular screen resolution of your visitors will help you "
3390
- "create content optimized for that resolution or you may opt for resolution-"
3391
- "independence."
3392
- msgstr ""
3393
- "Diese Auswertung zeigt die letzten Aufl&ouml;sungen der von den Besuchern "
3394
- "verwendeten Systeme. Mit Hilfe dieser Informationen kann auf diese Aufl&ouml;"
3395
- "sungen optimierter oder aufl&ouml;sungsunabh&auml;giger Inhalt erzeugt "
3396
- "werden."
3397
-
3398
- #: ../../admin/view/index.php:223
3399
- msgid ""
3400
- "This report shows you what user agent families (no version considered) are "
3401
- "popular among your visitors."
3402
- msgstr ""
3403
-
3404
- #: ../../admin/view/index.php:226
3405
- msgid ""
3406
- "This report shows you what operating system families (no version considered) "
3407
- "are popular among your visitors."
3408
- msgstr ""
3409
-
3410
- #: ../../admin/view/index.php:229
3411
- msgid "List of registered users who recently visited your website."
3412
- msgstr ""
3413
-
3414
- #: ../../admin/view/index.php:232
3415
- #, fuzzy
3416
- msgid "This report lists your most active registered users."
3417
- msgstr "Diese Auswertung listet die letzten Artikel nach Titel."
3418
-
3419
- #: ../../admin/view/index.php:244
3420
- #, fuzzy
3421
- msgid "Average Pageviews per Visit"
3422
- msgstr "Durchschnitt. Seitenaufrufe pro Besuch"
3423
-
3424
- #: ../../admin/view/index.php:247
3425
- msgid "This report lists the most recent posts viewed on your site, by title."
3426
- msgstr "Diese Auswertung listet die letzten Artikel nach Titel."
3427
-
3428
- #: ../../admin/view/index.php:250
3429
- msgid ""
3430
- "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3431
- "left your site from the entrance (landing) page."
3432
- msgstr ""
3433
- "Eine 'Absprung' Seite ist der Zugriff auf eine einzelne Seite oder wenn der "
3434
- "Besucher die Website bereits auf der Einstiegs-Seite wieder verl&auml;sst."
3435
-
3436
- #: ../../admin/view/index.php:256
3437
- msgid ""
3438
- "The 404 or Not Found error message is a HTTP standard response code "
3439
- "indicating that the client was able to communicate with the server, but the "
3440
- "server could not find what was requested.<br><br>This report can be useful "
3441
- "to detect attack attempts, by looking at patterns in 404 URLs."
3442
- msgstr ""
3443
- "Die Fehler-Meldung '404' bzw. 'Nicht gefunden' ist ein standardisierter "
3444
- "Antwort-Code des HTTP-Protokolls welcher darauf hinweist, dass der Client "
3445
- "mit dem Server kommunizieren konnte aber der angefragte Inhalt nicht "
3446
- "gefunden werden konnte.<br><br>Diese Statisitk kann hilfreich sein, um "
3447
- "Angriffsversuche anhand von Mustern in '404' URLs zu erkennen."
3448
-
3449
- #: ../../admin/view/index.php:259
3450
- msgid "Searches performed using Wordpress' built-in search functionality."
3451
- msgstr ""
3452
- "Suchen welche mit der WordPress eigenen Such-Funktion ausgef&uuml;hrt wurden."
3453
-
3454
- #: ../../admin/view/index.php:262
3455
- msgid ""
3456
- "Categories provide a helpful way to group related posts together, and to "
3457
- "quickly tell readers what a post is about. Categories also make it easier "
3458
- "for people to find your content."
3459
- msgstr ""
3460
- "Kategorien stellen ein Hilfsmittel zur Gruppierung zusammengeh&ouml;riger "
3461
- "Artikel zur Verf&uuml;gung und um dem Leser eine schnelle Information zum "
3462
- "Inhalt eines Artikels zu geben. Kategorien machen es für Leser auch "
3463
- "einfacher Inhalte zu finden."
3464
-
3465
- #: ../../admin/view/index.php:265 ../../admin/view/index.php:298
3466
- msgid ""
3467
- "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
3468
- "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
3469
- "link has an ID attribute associated to it."
3470
- msgstr ""
3471
-
3472
- #: ../../admin/view/index.php:268
3473
- msgid ""
3474
- "This report lists any <em>event</em> occurred on your website. Please refer "
3475
- "to the FAQ for more information on how to leverage this functionality."
3476
- msgstr ""
3477
- "Dieses Auswertung listet jedes <em>Ereignis</em> welches auf der Website "
3478
- "stattgefunden hat. Bitte schlagen Sie in der FAQ für weitere Informationen "
3479
- "zur Verwendung dieser Funktionalit&auml;t nach."
3480
-
3481
- #: ../../admin/view/index.php:271
3482
- msgid "This report lists the most popular posts on your site, by title."
3483
- msgstr "Dieses Statisitk listet die popul&;rsten Artikel nach Titel."
3484
-
3485
  # Unknown
3486
- #: ../../admin/view/index.php:351
3487
  msgid "c-xx"
3488
  msgstr "Unknown"
3489
 
3490
  # Afghanistan
3491
- #: ../../admin/view/index.php:351
3492
  msgid "c-af"
3493
  msgstr "Afghanistan"
3494
 
3495
  # Åland Islands
3496
- #: ../../admin/view/index.php:351
3497
  msgid "c-ax"
3498
  msgstr "Aland Islands"
3499
 
3500
  # Albania
3501
- #: ../../admin/view/index.php:351
3502
  msgid "c-al"
3503
  msgstr "Albania"
3504
 
3505
  # Algeria
3506
- #: ../../admin/view/index.php:351
3507
  msgid "c-dz"
3508
  msgstr "Algeria"
3509
 
3510
  # Andorra
3511
- #: ../../admin/view/index.php:351
3512
  msgid "c-ad"
3513
  msgstr "Andorra"
3514
 
3515
  # Angola
3516
- #: ../../admin/view/index.php:351
3517
  msgid "c-ao"
3518
  msgstr "Angola"
3519
 
3520
  # Anguilla
3521
- #: ../../admin/view/index.php:351
3522
  msgid "c-ai"
3523
  msgstr "Anguilla"
3524
 
3525
  # Antigua and Barbuda
3526
- #: ../../admin/view/index.php:351
3527
  msgid "c-ag"
3528
  msgstr "Antigua and Barbuda"
3529
 
3530
  # Argentina
3531
- #: ../../admin/view/index.php:351
3532
  msgid "c-ar"
3533
  msgstr "Argentina"
3534
 
3535
  # Armenia
3536
- #: ../../admin/view/index.php:351
3537
  msgid "c-am"
3538
  msgstr "Armenia"
3539
 
3540
  # Aruba
3541
- #: ../../admin/view/index.php:351
3542
  msgid "c-aw"
3543
  msgstr "Aruba"
3544
 
3545
  # Australia
3546
- #: ../../admin/view/index.php:351
3547
  msgid "c-au"
3548
  msgstr "Australia"
3549
 
3550
  # Austria
3551
- #: ../../admin/view/index.php:351
3552
  msgid "c-at"
3553
  msgstr "Austria"
3554
 
3555
  # Azerbaijan
3556
- #: ../../admin/view/index.php:351
3557
  msgid "c-az"
3558
  msgstr "Azerbaijan"
3559
 
3560
  # Bahamas
3561
- #: ../../admin/view/index.php:351
3562
  msgid "c-bs"
3563
  msgstr "Bahamas"
3564
 
3565
  # Bahrain
3566
- #: ../../admin/view/index.php:351
3567
  msgid "c-bh"
3568
  msgstr "Bahrain"
3569
 
3570
  # Bangladesh
3571
- #: ../../admin/view/index.php:351
3572
  msgid "c-bd"
3573
  msgstr "Bangladesh"
3574
 
3575
  # Barbados
3576
- #: ../../admin/view/index.php:351
3577
  msgid "c-bb"
3578
  msgstr "Barbados"
3579
 
3580
  # Belarus
3581
- #: ../../admin/view/index.php:351
3582
  msgid "c-by"
3583
  msgstr "Belarus"
3584
 
3585
  # Belgium
3586
- #: ../../admin/view/index.php:351
3587
  msgid "c-be"
3588
  msgstr "Belgium"
3589
 
3590
  # Belize
3591
- #: ../../admin/view/index.php:351
3592
  msgid "c-bz"
3593
  msgstr "Belize"
3594
 
3595
  # Benin
3596
- #: ../../admin/view/index.php:351
3597
  msgid "c-bj"
3598
  msgstr "Benin"
3599
 
3600
  # Bermuda
3601
- #: ../../admin/view/index.php:351
3602
  msgid "c-bm"
3603
  msgstr "Bermuda"
3604
 
3605
  # Bhutan
3606
- #: ../../admin/view/index.php:351
3607
  msgid "c-bt"
3608
  msgstr "Bhutan"
3609
 
3610
  # Bolivia
3611
- #: ../../admin/view/index.php:351
3612
  msgid "c-bo"
3613
  msgstr "Bolivia"
3614
 
3615
  # Bosnia and Herzegovina
3616
- #: ../../admin/view/index.php:351
3617
  msgid "c-ba"
3618
  msgstr "Bosnia and Herzegovina"
3619
 
3620
  # Botswana
3621
- #: ../../admin/view/index.php:351
3622
  msgid "c-bw"
3623
  msgstr "Botswana"
3624
 
3625
  # Brazil
3626
- #: ../../admin/view/index.php:351
3627
  msgid "c-br"
3628
  msgstr "Brazil"
3629
 
3630
  # Brunei Darussalam
3631
- #: ../../admin/view/index.php:351
3632
  msgid "c-bn"
3633
  msgstr "Brunei Darussalam"
3634
 
3635
  # Bulgaria
3636
- #: ../../admin/view/index.php:351
3637
  msgid "c-bg"
3638
  msgstr "Bulgaria"
3639
 
3640
  # Burkina Faso
3641
- #: ../../admin/view/index.php:351
3642
  msgid "c-bf"
3643
  msgstr "Burkina Faso"
3644
 
3645
  # Burundi
3646
- #: ../../admin/view/index.php:351
3647
  msgid "c-bi"
3648
  msgstr "Burundi"
3649
 
3650
  # Cambodia
3651
- #: ../../admin/view/index.php:351
3652
  msgid "c-kh"
3653
  msgstr "Cambodia"
3654
 
3655
  # Cameroon
3656
- #: ../../admin/view/index.php:351
3657
  msgid "c-cm"
3658
  msgstr "Cameroon"
3659
 
3660
  # Canada
3661
- #: ../../admin/view/index.php:351
3662
  msgid "c-ca"
3663
  msgstr "Canada"
3664
 
3665
  # Cape Verde
3666
- #: ../../admin/view/index.php:351
3667
  msgid "c-cv"
3668
  msgstr "Cape Verde"
3669
 
3670
  # Cayman Islands
3671
- #: ../../admin/view/index.php:351
3672
  msgid "c-ky"
3673
  msgstr "Cayman Islands"
3674
 
3675
  # Central African Republic
3676
- #: ../../admin/view/index.php:351
3677
  msgid "c-cf"
3678
  msgstr "Central African Republic"
3679
 
3680
  # Chad
3681
- #: ../../admin/view/index.php:351
3682
  msgid "c-td"
3683
  msgstr "Chad"
3684
 
3685
  # Chile
3686
- #: ../../admin/view/index.php:351
3687
  msgid "c-cl"
3688
  msgstr "Chile"
3689
 
3690
  # China
3691
- #: ../../admin/view/index.php:351
3692
  msgid "c-cn"
3693
  msgstr "China"
3694
 
3695
  # Colombia
3696
- #: ../../admin/view/index.php:351
3697
  msgid "c-co"
3698
  msgstr "Colombia"
3699
 
3700
  # Comoros
3701
- #: ../../admin/view/index.php:351
3702
  msgid "c-km"
3703
  msgstr "Comoros"
3704
 
3705
  # Congo
3706
- #: ../../admin/view/index.php:351
3707
  msgid "c-cg"
3708
  msgstr "Congo"
3709
 
3710
  # The Democratic Republic of the Congo
3711
- #: ../../admin/view/index.php:351
3712
  msgid "c-cd"
3713
  msgstr "The Democratic Republic of the Congo"
3714
 
3715
  # Costa Rica
3716
- #: ../../admin/view/index.php:351
3717
  msgid "c-cr"
3718
  msgstr "Costa Rica"
3719
 
3720
  # Côte d'Ivoire
3721
- #: ../../admin/view/index.php:351
3722
  msgid "c-ci"
3723
  msgstr "Côte d'Ivoire"
3724
 
3725
  # Croatia
3726
- #: ../../admin/view/index.php:351
3727
  msgid "c-hr"
3728
  msgstr "Croatia"
3729
 
3730
  # Cuba
3731
- #: ../../admin/view/index.php:351
3732
  msgid "c-cu"
3733
  msgstr "Cuba"
3734
 
3735
  # Cyprus
3736
- #: ../../admin/view/index.php:351
3737
  msgid "c-cy"
3738
  msgstr "Cyprus"
3739
 
3740
  # Czech Republic
3741
- #: ../../admin/view/index.php:351
3742
  msgid "c-cz"
3743
  msgstr "Czech Republic"
3744
 
3745
  # Denmark
3746
- #: ../../admin/view/index.php:351
3747
  msgid "c-dk"
3748
  msgstr "Denmark"
3749
 
3750
  # Djibouti
3751
- #: ../../admin/view/index.php:351
3752
  msgid "c-dj"
3753
  msgstr "Djibouti"
3754
 
3755
  # Dominica
3756
- #: ../../admin/view/index.php:351
3757
  msgid "c-dm"
3758
  msgstr "Dominica"
3759
 
3760
  # Dominican Republic
3761
- #: ../../admin/view/index.php:351
3762
  msgid "c-do"
3763
  msgstr "Dominican Republic"
3764
 
3765
  # Ecuador
3766
- #: ../../admin/view/index.php:351
3767
  msgid "c-ec"
3768
  msgstr "Ecuador"
3769
 
3770
  # Egypt
3771
- #: ../../admin/view/index.php:351
3772
  msgid "c-eg"
3773
  msgstr "Egypt"
3774
 
3775
  # El Salvador
3776
- #: ../../admin/view/index.php:351
3777
  msgid "c-sv"
3778
  msgstr "El Salvador"
3779
 
3780
  # Equatorial Guinea
3781
- #: ../../admin/view/index.php:351
3782
  msgid "c-gq"
3783
  msgstr "Equatorial Guinea"
3784
 
3785
  # Eritrea
3786
- #: ../../admin/view/index.php:351
3787
  msgid "c-er"
3788
  msgstr "Eritrea"
3789
 
3790
  # Estonia
3791
- #: ../../admin/view/index.php:351
3792
  msgid "c-ee"
3793
  msgstr "Estonia"
3794
 
3795
  # Ethiopia
3796
- #: ../../admin/view/index.php:351
3797
  msgid "c-et"
3798
  msgstr "Ethiopia"
3799
 
3800
  # Faroe Islands
3801
- #: ../../admin/view/index.php:351
3802
  msgid "c-fo"
3803
  msgstr "Faroe Islands"
3804
 
3805
  # Falkland Islands (Malvinas)
3806
- #: ../../admin/view/index.php:351
3807
  msgid "c-fk"
3808
  msgstr "Falkland Islands (Malvinas)"
3809
 
3810
  # Fiji
3811
- #: ../../admin/view/index.php:351
3812
  msgid "c-fj"
3813
  msgstr "Fiji"
3814
 
3815
  # Finland
3816
- #: ../../admin/view/index.php:351
3817
  msgid "c-fi"
3818
  msgstr "Finland"
3819
 
3820
  # France
3821
- #: ../../admin/view/index.php:351
3822
  msgid "c-fr"
3823
  msgstr "France"
3824
 
3825
  # French Guiana
3826
- #: ../../admin/view/index.php:351
3827
  msgid "c-gf"
3828
  msgstr "French Guiana"
3829
 
3830
  # Gabon
3831
- #: ../../admin/view/index.php:351
3832
  msgid "c-ga"
3833
  msgstr "Gabon"
3834
 
3835
  # Gambia
3836
- #: ../../admin/view/index.php:351
3837
  msgid "c-gm"
3838
  msgstr "Gambia"
3839
 
3840
  # Georgia
3841
- #: ../../admin/view/index.php:351
3842
  msgid "c-ge"
3843
  msgstr "Georgia"
3844
 
3845
  # Germany
3846
- #: ../../admin/view/index.php:351
3847
  msgid "c-de"
3848
  msgstr "Germany"
3849
 
3850
  # Ghana
3851
- #: ../../admin/view/index.php:351
3852
  msgid "c-gh"
3853
  msgstr "Ghana"
3854
 
3855
  # Greece
3856
- #: ../../admin/view/index.php:351
3857
  msgid "c-gr"
3858
  msgstr "Greece"
3859
 
3860
  # Greenland
3861
- #: ../../admin/view/index.php:351
3862
  msgid "c-gl"
3863
  msgstr "Greenland"
3864
 
3865
  # Grenada
3866
- #: ../../admin/view/index.php:351
3867
  msgid "c-gd"
3868
  msgstr "Grenada"
3869
 
3870
  # Guadeloupe
3871
- #: ../../admin/view/index.php:351
3872
  msgid "c-gp"
3873
  msgstr "Guadeloupe"
3874
 
3875
  # Guatemala
3876
- #: ../../admin/view/index.php:351
3877
  msgid "c-gt"
3878
  msgstr "Guatemala"
3879
 
3880
  # Guinea
3881
- #: ../../admin/view/index.php:351
3882
  msgid "c-gn"
3883
  msgstr "Guinea"
3884
 
3885
  # Guinea-Bissau
3886
- #: ../../admin/view/index.php:351
3887
  msgid "c-gw"
3888
  msgstr "Guinea-Bissau"
3889
 
3890
  # Guyana
3891
- #: ../../admin/view/index.php:351
3892
  msgid "c-gy"
3893
  msgstr "Guyana"
3894
 
3895
  # Haiti
3896
- #: ../../admin/view/index.php:351
3897
  msgid "c-ht"
3898
  msgstr "Haiti"
3899
 
3900
  # Honduras
3901
- #: ../../admin/view/index.php:351
3902
  msgid "c-hn"
3903
  msgstr "Honduras"
3904
 
3905
  # Hong Kong
3906
- #: ../../admin/view/index.php:351
3907
  msgid "c-hk"
3908
  msgstr "Hong Kong"
3909
 
3910
  # Hungary
3911
- #: ../../admin/view/index.php:351
3912
  msgid "c-hu"
3913
  msgstr "Hungary"
3914
 
3915
  # Iceland
3916
- #: ../../admin/view/index.php:351
3917
  msgid "c-is"
3918
  msgstr "Iceland"
3919
 
3920
  # India
3921
- #: ../../admin/view/index.php:351
3922
  msgid "c-in"
3923
  msgstr "India"
3924
 
3925
  # Indonesia
3926
- #: ../../admin/view/index.php:351
3927
  msgid "c-id"
3928
  msgstr "Indonesia"
3929
 
3930
  # Islamic Republic of Iran
3931
- #: ../../admin/view/index.php:351
3932
  msgid "c-ir"
3933
  msgstr "Islamic Republic of Iran"
3934
 
3935
  # Iraq
3936
- #: ../../admin/view/index.php:351
3937
  msgid "c-iq"
3938
  msgstr "Iraq"
3939
 
3940
  # Ireland
3941
- #: ../../admin/view/index.php:351
3942
  msgid "c-ie"
3943
  msgstr "Ireland"
3944
 
3945
  # Israel
3946
- #: ../../admin/view/index.php:351
3947
  msgid "c-il"
3948
  msgstr "Israel"
3949
 
3950
  # Italy
3951
- #: ../../admin/view/index.php:351
3952
  msgid "c-it"
3953
  msgstr "Italy"
3954
 
3955
  # Jamaica
3956
- #: ../../admin/view/index.php:351
3957
  msgid "c-jm"
3958
  msgstr "Jamaica"
3959
 
3960
  # Japan
3961
- #: ../../admin/view/index.php:351
3962
  msgid "c-jp"
3963
  msgstr "Japan"
3964
 
3965
  # Jordan
3966
- #: ../../admin/view/index.php:351
3967
  msgid "c-jo"
3968
  msgstr "Jordan"
3969
 
3970
  # Kazakhstan
3971
- #: ../../admin/view/index.php:351
3972
  msgid "c-kz"
3973
  msgstr "Kazakhstan"
3974
 
3975
  # Kenya
3976
- #: ../../admin/view/index.php:351
3977
  msgid "c-ke"
3978
  msgstr "Kenya"
3979
 
3980
  # Nauru
3981
- #: ../../admin/view/index.php:351
3982
  msgid "c-nr"
3983
  msgstr "Nauru"
3984
 
3985
  # Democratic People's Republic of Korea
3986
- #: ../../admin/view/index.php:351
3987
  msgid "c-kp"
3988
  msgstr "Democratic People's Republic of Korea"
3989
 
3990
  # Republic of Korea
3991
- #: ../../admin/view/index.php:351
3992
  msgid "c-kr"
3993
  msgstr "Republic of Korea"
3994
 
3995
- #: ../../admin/view/index.php:351
3996
  msgid "c-kv"
3997
  msgstr ""
3998
 
3999
  # Kuwait
4000
- #: ../../admin/view/index.php:351
4001
  msgid "c-kw"
4002
  msgstr "Kuwait"
4003
 
4004
  # Kyrgyzstan
4005
- #: ../../admin/view/index.php:351
4006
  msgid "c-kg"
4007
  msgstr "Kyrgyzstan"
4008
 
4009
  # Lao People's Democratic Republic
4010
- #: ../../admin/view/index.php:351
4011
  msgid "c-la"
4012
  msgstr "Lao People's Democratic Republic"
4013
 
4014
  # Latvia
4015
- #: ../../admin/view/index.php:351
4016
  msgid "c-lv"
4017
  msgstr "Latvia"
4018
 
4019
  # Lebanon
4020
- #: ../../admin/view/index.php:351
4021
  msgid "c-lb"
4022
  msgstr "Lebanon"
4023
 
4024
  # Lesotho
4025
- #: ../../admin/view/index.php:351
4026
  msgid "c-ls"
4027
  msgstr "Lesotho"
4028
 
4029
  # Liberia
4030
- #: ../../admin/view/index.php:351
4031
  msgid "c-lr"
4032
  msgstr "Liberia"
4033
 
4034
  # Libyan Arab Jamahiriya
4035
- #: ../../admin/view/index.php:351
4036
  msgid "c-ly"
4037
  msgstr "Libyan Arab Jamahiriya"
4038
 
4039
  # Liechtenstein
4040
- #: ../../admin/view/index.php:351
4041
  msgid "c-li"
4042
  msgstr "Liechtenstein"
4043
 
4044
  # Lithuania
4045
- #: ../../admin/view/index.php:351
4046
  msgid "c-lt"
4047
  msgstr "Lithuania"
4048
 
4049
  # Luxembourg
4050
- #: ../../admin/view/index.php:351
4051
  msgid "c-lu"
4052
  msgstr "Luxembourg"
4053
 
4054
  # The Former Yugoslav Republic of Macedonia
4055
- #: ../../admin/view/index.php:351
4056
  msgid "c-mk"
4057
  msgstr "The Former Yugoslav Republic of Macedonia"
4058
 
4059
  # Madagascar
4060
- #: ../../admin/view/index.php:351
4061
  msgid "c-mg"
4062
  msgstr "Madagascar"
4063
 
4064
  # Malawi
4065
- #: ../../admin/view/index.php:351
4066
  msgid "c-mw"
4067
  msgstr "Malawi"
4068
 
4069
  # Malaysia
4070
- #: ../../admin/view/index.php:351
4071
  msgid "c-my"
4072
  msgstr "Malaysia"
4073
 
4074
  # Mali
4075
- #: ../../admin/view/index.php:351
4076
  msgid "c-ml"
4077
  msgstr "Mali"
4078
 
4079
  # Malta
4080
- #: ../../admin/view/index.php:351
4081
  msgid "c-mt"
4082
  msgstr "Malta"
4083
 
4084
  # Martinique
4085
- #: ../../admin/view/index.php:351
4086
  msgid "c-mq"
4087
  msgstr "Martinique"
4088
 
4089
  # Mauritania
4090
- #: ../../admin/view/index.php:351
4091
  msgid "c-mr"
4092
  msgstr "Mauritania"
4093
 
4094
  # Mauritius
4095
- #: ../../admin/view/index.php:351
4096
  msgid "c-mu"
4097
  msgstr "Mauritius"
4098
 
4099
  # Mexico
4100
- #: ../../admin/view/index.php:351
4101
  msgid "c-mx"
4102
  msgstr "Mexico"
4103
 
4104
  # Moldova
4105
- #: ../../admin/view/index.php:351
4106
  msgid "c-md"
4107
  msgstr "Moldova"
4108
 
4109
  # Mongolia
4110
- #: ../../admin/view/index.php:351
4111
  msgid "c-mn"
4112
  msgstr "Mongolia"
4113
 
4114
  # Montenegro
4115
- #: ../../admin/view/index.php:351
4116
  msgid "c-me"
4117
  msgstr "Montenegro"
4118
 
4119
  # Montserrat
4120
- #: ../../admin/view/index.php:351
4121
  msgid "c-ms"
4122
  msgstr "Montserrat"
4123
 
4124
  # Morocco
4125
- #: ../../admin/view/index.php:351
4126
  msgid "c-ma"
4127
  msgstr "Morocco"
4128
 
4129
  # Mozambique
4130
- #: ../../admin/view/index.php:351
4131
  msgid "c-mz"
4132
  msgstr "Mozambique"
4133
 
4134
  # Myanmar
4135
- #: ../../admin/view/index.php:351
4136
  msgid "c-mm"
4137
  msgstr "Myanmar"
4138
 
4139
  # Namibia
4140
- #: ../../admin/view/index.php:351
4141
  msgid "c-na"
4142
  msgstr "Namibia"
4143
 
4144
  # Nepal
4145
- #: ../../admin/view/index.php:351
4146
  msgid "c-np"
4147
  msgstr "Nepal"
4148
 
4149
  # Netherlands
4150
- #: ../../admin/view/index.php:351
4151
  msgid "c-nl"
4152
  msgstr "Netherlands"
4153
 
4154
  # New Caledonia
4155
- #: ../../admin/view/index.php:351
4156
  msgid "c-nc"
4157
  msgstr "New Caledonia"
4158
 
4159
  # New Zealand
4160
- #: ../../admin/view/index.php:351
4161
  msgid "c-nz"
4162
  msgstr "New Zealand"
4163
 
4164
  # Nicaragua
4165
- #: ../../admin/view/index.php:351
4166
  msgid "c-ni"
4167
  msgstr "Nicaragua"
4168
 
4169
  # Niger
4170
- #: ../../admin/view/index.php:351
4171
  msgid "c-ne"
4172
  msgstr "Niger"
4173
 
4174
  # Nigeria
4175
- #: ../../admin/view/index.php:351
4176
  msgid "c-ng"
4177
  msgstr "Nigeria"
4178
 
4179
  # Norway
4180
- #: ../../admin/view/index.php:351
4181
  msgid "c-no"
4182
  msgstr "Norway"
4183
 
4184
  # Oman
4185
- #: ../../admin/view/index.php:351
4186
  msgid "c-om"
4187
  msgstr "Oman"
4188
 
4189
  # Pakistan
4190
- #: ../../admin/view/index.php:351
4191
  msgid "c-pk"
4192
  msgstr "Pakistan"
4193
 
4194
  # Palau
4195
- #: ../../admin/view/index.php:351
4196
  msgid "c-pw"
4197
  msgstr "Palau"
4198
 
4199
  # Occupied Palestinian Territory
4200
- #: ../../admin/view/index.php:351
4201
  msgid "c-ps"
4202
  msgstr "Occupied Palestinian Territory"
4203
 
4204
  # Panama
4205
- #: ../../admin/view/index.php:351
4206
  msgid "c-pa"
4207
  msgstr "Panama"
4208
 
4209
  # Papua New Guinea
4210
- #: ../../admin/view/index.php:351
4211
  msgid "c-pg"
4212
  msgstr "Papua New Guinea"
4213
 
4214
  # Paraguay
4215
- #: ../../admin/view/index.php:351
4216
  msgid "c-py"
4217
  msgstr "Paraguay"
4218
 
4219
  # Peru
4220
- #: ../../admin/view/index.php:351
4221
  msgid "c-pe"
4222
  msgstr "Peru"
4223
 
4224
  # Philippines
4225
- #: ../../admin/view/index.php:351
4226
  msgid "c-ph"
4227
  msgstr "Philippines"
4228
 
4229
  # Poland
4230
- #: ../../admin/view/index.php:351
4231
  msgid "c-pl"
4232
  msgstr "Poland"
4233
 
4234
  # Portugal
4235
- #: ../../admin/view/index.php:351
4236
  msgid "c-pt"
4237
  msgstr "Portugal"
4238
 
4239
  # Puerto Rico
4240
- #: ../../admin/view/index.php:351
4241
  msgid "c-pr"
4242
  msgstr "Puerto Rico"
4243
 
4244
  # Qatar
4245
- #: ../../admin/view/index.php:351
4246
  msgid "c-qa"
4247
  msgstr "Qatar"
4248
 
4249
  # Réunion
4250
- #: ../../admin/view/index.php:351
4251
  msgid "c-re"
4252
  msgstr "Réunion"
4253
 
4254
  # Romania
4255
- #: ../../admin/view/index.php:351
4256
  msgid "c-ro"
4257
  msgstr "Romania"
4258
 
4259
  # Russian Federation
4260
- #: ../../admin/view/index.php:351
4261
  msgid "c-ru"
4262
  msgstr "Russian Federation"
4263
 
4264
  # Rwanda
4265
- #: ../../admin/view/index.php:351
4266
  msgid "c-rw"
4267
  msgstr "Rwanda"
4268
 
4269
  # Saint Kitts and Nevis
4270
- #: ../../admin/view/index.php:351
4271
  msgid "c-kn"
4272
  msgstr "Saint Kitts and Nevis"
4273
 
4274
  # Saint Lucia
4275
- #: ../../admin/view/index.php:351
4276
  msgid "c-lc"
4277
  msgstr "Saint Lucia"
4278
 
4279
  # Saint Martin
4280
- #: ../../admin/view/index.php:351
4281
  msgid "c-mf"
4282
  msgstr "Saint Martin"
4283
 
4284
  # Saint Vincent and the Grenadines
4285
- #: ../../admin/view/index.php:351
4286
  msgid "c-vc"
4287
  msgstr "Saint Vincent and the Grenadines"
4288
 
4289
  # Samoa
4290
- #: ../../admin/view/index.php:351
4291
  msgid "c-ws"
4292
  msgstr "Samoa"
4293
 
4294
  # Sao Tome and Principe
4295
- #: ../../admin/view/index.php:351
4296
  msgid "c-st"
4297
  msgstr "Sao Tome and Principe"
4298
 
4299
  # Saudi Arabia
4300
- #: ../../admin/view/index.php:351
4301
  msgid "c-sa"
4302
  msgstr "Saudi Arabia"
4303
 
4304
  # Senegal
4305
- #: ../../admin/view/index.php:351
4306
  msgid "c-sn"
4307
  msgstr "Senegal"
4308
 
4309
  # Serbia
4310
- #: ../../admin/view/index.php:351
4311
  msgid "c-rs"
4312
  msgstr "Serbia"
4313
 
4314
  # Sierra Leone
4315
- #: ../../admin/view/index.php:351
4316
  msgid "c-sl"
4317
  msgstr "Sierra Leone"
4318
 
4319
  # Singapore
4320
- #: ../../admin/view/index.php:351
4321
  msgid "c-sg"
4322
  msgstr "Singapore"
4323
 
4324
  # Slovakia
4325
- #: ../../admin/view/index.php:351
4326
  msgid "c-sk"
4327
  msgstr "Slovakia"
4328
 
4329
  # Slovenia
4330
- #: ../../admin/view/index.php:351
4331
  msgid "c-si"
4332
  msgstr "Slovenia"
4333
 
4334
  # Solomon Islands
4335
- #: ../../admin/view/index.php:351
4336
  msgid "c-sb"
4337
  msgstr "Solomon Islands"
4338
 
4339
  # Somalia
4340
- #: ../../admin/view/index.php:351
4341
  msgid "c-so"
4342
  msgstr "Somalia"
4343
 
4344
  # South Africa
4345
- #: ../../admin/view/index.php:351
4346
  msgid "c-za"
4347
  msgstr "South Africa"
4348
 
4349
  # South Georgia and the South Sandwich Islands
4350
- #: ../../admin/view/index.php:351
4351
  msgid "c-gs"
4352
  msgstr "South Georgia and the South Sandwich Islands"
4353
 
4354
  # Spain
4355
- #: ../../admin/view/index.php:351
4356
  msgid "c-es"
4357
  msgstr "Spain"
4358
 
4359
  # Sri Lanka
4360
- #: ../../admin/view/index.php:351
4361
  msgid "c-lk"
4362
  msgstr "Sri Lanka"
4363
 
4364
  # Sudan
4365
- #: ../../admin/view/index.php:351
4366
  msgid "c-sd"
4367
  msgstr "Sudan"
4368
 
4369
- #: ../../admin/view/index.php:351
4370
  msgid "c-ss"
4371
  msgstr ""
4372
 
4373
  # Suriname
4374
- #: ../../admin/view/index.php:351
4375
  msgid "c-sr"
4376
  msgstr "Suriname"
4377
 
4378
  # Svalbard and Jan Mayen
4379
- #: ../../admin/view/index.php:351
4380
  msgid "c-sj"
4381
  msgstr "Svalbard and Jan Mayen"
4382
 
4383
  # Swaziland
4384
- #: ../../admin/view/index.php:351
4385
  msgid "c-sz"
4386
  msgstr "Swaziland"
4387
 
4388
  # Sweden
4389
- #: ../../admin/view/index.php:351
4390
  msgid "c-se"
4391
  msgstr "Sweden"
4392
 
4393
  # Switzerland
4394
- #: ../../admin/view/index.php:351
4395
  msgid "c-ch"
4396
  msgstr "Switzerland"
4397
 
4398
  # Syrian Arab Republic
4399
- #: ../../admin/view/index.php:351
4400
  msgid "c-sy"
4401
  msgstr "Syrian Arab Republic"
4402
 
4403
  # Taiwan, Province of China
4404
- #: ../../admin/view/index.php:351
4405
  msgid "c-tw"
4406
  msgstr "Taiwan"
4407
 
4408
  # Tajikistan
4409
- #: ../../admin/view/index.php:351
4410
  msgid "c-tj"
4411
  msgstr "Tajikistan"
4412
 
4413
  # United Republic of Tanzania
4414
- #: ../../admin/view/index.php:351
4415
  msgid "c-tz"
4416
  msgstr "United Republic of Tanzania"
4417
 
4418
  # Thailand
4419
- #: ../../admin/view/index.php:351
4420
  msgid "c-th"
4421
  msgstr "Thailand"
4422
 
4423
  # Timor-Leste
4424
- #: ../../admin/view/index.php:351
4425
  msgid "c-tl"
4426
  msgstr "Timor-Leste"
4427
 
4428
  # Togo
4429
- #: ../../admin/view/index.php:351
4430
  msgid "c-tg"
4431
  msgstr "Togo"
4432
 
4433
  # Tonga
4434
- #: ../../admin/view/index.php:351
4435
  msgid "c-to"
4436
  msgstr "Tonga"
4437
 
4438
  # Trinidad and Tobago
4439
- #: ../../admin/view/index.php:351
4440
  msgid "c-tt"
4441
  msgstr "Trinidad and Tobago"
4442
 
4443
  # Tunisia
4444
- #: ../../admin/view/index.php:351
4445
  msgid "c-tn"
4446
  msgstr "Tunisia"
4447
 
4448
  # Turkey
4449
- #: ../../admin/view/index.php:351
4450
  msgid "c-tr"
4451
  msgstr "Turkey"
4452
 
4453
  # Turkmenistan
4454
- #: ../../admin/view/index.php:351
4455
  msgid "c-tm"
4456
  msgstr "Turkmenistan"
4457
 
4458
  # Turks and Caicos Islands
4459
- #: ../../admin/view/index.php:351
4460
  msgid "c-tc"
4461
  msgstr "Turks and Caicos Islands"
4462
 
4463
  # Uganda
4464
- #: ../../admin/view/index.php:351
4465
  msgid "c-ug"
4466
  msgstr "Uganda"
4467
 
4468
  # Ukraine
4469
- #: ../../admin/view/index.php:351
4470
  msgid "c-ua"
4471
  msgstr "Ukraine"
4472
 
4473
  # United Arab Emirates
4474
- #: ../../admin/view/index.php:351
4475
  msgid "c-ae"
4476
  msgstr "United Arab Emirates"
4477
 
4478
  # United Kingdom
4479
- #: ../../admin/view/index.php:351
4480
  msgid "c-gb"
4481
  msgstr "United Kingdom"
4482
 
4483
  # United States
4484
- #: ../../admin/view/index.php:351
4485
  msgid "c-us"
4486
  msgstr "United States"
4487
 
4488
  # Uruguay
4489
- #: ../../admin/view/index.php:351
4490
  msgid "c-uy"
4491
  msgstr "Uruguay"
4492
 
4493
  # Uzbekistan
4494
- #: ../../admin/view/index.php:351
4495
  msgid "c-uz"
4496
  msgstr "Uzbekistan"
4497
 
4498
  # Vanuatu
4499
- #: ../../admin/view/index.php:351
4500
  msgid "c-vu"
4501
  msgstr "Vanuatu"
4502
 
4503
  # Venezuela
4504
- #: ../../admin/view/index.php:351
4505
  msgid "c-ve"
4506
  msgstr "Venezuela"
4507
 
4508
  # Viet Nam
4509
- #: ../../admin/view/index.php:351
4510
  msgid "c-vn"
4511
  msgstr "Viet Nam"
4512
 
4513
  # British Virgin Islands
4514
- #: ../../admin/view/index.php:351
4515
  msgid "c-vg"
4516
  msgstr "British Virgin Islands"
4517
 
4518
  # U.S. Virgin Islands
4519
- #: ../../admin/view/index.php:351
4520
  msgid "c-vi"
4521
  msgstr "U.S. Virgin Islands"
4522
 
4523
  # Western Sahara
4524
- #: ../../admin/view/index.php:351
4525
  msgid "c-eh"
4526
  msgstr "Western Sahara"
4527
 
4528
  # Yemen
4529
- #: ../../admin/view/index.php:351
4530
  msgid "c-ye"
4531
  msgstr "Yemen"
4532
 
4533
  # Zambia
4534
- #: ../../admin/view/index.php:351
4535
  msgid "c-zm"
4536
  msgstr "Zambia"
4537
 
4538
  # Zimbabwe
4539
- #: ../../admin/view/index.php:351
4540
  msgid "c-zw"
4541
  msgstr "Zimbabwe"
4542
 
4543
  # Guernsey
4544
- #: ../../admin/view/index.php:351
4545
  msgid "c-gg"
4546
  msgstr "Guernsey"
4547
 
4548
  # Jersey
4549
- #: ../../admin/view/index.php:351
4550
  msgid "c-je"
4551
  msgstr "Jersey"
4552
 
4553
  # Isle of Man
4554
- #: ../../admin/view/index.php:351
4555
  msgid "c-im"
4556
  msgstr "Isle of Man"
4557
 
4558
  # Maldives
4559
- #: ../../admin/view/index.php:351
4560
  msgid "c-mv"
4561
  msgstr "Maldives"
4562
 
 
 
 
 
4563
  # Unknown
4564
- #: ../../admin/view/index.php:358 ../../admin/view/right-now.php:94
4565
- #: ../../admin/view/wp-slimstat-reports.php:409
4566
- #: ../../admin/view/wp-slimstat-reports.php:548
4567
  msgid "c-"
4568
  msgstr "Unknown"
4569
 
4570
- #: ../../admin/view/index.php:366 ../../admin/view/right-now.php:54
4571
- #: ../../admin/view/wp-slimstat-reports.php:372
4572
- #: ../../admin/view/wp-slimstat-reports.php:511
4573
  msgid "No data to display"
4574
  msgstr "keine Daten vorhanden"
4575
 
4576
- #: ../../admin/view/index.php:416
4577
  msgid "Your report here"
4578
  msgstr "Deine Auswertung hier"
4579
 
4580
- #: ../../admin/view/index.php:418
4581
  #, fuzzy
4582
  msgid ""
4583
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
@@ -4595,8 +4329,254 @@ msgstr ""
4595
  "besuchen Sie mein <a href=\"http://lab.duechiacchiere.it/\" title=\"WP "
4596
  "SlimStat Support-Forum\" target=\"_blank\">Support-Forum</a>."
4597
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4598
  #: ../../admin/view/right-now.php:38
4599
- #: ../../admin/view/wp-slimstat-reports.php:304
4600
  #, fuzzy
4601
  msgid "Refresh"
4602
  msgstr "Anzeige aktualisieren"
@@ -4615,7 +4595,7 @@ msgid "refreshing in"
4615
  msgstr ""
4616
 
4617
  #: ../../admin/view/right-now.php:73 ../../admin/view/right-now.php:82
4618
- #: ../../admin/view/wp-slimstat-reports.php:470
4619
  #, php-format
4620
  msgid "Filter results where IP equals %s"
4621
  msgstr "Ergebnisse filtern nach IP %s"
@@ -4631,7 +4611,7 @@ msgid "Filter results where ther user's real IP equals %s"
4631
  msgstr "Ergebnisse filtern nach Besucher %s"
4632
 
4633
  #: ../../admin/view/right-now.php:94
4634
- #: ../../admin/view/wp-slimstat-reports.php:548
4635
  msgid "Country"
4636
  msgstr "Land"
4637
 
@@ -4658,16 +4638,16 @@ msgid "Filter results where screen resolution equals %s"
4658
  msgstr "Ergebnisse filtern wo Ressource ist gleich %s"
4659
 
4660
  #: ../../admin/view/right-now.php:144
4661
- #: ../../admin/view/wp-slimstat-reports.php:463
4662
- #: ../../admin/view/wp-slimstat-reports.php:467
4663
- #: ../../admin/view/wp-slimstat-reports.php:530
4664
- #: ../../admin/view/wp-slimstat-reports.php:558
4665
- #: ../../admin/view/wp-slimstat-reports.php:574
4666
  msgid "Open this URL in a new window"
4667
  msgstr "Diese URL in einem neuen Fenster &ouml;ffnen"
4668
 
4669
  #: ../../admin/view/right-now.php:144
4670
- #: ../../admin/view/wp-slimstat-reports.php:574
4671
  #, php-format
4672
  msgid "Filter results where resource equals %s"
4673
  msgstr "Ergebnisse filtern wo Ressource ist gleich %s"
@@ -4717,8 +4697,8 @@ msgid "About WP SlimStat"
4717
  msgstr "&Uuml;ber WP SlimStat"
4718
 
4719
  #: ../../admin/view/wp-slimstat-reports.php:79
4720
- #: ../../admin/view/wp-slimstat-reports.php:92
4721
- #: ../../admin/view/wp-slimstat-reports.php:111
4722
  msgid "Summary"
4723
  msgstr "Zusammenfassung"
4724
 
@@ -4727,362 +4707,369 @@ msgid "Recent Known Visitors"
4727
  msgstr "Letzte bekannte Besucher"
4728
 
4729
  #: ../../admin/view/wp-slimstat-reports.php:81
4730
- #: ../../admin/view/wp-slimstat-reports.php:116
4731
  msgid "Spy View"
4732
  msgstr "Spy View"
4733
 
4734
  #: ../../admin/view/wp-slimstat-reports.php:82
4735
- #: ../../admin/view/wp-slimstat-reports.php:117
4736
  msgid "Recent Search Terms"
4737
  msgstr "Letzte interne Suchbegriffe"
4738
 
4739
  #: ../../admin/view/wp-slimstat-reports.php:83
4740
- msgid "Top Languages - Just Visitors"
4741
- msgstr "Top Sprachen - nur Besucher"
4742
-
4743
- #: ../../admin/view/wp-slimstat-reports.php:84
4744
  msgid "Top Pages"
4745
  msgstr "Top Seiten"
4746
 
4747
- #: ../../admin/view/wp-slimstat-reports.php:85
4748
- #: ../../admin/view/wp-slimstat-reports.php:101
4749
- #: ../../admin/view/wp-slimstat-reports.php:118
4750
- msgid "Recent Countries"
4751
- msgstr "Letzte L&auml;nder"
4752
-
4753
- #: ../../admin/view/wp-slimstat-reports.php:86
4754
- #: ../../admin/view/wp-slimstat-reports.php:114
4755
  msgid "Top Traffic Sources"
4756
  msgstr "Top Traffic Ursprung"
4757
 
4758
- #: ../../admin/view/wp-slimstat-reports.php:87
4759
  msgid "Top Known Visitors"
4760
  msgstr "Top bekannte Besucher"
4761
 
4762
- #: ../../admin/view/wp-slimstat-reports.php:88
4763
- #: ../../admin/view/wp-slimstat-reports.php:112
4764
- #: ../../admin/view/wp-slimstat-reports.php:132
4765
  msgid "Top Search Terms"
4766
  msgstr "Top Suchbegriffe"
4767
 
4768
- #: ../../admin/view/wp-slimstat-reports.php:89
4769
- #: ../../admin/view/wp-slimstat-reports.php:99
4770
- #: ../../admin/view/wp-slimstat-reports.php:113
4771
  msgid "Top Countries"
4772
  msgstr "Top L&auml;nder"
4773
 
4774
- #: ../../admin/view/wp-slimstat-reports.php:90
4775
- #, fuzzy
4776
- msgid "Top Downloads"
4777
- msgstr "Letzte Downloads"
4778
 
4779
- #: ../../admin/view/wp-slimstat-reports.php:91
 
 
 
 
4780
  msgid "Human Visits (chart)"
4781
  msgstr "Echte Besucher (Diagramm)"
4782
 
4783
- #: ../../admin/view/wp-slimstat-reports.php:93
4784
  msgid "Top Languages"
4785
  msgstr "Top Sprachen"
4786
 
4787
- #: ../../admin/view/wp-slimstat-reports.php:94
4788
  #, fuzzy
4789
  msgid "Top Browsers"
4790
  msgstr "Browser"
4791
 
4792
- #: ../../admin/view/wp-slimstat-reports.php:95
4793
  msgid "Top Service Providers"
4794
  msgstr "Top Service Provider"
4795
 
4796
- #: ../../admin/view/wp-slimstat-reports.php:96
4797
  msgid "Top Operating Systems"
4798
  msgstr "Top Betriebssysteme"
4799
 
4800
- #: ../../admin/view/wp-slimstat-reports.php:97
4801
  msgid "Top Screen Resolutions"
4802
  msgstr "Top Bildschirm-Aufl&ouml;sungen"
4803
 
4804
- #: ../../admin/view/wp-slimstat-reports.php:100
4805
  msgid "Visit Duration"
4806
  msgstr "Besuchsdauer"
4807
 
4808
- #: ../../admin/view/wp-slimstat-reports.php:102
 
 
 
 
 
4809
  msgid "Recent Screen Resolutions"
4810
  msgstr "Letzte Bildschirm-Aufl&ouml;sungen"
4811
 
4812
- #: ../../admin/view/wp-slimstat-reports.php:103
4813
  msgid "Recent Operating Systems"
4814
  msgstr "Letzte Betriebssysteme"
4815
 
4816
- #: ../../admin/view/wp-slimstat-reports.php:104
4817
  #, fuzzy
4818
  msgid "Recent Browsers"
4819
  msgstr "Letzte Artikel"
4820
 
4821
- #: ../../admin/view/wp-slimstat-reports.php:105
4822
  msgid "Recent Languages"
4823
  msgstr "Letzte Sprachen"
4824
 
4825
- #: ../../admin/view/wp-slimstat-reports.php:106
4826
  #, fuzzy
4827
  msgid "Top Browser Families"
4828
  msgstr "Browser-F&auml;higkeiten"
4829
 
4830
- #: ../../admin/view/wp-slimstat-reports.php:107
4831
  msgid "Top OS Families"
4832
  msgstr ""
4833
 
4834
- #: ../../admin/view/wp-slimstat-reports.php:108
4835
  #, fuzzy
4836
  msgid "Recent Users"
4837
  msgstr "Letzte Browser"
4838
 
4839
- #: ../../admin/view/wp-slimstat-reports.php:109
4840
  #, fuzzy
4841
  msgid "Top Users"
4842
  msgstr "Top Browser"
4843
 
4844
- #: ../../admin/view/wp-slimstat-reports.php:110
4845
  msgid "Traffic Sources (chart)"
4846
  msgstr "Traffic Ursprung (Diagramm)"
4847
 
4848
- #: ../../admin/view/wp-slimstat-reports.php:115
4849
  msgid "Top Referring Search Engines"
4850
  msgstr "Top verweisende Suchmaschinen"
4851
 
4852
- #: ../../admin/view/wp-slimstat-reports.php:119
4853
- #: ../../admin/view/wp-slimstat-reports.php:135
4854
  msgid "Top Landing Pages"
4855
  msgstr "Top Einstiegs-Seiten"
4856
 
4857
- #: ../../admin/view/wp-slimstat-reports.php:120
4858
  msgid "Average Pageviews per Visit (chart)"
4859
  msgstr "Durchschnitt. Seitenaufrufe pro Besuch (Diagramm)"
4860
 
4861
- #: ../../admin/view/wp-slimstat-reports.php:121
4862
  msgid "Recent Posts"
4863
  msgstr "Letzte Artikel"
4864
 
4865
- #: ../../admin/view/wp-slimstat-reports.php:122
4866
  msgid "Recent Bounce Pages"
4867
  msgstr "Letzte Absprung-Seiten"
4868
 
4869
- #: ../../admin/view/wp-slimstat-reports.php:123
4870
  msgid "Recent Feeds"
4871
  msgstr "Letzte Feeds"
4872
 
4873
- #: ../../admin/view/wp-slimstat-reports.php:124
4874
  msgid "Recent 404 URLs"
4875
  msgstr "Letzte 404 URLs"
4876
 
4877
- #: ../../admin/view/wp-slimstat-reports.php:125
4878
  msgid "Recent Internal Searches"
4879
  msgstr "Letzte interne Suchbegriffe"
4880
 
4881
- #: ../../admin/view/wp-slimstat-reports.php:126
4882
  msgid "Top Categories"
4883
  msgstr "Top Kategorien"
4884
 
4885
- #: ../../admin/view/wp-slimstat-reports.php:127
4886
  msgid "Recent Outbound Links"
4887
  msgstr "Letzte ausgehende Links"
4888
 
4889
- #: ../../admin/view/wp-slimstat-reports.php:128
4890
  msgid "Recent Events"
4891
  msgstr "Letzte Ereignisse"
4892
 
4893
- #: ../../admin/view/wp-slimstat-reports.php:129
4894
  msgid "Top Posts"
4895
  msgstr "Top Artikel"
4896
 
4897
- #: ../../admin/view/wp-slimstat-reports.php:130
4898
  msgid "Top Feeds"
4899
  msgstr "Top Feeds"
4900
 
4901
- #: ../../admin/view/wp-slimstat-reports.php:131
4902
  msgid "Top Internal Searches"
4903
  msgstr "Top interne Suchbegriffe"
4904
 
4905
- #: ../../admin/view/wp-slimstat-reports.php:133
4906
  msgid "Recent Categories"
4907
  msgstr "Letzte Kategorien"
4908
 
4909
- #: ../../admin/view/wp-slimstat-reports.php:134
4910
  msgid "Top 404 URLs"
4911
  msgstr "Top 404 URLs"
4912
 
4913
- #: ../../admin/view/wp-slimstat-reports.php:136
4914
  msgid "Top Authors"
4915
  msgstr "Top Autoren"
4916
 
4917
- #: ../../admin/view/wp-slimstat-reports.php:137
4918
  #, fuzzy
4919
  msgid "Top Tags"
4920
  msgstr "Top Seiten"
4921
 
4922
- #: ../../admin/view/wp-slimstat-reports.php:138
4923
  msgid "Recent Downloads"
4924
  msgstr "Letzte Downloads"
4925
 
4926
- #: ../../admin/view/wp-slimstat-reports.php:222
 
 
 
 
 
 
 
 
 
4927
  msgid "Chart controls"
4928
  msgstr "Diagramm-Einstellungen"
4929
 
4930
- #: ../../admin/view/wp-slimstat-reports.php:222
4931
  msgid "Use your mouse wheel to zoom in and out"
4932
  msgstr "Verwende das Mausrad zum Zoomen"
4933
 
4934
- #: ../../admin/view/wp-slimstat-reports.php:222
4935
  msgid "While zooming in, drag the chart to move to a different area"
4936
  msgstr ""
4937
  "W&;rend des Zooms das Diagramm schieben um zu einer anderen Position zu "
4938
  "verschieben."
4939
 
4940
- #: ../../admin/view/wp-slimstat-reports.php:222
4941
  msgid "Double click on an empty region to reset the zoom level"
4942
  msgstr ""
4943
  "Doppel-Klick auf einen freien Bereich um den Zoom-Level zur&uuml;ckzusetzen"
4944
 
4945
- #: ../../admin/view/wp-slimstat-reports.php:223
4946
  msgid ""
4947
  "Click on a data point to display the activity chart for each hour of that day"
4948
  msgstr ""
4949
  "Auf ein Datum klicken um das Aktivit&auml;ts-Diagramm f&uuml;r jede Stunde "
4950
  "des tages anzuzeigen"
4951
 
4952
- #: ../../admin/view/wp-slimstat-reports.php:261
4953
  msgid "src"
4954
  msgstr "src"
4955
 
4956
- #: ../../admin/view/wp-slimstat-reports.php:262
4957
  msgid "serp"
4958
  msgstr "serp"
4959
 
4960
- #: ../../admin/view/wp-slimstat-reports.php:267
4961
  msgid "Go to the corresponding search engine result page"
4962
  msgstr "Zugeh&ouml;rige Ergbnisseite der Suchmaschine &ouml;ffnen"
4963
 
4964
- #: ../../admin/view/wp-slimstat-reports.php:270
4965
  msgid "Go to the referring page"
4966
  msgstr "Verweisende Seite &ouml;ffnen"
4967
 
4968
- #: ../../admin/view/wp-slimstat-reports.php:289
4969
  msgid "Remove all filters"
4970
  msgstr "Alle Filter entfernen"
4971
 
4972
- #: ../../admin/view/wp-slimstat-reports.php:291
4973
- #: ../../admin/view/wp-slimstat-reports.php:298
4974
  msgid "Current filters:"
4975
  msgstr "Aktuelle Filter:"
4976
 
4977
- #: ../../admin/view/wp-slimstat-reports.php:294
4978
  msgid "Remove filter for"
4979
  msgstr "Entferne Filter f&uuml;r"
4980
 
4981
- #: ../../admin/view/wp-slimstat-reports.php:330
4982
  #, php-format
4983
  msgid "%s Minute by Minute"
4984
  msgstr ""
4985
 
4986
- #: ../../admin/view/wp-slimstat-reports.php:333
4987
  #, fuzzy, php-format
4988
  msgid "Hourly %s"
4989
  msgstr "Seitenaufrufe pro Stunde"
4990
 
4991
- #: ../../admin/view/wp-slimstat-reports.php:336
4992
  #, fuzzy, php-format
4993
  msgid "Monthly %s"
4994
  msgstr "Monat"
4995
 
4996
- #: ../../admin/view/wp-slimstat-reports.php:339
4997
  #, fuzzy, php-format
4998
  msgid "Daily %s"
4999
  msgstr "Details"
5000
 
5001
- #: ../../admin/view/wp-slimstat-reports.php:392
5002
  msgid "Category ID"
5003
  msgstr "Kategorie-ID"
5004
 
5005
- #: ../../admin/view/wp-slimstat-reports.php:424
5006
  msgid "OS Code"
5007
  msgstr "OS Code"
5008
 
5009
- #: ../../admin/view/wp-slimstat-reports.php:434
5010
  #, fuzzy
5011
  msgid "Referrer"
5012
  msgstr "Herkunft"
5013
 
5014
- #: ../../admin/view/wp-slimstat-reports.php:451
5015
  #, fuzzy, php-format
5016
  msgid "Filter results where %s %s %s"
5017
  msgstr "Ergbnisse filtern wo %s ist gleich %s"
5018
 
5019
- #: ../../admin/view/wp-slimstat-reports.php:458
5020
- #: ../../admin/view/wp-slimstat-reports.php:652
5021
- #: ../../admin/view/wp-slimstat-reports.php:663
5022
- #: ../../admin/view/wp-slimstat-reports.php:668
5023
- #: ../../admin/view/wp-slimstat-reports.php:673
5024
- #: ../../admin/view/wp-slimstat-reports.php:678
5025
- #: ../../admin/view/wp-slimstat-reports.php:683
5026
- #: ../../admin/view/wp-slimstat-reports.php:688
5027
- #: ../../admin/view/wp-slimstat-reports.php:693
5028
- #: ../../admin/view/wp-slimstat-reports.php:698
5029
  msgid "Hits"
5030
  msgstr "Zugriffe"
5031
 
5032
- #: ../../admin/view/wp-slimstat-reports.php:527
5033
  msgid "Search for"
5034
  msgstr "Suche nach"
5035
 
5036
- #: ../../admin/view/wp-slimstat-reports.php:558
5037
- #: ../../admin/view/wp-slimstat-reports.php:574
5038
  msgid "Source"
5039
  msgstr "Ursprung"
5040
 
5041
- #: ../../admin/view/wp-slimstat-reports.php:558
5042
  #, php-format
5043
  msgid "Filter results where domain equals %s"
5044
  msgstr "Ergebnisse filtern wo die Dom&auml;ne ist gleich %s"
5045
 
5046
- #: ../../admin/view/wp-slimstat-reports.php:560
5047
  msgid "Keywords"
5048
  msgstr "Suchbegriffe"
5049
 
5050
- #: ../../admin/view/wp-slimstat-reports.php:561
5051
  #, php-format
5052
  msgid "Filter results where searchterm equals %s"
5053
  msgstr "Ergebnisse filtern wo Suchbegriffe sind gleich %s"
5054
 
5055
- #: ../../admin/view/wp-slimstat-reports.php:586
5056
  msgid "Total Pageviews"
5057
  msgstr "Gesamte Seitenaufrufe"
5058
 
5059
- #: ../../admin/view/wp-slimstat-reports.php:587
5060
  msgid "DB Size"
5061
  msgstr "Datenbank-Gr&ouml;sse"
5062
 
5063
- #: ../../admin/view/wp-slimstat-reports.php:588
5064
  msgid "Tracking Active"
5065
  msgstr "Tracking aktiv"
5066
 
5067
- #: ../../admin/view/wp-slimstat-reports.php:590
5068
  msgid "Tracking Browser Caps"
5069
  msgstr ""
5070
 
5071
- #: ../../admin/view/wp-slimstat-reports.php:591
5072
  msgid "Auto purge"
5073
  msgstr "autom. Datenbank-Reorg."
5074
 
5075
- #: ../../admin/view/wp-slimstat-reports.php:592
5076
  #, fuzzy
5077
  msgid "Oldest pageview"
5078
  msgstr "&Auml;ltester Besuch"
5079
 
5080
- #: ../../admin/view/wp-slimstat-reports.php:592
5081
  msgid "No visits"
5082
  msgstr "Keine Besuche"
5083
 
5084
- #: ../../admin/view/wp-slimstat-reports.php:607
5085
- #: ../../admin/view/wp-slimstat-reports.php:709
5086
  msgid ""
5087
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
5088
  "time the tracking code is executed."
@@ -5091,59 +5078,59 @@ msgstr ""
5091
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
5092
  "wird."
5093
 
5094
- #: ../../admin/view/wp-slimstat-reports.php:609
5095
  msgid "This counter is based on any user activity in the last 5 minutes."
5096
  msgstr ""
5097
  "Dieser Z&auml;hler basiert auf allen Besucher-Aktivit&auml;ten der letzten 5 "
5098
  "Minuten."
5099
 
5100
- #: ../../admin/view/wp-slimstat-reports.php:610
5101
  msgid "Last 5 minutes"
5102
  msgstr "Letzte 5 Minuten"
5103
 
5104
- #: ../../admin/view/wp-slimstat-reports.php:611
5105
  #, fuzzy
5106
  msgid "This counter is based on any user activity in the last 30 minutes."
5107
  msgstr ""
5108
  "Dieser Z&auml;hler basiert auf allen Besucher-Aktivit&auml;ten der letzten 5 "
5109
  "Minuten."
5110
 
5111
- #: ../../admin/view/wp-slimstat-reports.php:612
5112
  #, fuzzy
5113
  msgid "Last 30 minutes"
5114
  msgstr "Letzte 5 Minuten"
5115
 
5116
- #: ../../admin/view/wp-slimstat-reports.php:613
5117
  #, fuzzy
5118
  msgid "Filter results where date equals today"
5119
  msgstr "Ergebnisse filtern wo die Dom&auml;ne ist gleich %s"
5120
 
5121
- #: ../../admin/view/wp-slimstat-reports.php:613
5122
  #, fuzzy
5123
  msgid "Today"
5124
  msgstr "Tage"
5125
 
5126
- #: ../../admin/view/wp-slimstat-reports.php:614
5127
  #, fuzzy
5128
  msgid "Filter results where date equals yesterday"
5129
  msgstr "Ergebnisse filtern wo die Dom&auml;ne ist gleich %s"
5130
 
5131
- #: ../../admin/view/wp-slimstat-reports.php:614
5132
  msgid "Yesterday"
5133
  msgstr ""
5134
 
5135
- #: ../../admin/view/wp-slimstat-reports.php:615
5136
  msgid "How many pages have been visited on average during the current period."
5137
  msgstr ""
5138
  "Wieviele Seiten wurden w&auml;hrend der aktuellen Periode durchschnittlich "
5139
  "besucht."
5140
 
5141
- #: ../../admin/view/wp-slimstat-reports.php:616
5142
- #: ../../admin/view/wp-slimstat-reports.php:762
5143
  msgid "Avg Pageviews"
5144
  msgstr "Durchschnitt. Seitenaufrufe"
5145
 
5146
- #: ../../admin/view/wp-slimstat-reports.php:617
5147
  msgid ""
5148
  "Visitors who landed on your site after searching for a keyword on Google, "
5149
  "Yahoo, etc."
@@ -5151,25 +5138,25 @@ msgstr ""
5151
  "Besucher welche nach einer Suche nach einem Suchbegriff auf Google oder Bing "
5152
  "usw. auf die Website kamen."
5153
 
5154
- #: ../../admin/view/wp-slimstat-reports.php:618
5155
  msgid "From Search Results"
5156
  msgstr "Von Suchergebnissen"
5157
 
5158
- #: ../../admin/view/wp-slimstat-reports.php:619
5159
  msgid ""
5160
  "Used to differentiate between multiple requests to download a file from one "
5161
  "internet address (IP) and requests originating from many distinct addresses"
5162
  msgstr ""
5163
 
5164
- #: ../../admin/view/wp-slimstat-reports.php:620
5165
- #: ../../admin/view/wp-slimstat-reports.php:634
5166
- #: ../../admin/view/wp-slimstat-reports.php:749
5167
- #: ../../admin/view/wp-slimstat-reports.php:753
5168
- #: ../../admin/view/wp-slimstat-reports.php:757
5169
  msgid "Unique IPs"
5170
  msgstr "Eindeutige IPs"
5171
 
5172
- #: ../../admin/view/wp-slimstat-reports.php:631
5173
  msgid ""
5174
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
5175
  "multiple times if they perform multiple visits."
@@ -5177,16 +5164,16 @@ msgstr ""
5177
  "Ein Besuch ist eine Session von max. 30 Minuten. Zur&;kkehrende Besucher "
5178
  "werden bei mehrfachen Besuchen auch mehrfach gez&auml;hlt."
5179
 
5180
- #: ../../admin/view/wp-slimstat-reports.php:632
5181
  msgid "Human visits"
5182
  msgstr "Echte Besuche"
5183
 
5184
- #: ../../admin/view/wp-slimstat-reports.php:633
5185
  msgid "This number includes <strong>human visits</strong> only."
5186
  msgstr "Diese Anzahl beinhaltet nur <strong>echte Besuche</strong>."
5187
 
5188
- #: ../../admin/view/wp-slimstat-reports.php:635
5189
- #: ../../admin/view/wp-slimstat-reports.php:721
5190
  msgid ""
5191
  "Percentage of single-page visits, i.e. visits in which the person left your "
5192
  "site from the entrance page."
@@ -5194,77 +5181,77 @@ msgstr ""
5194
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
5195
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
5196
 
5197
- #: ../../admin/view/wp-slimstat-reports.php:636
5198
  msgid "Bounce rate"
5199
  msgstr "Absprung-Rate"
5200
 
5201
- #: ../../admin/view/wp-slimstat-reports.php:637
5202
  msgid "Visitors who had previously left a comment on your blog."
5203
  msgstr ""
5204
  "Besucher welche fr&uuml;her bereits einen Kommentar hinterlassen haben."
5205
 
5206
- #: ../../admin/view/wp-slimstat-reports.php:638
5207
  msgid "Known visitors"
5208
  msgstr "Bekannte Besucher"
5209
 
5210
- #: ../../admin/view/wp-slimstat-reports.php:639
5211
  msgid "Human users who visited your site only once."
5212
  msgstr "Echte Besucher welche die Wesite nur einmal besucht haben."
5213
 
5214
- #: ../../admin/view/wp-slimstat-reports.php:640
5215
  msgid "New visitors"
5216
  msgstr "Neue Besucher"
5217
 
5218
- #: ../../admin/view/wp-slimstat-reports.php:641
5219
  msgid "Bots"
5220
  msgstr "Bots"
5221
 
5222
- #: ../../admin/view/wp-slimstat-reports.php:642
5223
  msgid "Pages per visit"
5224
  msgstr "Seiten pro Besuch"
5225
 
5226
- #: ../../admin/view/wp-slimstat-reports.php:643
5227
- #: ../../admin/view/wp-slimstat-reports.php:762
5228
  msgid "Longest visit"
5229
  msgstr "L&auml;ngster Besuch"
5230
 
5231
- #: ../../admin/view/wp-slimstat-reports.php:643
5232
  msgid "hits"
5233
  msgstr "Zugriff"
5234
 
5235
- #: ../../admin/view/wp-slimstat-reports.php:664
5236
  msgid "0 - 30 seconds"
5237
  msgstr "0-30 Sekunden"
5238
 
5239
- #: ../../admin/view/wp-slimstat-reports.php:669
5240
  msgid "31 - 60 seconds"
5241
  msgstr "31-60 Sekunden"
5242
 
5243
- #: ../../admin/view/wp-slimstat-reports.php:674
5244
  msgid "1 - 3 minutes"
5245
  msgstr "1-3 Minuten"
5246
 
5247
- #: ../../admin/view/wp-slimstat-reports.php:679
5248
  msgid "3 - 5 minutes"
5249
  msgstr "3-5 Minuten"
5250
 
5251
- #: ../../admin/view/wp-slimstat-reports.php:684
5252
  msgid "5 - 7 minutes"
5253
  msgstr "5-7 Minuten"
5254
 
5255
- #: ../../admin/view/wp-slimstat-reports.php:689
5256
  msgid "7 - 10 minutes"
5257
  msgstr "7-10 Minuten"
5258
 
5259
- #: ../../admin/view/wp-slimstat-reports.php:694
5260
  msgid "10 - 20 minutes"
5261
  msgstr "10-20 Minuten"
5262
 
5263
- #: ../../admin/view/wp-slimstat-reports.php:699
5264
  msgid "More than 20 minutes"
5265
  msgstr "Mehr als 20 Minuten"
5266
 
5267
- #: ../../admin/view/wp-slimstat-reports.php:711
5268
  msgid ""
5269
  "A referrer (or referring site) is the site that a visitor previously visited "
5270
  "before following a link to your site."
@@ -5272,11 +5259,11 @@ msgstr ""
5272
  "Eine Herkunft (verweisende Seite) ist die Webseite welche ein Besucher vor "
5273
  "dem Besuch der eigenen Website besucht hat."
5274
 
5275
- #: ../../admin/view/wp-slimstat-reports.php:712
5276
  msgid "Unique Referrers"
5277
  msgstr "Eindeutige Herkunft"
5278
 
5279
- #: ../../admin/view/wp-slimstat-reports.php:713
5280
  msgid ""
5281
  "Visitors who visited the site by typing the URL directly into their browser. "
5282
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -5287,11 +5274,11 @@ msgstr ""
5287
  "auch auf Besucher beziehen, welche Bookmarks/Favoriten verwendet haben oder "
5288
  "Links in E-Mails bzw. Dokumenten gefolgt sind."
5289
 
5290
- #: ../../admin/view/wp-slimstat-reports.php:714
5291
  msgid "Direct Pageviews"
5292
  msgstr "Direkte Seitenaufrufe"
5293
 
5294
- #: ../../admin/view/wp-slimstat-reports.php:715
5295
  msgid ""
5296
  "Visitors who came to your site via searches on Google or some other search "
5297
  "engine."
@@ -5299,11 +5286,11 @@ msgstr ""
5299
  "Besucher welche über eine Suche in Suchmaschinen auf die eigene Website "
5300
  "gekommen sind."
5301
 
5302
- #: ../../admin/view/wp-slimstat-reports.php:716
5303
  msgid "From a search result"
5304
  msgstr "Von einem Suchresultat"
5305
 
5306
- #: ../../admin/view/wp-slimstat-reports.php:717
5307
  msgid ""
5308
  "The first page that a user views during a session. This is also known as the "
5309
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -5313,25 +5300,25 @@ msgstr ""
5313
  "Die erste Seite welche ein Benutzer w&auml;hrend einer Sitzung besucht, die "
5314
  "s.g. Einstiegs- oder Lande-Seite."
5315
 
5316
- #: ../../admin/view/wp-slimstat-reports.php:718
5317
  msgid "Unique Landing Pages"
5318
  msgstr "Eindeutige Einstiegs-Seiten"
5319
 
5320
- #: ../../admin/view/wp-slimstat-reports.php:719
5321
  msgid "Number of single-page visits to your site over the selected period."
5322
  msgstr ""
5323
  "Anzahl der Besucher einer einzelnen Seite über die gew&auml;hlte Periode."
5324
 
5325
- #: ../../admin/view/wp-slimstat-reports.php:720
5326
  msgid "Bounce Pages"
5327
  msgstr "Absprung-Rate"
5328
 
5329
- #: ../../admin/view/wp-slimstat-reports.php:722
5330
  #, fuzzy
5331
  msgid "New Visitors Rate"
5332
  msgstr "Neue Besucher"
5333
 
5334
- #: ../../admin/view/wp-slimstat-reports.php:723
5335
  msgid ""
5336
  "Visitors who visited the site in the last 5 minutes coming from a search "
5337
  "engine."
@@ -5339,18 +5326,210 @@ msgstr ""
5339
  "Besucher welche innerhalb der letzten 5 Minuten von einer Suchmaschine "
5340
  "gekommen sind."
5341
 
5342
- #: ../../admin/view/wp-slimstat-reports.php:724
5343
  msgid "Currently from search engines"
5344
  msgstr "Aktuell von Suchmaschinen"
5345
 
5346
- #: ../../admin/view/wp-slimstat-reports.php:753
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5347
  msgid "Visits"
5348
  msgstr "Besuche"
5349
 
5350
- #: ../../admin/view/wp-slimstat-reports.php:757
5351
  msgid "Domains"
5352
  msgstr "Dom&auml;nen"
5353
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5354
  #, fuzzy
5355
  #~ msgid "Resources"
5356
  #~ msgstr "Top Ressourcen"
@@ -5437,9 +5616,6 @@ msgstr "Dom&auml;nen"
5437
  #~ msgid "Click on a day for hourly metrics"
5438
  #~ msgstr "Klick auf einen Tag f&uuml;r Stunden-Auswertung"
5439
 
5440
- #~ msgid "Total Hits"
5441
- #~ msgstr "Gesamte Zugriffe"
5442
-
5443
  #~ msgid "More"
5444
  #~ msgstr "mehr"
5445
 
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-15 22:42-0500\n"
6
+ "PO-Revision-Date: 2013-11-15 22:42-0500\n"
7
  "Last-Translator: get used to it <support@getused.to.it>\n"
8
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
9
  "Language: de_DE\n"
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
+ #: ../../wp-slimstat.php:1156 ../../admin/wp-slimstat-admin.php:387
20
+ #: ../../admin/view/index.php:11 ../../admin/view/wp-slimstat-reports.php:140
21
  msgid "Right Now"
22
  msgstr "Aktuell"
23
 
24
+ #: ../../wp-slimstat.php:1157 ../../admin/wp-slimstat-admin.php:388
25
+ #: ../../admin/wp-slimstat-admin.php:405 ../../admin/view/index.php:12
26
  msgid "Overview"
27
  msgstr "&Uuml;bersicht"
28
 
29
+ #: ../../wp-slimstat.php:1158 ../../admin/wp-slimstat-admin.php:389
30
+ #: ../../admin/wp-slimstat-admin.php:406 ../../admin/view/index.php:13
31
  msgid "Visitors"
32
  msgstr "Besucher"
33
 
34
+ #: ../../wp-slimstat.php:1159 ../../admin/wp-slimstat-admin.php:390
35
+ #: ../../admin/wp-slimstat-admin.php:407 ../../admin/view/index.php:14
36
  msgid "Content"
37
  msgstr "Inhalt"
38
 
39
+ #: ../../wp-slimstat.php:1160 ../../admin/wp-slimstat-admin.php:391
40
+ #: ../../admin/wp-slimstat-admin.php:408 ../../admin/view/index.php:15
41
+ #: ../../admin/view/index.php:277
42
  msgid "Traffic Sources"
43
  msgstr "Traffic-Ursprung"
44
 
45
+ #: ../../wp-slimstat.php:1161 ../../admin/wp-slimstat-admin.php:392
46
+ #: ../../admin/wp-slimstat-admin.php:409 ../../admin/view/index.php:16
47
+ #: ../../admin/view/index.php:140
48
  msgid "World Map"
49
  msgstr "Weltkarte"
50
 
51
+ #: ../../wp-slimstat.php:1162 ../../admin/wp-slimstat-admin.php:393
52
+ #: ../../admin/wp-slimstat-admin.php:410 ../../admin/view/index.php:17
53
  msgid "Custom Reports"
54
  msgstr "individuelle Auswertungen"
55
 
56
+ #: ../../wp-slimstat.php:1163 ../../admin/wp-slimstat-admin.php:394
57
+ #: ../../admin/wp-slimstat-admin.php:411 ../../admin/config/index.php:9
58
  #: ../../admin/config/index.php:208 ../../admin/config/index.php:216
59
  msgid "Add-ons"
60
  msgstr ""
61
 
62
+ #: ../../wp-slimstat.php:1166 ../../admin/wp-slimstat-admin.php:442
63
+ #: ../../admin/wp-slimstat-admin.php:445 ../../admin/wp-slimstat-admin.php:489
64
+ #: ../../admin/wp-slimstat-admin.php:492
65
  #, fuzzy
66
  msgid "Settings"
67
  msgstr "Sortierung w&auml;hlen"
68
 
69
+ #: ../../admin/wp-slimstat-admin.php:508
70
  msgid "Stats"
71
  msgstr "Statistik"
72
 
73
+ #: ../../admin/wp-slimstat-admin.php:541
74
  msgid "Show on screen"
75
  msgstr "Anzeigen"
76
 
77
+ #: ../../admin/wp-slimstat-admin.php:588
78
  msgid "There was an error updating the following options:"
79
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
80
 
81
+ #: ../../admin/wp-slimstat-admin.php:591
82
  msgid "Your settings have been successfully updated."
83
  msgstr "Optionen erfolgreich aktualisiert."
84
 
85
+ #: ../../admin/wp-slimstat-admin.php:607
86
  msgid "Save Changes"
87
  msgstr "Änderungen speichern"
88
 
89
+ #: ../../admin/wp-slimstat-admin.php:620 ../../admin/config/maintenance.php:29
90
+ #: ../../admin/config/maintenance.php:38
91
  msgid "Yes"
92
  msgstr "Ja"
93
 
94
+ #: ../../admin/wp-slimstat-admin.php:621 ../../admin/config/maintenance.php:29
95
+ #: ../../admin/config/maintenance.php:38
96
+ #: ../../admin/view/wp-slimstat-reports.php:594
97
  msgid "No"
98
  msgstr "Nein"
99
 
100
+ #: ../../admin/wp-slimstat-admin.php:658
101
  msgid ""
102
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
103
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
109
  "\"http://wordpress.org/extend/plugins/wp-slimstat/faq/\">In den FAQs</a> "
110
  "gibt es mehr Informationen dazu."
111
 
112
+ #: ../../admin/wp-slimstat-admin.php:678
113
  msgid "Definitions"
114
  msgstr "Definitionen"
115
 
116
+ #: ../../admin/wp-slimstat-admin.php:681
117
  #, fuzzy
118
  msgid "Pageview"
119
  msgstr "Seitenaufrufe"
120
 
121
+ #: ../../admin/wp-slimstat-admin.php:681
122
  #, fuzzy
123
  msgid ""
124
  "A request to load a single HTML file (\"page\"). This should be contrasted "
129
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
130
  "wird."
131
 
132
+ #: ../../admin/wp-slimstat-admin.php:682
133
  #, fuzzy
134
  msgid "(Human) Visit"
135
  msgstr "Echte Besuche"
136
 
137
+ #: ../../admin/wp-slimstat-admin.php:682
138
  msgid ""
139
  "A period of interaction between a visitor's browser and your website, ending "
140
  "when the browser is closed or when the user has been inactive on that site "
144
  "Diese endet wenn der Browser geschlossen wird oder der Besucher 30 Minuten "
145
  "lang nicht auf der Website aktiv war"
146
 
147
+ #: ../../admin/wp-slimstat-admin.php:683 ../../admin/view/index.php:214
148
+ #: ../../admin/view/index.php:283 ../../admin/view/right-now.php:168
149
  #, fuzzy
150
  msgid "Known Visitor"
151
  msgstr "Bekannte Besucher"
152
 
153
+ #: ../../admin/wp-slimstat-admin.php:683
154
  msgid ""
155
  "Any user who has left a comment on your blog, and is thus identified by "
156
  "Wordpress as a returning visitor"
158
  "Jeder Benutzer, der einen Kommentar auf Ihrer Website hinterlassen hat und "
159
  "damit als wiederkehrender Besucher erkannt wird."
160
 
161
+ #: ../../admin/wp-slimstat-admin.php:684
162
  #, fuzzy
163
  msgid "Unique IP"
164
  msgstr "Eindeutige IPs"
165
 
166
+ #: ../../admin/wp-slimstat-admin.php:684
167
  msgid ""
168
  "Used to differentiate between multiple requests to download a file from one "
169
  "internet address (IP) and requests originating from many distinct addresses; "
175
  "Adresse von der ein Seitenaufruf stammt achtet, ist es nützlich, aber nicht "
176
  "perfekt."
177
 
178
+ #: ../../admin/wp-slimstat-admin.php:685 ../../admin/wp-slimstat-admin.php:727
179
+ #: ../../admin/view/index.php:56 ../../admin/view/right-now.php:90
180
  #: ../../admin/view/wp-slimstat-reports.php:60
181
  msgid "Originating IP"
182
  msgstr "Ursprüngliche IP"
183
 
184
+ #: ../../admin/wp-slimstat-admin.php:685
185
  msgid ""
186
  "the originating IP address of a client connecting to a web server through an "
187
  "HTTP proxy or load balancer"
189
  "Die ursprüngliche IP Adresse eines Clients, der sich durch einen HTTP Proxy "
190
  "oder Load Balancer mit dem Server verbunden hat."
191
 
192
+ #: ../../admin/wp-slimstat-admin.php:686
193
  #, fuzzy
194
  msgid "Direct Traffic"
195
  msgstr "Direkter Besuch"
196
 
197
+ #: ../../admin/wp-slimstat-admin.php:686
198
  msgid ""
199
  "All those people showing up to your Web site by typing in the URL of your "
200
  "Web site coming or from a bookmark; some people also call this \"default "
204
  "oder ein Lesezeichen erreichen; auch \"default traffic\" oder \"ambient "
205
  "traffic\" genannt."
206
 
207
+ #: ../../admin/wp-slimstat-admin.php:687
208
  #, fuzzy
209
  msgid "Search Engine"
210
  msgstr "Suchmaschinen"
211
 
212
+ #: ../../admin/wp-slimstat-admin.php:687
213
  msgid ""
214
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
215
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
217
  "Google, Yahoo, MSN, Ask usw.; hiwer ist sowohl organischer als auch "
218
  "bezahlter (PPC/SEM) Traffic enthalten."
219
 
220
+ #: ../../admin/wp-slimstat-admin.php:688 ../../admin/wp-slimstat-admin.php:704
221
+ #: ../../admin/config/maintenance.php:183 ../../admin/view/index.php:38
222
  #: ../../admin/view/wp-slimstat-reports.php:43
223
  msgid "Search Terms"
224
  msgstr "Suchbegriffe"
225
 
226
+ #: ../../admin/wp-slimstat-admin.php:688 ../../admin/wp-slimstat-admin.php:704
227
+ #: ../../admin/view/index.php:217 ../../admin/view/index.php:286
228
  msgid "Keywords used by your visitors to find your website on a search engine"
229
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
230
 
231
+ #: ../../admin/wp-slimstat-admin.php:689
232
  msgid "SERP"
233
  msgstr "SERP"
234
 
235
+ #: ../../admin/wp-slimstat-admin.php:689
236
  msgid ""
237
  "Short for search engine results page, the Web page that a search engine "
238
  "returns with the results of its search. The value shown represents your rank "
241
  "\"Search Engine Result Pages\" - Suchmaschinenranking. Der Wert "
242
  "repräsentiert Ihren Rang (die Postition) in den Suchergebnissen."
243
 
244
+ #: ../../admin/wp-slimstat-admin.php:690
245
+ #: ../../admin/config/maintenance.php:178 ../../admin/view/index.php:49
246
  #: ../../admin/view/wp-slimstat-reports.php:53
247
  #, fuzzy
248
  msgid "User Agent"
249
  msgstr "Top Browser"
250
 
251
+ #: ../../admin/wp-slimstat-admin.php:690
252
  msgid ""
253
  "Any program used for accessing a website; this includes browsers, robots, "
254
  "spiders and any other program that was used to retrieve information from the "
258
  "usw.), 'Robots' und 'Spider' sowie jedes andere Programm welches "
259
  "Informationen von einer Website abruft."
260
 
261
+ #: ../../admin/wp-slimstat-admin.php:691 ../../admin/view/index.php:53
262
  #: ../../admin/view/wp-slimstat-reports.php:57
263
  #, fuzzy
264
  msgid "Outbound Link"
265
  msgstr "Letzte ausgehende Links"
266
 
267
+ #: ../../admin/wp-slimstat-admin.php:691
268
  msgid ""
269
  "A link from one domain to another is said to be outbound from its source "
270
  "anchor and inbound to its target. This report lists all the links to other "
273
  "Ausgehende Links sind links zu einer anderen Domain. Dieser Report zeigt "
274
  "alle Links zu anderen Websites die Ihre Besucher verfolgt haben."
275
 
276
+ #: ../../admin/wp-slimstat-admin.php:698
277
  msgid "Basic Filters"
278
  msgstr "Einfache Filter"
279
 
280
+ #: ../../admin/wp-slimstat-admin.php:701 ../../admin/view/index.php:35
281
  #: ../../admin/view/right-now.php:98
282
  #: ../../admin/view/wp-slimstat-reports.php:40
283
  msgid "Browser"
284
  msgstr "Browser"
285
 
286
+ #: ../../admin/wp-slimstat-admin.php:701
287
  msgid "User agent (Firefox, Chrome, ...)"
288
  msgstr "Browser (Firefox, Chrome ...)"
289
 
290
+ #: ../../admin/wp-slimstat-admin.php:702
291
+ #: ../../admin/config/maintenance.php:179 ../../admin/view/index.php:36
292
  #: ../../admin/view/wp-slimstat-reports.php:41
293
+ #: ../../admin/view/wp-slimstat-reports.php:411
294
  msgid "Country Code"
295
  msgstr "L&auml;nder-Code"
296
 
297
+ #: ../../admin/wp-slimstat-admin.php:702
298
  msgid "2-letter code (us, ru, de, it, ...)"
299
  msgstr ""
300
 
301
+ #: ../../admin/wp-slimstat-admin.php:703 ../../admin/view/index.php:37
302
  #: ../../admin/view/wp-slimstat-reports.php:42
303
  msgid "IP"
304
  msgstr "IP"
305
 
306
+ #: ../../admin/wp-slimstat-admin.php:703
307
  msgid "Visitor's public IP address"
308
  msgstr "&Ouml;ffentliche IP Adresse des Besuchers"
309
 
310
+ #: ../../admin/wp-slimstat-admin.php:705
311
+ #: ../../admin/config/maintenance.php:181 ../../admin/view/index.php:39
312
  #: ../../admin/view/wp-slimstat-reports.php:44
313
+ #: ../../admin/view/wp-slimstat-reports.php:423
314
  msgid "Language Code"
315
  msgstr "Sprach-Kodierung"
316
 
317
+ #: ../../admin/wp-slimstat-admin.php:705
318
  msgid ""
319
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
320
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
323
  "Siehe <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
324
  "ee825488(v=cs.20).aspx\">Tabelle von Sprach-Kodierungen</a> "
325
 
326
+ #: ../../admin/wp-slimstat-admin.php:706 ../../admin/view/index.php:40
327
  #: ../../admin/view/wp-slimstat-reports.php:45
328
  msgid "Operating System"
329
  msgstr "Betriebssystem"
330
 
331
+ #: ../../admin/wp-slimstat-admin.php:706
332
  msgid ""
333
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
334
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
338
  "gibt es auf <a href=\"http://php.net/manual/de/function.get-browser.php\" "
339
  "target=\"_blank\">dieser Seite</a>"
340
 
341
+ #: ../../admin/wp-slimstat-admin.php:707
342
+ #: ../../admin/config/maintenance.php:182 ../../admin/view/index.php:41
343
  #: ../../admin/view/wp-slimstat-reports.php:46
344
  msgid "Permalink"
345
  msgstr "Permalink"
346
 
347
+ #: ../../admin/wp-slimstat-admin.php:707
348
  msgid "URL accessed on your site"
349
  msgstr "URL, die auf Ihrer Seite besucht wurde"
350
 
351
+ #: ../../admin/wp-slimstat-admin.php:708 ../../admin/view/index.php:42
352
  #: ../../admin/view/wp-slimstat-reports.php:48
353
  msgid "Referer"
354
  msgstr "Herkunft"
355
 
356
+ #: ../../admin/wp-slimstat-admin.php:708
357
  #, fuzzy
358
  msgid "Complete address of the referrer page"
359
  msgstr "Verweisende Seite &ouml;ffnen"
360
 
361
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:43
362
  #: ../../admin/view/wp-slimstat-reports.php:49
363
  msgid "Visitor's Name"
364
  msgstr "Besuchername"
365
 
366
+ #: ../../admin/wp-slimstat-admin.php:709
367
  msgid ""
368
  "Visitors' names according to the cookie set by Wordpress after they leave a "
369
  "comment"
371
  "Besuchername laut Cookie, welches Wordpress beim hinterlassen eines "
372
  "Kommentars anlegt"
373
 
374
+ #: ../../admin/wp-slimstat-admin.php:717
375
  #, fuzzy
376
  msgid "Advanced Filters"
377
  msgstr "-- Erweiterte Filter --"
378
 
379
+ #: ../../admin/wp-slimstat-admin.php:720 ../../admin/view/index.php:47
380
  #: ../../admin/view/wp-slimstat-reports.php:51
381
  msgid "Browser Version"
382
  msgstr "Browser-Version"
383
 
384
+ #: ../../admin/wp-slimstat-admin.php:720
385
  msgid "user agent version (9.0, 11, ...)"
386
  msgstr "Browser-Version (9.0, 11, ...)"
387
 
388
+ #: ../../admin/wp-slimstat-admin.php:721 ../../admin/view/index.php:48
389
  #: ../../admin/view/wp-slimstat-reports.php:52
390
  msgid "Browser Type"
391
  msgstr "Browser-Typ"
392
 
393
+ #: ../../admin/wp-slimstat-admin.php:721
394
  msgid ""
395
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
396
  "all others"
398
  "1 = Suchmaschinen Crawler, 2 = Mobiles Gerät, 3 = Feed-Reader, 0 = alle "
399
  "anderen"
400
 
401
+ #: ../../admin/wp-slimstat-admin.php:722 ../../admin/view/index.php:50
402
  #: ../../admin/view/wp-slimstat-reports.php:54
403
  msgid "Color Depth"
404
  msgstr "Farbtiefe"
405
 
406
+ #: ../../admin/wp-slimstat-admin.php:722
407
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
408
  msgstr "Farbtiefe des Monitors des Besuchers (8, 16, 24, ...)"
409
 
410
+ #: ../../admin/wp-slimstat-admin.php:723 ../../admin/view/index.php:51
411
  #: ../../admin/view/wp-slimstat-reports.php:55
412
  msgid "CSS Version"
413
  msgstr "CSS Version"
414
 
415
+ #: ../../admin/wp-slimstat-admin.php:723
416
  msgid ""
417
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
418
  "values)"
419
  msgstr ""
420
  "Vom Browser unterstützter CSS standard (1, 2, 3 und andere ganze Zahlen)"
421
 
422
+ #: ../../admin/wp-slimstat-admin.php:724 ../../admin/view/index.php:52
423
  #: ../../admin/view/wp-slimstat-reports.php:56
424
  msgid "Pageview Attributes"
425
  msgstr "Eigenschaften Seitenaufrufe"
426
 
427
+ #: ../../admin/wp-slimstat-admin.php:724
428
  msgid ""
429
  "this field is set to <em>[pre]</em> if the resource has been accessed "
430
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
434
  "target=\"_blank\" href=\"https://developer.mozilla.org/en/"
435
  "Link_prefetching_FAQ\">Link Prefetching</a> oder eine &auml;hnliche "
436
 
437
+ #: ../../admin/wp-slimstat-admin.php:725 ../../admin/view/index.php:54
438
  #: ../../admin/view/wp-slimstat-reports.php:58
439
  msgid "Post Author"
440
  msgstr "Autor der Seiten"
441
 
442
+ #: ../../admin/wp-slimstat-admin.php:725
443
  msgid "author associated to that post/page when the resource was accessed"
444
  msgstr "Der dem Artikel / der Seite zugeordnete Autor"
445
 
446
+ #: ../../admin/wp-slimstat-admin.php:726 ../../admin/view/index.php:55
447
  #: ../../admin/view/wp-slimstat-reports.php:59
448
  msgid "Post Category ID"
449
  msgstr "Kategorie-ID der Seite"
450
 
451
+ #: ../../admin/wp-slimstat-admin.php:726
452
  msgid "ID of the category/term associated to the resource, when available"
453
  msgstr "ID der zugeordneten Kategorie, falls vorhanden"
454
 
455
+ #: ../../admin/wp-slimstat-admin.php:727
456
  msgid "visitor's originating IP address, if available"
457
  msgstr "IP Adresse des Besuchers, falls bekannt"
458
 
459
+ #: ../../admin/wp-slimstat-admin.php:728 ../../admin/view/index.php:57
460
  #: ../../admin/view/wp-slimstat-reports.php:61
461
  msgid "Resource Content Type"
462
  msgstr "Inhalt der Ressource"
463
 
464
+ #: ../../admin/wp-slimstat-admin.php:728
465
  msgid ""
466
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
467
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
474
  "feed, home; F&uuml;r mehr Infos s. <a target=\"_blank\" href=\"http://codex."
475
  "wordpress.org/Conditional_Tags\">Conditional Tags</a>."
476
 
477
+ #: ../../admin/wp-slimstat-admin.php:729 ../../admin/view/index.php:59
478
  #: ../../admin/view/wp-slimstat-reports.php:63
479
  msgid "Screen Resolution"
480
  msgstr "Bildschirm-Aufl&ouml;sung"
481
 
482
+ #: ../../admin/wp-slimstat-admin.php:729
483
  msgid "viewport width and height (1024x768, 800x600, ...)"
484
  msgstr "Breite und H&ouml;he des sichtbaren Bereiches"
485
 
486
+ #: ../../admin/wp-slimstat-admin.php:730 ../../admin/view/index.php:60
487
  #: ../../admin/view/wp-slimstat-reports.php:64
488
  msgid "Visit ID"
489
  msgstr "Besuchs-ID"
490
 
491
+ #: ../../admin/wp-slimstat-admin.php:730
492
  msgid ""
493
  "generally used in conjunction with <em>is not empty</em>, identifies human "
494
  "visitors"
496
  "Meist im Zusammenhang mit <em>nicht leer</em> verwendet, kennzeichnet echte "
497
  "Besucher"
498
 
499
+ #: ../../admin/wp-slimstat-admin.php:731
500
  msgid "Date Filters"
501
  msgstr "Datumsfilter"
502
 
503
+ #: ../../admin/wp-slimstat-admin.php:731
504
  msgid ""
505
  "you can specify the timeframe by entering a number in the <em>interval</em> "
506
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
510
  "-1 erzeugt ein Intervall seit Beginn des Jahres / Monats, z.B. Tag=1, "
511
  "Monat=1, Jahr leer, Intervall=-1 erzeugt einen 'seit Jahresbeginn' Filter."
512
 
513
+ #: ../../admin/wp-slimstat-admin.php:732
514
  msgid "SERP Position"
515
  msgstr "Suchmaschinenrang"
516
 
517
+ #: ../../admin/wp-slimstat-admin.php:732
518
  msgid ""
519
  "set the filter to Referer contains cd=N&, where N is the position you are "
520
  "looking for"
521
  msgstr ""
522
 
523
+ #: ../../admin/wp-slimstat-admin.php:748 ../../admin/config/index.php:9
524
  #: ../../admin/config/index.php:205
525
  msgid "Support"
526
  msgstr "Support"
527
 
528
+ #: ../../admin/wp-slimstat-admin.php:757
529
  #, fuzzy
530
  msgid ""
531
  "<a href=\"http://slimstat.getused.to.it/\">WP SlimStat</a> is and will "
624
  msgstr ""
625
 
626
  #: ../../admin/config/index.php:21
627
+ #: ../../admin/view/wp-slimstat-reports.php:592
628
  #, fuzzy
629
  msgid "Javascript Mode"
630
  msgstr "Tracking per JavaScript"
667
  "Eintr&auml;ge, die vor dem %s erfasst wurden werden unwiderruflich gel&ouml;"
668
  "scht."
669
 
670
+ #: ../../admin/config/index.php:22 ../../admin/view/index.php:29
671
+ #: ../../admin/view/index.php:104 ../../admin/view/wp-slimstat-reports.php:69
672
+ #: ../../admin/view/wp-slimstat-reports.php:594
673
  msgid "days"
674
  msgstr "Tage"
675
 
1013
  "will not be tracked. Capabilities are case-insensitive."
1014
  msgstr ""
1015
 
 
 
 
 
 
1016
  #: ../../admin/config/index.php:82
1017
  msgid "Ignore users (username not found)"
1018
  msgstr ""
1019
 
 
 
 
 
 
1020
  #: ../../admin/config/index.php:105
1021
  msgid ""
1022
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
1048
  "case, the list has precedence over the capability."
1049
  msgstr ""
1050
 
1051
+ #: ../../admin/config/index.php:117
1052
  msgid "Capability to Admin"
1053
  msgstr ""
1054
 
1060
  "here below can be used to override this option for specific users."
1061
  msgstr ""
1062
 
1063
+ #: ../../admin/config/index.php:118
1064
  msgid "Read access"
1065
  msgstr ""
1066
 
1072
  "Usernames are case sensitive."
1073
  msgstr ""
1074
 
1075
+ #: ../../admin/config/index.php:119
1076
  msgid "Config access"
1077
  msgstr ""
1078
 
1090
  msgid "Read access: username not found"
1091
  msgstr ""
1092
 
 
 
 
 
1093
  #: ../../admin/config/index.php:149 ../../admin/config/index.php:180
1094
  msgid ""
1095
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1217
  "23:55=Silvester."
1218
 
1219
  #: ../../admin/config/index.php:199
1220
+ msgid "Enable UAN"
1221
  msgstr ""
1222
 
1223
  #: ../../admin/config/index.php:199
1224
  msgid ""
1225
+ "Collect data about unknown user agents, and send it anonymously to our "
1226
+ "server for analysis. This allows us to contribute to the <a href='http://"
1227
+ "browscap.co/' target='_blank'>BrowsCap opensource project</a>, and improve "
1228
+ "the accuracy of SlimStat's browser detection functionality."
1229
  msgstr ""
1230
 
1231
+ #: ../../admin/config/maintenance.php:29
1232
  msgid ""
1233
  "Are you sure you want to remove all the information about your hits and "
1234
  "visits?"
1235
  msgstr ""
1236
 
1237
+ #: ../../admin/config/maintenance.php:33
1238
  msgid "Your WP SlimStat table has been successfully emptied."
1239
  msgstr ""
1240
 
1241
+ #: ../../admin/config/maintenance.php:38
1242
  msgid "Are you sure you want to reset your tabs?"
1243
  msgstr ""
1244
 
1245
+ #: ../../admin/config/maintenance.php:44
1246
  msgid "Your WP SlimStat tabs have been successfully reset."
1247
  msgstr ""
1248
 
1249
+ #: ../../admin/config/maintenance.php:52
1250
  msgid "Your WP SlimStat table has been successfully reset."
1251
  msgstr ""
1252
 
1253
+ #: ../../admin/config/maintenance.php:54
1254
  msgid "ERROR: Your Slimstat table could not be initialized."
1255
  msgstr ""
1256
 
1257
+ #: ../../admin/config/maintenance.php:63
1258
  msgid "Your WP SlimStat table has been successfully optimized."
1259
  msgstr ""
1260
 
1261
+ #: ../../admin/config/maintenance.php:75
1262
  msgid "Your WP SlimStat tables have been successfully converted to InnoDB."
1263
  msgstr ""
1264
 
1265
+ #: ../../admin/config/maintenance.php:84
1266
  msgid "Your WP SlimStat indexes have been successfully created."
1267
  msgstr ""
1268
 
1269
+ #: ../../admin/config/maintenance.php:92
1270
  msgid "Your WP SlimStat indexes have been successfully removed."
1271
  msgstr ""
1272
 
1273
+ #: ../../admin/config/maintenance.php:123
1274
  msgid "Your WP SlimStat table has been successfully cleaned. Rows affected:"
1275
  msgstr ""
1276
 
1277
+ #: ../../admin/config/maintenance.php:137
1278
  msgid "Database Information"
1279
  msgstr ""
1280
 
1281
+ #: ../../admin/config/maintenance.php:138
1282
  #, fuzzy
1283
  msgid "Engine"
1284
  msgstr "Suchmaschinen"
1285
 
1286
+ #: ../../admin/config/maintenance.php:140
1287
  msgid ", it may take some time and exceed PHP's maximum execution time"
1288
  msgstr ""
1289
 
1290
+ #: ../../admin/config/maintenance.php:141
1291
  msgid "switch to InnoDB"
1292
  msgstr ""
1293
 
1294
+ #: ../../admin/config/maintenance.php:161
1295
  #, fuzzy
1296
  msgid "Size"
1297
  msgstr "Datenbank-Gr&ouml;sse"
1298
 
1299
+ #: ../../admin/config/maintenance.php:161
1300
  #, fuzzy
1301
  msgid "Records"
1302
  msgstr "Suchbegriffe"
1303
 
1304
+ #: ../../admin/config/maintenance.php:161
1305
  msgid "Average Record Length"
1306
  msgstr ""
1307
 
1308
+ #: ../../admin/config/maintenance.php:161
1309
  msgid "Created on"
1310
  msgstr ""
1311
 
1312
+ #: ../../admin/config/maintenance.php:163
1313
  msgid "Approximate Overhead"
1314
  msgstr ""
1315
 
1316
+ #: ../../admin/config/maintenance.php:167
1317
  msgid "Optimize tables"
1318
  msgstr ""
1319
 
1320
+ #: ../../admin/config/maintenance.php:171
1321
  msgid "Purge Data"
1322
  msgstr ""
1323
 
1324
+ #: ../../admin/config/maintenance.php:176
1325
  #, fuzzy
1326
  msgid "Delete rows where"
1327
  msgstr "Zeige Seitenaufrufe wo"
1328
 
1329
+ #: ../../admin/config/maintenance.php:180
1330
  msgid "IP Address"
1331
  msgstr ""
1332
 
1333
+ #: ../../admin/config/maintenance.php:186
1334
  #, fuzzy
1335
  msgid "Is equal to"
1336
  msgstr "ist ungleich zu"
1337
 
1338
+ #: ../../admin/config/maintenance.php:187
1339
  #, fuzzy
1340
  msgid "Contains"
1341
  msgstr "enth&auml;lt"
1342
 
1343
+ #: ../../admin/config/maintenance.php:188
1344
  #, fuzzy
1345
  msgid "Does not contain"
1346
  msgstr "enth&auml;lt nicht"
1347
 
1348
+ #: ../../admin/config/maintenance.php:189
1349
  #, fuzzy
1350
  msgid "Starts with"
1351
  msgstr "beginnt mit"
1352
 
1353
+ #: ../../admin/config/maintenance.php:190
1354
  #, fuzzy
1355
  msgid "Ends with"
1356
  msgstr "endet mit"
1357
 
1358
+ #: ../../admin/config/maintenance.php:191
1359
  #, fuzzy
1360
  msgid "Does not start with"
1361
  msgstr "beginnt mit"
1362
 
1363
+ #: ../../admin/config/maintenance.php:192
1364
  #, fuzzy
1365
  msgid "Does not end with"
1366
  msgstr "endet mit"
1367
 
1368
+ #: ../../admin/config/maintenance.php:196
1369
  msgid "DELETE"
1370
  msgstr ""
1371
 
1372
+ #: ../../admin/config/maintenance.php:197
1373
  msgid ""
1374
  "Are you sure you want to PERMANENTLY delete these rows from your database?"
1375
  msgstr ""
1376
 
1377
+ #: ../../admin/config/maintenance.php:205
1378
  msgid "Activate Indexes"
1379
  msgstr ""
1380
 
1381
+ #: ../../admin/config/maintenance.php:206
1382
  msgid ""
1383
  "Use this feature if you want to improve the overall performance of your "
1384
  "stats. You will need about 30% more DB space, to store the extra information "
1385
  "required."
1386
  msgstr ""
1387
 
1388
+ #: ../../admin/config/maintenance.php:210
1389
  msgid "Remove Indexes"
1390
  msgstr ""
1391
 
1392
+ #: ../../admin/config/maintenance.php:211
1393
  msgid ""
1394
  "Use this feature if you want to save some DB space, while slightly degrading "
1395
  "WP SlimStat overall performances."
1396
  msgstr ""
1397
 
1398
+ #: ../../admin/config/maintenance.php:215
1399
  msgid "Reset Tabs"
1400
  msgstr ""
1401
 
1402
+ #: ../../admin/config/maintenance.php:216
1403
  msgid ""
1404
  "Reset SlimStat's box order settings if one or more tabs are empty (no "
1405
  "reports shown) or metrics are missing."
1406
  msgstr ""
1407
 
1408
+ #: ../../admin/config/maintenance.php:219
1409
  msgid "Reset Stats"
1410
  msgstr ""
1411
 
1412
+ #: ../../admin/config/maintenance.php:220
1413
  msgid ""
1414
  "Select this option if you want to empty your WP SlimStat database (does not "
1415
  "reset your settings)."
1416
  msgstr ""
1417
 
1418
+ #: ../../admin/config/maintenance.php:223
1419
+ #, fuzzy
1420
+ msgid "Export Settings"
1421
+ msgstr "Sortierung w&auml;hlen"
1422
+
1423
+ #: ../../admin/config/maintenance.php:224
1424
+ msgid ""
1425
+ "Export all your SlimStat settings in a text file. You can import them later "
1426
+ "by pasting the content of that file in the text field below."
1427
+ msgstr ""
1428
+
1429
+ #: ../../admin/config/maintenance.php:227
1430
+ #, fuzzy
1431
+ msgid "Import Settings"
1432
+ msgstr "Sortierung w&auml;hlen"
1433
+
1434
+ #: ../../admin/config/maintenance.php:232
1435
+ #, fuzzy
1436
+ msgid "Import"
1437
+ msgstr "Support"
1438
+
1439
+ #: ../../admin/config/maintenance.php:233
1440
+ msgid "Are you sure you want to OVERWRITE your current settings?"
1441
+ msgstr ""
1442
+
1443
  #: ../../admin/config/support.php:22
1444
  msgid ""
1445
  "How valuable is monitoring your visitors for your site? WP SlimStat is and "
1497
  msgstr "Unknown"
1498
 
1499
  #: ../../admin/lang/dynamic_strings.php:5
1500
+ #, fuzzy
1501
+ msgid "win8.1"
1502
+ msgstr "Windows 8"
1503
 
1504
  #: ../../admin/lang/dynamic_strings.php:6
1505
  msgid "win8"
1506
  msgstr "Windows 8"
1507
 
1508
  #: ../../admin/lang/dynamic_strings.php:7
1509
+ msgid "win7"
1510
+ msgstr "Windows 7"
1511
 
1512
  #: ../../admin/lang/dynamic_strings.php:8
1513
  msgid "winvista"
1606
  msgstr "Cygwin"
1607
 
1608
  #: ../../admin/lang/dynamic_strings.php:32
 
 
 
 
1609
  msgid "digital unix"
1610
  msgstr "Digital Unix"
1611
 
1612
+ #: ../../admin/lang/dynamic_strings.php:33
1613
  msgid "risc os"
1614
  msgstr "Risc OS"
1615
 
1616
+ #: ../../admin/lang/dynamic_strings.php:34
 
 
 
 
 
 
 
 
1617
  msgid "openvms"
1618
  msgstr "OpenVMS"
1619
 
1620
+ #: ../../admin/lang/dynamic_strings.php:35
1621
  msgid "linux"
1622
  msgstr "Linux"
1623
 
1624
+ #: ../../admin/lang/dynamic_strings.php:36
1625
  msgid "freebsd"
1626
  msgstr "FreeBSD"
1627
 
1628
+ #: ../../admin/lang/dynamic_strings.php:37
1629
  msgid "openbsd"
1630
  msgstr "OpenBSD"
1631
 
1632
+ #: ../../admin/lang/dynamic_strings.php:38
1633
  msgid "netbsd"
1634
  msgstr "NetBSD"
1635
 
1636
+ #: ../../admin/lang/dynamic_strings.php:39
1637
  msgid "debian"
1638
  msgstr "Debian"
1639
 
1640
+ #: ../../admin/lang/dynamic_strings.php:40
1641
  msgid "amiga"
1642
  msgstr "Amiga"
1643
 
1644
+ #: ../../admin/lang/dynamic_strings.php:41
1645
  msgid "android"
1646
  msgstr "Android"
1647
 
1648
+ #: ../../admin/lang/dynamic_strings.php:42
1649
  msgid "wyderos"
1650
  msgstr "WyderOS"
1651
 
1652
+ #: ../../admin/lang/dynamic_strings.php:43
1653
  msgid "iphone osx"
1654
  msgstr "iPhone OS X"
1655
 
1656
+ #: ../../admin/lang/dynamic_strings.php:44
1657
  msgid "ios"
1658
  msgstr "iPhone OS X"
1659
 
1660
+ #: ../../admin/lang/dynamic_strings.php:45
1661
  msgid "palm"
1662
  msgstr "Palm"
1663
 
1664
+ #: ../../admin/lang/dynamic_strings.php:46
1665
  msgid "wap"
1666
  msgstr "WAP"
1667
 
1668
+ #: ../../admin/lang/dynamic_strings.php:47
1669
  msgid "java"
1670
  msgstr "Java"
1671
 
1672
+ #: ../../admin/lang/dynamic_strings.php:48
1673
+ msgid "winphone7"
1674
+ msgstr "Windows Phone"
1675
+
1676
+ #: ../../admin/lang/dynamic_strings.php:49
1677
  msgid "wince"
1678
  msgstr "Windows CE"
1679
 
1680
+ #: ../../admin/lang/dynamic_strings.php:50
1681
  msgid "symbianos"
1682
  msgstr "Symbian OS"
1683
 
1684
+ #: ../../admin/lang/dynamic_strings.php:51
1685
  msgid "blackberry os"
1686
  msgstr ""
1687
 
1688
+ #: ../../admin/lang/dynamic_strings.php:52
1689
  msgid "webos"
1690
  msgstr "WebOS"
1691
 
1692
+ #: ../../admin/lang/dynamic_strings.php:53
1693
  msgid "p-and"
1694
  msgstr "Android"
1695
 
1696
+ #: ../../admin/lang/dynamic_strings.php:54
1697
  msgid "p-bla"
1698
  msgstr "BlackBerry"
1699
 
1700
+ #: ../../admin/lang/dynamic_strings.php:55
1701
  msgid "p-chr"
1702
  msgstr "Chrome OS"
1703
 
1704
+ #: ../../admin/lang/dynamic_strings.php:56
1705
  msgid "p-fre"
1706
  msgstr "Linux FreeBSD"
1707
 
1708
+ #: ../../admin/lang/dynamic_strings.php:57
1709
  msgid "p-ios"
1710
  msgstr "Apple iOS"
1711
 
1712
+ #: ../../admin/lang/dynamic_strings.php:58
1713
  msgid "p-jav"
1714
  msgstr "Java-based OS"
1715
 
1716
+ #: ../../admin/lang/dynamic_strings.php:59
1717
  msgid "p-lin"
1718
  msgstr "Linux"
1719
 
1720
+ #: ../../admin/lang/dynamic_strings.php:60
1721
  msgid "p-mac"
1722
  msgstr "Apple"
1723
 
1724
+ #: ../../admin/lang/dynamic_strings.php:61
1725
  msgid "p-sym"
1726
  msgstr "Symbian OS"
1727
 
1728
+ #: ../../admin/lang/dynamic_strings.php:62
1729
  msgid "p-unk"
1730
  msgstr "Unknown"
1731
 
1732
+ #: ../../admin/lang/dynamic_strings.php:63
1733
  msgid "p-win"
1734
  msgstr "Microsoft"
1735
 
1736
+ #: ../../admin/lang/dynamic_strings.php:64
1737
  msgid "powertv"
1738
  msgstr "PowerTV"
1739
 
1740
+ #: ../../admin/lang/dynamic_strings.php:65
1741
  msgid "acrobat"
1742
  msgstr "Acrobat Reader"
1743
 
1744
+ #: ../../admin/lang/dynamic_strings.php:66
1745
  msgid "director"
1746
  msgstr "Macromedia Director"
1747
 
1748
+ #: ../../admin/lang/dynamic_strings.php:67
1749
  msgid "flash"
1750
  msgstr "Adobe Flash Player"
1751
 
1752
+ #: ../../admin/lang/dynamic_strings.php:68
1753
  msgid "mediaplayer"
1754
  msgstr "Microsoft Media Player"
1755
 
1756
+ #: ../../admin/lang/dynamic_strings.php:69
1757
  msgid "quicktime"
1758
  msgstr "QuickTime"
1759
 
1760
+ #: ../../admin/lang/dynamic_strings.php:70
1761
  msgid "real"
1762
  msgstr "Real Player"
1763
 
1764
+ #: ../../admin/lang/dynamic_strings.php:71
1765
  msgid "silverlight"
1766
  msgstr "Microsoft Silverlight"
1767
 
1768
  # Afar
1769
+ #: ../../admin/lang/dynamic_strings.php:72
1770
  msgid "l-aa"
1771
  msgstr "Afar"
1772
 
1773
  # Abkhazian
1774
+ #: ../../admin/lang/dynamic_strings.php:73
1775
  msgid "l-ab"
1776
  msgstr "Abkhazian"
1777
 
1778
  # Avestan
1779
+ #: ../../admin/lang/dynamic_strings.php:74
1780
  msgid "l-ae"
1781
  msgstr "Avestan"
1782
 
1783
  # Afrikaans
1784
+ #: ../../admin/lang/dynamic_strings.php:75
1785
  msgid "l-af"
1786
  msgstr "Afrikaans"
1787
 
1788
  # Akan
1789
+ #: ../../admin/lang/dynamic_strings.php:76
1790
  msgid "l-ak"
1791
  msgstr "Akan"
1792
 
1793
  # Amharic
1794
+ #: ../../admin/lang/dynamic_strings.php:77
1795
  msgid "l-am"
1796
  msgstr "Amharic"
1797
 
 
 
 
 
 
1798
  # Arabic
1799
+ #: ../../admin/lang/dynamic_strings.php:78
1800
  msgid "l-ar"
1801
  msgstr "Arabic"
1802
 
1803
  # Assamese
1804
+ #: ../../admin/lang/dynamic_strings.php:79
1805
  msgid "l-as"
1806
  msgstr "Assamese"
1807
 
1808
  # Avaric
1809
+ #: ../../admin/lang/dynamic_strings.php:80
1810
  msgid "l-av"
1811
  msgstr "Avaric"
1812
 
1813
  # Aymara
1814
+ #: ../../admin/lang/dynamic_strings.php:81
1815
  msgid "l-ay"
1816
  msgstr "Aymara"
1817
 
1818
  # Azerbaijani
1819
+ #: ../../admin/lang/dynamic_strings.php:82
1820
  msgid "l-az"
1821
  msgstr "Azerbaijani"
1822
 
1823
  # Bashkir
1824
+ #: ../../admin/lang/dynamic_strings.php:83
1825
  msgid "l-ba"
1826
  msgstr "Bashkir"
1827
 
1828
  # Belarusian
1829
+ #: ../../admin/lang/dynamic_strings.php:84
1830
  msgid "l-be"
1831
  msgstr "Belarusian"
1832
 
1833
  # Bulgarian
1834
+ #: ../../admin/lang/dynamic_strings.php:85
1835
  msgid "l-bg"
1836
  msgstr "Bulgarian"
1837
 
1838
  # Bihari languages
1839
+ #: ../../admin/lang/dynamic_strings.php:86
1840
  msgid "l-bh"
1841
  msgstr "Bihari languages"
1842
 
1843
  # Bislama
1844
+ #: ../../admin/lang/dynamic_strings.php:87
1845
  msgid "l-bi"
1846
  msgstr "Bislama"
1847
 
1848
  # Bambara
1849
+ #: ../../admin/lang/dynamic_strings.php:88
1850
  msgid "l-bm"
1851
  msgstr "Bambara"
1852
 
1853
  # Bengali
1854
+ #: ../../admin/lang/dynamic_strings.php:89
1855
  msgid "l-bn"
1856
  msgstr "Bengali"
1857
 
1858
  # Tibetan
1859
+ #: ../../admin/lang/dynamic_strings.php:90
1860
  msgid "l-bo"
1861
  msgstr "Tibetan"
1862
 
1863
  # Breton
1864
+ #: ../../admin/lang/dynamic_strings.php:91
1865
  msgid "l-br"
1866
  msgstr "Breton"
1867
 
1868
  # Bosnian
1869
+ #: ../../admin/lang/dynamic_strings.php:92
1870
  msgid "l-bs"
1871
  msgstr "Bosnian"
1872
 
1873
  # Catalan; Valencian
1874
+ #: ../../admin/lang/dynamic_strings.php:93
1875
  msgid "l-ca"
1876
  msgstr "Catalan; Valencian"
1877
 
1878
  # Chechen
1879
+ #: ../../admin/lang/dynamic_strings.php:94
1880
  msgid "l-ce"
1881
  msgstr "Chechen"
1882
 
 
 
 
 
 
1883
  # Corsican
1884
+ #: ../../admin/lang/dynamic_strings.php:95
1885
  msgid "l-co"
1886
  msgstr "Corsican"
1887
 
1888
  # Cree
1889
+ #: ../../admin/lang/dynamic_strings.php:96
1890
  msgid "l-cr"
1891
  msgstr "Cree"
1892
 
1893
  # Czech
1894
+ #: ../../admin/lang/dynamic_strings.php:97
1895
  msgid "l-cs"
1896
  msgstr "Czech"
1897
 
 
 
 
 
 
1898
  # Chuvash
1899
+ #: ../../admin/lang/dynamic_strings.php:98
1900
  msgid "l-cv"
1901
  msgstr "Chuvash"
1902
 
1903
  # Welsh
1904
+ #: ../../admin/lang/dynamic_strings.php:99
1905
  msgid "l-cy"
1906
  msgstr "Welsh"
1907
 
1908
  # Danish
1909
+ #: ../../admin/lang/dynamic_strings.php:100
1910
  msgid "l-da"
1911
  msgstr "Danish"
1912
 
1913
  # German
1914
+ #: ../../admin/lang/dynamic_strings.php:101
1915
  msgid "l-de"
1916
  msgstr "German"
1917
 
1918
  # Dhivehi; Divehi; Maldivian
1919
+ #: ../../admin/lang/dynamic_strings.php:102
1920
  msgid "l-dv"
1921
  msgstr "Dhivehi; Divehi; Maldivian"
1922
 
1923
  # Dzongkha
1924
+ #: ../../admin/lang/dynamic_strings.php:103
1925
  msgid "l-dz"
1926
  msgstr "Dzongkha"
1927
 
1928
  # Ewe
1929
+ #: ../../admin/lang/dynamic_strings.php:104
1930
  msgid "l-ee"
1931
  msgstr "Ewe"
1932
 
1933
  # Modern Greek (1453-)
1934
+ #: ../../admin/lang/dynamic_strings.php:105
1935
  msgid "l-el"
1936
  msgstr "Modern Greek (1453-)"
1937
 
1938
  # English
1939
+ #: ../../admin/lang/dynamic_strings.php:106
1940
  msgid "l-en"
1941
  msgstr "English"
1942
 
1943
  # Esperanto
1944
+ #: ../../admin/lang/dynamic_strings.php:107
1945
  msgid "l-eo"
1946
  msgstr "Esperanto"
1947
 
1948
  # Spanish; Castilian
1949
+ #: ../../admin/lang/dynamic_strings.php:108
1950
  msgid "l-es"
1951
  msgstr "Spanish; Castilian"
1952
 
1953
  # Estonian
1954
+ #: ../../admin/lang/dynamic_strings.php:109
1955
  msgid "l-et"
1956
  msgstr "Estonian"
1957
 
1958
  # Basque
1959
+ #: ../../admin/lang/dynamic_strings.php:110
1960
  msgid "l-eu"
1961
  msgstr "Basque"
1962
 
1963
  # Persian
1964
+ #: ../../admin/lang/dynamic_strings.php:111
1965
  msgid "l-fa"
1966
  msgstr "Persian"
1967
 
1968
  # Fulah
1969
+ #: ../../admin/lang/dynamic_strings.php:112
1970
  msgid "l-ff"
1971
  msgstr "Fulah"
1972
 
1973
  # Finnish
1974
+ #: ../../admin/lang/dynamic_strings.php:113
1975
  msgid "l-fi"
1976
  msgstr "Finnish"
1977
 
1978
  # Fijian
1979
+ #: ../../admin/lang/dynamic_strings.php:114
1980
  msgid "l-fj"
1981
  msgstr "Fijian"
1982
 
1983
  # Faroese
1984
+ #: ../../admin/lang/dynamic_strings.php:115
1985
  msgid "l-fo"
1986
  msgstr "Faroese"
1987
 
1988
  # French
1989
+ #: ../../admin/lang/dynamic_strings.php:116
1990
  msgid "l-fr"
1991
  msgstr "French"
1992
 
 
 
 
 
 
1993
  # Irish
1994
+ #: ../../admin/lang/dynamic_strings.php:117
1995
  msgid "l-ga"
1996
  msgstr "Irish"
1997
 
1998
  # Scottish Gaelic; Gaelic
1999
+ #: ../../admin/lang/dynamic_strings.php:118
2000
  msgid "l-gd"
2001
  msgstr "Scottish Gaelic; Gaelic"
2002
 
2003
  # Galician
2004
+ #: ../../admin/lang/dynamic_strings.php:119
2005
  msgid "l-gl"
2006
  msgstr "Galician"
2007
 
2008
  # Guarani
2009
+ #: ../../admin/lang/dynamic_strings.php:120
2010
  msgid "l-gn"
2011
  msgstr "Guarani"
2012
 
2013
  # Gujarati
2014
+ #: ../../admin/lang/dynamic_strings.php:121
2015
  msgid "l-gu"
2016
  msgstr "Gujarati"
2017
 
2018
  # Manx
2019
+ #: ../../admin/lang/dynamic_strings.php:122
2020
  msgid "l-gv"
2021
  msgstr "Manx"
2022
 
2023
  # Hausa
2024
+ #: ../../admin/lang/dynamic_strings.php:123
2025
  msgid "l-ha"
2026
  msgstr "Hausa"
2027
 
2028
  # Hebrew
2029
+ #: ../../admin/lang/dynamic_strings.php:124
2030
  msgid "l-he"
2031
  msgstr "Hebrew"
2032
 
2033
  # Hindi
2034
+ #: ../../admin/lang/dynamic_strings.php:125
2035
  msgid "l-hi"
2036
  msgstr "Hindi"
2037
 
 
 
 
 
 
2038
  # Croatian
2039
+ #: ../../admin/lang/dynamic_strings.php:126
2040
  msgid "l-hr"
2041
  msgstr "Croatian"
2042
 
2043
  # Haitian; Haitian Creole
2044
+ #: ../../admin/lang/dynamic_strings.php:127
2045
  msgid "l-ht"
2046
  msgstr "Haitian; Haitian Creole"
2047
 
2048
  # Hungarian
2049
+ #: ../../admin/lang/dynamic_strings.php:128
2050
  msgid "l-hu"
2051
  msgstr "Hungarian"
2052
 
2053
  # Armenian
2054
+ #: ../../admin/lang/dynamic_strings.php:129
2055
  msgid "l-hy"
2056
  msgstr "Armenian"
2057
 
 
 
 
 
 
2058
  # Interlingua (International Auxiliary Language Association)
2059
+ #: ../../admin/lang/dynamic_strings.php:130
2060
  msgid "l-ia"
2061
  msgstr "Interlingua (International Auxiliary Language Association)"
2062
 
 
 
 
 
 
2063
  # Interlingue; Occidental
2064
+ #: ../../admin/lang/dynamic_strings.php:131
2065
  msgid "l-ie"
2066
  msgstr "Interlingue; Occidental"
2067
 
 
 
 
 
 
2068
  # Sichuan Yi; Nuosu
2069
+ #: ../../admin/lang/dynamic_strings.php:132
2070
  msgid "l-ii"
2071
  msgstr "Sichuan Yi; Nuosu"
2072
 
2073
  # Inupiaq
2074
+ #: ../../admin/lang/dynamic_strings.php:133
2075
  msgid "l-ik"
2076
  msgstr "Inupiaq"
2077
 
2078
  # Indonesian
2079
+ #: ../../admin/lang/dynamic_strings.php:134
2080
  msgid "l-in"
2081
  msgstr "Indonesian"
2082
 
2083
  # Ido
2084
+ #: ../../admin/lang/dynamic_strings.php:135
2085
  msgid "l-io"
2086
  msgstr "Ido"
2087
 
2088
  # Icelandic
2089
+ #: ../../admin/lang/dynamic_strings.php:136
2090
  msgid "l-is"
2091
  msgstr "Icelandic"
2092
 
2093
  # Italian
2094
+ #: ../../admin/lang/dynamic_strings.php:137
2095
  msgid "l-it"
2096
  msgstr "Italian"
2097
 
 
 
 
 
 
2098
  # Hebrew
2099
+ #: ../../admin/lang/dynamic_strings.php:138
2100
  msgid "l-iw"
2101
  msgstr "Hebrew"
2102
 
2103
  # Japanese
2104
+ #: ../../admin/lang/dynamic_strings.php:139
2105
  msgid "l-ja"
2106
  msgstr "Japanese"
2107
 
2108
  # Yiddish
2109
+ #: ../../admin/lang/dynamic_strings.php:140
2110
  msgid "l-ji"
2111
  msgstr "Yiddish"
2112
 
2113
  # Javanese
2114
+ #: ../../admin/lang/dynamic_strings.php:141
2115
  msgid "l-jv"
2116
  msgstr "Javanese"
2117
 
2118
  # Javanese
2119
+ #: ../../admin/lang/dynamic_strings.php:142
2120
  msgid "l-jw"
2121
  msgstr "Javanese"
2122
 
2123
  # Georgian
2124
+ #: ../../admin/lang/dynamic_strings.php:143
2125
  msgid "l-ka"
2126
  msgstr "Georgian"
2127
 
2128
  # Kongo
2129
+ #: ../../admin/lang/dynamic_strings.php:144
2130
  msgid "l-kg"
2131
  msgstr "Kongo"
2132
 
2133
  # Kikuyu; Gikuyu
2134
+ #: ../../admin/lang/dynamic_strings.php:145
2135
  msgid "l-ki"
2136
  msgstr "Kikuyu; Gikuyu"
2137
 
2138
  # Kuanyama; Kwanyama
2139
+ #: ../../admin/lang/dynamic_strings.php:146
2140
  msgid "l-kj"
2141
  msgstr "Kuanyama; Kwanyama"
2142
 
2143
  # Kazakh
2144
+ #: ../../admin/lang/dynamic_strings.php:147
2145
  msgid "l-kk"
2146
  msgstr "Kazakh"
2147
 
2148
  # Kalaallisut; Greenlandic
2149
+ #: ../../admin/lang/dynamic_strings.php:148
2150
  msgid "l-kl"
2151
  msgstr "Kalaallisut; Greenlandic"
2152
 
2153
  # Central Khmer
2154
+ #: ../../admin/lang/dynamic_strings.php:149
2155
  msgid "l-km"
2156
  msgstr "Central Khmer"
2157
 
2158
  # Kannada
2159
+ #: ../../admin/lang/dynamic_strings.php:150
2160
  msgid "l-kn"
2161
  msgstr "Kannada"
2162
 
2163
  # Korean
2164
+ #: ../../admin/lang/dynamic_strings.php:151
2165
  msgid "l-ko"
2166
  msgstr "Korean"
2167
 
2168
  # Kanuri
2169
+ #: ../../admin/lang/dynamic_strings.php:152
2170
  msgid "l-kr"
2171
  msgstr "Kanuri"
2172
 
2173
  # Kashmiri
2174
+ #: ../../admin/lang/dynamic_strings.php:153
2175
  msgid "l-ks"
2176
  msgstr "Kashmiri"
2177
 
2178
  # Kurdish
2179
+ #: ../../admin/lang/dynamic_strings.php:154
2180
  msgid "l-ku"
2181
  msgstr "Kurdish"
2182
 
2183
  # Komi
2184
+ #: ../../admin/lang/dynamic_strings.php:155
2185
  msgid "l-kv"
2186
  msgstr "Komi"
2187
 
2188
  # Cornish
2189
+ #: ../../admin/lang/dynamic_strings.php:156
2190
  msgid "l-kw"
2191
  msgstr "Cornish"
2192
 
2193
  # Kirghiz; Kyrgyz
2194
+ #: ../../admin/lang/dynamic_strings.php:157
2195
  msgid "l-ky"
2196
  msgstr "Kirghiz; Kyrgyz"
2197
 
2198
  # Latin
2199
+ #: ../../admin/lang/dynamic_strings.php:158
2200
  msgid "l-la"
2201
  msgstr "Latin"
2202
 
2203
  # Luxembourgish; Letzeburgesch
2204
+ #: ../../admin/lang/dynamic_strings.php:159
2205
  msgid "l-lb"
2206
  msgstr "Luxembourgish; Letzeburgesch"
2207
 
2208
  # Ganda
2209
+ #: ../../admin/lang/dynamic_strings.php:160
2210
  msgid "l-lg"
2211
  msgstr "Ganda"
2212
 
2213
  # Limburgan; Limburge; Limburgish
2214
+ #: ../../admin/lang/dynamic_strings.php:161
2215
  msgid "l-li"
2216
  msgstr "Limburgan; Limburge; Limburgish"
2217
 
2218
  # Lingala
2219
+ #: ../../admin/lang/dynamic_strings.php:162
2220
  msgid "l-ln"
2221
  msgstr "Lingala"
2222
 
2223
  # Lao
2224
+ #: ../../admin/lang/dynamic_strings.php:163
2225
  msgid "l-lo"
2226
  msgstr "Lao"
2227
 
2228
  # Lithuanian
2229
+ #: ../../admin/lang/dynamic_strings.php:164
2230
  msgid "l-lt"
2231
  msgstr "Lithuanian"
2232
 
2233
  # Luba-Katanga
2234
+ #: ../../admin/lang/dynamic_strings.php:165
2235
  msgid "l-lu"
2236
  msgstr "Luba-Katanga"
2237
 
2238
  # Latvian
2239
+ #: ../../admin/lang/dynamic_strings.php:166
2240
  msgid "l-lv"
2241
  msgstr "Latvian"
2242
 
2243
  # Malagasy
2244
+ #: ../../admin/lang/dynamic_strings.php:167
2245
  msgid "l-mg"
2246
  msgstr "Malagasy"
2247
 
2248
  # Marshallese
2249
+ #: ../../admin/lang/dynamic_strings.php:168
2250
  msgid "l-mh"
2251
  msgstr "Marshallese"
2252
 
2253
  # Maori
2254
+ #: ../../admin/lang/dynamic_strings.php:169
2255
  msgid "l-mi"
2256
  msgstr "Maori"
2257
 
2258
  # Macedonian
2259
+ #: ../../admin/lang/dynamic_strings.php:170
2260
  msgid "l-mk"
2261
  msgstr "Macedonian"
2262
 
2263
  # Malayalam
2264
+ #: ../../admin/lang/dynamic_strings.php:171
2265
  msgid "l-ml"
2266
  msgstr "Malayalam"
2267
 
2268
  # Mongolian
2269
+ #: ../../admin/lang/dynamic_strings.php:172
2270
  msgid "l-mn"
2271
  msgstr "Mongolian"
2272
 
2273
  # Moldavian; Moldovan
2274
+ #: ../../admin/lang/dynamic_strings.php:173
2275
  msgid "l-mo"
2276
  msgstr "Moldavian; Moldovan"
2277
 
2278
  # Marathi
2279
+ #: ../../admin/lang/dynamic_strings.php:174
2280
  msgid "l-mr"
2281
  msgstr "Marathi"
2282
 
2283
  # Malay
2284
+ #: ../../admin/lang/dynamic_strings.php:175
2285
  msgid "l-ms"
2286
  msgstr "Malay"
2287
 
2288
  # Maltese
2289
+ #: ../../admin/lang/dynamic_strings.php:176
2290
  msgid "l-mt"
2291
  msgstr "Maltese"
2292
 
2293
  # Burmese
2294
+ #: ../../admin/lang/dynamic_strings.php:177
2295
  msgid "l-my"
2296
  msgstr "Burmese"
2297
 
2298
  # Nauru
2299
+ #: ../../admin/lang/dynamic_strings.php:178
2300
  msgid "l-na"
2301
  msgstr "Nauru"
2302
 
2303
  # Norwegian Bokmål
2304
+ #: ../../admin/lang/dynamic_strings.php:179
2305
  msgid "l-nb"
2306
  msgstr "Norwegian Bokmål"
2307
 
2308
  # North Ndebele
2309
+ #: ../../admin/lang/dynamic_strings.php:180
2310
  msgid "l-nd"
2311
  msgstr "North Ndebele"
2312
 
2313
  # Nepali
2314
+ #: ../../admin/lang/dynamic_strings.php:181
2315
  msgid "l-ne"
2316
  msgstr "Nepali"
2317
 
2318
  # Ndonga
2319
+ #: ../../admin/lang/dynamic_strings.php:182
2320
  msgid "l-ng"
2321
  msgstr "Ndonga"
2322
 
2323
  # Dutch; Flemish
2324
+ #: ../../admin/lang/dynamic_strings.php:183
2325
  msgid "l-nl"
2326
  msgstr "Dutch; Flemish"
2327
 
2328
  # Norwegian Nynorsk
2329
+ #: ../../admin/lang/dynamic_strings.php:184
2330
  msgid "l-nn"
2331
  msgstr "Norwegian Nynorsk"
2332
 
2333
  # Norwegian
2334
+ #: ../../admin/lang/dynamic_strings.php:185
2335
  msgid "l-no"
2336
  msgstr "Norwegian"
2337
 
 
 
 
 
 
2338
  # Navajo; Navaho
2339
+ #: ../../admin/lang/dynamic_strings.php:186
2340
  msgid "l-nv"
2341
  msgstr "Navajo; Navaho"
2342
 
2343
  # Nyanja; Chewa; Chichewa
2344
+ #: ../../admin/lang/dynamic_strings.php:187
2345
  msgid "l-ny"
2346
  msgstr "Nyanja; Chewa; Chichewa"
2347
 
2348
  # Occitan (post 1500)
2349
+ #: ../../admin/lang/dynamic_strings.php:188
2350
  msgid "l-oc"
2351
  msgstr "Occitan (post 1500)"
2352
 
2353
  # Ojibwa
2354
+ #: ../../admin/lang/dynamic_strings.php:189
2355
  msgid "l-oj"
2356
  msgstr "Ojibwa"
2357
 
2358
  # Oromo
2359
+ #: ../../admin/lang/dynamic_strings.php:190
2360
  msgid "l-om"
2361
  msgstr "Oromo"
2362
 
2363
  # Oriya
2364
+ #: ../../admin/lang/dynamic_strings.php:191
2365
  msgid "l-or"
2366
  msgstr "Oriya"
2367
 
2368
  # Ossetian; Ossetic
2369
+ #: ../../admin/lang/dynamic_strings.php:192
2370
  msgid "l-os"
2371
  msgstr "Ossetian; Ossetic"
2372
 
2373
  # Panjabi; Punjabi
2374
+ #: ../../admin/lang/dynamic_strings.php:193
2375
  msgid "l-pa"
2376
  msgstr "Panjabi; Punjabi"
2377
 
2378
  # Pali
2379
+ #: ../../admin/lang/dynamic_strings.php:194
2380
  msgid "l-pi"
2381
  msgstr "Pali"
2382
 
2383
  # Polish
2384
+ #: ../../admin/lang/dynamic_strings.php:195
2385
  msgid "l-pl"
2386
  msgstr "Polish"
2387
 
2388
  # Polish
2389
+ #: ../../admin/lang/dynamic_strings.php:196
2390
  msgid "l-pl-pl"
2391
  msgstr "Polish (Poland)"
2392
 
2393
  # Pushto; Pashto
2394
+ #: ../../admin/lang/dynamic_strings.php:197
2395
  msgid "l-ps"
2396
  msgstr "Pushto; Pashto"
2397
 
2398
  # Portuguese
2399
+ #: ../../admin/lang/dynamic_strings.php:198
2400
  msgid "l-pt"
2401
  msgstr "Portuguese"
2402
 
2403
  # Portuguese
2404
+ #: ../../admin/lang/dynamic_strings.php:199
2405
  msgid "l-pt-pt"
2406
  msgstr "Portuguese (Portugal)"
2407
 
2408
  # Quechua
2409
+ #: ../../admin/lang/dynamic_strings.php:200
2410
  msgid "l-qu"
2411
  msgstr "Quechua"
2412
 
2413
  # Romansh
2414
+ #: ../../admin/lang/dynamic_strings.php:201
2415
  msgid "l-rm"
2416
  msgstr "Romansh"
2417
 
2418
  # Rundi
2419
+ #: ../../admin/lang/dynamic_strings.php:202
2420
  msgid "l-rn"
2421
  msgstr "Rundi"
2422
 
2423
  # Romanian; Moldavian; Moldovan
2424
+ #: ../../admin/lang/dynamic_strings.php:203
2425
  msgid "l-ro"
2426
  msgstr "Romanian; Moldavian; Moldovan"
2427
 
2428
  # Russian
2429
+ #: ../../admin/lang/dynamic_strings.php:204
2430
  msgid "l-ru"
2431
  msgstr "Russian"
2432
 
2433
  # Kinyarwanda
2434
+ #: ../../admin/lang/dynamic_strings.php:205
2435
  msgid "l-rw"
2436
  msgstr "Kinyarwanda"
2437
 
 
 
 
 
 
2438
  # Sardinian
2439
+ #: ../../admin/lang/dynamic_strings.php:206
2440
  msgid "l-sc"
2441
  msgstr "Sardinian"
2442
 
2443
  # Sindhi
2444
+ #: ../../admin/lang/dynamic_strings.php:207
2445
  msgid "l-sd"
2446
  msgstr "Sindhi"
2447
 
2448
  # Northern Sami
2449
+ #: ../../admin/lang/dynamic_strings.php:208
2450
  msgid "l-se"
2451
  msgstr "Northern Sami"
2452
 
2453
  # Sango
2454
+ #: ../../admin/lang/dynamic_strings.php:209
2455
  msgid "l-sg"
2456
  msgstr "Sango"
2457
 
2458
  # Serbo-Croatian
2459
+ #: ../../admin/lang/dynamic_strings.php:210
2460
  msgid "l-sh"
2461
  msgstr "Serbo-Croatian"
2462
 
2463
  # Sinhala; Sinhalese
2464
+ #: ../../admin/lang/dynamic_strings.php:211
2465
  msgid "l-si"
2466
  msgstr "Sinhala; Sinhalese"
2467
 
2468
  # Slovak
2469
+ #: ../../admin/lang/dynamic_strings.php:212
2470
  msgid "l-sk"
2471
  msgstr "Slovak"
2472
 
2473
  # Slovenian
2474
+ #: ../../admin/lang/dynamic_strings.php:213
2475
  msgid "l-sl"
2476
  msgstr "Slovenian"
2477
 
2478
  # Samoan
2479
+ #: ../../admin/lang/dynamic_strings.php:214
2480
  msgid "l-sm"
2481
  msgstr "Samoan"
2482
 
2483
  # Shona
2484
+ #: ../../admin/lang/dynamic_strings.php:215
2485
  msgid "l-sn"
2486
  msgstr "Shona"
2487
 
2488
  # Somali
2489
+ #: ../../admin/lang/dynamic_strings.php:216
2490
  msgid "l-so"
2491
  msgstr "Somali"
2492
 
2493
  # Albanian
2494
+ #: ../../admin/lang/dynamic_strings.php:217
2495
  msgid "l-sq"
2496
  msgstr "Albanian"
2497
 
2498
  # Serbian
2499
+ #: ../../admin/lang/dynamic_strings.php:218
2500
  msgid "l-sr"
2501
  msgstr "Serbian"
2502
 
2503
  # Swati
2504
+ #: ../../admin/lang/dynamic_strings.php:219
2505
  msgid "l-ss"
2506
  msgstr "Swati"
2507
 
2508
  # Southern Sotho
2509
+ #: ../../admin/lang/dynamic_strings.php:220
2510
  msgid "l-st"
2511
  msgstr "Southern Sotho"
2512
 
2513
  # Sundanese
2514
+ #: ../../admin/lang/dynamic_strings.php:221
2515
  msgid "l-su"
2516
  msgstr "Sundanese"
2517
 
2518
  # Swedish
2519
+ #: ../../admin/lang/dynamic_strings.php:222
2520
  msgid "l-sv"
2521
  msgstr "Swedish"
2522
 
2523
  # Swahili
2524
+ #: ../../admin/lang/dynamic_strings.php:223
2525
  msgid "l-sw"
2526
  msgstr "Swahili"
2527
 
2528
  # Tamil
2529
+ #: ../../admin/lang/dynamic_strings.php:224
2530
  msgid "l-ta"
2531
  msgstr "Tamil"
2532
 
2533
  # Telugu
2534
+ #: ../../admin/lang/dynamic_strings.php:225
2535
  msgid "l-te"
2536
  msgstr "Telugu"
2537
 
2538
  # Tajik
2539
+ #: ../../admin/lang/dynamic_strings.php:226
2540
  msgid "l-tg"
2541
  msgstr "Tajik"
2542
 
2543
  # Thai
2544
+ #: ../../admin/lang/dynamic_strings.php:227
2545
  msgid "l-th"
2546
  msgstr "Thai"
2547
 
2548
  # Thai
2549
+ #: ../../admin/lang/dynamic_strings.php:228
2550
  msgid "l-th-th"
2551
  msgstr "Thai (Thailand)"
2552
 
2553
  # Tigrinya
2554
+ #: ../../admin/lang/dynamic_strings.php:229
2555
  msgid "l-ti"
2556
  msgstr "Tigrinya"
2557
 
2558
  # Turkmen
2559
+ #: ../../admin/lang/dynamic_strings.php:230
2560
  msgid "l-tk"
2561
  msgstr "Turkmen"
2562
 
2563
  # Tagalog
2564
+ #: ../../admin/lang/dynamic_strings.php:231
2565
  msgid "l-tl"
2566
  msgstr "Tagalog"
2567
 
2568
  # Tswana
2569
+ #: ../../admin/lang/dynamic_strings.php:232
2570
  msgid "l-tn"
2571
  msgstr "Tswana"
2572
 
2573
  # Tonga (Tonga Islands)
2574
+ #: ../../admin/lang/dynamic_strings.php:233
2575
  msgid "l-to"
2576
  msgstr "Tonga (Tonga Islands)"
2577
 
2578
  # Turkish
2579
+ #: ../../admin/lang/dynamic_strings.php:234
2580
  msgid "l-tr"
2581
  msgstr "Turkish"
2582
 
2583
  # Tsonga
2584
+ #: ../../admin/lang/dynamic_strings.php:235
2585
  msgid "l-ts"
2586
  msgstr "Tsonga"
2587
 
2588
  # Tatar
2589
+ #: ../../admin/lang/dynamic_strings.php:236
2590
  msgid "l-tt"
2591
  msgstr "Tatar"
2592
 
 
 
 
 
 
2593
  # Tahitian
2594
+ #: ../../admin/lang/dynamic_strings.php:237
2595
  msgid "l-ty"
2596
  msgstr "Tahitian"
2597
 
2598
  # Uighur; Uyghur
2599
+ #: ../../admin/lang/dynamic_strings.php:238
2600
  msgid "l-ug"
2601
  msgstr "Uighur; Uyghur"
2602
 
2603
  # Ukrainian
2604
+ #: ../../admin/lang/dynamic_strings.php:239
2605
  msgid "l-uk"
2606
  msgstr "Ukrainian"
2607
 
2608
  # Urdu
2609
+ #: ../../admin/lang/dynamic_strings.php:240
2610
  msgid "l-ur"
2611
  msgstr "Urdu"
2612
 
2613
  # Uzbek
2614
+ #: ../../admin/lang/dynamic_strings.php:241
2615
  msgid "l-uz"
2616
  msgstr "Uzbek"
2617
 
2618
  # Venda
2619
+ #: ../../admin/lang/dynamic_strings.php:242
2620
  msgid "l-ve"
2621
  msgstr "Venda"
2622
 
2623
  # Vietnamese
2624
+ #: ../../admin/lang/dynamic_strings.php:243
2625
  msgid "l-vi"
2626
  msgstr "Vietnamese"
2627
 
2628
  # Vietnamese
2629
+ #: ../../admin/lang/dynamic_strings.php:244
2630
  msgid "l-vi-vn"
2631
  msgstr "Vietnamese (Vietnam)"
2632
 
2633
  # Volapük
2634
+ #: ../../admin/lang/dynamic_strings.php:245
2635
  msgid "l-vo"
2636
  msgstr "Volapük"
2637
 
 
 
 
 
 
2638
  # Wolof
2639
+ #: ../../admin/lang/dynamic_strings.php:246
2640
  msgid "l-wo"
2641
  msgstr "Wolof"
2642
 
2643
  # Xhosa
2644
+ #: ../../admin/lang/dynamic_strings.php:247
2645
  msgid "l-xh"
2646
  msgstr "Xhosa"
2647
 
2648
  # Yiddish
2649
+ #: ../../admin/lang/dynamic_strings.php:248
2650
  msgid "l-yi"
2651
  msgstr "Yiddish"
2652
 
2653
  # Yoruba
2654
+ #: ../../admin/lang/dynamic_strings.php:249
2655
  msgid "l-yo"
2656
  msgstr "Yoruba"
2657
 
2658
  # Zhuang; Chuang
2659
+ #: ../../admin/lang/dynamic_strings.php:250
2660
  msgid "l-za"
2661
  msgstr "Zhuang; Chuang"
2662
 
2663
  # Chinese
2664
+ #: ../../admin/lang/dynamic_strings.php:251
2665
  msgid "l-zh"
2666
  msgstr "Chinese"
2667
 
2668
  # Zulu
2669
+ #: ../../admin/lang/dynamic_strings.php:252
2670
  msgid "l-zu"
2671
  msgstr "Zulu"
2672
 
2673
  # Arabic (Saudi Arabia)
2674
+ #: ../../admin/lang/dynamic_strings.php:253
2675
  msgid "l-ar-sa"
2676
  msgstr "Arabic (Saudi Arabia)"
2677
 
2678
  # Arabic (Iraq)
2679
+ #: ../../admin/lang/dynamic_strings.php:254
2680
  msgid "l-ar-iq"
2681
  msgstr "Arabic (Iraq)"
2682
 
2683
  # Arabic (Egypt)
2684
+ #: ../../admin/lang/dynamic_strings.php:255
2685
  msgid "l-ar-eg"
2686
  msgstr "Arabic (Egypt)"
2687
 
2688
  # Arabic (Libya)
2689
+ #: ../../admin/lang/dynamic_strings.php:256
2690
  msgid "l-ar-ly"
2691
  msgstr "Arabic (Libya)"
2692
 
2693
  # Arabic (Algeria)
2694
+ #: ../../admin/lang/dynamic_strings.php:257
2695
  msgid "l-ar-dz"
2696
  msgstr "Arabic (Algeria)"
2697
 
2698
  # Arabic (Morocco)
2699
+ #: ../../admin/lang/dynamic_strings.php:258
2700
  msgid "l-ar-ma"
2701
  msgstr "Arabic (Morocco)"
2702
 
2703
  # Arabic (Tunisia)
2704
+ #: ../../admin/lang/dynamic_strings.php:259
2705
  msgid "l-ar-tn"
2706
  msgstr "Arabic (Tunisia)"
2707
 
2708
  # Arabic (Oman)
2709
+ #: ../../admin/lang/dynamic_strings.php:260
2710
  msgid "l-ar-om"
2711
  msgstr "Arabic (Oman)"
2712
 
2713
  # Arabic (Yemen)
2714
+ #: ../../admin/lang/dynamic_strings.php:261
2715
  msgid "l-ar-ye"
2716
  msgstr "Arabic (Yemen)"
2717
 
2718
  # Arabic (Syria)
2719
+ #: ../../admin/lang/dynamic_strings.php:262
2720
  msgid "l-ar-sy"
2721
  msgstr "Arabic (Syria)"
2722
 
2723
  # Arabic (Jordan)
2724
+ #: ../../admin/lang/dynamic_strings.php:263
2725
  msgid "l-ar-jo"
2726
  msgstr "Arabic (Jordan)"
2727
 
2728
  # Arabic (Lebanon)
2729
+ #: ../../admin/lang/dynamic_strings.php:264
2730
  msgid "l-ar-lb"
2731
  msgstr "Arabic (Lebanon)"
2732
 
2733
  # Arabic (Kuwait)
2734
+ #: ../../admin/lang/dynamic_strings.php:265
2735
  msgid "l-ar-kw"
2736
  msgstr "Arabic (Kuwait)"
2737
 
2738
  # Arabic (United Arab Emirates)
2739
+ #: ../../admin/lang/dynamic_strings.php:266
2740
  msgid "l-ar-ae"
2741
  msgstr "Arabic (United Arab Emirates)"
2742
 
2743
  # Arabic (Bahrain)
2744
+ #: ../../admin/lang/dynamic_strings.php:267
2745
  msgid "l-ar-bh"
2746
  msgstr "Arabic (Bahrain)"
2747
 
2748
  # Arabic (Qatar)
2749
+ #: ../../admin/lang/dynamic_strings.php:268
2750
  msgid "l-ar-qa"
2751
  msgstr "Arabic (Qatar)"
2752
 
2753
+ # Bulgarian
2754
+ #: ../../admin/lang/dynamic_strings.php:269
2755
+ #, fuzzy
2756
+ msgid "l-bg-bg"
2757
+ msgstr "Bulgarian"
2758
+
2759
  # Chinese (China)
2760
+ #: ../../admin/lang/dynamic_strings.php:270
2761
  msgid "l-zh-cn"
2762
  msgstr "Chinese (China)"
2763
 
2764
  # Chinese (Taiwan)
2765
+ #: ../../admin/lang/dynamic_strings.php:271
2766
  msgid "l-zh-tw"
2767
  msgstr "Taiwanese"
2768
 
2769
  # Chinese (Hong Kong)
2770
+ #: ../../admin/lang/dynamic_strings.php:272
2771
  msgid "l-zh-hk"
2772
  msgstr "Chinese (Hong Kong)"
2773
 
2774
  # Chinese (Singapore)
2775
+ #: ../../admin/lang/dynamic_strings.php:273
2776
  msgid "l-zh-sg"
2777
  msgstr "Chinese (Singapore)"
2778
 
2779
  # Dutch (Netherlands)
2780
+ #: ../../admin/lang/dynamic_strings.php:274
2781
  msgid "l-nl-nl"
2782
  msgstr "Dutch (Netherlands)"
2783
 
2784
  # Dutch (Belgium)
2785
+ #: ../../admin/lang/dynamic_strings.php:275
2786
  msgid "l-nl-be"
2787
  msgstr "Dutch (Belgium)"
2788
 
2789
  # English (United Kingdom)
2790
+ #: ../../admin/lang/dynamic_strings.php:276
2791
  msgid "l-en-gb"
2792
  msgstr "English (United Kingdom)"
2793
 
2794
  # English (United States)
2795
+ #: ../../admin/lang/dynamic_strings.php:277
2796
  msgid "l-en-us"
2797
  msgstr "English (United States)"
2798
 
2799
  # English (Australia)
2800
+ #: ../../admin/lang/dynamic_strings.php:278
2801
  msgid "l-en-au"
2802
  msgstr "English (Australia)"
2803
 
2804
  # English (Canada)
2805
+ #: ../../admin/lang/dynamic_strings.php:279
2806
  msgid "l-en-ca"
2807
  msgstr "English (Canada)"
2808
 
2809
  # English (New Zealand)
2810
+ #: ../../admin/lang/dynamic_strings.php:280
2811
  msgid "l-en-nz"
2812
  msgstr "English (New Zealand)"
2813
 
2814
  # English (Ireland)
2815
+ #: ../../admin/lang/dynamic_strings.php:281
2816
  msgid "l-en-ie"
2817
  msgstr "English (Ireland)"
2818
 
2819
  # English (South Africa)
2820
+ #: ../../admin/lang/dynamic_strings.php:282
2821
  msgid "l-en-za"
2822
  msgstr "English (South Africa)"
2823
 
2824
  # English (Jamaica)
2825
+ #: ../../admin/lang/dynamic_strings.php:283
2826
  msgid "l-en-jm"
2827
  msgstr "English (Jamaica)"
2828
 
2829
  # English (Belize)
2830
+ #: ../../admin/lang/dynamic_strings.php:284
2831
  msgid "l-en-bz"
2832
  msgstr "English (Belize)"
2833
 
2834
  # English (Trinidad)
2835
+ #: ../../admin/lang/dynamic_strings.php:285
2836
  msgid "l-en-tt"
2837
  msgstr "English (Trinidad)"
2838
 
2839
  # French (Belgium)
2840
+ #: ../../admin/lang/dynamic_strings.php:286
2841
  msgid "l-fr-be"
2842
  msgstr "French (Belgium)"
2843
 
2844
  # French (France)
2845
+ #: ../../admin/lang/dynamic_strings.php:287
2846
  msgid "l-fr-fr"
2847
  msgstr "French (France)"
2848
 
2849
  # French (Switzerland)
2850
+ #: ../../admin/lang/dynamic_strings.php:288
2851
  msgid "l-fr-ch"
2852
  msgstr "French (Switzerland)"
2853
 
2854
  # French (Canada)
2855
+ #: ../../admin/lang/dynamic_strings.php:289
2856
  msgid "l-fr-ca"
2857
  msgstr "French (Canada)"
2858
 
2859
  # French (Luxembourg)
2860
+ #: ../../admin/lang/dynamic_strings.php:290
2861
  msgid "l-fr-lu"
2862
  msgstr "French (Luxembourg)"
2863
 
2864
  # German (Austria)
2865
+ #: ../../admin/lang/dynamic_strings.php:291
2866
  msgid "l-de-at"
2867
  msgstr "German (Austria)"
2868
 
2869
  # German (Germany)
2870
+ #: ../../admin/lang/dynamic_strings.php:292
2871
  msgid "l-de-de"
2872
  msgstr "German (Germany)"
2873
 
2874
  # German (Switzerland)
2875
+ #: ../../admin/lang/dynamic_strings.php:293
2876
  msgid "l-de-ch"
2877
  msgstr "German (Switzerland)"
2878
 
2879
  # German (Luxembourg)
2880
+ #: ../../admin/lang/dynamic_strings.php:294
2881
  msgid "l-de-lu"
2882
  msgstr "German (Luxembourg)"
2883
 
2884
  # German (Liechtenstein)
2885
+ #: ../../admin/lang/dynamic_strings.php:295
2886
  msgid "l-de-li"
2887
  msgstr "German (Liechtenstein)"
2888
 
2889
  # Greek (Greece)
2890
+ #: ../../admin/lang/dynamic_strings.php:296
2891
  msgid "l-el-gr"
2892
  msgstr "Greek (Greece)"
2893
 
2894
  # Spanish (Dominican Republic)
2895
+ #: ../../admin/lang/dynamic_strings.php:297
2896
  msgid "l-es-do"
2897
  msgstr "Spanish (Dominican Republic)"
2898
 
2899
  # Spanish (Argentina)
2900
+ #: ../../admin/lang/dynamic_strings.php:298
2901
  msgid "l-es-ar"
2902
  msgstr "Spanish (Argentina)"
2903
 
2904
  # Spanish (Colombia)
2905
+ #: ../../admin/lang/dynamic_strings.php:299
2906
  msgid "l-es-co"
2907
  msgstr "Spanish (Colombia)"
2908
 
2909
  # Spanish (Mexico)
2910
+ #: ../../admin/lang/dynamic_strings.php:300
2911
  msgid "l-es-mx"
2912
  msgstr "Spanish (Mexico)"
2913
 
2914
  # Spanish (Spain)
2915
+ #: ../../admin/lang/dynamic_strings.php:301
2916
  msgid "l-es-es"
2917
  msgstr "Spanish (Spain)"
2918
 
2919
  # Spanish (Guatemala)
2920
+ #: ../../admin/lang/dynamic_strings.php:302
2921
  msgid "l-es-gt"
2922
  msgstr "Spanish (Guatemala)"
2923
 
2924
  # Spanish (Costa Rica)
2925
+ #: ../../admin/lang/dynamic_strings.php:303
2926
  msgid "l-es-cr"
2927
  msgstr "Spanish (Costa Rica)"
2928
 
2929
  # Spanish (Panama)
2930
+ #: ../../admin/lang/dynamic_strings.php:304
2931
  msgid "l-es-pa"
2932
  msgstr "Spanish (Panama)"
2933
 
2934
  # Spanish (Venezuela)
2935
+ #: ../../admin/lang/dynamic_strings.php:305
2936
  msgid "l-es-ve"
2937
  msgstr "Spanish (Venezuela)"
2938
 
2939
  # Spanish (Peru)
2940
+ #: ../../admin/lang/dynamic_strings.php:306
2941
  msgid "l-es-pe"
2942
  msgstr "Spanish (Peru)"
2943
 
2944
  # Spanish (Ecuador)
2945
+ #: ../../admin/lang/dynamic_strings.php:307
2946
  msgid "l-es-ec"
2947
  msgstr "Spanish (Ecuador)"
2948
 
2949
  # Spanish (Chile)
2950
+ #: ../../admin/lang/dynamic_strings.php:308
2951
  msgid "l-es-cl"
2952
  msgstr "Spanish (Chile)"
2953
 
2954
  # Spanish (Uruguay)
2955
+ #: ../../admin/lang/dynamic_strings.php:309
2956
  msgid "l-es-uy"
2957
  msgstr "Spanish (Uruguay)"
2958
 
2959
  # Spanish (Paraguay)
2960
+ #: ../../admin/lang/dynamic_strings.php:310
2961
  msgid "l-es-py"
2962
  msgstr "Spanish (Paraguay)"
2963
 
2964
  # Spanish (Bolivia)
2965
+ #: ../../admin/lang/dynamic_strings.php:311
2966
  msgid "l-es-bo"
2967
  msgstr "Spanish (Bolivia)"
2968
 
2969
  # Spanish (El Salvador)
2970
+ #: ../../admin/lang/dynamic_strings.php:312
2971
  msgid "l-es-sv"
2972
  msgstr "Spanish (El Salvador)"
2973
 
2974
  # Spanish (Honduras)
2975
+ #: ../../admin/lang/dynamic_strings.php:313
2976
  msgid "l-es-hn"
2977
  msgstr "Spanish (Honduras)"
2978
 
2979
  # Spanish (Nicaragua)
2980
+ #: ../../admin/lang/dynamic_strings.php:314
2981
  msgid "l-es-ni"
2982
  msgstr "Spanish (Nicaragua)"
2983
 
2984
  # Spanish (Puerto Rico)
2985
+ #: ../../admin/lang/dynamic_strings.php:315
2986
  msgid "l-es-pr"
2987
  msgstr "Spanish (Puerto Rico)"
2988
 
2989
  # Hebrew (Israel)
2990
+ #: ../../admin/lang/dynamic_strings.php:316
2991
  msgid "l-he-il"
2992
  msgstr "Hebrew (Israel)"
2993
 
2994
  # Hungarian (Hungary)
2995
+ #: ../../admin/lang/dynamic_strings.php:317
2996
  msgid "l-hu-hu"
2997
  msgstr "Hungarian (Hungary)"
2998
 
2999
  # Internet Explorer Easter Egg
3000
+ #: ../../admin/lang/dynamic_strings.php:318
3001
  msgid "l-ie-ee"
3002
  msgstr "Internet Explorer Easter Egg"
3003
 
3004
  # Italian (Italia)
3005
+ #: ../../admin/lang/dynamic_strings.php:319
3006
  msgid "l-it-it"
3007
  msgstr "Italian (Italia)"
3008
 
3009
  # Italian (Switzerland)
3010
+ #: ../../admin/lang/dynamic_strings.php:320
3011
  msgid "l-it-ch"
3012
  msgstr "Italian (Switzerland)"
3013
 
3014
  # Korean (Republic of Korea)
3015
+ #: ../../admin/lang/dynamic_strings.php:321
3016
  msgid "l-ko-kr"
3017
  msgstr "Korean (Republic of Korea)"
3018
 
3019
  # Korean (Democratic People's Republic of Korea)
3020
+ #: ../../admin/lang/dynamic_strings.php:322
3021
  msgid "l-ko-kp"
3022
  msgstr "Korean (Democratic People's Republic of Korea)"
3023
 
3024
+ # Lithuanian
3025
+ #: ../../admin/lang/dynamic_strings.php:323
3026
+ #, fuzzy
3027
+ msgid "l-lt-lt"
3028
+ msgstr "Lithuanian"
3029
+
3030
  # Portuguese (Brazil)
3031
+ #: ../../admin/lang/dynamic_strings.php:324
3032
  msgid "l-pt-br"
3033
  msgstr "Portuguese (Brazil)"
3034
 
3035
  # Romanian (Moldava)
3036
+ #: ../../admin/lang/dynamic_strings.php:325
3037
  msgid "l-ro-md"
3038
  msgstr "Romanian (Moldava)"
3039
 
3040
+ # Romanian; Moldavian; Moldovan
3041
+ #: ../../admin/lang/dynamic_strings.php:326
3042
+ #, fuzzy
3043
+ msgid "l-ro-ro"
3044
+ msgstr "Romanian; Moldavian; Moldovan"
3045
+
3046
  # Russian (Russia)
3047
+ #: ../../admin/lang/dynamic_strings.php:327
3048
  msgid "l-ru-ru"
3049
  msgstr "Russian (Russia)"
3050
 
3051
  # Russian (Moldava)
3052
+ #: ../../admin/lang/dynamic_strings.php:328
3053
  msgid "l-ru-md"
3054
  msgstr "Russian (Moldava)"
3055
 
3056
  # Swedish (Sweden)
3057
+ #: ../../admin/lang/dynamic_strings.php:329
3058
  msgid "l-sv-se"
3059
  msgstr "Swedish (Sweden)"
3060
 
3061
  # Swedish (Finland)
3062
+ #: ../../admin/lang/dynamic_strings.php:330
3063
  msgid "l-sv-fi"
3064
  msgstr "Swedish (Finland)"
3065
 
3066
  # Japanes
3067
+ #: ../../admin/lang/dynamic_strings.php:331
3068
  msgid "l-ja-jp"
3069
  msgstr "Japanese"
3070
 
3071
  # Turkish
3072
+ #: ../../admin/lang/dynamic_strings.php:332
3073
  msgid "l-tr-tr"
3074
  msgstr "Turkish"
3075
 
3076
+ # Tatar
3077
+ #: ../../admin/lang/dynamic_strings.php:333
3078
+ #, fuzzy
3079
+ msgid "l-tt-ru"
3080
+ msgstr "Tatar"
3081
+
3082
+ # Ukrainian
3083
+ #: ../../admin/lang/dynamic_strings.php:334
3084
+ #, fuzzy
3085
+ msgid "l-uk-ua"
3086
+ msgstr "Ukrainian"
3087
+
3088
+ #: ../../admin/lang/dynamic_strings.php:335
3089
+ #: ../../admin/view/wp-slimstat-reports.php:424
3090
  msgid "l-"
3091
  msgstr "l-"
3092
 
3093
  # Unknown
3094
+ #: ../../admin/lang/dynamic_strings.php:336
3095
  msgid "l-empty"
3096
  msgstr "Unknown"
3097
 
3098
  # Unknown
3099
+ #: ../../admin/lang/dynamic_strings.php:337
3100
  msgid "l-xx"
3101
  msgstr "Unknown"
3102
 
3103
+ #: ../../admin/lang/dynamic_strings.php:338
3104
  msgid "c-xy"
3105
  msgstr "Local IP"
3106
 
3107
+ #: ../../admin/view/index.php:11
3108
  msgid "Details"
3109
  msgstr "Details"
3110
 
3111
+ #: ../../admin/view/index.php:29 ../../admin/view/index.php:101
3112
+ #: ../../admin/view/index.php:102 ../../admin/view/wp-slimstat-reports.php:68
3113
  msgid "Year"
3114
  msgstr "Jahr"
3115
 
3116
+ #: ../../admin/view/index.php:31
3117
  msgid "Show records where"
3118
  msgstr "Zeige Datensätze wo"
3119
 
3120
+ #: ../../admin/view/index.php:32
3121
  msgid ""
3122
  "Please refer to the contextual help (available on WP 3.3+) for more "
3123
  "information on what these filters mean."
3125
  "F&uuml; weitere Informationen zu den Filtern schlagen Sie in der "
3126
  "kontextsensitiven Hilfe (verf&uuml;gbar ab WP 3.3+) nach."
3127
 
3128
+ #: ../../admin/view/index.php:45
3129
  msgid "-- Advanced filters --"
3130
  msgstr "-- Erweiterte Filter --"
3131
 
3132
+ #: ../../admin/view/index.php:46 ../../admin/view/wp-slimstat-reports.php:50
3133
+ #: ../../admin/view/wp-slimstat-reports.php:97
3134
  msgid "Browser Capabilities"
3135
  msgstr "Browser-F&auml;higkeiten"
3136
 
3137
+ #: ../../admin/view/index.php:58 ../../admin/view/wp-slimstat-reports.php:62
3138
  #, fuzzy
3139
  msgid "Resource ID"
3140
  msgstr "Top Ressourcen"
3141
 
3142
+ #: ../../admin/view/index.php:63
3143
  msgid "equals"
3144
  msgstr "entspricht"
3145
 
3146
+ #: ../../admin/view/index.php:64
3147
  msgid "is not equal to"
3148
  msgstr "ist ungleich zu"
3149
 
3150
+ #: ../../admin/view/index.php:65
3151
  msgid "contains"
3152
  msgstr "enth&auml;lt"
3153
 
3154
+ #: ../../admin/view/index.php:66
3155
  msgid "does not contain"
3156
  msgstr "enth&auml;lt nicht"
3157
 
3158
+ #: ../../admin/view/index.php:67
3159
  msgid "starts with"
3160
  msgstr "beginnt mit"
3161
 
3162
+ #: ../../admin/view/index.php:68
3163
  msgid "ends with"
3164
  msgstr "endet mit"
3165
 
3166
+ #: ../../admin/view/index.php:69
3167
  msgid "sounds like"
3168
  msgstr "&auml;hnelt"
3169
 
3170
+ #: ../../admin/view/index.php:70
3171
  msgid "is empty"
3172
  msgstr "ist leer"
3173
 
3174
+ #: ../../admin/view/index.php:71
3175
  msgid "is not empty"
3176
  msgstr "ist nicht leer"
3177
 
3178
+ #: ../../admin/view/index.php:72
3179
  msgid "is greater than"
3180
  msgstr "ist gr&ouml;sser als"
3181
 
3182
+ #: ../../admin/view/index.php:73
3183
  msgid "is less than"
3184
  msgstr "ist kleiner als"
3185
 
3186
+ #: ../../admin/view/index.php:74
3187
  msgid "matches"
3188
  msgstr ""
3189
 
3190
+ #: ../../admin/view/index.php:75
3191
  #, fuzzy
3192
  msgid "does not match"
3193
  msgstr "enth&auml;lt nicht"
3194
 
3195
+ #: ../../admin/view/index.php:80
3196
  msgid "Select a day to make the interval field appear."
3197
  msgstr ""
3198
 
3199
+ #: ../../admin/view/index.php:81
3200
  msgid "Filter by date"
3201
  msgstr "Datums-Filter"
3202
 
3203
+ #: ../../admin/view/index.php:84 ../../admin/view/wp-slimstat-reports.php:66
3204
  msgid "Day"
3205
  msgstr "Tag"
3206
 
3207
+ #: ../../admin/view/index.php:93 ../../admin/view/wp-slimstat-reports.php:67
3208
  msgid "Month"
3209
  msgstr "Monat"
3210
 
3211
+ #: ../../admin/view/index.php:110
3212
  msgid "Go"
3213
  msgstr "Los"
3214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3215
  # Unknown
3216
+ #: ../../admin/view/index.php:126
3217
  msgid "c-xx"
3218
  msgstr "Unknown"
3219
 
3220
  # Afghanistan
3221
+ #: ../../admin/view/index.php:126
3222
  msgid "c-af"
3223
  msgstr "Afghanistan"
3224
 
3225
  # Åland Islands
3226
+ #: ../../admin/view/index.php:126
3227
  msgid "c-ax"
3228
  msgstr "Aland Islands"
3229
 
3230
  # Albania
3231
+ #: ../../admin/view/index.php:126
3232
  msgid "c-al"
3233
  msgstr "Albania"
3234
 
3235
  # Algeria
3236
+ #: ../../admin/view/index.php:126
3237
  msgid "c-dz"
3238
  msgstr "Algeria"
3239
 
3240
  # Andorra
3241
+ #: ../../admin/view/index.php:126
3242
  msgid "c-ad"
3243
  msgstr "Andorra"
3244
 
3245
  # Angola
3246
+ #: ../../admin/view/index.php:126
3247
  msgid "c-ao"
3248
  msgstr "Angola"
3249
 
3250
  # Anguilla
3251
+ #: ../../admin/view/index.php:126
3252
  msgid "c-ai"
3253
  msgstr "Anguilla"
3254
 
3255
  # Antigua and Barbuda
3256
+ #: ../../admin/view/index.php:126
3257
  msgid "c-ag"
3258
  msgstr "Antigua and Barbuda"
3259
 
3260
  # Argentina
3261
+ #: ../../admin/view/index.php:126
3262
  msgid "c-ar"
3263
  msgstr "Argentina"
3264
 
3265
  # Armenia
3266
+ #: ../../admin/view/index.php:126
3267
  msgid "c-am"
3268
  msgstr "Armenia"
3269
 
3270
  # Aruba
3271
+ #: ../../admin/view/index.php:126
3272
  msgid "c-aw"
3273
  msgstr "Aruba"
3274
 
3275
  # Australia
3276
+ #: ../../admin/view/index.php:126
3277
  msgid "c-au"
3278
  msgstr "Australia"
3279
 
3280
  # Austria
3281
+ #: ../../admin/view/index.php:126
3282
  msgid "c-at"
3283
  msgstr "Austria"
3284
 
3285
  # Azerbaijan
3286
+ #: ../../admin/view/index.php:126
3287
  msgid "c-az"
3288
  msgstr "Azerbaijan"
3289
 
3290
  # Bahamas
3291
+ #: ../../admin/view/index.php:126
3292
  msgid "c-bs"
3293
  msgstr "Bahamas"
3294
 
3295
  # Bahrain
3296
+ #: ../../admin/view/index.php:126
3297
  msgid "c-bh"
3298
  msgstr "Bahrain"
3299
 
3300
  # Bangladesh
3301
+ #: ../../admin/view/index.php:126
3302
  msgid "c-bd"
3303
  msgstr "Bangladesh"
3304
 
3305
  # Barbados
3306
+ #: ../../admin/view/index.php:126
3307
  msgid "c-bb"
3308
  msgstr "Barbados"
3309
 
3310
  # Belarus
3311
+ #: ../../admin/view/index.php:126
3312
  msgid "c-by"
3313
  msgstr "Belarus"
3314
 
3315
  # Belgium
3316
+ #: ../../admin/view/index.php:126
3317
  msgid "c-be"
3318
  msgstr "Belgium"
3319
 
3320
  # Belize
3321
+ #: ../../admin/view/index.php:126
3322
  msgid "c-bz"
3323
  msgstr "Belize"
3324
 
3325
  # Benin
3326
+ #: ../../admin/view/index.php:126
3327
  msgid "c-bj"
3328
  msgstr "Benin"
3329
 
3330
  # Bermuda
3331
+ #: ../../admin/view/index.php:126
3332
  msgid "c-bm"
3333
  msgstr "Bermuda"
3334
 
3335
  # Bhutan
3336
+ #: ../../admin/view/index.php:126
3337
  msgid "c-bt"
3338
  msgstr "Bhutan"
3339
 
3340
  # Bolivia
3341
+ #: ../../admin/view/index.php:126
3342
  msgid "c-bo"
3343
  msgstr "Bolivia"
3344
 
3345
  # Bosnia and Herzegovina
3346
+ #: ../../admin/view/index.php:126
3347
  msgid "c-ba"
3348
  msgstr "Bosnia and Herzegovina"
3349
 
3350
  # Botswana
3351
+ #: ../../admin/view/index.php:126
3352
  msgid "c-bw"
3353
  msgstr "Botswana"
3354
 
3355
  # Brazil
3356
+ #: ../../admin/view/index.php:126
3357
  msgid "c-br"
3358
  msgstr "Brazil"
3359
 
3360
  # Brunei Darussalam
3361
+ #: ../../admin/view/index.php:126
3362
  msgid "c-bn"
3363
  msgstr "Brunei Darussalam"
3364
 
3365
  # Bulgaria
3366
+ #: ../../admin/view/index.php:126
3367
  msgid "c-bg"
3368
  msgstr "Bulgaria"
3369
 
3370
  # Burkina Faso
3371
+ #: ../../admin/view/index.php:126
3372
  msgid "c-bf"
3373
  msgstr "Burkina Faso"
3374
 
3375
  # Burundi
3376
+ #: ../../admin/view/index.php:126
3377
  msgid "c-bi"
3378
  msgstr "Burundi"
3379
 
3380
  # Cambodia
3381
+ #: ../../admin/view/index.php:126
3382
  msgid "c-kh"
3383
  msgstr "Cambodia"
3384
 
3385
  # Cameroon
3386
+ #: ../../admin/view/index.php:126
3387
  msgid "c-cm"
3388
  msgstr "Cameroon"
3389
 
3390
  # Canada
3391
+ #: ../../admin/view/index.php:126
3392
  msgid "c-ca"
3393
  msgstr "Canada"
3394
 
3395
  # Cape Verde
3396
+ #: ../../admin/view/index.php:126
3397
  msgid "c-cv"
3398
  msgstr "Cape Verde"
3399
 
3400
  # Cayman Islands
3401
+ #: ../../admin/view/index.php:126
3402
  msgid "c-ky"
3403
  msgstr "Cayman Islands"
3404
 
3405
  # Central African Republic
3406
+ #: ../../admin/view/index.php:126
3407
  msgid "c-cf"
3408
  msgstr "Central African Republic"
3409
 
3410
  # Chad
3411
+ #: ../../admin/view/index.php:126
3412
  msgid "c-td"
3413
  msgstr "Chad"
3414
 
3415
  # Chile
3416
+ #: ../../admin/view/index.php:126
3417
  msgid "c-cl"
3418
  msgstr "Chile"
3419
 
3420
  # China
3421
+ #: ../../admin/view/index.php:126
3422
  msgid "c-cn"
3423
  msgstr "China"
3424
 
3425
  # Colombia
3426
+ #: ../../admin/view/index.php:126
3427
  msgid "c-co"
3428
  msgstr "Colombia"
3429
 
3430
  # Comoros
3431
+ #: ../../admin/view/index.php:126
3432
  msgid "c-km"
3433
  msgstr "Comoros"
3434
 
3435
  # Congo
3436
+ #: ../../admin/view/index.php:126
3437
  msgid "c-cg"
3438
  msgstr "Congo"
3439
 
3440
  # The Democratic Republic of the Congo
3441
+ #: ../../admin/view/index.php:126
3442
  msgid "c-cd"
3443
  msgstr "The Democratic Republic of the Congo"
3444
 
3445
  # Costa Rica
3446
+ #: ../../admin/view/index.php:126
3447
  msgid "c-cr"
3448
  msgstr "Costa Rica"
3449
 
3450
  # Côte d'Ivoire
3451
+ #: ../../admin/view/index.php:126
3452
  msgid "c-ci"
3453
  msgstr "Côte d'Ivoire"
3454
 
3455
  # Croatia
3456
+ #: ../../admin/view/index.php:126
3457
  msgid "c-hr"
3458
  msgstr "Croatia"
3459
 
3460
  # Cuba
3461
+ #: ../../admin/view/index.php:126
3462
  msgid "c-cu"
3463
  msgstr "Cuba"
3464
 
3465
  # Cyprus
3466
+ #: ../../admin/view/index.php:126
3467
  msgid "c-cy"
3468
  msgstr "Cyprus"
3469
 
3470
  # Czech Republic
3471
+ #: ../../admin/view/index.php:126
3472
  msgid "c-cz"
3473
  msgstr "Czech Republic"
3474
 
3475
  # Denmark
3476
+ #: ../../admin/view/index.php:126
3477
  msgid "c-dk"
3478
  msgstr "Denmark"
3479
 
3480
  # Djibouti
3481
+ #: ../../admin/view/index.php:126
3482
  msgid "c-dj"
3483
  msgstr "Djibouti"
3484
 
3485
  # Dominica
3486
+ #: ../../admin/view/index.php:126
3487
  msgid "c-dm"
3488
  msgstr "Dominica"
3489
 
3490
  # Dominican Republic
3491
+ #: ../../admin/view/index.php:126
3492
  msgid "c-do"
3493
  msgstr "Dominican Republic"
3494
 
3495
  # Ecuador
3496
+ #: ../../admin/view/index.php:126
3497
  msgid "c-ec"
3498
  msgstr "Ecuador"
3499
 
3500
  # Egypt
3501
+ #: ../../admin/view/index.php:126
3502
  msgid "c-eg"
3503
  msgstr "Egypt"
3504
 
3505
  # El Salvador
3506
+ #: ../../admin/view/index.php:126
3507
  msgid "c-sv"
3508
  msgstr "El Salvador"
3509
 
3510
  # Equatorial Guinea
3511
+ #: ../../admin/view/index.php:126
3512
  msgid "c-gq"
3513
  msgstr "Equatorial Guinea"
3514
 
3515
  # Eritrea
3516
+ #: ../../admin/view/index.php:126
3517
  msgid "c-er"
3518
  msgstr "Eritrea"
3519
 
3520
  # Estonia
3521
+ #: ../../admin/view/index.php:126
3522
  msgid "c-ee"
3523
  msgstr "Estonia"
3524
 
3525
  # Ethiopia
3526
+ #: ../../admin/view/index.php:126
3527
  msgid "c-et"
3528
  msgstr "Ethiopia"
3529
 
3530
  # Faroe Islands
3531
+ #: ../../admin/view/index.php:126
3532
  msgid "c-fo"
3533
  msgstr "Faroe Islands"
3534
 
3535
  # Falkland Islands (Malvinas)
3536
+ #: ../../admin/view/index.php:126
3537
  msgid "c-fk"
3538
  msgstr "Falkland Islands (Malvinas)"
3539
 
3540
  # Fiji
3541
+ #: ../../admin/view/index.php:126
3542
  msgid "c-fj"
3543
  msgstr "Fiji"
3544
 
3545
  # Finland
3546
+ #: ../../admin/view/index.php:126
3547
  msgid "c-fi"
3548
  msgstr "Finland"
3549
 
3550
  # France
3551
+ #: ../../admin/view/index.php:126
3552
  msgid "c-fr"
3553
  msgstr "France"
3554
 
3555
  # French Guiana
3556
+ #: ../../admin/view/index.php:126
3557
  msgid "c-gf"
3558
  msgstr "French Guiana"
3559
 
3560
  # Gabon
3561
+ #: ../../admin/view/index.php:126
3562
  msgid "c-ga"
3563
  msgstr "Gabon"
3564
 
3565
  # Gambia
3566
+ #: ../../admin/view/index.php:126
3567
  msgid "c-gm"
3568
  msgstr "Gambia"
3569
 
3570
  # Georgia
3571
+ #: ../../admin/view/index.php:126
3572
  msgid "c-ge"
3573
  msgstr "Georgia"
3574
 
3575
  # Germany
3576
+ #: ../../admin/view/index.php:126
3577
  msgid "c-de"
3578
  msgstr "Germany"
3579
 
3580
  # Ghana
3581
+ #: ../../admin/view/index.php:126
3582
  msgid "c-gh"
3583
  msgstr "Ghana"
3584
 
3585
  # Greece
3586
+ #: ../../admin/view/index.php:126
3587
  msgid "c-gr"
3588
  msgstr "Greece"
3589
 
3590
  # Greenland
3591
+ #: ../../admin/view/index.php:126
3592
  msgid "c-gl"
3593
  msgstr "Greenland"
3594
 
3595
  # Grenada
3596
+ #: ../../admin/view/index.php:126
3597
  msgid "c-gd"
3598
  msgstr "Grenada"
3599
 
3600
  # Guadeloupe
3601
+ #: ../../admin/view/index.php:126
3602
  msgid "c-gp"
3603
  msgstr "Guadeloupe"
3604
 
3605
  # Guatemala
3606
+ #: ../../admin/view/index.php:126
3607
  msgid "c-gt"
3608
  msgstr "Guatemala"
3609
 
3610
  # Guinea
3611
+ #: ../../admin/view/index.php:126
3612
  msgid "c-gn"
3613
  msgstr "Guinea"
3614
 
3615
  # Guinea-Bissau
3616
+ #: ../../admin/view/index.php:126
3617
  msgid "c-gw"
3618
  msgstr "Guinea-Bissau"
3619
 
3620
  # Guyana
3621
+ #: ../../admin/view/index.php:126
3622
  msgid "c-gy"
3623
  msgstr "Guyana"
3624
 
3625
  # Haiti
3626
+ #: ../../admin/view/index.php:126
3627
  msgid "c-ht"
3628
  msgstr "Haiti"
3629
 
3630
  # Honduras
3631
+ #: ../../admin/view/index.php:126
3632
  msgid "c-hn"
3633
  msgstr "Honduras"
3634
 
3635
  # Hong Kong
3636
+ #: ../../admin/view/index.php:126
3637
  msgid "c-hk"
3638
  msgstr "Hong Kong"
3639
 
3640
  # Hungary
3641
+ #: ../../admin/view/index.php:126
3642
  msgid "c-hu"
3643
  msgstr "Hungary"
3644
 
3645
  # Iceland
3646
+ #: ../../admin/view/index.php:126
3647
  msgid "c-is"
3648
  msgstr "Iceland"
3649
 
3650
  # India
3651
+ #: ../../admin/view/index.php:126
3652
  msgid "c-in"
3653
  msgstr "India"
3654
 
3655
  # Indonesia
3656
+ #: ../../admin/view/index.php:126
3657
  msgid "c-id"
3658
  msgstr "Indonesia"
3659
 
3660
  # Islamic Republic of Iran
3661
+ #: ../../admin/view/index.php:126
3662
  msgid "c-ir"
3663
  msgstr "Islamic Republic of Iran"
3664
 
3665
  # Iraq
3666
+ #: ../../admin/view/index.php:126
3667
  msgid "c-iq"
3668
  msgstr "Iraq"
3669
 
3670
  # Ireland
3671
+ #: ../../admin/view/index.php:126
3672
  msgid "c-ie"
3673
  msgstr "Ireland"
3674
 
3675
  # Israel
3676
+ #: ../../admin/view/index.php:126
3677
  msgid "c-il"
3678
  msgstr "Israel"
3679
 
3680
  # Italy
3681
+ #: ../../admin/view/index.php:126
3682
  msgid "c-it"
3683
  msgstr "Italy"
3684
 
3685
  # Jamaica
3686
+ #: ../../admin/view/index.php:126
3687
  msgid "c-jm"
3688
  msgstr "Jamaica"
3689
 
3690
  # Japan
3691
+ #: ../../admin/view/index.php:126
3692
  msgid "c-jp"
3693
  msgstr "Japan"
3694
 
3695
  # Jordan
3696
+ #: ../../admin/view/index.php:126
3697
  msgid "c-jo"
3698
  msgstr "Jordan"
3699
 
3700
  # Kazakhstan
3701
+ #: ../../admin/view/index.php:126
3702
  msgid "c-kz"
3703
  msgstr "Kazakhstan"
3704
 
3705
  # Kenya
3706
+ #: ../../admin/view/index.php:126
3707
  msgid "c-ke"
3708
  msgstr "Kenya"
3709
 
3710
  # Nauru
3711
+ #: ../../admin/view/index.php:126
3712
  msgid "c-nr"
3713
  msgstr "Nauru"
3714
 
3715
  # Democratic People's Republic of Korea
3716
+ #: ../../admin/view/index.php:126
3717
  msgid "c-kp"
3718
  msgstr "Democratic People's Republic of Korea"
3719
 
3720
  # Republic of Korea
3721
+ #: ../../admin/view/index.php:126
3722
  msgid "c-kr"
3723
  msgstr "Republic of Korea"
3724
 
3725
+ #: ../../admin/view/index.php:126
3726
  msgid "c-kv"
3727
  msgstr ""
3728
 
3729
  # Kuwait
3730
+ #: ../../admin/view/index.php:126
3731
  msgid "c-kw"
3732
  msgstr "Kuwait"
3733
 
3734
  # Kyrgyzstan
3735
+ #: ../../admin/view/index.php:126
3736
  msgid "c-kg"
3737
  msgstr "Kyrgyzstan"
3738
 
3739
  # Lao People's Democratic Republic
3740
+ #: ../../admin/view/index.php:126
3741
  msgid "c-la"
3742
  msgstr "Lao People's Democratic Republic"
3743
 
3744
  # Latvia
3745
+ #: ../../admin/view/index.php:126
3746
  msgid "c-lv"
3747
  msgstr "Latvia"
3748
 
3749
  # Lebanon
3750
+ #: ../../admin/view/index.php:126
3751
  msgid "c-lb"
3752
  msgstr "Lebanon"
3753
 
3754
  # Lesotho
3755
+ #: ../../admin/view/index.php:126
3756
  msgid "c-ls"
3757
  msgstr "Lesotho"
3758
 
3759
  # Liberia
3760
+ #: ../../admin/view/index.php:126
3761
  msgid "c-lr"
3762
  msgstr "Liberia"
3763
 
3764
  # Libyan Arab Jamahiriya
3765
+ #: ../../admin/view/index.php:126
3766
  msgid "c-ly"
3767
  msgstr "Libyan Arab Jamahiriya"
3768
 
3769
  # Liechtenstein
3770
+ #: ../../admin/view/index.php:126
3771
  msgid "c-li"
3772
  msgstr "Liechtenstein"
3773
 
3774
  # Lithuania
3775
+ #: ../../admin/view/index.php:126
3776
  msgid "c-lt"
3777
  msgstr "Lithuania"
3778
 
3779
  # Luxembourg
3780
+ #: ../../admin/view/index.php:126
3781
  msgid "c-lu"
3782
  msgstr "Luxembourg"
3783
 
3784
  # The Former Yugoslav Republic of Macedonia
3785
+ #: ../../admin/view/index.php:126
3786
  msgid "c-mk"
3787
  msgstr "The Former Yugoslav Republic of Macedonia"
3788
 
3789
  # Madagascar
3790
+ #: ../../admin/view/index.php:126
3791
  msgid "c-mg"
3792
  msgstr "Madagascar"
3793
 
3794
  # Malawi
3795
+ #: ../../admin/view/index.php:126
3796
  msgid "c-mw"
3797
  msgstr "Malawi"
3798
 
3799
  # Malaysia
3800
+ #: ../../admin/view/index.php:126
3801
  msgid "c-my"
3802
  msgstr "Malaysia"
3803
 
3804
  # Mali
3805
+ #: ../../admin/view/index.php:126
3806
  msgid "c-ml"
3807
  msgstr "Mali"
3808
 
3809
  # Malta
3810
+ #: ../../admin/view/index.php:126
3811
  msgid "c-mt"
3812
  msgstr "Malta"
3813
 
3814
  # Martinique
3815
+ #: ../../admin/view/index.php:126
3816
  msgid "c-mq"
3817
  msgstr "Martinique"
3818
 
3819
  # Mauritania
3820
+ #: ../../admin/view/index.php:126
3821
  msgid "c-mr"
3822
  msgstr "Mauritania"
3823
 
3824
  # Mauritius
3825
+ #: ../../admin/view/index.php:126
3826
  msgid "c-mu"
3827
  msgstr "Mauritius"
3828
 
3829
  # Mexico
3830
+ #: ../../admin/view/index.php:126
3831
  msgid "c-mx"
3832
  msgstr "Mexico"
3833
 
3834
  # Moldova
3835
+ #: ../../admin/view/index.php:126
3836
  msgid "c-md"
3837
  msgstr "Moldova"
3838
 
3839
  # Mongolia
3840
+ #: ../../admin/view/index.php:126
3841
  msgid "c-mn"
3842
  msgstr "Mongolia"
3843
 
3844
  # Montenegro
3845
+ #: ../../admin/view/index.php:126
3846
  msgid "c-me"
3847
  msgstr "Montenegro"
3848
 
3849
  # Montserrat
3850
+ #: ../../admin/view/index.php:126
3851
  msgid "c-ms"
3852
  msgstr "Montserrat"
3853
 
3854
  # Morocco
3855
+ #: ../../admin/view/index.php:126
3856
  msgid "c-ma"
3857
  msgstr "Morocco"
3858
 
3859
  # Mozambique
3860
+ #: ../../admin/view/index.php:126
3861
  msgid "c-mz"
3862
  msgstr "Mozambique"
3863
 
3864
  # Myanmar
3865
+ #: ../../admin/view/index.php:126
3866
  msgid "c-mm"
3867
  msgstr "Myanmar"
3868
 
3869
  # Namibia
3870
+ #: ../../admin/view/index.php:126
3871
  msgid "c-na"
3872
  msgstr "Namibia"
3873
 
3874
  # Nepal
3875
+ #: ../../admin/view/index.php:126
3876
  msgid "c-np"
3877
  msgstr "Nepal"
3878
 
3879
  # Netherlands
3880
+ #: ../../admin/view/index.php:126
3881
  msgid "c-nl"
3882
  msgstr "Netherlands"
3883
 
3884
  # New Caledonia
3885
+ #: ../../admin/view/index.php:126
3886
  msgid "c-nc"
3887
  msgstr "New Caledonia"
3888
 
3889
  # New Zealand
3890
+ #: ../../admin/view/index.php:126
3891
  msgid "c-nz"
3892
  msgstr "New Zealand"
3893
 
3894
  # Nicaragua
3895
+ #: ../../admin/view/index.php:126
3896
  msgid "c-ni"
3897
  msgstr "Nicaragua"
3898
 
3899
  # Niger
3900
+ #: ../../admin/view/index.php:126
3901
  msgid "c-ne"
3902
  msgstr "Niger"
3903
 
3904
  # Nigeria
3905
+ #: ../../admin/view/index.php:126
3906
  msgid "c-ng"
3907
  msgstr "Nigeria"
3908
 
3909
  # Norway
3910
+ #: ../../admin/view/index.php:126
3911
  msgid "c-no"
3912
  msgstr "Norway"
3913
 
3914
  # Oman
3915
+ #: ../../admin/view/index.php:126
3916
  msgid "c-om"
3917
  msgstr "Oman"
3918
 
3919
  # Pakistan
3920
+ #: ../../admin/view/index.php:126
3921
  msgid "c-pk"
3922
  msgstr "Pakistan"
3923
 
3924
  # Palau
3925
+ #: ../../admin/view/index.php:126
3926
  msgid "c-pw"
3927
  msgstr "Palau"
3928
 
3929
  # Occupied Palestinian Territory
3930
+ #: ../../admin/view/index.php:126
3931
  msgid "c-ps"
3932
  msgstr "Occupied Palestinian Territory"
3933
 
3934
  # Panama
3935
+ #: ../../admin/view/index.php:126
3936
  msgid "c-pa"
3937
  msgstr "Panama"
3938
 
3939
  # Papua New Guinea
3940
+ #: ../../admin/view/index.php:126
3941
  msgid "c-pg"
3942
  msgstr "Papua New Guinea"
3943
 
3944
  # Paraguay
3945
+ #: ../../admin/view/index.php:126
3946
  msgid "c-py"
3947
  msgstr "Paraguay"
3948
 
3949
  # Peru
3950
+ #: ../../admin/view/index.php:126
3951
  msgid "c-pe"
3952
  msgstr "Peru"
3953
 
3954
  # Philippines
3955
+ #: ../../admin/view/index.php:126
3956
  msgid "c-ph"
3957
  msgstr "Philippines"
3958
 
3959
  # Poland
3960
+ #: ../../admin/view/index.php:126
3961
  msgid "c-pl"
3962
  msgstr "Poland"
3963
 
3964
  # Portugal
3965
+ #: ../../admin/view/index.php:126
3966
  msgid "c-pt"
3967
  msgstr "Portugal"
3968
 
3969
  # Puerto Rico
3970
+ #: ../../admin/view/index.php:126
3971
  msgid "c-pr"
3972
  msgstr "Puerto Rico"
3973
 
3974
  # Qatar
3975
+ #: ../../admin/view/index.php:126
3976
  msgid "c-qa"
3977
  msgstr "Qatar"
3978
 
3979
  # Réunion
3980
+ #: ../../admin/view/index.php:126
3981
  msgid "c-re"
3982
  msgstr "Réunion"
3983
 
3984
  # Romania
3985
+ #: ../../admin/view/index.php:126
3986
  msgid "c-ro"
3987
  msgstr "Romania"
3988
 
3989
  # Russian Federation
3990
+ #: ../../admin/view/index.php:126
3991
  msgid "c-ru"
3992
  msgstr "Russian Federation"
3993
 
3994
  # Rwanda
3995
+ #: ../../admin/view/index.php:126
3996
  msgid "c-rw"
3997
  msgstr "Rwanda"
3998
 
3999
  # Saint Kitts and Nevis
4000
+ #: ../../admin/view/index.php:126
4001
  msgid "c-kn"
4002
  msgstr "Saint Kitts and Nevis"
4003
 
4004
  # Saint Lucia
4005
+ #: ../../admin/view/index.php:126
4006
  msgid "c-lc"
4007
  msgstr "Saint Lucia"
4008
 
4009
  # Saint Martin
4010
+ #: ../../admin/view/index.php:126
4011
  msgid "c-mf"
4012
  msgstr "Saint Martin"
4013
 
4014
  # Saint Vincent and the Grenadines
4015
+ #: ../../admin/view/index.php:126
4016
  msgid "c-vc"
4017
  msgstr "Saint Vincent and the Grenadines"
4018
 
4019
  # Samoa
4020
+ #: ../../admin/view/index.php:126
4021
  msgid "c-ws"
4022
  msgstr "Samoa"
4023
 
4024
  # Sao Tome and Principe
4025
+ #: ../../admin/view/index.php:126
4026
  msgid "c-st"
4027
  msgstr "Sao Tome and Principe"
4028
 
4029
  # Saudi Arabia
4030
+ #: ../../admin/view/index.php:126
4031
  msgid "c-sa"
4032
  msgstr "Saudi Arabia"
4033
 
4034
  # Senegal
4035
+ #: ../../admin/view/index.php:126
4036
  msgid "c-sn"
4037
  msgstr "Senegal"
4038
 
4039
  # Serbia
4040
+ #: ../../admin/view/index.php:126
4041
  msgid "c-rs"
4042
  msgstr "Serbia"
4043
 
4044
  # Sierra Leone
4045
+ #: ../../admin/view/index.php:126
4046
  msgid "c-sl"
4047
  msgstr "Sierra Leone"
4048
 
4049
  # Singapore
4050
+ #: ../../admin/view/index.php:126
4051
  msgid "c-sg"
4052
  msgstr "Singapore"
4053
 
4054
  # Slovakia
4055
+ #: ../../admin/view/index.php:126
4056
  msgid "c-sk"
4057
  msgstr "Slovakia"
4058
 
4059
  # Slovenia
4060
+ #: ../../admin/view/index.php:126
4061
  msgid "c-si"
4062
  msgstr "Slovenia"
4063
 
4064
  # Solomon Islands
4065
+ #: ../../admin/view/index.php:126
4066
  msgid "c-sb"
4067
  msgstr "Solomon Islands"
4068
 
4069
  # Somalia
4070
+ #: ../../admin/view/index.php:126
4071
  msgid "c-so"
4072
  msgstr "Somalia"
4073
 
4074
  # South Africa
4075
+ #: ../../admin/view/index.php:126
4076
  msgid "c-za"
4077
  msgstr "South Africa"
4078
 
4079
  # South Georgia and the South Sandwich Islands
4080
+ #: ../../admin/view/index.php:126
4081
  msgid "c-gs"
4082
  msgstr "South Georgia and the South Sandwich Islands"
4083
 
4084
  # Spain
4085
+ #: ../../admin/view/index.php:126
4086
  msgid "c-es"
4087
  msgstr "Spain"
4088
 
4089
  # Sri Lanka
4090
+ #: ../../admin/view/index.php:126
4091
  msgid "c-lk"
4092
  msgstr "Sri Lanka"
4093
 
4094
  # Sudan
4095
+ #: ../../admin/view/index.php:126
4096
  msgid "c-sd"
4097
  msgstr "Sudan"
4098
 
4099
+ #: ../../admin/view/index.php:126
4100
  msgid "c-ss"
4101
  msgstr ""
4102
 
4103
  # Suriname
4104
+ #: ../../admin/view/index.php:126
4105
  msgid "c-sr"
4106
  msgstr "Suriname"
4107
 
4108
  # Svalbard and Jan Mayen
4109
+ #: ../../admin/view/index.php:126
4110
  msgid "c-sj"
4111
  msgstr "Svalbard and Jan Mayen"
4112
 
4113
  # Swaziland
4114
+ #: ../../admin/view/index.php:126
4115
  msgid "c-sz"
4116
  msgstr "Swaziland"
4117
 
4118
  # Sweden
4119
+ #: ../../admin/view/index.php:126
4120
  msgid "c-se"
4121
  msgstr "Sweden"
4122
 
4123
  # Switzerland
4124
+ #: ../../admin/view/index.php:126
4125
  msgid "c-ch"
4126
  msgstr "Switzerland"
4127
 
4128
  # Syrian Arab Republic
4129
+ #: ../../admin/view/index.php:126
4130
  msgid "c-sy"
4131
  msgstr "Syrian Arab Republic"
4132
 
4133
  # Taiwan, Province of China
4134
+ #: ../../admin/view/index.php:126
4135
  msgid "c-tw"
4136
  msgstr "Taiwan"
4137
 
4138
  # Tajikistan
4139
+ #: ../../admin/view/index.php:126
4140
  msgid "c-tj"
4141
  msgstr "Tajikistan"
4142
 
4143
  # United Republic of Tanzania
4144
+ #: ../../admin/view/index.php:126
4145
  msgid "c-tz"
4146
  msgstr "United Republic of Tanzania"
4147
 
4148
  # Thailand
4149
+ #: ../../admin/view/index.php:126
4150
  msgid "c-th"
4151
  msgstr "Thailand"
4152
 
4153
  # Timor-Leste
4154
+ #: ../../admin/view/index.php:126
4155
  msgid "c-tl"
4156
  msgstr "Timor-Leste"
4157
 
4158
  # Togo
4159
+ #: ../../admin/view/index.php:126
4160
  msgid "c-tg"
4161
  msgstr "Togo"
4162
 
4163
  # Tonga
4164
+ #: ../../admin/view/index.php:126
4165
  msgid "c-to"
4166
  msgstr "Tonga"
4167
 
4168
  # Trinidad and Tobago
4169
+ #: ../../admin/view/index.php:126
4170
  msgid "c-tt"
4171
  msgstr "Trinidad and Tobago"
4172
 
4173
  # Tunisia
4174
+ #: ../../admin/view/index.php:126
4175
  msgid "c-tn"
4176
  msgstr "Tunisia"
4177
 
4178
  # Turkey
4179
+ #: ../../admin/view/index.php:126
4180
  msgid "c-tr"
4181
  msgstr "Turkey"
4182
 
4183
  # Turkmenistan
4184
+ #: ../../admin/view/index.php:126
4185
  msgid "c-tm"
4186
  msgstr "Turkmenistan"
4187
 
4188
  # Turks and Caicos Islands
4189
+ #: ../../admin/view/index.php:126
4190
  msgid "c-tc"
4191
  msgstr "Turks and Caicos Islands"
4192
 
4193
  # Uganda
4194
+ #: ../../admin/view/index.php:126
4195
  msgid "c-ug"
4196
  msgstr "Uganda"
4197
 
4198
  # Ukraine
4199
+ #: ../../admin/view/index.php:126
4200
  msgid "c-ua"
4201
  msgstr "Ukraine"
4202
 
4203
  # United Arab Emirates
4204
+ #: ../../admin/view/index.php:126
4205
  msgid "c-ae"
4206
  msgstr "United Arab Emirates"
4207
 
4208
  # United Kingdom
4209
+ #: ../../admin/view/index.php:126
4210
  msgid "c-gb"
4211
  msgstr "United Kingdom"
4212
 
4213
  # United States
4214
+ #: ../../admin/view/index.php:126
4215
  msgid "c-us"
4216
  msgstr "United States"
4217
 
4218
  # Uruguay
4219
+ #: ../../admin/view/index.php:126
4220
  msgid "c-uy"
4221
  msgstr "Uruguay"
4222
 
4223
  # Uzbekistan
4224
+ #: ../../admin/view/index.php:126
4225
  msgid "c-uz"
4226
  msgstr "Uzbekistan"
4227
 
4228
  # Vanuatu
4229
+ #: ../../admin/view/index.php:126
4230
  msgid "c-vu"
4231
  msgstr "Vanuatu"
4232
 
4233
  # Venezuela
4234
+ #: ../../admin/view/index.php:126
4235
  msgid "c-ve"
4236
  msgstr "Venezuela"
4237
 
4238
  # Viet Nam
4239
+ #: ../../admin/view/index.php:126
4240
  msgid "c-vn"
4241
  msgstr "Viet Nam"
4242
 
4243
  # British Virgin Islands
4244
+ #: ../../admin/view/index.php:126
4245
  msgid "c-vg"
4246
  msgstr "British Virgin Islands"
4247
 
4248
  # U.S. Virgin Islands
4249
+ #: ../../admin/view/index.php:126
4250
  msgid "c-vi"
4251
  msgstr "U.S. Virgin Islands"
4252
 
4253
  # Western Sahara
4254
+ #: ../../admin/view/index.php:126
4255
  msgid "c-eh"
4256
  msgstr "Western Sahara"
4257
 
4258
  # Yemen
4259
+ #: ../../admin/view/index.php:126
4260
  msgid "c-ye"
4261
  msgstr "Yemen"
4262
 
4263
  # Zambia
4264
+ #: ../../admin/view/index.php:126
4265
  msgid "c-zm"
4266
  msgstr "Zambia"
4267
 
4268
  # Zimbabwe
4269
+ #: ../../admin/view/index.php:126
4270
  msgid "c-zw"
4271
  msgstr "Zimbabwe"
4272
 
4273
  # Guernsey
4274
+ #: ../../admin/view/index.php:126
4275
  msgid "c-gg"
4276
  msgstr "Guernsey"
4277
 
4278
  # Jersey
4279
+ #: ../../admin/view/index.php:126
4280
  msgid "c-je"
4281
  msgstr "Jersey"
4282
 
4283
  # Isle of Man
4284
+ #: ../../admin/view/index.php:126
4285
  msgid "c-im"
4286
  msgstr "Isle of Man"
4287
 
4288
  # Maldives
4289
+ #: ../../admin/view/index.php:126
4290
  msgid "c-mv"
4291
  msgstr "Maldives"
4292
 
4293
+ #: ../../admin/view/index.php:127
4294
+ msgid "c-eu"
4295
+ msgstr ""
4296
+
4297
  # Unknown
4298
+ #: ../../admin/view/index.php:134 ../../admin/view/right-now.php:94
4299
+ #: ../../admin/view/wp-slimstat-reports.php:412
4300
+ #: ../../admin/view/wp-slimstat-reports.php:551
4301
  msgid "c-"
4302
  msgstr "Unknown"
4303
 
4304
+ #: ../../admin/view/index.php:142 ../../admin/view/right-now.php:54
4305
+ #: ../../admin/view/wp-slimstat-reports.php:374
4306
+ #: ../../admin/view/wp-slimstat-reports.php:514
4307
  msgid "No data to display"
4308
  msgstr "keine Daten vorhanden"
4309
 
4310
+ #: ../../admin/view/index.php:192
4311
  msgid "Your report here"
4312
  msgstr "Deine Auswertung hier"
4313
 
4314
+ #: ../../admin/view/index.php:194
4315
  #, fuzzy
4316
  msgid ""
4317
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
4329
  "besuchen Sie mein <a href=\"http://lab.duechiacchiere.it/\" title=\"WP "
4330
  "SlimStat Support-Forum\" target=\"_blank\">Support-Forum</a>."
4331
 
4332
+ #: ../../admin/view/index.php:208 ../../admin/view/wp-slimstat-reports.php:611
4333
+ #: ../../admin/view/wp-slimstat-reports.php:713
4334
+ #: ../../admin/view/wp-slimstat-reports.php:869
4335
+ msgid "Pageviews"
4336
+ msgstr "Seitenaufrufe"
4337
+
4338
+ #: ../../admin/view/index.php:211
4339
+ #, fuzzy
4340
+ msgid ""
4341
+ "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
4342
+ "WP SlimStat leverages this information to identify returning visitors. "
4343
+ "Please note that visitors also include registered users."
4344
+ msgstr ""
4345
+ "Wenn Besucher einen Kommentar im Blog hinterlassen, weist WordPress diesen "
4346
+ "einen Cookie zu. WP SlimStat erweitert diese Information um die Erkennung "
4347
+ "zur&uuml;kkehrender Besucher."
4348
+
4349
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4350
+ msgid "Take a sneak peek at what human visitors are doing on your website"
4351
+ msgstr ""
4352
+ "Erhalte einen Einblick von dem was echte Benutzer auf deiner Website machen"
4353
+
4354
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4355
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:310
4356
+ #: ../../admin/view/index.php:316 ../../admin/view/right-now.php:166
4357
+ msgid "Color codes"
4358
+ msgstr "Farb-Code"
4359
+
4360
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4361
+ msgid "From a search result page"
4362
+ msgstr "Von einer Suchergebnisseite"
4363
+
4364
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4365
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:310
4366
+ #: ../../admin/view/index.php:316 ../../admin/view/right-now.php:169
4367
+ msgid "Known Users"
4368
+ msgstr "Bekannte Benutzer"
4369
+
4370
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4371
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:310
4372
+ #: ../../admin/view/index.php:316 ../../admin/view/right-now.php:170
4373
+ msgid "Other Humans"
4374
+ msgstr "Andere echte Besucher"
4375
+
4376
+ #: ../../admin/view/index.php:220
4377
+ msgid ""
4378
+ "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
4379
+ "measures your site's rankings. Values are updated every 12 hours. Filters "
4380
+ "set above don't apply to this report."
4381
+ msgstr ""
4382
+
4383
+ #: ../../admin/view/index.php:223
4384
+ msgid ""
4385
+ "We have teamed up with HackerNinja.com to offer you a free surface security "
4386
+ "scan. By clicking submit, your website will be subjected to a full antivirus "
4387
+ "scan, Google Safe Browsing list check, and numerous other tests. NOTE: only "
4388
+ "your domain name (blog address) is being supplied to HackerNinja for the "
4389
+ "security scan. No other confidential information is being transmitted."
4390
+ msgstr ""
4391
+
4392
+ #: ../../admin/view/index.php:226
4393
+ #, fuzzy
4394
+ msgid "Human Visits"
4395
+ msgstr "Echte Besuche"
4396
+
4397
+ #: ../../admin/view/index.php:229 ../../admin/view/index.php:262
4398
+ msgid ""
4399
+ "This report shows you what languages your users have installed on their "
4400
+ "computers."
4401
+ msgstr ""
4402
+ "Diese Auswertung zeigt die installierten Sprachen der Systeme Ihrer Besucher."
4403
+
4404
+ #: ../../admin/view/index.php:232 ../../admin/view/index.php:259
4405
+ msgid ""
4406
+ "A user agent is a generic term for any program used for accessing a website. "
4407
+ "This includes browsers (such as Chrome), robots and spiders, and any other "
4408
+ "software program that retrieves information from a website.<br><br>You can "
4409
+ "ignore any given user agent by setting the corresponding filter under "
4410
+ "Settings > SlimStat > Filters."
4411
+ msgstr ""
4412
+ "Der 'User Agent' ist eine generischer Kennung jedes zugreifenden Programmes. "
4413
+ "Dies beinhaltet den Browser (wie z.B. Firefox), 'Robots' und 'Spider' sowie "
4414
+ "jedes andere Programm welches Informationen von einer Website abruft."
4415
+ "<br><br>Um diese generische Kennung generell zu ignorieren kann ein "
4416
+ "entsprechender Filter unter 'Einstellungen > SlimStat > Filter' gesetzt "
4417
+ "werden."
4418
+
4419
+ #: ../../admin/view/index.php:235
4420
+ msgid ""
4421
+ "Internet Service Provider: a company which provides other companies or "
4422
+ "individuals with access to the Internet. Your DSL or cable internet service "
4423
+ "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
4424
+ "by setting the corresponding filter under Settings > SlimStat > Filters."
4425
+ msgstr ""
4426
+ "Internet Service Provider: eine Firma welche Individuen oder Firmen Zugriff "
4427
+ "auf das Internet gew&auml;hrt. Der Internet-Zugriff per DSL oder Kabel wird "
4428
+ "vom verwendeten ISP zur Verf&uuml;gung gestellt.<br><br>Um spezifische IP-"
4429
+ "Adressen generell zu ignorieren kann ein entsprechender Filter unter "
4430
+ "'Einstellungen > SlimStat > Filter' gesetzt werden."
4431
+
4432
+ #: ../../admin/view/index.php:238 ../../admin/view/index.php:256
4433
+ msgid ""
4434
+ "Which operating systems do your visitors use? Optimizing your site for the "
4435
+ "appropriate technical capabilities helps make your site more engaging and "
4436
+ "usable and can result in higher conversion rates and more sales."
4437
+ msgstr ""
4438
+ "Welche Betriebssysteme verwenden die Besucher? Optimierungen an die "
4439
+ "geeigneten technischen F&auml;higkeiten helfen f&uuml;hren zu einer "
4440
+ "verbesserten Benutzbarkeit und k&ouml;nnen zu einer h&ouml;heren Konversions-"
4441
+ "Rate und mehr Ums&auml;tzen f&uuml;hren."
4442
+
4443
+ #: ../../admin/view/index.php:241
4444
+ msgid ""
4445
+ "This report shows the most common screen resolutions used by your visitors. "
4446
+ "Knowing the most popular screen resolution of your visitors will help you "
4447
+ "create content optimized for that resolution or you may opt for resolution-"
4448
+ "independence."
4449
+ msgstr ""
4450
+ "Diese Statitstik zeigt die g&auml;ngigen Aufl&ouml;sungen der von den "
4451
+ "Besuchern verwendeten Systeme. Mit Hilfe dieser Informationen kann auf diese "
4452
+ "Aufl&ouml;sungen optimierter oder aufl&ouml;sungsunabh&auml;giger Inhalt "
4453
+ "erzeugt werden."
4454
+
4455
+ #: ../../admin/view/index.php:244
4456
+ msgid ""
4457
+ "Which versions of Flash do your visitors have installed? Is Java supported "
4458
+ "on your visitors' platforms?"
4459
+ msgstr ""
4460
+ "Welche Flash-Version haben die Besucher installiert? Wird Java auf den von "
4461
+ "Benutzern verwendeten Plattformen unterst&uuml;zt?"
4462
+
4463
+ #: ../../admin/view/index.php:247 ../../admin/view/index.php:280
4464
+ msgid ""
4465
+ "You can configure WP SlimStat to ignore a specific Country by setting the "
4466
+ "corresponding filter under Settings > SlimStat > Filters."
4467
+ msgstr ""
4468
+ "Um ein spezifisches Land generell zu ignorieren kann ein entsprechender "
4469
+ "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
4470
+
4471
+ #: ../../admin/view/index.php:250
4472
+ msgid ""
4473
+ "You can ignore any specific Country by setting the corresponding filter "
4474
+ "under Settings > SlimStat > Filters."
4475
+ msgstr ""
4476
+ "Um spezifische L&auml;nder generell zu ignorieren kann ein entsprechender "
4477
+ "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
4478
+
4479
+ #: ../../admin/view/index.php:253
4480
+ msgid ""
4481
+ "This report shows the most recent screen resolutions used by your visitors. "
4482
+ "Knowing the most popular screen resolution of your visitors will help you "
4483
+ "create content optimized for that resolution or you may opt for resolution-"
4484
+ "independence."
4485
+ msgstr ""
4486
+ "Diese Auswertung zeigt die letzten Aufl&ouml;sungen der von den Besuchern "
4487
+ "verwendeten Systeme. Mit Hilfe dieser Informationen kann auf diese Aufl&ouml;"
4488
+ "sungen optimierter oder aufl&ouml;sungsunabh&auml;giger Inhalt erzeugt "
4489
+ "werden."
4490
+
4491
+ #: ../../admin/view/index.php:265
4492
+ msgid ""
4493
+ "This report shows you what user agent families (no version considered) are "
4494
+ "popular among your visitors."
4495
+ msgstr ""
4496
+
4497
+ #: ../../admin/view/index.php:268
4498
+ msgid ""
4499
+ "This report shows you what operating system families (no version considered) "
4500
+ "are popular among your visitors."
4501
+ msgstr ""
4502
+
4503
+ #: ../../admin/view/index.php:271
4504
+ msgid "List of registered users who recently visited your website."
4505
+ msgstr ""
4506
+
4507
+ #: ../../admin/view/index.php:274
4508
+ #, fuzzy
4509
+ msgid "This report lists your most active registered users."
4510
+ msgstr "Diese Auswertung listet die letzten Artikel nach Titel."
4511
+
4512
+ #: ../../admin/view/index.php:289
4513
+ #, fuzzy
4514
+ msgid "Average Pageviews per Visit"
4515
+ msgstr "Durchschnitt. Seitenaufrufe pro Besuch"
4516
+
4517
+ #: ../../admin/view/index.php:292
4518
+ msgid "This report lists the most recent posts viewed on your site, by title."
4519
+ msgstr "Diese Auswertung listet die letzten Artikel nach Titel."
4520
+
4521
+ #: ../../admin/view/index.php:295
4522
+ msgid ""
4523
+ "A <em>bounce page</em> is a single-page visit, or visit in which the person "
4524
+ "left your site from the entrance (landing) page."
4525
+ msgstr ""
4526
+ "Eine 'Absprung' Seite ist der Zugriff auf eine einzelne Seite oder wenn der "
4527
+ "Besucher die Website bereits auf der Einstiegs-Seite wieder verl&auml;sst."
4528
+
4529
+ #: ../../admin/view/index.php:298
4530
+ msgid ""
4531
+ "The 404 or Not Found error message is a HTTP standard response code "
4532
+ "indicating that the client was able to communicate with the server, but the "
4533
+ "server could not find what was requested.<br><br>This report can be useful "
4534
+ "to detect attack attempts, by looking at patterns in 404 URLs."
4535
+ msgstr ""
4536
+ "Die Fehler-Meldung '404' bzw. 'Nicht gefunden' ist ein standardisierter "
4537
+ "Antwort-Code des HTTP-Protokolls welcher darauf hinweist, dass der Client "
4538
+ "mit dem Server kommunizieren konnte aber der angefragte Inhalt nicht "
4539
+ "gefunden werden konnte.<br><br>Diese Statisitk kann hilfreich sein, um "
4540
+ "Angriffsversuche anhand von Mustern in '404' URLs zu erkennen."
4541
+
4542
+ #: ../../admin/view/index.php:301
4543
+ msgid "Searches performed using Wordpress' built-in search functionality."
4544
+ msgstr ""
4545
+ "Suchen welche mit der WordPress eigenen Such-Funktion ausgef&uuml;hrt wurden."
4546
+
4547
+ #: ../../admin/view/index.php:304
4548
+ msgid ""
4549
+ "Categories provide a helpful way to group related posts together, and to "
4550
+ "quickly tell readers what a post is about. Categories also make it easier "
4551
+ "for people to find your content."
4552
+ msgstr ""
4553
+ "Kategorien stellen ein Hilfsmittel zur Gruppierung zusammengeh&ouml;riger "
4554
+ "Artikel zur Verf&uuml;gung und um dem Leser eine schnelle Information zum "
4555
+ "Inhalt eines Artikels zu geben. Kategorien machen es für Leser auch "
4556
+ "einfacher Inhalte zu finden."
4557
+
4558
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:316
4559
+ msgid ""
4560
+ "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
4561
+ "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
4562
+ "link has an ID attribute associated to it."
4563
+ msgstr ""
4564
+
4565
+ #: ../../admin/view/index.php:310
4566
+ msgid ""
4567
+ "This report lists any <em>event</em> occurred on your website. Please refer "
4568
+ "to the FAQ for more information on how to leverage this functionality."
4569
+ msgstr ""
4570
+ "Dieses Auswertung listet jedes <em>Ereignis</em> welches auf der Website "
4571
+ "stattgefunden hat. Bitte schlagen Sie in der FAQ für weitere Informationen "
4572
+ "zur Verwendung dieser Funktionalit&auml;t nach."
4573
+
4574
+ #: ../../admin/view/index.php:313
4575
+ msgid "This report lists the most popular posts on your site, by title."
4576
+ msgstr "Dieses Statisitk listet die popul&;rsten Artikel nach Titel."
4577
+
4578
  #: ../../admin/view/right-now.php:38
4579
+ #: ../../admin/view/wp-slimstat-reports.php:303
4580
  #, fuzzy
4581
  msgid "Refresh"
4582
  msgstr "Anzeige aktualisieren"
4595
  msgstr ""
4596
 
4597
  #: ../../admin/view/right-now.php:73 ../../admin/view/right-now.php:82
4598
+ #: ../../admin/view/wp-slimstat-reports.php:473
4599
  #, php-format
4600
  msgid "Filter results where IP equals %s"
4601
  msgstr "Ergebnisse filtern nach IP %s"
4611
  msgstr "Ergebnisse filtern nach Besucher %s"
4612
 
4613
  #: ../../admin/view/right-now.php:94
4614
+ #: ../../admin/view/wp-slimstat-reports.php:551
4615
  msgid "Country"
4616
  msgstr "Land"
4617
 
4638
  msgstr "Ergebnisse filtern wo Ressource ist gleich %s"
4639
 
4640
  #: ../../admin/view/right-now.php:144
4641
+ #: ../../admin/view/wp-slimstat-reports.php:466
4642
+ #: ../../admin/view/wp-slimstat-reports.php:470
4643
+ #: ../../admin/view/wp-slimstat-reports.php:533
4644
+ #: ../../admin/view/wp-slimstat-reports.php:561
4645
+ #: ../../admin/view/wp-slimstat-reports.php:577
4646
  msgid "Open this URL in a new window"
4647
  msgstr "Diese URL in einem neuen Fenster &ouml;ffnen"
4648
 
4649
  #: ../../admin/view/right-now.php:144
4650
+ #: ../../admin/view/wp-slimstat-reports.php:577
4651
  #, php-format
4652
  msgid "Filter results where resource equals %s"
4653
  msgstr "Ergebnisse filtern wo Ressource ist gleich %s"
4697
  msgstr "&Uuml;ber WP SlimStat"
4698
 
4699
  #: ../../admin/view/wp-slimstat-reports.php:79
4700
+ #: ../../admin/view/wp-slimstat-reports.php:91
4701
+ #: ../../admin/view/wp-slimstat-reports.php:110
4702
  msgid "Summary"
4703
  msgstr "Zusammenfassung"
4704
 
4707
  msgstr "Letzte bekannte Besucher"
4708
 
4709
  #: ../../admin/view/wp-slimstat-reports.php:81
4710
+ #: ../../admin/view/wp-slimstat-reports.php:115
4711
  msgid "Spy View"
4712
  msgstr "Spy View"
4713
 
4714
  #: ../../admin/view/wp-slimstat-reports.php:82
4715
+ #: ../../admin/view/wp-slimstat-reports.php:116
4716
  msgid "Recent Search Terms"
4717
  msgstr "Letzte interne Suchbegriffe"
4718
 
4719
  #: ../../admin/view/wp-slimstat-reports.php:83
 
 
 
 
4720
  msgid "Top Pages"
4721
  msgstr "Top Seiten"
4722
 
4723
+ #: ../../admin/view/wp-slimstat-reports.php:84
4724
+ #: ../../admin/view/wp-slimstat-reports.php:113
 
 
 
 
 
 
4725
  msgid "Top Traffic Sources"
4726
  msgstr "Top Traffic Ursprung"
4727
 
4728
+ #: ../../admin/view/wp-slimstat-reports.php:85
4729
  msgid "Top Known Visitors"
4730
  msgstr "Top bekannte Besucher"
4731
 
4732
+ #: ../../admin/view/wp-slimstat-reports.php:86
4733
+ #: ../../admin/view/wp-slimstat-reports.php:111
4734
+ #: ../../admin/view/wp-slimstat-reports.php:131
4735
  msgid "Top Search Terms"
4736
  msgstr "Top Suchbegriffe"
4737
 
4738
+ #: ../../admin/view/wp-slimstat-reports.php:87
4739
+ #: ../../admin/view/wp-slimstat-reports.php:98
4740
+ #: ../../admin/view/wp-slimstat-reports.php:112
4741
  msgid "Top Countries"
4742
  msgstr "Top L&auml;nder"
4743
 
4744
+ #: ../../admin/view/wp-slimstat-reports.php:88
4745
+ msgid "Rankings"
4746
+ msgstr ""
 
4747
 
4748
+ #: ../../admin/view/wp-slimstat-reports.php:89
4749
+ msgid "Security Scan"
4750
+ msgstr ""
4751
+
4752
+ #: ../../admin/view/wp-slimstat-reports.php:90
4753
  msgid "Human Visits (chart)"
4754
  msgstr "Echte Besucher (Diagramm)"
4755
 
4756
+ #: ../../admin/view/wp-slimstat-reports.php:92
4757
  msgid "Top Languages"
4758
  msgstr "Top Sprachen"
4759
 
4760
+ #: ../../admin/view/wp-slimstat-reports.php:93
4761
  #, fuzzy
4762
  msgid "Top Browsers"
4763
  msgstr "Browser"
4764
 
4765
+ #: ../../admin/view/wp-slimstat-reports.php:94
4766
  msgid "Top Service Providers"
4767
  msgstr "Top Service Provider"
4768
 
4769
+ #: ../../admin/view/wp-slimstat-reports.php:95
4770
  msgid "Top Operating Systems"
4771
  msgstr "Top Betriebssysteme"
4772
 
4773
+ #: ../../admin/view/wp-slimstat-reports.php:96
4774
  msgid "Top Screen Resolutions"
4775
  msgstr "Top Bildschirm-Aufl&ouml;sungen"
4776
 
4777
+ #: ../../admin/view/wp-slimstat-reports.php:99
4778
  msgid "Visit Duration"
4779
  msgstr "Besuchsdauer"
4780
 
4781
+ #: ../../admin/view/wp-slimstat-reports.php:100
4782
+ #: ../../admin/view/wp-slimstat-reports.php:117
4783
+ msgid "Recent Countries"
4784
+ msgstr "Letzte L&auml;nder"
4785
+
4786
+ #: ../../admin/view/wp-slimstat-reports.php:101
4787
  msgid "Recent Screen Resolutions"
4788
  msgstr "Letzte Bildschirm-Aufl&ouml;sungen"
4789
 
4790
+ #: ../../admin/view/wp-slimstat-reports.php:102
4791
  msgid "Recent Operating Systems"
4792
  msgstr "Letzte Betriebssysteme"
4793
 
4794
+ #: ../../admin/view/wp-slimstat-reports.php:103
4795
  #, fuzzy
4796
  msgid "Recent Browsers"
4797
  msgstr "Letzte Artikel"
4798
 
4799
+ #: ../../admin/view/wp-slimstat-reports.php:104
4800
  msgid "Recent Languages"
4801
  msgstr "Letzte Sprachen"
4802
 
4803
+ #: ../../admin/view/wp-slimstat-reports.php:105
4804
  #, fuzzy
4805
  msgid "Top Browser Families"
4806
  msgstr "Browser-F&auml;higkeiten"
4807
 
4808
+ #: ../../admin/view/wp-slimstat-reports.php:106
4809
  msgid "Top OS Families"
4810
  msgstr ""
4811
 
4812
+ #: ../../admin/view/wp-slimstat-reports.php:107
4813
  #, fuzzy
4814
  msgid "Recent Users"
4815
  msgstr "Letzte Browser"
4816
 
4817
+ #: ../../admin/view/wp-slimstat-reports.php:108
4818
  #, fuzzy
4819
  msgid "Top Users"
4820
  msgstr "Top Browser"
4821
 
4822
+ #: ../../admin/view/wp-slimstat-reports.php:109
4823
  msgid "Traffic Sources (chart)"
4824
  msgstr "Traffic Ursprung (Diagramm)"
4825
 
4826
+ #: ../../admin/view/wp-slimstat-reports.php:114
4827
  msgid "Top Referring Search Engines"
4828
  msgstr "Top verweisende Suchmaschinen"
4829
 
4830
+ #: ../../admin/view/wp-slimstat-reports.php:118
4831
+ #: ../../admin/view/wp-slimstat-reports.php:134
4832
  msgid "Top Landing Pages"
4833
  msgstr "Top Einstiegs-Seiten"
4834
 
4835
+ #: ../../admin/view/wp-slimstat-reports.php:119
4836
  msgid "Average Pageviews per Visit (chart)"
4837
  msgstr "Durchschnitt. Seitenaufrufe pro Besuch (Diagramm)"
4838
 
4839
+ #: ../../admin/view/wp-slimstat-reports.php:120
4840
  msgid "Recent Posts"
4841
  msgstr "Letzte Artikel"
4842
 
4843
+ #: ../../admin/view/wp-slimstat-reports.php:121
4844
  msgid "Recent Bounce Pages"
4845
  msgstr "Letzte Absprung-Seiten"
4846
 
4847
+ #: ../../admin/view/wp-slimstat-reports.php:122
4848
  msgid "Recent Feeds"
4849
  msgstr "Letzte Feeds"
4850
 
4851
+ #: ../../admin/view/wp-slimstat-reports.php:123
4852
  msgid "Recent 404 URLs"
4853
  msgstr "Letzte 404 URLs"
4854
 
4855
+ #: ../../admin/view/wp-slimstat-reports.php:124
4856
  msgid "Recent Internal Searches"
4857
  msgstr "Letzte interne Suchbegriffe"
4858
 
4859
+ #: ../../admin/view/wp-slimstat-reports.php:125
4860
  msgid "Top Categories"
4861
  msgstr "Top Kategorien"
4862
 
4863
+ #: ../../admin/view/wp-slimstat-reports.php:126
4864
  msgid "Recent Outbound Links"
4865
  msgstr "Letzte ausgehende Links"
4866
 
4867
+ #: ../../admin/view/wp-slimstat-reports.php:127
4868
  msgid "Recent Events"
4869
  msgstr "Letzte Ereignisse"
4870
 
4871
+ #: ../../admin/view/wp-slimstat-reports.php:128
4872
  msgid "Top Posts"
4873
  msgstr "Top Artikel"
4874
 
4875
+ #: ../../admin/view/wp-slimstat-reports.php:129
4876
  msgid "Top Feeds"
4877
  msgstr "Top Feeds"
4878
 
4879
+ #: ../../admin/view/wp-slimstat-reports.php:130
4880
  msgid "Top Internal Searches"
4881
  msgstr "Top interne Suchbegriffe"
4882
 
4883
+ #: ../../admin/view/wp-slimstat-reports.php:132
4884
  msgid "Recent Categories"
4885
  msgstr "Letzte Kategorien"
4886
 
4887
+ #: ../../admin/view/wp-slimstat-reports.php:133
4888
  msgid "Top 404 URLs"
4889
  msgstr "Top 404 URLs"
4890
 
4891
+ #: ../../admin/view/wp-slimstat-reports.php:135
4892
  msgid "Top Authors"
4893
  msgstr "Top Autoren"
4894
 
4895
+ #: ../../admin/view/wp-slimstat-reports.php:136
4896
  #, fuzzy
4897
  msgid "Top Tags"
4898
  msgstr "Top Seiten"
4899
 
4900
+ #: ../../admin/view/wp-slimstat-reports.php:137
4901
  msgid "Recent Downloads"
4902
  msgstr "Letzte Downloads"
4903
 
4904
+ #: ../../admin/view/wp-slimstat-reports.php:138
4905
+ msgid "Top Outbound Links and Downloads"
4906
+ msgstr ""
4907
+
4908
+ #: ../../admin/view/wp-slimstat-reports.php:139
4909
+ #, fuzzy
4910
+ msgid "Your Content"
4911
+ msgstr "Inhalt"
4912
+
4913
+ #: ../../admin/view/wp-slimstat-reports.php:227
4914
  msgid "Chart controls"
4915
  msgstr "Diagramm-Einstellungen"
4916
 
4917
+ #: ../../admin/view/wp-slimstat-reports.php:227
4918
  msgid "Use your mouse wheel to zoom in and out"
4919
  msgstr "Verwende das Mausrad zum Zoomen"
4920
 
4921
+ #: ../../admin/view/wp-slimstat-reports.php:227
4922
  msgid "While zooming in, drag the chart to move to a different area"
4923
  msgstr ""
4924
  "W&;rend des Zooms das Diagramm schieben um zu einer anderen Position zu "
4925
  "verschieben."
4926
 
4927
+ #: ../../admin/view/wp-slimstat-reports.php:227
4928
  msgid "Double click on an empty region to reset the zoom level"
4929
  msgstr ""
4930
  "Doppel-Klick auf einen freien Bereich um den Zoom-Level zur&uuml;ckzusetzen"
4931
 
4932
+ #: ../../admin/view/wp-slimstat-reports.php:228
4933
  msgid ""
4934
  "Click on a data point to display the activity chart for each hour of that day"
4935
  msgstr ""
4936
  "Auf ein Datum klicken um das Aktivit&auml;ts-Diagramm f&uuml;r jede Stunde "
4937
  "des tages anzuzeigen"
4938
 
4939
+ #: ../../admin/view/wp-slimstat-reports.php:260
4940
  msgid "src"
4941
  msgstr "src"
4942
 
4943
+ #: ../../admin/view/wp-slimstat-reports.php:261
4944
  msgid "serp"
4945
  msgstr "serp"
4946
 
4947
+ #: ../../admin/view/wp-slimstat-reports.php:266
4948
  msgid "Go to the corresponding search engine result page"
4949
  msgstr "Zugeh&ouml;rige Ergbnisseite der Suchmaschine &ouml;ffnen"
4950
 
4951
+ #: ../../admin/view/wp-slimstat-reports.php:269
4952
  msgid "Go to the referring page"
4953
  msgstr "Verweisende Seite &ouml;ffnen"
4954
 
4955
+ #: ../../admin/view/wp-slimstat-reports.php:288
4956
  msgid "Remove all filters"
4957
  msgstr "Alle Filter entfernen"
4958
 
4959
+ #: ../../admin/view/wp-slimstat-reports.php:290
4960
+ #: ../../admin/view/wp-slimstat-reports.php:297
4961
  msgid "Current filters:"
4962
  msgstr "Aktuelle Filter:"
4963
 
4964
+ #: ../../admin/view/wp-slimstat-reports.php:293
4965
  msgid "Remove filter for"
4966
  msgstr "Entferne Filter f&uuml;r"
4967
 
4968
+ #: ../../admin/view/wp-slimstat-reports.php:329
4969
  #, php-format
4970
  msgid "%s Minute by Minute"
4971
  msgstr ""
4972
 
4973
+ #: ../../admin/view/wp-slimstat-reports.php:332
4974
  #, fuzzy, php-format
4975
  msgid "Hourly %s"
4976
  msgstr "Seitenaufrufe pro Stunde"
4977
 
4978
+ #: ../../admin/view/wp-slimstat-reports.php:335
4979
  #, fuzzy, php-format
4980
  msgid "Monthly %s"
4981
  msgstr "Monat"
4982
 
4983
+ #: ../../admin/view/wp-slimstat-reports.php:338
4984
  #, fuzzy, php-format
4985
  msgid "Daily %s"
4986
  msgstr "Details"
4987
 
4988
+ #: ../../admin/view/wp-slimstat-reports.php:394
4989
  msgid "Category ID"
4990
  msgstr "Kategorie-ID"
4991
 
4992
+ #: ../../admin/view/wp-slimstat-reports.php:427
4993
  msgid "OS Code"
4994
  msgstr "OS Code"
4995
 
4996
+ #: ../../admin/view/wp-slimstat-reports.php:437
4997
  #, fuzzy
4998
  msgid "Referrer"
4999
  msgstr "Herkunft"
5000
 
5001
+ #: ../../admin/view/wp-slimstat-reports.php:454
5002
  #, fuzzy, php-format
5003
  msgid "Filter results where %s %s %s"
5004
  msgstr "Ergbnisse filtern wo %s ist gleich %s"
5005
 
5006
+ #: ../../admin/view/wp-slimstat-reports.php:461
5007
+ #: ../../admin/view/wp-slimstat-reports.php:655
5008
+ #: ../../admin/view/wp-slimstat-reports.php:666
5009
+ #: ../../admin/view/wp-slimstat-reports.php:671
5010
+ #: ../../admin/view/wp-slimstat-reports.php:676
5011
+ #: ../../admin/view/wp-slimstat-reports.php:681
5012
+ #: ../../admin/view/wp-slimstat-reports.php:686
5013
+ #: ../../admin/view/wp-slimstat-reports.php:691
5014
+ #: ../../admin/view/wp-slimstat-reports.php:696
5015
+ #: ../../admin/view/wp-slimstat-reports.php:701
5016
  msgid "Hits"
5017
  msgstr "Zugriffe"
5018
 
5019
+ #: ../../admin/view/wp-slimstat-reports.php:530
5020
  msgid "Search for"
5021
  msgstr "Suche nach"
5022
 
5023
+ #: ../../admin/view/wp-slimstat-reports.php:561
5024
+ #: ../../admin/view/wp-slimstat-reports.php:577
5025
  msgid "Source"
5026
  msgstr "Ursprung"
5027
 
5028
+ #: ../../admin/view/wp-slimstat-reports.php:561
5029
  #, php-format
5030
  msgid "Filter results where domain equals %s"
5031
  msgstr "Ergebnisse filtern wo die Dom&auml;ne ist gleich %s"
5032
 
5033
+ #: ../../admin/view/wp-slimstat-reports.php:563
5034
  msgid "Keywords"
5035
  msgstr "Suchbegriffe"
5036
 
5037
+ #: ../../admin/view/wp-slimstat-reports.php:564
5038
  #, php-format
5039
  msgid "Filter results where searchterm equals %s"
5040
  msgstr "Ergebnisse filtern wo Suchbegriffe sind gleich %s"
5041
 
5042
+ #: ../../admin/view/wp-slimstat-reports.php:589
5043
  msgid "Total Pageviews"
5044
  msgstr "Gesamte Seitenaufrufe"
5045
 
5046
+ #: ../../admin/view/wp-slimstat-reports.php:590
5047
  msgid "DB Size"
5048
  msgstr "Datenbank-Gr&ouml;sse"
5049
 
5050
+ #: ../../admin/view/wp-slimstat-reports.php:591
5051
  msgid "Tracking Active"
5052
  msgstr "Tracking aktiv"
5053
 
5054
+ #: ../../admin/view/wp-slimstat-reports.php:593
5055
  msgid "Tracking Browser Caps"
5056
  msgstr ""
5057
 
5058
+ #: ../../admin/view/wp-slimstat-reports.php:594
5059
  msgid "Auto purge"
5060
  msgstr "autom. Datenbank-Reorg."
5061
 
5062
+ #: ../../admin/view/wp-slimstat-reports.php:595
5063
  #, fuzzy
5064
  msgid "Oldest pageview"
5065
  msgstr "&Auml;ltester Besuch"
5066
 
5067
+ #: ../../admin/view/wp-slimstat-reports.php:595
5068
  msgid "No visits"
5069
  msgstr "Keine Besuche"
5070
 
5071
+ #: ../../admin/view/wp-slimstat-reports.php:610
5072
+ #: ../../admin/view/wp-slimstat-reports.php:712
5073
  msgid ""
5074
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
5075
  "time the tracking code is executed."
5078
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
5079
  "wird."
5080
 
5081
+ #: ../../admin/view/wp-slimstat-reports.php:612
5082
  msgid "This counter is based on any user activity in the last 5 minutes."
5083
  msgstr ""
5084
  "Dieser Z&auml;hler basiert auf allen Besucher-Aktivit&auml;ten der letzten 5 "
5085
  "Minuten."
5086
 
5087
+ #: ../../admin/view/wp-slimstat-reports.php:613
5088
  msgid "Last 5 minutes"
5089
  msgstr "Letzte 5 Minuten"
5090
 
5091
+ #: ../../admin/view/wp-slimstat-reports.php:614
5092
  #, fuzzy
5093
  msgid "This counter is based on any user activity in the last 30 minutes."
5094
  msgstr ""
5095
  "Dieser Z&auml;hler basiert auf allen Besucher-Aktivit&auml;ten der letzten 5 "
5096
  "Minuten."
5097
 
5098
+ #: ../../admin/view/wp-slimstat-reports.php:615
5099
  #, fuzzy
5100
  msgid "Last 30 minutes"
5101
  msgstr "Letzte 5 Minuten"
5102
 
5103
+ #: ../../admin/view/wp-slimstat-reports.php:616
5104
  #, fuzzy
5105
  msgid "Filter results where date equals today"
5106
  msgstr "Ergebnisse filtern wo die Dom&auml;ne ist gleich %s"
5107
 
5108
+ #: ../../admin/view/wp-slimstat-reports.php:616
5109
  #, fuzzy
5110
  msgid "Today"
5111
  msgstr "Tage"
5112
 
5113
+ #: ../../admin/view/wp-slimstat-reports.php:617
5114
  #, fuzzy
5115
  msgid "Filter results where date equals yesterday"
5116
  msgstr "Ergebnisse filtern wo die Dom&auml;ne ist gleich %s"
5117
 
5118
+ #: ../../admin/view/wp-slimstat-reports.php:617
5119
  msgid "Yesterday"
5120
  msgstr ""
5121
 
5122
+ #: ../../admin/view/wp-slimstat-reports.php:618
5123
  msgid "How many pages have been visited on average during the current period."
5124
  msgstr ""
5125
  "Wieviele Seiten wurden w&auml;hrend der aktuellen Periode durchschnittlich "
5126
  "besucht."
5127
 
5128
+ #: ../../admin/view/wp-slimstat-reports.php:619
5129
+ #: ../../admin/view/wp-slimstat-reports.php:882
5130
  msgid "Avg Pageviews"
5131
  msgstr "Durchschnitt. Seitenaufrufe"
5132
 
5133
+ #: ../../admin/view/wp-slimstat-reports.php:620
5134
  msgid ""
5135
  "Visitors who landed on your site after searching for a keyword on Google, "
5136
  "Yahoo, etc."
5138
  "Besucher welche nach einer Suche nach einem Suchbegriff auf Google oder Bing "
5139
  "usw. auf die Website kamen."
5140
 
5141
+ #: ../../admin/view/wp-slimstat-reports.php:621
5142
  msgid "From Search Results"
5143
  msgstr "Von Suchergebnissen"
5144
 
5145
+ #: ../../admin/view/wp-slimstat-reports.php:622
5146
  msgid ""
5147
  "Used to differentiate between multiple requests to download a file from one "
5148
  "internet address (IP) and requests originating from many distinct addresses"
5149
  msgstr ""
5150
 
5151
+ #: ../../admin/view/wp-slimstat-reports.php:623
5152
+ #: ../../admin/view/wp-slimstat-reports.php:637
5153
+ #: ../../admin/view/wp-slimstat-reports.php:869
5154
+ #: ../../admin/view/wp-slimstat-reports.php:873
5155
+ #: ../../admin/view/wp-slimstat-reports.php:877
5156
  msgid "Unique IPs"
5157
  msgstr "Eindeutige IPs"
5158
 
5159
+ #: ../../admin/view/wp-slimstat-reports.php:634
5160
  msgid ""
5161
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
5162
  "multiple times if they perform multiple visits."
5164
  "Ein Besuch ist eine Session von max. 30 Minuten. Zur&;kkehrende Besucher "
5165
  "werden bei mehrfachen Besuchen auch mehrfach gez&auml;hlt."
5166
 
5167
+ #: ../../admin/view/wp-slimstat-reports.php:635
5168
  msgid "Human visits"
5169
  msgstr "Echte Besuche"
5170
 
5171
+ #: ../../admin/view/wp-slimstat-reports.php:636
5172
  msgid "This number includes <strong>human visits</strong> only."
5173
  msgstr "Diese Anzahl beinhaltet nur <strong>echte Besuche</strong>."
5174
 
5175
+ #: ../../admin/view/wp-slimstat-reports.php:638
5176
+ #: ../../admin/view/wp-slimstat-reports.php:724
5177
  msgid ""
5178
  "Percentage of single-page visits, i.e. visits in which the person left your "
5179
  "site from the entrance page."
5181
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
5182
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
5183
 
5184
+ #: ../../admin/view/wp-slimstat-reports.php:639
5185
  msgid "Bounce rate"
5186
  msgstr "Absprung-Rate"
5187
 
5188
+ #: ../../admin/view/wp-slimstat-reports.php:640
5189
  msgid "Visitors who had previously left a comment on your blog."
5190
  msgstr ""
5191
  "Besucher welche fr&uuml;her bereits einen Kommentar hinterlassen haben."
5192
 
5193
+ #: ../../admin/view/wp-slimstat-reports.php:641
5194
  msgid "Known visitors"
5195
  msgstr "Bekannte Besucher"
5196
 
5197
+ #: ../../admin/view/wp-slimstat-reports.php:642
5198
  msgid "Human users who visited your site only once."
5199
  msgstr "Echte Besucher welche die Wesite nur einmal besucht haben."
5200
 
5201
+ #: ../../admin/view/wp-slimstat-reports.php:643
5202
  msgid "New visitors"
5203
  msgstr "Neue Besucher"
5204
 
5205
+ #: ../../admin/view/wp-slimstat-reports.php:644
5206
  msgid "Bots"
5207
  msgstr "Bots"
5208
 
5209
+ #: ../../admin/view/wp-slimstat-reports.php:645
5210
  msgid "Pages per visit"
5211
  msgstr "Seiten pro Besuch"
5212
 
5213
+ #: ../../admin/view/wp-slimstat-reports.php:646
5214
+ #: ../../admin/view/wp-slimstat-reports.php:882
5215
  msgid "Longest visit"
5216
  msgstr "L&auml;ngster Besuch"
5217
 
5218
+ #: ../../admin/view/wp-slimstat-reports.php:646
5219
  msgid "hits"
5220
  msgstr "Zugriff"
5221
 
5222
+ #: ../../admin/view/wp-slimstat-reports.php:667
5223
  msgid "0 - 30 seconds"
5224
  msgstr "0-30 Sekunden"
5225
 
5226
+ #: ../../admin/view/wp-slimstat-reports.php:672
5227
  msgid "31 - 60 seconds"
5228
  msgstr "31-60 Sekunden"
5229
 
5230
+ #: ../../admin/view/wp-slimstat-reports.php:677
5231
  msgid "1 - 3 minutes"
5232
  msgstr "1-3 Minuten"
5233
 
5234
+ #: ../../admin/view/wp-slimstat-reports.php:682
5235
  msgid "3 - 5 minutes"
5236
  msgstr "3-5 Minuten"
5237
 
5238
+ #: ../../admin/view/wp-slimstat-reports.php:687
5239
  msgid "5 - 7 minutes"
5240
  msgstr "5-7 Minuten"
5241
 
5242
+ #: ../../admin/view/wp-slimstat-reports.php:692
5243
  msgid "7 - 10 minutes"
5244
  msgstr "7-10 Minuten"
5245
 
5246
+ #: ../../admin/view/wp-slimstat-reports.php:697
5247
  msgid "10 - 20 minutes"
5248
  msgstr "10-20 Minuten"
5249
 
5250
+ #: ../../admin/view/wp-slimstat-reports.php:702
5251
  msgid "More than 20 minutes"
5252
  msgstr "Mehr als 20 Minuten"
5253
 
5254
+ #: ../../admin/view/wp-slimstat-reports.php:714
5255
  msgid ""
5256
  "A referrer (or referring site) is the site that a visitor previously visited "
5257
  "before following a link to your site."
5259
  "Eine Herkunft (verweisende Seite) ist die Webseite welche ein Besucher vor "
5260
  "dem Besuch der eigenen Website besucht hat."
5261
 
5262
+ #: ../../admin/view/wp-slimstat-reports.php:715
5263
  msgid "Unique Referrers"
5264
  msgstr "Eindeutige Herkunft"
5265
 
5266
+ #: ../../admin/view/wp-slimstat-reports.php:716
5267
  msgid ""
5268
  "Visitors who visited the site by typing the URL directly into their browser. "
5269
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
5274
  "auch auf Besucher beziehen, welche Bookmarks/Favoriten verwendet haben oder "
5275
  "Links in E-Mails bzw. Dokumenten gefolgt sind."
5276
 
5277
+ #: ../../admin/view/wp-slimstat-reports.php:717
5278
  msgid "Direct Pageviews"
5279
  msgstr "Direkte Seitenaufrufe"
5280
 
5281
+ #: ../../admin/view/wp-slimstat-reports.php:718
5282
  msgid ""
5283
  "Visitors who came to your site via searches on Google or some other search "
5284
  "engine."
5286
  "Besucher welche über eine Suche in Suchmaschinen auf die eigene Website "
5287
  "gekommen sind."
5288
 
5289
+ #: ../../admin/view/wp-slimstat-reports.php:719
5290
  msgid "From a search result"
5291
  msgstr "Von einem Suchresultat"
5292
 
5293
+ #: ../../admin/view/wp-slimstat-reports.php:720
5294
  msgid ""
5295
  "The first page that a user views during a session. This is also known as the "
5296
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
5300
  "Die erste Seite welche ein Benutzer w&auml;hrend einer Sitzung besucht, die "
5301
  "s.g. Einstiegs- oder Lande-Seite."
5302
 
5303
+ #: ../../admin/view/wp-slimstat-reports.php:721
5304
  msgid "Unique Landing Pages"
5305
  msgstr "Eindeutige Einstiegs-Seiten"
5306
 
5307
+ #: ../../admin/view/wp-slimstat-reports.php:722
5308
  msgid "Number of single-page visits to your site over the selected period."
5309
  msgstr ""
5310
  "Anzahl der Besucher einer einzelnen Seite über die gew&auml;hlte Periode."
5311
 
5312
+ #: ../../admin/view/wp-slimstat-reports.php:723
5313
  msgid "Bounce Pages"
5314
  msgstr "Absprung-Rate"
5315
 
5316
+ #: ../../admin/view/wp-slimstat-reports.php:725
5317
  #, fuzzy
5318
  msgid "New Visitors Rate"
5319
  msgstr "Neue Besucher"
5320
 
5321
+ #: ../../admin/view/wp-slimstat-reports.php:726
5322
  msgid ""
5323
  "Visitors who visited the site in the last 5 minutes coming from a search "
5324
  "engine."
5326
  "Besucher welche innerhalb der letzten 5 Minuten von einer Suchmaschine "
5327
  "gekommen sind."
5328
 
5329
+ #: ../../admin/view/wp-slimstat-reports.php:727
5330
  msgid "Currently from search engines"
5331
  msgstr "Aktuell von Suchmaschinen"
5332
 
5333
+ #: ../../admin/view/wp-slimstat-reports.php:791
5334
+ msgid "Number of pages in your site included in Google's index."
5335
+ msgstr ""
5336
+
5337
+ #: ../../admin/view/wp-slimstat-reports.php:792
5338
+ msgid "Google Index"
5339
+ msgstr ""
5340
+
5341
+ #: ../../admin/view/wp-slimstat-reports.php:793
5342
+ msgid "Number of pages, according to Google, that link back to your site."
5343
+ msgstr ""
5344
+
5345
+ #: ../../admin/view/wp-slimstat-reports.php:794
5346
+ msgid "Google Backlinks"
5347
+ msgstr ""
5348
+
5349
+ #: ../../admin/view/wp-slimstat-reports.php:795
5350
+ msgid ""
5351
+ "How many times the Facebook Like button has been approximately clicked on "
5352
+ "your site."
5353
+ msgstr ""
5354
+
5355
+ #: ../../admin/view/wp-slimstat-reports.php:796
5356
+ msgid "Facebook Likes"
5357
+ msgstr ""
5358
+
5359
+ #: ../../admin/view/wp-slimstat-reports.php:797
5360
+ msgid ""
5361
+ "How many times your site has been shared by someone on the social network."
5362
+ msgstr ""
5363
+
5364
+ #: ../../admin/view/wp-slimstat-reports.php:798
5365
+ msgid "Facebook Shares"
5366
+ msgstr ""
5367
+
5368
+ #: ../../admin/view/wp-slimstat-reports.php:799
5369
+ msgid "How many times links to your website have been clicked on Facebook."
5370
+ msgstr ""
5371
+
5372
+ #: ../../admin/view/wp-slimstat-reports.php:800
5373
+ #, fuzzy
5374
+ msgid "Facebook Clicks"
5375
+ msgstr "Letzte ausgehende Links"
5376
+
5377
+ #: ../../admin/view/wp-slimstat-reports.php:801
5378
+ msgid ""
5379
+ "Alexa is a subsidiary company of Amazon.com which provides commercial web "
5380
+ "traffic data."
5381
+ msgstr ""
5382
+
5383
+ #: ../../admin/view/wp-slimstat-reports.php:802
5384
+ msgid "Alexa World Rank"
5385
+ msgstr ""
5386
+
5387
+ #: ../../admin/view/wp-slimstat-reports.php:803
5388
+ msgid "Alexa Country Rank"
5389
+ msgstr ""
5390
+
5391
+ #: ../../admin/view/wp-slimstat-reports.php:804
5392
+ msgid "Alexa Popularity"
5393
+ msgstr ""
5394
+
5395
+ #: ../../admin/view/wp-slimstat-reports.php:836
5396
+ msgid ""
5397
+ "This value includes not only posts, but also custom post types, regardless "
5398
+ "of their status"
5399
+ msgstr ""
5400
+
5401
+ #: ../../admin/view/wp-slimstat-reports.php:837
5402
+ #, fuzzy
5403
+ msgid "Content Items"
5404
+ msgstr "Inhalt"
5405
+
5406
+ #: ../../admin/view/wp-slimstat-reports.php:838
5407
+ #, fuzzy
5408
+ msgid "Total Comments"
5409
+ msgstr "Gesamte Zugriffe"
5410
+
5411
+ #: ../../admin/view/wp-slimstat-reports.php:839
5412
+ msgid "Pingbacks"
5413
+ msgstr ""
5414
+
5415
+ #: ../../admin/view/wp-slimstat-reports.php:840
5416
+ msgid "Trackbacks"
5417
+ msgstr ""
5418
+
5419
+ #: ../../admin/view/wp-slimstat-reports.php:841
5420
+ #, fuzzy
5421
+ msgid "Longest Post (ID)"
5422
+ msgstr "L&auml;ngster Besuch"
5423
+
5424
+ #: ../../admin/view/wp-slimstat-reports.php:842
5425
+ msgid "Longest Comment (ID)"
5426
+ msgstr ""
5427
+
5428
+ #: ../../admin/view/wp-slimstat-reports.php:843
5429
+ #, fuzzy
5430
+ msgid "Avg Comments Per Post"
5431
+ msgstr "Spalte bei Beitr&auml;gen hinzuf&uuml;gen"
5432
+
5433
+ #: ../../admin/view/wp-slimstat-reports.php:844
5434
+ msgid "Avg Posts Per Day"
5435
+ msgstr ""
5436
+
5437
+ #: ../../admin/view/wp-slimstat-reports.php:873
5438
  msgid "Visits"
5439
  msgstr "Besuche"
5440
 
5441
+ #: ../../admin/view/wp-slimstat-reports.php:877
5442
  msgid "Domains"
5443
  msgstr "Dom&auml;nen"
5444
 
5445
+ #, fuzzy
5446
+ #~ msgid "Ignore users"
5447
+ #~ msgstr "Bekannte Benutzer"
5448
+
5449
+ #, fuzzy
5450
+ #~ msgid "Users by capability"
5451
+ #~ msgstr "Browser-F&auml;higkeiten"
5452
+
5453
+ #~ msgid ""
5454
+ #~ "Unique sessions initiated by your visitors. If a user is inactive on your "
5455
+ #~ "site for 30 minutes or more, any future activity will be attributed to a "
5456
+ #~ "new session. Users that leave your site and return within 30 minutes will "
5457
+ #~ "be counted as part of the original session."
5458
+ #~ msgstr ""
5459
+ #~ "Eindeutige Sessions er&ouml;ffnet von Besuchern. Wenn ein Benutzer mehr "
5460
+ #~ "als 30 Minuten inkativ ist, wird jede folgende Aktivit&auml;t als neue "
5461
+ #~ "Session gewertet. Benutzer welche die Seite verlassen und innerhalb von "
5462
+ #~ "30 Minuten wiederkehren, werden zur origin&auml;ren Session zugeh&ouml;"
5463
+ #~ "rig gez&auml;hlt."
5464
+
5465
+ #~ msgid "Top Languages - Just Visitors"
5466
+ #~ msgstr "Top Sprachen - nur Besucher"
5467
+
5468
+ #, fuzzy
5469
+ #~ msgid "Top Downloads"
5470
+ #~ msgstr "Letzte Downloads"
5471
+
5472
+ #~ msgid "darwin"
5473
+ #~ msgstr "Darwin"
5474
+
5475
+ #~ msgid "dec alpha"
5476
+ #~ msgstr "DEC Alpha"
5477
+
5478
+ #~ msgid "vax"
5479
+ #~ msgstr "VAX"
5480
+
5481
+ # Aragonese
5482
+ #~ msgid "l-an"
5483
+ #~ msgstr "Aragonese"
5484
+
5485
+ # Chamorro
5486
+ #~ msgid "l-ch"
5487
+ #~ msgstr "Chamorro"
5488
+
5489
+ # Church Slavic; Church Slavonic
5490
+ #~ msgid "l-cu"
5491
+ #~ msgstr "Church Slavic; Church Slavonic"
5492
+
5493
+ # Western Frisian
5494
+ #~ msgid "l-fy"
5495
+ #~ msgstr "Western Frisian"
5496
+
5497
+ # Hiri Motu
5498
+ #~ msgid "l-ho"
5499
+ #~ msgstr "Hiri Motu"
5500
+
5501
+ # Herero
5502
+ #~ msgid "l-hz"
5503
+ #~ msgstr "Herero"
5504
+
5505
+ # Indonesian
5506
+ #~ msgid "l-id"
5507
+ #~ msgstr "Indonesian"
5508
+
5509
+ # Igbo
5510
+ #~ msgid "l-ig"
5511
+ #~ msgstr "Igbo"
5512
+
5513
+ # Inuktitut
5514
+ #~ msgid "l-iu"
5515
+ #~ msgstr "Inuktitut"
5516
+
5517
+ # South Ndebele
5518
+ #~ msgid "l-nr"
5519
+ #~ msgstr "South Ndebele"
5520
+
5521
+ # Sanskrit
5522
+ #~ msgid "l-sa"
5523
+ #~ msgstr "Sanskrit"
5524
+
5525
+ # Twi
5526
+ #~ msgid "l-tw"
5527
+ #~ msgstr "Twi"
5528
+
5529
+ # Walloon
5530
+ #~ msgid "l-wa"
5531
+ #~ msgstr "Walloon"
5532
+
5533
  #, fuzzy
5534
  #~ msgid "Resources"
5535
  #~ msgstr "Top Ressourcen"
5616
  #~ msgid "Click on a day for hourly metrics"
5617
  #~ msgstr "Klick auf einen Tag f&uuml;r Stunden-Auswertung"
5618
 
 
 
 
5619
  #~ msgid "More"
5620
  #~ msgstr "mehr"
5621
 
admin/lang/wp-slimstat-en_US.mo CHANGED
Binary file
admin/lang/wp-slimstat-en_US.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2013-10-16 22:27-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: get used to it <support@getused.to.it>\n"
7
  "Language-Team: camu <info@duechiacchiere.it>\n"
@@ -14,87 +14,87 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: ../..\n"
16
 
17
- #: ../../wp-slimstat.php:1137 ../../admin/wp-slimstat-admin.php:407
18
- #: ../../admin/view/index.php:12 ../../admin/view/wp-slimstat-reports.php:139
19
  msgid "Right Now"
20
  msgstr ""
21
 
22
- #: ../../wp-slimstat.php:1138 ../../admin/wp-slimstat-admin.php:408
23
- #: ../../admin/wp-slimstat-admin.php:425 ../../admin/view/index.php:13
24
  msgid "Overview"
25
  msgstr ""
26
 
27
- #: ../../wp-slimstat.php:1139 ../../admin/wp-slimstat-admin.php:409
28
- #: ../../admin/wp-slimstat-admin.php:426 ../../admin/view/index.php:14
29
  msgid "Visitors"
30
  msgstr ""
31
 
32
- #: ../../wp-slimstat.php:1140 ../../admin/wp-slimstat-admin.php:410
33
- #: ../../admin/wp-slimstat-admin.php:427 ../../admin/view/index.php:15
34
  msgid "Content"
35
  msgstr ""
36
 
37
- #: ../../wp-slimstat.php:1141 ../../admin/wp-slimstat-admin.php:411
38
- #: ../../admin/wp-slimstat-admin.php:428 ../../admin/view/index.php:16
39
- #: ../../admin/view/index.php:311
40
  msgid "Traffic Sources"
41
  msgstr ""
42
 
43
- #: ../../wp-slimstat.php:1142 ../../admin/wp-slimstat-admin.php:412
44
- #: ../../admin/wp-slimstat-admin.php:429 ../../admin/view/index.php:17
45
- #: ../../admin/view/index.php:364
46
  msgid "World Map"
47
  msgstr ""
48
 
49
- #: ../../wp-slimstat.php:1143 ../../admin/wp-slimstat-admin.php:413
50
- #: ../../admin/wp-slimstat-admin.php:430 ../../admin/view/index.php:18
51
  msgid "Custom Reports"
52
  msgstr ""
53
 
54
- #: ../../wp-slimstat.php:1144 ../../admin/wp-slimstat-admin.php:414
55
- #: ../../admin/wp-slimstat-admin.php:431 ../../admin/config/index.php:9
56
  #: ../../admin/config/index.php:208 ../../admin/config/index.php:216
57
  msgid "Add-ons"
58
  msgstr ""
59
 
60
- #: ../../wp-slimstat.php:1147 ../../admin/wp-slimstat-admin.php:462
61
- #: ../../admin/wp-slimstat-admin.php:465 ../../admin/wp-slimstat-admin.php:509
62
- #: ../../admin/wp-slimstat-admin.php:512
63
  msgid "Settings"
64
  msgstr ""
65
 
66
- #: ../../admin/wp-slimstat-admin.php:528
67
  msgid "Stats"
68
  msgstr ""
69
 
70
- #: ../../admin/wp-slimstat-admin.php:561
71
  msgid "Show on screen"
72
  msgstr ""
73
 
74
- #: ../../admin/wp-slimstat-admin.php:605
75
  msgid "There was an error updating the following options:"
76
  msgstr ""
77
 
78
- #: ../../admin/wp-slimstat-admin.php:608
79
  msgid "Your settings have been successfully updated."
80
  msgstr ""
81
 
82
- #: ../../admin/wp-slimstat-admin.php:624
83
  msgid "Save Changes"
84
  msgstr ""
85
 
86
- #: ../../admin/wp-slimstat-admin.php:637 ../../admin/config/maintenance.php:9
87
- #: ../../admin/config/maintenance.php:18
88
  msgid "Yes"
89
  msgstr ""
90
 
91
- #: ../../admin/wp-slimstat-admin.php:638 ../../admin/config/maintenance.php:9
92
- #: ../../admin/config/maintenance.php:18
93
- #: ../../admin/view/wp-slimstat-reports.php:591
94
  msgid "No"
95
  msgstr ""
96
 
97
- #: ../../admin/wp-slimstat-admin.php:675
98
  msgid ""
99
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
100
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -102,48 +102,48 @@ msgid ""
102
  "FAQs</a> for more information."
103
  msgstr ""
104
 
105
- #: ../../admin/wp-slimstat-admin.php:695
106
  msgid "Definitions"
107
  msgstr ""
108
 
109
- #: ../../admin/wp-slimstat-admin.php:698
110
  msgid "Pageview"
111
  msgstr ""
112
 
113
- #: ../../admin/wp-slimstat-admin.php:698
114
  msgid ""
115
  "A request to load a single HTML file (\"page\"). This should be contrasted "
116
  "with a \"hit\", which refers to a request for any file from a web server. WP "
117
  "SlimStat logs a pageview each time the tracking code is executed"
118
  msgstr ""
119
 
120
- #: ../../admin/wp-slimstat-admin.php:699
121
  msgid "(Human) Visit"
122
  msgstr ""
123
 
124
- #: ../../admin/wp-slimstat-admin.php:699
125
  msgid ""
126
  "A period of interaction between a visitor's browser and your website, ending "
127
  "when the browser is closed or when the user has been inactive on that site "
128
  "for 30 minutes"
129
  msgstr ""
130
 
131
- #: ../../admin/wp-slimstat-admin.php:700 ../../admin/view/index.php:139
132
- #: ../../admin/view/index.php:329 ../../admin/view/right-now.php:168
133
  msgid "Known Visitor"
134
  msgstr ""
135
 
136
- #: ../../admin/wp-slimstat-admin.php:700
137
  msgid ""
138
  "Any user who has left a comment on your blog, and is thus identified by "
139
  "Wordpress as a returning visitor"
140
  msgstr ""
141
 
142
- #: ../../admin/wp-slimstat-admin.php:701
143
  msgid "Unique IP"
144
  msgstr ""
145
 
146
- #: ../../admin/wp-slimstat-admin.php:701
147
  msgid ""
148
  "Used to differentiate between multiple requests to download a file from one "
149
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -151,259 +151,260 @@ msgid ""
151
  "from, it is useful, but not perfect"
152
  msgstr ""
153
 
154
- #: ../../admin/wp-slimstat-admin.php:702 ../../admin/wp-slimstat-admin.php:744
155
- #: ../../admin/view/index.php:58 ../../admin/view/right-now.php:90
156
  #: ../../admin/view/wp-slimstat-reports.php:60
157
  msgid "Originating IP"
158
  msgstr ""
159
 
160
- #: ../../admin/wp-slimstat-admin.php:702
161
  msgid ""
162
  "the originating IP address of a client connecting to a web server through an "
163
  "HTTP proxy or load balancer"
164
  msgstr ""
165
 
166
- #: ../../admin/wp-slimstat-admin.php:703
167
  msgid "Direct Traffic"
168
  msgstr ""
169
 
170
- #: ../../admin/wp-slimstat-admin.php:703
171
  msgid ""
172
  "All those people showing up to your Web site by typing in the URL of your "
173
  "Web site coming or from a bookmark; some people also call this \"default "
174
  "traffic\" or \"ambient traffic\""
175
  msgstr ""
176
 
177
- #: ../../admin/wp-slimstat-admin.php:704
178
  msgid "Search Engine"
179
  msgstr ""
180
 
181
- #: ../../admin/wp-slimstat-admin.php:704
182
  msgid ""
183
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
184
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
185
  msgstr ""
186
 
187
- #: ../../admin/wp-slimstat-admin.php:705 ../../admin/wp-slimstat-admin.php:721
188
- #: ../../admin/config/maintenance.php:173 ../../admin/view/index.php:40
189
  #: ../../admin/view/wp-slimstat-reports.php:43
190
  msgid "Search Terms"
191
  msgstr ""
192
 
193
- #: ../../admin/wp-slimstat-admin.php:705 ../../admin/wp-slimstat-admin.php:721
194
- #: ../../admin/view/index.php:142 ../../admin/view/index.php:332
195
  msgid "Keywords used by your visitors to find your website on a search engine"
196
  msgstr ""
197
 
198
- #: ../../admin/wp-slimstat-admin.php:706
199
  msgid "SERP"
200
  msgstr ""
201
 
202
- #: ../../admin/wp-slimstat-admin.php:706
203
  msgid ""
204
  "Short for search engine results page, the Web page that a search engine "
205
  "returns with the results of its search. The value shown represents your rank "
206
  "(or position) within that list of results"
207
  msgstr ""
208
 
209
- #: ../../admin/wp-slimstat-admin.php:707 ../../admin/view/index.php:51
 
210
  #: ../../admin/view/wp-slimstat-reports.php:53
211
  msgid "User Agent"
212
  msgstr ""
213
 
214
- #: ../../admin/wp-slimstat-admin.php:707
215
  msgid ""
216
  "Any program used for accessing a website; this includes browsers, robots, "
217
  "spiders and any other program that was used to retrieve information from the "
218
  "site"
219
  msgstr ""
220
 
221
- #: ../../admin/wp-slimstat-admin.php:708 ../../admin/view/index.php:55
222
  #: ../../admin/view/wp-slimstat-reports.php:57
223
  msgid "Outbound Link"
224
  msgstr ""
225
 
226
- #: ../../admin/wp-slimstat-admin.php:708
227
  msgid ""
228
  "A link from one domain to another is said to be outbound from its source "
229
  "anchor and inbound to its target. This report lists all the links to other "
230
  "websites followed by your visitors."
231
  msgstr ""
232
 
233
- #: ../../admin/wp-slimstat-admin.php:715
234
  msgid "Basic Filters"
235
  msgstr ""
236
 
237
- #: ../../admin/wp-slimstat-admin.php:718 ../../admin/view/index.php:37
238
  #: ../../admin/view/right-now.php:98
239
  #: ../../admin/view/wp-slimstat-reports.php:40
240
  msgid "Browser"
241
  msgstr ""
242
 
243
- #: ../../admin/wp-slimstat-admin.php:718
244
  msgid "User agent (Firefox, Chrome, ...)"
245
  msgstr ""
246
 
247
- #: ../../admin/wp-slimstat-admin.php:719
248
- #: ../../admin/config/maintenance.php:169 ../../admin/view/index.php:38
249
  #: ../../admin/view/wp-slimstat-reports.php:41
250
- #: ../../admin/view/wp-slimstat-reports.php:408
251
  msgid "Country Code"
252
  msgstr ""
253
 
254
- #: ../../admin/wp-slimstat-admin.php:719
255
  msgid "2-letter code (us, ru, de, it, ...)"
256
  msgstr ""
257
 
258
- #: ../../admin/wp-slimstat-admin.php:720 ../../admin/view/index.php:39
259
  #: ../../admin/view/wp-slimstat-reports.php:42
260
  msgid "IP"
261
  msgstr ""
262
 
263
- #: ../../admin/wp-slimstat-admin.php:720
264
  msgid "Visitor's public IP address"
265
  msgstr ""
266
 
267
- #: ../../admin/wp-slimstat-admin.php:722
268
- #: ../../admin/config/maintenance.php:171 ../../admin/view/index.php:41
269
  #: ../../admin/view/wp-slimstat-reports.php:44
270
- #: ../../admin/view/wp-slimstat-reports.php:420
271
  msgid "Language Code"
272
  msgstr ""
273
 
274
- #: ../../admin/wp-slimstat-admin.php:722
275
  msgid ""
276
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
277
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
278
  "column) for more information"
279
  msgstr ""
280
 
281
- #: ../../admin/wp-slimstat-admin.php:723 ../../admin/view/index.php:42
282
  #: ../../admin/view/wp-slimstat-reports.php:45
283
  msgid "Operating System"
284
  msgstr ""
285
 
286
- #: ../../admin/wp-slimstat-admin.php:723
287
  msgid ""
288
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
289
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
290
  "manual page</a> for more information"
291
  msgstr ""
292
 
293
- #: ../../admin/wp-slimstat-admin.php:724
294
- #: ../../admin/config/maintenance.php:172 ../../admin/view/index.php:43
295
  #: ../../admin/view/wp-slimstat-reports.php:46
296
  msgid "Permalink"
297
  msgstr ""
298
 
299
- #: ../../admin/wp-slimstat-admin.php:724
300
  msgid "URL accessed on your site"
301
  msgstr ""
302
 
303
- #: ../../admin/wp-slimstat-admin.php:725 ../../admin/view/index.php:44
304
  #: ../../admin/view/wp-slimstat-reports.php:48
305
  msgid "Referer"
306
  msgstr ""
307
 
308
- #: ../../admin/wp-slimstat-admin.php:725
309
  msgid "Complete address of the referrer page"
310
  msgstr ""
311
 
312
- #: ../../admin/wp-slimstat-admin.php:726 ../../admin/view/index.php:45
313
  #: ../../admin/view/wp-slimstat-reports.php:49
314
  msgid "Visitor's Name"
315
  msgstr ""
316
 
317
- #: ../../admin/wp-slimstat-admin.php:726
318
  msgid ""
319
  "Visitors' names according to the cookie set by Wordpress after they leave a "
320
  "comment"
321
  msgstr ""
322
 
323
- #: ../../admin/wp-slimstat-admin.php:734
324
  msgid "Advanced Filters"
325
  msgstr ""
326
 
327
- #: ../../admin/wp-slimstat-admin.php:737 ../../admin/view/index.php:49
328
  #: ../../admin/view/wp-slimstat-reports.php:51
329
  msgid "Browser Version"
330
  msgstr ""
331
 
332
- #: ../../admin/wp-slimstat-admin.php:737
333
  msgid "user agent version (9.0, 11, ...)"
334
  msgstr ""
335
 
336
- #: ../../admin/wp-slimstat-admin.php:738 ../../admin/view/index.php:50
337
  #: ../../admin/view/wp-slimstat-reports.php:52
338
  msgid "Browser Type"
339
  msgstr ""
340
 
341
- #: ../../admin/wp-slimstat-admin.php:738
342
  msgid ""
343
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
344
  "all others"
345
  msgstr ""
346
 
347
- #: ../../admin/wp-slimstat-admin.php:739 ../../admin/view/index.php:52
348
  #: ../../admin/view/wp-slimstat-reports.php:54
349
  msgid "Color Depth"
350
  msgstr ""
351
 
352
- #: ../../admin/wp-slimstat-admin.php:739
353
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
354
  msgstr ""
355
 
356
- #: ../../admin/wp-slimstat-admin.php:740 ../../admin/view/index.php:53
357
  #: ../../admin/view/wp-slimstat-reports.php:55
358
  msgid "CSS Version"
359
  msgstr ""
360
 
361
- #: ../../admin/wp-slimstat-admin.php:740
362
  msgid ""
363
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
364
  "values)"
365
  msgstr ""
366
 
367
- #: ../../admin/wp-slimstat-admin.php:741 ../../admin/view/index.php:54
368
  #: ../../admin/view/wp-slimstat-reports.php:56
369
  msgid "Pageview Attributes"
370
  msgstr ""
371
 
372
- #: ../../admin/wp-slimstat-admin.php:741
373
  msgid ""
374
  "this field is set to <em>[pre]</em> if the resource has been accessed "
375
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
376
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
377
  msgstr ""
378
 
379
- #: ../../admin/wp-slimstat-admin.php:742 ../../admin/view/index.php:56
380
  #: ../../admin/view/wp-slimstat-reports.php:58
381
  msgid "Post Author"
382
  msgstr ""
383
 
384
- #: ../../admin/wp-slimstat-admin.php:742
385
  msgid "author associated to that post/page when the resource was accessed"
386
  msgstr ""
387
 
388
- #: ../../admin/wp-slimstat-admin.php:743 ../../admin/view/index.php:57
389
  #: ../../admin/view/wp-slimstat-reports.php:59
390
  msgid "Post Category ID"
391
  msgstr ""
392
 
393
- #: ../../admin/wp-slimstat-admin.php:743
394
  msgid "ID of the category/term associated to the resource, when available"
395
  msgstr ""
396
 
397
- #: ../../admin/wp-slimstat-admin.php:744
398
  msgid "visitor's originating IP address, if available"
399
  msgstr ""
400
 
401
- #: ../../admin/wp-slimstat-admin.php:745 ../../admin/view/index.php:59
402
  #: ../../admin/view/wp-slimstat-reports.php:61
403
  msgid "Resource Content Type"
404
  msgstr ""
405
 
406
- #: ../../admin/wp-slimstat-admin.php:745
407
  msgid ""
408
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
409
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -412,53 +413,53 @@ msgid ""
412
  "information"
413
  msgstr ""
414
 
415
- #: ../../admin/wp-slimstat-admin.php:746 ../../admin/view/index.php:61
416
  #: ../../admin/view/wp-slimstat-reports.php:63
417
  msgid "Screen Resolution"
418
  msgstr ""
419
 
420
- #: ../../admin/wp-slimstat-admin.php:746
421
  msgid "viewport width and height (1024x768, 800x600, ...)"
422
  msgstr ""
423
 
424
- #: ../../admin/wp-slimstat-admin.php:747 ../../admin/view/index.php:62
425
  #: ../../admin/view/wp-slimstat-reports.php:64
426
  msgid "Visit ID"
427
  msgstr ""
428
 
429
- #: ../../admin/wp-slimstat-admin.php:747
430
  msgid ""
431
  "generally used in conjunction with <em>is not empty</em>, identifies human "
432
  "visitors"
433
  msgstr ""
434
 
435
- #: ../../admin/wp-slimstat-admin.php:748
436
  msgid "Date Filters"
437
  msgstr ""
438
 
439
- #: ../../admin/wp-slimstat-admin.php:748
440
  msgid ""
441
  "you can specify the timeframe by entering a number in the <em>interval</em> "
442
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
443
  "year=blank, interval=-1 will set a year-to-date filter)"
444
  msgstr ""
445
 
446
- #: ../../admin/wp-slimstat-admin.php:749
447
  msgid "SERP Position"
448
  msgstr ""
449
 
450
- #: ../../admin/wp-slimstat-admin.php:749
451
  msgid ""
452
  "set the filter to Referer contains cd=N&, where N is the position you are "
453
  "looking for"
454
  msgstr ""
455
 
456
- #: ../../admin/wp-slimstat-admin.php:765 ../../admin/config/index.php:9
457
  #: ../../admin/config/index.php:205
458
  msgid "Support"
459
  msgstr ""
460
 
461
- #: ../../admin/wp-slimstat-admin.php:774
462
  msgid ""
463
  "<a href=\"http://slimstat.getused.to.it/\">WP SlimStat</a> is and will "
464
  "always be free, but consider supporting the author if this plugin helped you "
@@ -544,7 +545,7 @@ msgid ""
544
  msgstr ""
545
 
546
  #: ../../admin/config/index.php:21
547
- #: ../../admin/view/wp-slimstat-reports.php:589
548
  msgid "Javascript Mode"
549
  msgstr ""
550
 
@@ -576,9 +577,9 @@ msgstr ""
576
  msgid "Entries recorded on or before %s will be permanently deleted."
577
  msgstr ""
578
 
579
- #: ../../admin/config/index.php:22 ../../admin/view/index.php:31
580
- #: ../../admin/view/index.php:106 ../../admin/view/wp-slimstat-reports.php:69
581
- #: ../../admin/view/wp-slimstat-reports.php:591
582
  msgid "days"
583
  msgstr ""
584
 
@@ -850,18 +851,10 @@ msgid ""
850
  "will not be tracked. Capabilities are case-insensitive."
851
  msgstr ""
852
 
853
- #: ../../admin/config/index.php:79
854
- msgid "Ignore users"
855
- msgstr ""
856
-
857
  #: ../../admin/config/index.php:82
858
  msgid "Ignore users (username not found)"
859
  msgstr ""
860
 
861
- #: ../../admin/config/index.php:102
862
- msgid "Users by capability"
863
- msgstr ""
864
-
865
  #: ../../admin/config/index.php:105
866
  msgid ""
867
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
@@ -892,7 +885,7 @@ msgid ""
892
  "case, the list has precedence over the capability."
893
  msgstr ""
894
 
895
- #: ../../admin/config/index.php:117 ../../admin/config/index.php:177
896
  msgid "Capability to Admin"
897
  msgstr ""
898
 
@@ -904,7 +897,7 @@ msgid ""
904
  "here below can be used to override this option for specific users."
905
  msgstr ""
906
 
907
- #: ../../admin/config/index.php:118 ../../admin/config/index.php:133
908
  msgid "Read access"
909
  msgstr ""
910
 
@@ -916,7 +909,7 @@ msgid ""
916
  "Usernames are case sensitive."
917
  msgstr ""
918
 
919
- #: ../../admin/config/index.php:119 ../../admin/config/index.php:164
920
  msgid "Config access"
921
  msgstr ""
922
 
@@ -934,10 +927,6 @@ msgstr ""
934
  msgid "Read access: username not found"
935
  msgstr ""
936
 
937
- #: ../../admin/config/index.php:146
938
- msgid "Capability to Read"
939
- msgstr ""
940
-
941
  #: ../../admin/config/index.php:149 ../../admin/config/index.php:180
942
  msgid ""
943
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
@@ -1056,191 +1045,215 @@ msgid ""
1056
  msgstr ""
1057
 
1058
  #: ../../admin/config/index.php:199
1059
- msgid "Enable ADN"
1060
  msgstr ""
1061
 
1062
  #: ../../admin/config/index.php:199
1063
  msgid ""
1064
- "Activates our partner's sponsorship network. It allows us to keep this "
1065
- "plugin free and offer premium functionality at no added cost to you."
 
 
1066
  msgstr ""
1067
 
1068
- #: ../../admin/config/maintenance.php:9
1069
  msgid ""
1070
  "Are you sure you want to remove all the information about your hits and "
1071
  "visits?"
1072
  msgstr ""
1073
 
1074
- #: ../../admin/config/maintenance.php:13
1075
  msgid "Your WP SlimStat table has been successfully emptied."
1076
  msgstr ""
1077
 
1078
- #: ../../admin/config/maintenance.php:18
1079
  msgid "Are you sure you want to reset your tabs?"
1080
  msgstr ""
1081
 
1082
- #: ../../admin/config/maintenance.php:24
1083
  msgid "Your WP SlimStat tabs have been successfully reset."
1084
  msgstr ""
1085
 
1086
- #: ../../admin/config/maintenance.php:32
1087
  msgid "Your WP SlimStat table has been successfully reset."
1088
  msgstr ""
1089
 
1090
- #: ../../admin/config/maintenance.php:34
1091
  msgid "ERROR: Your Slimstat table could not be initialized."
1092
  msgstr ""
1093
 
1094
- #: ../../admin/config/maintenance.php:43
1095
  msgid "Your WP SlimStat table has been successfully optimized."
1096
  msgstr ""
1097
 
1098
- #: ../../admin/config/maintenance.php:55
1099
  msgid "Your WP SlimStat tables have been successfully converted to InnoDB."
1100
  msgstr ""
1101
 
1102
- #: ../../admin/config/maintenance.php:64
1103
  msgid "Your WP SlimStat indexes have been successfully created."
1104
  msgstr ""
1105
 
1106
- #: ../../admin/config/maintenance.php:72
1107
  msgid "Your WP SlimStat indexes have been successfully removed."
1108
  msgstr ""
1109
 
1110
- #: ../../admin/config/maintenance.php:113
1111
  msgid "Your WP SlimStat table has been successfully cleaned. Rows affected:"
1112
  msgstr ""
1113
 
1114
- #: ../../admin/config/maintenance.php:130
1115
  msgid "Database Information"
1116
  msgstr ""
1117
 
1118
- #: ../../admin/config/maintenance.php:131
1119
  msgid "Engine"
1120
  msgstr ""
1121
 
1122
- #: ../../admin/config/maintenance.php:133
1123
  msgid ", it may take some time and exceed PHP's maximum execution time"
1124
  msgstr ""
1125
 
1126
- #: ../../admin/config/maintenance.php:134
1127
  msgid "switch to InnoDB"
1128
  msgstr ""
1129
 
1130
- #: ../../admin/config/maintenance.php:154
1131
  msgid "Size"
1132
  msgstr ""
1133
 
1134
- #: ../../admin/config/maintenance.php:154
1135
  msgid "Records"
1136
  msgstr ""
1137
 
1138
- #: ../../admin/config/maintenance.php:154
1139
  msgid "Average Record Length"
1140
  msgstr ""
1141
 
1142
- #: ../../admin/config/maintenance.php:154
1143
  msgid "Created on"
1144
  msgstr ""
1145
 
1146
- #: ../../admin/config/maintenance.php:156
1147
  msgid "Approximate Overhead"
1148
  msgstr ""
1149
 
1150
- #: ../../admin/config/maintenance.php:160
1151
  msgid "Optimize tables"
1152
  msgstr ""
1153
 
1154
- #: ../../admin/config/maintenance.php:164
1155
  msgid "Purge Data"
1156
  msgstr ""
1157
 
1158
- #: ../../admin/config/maintenance.php:167
1159
  msgid "Delete rows where"
1160
  msgstr ""
1161
 
1162
- #: ../../admin/config/maintenance.php:170
1163
  msgid "IP Address"
1164
  msgstr ""
1165
 
1166
- #: ../../admin/config/maintenance.php:176
1167
  msgid "Is equal to"
1168
  msgstr ""
1169
 
1170
- #: ../../admin/config/maintenance.php:177
1171
  msgid "Contains"
1172
  msgstr ""
1173
 
1174
- #: ../../admin/config/maintenance.php:178
1175
  msgid "Does not contain"
1176
  msgstr ""
1177
 
1178
- #: ../../admin/config/maintenance.php:179
1179
  msgid "Starts with"
1180
  msgstr ""
1181
 
1182
- #: ../../admin/config/maintenance.php:180
1183
  msgid "Ends with"
1184
  msgstr ""
1185
 
1186
- #: ../../admin/config/maintenance.php:181
1187
  msgid "Does not start with"
1188
  msgstr ""
1189
 
1190
- #: ../../admin/config/maintenance.php:182
1191
  msgid "Does not end with"
1192
  msgstr ""
1193
 
1194
- #: ../../admin/config/maintenance.php:186
1195
  msgid "DELETE"
1196
  msgstr ""
1197
 
1198
- #: ../../admin/config/maintenance.php:187
1199
  msgid ""
1200
  "Are you sure you want to PERMANENTLY delete these rows from your database?"
1201
  msgstr ""
1202
 
1203
- #: ../../admin/config/maintenance.php:194
1204
  msgid "Activate Indexes"
1205
  msgstr ""
1206
 
1207
- #: ../../admin/config/maintenance.php:195
1208
  msgid ""
1209
  "Use this feature if you want to improve the overall performance of your "
1210
  "stats. You will need about 30% more DB space, to store the extra information "
1211
  "required."
1212
  msgstr ""
1213
 
1214
- #: ../../admin/config/maintenance.php:199
1215
  msgid "Remove Indexes"
1216
  msgstr ""
1217
 
1218
- #: ../../admin/config/maintenance.php:200
1219
  msgid ""
1220
  "Use this feature if you want to save some DB space, while slightly degrading "
1221
  "WP SlimStat overall performances."
1222
  msgstr ""
1223
 
1224
- #: ../../admin/config/maintenance.php:204
1225
  msgid "Reset Tabs"
1226
  msgstr ""
1227
 
1228
- #: ../../admin/config/maintenance.php:205
1229
  msgid ""
1230
  "Reset SlimStat's box order settings if one or more tabs are empty (no "
1231
  "reports shown) or metrics are missing."
1232
  msgstr ""
1233
 
1234
- #: ../../admin/config/maintenance.php:208
1235
  msgid "Reset Stats"
1236
  msgstr ""
1237
 
1238
- #: ../../admin/config/maintenance.php:209
1239
  msgid ""
1240
  "Select this option if you want to empty your WP SlimStat database (does not "
1241
  "reset your settings)."
1242
  msgstr ""
1243
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1244
  #: ../../admin/config/support.php:22
1245
  msgid ""
1246
  "How valuable is monitoring your visitors for your site? WP SlimStat is and "
@@ -1291,23 +1304,23 @@ msgstr ""
1291
 
1292
  #: ../../admin/lang/dynamic_strings.php:3
1293
  msgid "xx"
1294
- msgstr "xx"
1295
 
1296
  #: ../../admin/lang/dynamic_strings.php:4
1297
  msgid "unknown"
1298
  msgstr "Unknown"
1299
 
1300
  #: ../../admin/lang/dynamic_strings.php:5
1301
- msgid "win7"
1302
- msgstr "Windows 7"
1303
 
1304
  #: ../../admin/lang/dynamic_strings.php:6
1305
  msgid "win8"
1306
  msgstr "Windows 8"
1307
 
1308
  #: ../../admin/lang/dynamic_strings.php:7
1309
- msgid "winphone7"
1310
- msgstr "Windows Phone"
1311
 
1312
  #: ../../admin/lang/dynamic_strings.php:8
1313
  msgid "winvista"
@@ -1406,2932 +1419,2531 @@ msgid "cygwin"
1406
  msgstr "Cygwin"
1407
 
1408
  #: ../../admin/lang/dynamic_strings.php:32
1409
- msgid "darwin"
1410
- msgstr "Darwin"
1411
-
1412
- #: ../../admin/lang/dynamic_strings.php:33
1413
  msgid "digital unix"
1414
  msgstr "Digital Unix"
1415
 
1416
- #: ../../admin/lang/dynamic_strings.php:34
1417
  msgid "risc os"
1418
  msgstr "Risc OS"
1419
 
1420
- #: ../../admin/lang/dynamic_strings.php:35
1421
- msgid "dec alpha"
1422
- msgstr "DEC Alpha"
1423
-
1424
- #: ../../admin/lang/dynamic_strings.php:36
1425
- msgid "vax"
1426
- msgstr "VAX"
1427
-
1428
- #: ../../admin/lang/dynamic_strings.php:37
1429
  msgid "openvms"
1430
  msgstr "OpenVMS"
1431
 
1432
- #: ../../admin/lang/dynamic_strings.php:38
1433
  msgid "linux"
1434
  msgstr "Linux"
1435
 
1436
- #: ../../admin/lang/dynamic_strings.php:39
1437
  msgid "freebsd"
1438
  msgstr "FreeBSD"
1439
 
1440
- #: ../../admin/lang/dynamic_strings.php:40
1441
  msgid "openbsd"
1442
  msgstr "OpenBSD"
1443
 
1444
- #: ../../admin/lang/dynamic_strings.php:41
1445
  msgid "netbsd"
1446
  msgstr "NetBSD"
1447
 
1448
- #: ../../admin/lang/dynamic_strings.php:42
1449
  msgid "debian"
1450
  msgstr "Debian"
1451
 
1452
- #: ../../admin/lang/dynamic_strings.php:43
1453
  msgid "amiga"
1454
  msgstr "Amiga"
1455
 
1456
- #: ../../admin/lang/dynamic_strings.php:44
1457
  msgid "android"
1458
  msgstr "Android"
1459
 
1460
- #: ../../admin/lang/dynamic_strings.php:45
1461
  msgid "wyderos"
1462
  msgstr "WyderOS"
1463
 
1464
- #: ../../admin/lang/dynamic_strings.php:46
1465
  msgid "iphone osx"
1466
  msgstr "iPhone OS X"
1467
 
1468
- #: ../../admin/lang/dynamic_strings.php:47
1469
  msgid "ios"
1470
  msgstr "iPhone OS X"
1471
 
1472
- #: ../../admin/lang/dynamic_strings.php:48
1473
  msgid "palm"
1474
  msgstr "Palm"
1475
 
1476
- #: ../../admin/lang/dynamic_strings.php:49
1477
  msgid "wap"
1478
  msgstr "WAP"
1479
 
1480
- #: ../../admin/lang/dynamic_strings.php:50
1481
  msgid "java"
1482
  msgstr "Java"
1483
 
1484
- #: ../../admin/lang/dynamic_strings.php:51
 
 
 
 
1485
  msgid "wince"
1486
  msgstr "Windows CE"
1487
 
1488
- #: ../../admin/lang/dynamic_strings.php:52
1489
  msgid "symbianos"
1490
  msgstr "Symbian OS"
1491
 
1492
- #: ../../admin/lang/dynamic_strings.php:53
1493
  msgid "blackberry os"
1494
  msgstr "BlackBerry OS"
1495
 
1496
- #: ../../admin/lang/dynamic_strings.php:54
1497
  msgid "webos"
1498
  msgstr "WebOS"
1499
 
1500
- #: ../../admin/lang/dynamic_strings.php:55
1501
  msgid "p-and"
1502
  msgstr "Android"
1503
 
1504
- #: ../../admin/lang/dynamic_strings.php:56
1505
  msgid "p-bla"
1506
  msgstr "BlackBerry"
1507
 
1508
- #: ../../admin/lang/dynamic_strings.php:57
1509
  msgid "p-chr"
1510
  msgstr "Chrome OS"
1511
 
1512
- #: ../../admin/lang/dynamic_strings.php:58
1513
  msgid "p-fre"
1514
  msgstr "Linux FreeBSD"
1515
 
1516
- #: ../../admin/lang/dynamic_strings.php:59
1517
  msgid "p-ios"
1518
  msgstr "Apple iOS"
1519
 
1520
- #: ../../admin/lang/dynamic_strings.php:60
1521
  msgid "p-jav"
1522
  msgstr "Java-based OS"
1523
 
1524
- #: ../../admin/lang/dynamic_strings.php:61
1525
  msgid "p-lin"
1526
  msgstr "Linux"
1527
 
1528
- #: ../../admin/lang/dynamic_strings.php:62
1529
  msgid "p-mac"
1530
  msgstr "Apple"
1531
 
1532
- #: ../../admin/lang/dynamic_strings.php:63
1533
  msgid "p-sym"
1534
  msgstr "Symbian OS"
1535
 
1536
- #: ../../admin/lang/dynamic_strings.php:64
1537
  msgid "p-unk"
1538
  msgstr "Unknown"
1539
 
1540
- #: ../../admin/lang/dynamic_strings.php:65
1541
  msgid "p-win"
1542
  msgstr "Microsoft"
1543
 
1544
- #: ../../admin/lang/dynamic_strings.php:66
1545
  msgid "powertv"
1546
  msgstr "PowerTV"
1547
 
1548
- #: ../../admin/lang/dynamic_strings.php:67
1549
  msgid "acrobat"
1550
  msgstr "Acrobat Reader"
1551
 
1552
- #: ../../admin/lang/dynamic_strings.php:68
1553
  msgid "director"
1554
  msgstr "Macromedia Director"
1555
 
1556
- #: ../../admin/lang/dynamic_strings.php:69
1557
  msgid "flash"
1558
  msgstr "Adobe Flash Player"
1559
 
1560
- #: ../../admin/lang/dynamic_strings.php:70
1561
  msgid "mediaplayer"
1562
  msgstr "Microsoft Media Player"
1563
 
1564
- #: ../../admin/lang/dynamic_strings.php:71
1565
  msgid "quicktime"
1566
  msgstr "QuickTime"
1567
 
1568
- #: ../../admin/lang/dynamic_strings.php:72
1569
  msgid "real"
1570
  msgstr "Real Player"
1571
 
1572
- #: ../../admin/lang/dynamic_strings.php:73
1573
  msgid "silverlight"
1574
  msgstr "Microsoft Silverlight"
1575
 
1576
- # Afar
 
 
 
 
 
 
 
 
 
 
1577
  #: ../../admin/lang/dynamic_strings.php:74
1578
- msgid "l-aa"
1579
- msgstr "Afar"
1580
 
1581
- # Abkhazian
1582
  #: ../../admin/lang/dynamic_strings.php:75
1583
- msgid "l-ab"
1584
- msgstr "Abkhazian"
1585
 
1586
- # Avestan
1587
  #: ../../admin/lang/dynamic_strings.php:76
1588
- msgid "l-ae"
1589
- msgstr "Avestan"
1590
 
1591
- # Afrikaans
1592
  #: ../../admin/lang/dynamic_strings.php:77
1593
- msgid "l-af"
1594
- msgstr "Afrikaans"
1595
 
1596
- # Akan
1597
  #: ../../admin/lang/dynamic_strings.php:78
1598
- msgid "l-ak"
1599
- msgstr "Akan"
1600
 
1601
- # Amharic
1602
  #: ../../admin/lang/dynamic_strings.php:79
1603
- msgid "l-am"
1604
- msgstr "Amharic"
1605
 
1606
- # Aragonese
1607
  #: ../../admin/lang/dynamic_strings.php:80
1608
- msgid "l-an"
1609
- msgstr "Aragonese"
1610
 
1611
  # Arabic
1612
  #: ../../admin/lang/dynamic_strings.php:81
1613
- msgid "l-ar"
1614
- msgstr "Arabic"
1615
 
1616
- # Assamese
1617
  #: ../../admin/lang/dynamic_strings.php:82
1618
- msgid "l-as"
1619
- msgstr "Assamese"
1620
 
1621
- # Avaric
1622
  #: ../../admin/lang/dynamic_strings.php:83
1623
- msgid "l-av"
1624
- msgstr "Avaric"
1625
 
1626
- # Aymara
1627
  #: ../../admin/lang/dynamic_strings.php:84
1628
- msgid "l-ay"
1629
- msgstr "Aymara"
1630
 
1631
- # Azerbaijani
1632
  #: ../../admin/lang/dynamic_strings.php:85
1633
- msgid "l-az"
1634
- msgstr "Azerbaijani"
1635
 
1636
- # Bashkir
1637
  #: ../../admin/lang/dynamic_strings.php:86
1638
- msgid "l-ba"
1639
- msgstr "Bashkir"
1640
 
1641
- # Belarusian
1642
  #: ../../admin/lang/dynamic_strings.php:87
1643
- msgid "l-be"
1644
- msgstr "Belarusian"
1645
 
1646
- # Bulgarian
1647
  #: ../../admin/lang/dynamic_strings.php:88
1648
- msgid "l-bg"
1649
- msgstr "Bulgarian"
1650
 
1651
- # Bihari languages
1652
  #: ../../admin/lang/dynamic_strings.php:89
1653
- msgid "l-bh"
1654
- msgstr "Bihari languages"
1655
 
1656
- # Bislama
1657
  #: ../../admin/lang/dynamic_strings.php:90
1658
- msgid "l-bi"
1659
- msgstr "Bislama"
1660
 
1661
- # Bambara
1662
  #: ../../admin/lang/dynamic_strings.php:91
1663
- msgid "l-bm"
1664
- msgstr "Bambara"
1665
 
1666
- # Bengali
1667
  #: ../../admin/lang/dynamic_strings.php:92
1668
- msgid "l-bn"
1669
- msgstr "Bengali"
1670
-
1671
- # Tibetan
1672
  #: ../../admin/lang/dynamic_strings.php:93
1673
- msgid "l-bo"
1674
- msgstr "Tibetan"
1675
 
1676
- # Breton
1677
  #: ../../admin/lang/dynamic_strings.php:94
1678
- msgid "l-br"
1679
- msgstr "Breton"
1680
 
1681
- # Bosnian
1682
  #: ../../admin/lang/dynamic_strings.php:95
1683
- msgid "l-bs"
1684
- msgstr "Bosnian"
1685
 
1686
- # Catalan; Valencian
1687
  #: ../../admin/lang/dynamic_strings.php:96
1688
- msgid "l-ca"
1689
- msgstr "Catalan; Valencian"
1690
 
1691
- # Chechen
1692
  #: ../../admin/lang/dynamic_strings.php:97
1693
- msgid "l-ce"
1694
- msgstr "Chechen"
1695
 
1696
- # Chamorro
1697
  #: ../../admin/lang/dynamic_strings.php:98
1698
- msgid "l-ch"
1699
- msgstr "Chamorro"
1700
 
1701
- # Corsican
1702
  #: ../../admin/lang/dynamic_strings.php:99
1703
- msgid "l-co"
1704
- msgstr "Corsican"
1705
 
1706
- # Cree
1707
  #: ../../admin/lang/dynamic_strings.php:100
1708
- msgid "l-cr"
1709
- msgstr "Cree"
1710
 
1711
  # Czech
1712
  #: ../../admin/lang/dynamic_strings.php:101
1713
  msgid "l-cs"
1714
  msgstr "Czech"
1715
 
1716
- # Church Slavic; Church Slavonic
1717
  #: ../../admin/lang/dynamic_strings.php:102
1718
- msgid "l-cu"
1719
- msgstr "Church Slavic; Church Slavonic"
1720
 
1721
- # Chuvash
1722
  #: ../../admin/lang/dynamic_strings.php:103
1723
- msgid "l-cv"
1724
- msgstr "Chuvash"
1725
 
1726
  # Welsh
1727
  #: ../../admin/lang/dynamic_strings.php:104
1728
- msgid "l-cy"
1729
- msgstr "Welsh"
1730
 
1731
  # Danish
1732
  #: ../../admin/lang/dynamic_strings.php:105
1733
  msgid "l-da"
1734
  msgstr "Danish"
1735
 
1736
- # German
1737
  #: ../../admin/lang/dynamic_strings.php:106
 
 
 
 
 
1738
  msgid "l-de"
1739
  msgstr "German"
1740
 
1741
- # Dhivehi; Divehi; Maldivian
1742
- #: ../../admin/lang/dynamic_strings.php:107
1743
- msgid "l-dv"
1744
- msgstr "Dhivehi; Divehi; Maldivian"
1745
-
1746
- # Dzongkha
1747
  #: ../../admin/lang/dynamic_strings.php:108
1748
- msgid "l-dz"
1749
- msgstr "Dzongkha"
1750
 
1751
- # Ewe
1752
  #: ../../admin/lang/dynamic_strings.php:109
1753
- msgid "l-ee"
1754
- msgstr "Ewe"
1755
 
1756
- # Modern Greek (1453-)
1757
  #: ../../admin/lang/dynamic_strings.php:110
1758
- msgid "l-el"
1759
- msgstr "Modern Greek (1453-)"
1760
 
1761
- # English
1762
  #: ../../admin/lang/dynamic_strings.php:111
1763
- msgid "l-en"
1764
- msgstr "English"
1765
 
1766
- # Esperanto
1767
  #: ../../admin/lang/dynamic_strings.php:112
1768
- msgid "l-eo"
1769
- msgstr "Esperanto"
1770
 
1771
- # Spanish; Castilian
1772
  #: ../../admin/lang/dynamic_strings.php:113
1773
- msgid "l-es"
1774
- msgstr "Spanish; Castilian"
1775
 
1776
- # Estonian
1777
  #: ../../admin/lang/dynamic_strings.php:114
1778
- msgid "l-et"
1779
- msgstr "Estonian"
1780
 
1781
- # Basque
1782
  #: ../../admin/lang/dynamic_strings.php:115
1783
- msgid "l-eu"
1784
- msgstr "Basque"
1785
 
1786
- # Persian
1787
  #: ../../admin/lang/dynamic_strings.php:116
1788
- msgid "l-fa"
1789
- msgstr "Persian"
1790
 
1791
- # Fulah
1792
  #: ../../admin/lang/dynamic_strings.php:117
1793
- msgid "l-ff"
1794
- msgstr "Fulah"
1795
 
1796
- # Finnish
1797
  #: ../../admin/lang/dynamic_strings.php:118
1798
- msgid "l-fi"
1799
- msgstr "Finnish"
1800
 
1801
- # Fijian
1802
  #: ../../admin/lang/dynamic_strings.php:119
1803
- msgid "l-fj"
1804
- msgstr "Fijian"
1805
 
1806
- # Faroese
1807
  #: ../../admin/lang/dynamic_strings.php:120
1808
- msgid "l-fo"
1809
- msgstr "Faroese"
1810
 
1811
- # French
1812
  #: ../../admin/lang/dynamic_strings.php:121
1813
- msgid "l-fr"
1814
- msgstr "French"
1815
 
1816
- # Western Frisian
1817
  #: ../../admin/lang/dynamic_strings.php:122
1818
- msgid "l-fy"
1819
- msgstr "Western Frisian"
1820
 
1821
- # Irish
1822
  #: ../../admin/lang/dynamic_strings.php:123
1823
- msgid "l-ga"
1824
- msgstr "Irish"
1825
 
1826
- # Scottish Gaelic; Gaelic
1827
  #: ../../admin/lang/dynamic_strings.php:124
1828
- msgid "l-gd"
1829
- msgstr "Scottish Gaelic; Gaelic"
1830
 
1831
- # Galician
1832
  #: ../../admin/lang/dynamic_strings.php:125
1833
- msgid "l-gl"
1834
- msgstr "Galician"
1835
 
1836
- # Guarani
1837
  #: ../../admin/lang/dynamic_strings.php:126
1838
- msgid "l-gn"
1839
- msgstr "Guarani"
1840
 
1841
- # Gujarati
1842
  #: ../../admin/lang/dynamic_strings.php:127
1843
- msgid "l-gu"
1844
- msgstr "Gujarati"
1845
 
1846
- # Manx
1847
  #: ../../admin/lang/dynamic_strings.php:128
1848
- msgid "l-gv"
1849
- msgstr "Manx"
1850
 
1851
- # Hausa
1852
  #: ../../admin/lang/dynamic_strings.php:129
1853
- msgid "l-ha"
1854
- msgstr "Hausa"
1855
 
1856
- # Hebrew
1857
  #: ../../admin/lang/dynamic_strings.php:130
1858
- msgid "l-he"
1859
- msgstr "Hebrew"
1860
 
1861
- # Hindi
1862
  #: ../../admin/lang/dynamic_strings.php:131
1863
- msgid "l-hi"
1864
- msgstr "Hindi"
1865
 
1866
- # Hiri Motu
1867
  #: ../../admin/lang/dynamic_strings.php:132
1868
- msgid "l-ho"
1869
- msgstr "Hiri Motu"
1870
 
1871
- # Croatian
1872
  #: ../../admin/lang/dynamic_strings.php:133
1873
- msgid "l-hr"
1874
- msgstr "Croatian"
1875
 
1876
- # Haitian; Haitian Creole
1877
  #: ../../admin/lang/dynamic_strings.php:134
1878
- msgid "l-ht"
1879
- msgstr "Haitian; Haitian Creole"
1880
 
1881
- # Hungarian
1882
  #: ../../admin/lang/dynamic_strings.php:135
1883
- msgid "l-hu"
1884
- msgstr "Hungarian"
1885
 
1886
- # Armenian
1887
  #: ../../admin/lang/dynamic_strings.php:136
1888
- msgid "l-hy"
1889
- msgstr "Armenian"
1890
 
1891
- # Herero
1892
  #: ../../admin/lang/dynamic_strings.php:137
1893
- msgid "l-hz"
1894
- msgstr "Herero"
1895
 
1896
- # Interlingua (International Auxiliary Language Association)
1897
  #: ../../admin/lang/dynamic_strings.php:138
1898
- msgid "l-ia"
1899
- msgstr "Interlingua (International Auxiliary Language Association)"
1900
 
1901
- # Indonesian
1902
  #: ../../admin/lang/dynamic_strings.php:139
1903
- msgid "l-id"
1904
- msgstr "Indonesian"
1905
 
1906
- # Interlingue; Occidental
1907
  #: ../../admin/lang/dynamic_strings.php:140
1908
- msgid "l-ie"
1909
- msgstr "Interlingue; Occidental"
1910
-
1911
- # Igbo
1912
  #: ../../admin/lang/dynamic_strings.php:141
1913
- msgid "l-ig"
1914
- msgstr "Igbo"
1915
 
1916
- # Sichuan Yi; Nuosu
1917
  #: ../../admin/lang/dynamic_strings.php:142
1918
- msgid "l-ii"
1919
- msgstr "Sichuan Yi; Nuosu"
1920
 
1921
- # Inupiaq
1922
  #: ../../admin/lang/dynamic_strings.php:143
1923
- msgid "l-ik"
1924
- msgstr "Inupiaq"
1925
 
1926
- # Indonesian
1927
  #: ../../admin/lang/dynamic_strings.php:144
1928
- msgid "l-in"
1929
- msgstr "Indonesian"
1930
 
1931
- # Ido
1932
  #: ../../admin/lang/dynamic_strings.php:145
1933
- msgid "l-io"
1934
- msgstr "Ido"
1935
 
1936
- # Icelandic
1937
  #: ../../admin/lang/dynamic_strings.php:146
1938
- msgid "l-is"
1939
- msgstr "Icelandic"
1940
 
1941
- # Italian
1942
  #: ../../admin/lang/dynamic_strings.php:147
1943
- msgid "l-it"
1944
- msgstr "Italian"
1945
 
1946
- # Inuktitut
1947
  #: ../../admin/lang/dynamic_strings.php:148
1948
- msgid "l-iu"
1949
- msgstr "Inuktitut"
1950
 
1951
- # Hebrew
1952
  #: ../../admin/lang/dynamic_strings.php:149
1953
- msgid "l-iw"
1954
- msgstr "Hebrew"
1955
 
1956
- # Japanese
1957
  #: ../../admin/lang/dynamic_strings.php:150
1958
- msgid "l-ja"
1959
- msgstr "Japanese"
1960
 
1961
- # Yiddish
1962
  #: ../../admin/lang/dynamic_strings.php:151
1963
- msgid "l-ji"
1964
- msgstr "Yiddish"
1965
 
1966
- # Javanese
1967
  #: ../../admin/lang/dynamic_strings.php:152
1968
- msgid "l-jv"
1969
- msgstr "Javanese"
1970
 
1971
- # Javanese
1972
  #: ../../admin/lang/dynamic_strings.php:153
1973
- msgid "l-jw"
1974
- msgstr "Javanese"
1975
 
1976
- # Georgian
1977
  #: ../../admin/lang/dynamic_strings.php:154
1978
- msgid "l-ka"
1979
- msgstr "Georgian"
1980
 
1981
- # Kongo
1982
  #: ../../admin/lang/dynamic_strings.php:155
1983
- msgid "l-kg"
1984
- msgstr "Kongo"
1985
 
1986
- # Kikuyu; Gikuyu
1987
  #: ../../admin/lang/dynamic_strings.php:156
1988
- msgid "l-ki"
1989
- msgstr "Kikuyu; Gikuyu"
1990
 
1991
- # Kuanyama; Kwanyama
1992
  #: ../../admin/lang/dynamic_strings.php:157
1993
- msgid "l-kj"
1994
- msgstr "Kuanyama; Kwanyama"
1995
 
1996
- # Kazakh
1997
  #: ../../admin/lang/dynamic_strings.php:158
1998
- msgid "l-kk"
1999
- msgstr "Kazakh"
2000
 
2001
- # Kalaallisut; Greenlandic
2002
  #: ../../admin/lang/dynamic_strings.php:159
2003
- msgid "l-kl"
2004
- msgstr "Kalaallisut; Greenlandic"
2005
 
2006
- # Central Khmer
2007
  #: ../../admin/lang/dynamic_strings.php:160
2008
- msgid "l-km"
2009
- msgstr "Central Khmer"
2010
 
2011
- # Kannada
2012
  #: ../../admin/lang/dynamic_strings.php:161
2013
- msgid "l-kn"
2014
- msgstr "Kannada"
2015
 
2016
- # Korean
2017
  #: ../../admin/lang/dynamic_strings.php:162
2018
- msgid "l-ko"
2019
- msgstr "Korean"
2020
 
2021
- # Kanuri
2022
  #: ../../admin/lang/dynamic_strings.php:163
2023
- msgid "l-kr"
2024
- msgstr "Kanuri"
2025
 
2026
- # Kashmiri
2027
  #: ../../admin/lang/dynamic_strings.php:164
2028
- msgid "l-ks"
2029
- msgstr "Kashmiri"
2030
 
2031
- # Kurdish
2032
  #: ../../admin/lang/dynamic_strings.php:165
2033
- msgid "l-ku"
2034
- msgstr "Kurdish"
2035
 
2036
- # Komi
2037
  #: ../../admin/lang/dynamic_strings.php:166
2038
- msgid "l-kv"
2039
- msgstr "Komi"
2040
 
2041
- # Cornish
2042
  #: ../../admin/lang/dynamic_strings.php:167
2043
- msgid "l-kw"
2044
- msgstr "Cornish"
2045
 
2046
- # Kirghiz; Kyrgyz
2047
  #: ../../admin/lang/dynamic_strings.php:168
2048
- msgid "l-ky"
2049
- msgstr "Kirghiz; Kyrgyz"
2050
 
2051
- # Latin
2052
  #: ../../admin/lang/dynamic_strings.php:169
2053
- msgid "l-la"
2054
- msgstr "Latin"
2055
 
2056
- # Luxembourgish; Letzeburgesch
2057
  #: ../../admin/lang/dynamic_strings.php:170
2058
- msgid "l-lb"
2059
- msgstr "Luxembourgish; Letzeburgesch"
2060
 
2061
- # Ganda
2062
  #: ../../admin/lang/dynamic_strings.php:171
2063
- msgid "l-lg"
2064
- msgstr "Ganda"
2065
 
2066
- # Limburgan; Limburge; Limburgish
2067
  #: ../../admin/lang/dynamic_strings.php:172
2068
- msgid "l-li"
2069
- msgstr "Limburgan; Limburge; Limburgish"
2070
 
2071
- # Lingala
2072
  #: ../../admin/lang/dynamic_strings.php:173
2073
- msgid "l-ln"
2074
- msgstr "Lingala"
2075
 
2076
- # Lao
2077
  #: ../../admin/lang/dynamic_strings.php:174
2078
- msgid "l-lo"
2079
- msgstr "Lao"
2080
 
2081
- # Lithuanian
2082
  #: ../../admin/lang/dynamic_strings.php:175
2083
- msgid "l-lt"
2084
- msgstr "Lithuanian"
2085
 
2086
- # Luba-Katanga
2087
  #: ../../admin/lang/dynamic_strings.php:176
2088
- msgid "l-lu"
2089
- msgstr "Luba-Katanga"
2090
 
2091
- # Latvian
2092
  #: ../../admin/lang/dynamic_strings.php:177
2093
- msgid "l-lv"
2094
- msgstr "Latvian"
2095
 
2096
- # Malagasy
2097
  #: ../../admin/lang/dynamic_strings.php:178
2098
- msgid "l-mg"
2099
- msgstr "Malagasy"
2100
 
2101
- # Marshallese
2102
  #: ../../admin/lang/dynamic_strings.php:179
2103
- msgid "l-mh"
2104
- msgstr "Marshallese"
2105
 
2106
- # Maori
2107
  #: ../../admin/lang/dynamic_strings.php:180
2108
- msgid "l-mi"
2109
- msgstr "Maori"
2110
 
2111
- # Macedonian
2112
  #: ../../admin/lang/dynamic_strings.php:181
2113
- msgid "l-mk"
2114
- msgstr "Macedonian"
2115
 
2116
- # Malayalam
2117
  #: ../../admin/lang/dynamic_strings.php:182
2118
- msgid "l-ml"
2119
- msgstr "Malayalam"
2120
 
2121
- # Mongolian
2122
  #: ../../admin/lang/dynamic_strings.php:183
2123
- msgid "l-mn"
2124
- msgstr "Mongolian"
2125
 
2126
- # Moldavian; Moldovan
2127
  #: ../../admin/lang/dynamic_strings.php:184
2128
- msgid "l-mo"
2129
- msgstr "Moldavian; Moldovan"
2130
 
2131
- # Marathi
2132
  #: ../../admin/lang/dynamic_strings.php:185
2133
- msgid "l-mr"
2134
- msgstr "Marathi"
2135
 
2136
- # Malay
2137
  #: ../../admin/lang/dynamic_strings.php:186
2138
- msgid "l-ms"
2139
- msgstr "Malay"
2140
 
2141
- # Maltese
2142
  #: ../../admin/lang/dynamic_strings.php:187
2143
- msgid "l-mt"
2144
- msgstr "Maltese"
2145
 
2146
- # Burmese
2147
  #: ../../admin/lang/dynamic_strings.php:188
2148
- msgid "l-my"
2149
- msgstr "Burmese"
2150
 
2151
- # Nauru
2152
  #: ../../admin/lang/dynamic_strings.php:189
2153
- msgid "l-na"
2154
- msgstr "Nauru"
2155
 
2156
- # Norwegian Bokmål
2157
  #: ../../admin/lang/dynamic_strings.php:190
2158
- msgid "l-nb"
2159
- msgstr "Norwegian Bokmål"
2160
 
2161
- # North Ndebele
2162
  #: ../../admin/lang/dynamic_strings.php:191
2163
- msgid "l-nd"
2164
- msgstr "North Ndebele"
2165
 
2166
- # Nepali
2167
  #: ../../admin/lang/dynamic_strings.php:192
2168
- msgid "l-ne"
2169
- msgstr "Nepali"
2170
 
2171
- # Ndonga
2172
  #: ../../admin/lang/dynamic_strings.php:193
2173
- msgid "l-ng"
2174
- msgstr "Ndonga"
2175
 
2176
- # Dutch; Flemish
2177
  #: ../../admin/lang/dynamic_strings.php:194
2178
- msgid "l-nl"
2179
- msgstr "Dutch; Flemish"
2180
 
2181
- # Norwegian Nynorsk
2182
  #: ../../admin/lang/dynamic_strings.php:195
2183
- msgid "l-nn"
2184
- msgstr "Norwegian Nynorsk"
2185
 
2186
- # Norwegian
2187
  #: ../../admin/lang/dynamic_strings.php:196
2188
- msgid "l-no"
2189
- msgstr "Norwegian"
2190
 
2191
- # South Ndebele
2192
  #: ../../admin/lang/dynamic_strings.php:197
2193
- msgid "l-nr"
2194
- msgstr "South Ndebele"
2195
 
2196
- # Navajo; Navaho
2197
  #: ../../admin/lang/dynamic_strings.php:198
2198
- msgid "l-nv"
2199
- msgstr "Navajo; Navaho"
2200
 
2201
- # Nyanja; Chewa; Chichewa
2202
  #: ../../admin/lang/dynamic_strings.php:199
2203
- msgid "l-ny"
2204
- msgstr "Nyanja; Chewa; Chichewa"
2205
 
2206
- # Occitan (post 1500)
2207
  #: ../../admin/lang/dynamic_strings.php:200
2208
- msgid "l-oc"
2209
- msgstr "Occitan (post 1500)"
2210
 
2211
- # Ojibwa
2212
  #: ../../admin/lang/dynamic_strings.php:201
2213
- msgid "l-oj"
2214
- msgstr "Ojibwa"
2215
 
2216
- # Oromo
2217
  #: ../../admin/lang/dynamic_strings.php:202
2218
- msgid "l-om"
2219
- msgstr "Oromo"
2220
 
2221
- # Oriya
2222
  #: ../../admin/lang/dynamic_strings.php:203
2223
- msgid "l-or"
2224
- msgstr "Oriya"
2225
 
2226
- # Ossetian; Ossetic
2227
  #: ../../admin/lang/dynamic_strings.php:204
2228
- msgid "l-os"
2229
- msgstr "Ossetian; Ossetic"
2230
 
2231
- # Panjabi; Punjabi
2232
  #: ../../admin/lang/dynamic_strings.php:205
2233
- msgid "l-pa"
2234
- msgstr "Panjabi; Punjabi"
2235
 
2236
- # Pali
2237
  #: ../../admin/lang/dynamic_strings.php:206
2238
- msgid "l-pi"
2239
- msgstr "Pali"
2240
 
2241
- # Polish
2242
  #: ../../admin/lang/dynamic_strings.php:207
2243
- msgid "l-pl"
2244
- msgstr "Polish"
2245
 
2246
- # Polish
2247
  #: ../../admin/lang/dynamic_strings.php:208
2248
- msgid "l-pl-pl"
2249
- msgstr "Polish (Poland)"
2250
 
2251
- # Pushto; Pashto
2252
  #: ../../admin/lang/dynamic_strings.php:209
2253
- msgid "l-ps"
2254
- msgstr "Pushto; Pashto"
2255
 
2256
- # Portuguese
2257
  #: ../../admin/lang/dynamic_strings.php:210
2258
- msgid "l-pt"
2259
- msgstr "Portuguese"
2260
 
2261
- # Portuguese
2262
  #: ../../admin/lang/dynamic_strings.php:211
2263
- msgid "l-pt-pt"
2264
- msgstr "Portuguese (Portugal)"
2265
 
2266
- # Quechua
2267
  #: ../../admin/lang/dynamic_strings.php:212
2268
- msgid "l-qu"
2269
- msgstr "Quechua"
2270
 
2271
- # Romansh
2272
  #: ../../admin/lang/dynamic_strings.php:213
2273
- msgid "l-rm"
2274
- msgstr "Romansh"
2275
 
2276
- # Rundi
2277
  #: ../../admin/lang/dynamic_strings.php:214
2278
- msgid "l-rn"
2279
- msgstr "Rundi"
2280
 
2281
- # Romanian; Moldavian; Moldovan
2282
  #: ../../admin/lang/dynamic_strings.php:215
2283
- msgid "l-ro"
2284
- msgstr "Romanian; Moldavian; Moldovan"
2285
 
2286
- # Russian
2287
  #: ../../admin/lang/dynamic_strings.php:216
2288
- msgid "l-ru"
2289
- msgstr "Russian"
2290
 
2291
- # Kinyarwanda
2292
  #: ../../admin/lang/dynamic_strings.php:217
2293
- msgid "l-rw"
2294
- msgstr "Kinyarwanda"
2295
 
2296
- # Sanskrit
2297
  #: ../../admin/lang/dynamic_strings.php:218
2298
- msgid "l-sa"
2299
- msgstr "Sanskrit"
2300
 
2301
- # Sardinian
2302
  #: ../../admin/lang/dynamic_strings.php:219
2303
- msgid "l-sc"
2304
- msgstr "Sardinian"
2305
 
2306
- # Sindhi
2307
  #: ../../admin/lang/dynamic_strings.php:220
2308
- msgid "l-sd"
2309
- msgstr "Sindhi"
2310
 
2311
- # Northern Sami
2312
  #: ../../admin/lang/dynamic_strings.php:221
2313
- msgid "l-se"
2314
- msgstr "Northern Sami"
2315
 
2316
- # Sango
2317
  #: ../../admin/lang/dynamic_strings.php:222
2318
- msgid "l-sg"
2319
- msgstr "Sango"
2320
 
2321
- # Serbo-Croatian
2322
  #: ../../admin/lang/dynamic_strings.php:223
2323
- msgid "l-sh"
2324
- msgstr "Serbo-Croatian"
2325
 
2326
- # Sinhala; Sinhalese
2327
  #: ../../admin/lang/dynamic_strings.php:224
2328
- msgid "l-si"
2329
- msgstr "Sinhala; Sinhalese"
2330
 
2331
- # Slovak
2332
  #: ../../admin/lang/dynamic_strings.php:225
2333
- msgid "l-sk"
2334
- msgstr "Slovak"
2335
 
2336
- # Slovenian
2337
  #: ../../admin/lang/dynamic_strings.php:226
2338
- msgid "l-sl"
2339
- msgstr "Slovenian"
2340
 
2341
- # Samoan
2342
  #: ../../admin/lang/dynamic_strings.php:227
2343
- msgid "l-sm"
2344
- msgstr "Samoan"
2345
 
2346
- # Shona
2347
  #: ../../admin/lang/dynamic_strings.php:228
2348
- msgid "l-sn"
2349
- msgstr "Shona"
2350
 
2351
- # Somali
2352
  #: ../../admin/lang/dynamic_strings.php:229
2353
- msgid "l-so"
2354
- msgstr "Somali"
2355
 
2356
- # Albanian
2357
  #: ../../admin/lang/dynamic_strings.php:230
2358
- msgid "l-sq"
2359
- msgstr "Albanian"
2360
 
2361
- # Serbian
2362
  #: ../../admin/lang/dynamic_strings.php:231
2363
- msgid "l-sr"
2364
- msgstr "Serbian"
2365
 
2366
- # Swati
2367
  #: ../../admin/lang/dynamic_strings.php:232
2368
- msgid "l-ss"
2369
- msgstr "Swati"
2370
 
2371
- # Southern Sotho
2372
  #: ../../admin/lang/dynamic_strings.php:233
2373
- msgid "l-st"
2374
- msgstr "Southern Sotho"
2375
 
2376
- # Sundanese
2377
  #: ../../admin/lang/dynamic_strings.php:234
2378
- msgid "l-su"
2379
- msgstr "Sundanese"
2380
 
2381
- # Swedish
2382
  #: ../../admin/lang/dynamic_strings.php:235
2383
- msgid "l-sv"
2384
- msgstr "Swedish"
2385
 
2386
- # Swahili
2387
  #: ../../admin/lang/dynamic_strings.php:236
2388
- msgid "l-sw"
2389
- msgstr "Swahili"
2390
 
2391
- # Tamil
2392
  #: ../../admin/lang/dynamic_strings.php:237
2393
- msgid "l-ta"
2394
- msgstr "Tamil"
2395
 
2396
- # Telugu
2397
  #: ../../admin/lang/dynamic_strings.php:238
2398
- msgid "l-te"
2399
- msgstr "Telugu"
2400
 
2401
- # Tajik
2402
  #: ../../admin/lang/dynamic_strings.php:239
2403
- msgid "l-tg"
2404
- msgstr "Tajik"
2405
 
2406
- # Thai
2407
  #: ../../admin/lang/dynamic_strings.php:240
2408
- msgid "l-th"
2409
- msgstr "Thai"
2410
 
2411
- # Thai
2412
  #: ../../admin/lang/dynamic_strings.php:241
2413
- msgid "l-th-th"
2414
- msgstr "Thai (Thailand)"
2415
 
2416
- # Tigrinya
2417
  #: ../../admin/lang/dynamic_strings.php:242
2418
- msgid "l-ti"
2419
- msgstr "Tigrinya"
2420
 
2421
- # Turkmen
2422
  #: ../../admin/lang/dynamic_strings.php:243
2423
- msgid "l-tk"
2424
- msgstr "Turkmen"
2425
 
2426
- # Tagalog
2427
  #: ../../admin/lang/dynamic_strings.php:244
2428
- msgid "l-tl"
2429
- msgstr "Tagalog"
2430
 
2431
- # Tswana
2432
  #: ../../admin/lang/dynamic_strings.php:245
2433
- msgid "l-tn"
2434
- msgstr "Tswana"
2435
 
2436
- # Tonga (Tonga Islands)
2437
  #: ../../admin/lang/dynamic_strings.php:246
2438
- msgid "l-to"
2439
- msgstr "Tonga (Tonga Islands)"
2440
 
2441
- # Turkish
2442
  #: ../../admin/lang/dynamic_strings.php:247
2443
- msgid "l-tr"
2444
- msgstr "Turkish"
2445
 
2446
- # Tsonga
2447
  #: ../../admin/lang/dynamic_strings.php:248
2448
- msgid "l-ts"
2449
- msgstr "Tsonga"
2450
 
2451
- # Tatar
2452
  #: ../../admin/lang/dynamic_strings.php:249
2453
- msgid "l-tt"
2454
- msgstr "Tatar"
2455
 
2456
- # Twi
2457
  #: ../../admin/lang/dynamic_strings.php:250
2458
- msgid "l-tw"
2459
- msgstr "Twi"
2460
 
2461
- # Tahitian
2462
  #: ../../admin/lang/dynamic_strings.php:251
2463
- msgid "l-ty"
2464
- msgstr "Tahitian"
2465
-
2466
- # Uighur; Uyghur
2467
  #: ../../admin/lang/dynamic_strings.php:252
2468
- msgid "l-ug"
2469
- msgstr "Uighur; Uyghur"
2470
-
2471
- # Ukrainian
2472
  #: ../../admin/lang/dynamic_strings.php:253
2473
- msgid "l-uk"
2474
- msgstr "Ukrainian"
2475
 
2476
- # Urdu
2477
  #: ../../admin/lang/dynamic_strings.php:254
2478
- msgid "l-ur"
2479
- msgstr "Urdu"
2480
-
2481
- # Uzbek
2482
  #: ../../admin/lang/dynamic_strings.php:255
2483
- msgid "l-uz"
2484
- msgstr "Uzbek"
2485
-
2486
- # Venda
2487
  #: ../../admin/lang/dynamic_strings.php:256
2488
- msgid "l-ve"
2489
- msgstr "Venda"
2490
 
2491
- # Vietnamese
2492
  #: ../../admin/lang/dynamic_strings.php:257
2493
- msgid "l-vi"
2494
- msgstr "Vietnamese"
2495
-
2496
- # Vietnamese
2497
  #: ../../admin/lang/dynamic_strings.php:258
2498
- msgid "l-vi-vn"
2499
- msgstr "Vietnamese (Vietnam)"
2500
-
2501
- # Volapük
2502
  #: ../../admin/lang/dynamic_strings.php:259
2503
- msgid "l-vo"
2504
- msgstr "Volapük"
2505
 
2506
- # Walloon
2507
  #: ../../admin/lang/dynamic_strings.php:260
2508
- msgid "l-wa"
2509
- msgstr "Walloon"
2510
 
2511
- # Wolof
2512
  #: ../../admin/lang/dynamic_strings.php:261
2513
- msgid "l-wo"
2514
- msgstr "Wolof"
2515
 
2516
- # Xhosa
2517
  #: ../../admin/lang/dynamic_strings.php:262
2518
- msgid "l-xh"
2519
- msgstr "Xhosa"
2520
 
2521
- # Yiddish
2522
  #: ../../admin/lang/dynamic_strings.php:263
2523
- msgid "l-yi"
2524
- msgstr "Yiddish"
2525
 
2526
- # Yoruba
2527
  #: ../../admin/lang/dynamic_strings.php:264
2528
- msgid "l-yo"
2529
- msgstr "Yoruba"
2530
 
2531
- # Zhuang; Chuang
2532
  #: ../../admin/lang/dynamic_strings.php:265
2533
- msgid "l-za"
2534
- msgstr "Zhuang; Chuang"
2535
 
2536
- # Chinese
2537
  #: ../../admin/lang/dynamic_strings.php:266
2538
- msgid "l-zh"
2539
- msgstr "Chinese"
2540
-
2541
- # Zulu
2542
  #: ../../admin/lang/dynamic_strings.php:267
2543
- msgid "l-zu"
2544
- msgstr "Zulu"
2545
 
2546
- # Arabic (Saudi Arabia)
2547
  #: ../../admin/lang/dynamic_strings.php:268
2548
- msgid "l-ar-sa"
2549
- msgstr "Arabic (Saudi Arabia)"
2550
-
2551
- # Arabic (Iraq)
2552
  #: ../../admin/lang/dynamic_strings.php:269
2553
- msgid "l-ar-iq"
2554
- msgstr "Arabic (Iraq)"
2555
 
2556
- # Arabic (Egypt)
2557
  #: ../../admin/lang/dynamic_strings.php:270
2558
- msgid "l-ar-eg"
2559
- msgstr "Arabic (Egypt)"
2560
 
2561
- # Arabic (Libya)
2562
  #: ../../admin/lang/dynamic_strings.php:271
2563
- msgid "l-ar-ly"
2564
- msgstr "Arabic (Libya)"
2565
 
2566
- # Arabic (Algeria)
2567
  #: ../../admin/lang/dynamic_strings.php:272
2568
- msgid "l-ar-dz"
2569
- msgstr "Arabic (Algeria)"
2570
 
2571
- # Arabic (Morocco)
2572
  #: ../../admin/lang/dynamic_strings.php:273
2573
- msgid "l-ar-ma"
2574
- msgstr "Arabic (Morocco)"
2575
 
2576
- # Arabic (Tunisia)
2577
  #: ../../admin/lang/dynamic_strings.php:274
2578
- msgid "l-ar-tn"
2579
- msgstr "Arabic (Tunisia)"
2580
 
2581
- # Arabic (Oman)
2582
  #: ../../admin/lang/dynamic_strings.php:275
2583
- msgid "l-ar-om"
2584
- msgstr "Arabic (Oman)"
2585
 
2586
- # Arabic (Yemen)
2587
  #: ../../admin/lang/dynamic_strings.php:276
2588
- msgid "l-ar-ye"
2589
- msgstr "Arabic (Yemen)"
2590
 
2591
- # Arabic (Syria)
2592
  #: ../../admin/lang/dynamic_strings.php:277
2593
- msgid "l-ar-sy"
2594
- msgstr "Arabic (Syria)"
2595
 
2596
- # Arabic (Jordan)
2597
  #: ../../admin/lang/dynamic_strings.php:278
2598
- msgid "l-ar-jo"
2599
- msgstr "Arabic (Jordan)"
2600
 
2601
- # Arabic (Lebanon)
2602
  #: ../../admin/lang/dynamic_strings.php:279
2603
- msgid "l-ar-lb"
2604
- msgstr "Arabic (Lebanon)"
2605
 
2606
- # Arabic (Kuwait)
2607
  #: ../../admin/lang/dynamic_strings.php:280
2608
- msgid "l-ar-kw"
2609
- msgstr "Arabic (Kuwait)"
2610
 
2611
- # Arabic (United Arab Emirates)
2612
  #: ../../admin/lang/dynamic_strings.php:281
2613
- msgid "l-ar-ae"
2614
- msgstr "Arabic (United Arab Emirates)"
2615
 
2616
- # Arabic (Bahrain)
2617
  #: ../../admin/lang/dynamic_strings.php:282
2618
- msgid "l-ar-bh"
2619
- msgstr "Arabic (Bahrain)"
2620
 
2621
- # Arabic (Qatar)
2622
  #: ../../admin/lang/dynamic_strings.php:283
2623
- msgid "l-ar-qa"
2624
- msgstr "Arabic (Qatar)"
2625
 
2626
- # Chinese (China)
2627
  #: ../../admin/lang/dynamic_strings.php:284
2628
- msgid "l-zh-cn"
2629
- msgstr "Chinese (China)"
2630
 
2631
- # Chinese (Taiwan)
2632
  #: ../../admin/lang/dynamic_strings.php:285
2633
- msgid "l-zh-tw"
2634
- msgstr "Taiwanese"
2635
 
2636
- # Chinese (Hong Kong)
2637
  #: ../../admin/lang/dynamic_strings.php:286
2638
- msgid "l-zh-hk"
2639
- msgstr "Chinese (Hong Kong)"
2640
 
2641
- # Chinese (Singapore)
2642
  #: ../../admin/lang/dynamic_strings.php:287
2643
- msgid "l-zh-sg"
2644
- msgstr "Chinese (Singapore)"
2645
 
2646
- # Dutch (Netherlands)
2647
  #: ../../admin/lang/dynamic_strings.php:288
2648
- msgid "l-nl-nl"
2649
- msgstr "Dutch (Netherlands)"
2650
 
2651
- # Dutch (Belgium)
2652
  #: ../../admin/lang/dynamic_strings.php:289
2653
- msgid "l-nl-be"
2654
- msgstr "Dutch (Belgium)"
2655
 
2656
- # English (United Kingdom)
2657
  #: ../../admin/lang/dynamic_strings.php:290
2658
- msgid "l-en-gb"
2659
- msgstr "English (United Kingdom)"
2660
 
2661
- # English (United States)
2662
  #: ../../admin/lang/dynamic_strings.php:291
2663
- msgid "l-en-us"
2664
- msgstr "English (United States)"
2665
 
2666
- # English (Australia)
2667
  #: ../../admin/lang/dynamic_strings.php:292
2668
- msgid "l-en-au"
2669
- msgstr "English (Australia)"
2670
 
2671
- # English (Canada)
2672
  #: ../../admin/lang/dynamic_strings.php:293
2673
- msgid "l-en-ca"
2674
- msgstr "English (Canada)"
2675
 
2676
- # English (New Zealand)
2677
  #: ../../admin/lang/dynamic_strings.php:294
2678
- msgid "l-en-nz"
2679
- msgstr "English (New Zealand)"
2680
 
2681
- # English (Ireland)
2682
  #: ../../admin/lang/dynamic_strings.php:295
2683
- msgid "l-en-ie"
2684
- msgstr "English (Ireland)"
2685
 
2686
- # English (South Africa)
2687
  #: ../../admin/lang/dynamic_strings.php:296
2688
- msgid "l-en-za"
2689
- msgstr "English (South Africa)"
2690
 
2691
- # English (Jamaica)
2692
  #: ../../admin/lang/dynamic_strings.php:297
2693
- msgid "l-en-jm"
2694
- msgstr "English (Jamaica)"
2695
-
2696
- # English (Belize)
2697
  #: ../../admin/lang/dynamic_strings.php:298
2698
- msgid "l-en-bz"
2699
- msgstr "English (Belize)"
2700
 
2701
- # English (Trinidad)
2702
  #: ../../admin/lang/dynamic_strings.php:299
2703
- msgid "l-en-tt"
2704
- msgstr "English (Trinidad)"
2705
 
2706
- # French (Belgium)
2707
  #: ../../admin/lang/dynamic_strings.php:300
2708
- msgid "l-fr-be"
2709
- msgstr "French (Belgium)"
2710
 
2711
- # French (France)
2712
  #: ../../admin/lang/dynamic_strings.php:301
2713
- msgid "l-fr-fr"
2714
- msgstr "French (France)"
2715
 
2716
- # French (Switzerland)
2717
  #: ../../admin/lang/dynamic_strings.php:302
2718
- msgid "l-fr-ch"
2719
- msgstr "French (Switzerland)"
2720
 
2721
- # French (Canada)
2722
  #: ../../admin/lang/dynamic_strings.php:303
2723
- msgid "l-fr-ca"
2724
- msgstr "French (Canada)"
2725
 
2726
- # French (Luxembourg)
2727
  #: ../../admin/lang/dynamic_strings.php:304
2728
- msgid "l-fr-lu"
2729
- msgstr "French (Luxembourg)"
2730
 
2731
- # German (Austria)
2732
  #: ../../admin/lang/dynamic_strings.php:305
2733
- msgid "l-de-at"
2734
- msgstr "German (Austria)"
2735
 
2736
- # German (Germany)
2737
  #: ../../admin/lang/dynamic_strings.php:306
2738
- msgid "l-de-de"
2739
- msgstr "German (Germany)"
2740
 
2741
- # German (Switzerland)
2742
  #: ../../admin/lang/dynamic_strings.php:307
2743
- msgid "l-de-ch"
2744
- msgstr "German (Switzerland)"
2745
 
2746
- # German (Luxembourg)
2747
  #: ../../admin/lang/dynamic_strings.php:308
2748
- msgid "l-de-lu"
2749
- msgstr "German (Luxembourg)"
2750
 
2751
- # German (Liechtenstein)
2752
  #: ../../admin/lang/dynamic_strings.php:309
2753
- msgid "l-de-li"
2754
- msgstr "German (Liechtenstein)"
2755
 
2756
- # Greek (Greece)
2757
  #: ../../admin/lang/dynamic_strings.php:310
2758
- msgid "l-el-gr"
2759
- msgstr "Greek (Greece)"
2760
 
2761
- # Spanish (Dominican Republic)
2762
  #: ../../admin/lang/dynamic_strings.php:311
2763
- msgid "l-es-do"
2764
- msgstr "Spanish (Dominican Republic)"
2765
-
2766
- # Spanish (Argentina)
2767
- #: ../../admin/lang/dynamic_strings.php:312
2768
- msgid "l-es-ar"
2769
- msgstr "Spanish (Argentina)"
2770
-
2771
- # Spanish (Colombia)
2772
- #: ../../admin/lang/dynamic_strings.php:313
2773
- msgid "l-es-co"
2774
- msgstr "Spanish (Colombia)"
2775
-
2776
- # Spanish (Mexico)
2777
- #: ../../admin/lang/dynamic_strings.php:314
2778
- msgid "l-es-mx"
2779
- msgstr "Spanish (Mexico)"
2780
-
2781
- # Spanish (Spain)
2782
- #: ../../admin/lang/dynamic_strings.php:315
2783
- msgid "l-es-es"
2784
- msgstr "Spanish (Spain)"
2785
-
2786
- # Spanish (Guatemala)
2787
- #: ../../admin/lang/dynamic_strings.php:316
2788
- msgid "l-es-gt"
2789
- msgstr "Spanish (Guatemala)"
2790
-
2791
- # Spanish (Costa Rica)
2792
- #: ../../admin/lang/dynamic_strings.php:317
2793
- msgid "l-es-cr"
2794
- msgstr "Spanish (Costa Rica)"
2795
-
2796
- # Spanish (Panama)
2797
- #: ../../admin/lang/dynamic_strings.php:318
2798
- msgid "l-es-pa"
2799
- msgstr "Spanish (Panama)"
2800
-
2801
- # Spanish (Venezuela)
2802
- #: ../../admin/lang/dynamic_strings.php:319
2803
- msgid "l-es-ve"
2804
- msgstr "Spanish (Venezuela)"
2805
-
2806
- # Spanish (Peru)
2807
- #: ../../admin/lang/dynamic_strings.php:320
2808
- msgid "l-es-pe"
2809
- msgstr "Spanish (Peru)"
2810
-
2811
- # Spanish (Ecuador)
2812
- #: ../../admin/lang/dynamic_strings.php:321
2813
- msgid "l-es-ec"
2814
- msgstr "Spanish (Ecuador)"
2815
-
2816
- # Spanish (Chile)
2817
- #: ../../admin/lang/dynamic_strings.php:322
2818
- msgid "l-es-cl"
2819
- msgstr "Spanish (Chile)"
2820
-
2821
- # Spanish (Uruguay)
2822
- #: ../../admin/lang/dynamic_strings.php:323
2823
- msgid "l-es-uy"
2824
- msgstr "Spanish (Uruguay)"
2825
-
2826
- # Spanish (Paraguay)
2827
- #: ../../admin/lang/dynamic_strings.php:324
2828
- msgid "l-es-py"
2829
- msgstr "Spanish (Paraguay)"
2830
-
2831
- # Spanish (Bolivia)
2832
- #: ../../admin/lang/dynamic_strings.php:325
2833
- msgid "l-es-bo"
2834
- msgstr "Spanish (Bolivia)"
2835
-
2836
- # Spanish (El Salvador)
2837
- #: ../../admin/lang/dynamic_strings.php:326
2838
- msgid "l-es-sv"
2839
- msgstr "Spanish (El Salvador)"
2840
-
2841
- # Spanish (Honduras)
2842
- #: ../../admin/lang/dynamic_strings.php:327
2843
- msgid "l-es-hn"
2844
- msgstr "Spanish (Honduras)"
2845
-
2846
- # Spanish (Nicaragua)
2847
- #: ../../admin/lang/dynamic_strings.php:328
2848
- msgid "l-es-ni"
2849
- msgstr "Spanish (Nicaragua)"
2850
-
2851
- # Spanish (Puerto Rico)
2852
- #: ../../admin/lang/dynamic_strings.php:329
2853
- msgid "l-es-pr"
2854
- msgstr "Spanish (Puerto Rico)"
2855
-
2856
- # Hebrew (Israel)
2857
- #: ../../admin/lang/dynamic_strings.php:330
2858
- msgid "l-he-il"
2859
- msgstr "Hebrew (Israel)"
2860
-
2861
- # Hungarian (Hungary)
2862
- #: ../../admin/lang/dynamic_strings.php:331
2863
- msgid "l-hu-hu"
2864
- msgstr "Hungarian (Hungary)"
2865
-
2866
- # Internet Explorer Easter Egg
2867
- #: ../../admin/lang/dynamic_strings.php:332
2868
- msgid "l-ie-ee"
2869
- msgstr "Internet Explorer Easter Egg"
2870
-
2871
- # Italian (Italia)
2872
- #: ../../admin/lang/dynamic_strings.php:333
2873
- msgid "l-it-it"
2874
- msgstr "Italian (Italia)"
2875
-
2876
- # Italian (Switzerland)
2877
- #: ../../admin/lang/dynamic_strings.php:334
2878
- msgid "l-it-ch"
2879
- msgstr "Italian (Switzerland)"
2880
-
2881
- # Korean (Republic of Korea)
2882
- #: ../../admin/lang/dynamic_strings.php:335
2883
- msgid "l-ko-kr"
2884
- msgstr "Korean (Republic of Korea)"
2885
-
2886
- # Korean (Democratic People's Republic of Korea)
2887
- #: ../../admin/lang/dynamic_strings.php:336
2888
- msgid "l-ko-kp"
2889
- msgstr "Korean (Democratic People's Republic of Korea)"
2890
-
2891
- # Portuguese (Brazil)
2892
- #: ../../admin/lang/dynamic_strings.php:337
2893
- msgid "l-pt-br"
2894
- msgstr "Portuguese (Brazil)"
2895
-
2896
- # Romanian (Moldava)
2897
- #: ../../admin/lang/dynamic_strings.php:338
2898
- msgid "l-ro-md"
2899
- msgstr "Romanian (Moldava)"
2900
-
2901
- # Russian (Russia)
2902
- #: ../../admin/lang/dynamic_strings.php:339
2903
- msgid "l-ru-ru"
2904
- msgstr "Russian (Russia)"
2905
-
2906
- # Russian (Moldava)
2907
- #: ../../admin/lang/dynamic_strings.php:340
2908
- msgid "l-ru-md"
2909
- msgstr "Russian (Moldava)"
2910
-
2911
- # Swedish (Sweden)
2912
- #: ../../admin/lang/dynamic_strings.php:341
2913
- msgid "l-sv-se"
2914
- msgstr "Swedish (Sweden)"
2915
-
2916
- # Swedish (Finland)
2917
- #: ../../admin/lang/dynamic_strings.php:342
2918
- msgid "l-sv-fi"
2919
- msgstr "Swedish (Finland)"
2920
-
2921
- # Japanes
2922
- #: ../../admin/lang/dynamic_strings.php:343
2923
- msgid "l-ja-jp"
2924
- msgstr "Japanese"
2925
-
2926
- # Turkish
2927
- #: ../../admin/lang/dynamic_strings.php:344
2928
- msgid "l-tr-tr"
2929
- msgstr "Turkish"
2930
-
2931
- #: ../../admin/lang/dynamic_strings.php:345
2932
- #: ../../admin/view/wp-slimstat-reports.php:421
2933
  msgid "l-"
2934
  msgstr "Unknown"
2935
 
2936
  # Unknown
2937
- #: ../../admin/lang/dynamic_strings.php:346
2938
  msgid "l-empty"
2939
  msgstr "Unknown"
2940
 
2941
  # Unknown
2942
- #: ../../admin/lang/dynamic_strings.php:347
2943
  msgid "l-xx"
2944
  msgstr "Unknown"
2945
 
2946
- #: ../../admin/lang/dynamic_strings.php:348
2947
  msgid "c-xy"
2948
  msgstr "Local IP"
2949
 
2950
- #: ../../admin/view/index.php:12
2951
  msgid "Details"
2952
  msgstr ""
2953
 
2954
- #: ../../admin/view/index.php:31 ../../admin/view/index.php:103
2955
- #: ../../admin/view/index.php:104 ../../admin/view/wp-slimstat-reports.php:68
2956
  msgid "Year"
2957
  msgstr ""
2958
 
2959
- #: ../../admin/view/index.php:33
2960
  msgid "Show records where"
2961
  msgstr ""
2962
 
2963
- #: ../../admin/view/index.php:34
2964
  msgid ""
2965
  "Please refer to the contextual help (available on WP 3.3+) for more "
2966
  "information on what these filters mean."
2967
  msgstr ""
2968
 
2969
- #: ../../admin/view/index.php:47
2970
- msgid "-- Advanced filters --"
2971
- msgstr ""
2972
-
2973
- #: ../../admin/view/index.php:48 ../../admin/view/wp-slimstat-reports.php:50
2974
- #: ../../admin/view/wp-slimstat-reports.php:98
2975
- msgid "Browser Capabilities"
2976
- msgstr ""
2977
-
2978
- #: ../../admin/view/index.php:60 ../../admin/view/wp-slimstat-reports.php:62
2979
- msgid "Resource ID"
2980
- msgstr ""
2981
-
2982
- #: ../../admin/view/index.php:65
2983
- msgid "equals"
2984
- msgstr ""
2985
-
2986
- #: ../../admin/view/index.php:66
2987
- msgid "is not equal to"
2988
- msgstr ""
2989
-
2990
- #: ../../admin/view/index.php:67
2991
- msgid "contains"
2992
- msgstr ""
2993
-
2994
- #: ../../admin/view/index.php:68
2995
- msgid "does not contain"
2996
- msgstr ""
2997
-
2998
- #: ../../admin/view/index.php:69
2999
- msgid "starts with"
3000
- msgstr ""
3001
-
3002
- #: ../../admin/view/index.php:70
3003
- msgid "ends with"
3004
- msgstr ""
3005
-
3006
- #: ../../admin/view/index.php:71
3007
- msgid "sounds like"
3008
- msgstr ""
3009
-
3010
- #: ../../admin/view/index.php:72
3011
- msgid "is empty"
3012
- msgstr ""
3013
-
3014
- #: ../../admin/view/index.php:73
3015
- msgid "is not empty"
3016
- msgstr ""
3017
-
3018
- #: ../../admin/view/index.php:74
3019
- msgid "is greater than"
3020
- msgstr ""
3021
-
3022
- #: ../../admin/view/index.php:75
3023
- msgid "is less than"
3024
- msgstr ""
3025
-
3026
- #: ../../admin/view/index.php:76
3027
- msgid "matches"
3028
- msgstr ""
3029
-
3030
- #: ../../admin/view/index.php:77
3031
- msgid "does not match"
3032
- msgstr ""
3033
-
3034
- #: ../../admin/view/index.php:82
3035
- msgid "Select a day to make the interval field appear."
3036
- msgstr ""
3037
-
3038
- #: ../../admin/view/index.php:83
3039
- msgid "Filter by date"
3040
- msgstr ""
3041
-
3042
- #: ../../admin/view/index.php:86 ../../admin/view/wp-slimstat-reports.php:66
3043
- msgid "Day"
3044
- msgstr ""
3045
-
3046
- #: ../../admin/view/index.php:95 ../../admin/view/wp-slimstat-reports.php:67
3047
- msgid "Month"
3048
- msgstr ""
3049
-
3050
- #: ../../admin/view/index.php:112
3051
- msgid "Go"
3052
- msgstr ""
3053
-
3054
- #: ../../admin/view/index.php:127 ../../admin/view/wp-slimstat-reports.php:608
3055
- #: ../../admin/view/wp-slimstat-reports.php:710
3056
- #: ../../admin/view/wp-slimstat-reports.php:749
3057
- msgid "Pageviews"
3058
- msgstr ""
3059
-
3060
- #: ../../admin/view/index.php:136
3061
- msgid ""
3062
- "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
3063
- "WP SlimStat leverages this information to identify returning visitors. "
3064
- "Please note that visitors also include registered users."
3065
- msgstr ""
3066
-
3067
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:329
3068
- msgid "Take a sneak peek at what human visitors are doing on your website"
3069
- msgstr ""
3070
-
3071
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:265
3072
- #: ../../admin/view/index.php:268 ../../admin/view/index.php:298
3073
- #: ../../admin/view/index.php:329 ../../admin/view/right-now.php:166
3074
- msgid "Color codes"
3075
- msgstr ""
3076
-
3077
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:329
3078
- msgid "From a search result page"
3079
- msgstr ""
3080
-
3081
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:265
3082
- #: ../../admin/view/index.php:268 ../../admin/view/index.php:298
3083
- #: ../../admin/view/index.php:329 ../../admin/view/right-now.php:169
3084
- msgid "Known Users"
3085
- msgstr ""
3086
-
3087
- #: ../../admin/view/index.php:139 ../../admin/view/index.php:265
3088
- #: ../../admin/view/index.php:268 ../../admin/view/index.php:298
3089
- #: ../../admin/view/index.php:329 ../../admin/view/right-now.php:170
3090
- msgid "Other Humans"
3091
- msgstr ""
3092
-
3093
- #: ../../admin/view/index.php:145
3094
- msgid ""
3095
- "Unique sessions initiated by your visitors. If a user is inactive on your "
3096
- "site for 30 minutes or more, any future activity will be attributed to a new "
3097
- "session. Users that leave your site and return within 30 minutes will be "
3098
- "counted as part of the original session."
3099
- msgstr ""
3100
-
3101
- #: ../../admin/view/index.php:178
3102
- msgid "Human Visits"
3103
- msgstr ""
3104
-
3105
- #: ../../admin/view/index.php:184 ../../admin/view/index.php:220
3106
- msgid ""
3107
- "This report shows you what languages your users have installed on their "
3108
- "computers."
3109
- msgstr ""
3110
-
3111
- #: ../../admin/view/index.php:187 ../../admin/view/index.php:217
3112
- msgid ""
3113
- "A user agent is a generic term for any program used for accessing a website. "
3114
- "This includes browsers (such as Chrome), robots and spiders, and any other "
3115
- "software program that retrieves information from a website.<br><br>You can "
3116
- "ignore any given user agent by setting the corresponding filter under "
3117
- "Settings > SlimStat > Filters."
3118
  msgstr ""
3119
 
3120
- #: ../../admin/view/index.php:190
3121
- msgid ""
3122
- "Internet Service Provider: a company which provides other companies or "
3123
- "individuals with access to the Internet. Your DSL or cable internet service "
3124
- "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
3125
- "by setting the corresponding filter under Settings > SlimStat > Filters."
3126
  msgstr ""
3127
 
3128
- #: ../../admin/view/index.php:193 ../../admin/view/index.php:214
3129
- msgid ""
3130
- "Which operating systems do your visitors use? Optimizing your site for the "
3131
- "appropriate technical capabilities helps make your site more engaging and "
3132
- "usable and can result in higher conversion rates and more sales."
3133
  msgstr ""
3134
 
3135
- #: ../../admin/view/index.php:196
3136
- msgid ""
3137
- "This report shows the most common screen resolutions used by your visitors. "
3138
- "Knowing the most popular screen resolution of your visitors will help you "
3139
- "create content optimized for that resolution or you may opt for resolution-"
3140
- "independence."
3141
  msgstr ""
3142
 
3143
- #: ../../admin/view/index.php:199
3144
- msgid ""
3145
- "Which versions of Flash do your visitors have installed? Is Java supported "
3146
- "on your visitors' platforms?"
3147
  msgstr ""
3148
 
3149
- #: ../../admin/view/index.php:202 ../../admin/view/index.php:320
3150
- msgid ""
3151
- "You can configure WP SlimStat to ignore a specific Country by setting the "
3152
- "corresponding filter under Settings > SlimStat > Filters."
3153
  msgstr ""
3154
 
3155
- #: ../../admin/view/index.php:208
3156
- msgid ""
3157
- "You can ignore any specific Country by setting the corresponding filter "
3158
- "under Settings > SlimStat > Filters."
3159
  msgstr ""
3160
 
3161
- #: ../../admin/view/index.php:211
3162
- msgid ""
3163
- "This report shows the most recent screen resolutions used by your visitors. "
3164
- "Knowing the most popular screen resolution of your visitors will help you "
3165
- "create content optimized for that resolution or you may opt for resolution-"
3166
- "independence."
3167
  msgstr ""
3168
 
3169
- #: ../../admin/view/index.php:223
3170
- msgid ""
3171
- "This report shows you what user agent families (no version considered) are "
3172
- "popular among your visitors."
3173
  msgstr ""
3174
 
3175
- #: ../../admin/view/index.php:226
3176
- msgid ""
3177
- "This report shows you what operating system families (no version considered) "
3178
- "are popular among your visitors."
3179
  msgstr ""
3180
 
3181
- #: ../../admin/view/index.php:229
3182
- msgid "List of registered users who recently visited your website."
3183
  msgstr ""
3184
 
3185
- #: ../../admin/view/index.php:232
3186
- msgid "This report lists your most active registered users."
3187
  msgstr ""
3188
 
3189
- #: ../../admin/view/index.php:244
3190
- msgid "Average Pageviews per Visit"
3191
  msgstr ""
3192
 
3193
- #: ../../admin/view/index.php:247
3194
- msgid "This report lists the most recent posts viewed on your site, by title."
3195
  msgstr ""
3196
 
3197
- #: ../../admin/view/index.php:250
3198
- msgid ""
3199
- "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3200
- "left your site from the entrance (landing) page."
3201
  msgstr ""
3202
 
3203
- #: ../../admin/view/index.php:256
3204
- msgid ""
3205
- "The 404 or Not Found error message is a HTTP standard response code "
3206
- "indicating that the client was able to communicate with the server, but the "
3207
- "server could not find what was requested.<br><br>This report can be useful "
3208
- "to detect attack attempts, by looking at patterns in 404 URLs."
3209
  msgstr ""
3210
 
3211
- #: ../../admin/view/index.php:259
3212
- msgid "Searches performed using Wordpress' built-in search functionality."
3213
  msgstr ""
3214
 
3215
- #: ../../admin/view/index.php:262
3216
- msgid ""
3217
- "Categories provide a helpful way to group related posts together, and to "
3218
- "quickly tell readers what a post is about. Categories also make it easier "
3219
- "for people to find your content."
3220
  msgstr ""
3221
 
3222
- #: ../../admin/view/index.php:265 ../../admin/view/index.php:298
3223
- msgid ""
3224
- "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
3225
- "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
3226
- "link has an ID attribute associated to it."
3227
  msgstr ""
3228
 
3229
- #: ../../admin/view/index.php:268
3230
- msgid ""
3231
- "This report lists any <em>event</em> occurred on your website. Please refer "
3232
- "to the FAQ for more information on how to leverage this functionality."
3233
  msgstr ""
3234
 
3235
- #: ../../admin/view/index.php:271
3236
- msgid "This report lists the most popular posts on your site, by title."
3237
  msgstr ""
3238
 
3239
  # Unknown
3240
- #: ../../admin/view/index.php:351
3241
  msgid "c-xx"
3242
  msgstr "Unknown"
3243
 
3244
  # Afghanistan
3245
- #: ../../admin/view/index.php:351
3246
  msgid "c-af"
3247
  msgstr "Afghanistan"
3248
 
3249
  # Åland Islands
3250
- #: ../../admin/view/index.php:351
3251
  msgid "c-ax"
3252
  msgstr "Aland Islands"
3253
 
3254
  # Albania
3255
- #: ../../admin/view/index.php:351
3256
  msgid "c-al"
3257
  msgstr "Albania"
3258
 
3259
  # Algeria
3260
- #: ../../admin/view/index.php:351
3261
  msgid "c-dz"
3262
  msgstr "Algeria"
3263
 
3264
  # Andorra
3265
- #: ../../admin/view/index.php:351
3266
  msgid "c-ad"
3267
  msgstr "Andorra"
3268
 
3269
  # Angola
3270
- #: ../../admin/view/index.php:351
3271
  msgid "c-ao"
3272
  msgstr "Angola"
3273
 
3274
  # Anguilla
3275
- #: ../../admin/view/index.php:351
3276
  msgid "c-ai"
3277
  msgstr "Anguilla"
3278
 
3279
  # Antigua and Barbuda
3280
- #: ../../admin/view/index.php:351
3281
  msgid "c-ag"
3282
  msgstr "Antigua and Barbuda"
3283
 
3284
  # Argentina
3285
- #: ../../admin/view/index.php:351
3286
  msgid "c-ar"
3287
  msgstr "Argentina"
3288
 
3289
  # Armenia
3290
- #: ../../admin/view/index.php:351
3291
  msgid "c-am"
3292
  msgstr "Armenia"
3293
 
3294
  # Aruba
3295
- #: ../../admin/view/index.php:351
3296
  msgid "c-aw"
3297
  msgstr "Aruba"
3298
 
3299
  # Australia
3300
- #: ../../admin/view/index.php:351
3301
  msgid "c-au"
3302
  msgstr "Australia"
3303
 
3304
  # Austria
3305
- #: ../../admin/view/index.php:351
3306
  msgid "c-at"
3307
  msgstr "Austria"
3308
 
3309
  # Azerbaijan
3310
- #: ../../admin/view/index.php:351
3311
  msgid "c-az"
3312
  msgstr "Azerbaijan"
3313
 
3314
  # Bahamas
3315
- #: ../../admin/view/index.php:351
3316
  msgid "c-bs"
3317
  msgstr "Bahamas"
3318
 
3319
  # Bahrain
3320
- #: ../../admin/view/index.php:351
3321
  msgid "c-bh"
3322
  msgstr "Bahrain"
3323
 
3324
  # Bangladesh
3325
- #: ../../admin/view/index.php:351
3326
  msgid "c-bd"
3327
  msgstr "Bangladesh"
3328
 
3329
  # Barbados
3330
- #: ../../admin/view/index.php:351
3331
  msgid "c-bb"
3332
  msgstr "Barbados"
3333
 
3334
  # Belarus
3335
- #: ../../admin/view/index.php:351
3336
  msgid "c-by"
3337
  msgstr "Belarus"
3338
 
3339
  # Belgium
3340
- #: ../../admin/view/index.php:351
3341
  msgid "c-be"
3342
  msgstr "Belgium"
3343
 
3344
  # Belize
3345
- #: ../../admin/view/index.php:351
3346
  msgid "c-bz"
3347
  msgstr "Belize"
3348
 
3349
  # Benin
3350
- #: ../../admin/view/index.php:351
3351
  msgid "c-bj"
3352
  msgstr "Benin"
3353
 
3354
  # Bermuda
3355
- #: ../../admin/view/index.php:351
3356
  msgid "c-bm"
3357
  msgstr "Bermuda"
3358
 
3359
  # Bhutan
3360
- #: ../../admin/view/index.php:351
3361
  msgid "c-bt"
3362
  msgstr "Bhutan"
3363
 
3364
  # Bolivia
3365
- #: ../../admin/view/index.php:351
3366
  msgid "c-bo"
3367
  msgstr "Bolivia"
3368
 
3369
  # Bosnia and Herzegovina
3370
- #: ../../admin/view/index.php:351
3371
  msgid "c-ba"
3372
  msgstr "Bosnia and Herzegovina"
3373
 
3374
  # Botswana
3375
- #: ../../admin/view/index.php:351
3376
  msgid "c-bw"
3377
  msgstr "Botswana"
3378
 
3379
  # Brazil
3380
- #: ../../admin/view/index.php:351
3381
  msgid "c-br"
3382
  msgstr "Brazil"
3383
 
3384
  # Brunei Darussalam
3385
- #: ../../admin/view/index.php:351
3386
  msgid "c-bn"
3387
  msgstr "Brunei Darussalam"
3388
 
3389
  # Bulgaria
3390
- #: ../../admin/view/index.php:351
3391
  msgid "c-bg"
3392
  msgstr "Bulgaria"
3393
 
3394
  # Burkina Faso
3395
- #: ../../admin/view/index.php:351
3396
  msgid "c-bf"
3397
  msgstr "Burkina Faso"
3398
 
3399
  # Burundi
3400
- #: ../../admin/view/index.php:351
3401
  msgid "c-bi"
3402
  msgstr "Burundi"
3403
 
3404
  # Cambodia
3405
- #: ../../admin/view/index.php:351
3406
  msgid "c-kh"
3407
  msgstr "Cambodia"
3408
 
3409
  # Cameroon
3410
- #: ../../admin/view/index.php:351
3411
  msgid "c-cm"
3412
  msgstr "Cameroon"
3413
 
3414
  # Canada
3415
- #: ../../admin/view/index.php:351
3416
  msgid "c-ca"
3417
  msgstr "Canada"
3418
 
3419
  # Cape Verde
3420
- #: ../../admin/view/index.php:351
3421
  msgid "c-cv"
3422
  msgstr "Cape Verde"
3423
 
3424
  # Cayman Islands
3425
- #: ../../admin/view/index.php:351
3426
  msgid "c-ky"
3427
  msgstr "Cayman Islands"
3428
 
3429
  # Central African Republic
3430
- #: ../../admin/view/index.php:351
3431
  msgid "c-cf"
3432
  msgstr "Central African Republic"
3433
 
3434
  # Chad
3435
- #: ../../admin/view/index.php:351
3436
  msgid "c-td"
3437
  msgstr "Chad"
3438
 
3439
  # Chile
3440
- #: ../../admin/view/index.php:351
3441
  msgid "c-cl"
3442
  msgstr "Chile"
3443
 
3444
  # China
3445
- #: ../../admin/view/index.php:351
3446
  msgid "c-cn"
3447
  msgstr "China"
3448
 
3449
  # Colombia
3450
- #: ../../admin/view/index.php:351
3451
  msgid "c-co"
3452
  msgstr "Colombia"
3453
 
3454
  # Comoros
3455
- #: ../../admin/view/index.php:351
3456
  msgid "c-km"
3457
  msgstr "Comoros"
3458
 
3459
  # Congo
3460
- #: ../../admin/view/index.php:351
3461
  msgid "c-cg"
3462
  msgstr "Congo"
3463
 
3464
  # The Democratic Republic of the Congo
3465
- #: ../../admin/view/index.php:351
3466
  msgid "c-cd"
3467
  msgstr "The Democratic Republic of the Congo"
3468
 
3469
  # Costa Rica
3470
- #: ../../admin/view/index.php:351
3471
  msgid "c-cr"
3472
  msgstr "Costa Rica"
3473
 
3474
  # Côte d'Ivoire
3475
- #: ../../admin/view/index.php:351
3476
  msgid "c-ci"
3477
  msgstr "Côte d'Ivoire"
3478
 
3479
  # Croatia
3480
- #: ../../admin/view/index.php:351
3481
  msgid "c-hr"
3482
  msgstr "Croatia"
3483
 
3484
  # Cuba
3485
- #: ../../admin/view/index.php:351
3486
  msgid "c-cu"
3487
  msgstr "Cuba"
3488
 
3489
  # Cyprus
3490
- #: ../../admin/view/index.php:351
3491
  msgid "c-cy"
3492
  msgstr "Cyprus"
3493
 
3494
  # Czech Republic
3495
- #: ../../admin/view/index.php:351
3496
  msgid "c-cz"
3497
  msgstr "Czech Republic"
3498
 
3499
  # Denmark
3500
- #: ../../admin/view/index.php:351
3501
  msgid "c-dk"
3502
  msgstr "Denmark"
3503
 
3504
  # Djibouti
3505
- #: ../../admin/view/index.php:351
3506
  msgid "c-dj"
3507
  msgstr "Djibouti"
3508
 
3509
  # Dominica
3510
- #: ../../admin/view/index.php:351
3511
  msgid "c-dm"
3512
  msgstr "Dominica"
3513
 
3514
  # Dominican Republic
3515
- #: ../../admin/view/index.php:351
3516
  msgid "c-do"
3517
  msgstr "Dominican Republic"
3518
 
3519
  # Ecuador
3520
- #: ../../admin/view/index.php:351
3521
  msgid "c-ec"
3522
  msgstr "Ecuador"
3523
 
3524
  # Egypt
3525
- #: ../../admin/view/index.php:351
3526
  msgid "c-eg"
3527
  msgstr "Egypt"
3528
 
3529
  # El Salvador
3530
- #: ../../admin/view/index.php:351
3531
  msgid "c-sv"
3532
  msgstr "El Salvador"
3533
 
3534
  # Equatorial Guinea
3535
- #: ../../admin/view/index.php:351
3536
  msgid "c-gq"
3537
  msgstr "Equatorial Guinea"
3538
 
3539
  # Eritrea
3540
- #: ../../admin/view/index.php:351
3541
  msgid "c-er"
3542
  msgstr "Eritrea"
3543
 
3544
  # Estonia
3545
- #: ../../admin/view/index.php:351
3546
  msgid "c-ee"
3547
  msgstr "Estonia"
3548
 
3549
  # Ethiopia
3550
- #: ../../admin/view/index.php:351
3551
  msgid "c-et"
3552
  msgstr "Ethiopia"
3553
 
3554
  # Faroe Islands
3555
- #: ../../admin/view/index.php:351
3556
  msgid "c-fo"
3557
  msgstr "Faroe Islands"
3558
 
3559
  # Falkland Islands (Malvinas)
3560
- #: ../../admin/view/index.php:351
3561
  msgid "c-fk"
3562
  msgstr "Falkland Islands (Malvinas)"
3563
 
3564
  # Fiji
3565
- #: ../../admin/view/index.php:351
3566
  msgid "c-fj"
3567
  msgstr "Fiji"
3568
 
3569
  # Finland
3570
- #: ../../admin/view/index.php:351
3571
  msgid "c-fi"
3572
  msgstr "Finland"
3573
 
3574
  # France
3575
- #: ../../admin/view/index.php:351
3576
  msgid "c-fr"
3577
  msgstr "France"
3578
 
3579
  # French Guiana
3580
- #: ../../admin/view/index.php:351
3581
  msgid "c-gf"
3582
  msgstr "French Guiana"
3583
 
3584
  # Gabon
3585
- #: ../../admin/view/index.php:351
3586
  msgid "c-ga"
3587
  msgstr "Gabon"
3588
 
3589
  # Gambia
3590
- #: ../../admin/view/index.php:351
3591
  msgid "c-gm"
3592
  msgstr "Gambia"
3593
 
3594
  # Georgia
3595
- #: ../../admin/view/index.php:351
3596
  msgid "c-ge"
3597
  msgstr "Georgia"
3598
 
3599
  # Germany
3600
- #: ../../admin/view/index.php:351
3601
  msgid "c-de"
3602
  msgstr "Germany"
3603
 
3604
  # Ghana
3605
- #: ../../admin/view/index.php:351
3606
  msgid "c-gh"
3607
  msgstr "Ghana"
3608
 
3609
  # Greece
3610
- #: ../../admin/view/index.php:351
3611
  msgid "c-gr"
3612
  msgstr "Greece"
3613
 
3614
  # Greenland
3615
- #: ../../admin/view/index.php:351
3616
  msgid "c-gl"
3617
  msgstr "Greenland"
3618
 
3619
  # Grenada
3620
- #: ../../admin/view/index.php:351
3621
  msgid "c-gd"
3622
  msgstr "Grenada"
3623
 
3624
  # Guadeloupe
3625
- #: ../../admin/view/index.php:351
3626
  msgid "c-gp"
3627
  msgstr "Guadeloupe"
3628
 
3629
  # Guatemala
3630
- #: ../../admin/view/index.php:351
3631
  msgid "c-gt"
3632
  msgstr "Guatemala"
3633
 
3634
  # Guinea
3635
- #: ../../admin/view/index.php:351
3636
  msgid "c-gn"
3637
  msgstr "Guinea"
3638
 
3639
  # Guinea-Bissau
3640
- #: ../../admin/view/index.php:351
3641
  msgid "c-gw"
3642
  msgstr "Guinea-Bissau"
3643
 
3644
  # Guyana
3645
- #: ../../admin/view/index.php:351
3646
  msgid "c-gy"
3647
  msgstr "Guyana"
3648
 
3649
  # Haiti
3650
- #: ../../admin/view/index.php:351
3651
  msgid "c-ht"
3652
  msgstr "Haiti"
3653
 
3654
  # Honduras
3655
- #: ../../admin/view/index.php:351
3656
  msgid "c-hn"
3657
  msgstr "Honduras"
3658
 
3659
  # Hong Kong
3660
- #: ../../admin/view/index.php:351
3661
  msgid "c-hk"
3662
  msgstr "Hong Kong"
3663
 
3664
  # Hungary
3665
- #: ../../admin/view/index.php:351
3666
  msgid "c-hu"
3667
  msgstr "Hungary"
3668
 
3669
  # Iceland
3670
- #: ../../admin/view/index.php:351
3671
  msgid "c-is"
3672
  msgstr "Iceland"
3673
 
3674
  # India
3675
- #: ../../admin/view/index.php:351
3676
  msgid "c-in"
3677
  msgstr "India"
3678
 
3679
  # Indonesia
3680
- #: ../../admin/view/index.php:351
3681
  msgid "c-id"
3682
  msgstr "Indonesia"
3683
 
3684
  # Islamic Republic of Iran
3685
- #: ../../admin/view/index.php:351
3686
  msgid "c-ir"
3687
  msgstr "Islamic Republic of Iran"
3688
 
3689
  # Iraq
3690
- #: ../../admin/view/index.php:351
3691
  msgid "c-iq"
3692
  msgstr "Iraq"
3693
 
3694
  # Ireland
3695
- #: ../../admin/view/index.php:351
3696
  msgid "c-ie"
3697
  msgstr "Ireland"
3698
 
3699
  # Israel
3700
- #: ../../admin/view/index.php:351
3701
  msgid "c-il"
3702
  msgstr "Israel"
3703
 
3704
  # Italy
3705
- #: ../../admin/view/index.php:351
3706
  msgid "c-it"
3707
  msgstr "Italy"
3708
 
3709
  # Jamaica
3710
- #: ../../admin/view/index.php:351
3711
  msgid "c-jm"
3712
  msgstr "Jamaica"
3713
 
3714
  # Japan
3715
- #: ../../admin/view/index.php:351
3716
  msgid "c-jp"
3717
  msgstr "Japan"
3718
 
3719
  # Jordan
3720
- #: ../../admin/view/index.php:351
3721
  msgid "c-jo"
3722
  msgstr "Jordan"
3723
 
3724
  # Kazakhstan
3725
- #: ../../admin/view/index.php:351
3726
  msgid "c-kz"
3727
  msgstr "Kazakhstan"
3728
 
3729
  # Kenya
3730
- #: ../../admin/view/index.php:351
3731
  msgid "c-ke"
3732
  msgstr "Kenya"
3733
 
3734
  # Nauru
3735
- #: ../../admin/view/index.php:351
3736
  msgid "c-nr"
3737
  msgstr "Nauru"
3738
 
3739
  # Democratic People's Republic of Korea
3740
- #: ../../admin/view/index.php:351
3741
  msgid "c-kp"
3742
  msgstr "Democratic People's Republic of Korea"
3743
 
3744
  # Republic of Korea
3745
- #: ../../admin/view/index.php:351
3746
  msgid "c-kr"
3747
  msgstr "Republic of Korea"
3748
 
3749
- #: ../../admin/view/index.php:351
3750
  msgid "c-kv"
3751
  msgstr "Kosovo"
3752
 
3753
  # Kuwait
3754
- #: ../../admin/view/index.php:351
3755
  msgid "c-kw"
3756
  msgstr "Kuwait"
3757
 
3758
  # Kyrgyzstan
3759
- #: ../../admin/view/index.php:351
3760
  msgid "c-kg"
3761
  msgstr "Kyrgyzstan"
3762
 
3763
  # Lao People's Democratic Republic
3764
- #: ../../admin/view/index.php:351
3765
  msgid "c-la"
3766
  msgstr "Lao People's Democratic Republic"
3767
 
3768
  # Latvia
3769
- #: ../../admin/view/index.php:351
3770
  msgid "c-lv"
3771
  msgstr "Latvia"
3772
 
3773
  # Lebanon
3774
- #: ../../admin/view/index.php:351
3775
  msgid "c-lb"
3776
  msgstr "Lebanon"
3777
 
3778
  # Lesotho
3779
- #: ../../admin/view/index.php:351
3780
  msgid "c-ls"
3781
  msgstr "Lesotho"
3782
 
3783
  # Liberia
3784
- #: ../../admin/view/index.php:351
3785
  msgid "c-lr"
3786
  msgstr "Liberia"
3787
 
3788
  # Libyan Arab Jamahiriya
3789
- #: ../../admin/view/index.php:351
3790
  msgid "c-ly"
3791
  msgstr "Libyan Arab Jamahiriya"
3792
 
3793
  # Liechtenstein
3794
- #: ../../admin/view/index.php:351
3795
  msgid "c-li"
3796
  msgstr "Liechtenstein"
3797
 
3798
  # Lithuania
3799
- #: ../../admin/view/index.php:351
3800
  msgid "c-lt"
3801
  msgstr "Lithuania"
3802
 
3803
  # Luxembourg
3804
- #: ../../admin/view/index.php:351
3805
  msgid "c-lu"
3806
  msgstr "Luxembourg"
3807
 
3808
  # The Former Yugoslav Republic of Macedonia
3809
- #: ../../admin/view/index.php:351
3810
  msgid "c-mk"
3811
  msgstr "The Former Yugoslav Republic of Macedonia"
3812
 
3813
  # Madagascar
3814
- #: ../../admin/view/index.php:351
3815
  msgid "c-mg"
3816
  msgstr "Madagascar"
3817
 
3818
  # Malawi
3819
- #: ../../admin/view/index.php:351
3820
  msgid "c-mw"
3821
  msgstr "Malawi"
3822
 
3823
  # Malaysia
3824
- #: ../../admin/view/index.php:351
3825
  msgid "c-my"
3826
  msgstr "Malaysia"
3827
 
3828
  # Mali
3829
- #: ../../admin/view/index.php:351
3830
  msgid "c-ml"
3831
  msgstr "Mali"
3832
 
3833
  # Malta
3834
- #: ../../admin/view/index.php:351
3835
  msgid "c-mt"
3836
  msgstr "Malta"
3837
 
3838
  # Martinique
3839
- #: ../../admin/view/index.php:351
3840
  msgid "c-mq"
3841
  msgstr "Martinique"
3842
 
3843
  # Mauritania
3844
- #: ../../admin/view/index.php:351
3845
  msgid "c-mr"
3846
  msgstr "Mauritania"
3847
 
3848
  # Mauritius
3849
- #: ../../admin/view/index.php:351
3850
  msgid "c-mu"
3851
  msgstr "Mauritius"
3852
 
3853
  # Mexico
3854
- #: ../../admin/view/index.php:351
3855
  msgid "c-mx"
3856
  msgstr "Mexico"
3857
 
3858
  # Moldova
3859
- #: ../../admin/view/index.php:351
3860
  msgid "c-md"
3861
  msgstr "Moldova"
3862
 
3863
  # Mongolia
3864
- #: ../../admin/view/index.php:351
3865
  msgid "c-mn"
3866
  msgstr "Mongolia"
3867
 
3868
  # Montenegro
3869
- #: ../../admin/view/index.php:351
3870
  msgid "c-me"
3871
  msgstr "Montenegro"
3872
 
3873
  # Montserrat
3874
- #: ../../admin/view/index.php:351
3875
  msgid "c-ms"
3876
  msgstr "Montserrat"
3877
 
3878
  # Morocco
3879
- #: ../../admin/view/index.php:351
3880
  msgid "c-ma"
3881
  msgstr "Morocco"
3882
 
3883
  # Mozambique
3884
- #: ../../admin/view/index.php:351
3885
  msgid "c-mz"
3886
  msgstr "Mozambique"
3887
 
3888
  # Myanmar
3889
- #: ../../admin/view/index.php:351
3890
  msgid "c-mm"
3891
  msgstr "Myanmar"
3892
 
3893
  # Namibia
3894
- #: ../../admin/view/index.php:351
3895
  msgid "c-na"
3896
  msgstr "Namibia"
3897
 
3898
  # Nepal
3899
- #: ../../admin/view/index.php:351
3900
  msgid "c-np"
3901
  msgstr "Nepal"
3902
 
3903
  # Netherlands
3904
- #: ../../admin/view/index.php:351
3905
  msgid "c-nl"
3906
  msgstr "Netherlands"
3907
 
3908
  # New Caledonia
3909
- #: ../../admin/view/index.php:351
3910
  msgid "c-nc"
3911
  msgstr "New Caledonia"
3912
 
3913
  # New Zealand
3914
- #: ../../admin/view/index.php:351
3915
  msgid "c-nz"
3916
  msgstr "New Zealand"
3917
 
3918
  # Nicaragua
3919
- #: ../../admin/view/index.php:351
3920
  msgid "c-ni"
3921
  msgstr "Nicaragua"
3922
 
3923
  # Niger
3924
- #: ../../admin/view/index.php:351
3925
  msgid "c-ne"
3926
  msgstr "Niger"
3927
 
3928
  # Nigeria
3929
- #: ../../admin/view/index.php:351
3930
  msgid "c-ng"
3931
  msgstr "Nigeria"
3932
 
3933
  # Norway
3934
- #: ../../admin/view/index.php:351
3935
  msgid "c-no"
3936
  msgstr "Norway"
3937
 
3938
  # Oman
3939
- #: ../../admin/view/index.php:351
3940
  msgid "c-om"
3941
  msgstr "Oman"
3942
 
3943
  # Pakistan
3944
- #: ../../admin/view/index.php:351
3945
  msgid "c-pk"
3946
  msgstr "Pakistan"
3947
 
3948
  # Palau
3949
- #: ../../admin/view/index.php:351
3950
  msgid "c-pw"
3951
  msgstr "Palau"
3952
 
3953
  # Occupied Palestinian Territory
3954
- #: ../../admin/view/index.php:351
3955
  msgid "c-ps"
3956
  msgstr "Occupied Palestinian Territory"
3957
 
3958
  # Panama
3959
- #: ../../admin/view/index.php:351
3960
  msgid "c-pa"
3961
  msgstr "Panama"
3962
 
3963
  # Papua New Guinea
3964
- #: ../../admin/view/index.php:351
3965
  msgid "c-pg"
3966
  msgstr "Papua New Guinea"
3967
 
3968
  # Paraguay
3969
- #: ../../admin/view/index.php:351
3970
  msgid "c-py"
3971
  msgstr "Paraguay"
3972
 
3973
  # Peru
3974
- #: ../../admin/view/index.php:351
3975
  msgid "c-pe"
3976
  msgstr "Peru"
3977
 
3978
  # Philippines
3979
- #: ../../admin/view/index.php:351
3980
  msgid "c-ph"
3981
  msgstr "Philippines"
3982
 
3983
  # Poland
3984
- #: ../../admin/view/index.php:351
3985
  msgid "c-pl"
3986
  msgstr "Poland"
3987
 
3988
  # Portugal
3989
- #: ../../admin/view/index.php:351
3990
  msgid "c-pt"
3991
  msgstr "Portugal"
3992
 
3993
  # Puerto Rico
3994
- #: ../../admin/view/index.php:351
3995
  msgid "c-pr"
3996
  msgstr "Puerto Rico"
3997
 
3998
  # Qatar
3999
- #: ../../admin/view/index.php:351
4000
  msgid "c-qa"
4001
  msgstr "Qatar"
4002
 
4003
  # Réunion
4004
- #: ../../admin/view/index.php:351
4005
  msgid "c-re"
4006
  msgstr "Réunion"
4007
 
4008
  # Romania
4009
- #: ../../admin/view/index.php:351
4010
  msgid "c-ro"
4011
  msgstr "Romania"
4012
 
4013
  # Russian Federation
4014
- #: ../../admin/view/index.php:351
4015
  msgid "c-ru"
4016
  msgstr "Russian Federation"
4017
 
4018
  # Rwanda
4019
- #: ../../admin/view/index.php:351
4020
  msgid "c-rw"
4021
  msgstr "Rwanda"
4022
 
4023
  # Saint Kitts and Nevis
4024
- #: ../../admin/view/index.php:351
4025
  msgid "c-kn"
4026
  msgstr "Saint Kitts and Nevis"
4027
 
4028
  # Saint Lucia
4029
- #: ../../admin/view/index.php:351
4030
  msgid "c-lc"
4031
  msgstr "Saint Lucia"
4032
 
4033
  # Saint Martin
4034
- #: ../../admin/view/index.php:351
4035
  msgid "c-mf"
4036
  msgstr "Saint Martin"
4037
 
4038
  # Saint Vincent and the Grenadines
4039
- #: ../../admin/view/index.php:351
4040
  msgid "c-vc"
4041
  msgstr "Saint Vincent and the Grenadines"
4042
 
4043
  # Samoa
4044
- #: ../../admin/view/index.php:351
4045
  msgid "c-ws"
4046
  msgstr "Samoa"
4047
 
4048
  # Sao Tome and Principe
4049
- #: ../../admin/view/index.php:351
4050
  msgid "c-st"
4051
  msgstr "Sao Tome and Principe"
4052
 
4053
  # Saudi Arabia
4054
- #: ../../admin/view/index.php:351
4055
  msgid "c-sa"
4056
  msgstr "Saudi Arabia"
4057
 
4058
  # Senegal
4059
- #: ../../admin/view/index.php:351
4060
  msgid "c-sn"
4061
  msgstr "Senegal"
4062
 
4063
  # Serbia
4064
- #: ../../admin/view/index.php:351
4065
  msgid "c-rs"
4066
  msgstr "Serbia"
4067
 
4068
  # Sierra Leone
4069
- #: ../../admin/view/index.php:351
4070
  msgid "c-sl"
4071
  msgstr "Sierra Leone"
4072
 
4073
  # Singapore
4074
- #: ../../admin/view/index.php:351
4075
  msgid "c-sg"
4076
  msgstr "Singapore"
4077
 
4078
  # Slovakia
4079
- #: ../../admin/view/index.php:351
4080
  msgid "c-sk"
4081
  msgstr "Slovakia"
4082
 
4083
  # Slovenia
4084
- #: ../../admin/view/index.php:351
4085
  msgid "c-si"
4086
  msgstr "Slovenia"
4087
 
4088
  # Solomon Islands
4089
- #: ../../admin/view/index.php:351
4090
  msgid "c-sb"
4091
  msgstr "Solomon Islands"
4092
 
4093
  # Somalia
4094
- #: ../../admin/view/index.php:351
4095
  msgid "c-so"
4096
  msgstr "Somalia"
4097
 
4098
  # South Africa
4099
- #: ../../admin/view/index.php:351
4100
  msgid "c-za"
4101
  msgstr "South Africa"
4102
 
4103
  # South Georgia and the South Sandwich Islands
4104
- #: ../../admin/view/index.php:351
4105
  msgid "c-gs"
4106
  msgstr "South Georgia and the South Sandwich Islands"
4107
 
4108
  # Spain
4109
- #: ../../admin/view/index.php:351
4110
  msgid "c-es"
4111
  msgstr "Spain"
4112
 
4113
  # Sri Lanka
4114
- #: ../../admin/view/index.php:351
4115
  msgid "c-lk"
4116
  msgstr "Sri Lanka"
4117
 
4118
  # Sudan
4119
- #: ../../admin/view/index.php:351
4120
  msgid "c-sd"
4121
  msgstr "Sudan"
4122
 
4123
- #: ../../admin/view/index.php:351
4124
  msgid "c-ss"
4125
  msgstr "South Sudan"
4126
 
4127
  # Suriname
4128
- #: ../../admin/view/index.php:351
4129
  msgid "c-sr"
4130
  msgstr "Suriname"
4131
 
4132
  # Svalbard and Jan Mayen
4133
- #: ../../admin/view/index.php:351
4134
  msgid "c-sj"
4135
  msgstr "Svalbard and Jan Mayen"
4136
 
4137
  # Swaziland
4138
- #: ../../admin/view/index.php:351
4139
  msgid "c-sz"
4140
  msgstr "Swaziland"
4141
 
4142
  # Sweden
4143
- #: ../../admin/view/index.php:351
4144
  msgid "c-se"
4145
  msgstr "Sweden"
4146
 
4147
  # Switzerland
4148
- #: ../../admin/view/index.php:351
4149
  msgid "c-ch"
4150
  msgstr "Switzerland"
4151
 
4152
  # Syrian Arab Republic
4153
- #: ../../admin/view/index.php:351
4154
  msgid "c-sy"
4155
  msgstr "Syrian Arab Republic"
4156
 
4157
  # Taiwan, Province of China
4158
- #: ../../admin/view/index.php:351
4159
  msgid "c-tw"
4160
  msgstr "Taiwan"
4161
 
4162
  # Tajikistan
4163
- #: ../../admin/view/index.php:351
4164
  msgid "c-tj"
4165
  msgstr "Tajikistan"
4166
 
4167
  # United Republic of Tanzania
4168
- #: ../../admin/view/index.php:351
4169
  msgid "c-tz"
4170
  msgstr "United Republic of Tanzania"
4171
 
4172
  # Thailand
4173
- #: ../../admin/view/index.php:351
4174
  msgid "c-th"
4175
  msgstr "Thailand"
4176
 
4177
  # Timor-Leste
4178
- #: ../../admin/view/index.php:351
4179
  msgid "c-tl"
4180
  msgstr "Timor-Leste"
4181
 
4182
  # Togo
4183
- #: ../../admin/view/index.php:351
4184
  msgid "c-tg"
4185
  msgstr "Togo"
4186
 
4187
  # Tonga
4188
- #: ../../admin/view/index.php:351
4189
  msgid "c-to"
4190
  msgstr "Tonga"
4191
 
4192
  # Trinidad and Tobago
4193
- #: ../../admin/view/index.php:351
4194
  msgid "c-tt"
4195
  msgstr "Trinidad and Tobago"
4196
 
4197
  # Tunisia
4198
- #: ../../admin/view/index.php:351
4199
  msgid "c-tn"
4200
  msgstr "Tunisia"
4201
 
4202
  # Turkey
4203
- #: ../../admin/view/index.php:351
4204
  msgid "c-tr"
4205
  msgstr "Turkey"
4206
 
4207
  # Turkmenistan
4208
- #: ../../admin/view/index.php:351
4209
  msgid "c-tm"
4210
  msgstr "Turkmenistan"
4211
 
4212
  # Turks and Caicos Islands
4213
- #: ../../admin/view/index.php:351
4214
  msgid "c-tc"
4215
  msgstr "Turks and Caicos Islands"
4216
 
4217
  # Uganda
4218
- #: ../../admin/view/index.php:351
4219
  msgid "c-ug"
4220
  msgstr "Uganda"
4221
 
4222
  # Ukraine
4223
- #: ../../admin/view/index.php:351
4224
  msgid "c-ua"
4225
  msgstr "Ukraine"
4226
 
4227
  # United Arab Emirates
4228
- #: ../../admin/view/index.php:351
4229
  msgid "c-ae"
4230
  msgstr "United Arab Emirates"
4231
 
4232
  # United Kingdom
4233
- #: ../../admin/view/index.php:351
4234
  msgid "c-gb"
4235
  msgstr "United Kingdom"
4236
 
4237
  # United States
4238
- #: ../../admin/view/index.php:351
4239
  msgid "c-us"
4240
  msgstr "United States"
4241
 
4242
  # Uruguay
4243
- #: ../../admin/view/index.php:351
4244
  msgid "c-uy"
4245
  msgstr "Uruguay"
4246
 
4247
  # Uzbekistan
4248
- #: ../../admin/view/index.php:351
4249
  msgid "c-uz"
4250
  msgstr "Uzbekistan"
4251
 
4252
  # Vanuatu
4253
- #: ../../admin/view/index.php:351
4254
  msgid "c-vu"
4255
  msgstr "Vanuatu"
4256
 
4257
  # Venezuela
4258
- #: ../../admin/view/index.php:351
4259
  msgid "c-ve"
4260
  msgstr "Venezuela"
4261
 
4262
  # Viet Nam
4263
- #: ../../admin/view/index.php:351
4264
  msgid "c-vn"
4265
  msgstr "Viet Nam"
4266
 
4267
  # British Virgin Islands
4268
- #: ../../admin/view/index.php:351
4269
  msgid "c-vg"
4270
  msgstr "British Virgin Islands"
4271
 
4272
  # U.S. Virgin Islands
4273
- #: ../../admin/view/index.php:351
4274
  msgid "c-vi"
4275
  msgstr "U.S. Virgin Islands"
4276
 
4277
  # Western Sahara
4278
- #: ../../admin/view/index.php:351
4279
  msgid "c-eh"
4280
  msgstr "Western Sahara"
4281
 
4282
  # Yemen
4283
- #: ../../admin/view/index.php:351
4284
  msgid "c-ye"
4285
  msgstr "Yemen"
4286
 
4287
  # Zambia
4288
- #: ../../admin/view/index.php:351
4289
  msgid "c-zm"
4290
  msgstr "Zambia"
4291
 
4292
  # Zimbabwe
4293
- #: ../../admin/view/index.php:351
4294
  msgid "c-zw"
4295
  msgstr "Zimbabwe"
4296
 
4297
  # Guernsey
4298
- #: ../../admin/view/index.php:351
4299
  msgid "c-gg"
4300
  msgstr "Guernsey"
4301
 
4302
  # Jersey
4303
- #: ../../admin/view/index.php:351
4304
  msgid "c-je"
4305
  msgstr "Jersey"
4306
 
4307
  # Isle of Man
4308
- #: ../../admin/view/index.php:351
4309
  msgid "c-im"
4310
  msgstr "Isle of Man"
4311
 
4312
  # Maldives
4313
- #: ../../admin/view/index.php:351
4314
  msgid "c-mv"
4315
  msgstr "Maldives"
4316
 
 
 
 
 
4317
  # Unknown
4318
- #: ../../admin/view/index.php:358 ../../admin/view/right-now.php:94
4319
- #: ../../admin/view/wp-slimstat-reports.php:409
4320
- #: ../../admin/view/wp-slimstat-reports.php:548
4321
  msgid "c-"
4322
  msgstr "Unknown"
4323
 
4324
- #: ../../admin/view/index.php:366 ../../admin/view/right-now.php:54
4325
- #: ../../admin/view/wp-slimstat-reports.php:372
4326
- #: ../../admin/view/wp-slimstat-reports.php:511
4327
  msgid "No data to display"
4328
  msgstr ""
4329
 
4330
- #: ../../admin/view/index.php:416
4331
  msgid "Your report here"
4332
  msgstr ""
4333
 
4334
- #: ../../admin/view/index.php:418
4335
  msgid ""
4336
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
4337
  "Just write a new plugin that retrieves the desired information from the "
@@ -4340,8 +3952,201 @@ msgid ""
4340
  "slimstat?forum_id=10\" target=\"_blank\">support forum</a>."
4341
  msgstr ""
4342
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4343
  #: ../../admin/view/right-now.php:38
4344
- #: ../../admin/view/wp-slimstat-reports.php:304
4345
  msgid "Refresh"
4346
  msgstr ""
4347
 
@@ -4359,7 +4164,7 @@ msgid "refreshing in"
4359
  msgstr ""
4360
 
4361
  #: ../../admin/view/right-now.php:73 ../../admin/view/right-now.php:82
4362
- #: ../../admin/view/wp-slimstat-reports.php:470
4363
  #, php-format
4364
  msgid "Filter results where IP equals %s"
4365
  msgstr ""
@@ -4375,7 +4180,7 @@ msgid "Filter results where ther user's real IP equals %s"
4375
  msgstr ""
4376
 
4377
  #: ../../admin/view/right-now.php:94
4378
- #: ../../admin/view/wp-slimstat-reports.php:548
4379
  msgid "Country"
4380
  msgstr ""
4381
 
@@ -4402,16 +4207,16 @@ msgid "Filter results where screen resolution equals %s"
4402
  msgstr ""
4403
 
4404
  #: ../../admin/view/right-now.php:144
4405
- #: ../../admin/view/wp-slimstat-reports.php:463
4406
- #: ../../admin/view/wp-slimstat-reports.php:467
4407
- #: ../../admin/view/wp-slimstat-reports.php:530
4408
- #: ../../admin/view/wp-slimstat-reports.php:558
4409
- #: ../../admin/view/wp-slimstat-reports.php:574
4410
  msgid "Open this URL in a new window"
4411
  msgstr ""
4412
 
4413
  #: ../../admin/view/right-now.php:144
4414
- #: ../../admin/view/wp-slimstat-reports.php:574
4415
  #, php-format
4416
  msgid "Filter results where resource equals %s"
4417
  msgstr ""
@@ -4458,8 +4263,8 @@ msgid "About WP SlimStat"
4458
  msgstr ""
4459
 
4460
  #: ../../admin/view/wp-slimstat-reports.php:79
4461
- #: ../../admin/view/wp-slimstat-reports.php:92
4462
- #: ../../admin/view/wp-slimstat-reports.php:111
4463
  msgid "Summary"
4464
  msgstr ""
4465
 
@@ -4468,519 +4273,526 @@ msgid "Recent Known Visitors"
4468
  msgstr ""
4469
 
4470
  #: ../../admin/view/wp-slimstat-reports.php:81
4471
- #: ../../admin/view/wp-slimstat-reports.php:116
4472
  msgid "Spy View"
4473
  msgstr ""
4474
 
4475
  #: ../../admin/view/wp-slimstat-reports.php:82
4476
- #: ../../admin/view/wp-slimstat-reports.php:117
4477
  msgid "Recent Search Terms"
4478
  msgstr ""
4479
 
4480
  #: ../../admin/view/wp-slimstat-reports.php:83
4481
- msgid "Top Languages - Just Visitors"
4482
  msgstr ""
4483
 
4484
  #: ../../admin/view/wp-slimstat-reports.php:84
4485
- msgid "Top Pages"
 
4486
  msgstr ""
4487
 
4488
  #: ../../admin/view/wp-slimstat-reports.php:85
4489
- #: ../../admin/view/wp-slimstat-reports.php:101
4490
- #: ../../admin/view/wp-slimstat-reports.php:118
4491
- msgid "Recent Countries"
4492
  msgstr ""
4493
 
4494
  #: ../../admin/view/wp-slimstat-reports.php:86
4495
- #: ../../admin/view/wp-slimstat-reports.php:114
4496
- msgid "Top Traffic Sources"
 
4497
  msgstr ""
4498
 
4499
  #: ../../admin/view/wp-slimstat-reports.php:87
4500
- msgid "Top Known Visitors"
 
 
4501
  msgstr ""
4502
 
4503
  #: ../../admin/view/wp-slimstat-reports.php:88
4504
- #: ../../admin/view/wp-slimstat-reports.php:112
4505
- #: ../../admin/view/wp-slimstat-reports.php:132
4506
- msgid "Top Search Terms"
4507
  msgstr ""
4508
 
4509
  #: ../../admin/view/wp-slimstat-reports.php:89
4510
- #: ../../admin/view/wp-slimstat-reports.php:99
4511
- #: ../../admin/view/wp-slimstat-reports.php:113
4512
- msgid "Top Countries"
4513
  msgstr ""
4514
 
4515
  #: ../../admin/view/wp-slimstat-reports.php:90
4516
- msgid "Top Downloads"
4517
- msgstr ""
4518
-
4519
- #: ../../admin/view/wp-slimstat-reports.php:91
4520
  msgid "Human Visits (chart)"
4521
  msgstr ""
4522
 
4523
- #: ../../admin/view/wp-slimstat-reports.php:93
4524
  msgid "Top Languages"
4525
  msgstr ""
4526
 
4527
- #: ../../admin/view/wp-slimstat-reports.php:94
4528
  msgid "Top Browsers"
4529
  msgstr ""
4530
 
4531
- #: ../../admin/view/wp-slimstat-reports.php:95
4532
  msgid "Top Service Providers"
4533
  msgstr ""
4534
 
4535
- #: ../../admin/view/wp-slimstat-reports.php:96
4536
  msgid "Top Operating Systems"
4537
  msgstr ""
4538
 
4539
- #: ../../admin/view/wp-slimstat-reports.php:97
4540
  msgid "Top Screen Resolutions"
4541
  msgstr ""
4542
 
4543
- #: ../../admin/view/wp-slimstat-reports.php:100
4544
  msgid "Visit Duration"
4545
  msgstr ""
4546
 
4547
- #: ../../admin/view/wp-slimstat-reports.php:102
 
 
 
 
 
4548
  msgid "Recent Screen Resolutions"
4549
  msgstr ""
4550
 
4551
- #: ../../admin/view/wp-slimstat-reports.php:103
4552
  msgid "Recent Operating Systems"
4553
  msgstr ""
4554
 
4555
- #: ../../admin/view/wp-slimstat-reports.php:104
4556
  msgid "Recent Browsers"
4557
  msgstr ""
4558
 
4559
- #: ../../admin/view/wp-slimstat-reports.php:105
4560
  msgid "Recent Languages"
4561
  msgstr ""
4562
 
4563
- #: ../../admin/view/wp-slimstat-reports.php:106
4564
  msgid "Top Browser Families"
4565
  msgstr ""
4566
 
4567
- #: ../../admin/view/wp-slimstat-reports.php:107
4568
  msgid "Top OS Families"
4569
  msgstr ""
4570
 
4571
- #: ../../admin/view/wp-slimstat-reports.php:108
4572
  msgid "Recent Users"
4573
  msgstr ""
4574
 
4575
- #: ../../admin/view/wp-slimstat-reports.php:109
4576
  msgid "Top Users"
4577
  msgstr ""
4578
 
4579
- #: ../../admin/view/wp-slimstat-reports.php:110
4580
  msgid "Traffic Sources (chart)"
4581
  msgstr ""
4582
 
4583
- #: ../../admin/view/wp-slimstat-reports.php:115
4584
  msgid "Top Referring Search Engines"
4585
  msgstr ""
4586
 
4587
- #: ../../admin/view/wp-slimstat-reports.php:119
4588
- #: ../../admin/view/wp-slimstat-reports.php:135
4589
  msgid "Top Landing Pages"
4590
  msgstr ""
4591
 
4592
- #: ../../admin/view/wp-slimstat-reports.php:120
4593
  msgid "Average Pageviews per Visit (chart)"
4594
  msgstr ""
4595
 
4596
- #: ../../admin/view/wp-slimstat-reports.php:121
4597
  msgid "Recent Posts"
4598
  msgstr ""
4599
 
4600
- #: ../../admin/view/wp-slimstat-reports.php:122
4601
  msgid "Recent Bounce Pages"
4602
  msgstr ""
4603
 
4604
- #: ../../admin/view/wp-slimstat-reports.php:123
4605
  msgid "Recent Feeds"
4606
  msgstr ""
4607
 
4608
- #: ../../admin/view/wp-slimstat-reports.php:124
4609
  msgid "Recent 404 URLs"
4610
  msgstr ""
4611
 
4612
- #: ../../admin/view/wp-slimstat-reports.php:125
4613
  msgid "Recent Internal Searches"
4614
  msgstr ""
4615
 
4616
- #: ../../admin/view/wp-slimstat-reports.php:126
4617
  msgid "Top Categories"
4618
  msgstr ""
4619
 
4620
- #: ../../admin/view/wp-slimstat-reports.php:127
4621
  msgid "Recent Outbound Links"
4622
  msgstr ""
4623
 
4624
- #: ../../admin/view/wp-slimstat-reports.php:128
4625
  msgid "Recent Events"
4626
  msgstr ""
4627
 
4628
- #: ../../admin/view/wp-slimstat-reports.php:129
4629
  msgid "Top Posts"
4630
  msgstr ""
4631
 
4632
- #: ../../admin/view/wp-slimstat-reports.php:130
4633
  msgid "Top Feeds"
4634
  msgstr ""
4635
 
4636
- #: ../../admin/view/wp-slimstat-reports.php:131
4637
  msgid "Top Internal Searches"
4638
  msgstr ""
4639
 
4640
- #: ../../admin/view/wp-slimstat-reports.php:133
4641
  msgid "Recent Categories"
4642
  msgstr ""
4643
 
4644
- #: ../../admin/view/wp-slimstat-reports.php:134
4645
  msgid "Top 404 URLs"
4646
  msgstr ""
4647
 
4648
- #: ../../admin/view/wp-slimstat-reports.php:136
4649
  msgid "Top Authors"
4650
  msgstr ""
4651
 
4652
- #: ../../admin/view/wp-slimstat-reports.php:137
4653
  msgid "Top Tags"
4654
  msgstr ""
4655
 
4656
- #: ../../admin/view/wp-slimstat-reports.php:138
4657
  msgid "Recent Downloads"
4658
  msgstr ""
4659
 
4660
- #: ../../admin/view/wp-slimstat-reports.php:222
 
 
 
 
 
 
 
 
4661
  msgid "Chart controls"
4662
  msgstr ""
4663
 
4664
- #: ../../admin/view/wp-slimstat-reports.php:222
4665
  msgid "Use your mouse wheel to zoom in and out"
4666
  msgstr ""
4667
 
4668
- #: ../../admin/view/wp-slimstat-reports.php:222
4669
  msgid "While zooming in, drag the chart to move to a different area"
4670
  msgstr ""
4671
 
4672
- #: ../../admin/view/wp-slimstat-reports.php:222
4673
  msgid "Double click on an empty region to reset the zoom level"
4674
  msgstr ""
4675
 
4676
- #: ../../admin/view/wp-slimstat-reports.php:223
4677
  msgid ""
4678
  "Click on a data point to display the activity chart for each hour of that day"
4679
  msgstr ""
4680
 
4681
- #: ../../admin/view/wp-slimstat-reports.php:261
4682
  msgid "src"
4683
  msgstr ""
4684
 
4685
- #: ../../admin/view/wp-slimstat-reports.php:262
4686
  msgid "serp"
4687
  msgstr ""
4688
 
4689
- #: ../../admin/view/wp-slimstat-reports.php:267
4690
  msgid "Go to the corresponding search engine result page"
4691
  msgstr ""
4692
 
4693
- #: ../../admin/view/wp-slimstat-reports.php:270
4694
  msgid "Go to the referring page"
4695
  msgstr ""
4696
 
4697
- #: ../../admin/view/wp-slimstat-reports.php:289
4698
  msgid "Remove all filters"
4699
  msgstr ""
4700
 
4701
- #: ../../admin/view/wp-slimstat-reports.php:291
4702
- #: ../../admin/view/wp-slimstat-reports.php:298
4703
  msgid "Current filters:"
4704
  msgstr ""
4705
 
4706
- #: ../../admin/view/wp-slimstat-reports.php:294
4707
  msgid "Remove filter for"
4708
  msgstr ""
4709
 
4710
- #: ../../admin/view/wp-slimstat-reports.php:330
4711
  #, php-format
4712
  msgid "%s Minute by Minute"
4713
  msgstr ""
4714
 
4715
- #: ../../admin/view/wp-slimstat-reports.php:333
4716
  #, php-format
4717
  msgid "Hourly %s"
4718
  msgstr ""
4719
 
4720
- #: ../../admin/view/wp-slimstat-reports.php:336
4721
  #, php-format
4722
  msgid "Monthly %s"
4723
  msgstr ""
4724
 
4725
- #: ../../admin/view/wp-slimstat-reports.php:339
4726
  #, php-format
4727
  msgid "Daily %s"
4728
  msgstr ""
4729
 
4730
- #: ../../admin/view/wp-slimstat-reports.php:392
4731
  msgid "Category ID"
4732
  msgstr ""
4733
 
4734
- #: ../../admin/view/wp-slimstat-reports.php:424
4735
  msgid "OS Code"
4736
  msgstr ""
4737
 
4738
- #: ../../admin/view/wp-slimstat-reports.php:434
4739
  msgid "Referrer"
4740
  msgstr ""
4741
 
4742
- #: ../../admin/view/wp-slimstat-reports.php:451
4743
  #, php-format
4744
  msgid "Filter results where %s %s %s"
4745
  msgstr ""
4746
 
4747
- #: ../../admin/view/wp-slimstat-reports.php:458
4748
- #: ../../admin/view/wp-slimstat-reports.php:652
4749
- #: ../../admin/view/wp-slimstat-reports.php:663
4750
- #: ../../admin/view/wp-slimstat-reports.php:668
4751
- #: ../../admin/view/wp-slimstat-reports.php:673
4752
- #: ../../admin/view/wp-slimstat-reports.php:678
4753
- #: ../../admin/view/wp-slimstat-reports.php:683
4754
- #: ../../admin/view/wp-slimstat-reports.php:688
4755
- #: ../../admin/view/wp-slimstat-reports.php:693
4756
- #: ../../admin/view/wp-slimstat-reports.php:698
4757
  msgid "Hits"
4758
  msgstr ""
4759
 
4760
- #: ../../admin/view/wp-slimstat-reports.php:527
4761
  msgid "Search for"
4762
  msgstr ""
4763
 
4764
- #: ../../admin/view/wp-slimstat-reports.php:558
4765
- #: ../../admin/view/wp-slimstat-reports.php:574
4766
  msgid "Source"
4767
  msgstr ""
4768
 
4769
- #: ../../admin/view/wp-slimstat-reports.php:558
4770
  #, php-format
4771
  msgid "Filter results where domain equals %s"
4772
  msgstr ""
4773
 
4774
- #: ../../admin/view/wp-slimstat-reports.php:560
4775
  msgid "Keywords"
4776
  msgstr ""
4777
 
4778
- #: ../../admin/view/wp-slimstat-reports.php:561
4779
  #, php-format
4780
  msgid "Filter results where searchterm equals %s"
4781
  msgstr ""
4782
 
4783
- #: ../../admin/view/wp-slimstat-reports.php:586
4784
  msgid "Total Pageviews"
4785
  msgstr ""
4786
 
4787
- #: ../../admin/view/wp-slimstat-reports.php:587
4788
  msgid "DB Size"
4789
  msgstr ""
4790
 
4791
- #: ../../admin/view/wp-slimstat-reports.php:588
4792
  msgid "Tracking Active"
4793
  msgstr ""
4794
 
4795
- #: ../../admin/view/wp-slimstat-reports.php:590
4796
  msgid "Tracking Browser Caps"
4797
  msgstr ""
4798
 
4799
- #: ../../admin/view/wp-slimstat-reports.php:591
4800
  msgid "Auto purge"
4801
  msgstr ""
4802
 
4803
- #: ../../admin/view/wp-slimstat-reports.php:592
4804
  msgid "Oldest pageview"
4805
  msgstr ""
4806
 
4807
- #: ../../admin/view/wp-slimstat-reports.php:592
4808
  msgid "No visits"
4809
  msgstr ""
4810
 
4811
- #: ../../admin/view/wp-slimstat-reports.php:607
4812
- #: ../../admin/view/wp-slimstat-reports.php:709
4813
  msgid ""
4814
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
4815
  "time the tracking code is executed."
4816
  msgstr ""
4817
 
4818
- #: ../../admin/view/wp-slimstat-reports.php:609
4819
  msgid "This counter is based on any user activity in the last 5 minutes."
4820
  msgstr ""
4821
 
4822
- #: ../../admin/view/wp-slimstat-reports.php:610
4823
  msgid "Last 5 minutes"
4824
  msgstr ""
4825
 
4826
- #: ../../admin/view/wp-slimstat-reports.php:611
4827
  msgid "This counter is based on any user activity in the last 30 minutes."
4828
  msgstr ""
4829
 
4830
- #: ../../admin/view/wp-slimstat-reports.php:612
4831
  msgid "Last 30 minutes"
4832
  msgstr ""
4833
 
4834
- #: ../../admin/view/wp-slimstat-reports.php:613
4835
  msgid "Filter results where date equals today"
4836
  msgstr ""
4837
 
4838
- #: ../../admin/view/wp-slimstat-reports.php:613
4839
  msgid "Today"
4840
  msgstr ""
4841
 
4842
- #: ../../admin/view/wp-slimstat-reports.php:614
4843
  msgid "Filter results where date equals yesterday"
4844
  msgstr ""
4845
 
4846
- #: ../../admin/view/wp-slimstat-reports.php:614
4847
  msgid "Yesterday"
4848
  msgstr ""
4849
 
4850
- #: ../../admin/view/wp-slimstat-reports.php:615
4851
  msgid "How many pages have been visited on average during the current period."
4852
  msgstr ""
4853
 
4854
- #: ../../admin/view/wp-slimstat-reports.php:616
4855
- #: ../../admin/view/wp-slimstat-reports.php:762
4856
  msgid "Avg Pageviews"
4857
  msgstr ""
4858
 
4859
- #: ../../admin/view/wp-slimstat-reports.php:617
4860
  msgid ""
4861
  "Visitors who landed on your site after searching for a keyword on Google, "
4862
  "Yahoo, etc."
4863
  msgstr ""
4864
 
4865
- #: ../../admin/view/wp-slimstat-reports.php:618
4866
  msgid "From Search Results"
4867
  msgstr ""
4868
 
4869
- #: ../../admin/view/wp-slimstat-reports.php:619
4870
  msgid ""
4871
  "Used to differentiate between multiple requests to download a file from one "
4872
  "internet address (IP) and requests originating from many distinct addresses"
4873
  msgstr ""
4874
 
4875
- #: ../../admin/view/wp-slimstat-reports.php:620
4876
- #: ../../admin/view/wp-slimstat-reports.php:634
4877
- #: ../../admin/view/wp-slimstat-reports.php:749
4878
- #: ../../admin/view/wp-slimstat-reports.php:753
4879
- #: ../../admin/view/wp-slimstat-reports.php:757
4880
  msgid "Unique IPs"
4881
  msgstr ""
4882
 
4883
- #: ../../admin/view/wp-slimstat-reports.php:631
4884
  msgid ""
4885
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
4886
  "multiple times if they perform multiple visits."
4887
  msgstr ""
4888
 
4889
- #: ../../admin/view/wp-slimstat-reports.php:632
4890
  msgid "Human visits"
4891
  msgstr ""
4892
 
4893
- #: ../../admin/view/wp-slimstat-reports.php:633
4894
  msgid "This number includes <strong>human visits</strong> only."
4895
  msgstr ""
4896
 
4897
- #: ../../admin/view/wp-slimstat-reports.php:635
4898
- #: ../../admin/view/wp-slimstat-reports.php:721
4899
  msgid ""
4900
  "Percentage of single-page visits, i.e. visits in which the person left your "
4901
  "site from the entrance page."
4902
  msgstr ""
4903
 
4904
- #: ../../admin/view/wp-slimstat-reports.php:636
4905
  msgid "Bounce rate"
4906
  msgstr ""
4907
 
4908
- #: ../../admin/view/wp-slimstat-reports.php:637
4909
  msgid "Visitors who had previously left a comment on your blog."
4910
  msgstr ""
4911
 
4912
- #: ../../admin/view/wp-slimstat-reports.php:638
4913
  msgid "Known visitors"
4914
  msgstr ""
4915
 
4916
- #: ../../admin/view/wp-slimstat-reports.php:639
4917
  msgid "Human users who visited your site only once."
4918
  msgstr ""
4919
 
4920
- #: ../../admin/view/wp-slimstat-reports.php:640
4921
  msgid "New visitors"
4922
  msgstr ""
4923
 
4924
- #: ../../admin/view/wp-slimstat-reports.php:641
4925
  msgid "Bots"
4926
  msgstr ""
4927
 
4928
- #: ../../admin/view/wp-slimstat-reports.php:642
4929
  msgid "Pages per visit"
4930
  msgstr ""
4931
 
4932
- #: ../../admin/view/wp-slimstat-reports.php:643
4933
- #: ../../admin/view/wp-slimstat-reports.php:762
4934
  msgid "Longest visit"
4935
  msgstr ""
4936
 
4937
- #: ../../admin/view/wp-slimstat-reports.php:643
4938
  msgid "hits"
4939
  msgstr ""
4940
 
4941
- #: ../../admin/view/wp-slimstat-reports.php:664
4942
  msgid "0 - 30 seconds"
4943
  msgstr ""
4944
 
4945
- #: ../../admin/view/wp-slimstat-reports.php:669
4946
  msgid "31 - 60 seconds"
4947
  msgstr ""
4948
 
4949
- #: ../../admin/view/wp-slimstat-reports.php:674
4950
  msgid "1 - 3 minutes"
4951
  msgstr ""
4952
 
4953
- #: ../../admin/view/wp-slimstat-reports.php:679
4954
  msgid "3 - 5 minutes"
4955
  msgstr ""
4956
 
4957
- #: ../../admin/view/wp-slimstat-reports.php:684
4958
  msgid "5 - 7 minutes"
4959
  msgstr ""
4960
 
4961
- #: ../../admin/view/wp-slimstat-reports.php:689
4962
  msgid "7 - 10 minutes"
4963
  msgstr ""
4964
 
4965
- #: ../../admin/view/wp-slimstat-reports.php:694
4966
  msgid "10 - 20 minutes"
4967
  msgstr ""
4968
 
4969
- #: ../../admin/view/wp-slimstat-reports.php:699
4970
  msgid "More than 20 minutes"
4971
  msgstr ""
4972
 
4973
- #: ../../admin/view/wp-slimstat-reports.php:711
4974
  msgid ""
4975
  "A referrer (or referring site) is the site that a visitor previously visited "
4976
  "before following a link to your site."
4977
  msgstr ""
4978
 
4979
- #: ../../admin/view/wp-slimstat-reports.php:712
4980
  msgid "Unique Referrers"
4981
  msgstr ""
4982
 
4983
- #: ../../admin/view/wp-slimstat-reports.php:713
4984
  msgid ""
4985
  "Visitors who visited the site by typing the URL directly into their browser. "
4986
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -4988,21 +4800,21 @@ msgid ""
4988
  "documents that don't include tracking variables."
4989
  msgstr ""
4990
 
4991
- #: ../../admin/view/wp-slimstat-reports.php:714
4992
  msgid "Direct Pageviews"
4993
  msgstr ""
4994
 
4995
- #: ../../admin/view/wp-slimstat-reports.php:715
4996
  msgid ""
4997
  "Visitors who came to your site via searches on Google or some other search "
4998
  "engine."
4999
  msgstr ""
5000
 
5001
- #: ../../admin/view/wp-slimstat-reports.php:716
5002
  msgid "From a search result"
5003
  msgstr ""
5004
 
5005
- #: ../../admin/view/wp-slimstat-reports.php:717
5006
  msgid ""
5007
  "The first page that a user views during a session. This is also known as the "
5008
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -5010,36 +4822,135 @@ msgid ""
5010
  "a landing page."
5011
  msgstr ""
5012
 
5013
- #: ../../admin/view/wp-slimstat-reports.php:718
5014
  msgid "Unique Landing Pages"
5015
  msgstr ""
5016
 
5017
- #: ../../admin/view/wp-slimstat-reports.php:719
5018
  msgid "Number of single-page visits to your site over the selected period."
5019
  msgstr ""
5020
 
5021
- #: ../../admin/view/wp-slimstat-reports.php:720
5022
  msgid "Bounce Pages"
5023
  msgstr ""
5024
 
5025
- #: ../../admin/view/wp-slimstat-reports.php:722
5026
  msgid "New Visitors Rate"
5027
  msgstr ""
5028
 
5029
- #: ../../admin/view/wp-slimstat-reports.php:723
5030
  msgid ""
5031
  "Visitors who visited the site in the last 5 minutes coming from a search "
5032
  "engine."
5033
  msgstr ""
5034
 
5035
- #: ../../admin/view/wp-slimstat-reports.php:724
5036
  msgid "Currently from search engines"
5037
  msgstr ""
5038
 
5039
- #: ../../admin/view/wp-slimstat-reports.php:753
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5040
  msgid "Visits"
5041
  msgstr ""
5042
 
5043
- #: ../../admin/view/wp-slimstat-reports.php:757
5044
  msgid "Domains"
5045
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2013-11-15 23:04-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: get used to it <support@getused.to.it>\n"
7
  "Language-Team: camu <info@duechiacchiere.it>\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: ../..\n"
16
 
17
+ #: ../../wp-slimstat.php:1156 ../../admin/wp-slimstat-admin.php:387
18
+ #: ../../admin/view/index.php:11 ../../admin/view/wp-slimstat-reports.php:140
19
  msgid "Right Now"
20
  msgstr ""
21
 
22
+ #: ../../wp-slimstat.php:1157 ../../admin/wp-slimstat-admin.php:388
23
+ #: ../../admin/wp-slimstat-admin.php:405 ../../admin/view/index.php:12
24
  msgid "Overview"
25
  msgstr ""
26
 
27
+ #: ../../wp-slimstat.php:1158 ../../admin/wp-slimstat-admin.php:389
28
+ #: ../../admin/wp-slimstat-admin.php:406 ../../admin/view/index.php:13
29
  msgid "Visitors"
30
  msgstr ""
31
 
32
+ #: ../../wp-slimstat.php:1159 ../../admin/wp-slimstat-admin.php:390
33
+ #: ../../admin/wp-slimstat-admin.php:407 ../../admin/view/index.php:14
34
  msgid "Content"
35
  msgstr ""
36
 
37
+ #: ../../wp-slimstat.php:1160 ../../admin/wp-slimstat-admin.php:391
38
+ #: ../../admin/wp-slimstat-admin.php:408 ../../admin/view/index.php:15
39
+ #: ../../admin/view/index.php:277
40
  msgid "Traffic Sources"
41
  msgstr ""
42
 
43
+ #: ../../wp-slimstat.php:1161 ../../admin/wp-slimstat-admin.php:392
44
+ #: ../../admin/wp-slimstat-admin.php:409 ../../admin/view/index.php:16
45
+ #: ../../admin/view/index.php:140
46
  msgid "World Map"
47
  msgstr ""
48
 
49
+ #: ../../wp-slimstat.php:1162 ../../admin/wp-slimstat-admin.php:393
50
+ #: ../../admin/wp-slimstat-admin.php:410 ../../admin/view/index.php:17
51
  msgid "Custom Reports"
52
  msgstr ""
53
 
54
+ #: ../../wp-slimstat.php:1163 ../../admin/wp-slimstat-admin.php:394
55
+ #: ../../admin/wp-slimstat-admin.php:411 ../../admin/config/index.php:9
56
  #: ../../admin/config/index.php:208 ../../admin/config/index.php:216
57
  msgid "Add-ons"
58
  msgstr ""
59
 
60
+ #: ../../wp-slimstat.php:1166 ../../admin/wp-slimstat-admin.php:442
61
+ #: ../../admin/wp-slimstat-admin.php:445 ../../admin/wp-slimstat-admin.php:489
62
+ #: ../../admin/wp-slimstat-admin.php:492
63
  msgid "Settings"
64
  msgstr ""
65
 
66
+ #: ../../admin/wp-slimstat-admin.php:508
67
  msgid "Stats"
68
  msgstr ""
69
 
70
+ #: ../../admin/wp-slimstat-admin.php:541
71
  msgid "Show on screen"
72
  msgstr ""
73
 
74
+ #: ../../admin/wp-slimstat-admin.php:588
75
  msgid "There was an error updating the following options:"
76
  msgstr ""
77
 
78
+ #: ../../admin/wp-slimstat-admin.php:591
79
  msgid "Your settings have been successfully updated."
80
  msgstr ""
81
 
82
+ #: ../../admin/wp-slimstat-admin.php:607
83
  msgid "Save Changes"
84
  msgstr ""
85
 
86
+ #: ../../admin/wp-slimstat-admin.php:620 ../../admin/config/maintenance.php:29
87
+ #: ../../admin/config/maintenance.php:38
88
  msgid "Yes"
89
  msgstr ""
90
 
91
+ #: ../../admin/wp-slimstat-admin.php:621 ../../admin/config/maintenance.php:29
92
+ #: ../../admin/config/maintenance.php:38
93
+ #: ../../admin/view/wp-slimstat-reports.php:594
94
  msgid "No"
95
  msgstr ""
96
 
97
+ #: ../../admin/wp-slimstat-admin.php:658
98
  msgid ""
99
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
100
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
102
  "FAQs</a> for more information."
103
  msgstr ""
104
 
105
+ #: ../../admin/wp-slimstat-admin.php:678
106
  msgid "Definitions"
107
  msgstr ""
108
 
109
+ #: ../../admin/wp-slimstat-admin.php:681
110
  msgid "Pageview"
111
  msgstr ""
112
 
113
+ #: ../../admin/wp-slimstat-admin.php:681
114
  msgid ""
115
  "A request to load a single HTML file (\"page\"). This should be contrasted "
116
  "with a \"hit\", which refers to a request for any file from a web server. WP "
117
  "SlimStat logs a pageview each time the tracking code is executed"
118
  msgstr ""
119
 
120
+ #: ../../admin/wp-slimstat-admin.php:682
121
  msgid "(Human) Visit"
122
  msgstr ""
123
 
124
+ #: ../../admin/wp-slimstat-admin.php:682
125
  msgid ""
126
  "A period of interaction between a visitor's browser and your website, ending "
127
  "when the browser is closed or when the user has been inactive on that site "
128
  "for 30 minutes"
129
  msgstr ""
130
 
131
+ #: ../../admin/wp-slimstat-admin.php:683 ../../admin/view/index.php:214
132
+ #: ../../admin/view/index.php:283 ../../admin/view/right-now.php:168
133
  msgid "Known Visitor"
134
  msgstr ""
135
 
136
+ #: ../../admin/wp-slimstat-admin.php:683
137
  msgid ""
138
  "Any user who has left a comment on your blog, and is thus identified by "
139
  "Wordpress as a returning visitor"
140
  msgstr ""
141
 
142
+ #: ../../admin/wp-slimstat-admin.php:684
143
  msgid "Unique IP"
144
  msgstr ""
145
 
146
+ #: ../../admin/wp-slimstat-admin.php:684
147
  msgid ""
148
  "Used to differentiate between multiple requests to download a file from one "
149
  "internet address (IP) and requests originating from many distinct addresses; "
151
  "from, it is useful, but not perfect"
152
  msgstr ""
153
 
154
+ #: ../../admin/wp-slimstat-admin.php:685 ../../admin/wp-slimstat-admin.php:727
155
+ #: ../../admin/view/index.php:56 ../../admin/view/right-now.php:90
156
  #: ../../admin/view/wp-slimstat-reports.php:60
157
  msgid "Originating IP"
158
  msgstr ""
159
 
160
+ #: ../../admin/wp-slimstat-admin.php:685
161
  msgid ""
162
  "the originating IP address of a client connecting to a web server through an "
163
  "HTTP proxy or load balancer"
164
  msgstr ""
165
 
166
+ #: ../../admin/wp-slimstat-admin.php:686
167
  msgid "Direct Traffic"
168
  msgstr ""
169
 
170
+ #: ../../admin/wp-slimstat-admin.php:686
171
  msgid ""
172
  "All those people showing up to your Web site by typing in the URL of your "
173
  "Web site coming or from a bookmark; some people also call this \"default "
174
  "traffic\" or \"ambient traffic\""
175
  msgstr ""
176
 
177
+ #: ../../admin/wp-slimstat-admin.php:687
178
  msgid "Search Engine"
179
  msgstr ""
180
 
181
+ #: ../../admin/wp-slimstat-admin.php:687
182
  msgid ""
183
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
184
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
185
  msgstr ""
186
 
187
+ #: ../../admin/wp-slimstat-admin.php:688 ../../admin/wp-slimstat-admin.php:704
188
+ #: ../../admin/config/maintenance.php:183 ../../admin/view/index.php:38
189
  #: ../../admin/view/wp-slimstat-reports.php:43
190
  msgid "Search Terms"
191
  msgstr ""
192
 
193
+ #: ../../admin/wp-slimstat-admin.php:688 ../../admin/wp-slimstat-admin.php:704
194
+ #: ../../admin/view/index.php:217 ../../admin/view/index.php:286
195
  msgid "Keywords used by your visitors to find your website on a search engine"
196
  msgstr ""
197
 
198
+ #: ../../admin/wp-slimstat-admin.php:689
199
  msgid "SERP"
200
  msgstr ""
201
 
202
+ #: ../../admin/wp-slimstat-admin.php:689
203
  msgid ""
204
  "Short for search engine results page, the Web page that a search engine "
205
  "returns with the results of its search. The value shown represents your rank "
206
  "(or position) within that list of results"
207
  msgstr ""
208
 
209
+ #: ../../admin/wp-slimstat-admin.php:690
210
+ #: ../../admin/config/maintenance.php:178 ../../admin/view/index.php:49
211
  #: ../../admin/view/wp-slimstat-reports.php:53
212
  msgid "User Agent"
213
  msgstr ""
214
 
215
+ #: ../../admin/wp-slimstat-admin.php:690
216
  msgid ""
217
  "Any program used for accessing a website; this includes browsers, robots, "
218
  "spiders and any other program that was used to retrieve information from the "
219
  "site"
220
  msgstr ""
221
 
222
+ #: ../../admin/wp-slimstat-admin.php:691 ../../admin/view/index.php:53
223
  #: ../../admin/view/wp-slimstat-reports.php:57
224
  msgid "Outbound Link"
225
  msgstr ""
226
 
227
+ #: ../../admin/wp-slimstat-admin.php:691
228
  msgid ""
229
  "A link from one domain to another is said to be outbound from its source "
230
  "anchor and inbound to its target. This report lists all the links to other "
231
  "websites followed by your visitors."
232
  msgstr ""
233
 
234
+ #: ../../admin/wp-slimstat-admin.php:698
235
  msgid "Basic Filters"
236
  msgstr ""
237
 
238
+ #: ../../admin/wp-slimstat-admin.php:701 ../../admin/view/index.php:35
239
  #: ../../admin/view/right-now.php:98
240
  #: ../../admin/view/wp-slimstat-reports.php:40
241
  msgid "Browser"
242
  msgstr ""
243
 
244
+ #: ../../admin/wp-slimstat-admin.php:701
245
  msgid "User agent (Firefox, Chrome, ...)"
246
  msgstr ""
247
 
248
+ #: ../../admin/wp-slimstat-admin.php:702
249
+ #: ../../admin/config/maintenance.php:179 ../../admin/view/index.php:36
250
  #: ../../admin/view/wp-slimstat-reports.php:41
251
+ #: ../../admin/view/wp-slimstat-reports.php:411
252
  msgid "Country Code"
253
  msgstr ""
254
 
255
+ #: ../../admin/wp-slimstat-admin.php:702
256
  msgid "2-letter code (us, ru, de, it, ...)"
257
  msgstr ""
258
 
259
+ #: ../../admin/wp-slimstat-admin.php:703 ../../admin/view/index.php:37
260
  #: ../../admin/view/wp-slimstat-reports.php:42
261
  msgid "IP"
262
  msgstr ""
263
 
264
+ #: ../../admin/wp-slimstat-admin.php:703
265
  msgid "Visitor's public IP address"
266
  msgstr ""
267
 
268
+ #: ../../admin/wp-slimstat-admin.php:705
269
+ #: ../../admin/config/maintenance.php:181 ../../admin/view/index.php:39
270
  #: ../../admin/view/wp-slimstat-reports.php:44
271
+ #: ../../admin/view/wp-slimstat-reports.php:423
272
  msgid "Language Code"
273
  msgstr ""
274
 
275
+ #: ../../admin/wp-slimstat-admin.php:705
276
  msgid ""
277
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
278
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
279
  "column) for more information"
280
  msgstr ""
281
 
282
+ #: ../../admin/wp-slimstat-admin.php:706 ../../admin/view/index.php:40
283
  #: ../../admin/view/wp-slimstat-reports.php:45
284
  msgid "Operating System"
285
  msgstr ""
286
 
287
+ #: ../../admin/wp-slimstat-admin.php:706
288
  msgid ""
289
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
290
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
291
  "manual page</a> for more information"
292
  msgstr ""
293
 
294
+ #: ../../admin/wp-slimstat-admin.php:707
295
+ #: ../../admin/config/maintenance.php:182 ../../admin/view/index.php:41
296
  #: ../../admin/view/wp-slimstat-reports.php:46
297
  msgid "Permalink"
298
  msgstr ""
299
 
300
+ #: ../../admin/wp-slimstat-admin.php:707
301
  msgid "URL accessed on your site"
302
  msgstr ""
303
 
304
+ #: ../../admin/wp-slimstat-admin.php:708 ../../admin/view/index.php:42
305
  #: ../../admin/view/wp-slimstat-reports.php:48
306
  msgid "Referer"
307
  msgstr ""
308
 
309
+ #: ../../admin/wp-slimstat-admin.php:708
310
  msgid "Complete address of the referrer page"
311
  msgstr ""
312
 
313
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:43
314
  #: ../../admin/view/wp-slimstat-reports.php:49
315
  msgid "Visitor's Name"
316
  msgstr ""
317
 
318
+ #: ../../admin/wp-slimstat-admin.php:709
319
  msgid ""
320
  "Visitors' names according to the cookie set by Wordpress after they leave a "
321
  "comment"
322
  msgstr ""
323
 
324
+ #: ../../admin/wp-slimstat-admin.php:717
325
  msgid "Advanced Filters"
326
  msgstr ""
327
 
328
+ #: ../../admin/wp-slimstat-admin.php:720 ../../admin/view/index.php:47
329
  #: ../../admin/view/wp-slimstat-reports.php:51
330
  msgid "Browser Version"
331
  msgstr ""
332
 
333
+ #: ../../admin/wp-slimstat-admin.php:720
334
  msgid "user agent version (9.0, 11, ...)"
335
  msgstr ""
336
 
337
+ #: ../../admin/wp-slimstat-admin.php:721 ../../admin/view/index.php:48
338
  #: ../../admin/view/wp-slimstat-reports.php:52
339
  msgid "Browser Type"
340
  msgstr ""
341
 
342
+ #: ../../admin/wp-slimstat-admin.php:721
343
  msgid ""
344
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
345
  "all others"
346
  msgstr ""
347
 
348
+ #: ../../admin/wp-slimstat-admin.php:722 ../../admin/view/index.php:50
349
  #: ../../admin/view/wp-slimstat-reports.php:54
350
  msgid "Color Depth"
351
  msgstr ""
352
 
353
+ #: ../../admin/wp-slimstat-admin.php:722
354
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
355
  msgstr ""
356
 
357
+ #: ../../admin/wp-slimstat-admin.php:723 ../../admin/view/index.php:51
358
  #: ../../admin/view/wp-slimstat-reports.php:55
359
  msgid "CSS Version"
360
  msgstr ""
361
 
362
+ #: ../../admin/wp-slimstat-admin.php:723
363
  msgid ""
364
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
365
  "values)"
366
  msgstr ""
367
 
368
+ #: ../../admin/wp-slimstat-admin.php:724 ../../admin/view/index.php:52
369
  #: ../../admin/view/wp-slimstat-reports.php:56
370
  msgid "Pageview Attributes"
371
  msgstr ""
372
 
373
+ #: ../../admin/wp-slimstat-admin.php:724
374
  msgid ""
375
  "this field is set to <em>[pre]</em> if the resource has been accessed "
376
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
377
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
378
  msgstr ""
379
 
380
+ #: ../../admin/wp-slimstat-admin.php:725 ../../admin/view/index.php:54
381
  #: ../../admin/view/wp-slimstat-reports.php:58
382
  msgid "Post Author"
383
  msgstr ""
384
 
385
+ #: ../../admin/wp-slimstat-admin.php:725
386
  msgid "author associated to that post/page when the resource was accessed"
387
  msgstr ""
388
 
389
+ #: ../../admin/wp-slimstat-admin.php:726 ../../admin/view/index.php:55
390
  #: ../../admin/view/wp-slimstat-reports.php:59
391
  msgid "Post Category ID"
392
  msgstr ""
393
 
394
+ #: ../../admin/wp-slimstat-admin.php:726
395
  msgid "ID of the category/term associated to the resource, when available"
396
  msgstr ""
397
 
398
+ #: ../../admin/wp-slimstat-admin.php:727
399
  msgid "visitor's originating IP address, if available"
400
  msgstr ""
401
 
402
+ #: ../../admin/wp-slimstat-admin.php:728 ../../admin/view/index.php:57
403
  #: ../../admin/view/wp-slimstat-reports.php:61
404
  msgid "Resource Content Type"
405
  msgstr ""
406
 
407
+ #: ../../admin/wp-slimstat-admin.php:728
408
  msgid ""
409
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
410
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
413
  "information"
414
  msgstr ""
415
 
416
+ #: ../../admin/wp-slimstat-admin.php:729 ../../admin/view/index.php:59
417
  #: ../../admin/view/wp-slimstat-reports.php:63
418
  msgid "Screen Resolution"
419
  msgstr ""
420
 
421
+ #: ../../admin/wp-slimstat-admin.php:729
422
  msgid "viewport width and height (1024x768, 800x600, ...)"
423
  msgstr ""
424
 
425
+ #: ../../admin/wp-slimstat-admin.php:730 ../../admin/view/index.php:60
426
  #: ../../admin/view/wp-slimstat-reports.php:64
427
  msgid "Visit ID"
428
  msgstr ""
429
 
430
+ #: ../../admin/wp-slimstat-admin.php:730
431
  msgid ""
432
  "generally used in conjunction with <em>is not empty</em>, identifies human "
433
  "visitors"
434
  msgstr ""
435
 
436
+ #: ../../admin/wp-slimstat-admin.php:731
437
  msgid "Date Filters"
438
  msgstr ""
439
 
440
+ #: ../../admin/wp-slimstat-admin.php:731
441
  msgid ""
442
  "you can specify the timeframe by entering a number in the <em>interval</em> "
443
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
444
  "year=blank, interval=-1 will set a year-to-date filter)"
445
  msgstr ""
446
 
447
+ #: ../../admin/wp-slimstat-admin.php:732
448
  msgid "SERP Position"
449
  msgstr ""
450
 
451
+ #: ../../admin/wp-slimstat-admin.php:732
452
  msgid ""
453
  "set the filter to Referer contains cd=N&, where N is the position you are "
454
  "looking for"
455
  msgstr ""
456
 
457
+ #: ../../admin/wp-slimstat-admin.php:748 ../../admin/config/index.php:9
458
  #: ../../admin/config/index.php:205
459
  msgid "Support"
460
  msgstr ""
461
 
462
+ #: ../../admin/wp-slimstat-admin.php:757
463
  msgid ""
464
  "<a href=\"http://slimstat.getused.to.it/\">WP SlimStat</a> is and will "
465
  "always be free, but consider supporting the author if this plugin helped you "
545
  msgstr ""
546
 
547
  #: ../../admin/config/index.php:21
548
+ #: ../../admin/view/wp-slimstat-reports.php:592
549
  msgid "Javascript Mode"
550
  msgstr ""
551
 
577
  msgid "Entries recorded on or before %s will be permanently deleted."
578
  msgstr ""
579
 
580
+ #: ../../admin/config/index.php:22 ../../admin/view/index.php:29
581
+ #: ../../admin/view/index.php:104 ../../admin/view/wp-slimstat-reports.php:69
582
+ #: ../../admin/view/wp-slimstat-reports.php:594
583
  msgid "days"
584
  msgstr ""
585
 
851
  "will not be tracked. Capabilities are case-insensitive."
852
  msgstr ""
853
 
 
 
 
 
854
  #: ../../admin/config/index.php:82
855
  msgid "Ignore users (username not found)"
856
  msgstr ""
857
 
 
 
 
 
858
  #: ../../admin/config/index.php:105
859
  msgid ""
860
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
885
  "case, the list has precedence over the capability."
886
  msgstr ""
887
 
888
+ #: ../../admin/config/index.php:117
889
  msgid "Capability to Admin"
890
  msgstr ""
891
 
897
  "here below can be used to override this option for specific users."
898
  msgstr ""
899
 
900
+ #: ../../admin/config/index.php:118
901
  msgid "Read access"
902
  msgstr ""
903
 
909
  "Usernames are case sensitive."
910
  msgstr ""
911
 
912
+ #: ../../admin/config/index.php:119
913
  msgid "Config access"
914
  msgstr ""
915
 
927
  msgid "Read access: username not found"
928
  msgstr ""
929
 
 
 
 
 
930
  #: ../../admin/config/index.php:149 ../../admin/config/index.php:180
931
  msgid ""
932
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1045
  msgstr ""
1046
 
1047
  #: ../../admin/config/index.php:199
1048
+ msgid "Enable UAN"
1049
  msgstr ""
1050
 
1051
  #: ../../admin/config/index.php:199
1052
  msgid ""
1053
+ "Collect data about unknown user agents, and send it anonymously to our "
1054
+ "server for analysis. This allows us to contribute to the <a href='http://"
1055
+ "browscap.co/' target='_blank'>BrowsCap opensource project</a>, and improve "
1056
+ "the accuracy of SlimStat's browser detection functionality."
1057
  msgstr ""
1058
 
1059
+ #: ../../admin/config/maintenance.php:29
1060
  msgid ""
1061
  "Are you sure you want to remove all the information about your hits and "
1062
  "visits?"
1063
  msgstr ""
1064
 
1065
+ #: ../../admin/config/maintenance.php:33
1066
  msgid "Your WP SlimStat table has been successfully emptied."
1067
  msgstr ""
1068
 
1069
+ #: ../../admin/config/maintenance.php:38
1070
  msgid "Are you sure you want to reset your tabs?"
1071
  msgstr ""
1072
 
1073
+ #: ../../admin/config/maintenance.php:44
1074
  msgid "Your WP SlimStat tabs have been successfully reset."
1075
  msgstr ""
1076
 
1077
+ #: ../../admin/config/maintenance.php:52
1078
  msgid "Your WP SlimStat table has been successfully reset."
1079
  msgstr ""
1080
 
1081
+ #: ../../admin/config/maintenance.php:54
1082
  msgid "ERROR: Your Slimstat table could not be initialized."
1083
  msgstr ""
1084
 
1085
+ #: ../../admin/config/maintenance.php:63
1086
  msgid "Your WP SlimStat table has been successfully optimized."
1087
  msgstr ""
1088
 
1089
+ #: ../../admin/config/maintenance.php:75
1090
  msgid "Your WP SlimStat tables have been successfully converted to InnoDB."
1091
  msgstr ""
1092
 
1093
+ #: ../../admin/config/maintenance.php:84
1094
  msgid "Your WP SlimStat indexes have been successfully created."
1095
  msgstr ""
1096
 
1097
+ #: ../../admin/config/maintenance.php:92
1098
  msgid "Your WP SlimStat indexes have been successfully removed."
1099
  msgstr ""
1100
 
1101
+ #: ../../admin/config/maintenance.php:123
1102
  msgid "Your WP SlimStat table has been successfully cleaned. Rows affected:"
1103
  msgstr ""
1104
 
1105
+ #: ../../admin/config/maintenance.php:137
1106
  msgid "Database Information"
1107
  msgstr ""
1108
 
1109
+ #: ../../admin/config/maintenance.php:138
1110
  msgid "Engine"
1111
  msgstr ""
1112
 
1113
+ #: ../../admin/config/maintenance.php:140
1114
  msgid ", it may take some time and exceed PHP's maximum execution time"
1115
  msgstr ""
1116
 
1117
+ #: ../../admin/config/maintenance.php:141
1118
  msgid "switch to InnoDB"
1119
  msgstr ""
1120
 
1121
+ #: ../../admin/config/maintenance.php:161
1122
  msgid "Size"
1123
  msgstr ""
1124
 
1125
+ #: ../../admin/config/maintenance.php:161
1126
  msgid "Records"
1127
  msgstr ""
1128
 
1129
+ #: ../../admin/config/maintenance.php:161
1130
  msgid "Average Record Length"
1131
  msgstr ""
1132
 
1133
+ #: ../../admin/config/maintenance.php:161
1134
  msgid "Created on"
1135
  msgstr ""
1136
 
1137
+ #: ../../admin/config/maintenance.php:163
1138
  msgid "Approximate Overhead"
1139
  msgstr ""
1140
 
1141
+ #: ../../admin/config/maintenance.php:167
1142
  msgid "Optimize tables"
1143
  msgstr ""
1144
 
1145
+ #: ../../admin/config/maintenance.php:171
1146
  msgid "Purge Data"
1147
  msgstr ""
1148
 
1149
+ #: ../../admin/config/maintenance.php:176
1150
  msgid "Delete rows where"
1151
  msgstr ""
1152
 
1153
+ #: ../../admin/config/maintenance.php:180
1154
  msgid "IP Address"
1155
  msgstr ""
1156
 
1157
+ #: ../../admin/config/maintenance.php:186
1158
  msgid "Is equal to"
1159
  msgstr ""
1160
 
1161
+ #: ../../admin/config/maintenance.php:187
1162
  msgid "Contains"
1163
  msgstr ""
1164
 
1165
+ #: ../../admin/config/maintenance.php:188
1166
  msgid "Does not contain"
1167
  msgstr ""
1168
 
1169
+ #: ../../admin/config/maintenance.php:189
1170
  msgid "Starts with"
1171
  msgstr ""
1172
 
1173
+ #: ../../admin/config/maintenance.php:190
1174
  msgid "Ends with"
1175
  msgstr ""
1176
 
1177
+ #: ../../admin/config/maintenance.php:191
1178
  msgid "Does not start with"
1179
  msgstr ""
1180
 
1181
+ #: ../../admin/config/maintenance.php:192
1182
  msgid "Does not end with"
1183
  msgstr ""
1184
 
1185
+ #: ../../admin/config/maintenance.php:196
1186
  msgid "DELETE"
1187
  msgstr ""
1188
 
1189
+ #: ../../admin/config/maintenance.php:197
1190
  msgid ""
1191
  "Are you sure you want to PERMANENTLY delete these rows from your database?"
1192
  msgstr ""
1193
 
1194
+ #: ../../admin/config/maintenance.php:205
1195
  msgid "Activate Indexes"
1196
  msgstr ""
1197
 
1198
+ #: ../../admin/config/maintenance.php:206
1199
  msgid ""
1200
  "Use this feature if you want to improve the overall performance of your "
1201
  "stats. You will need about 30% more DB space, to store the extra information "
1202
  "required."
1203
  msgstr ""
1204
 
1205
+ #: ../../admin/config/maintenance.php:210
1206
  msgid "Remove Indexes"
1207
  msgstr ""
1208
 
1209
+ #: ../../admin/config/maintenance.php:211
1210
  msgid ""
1211
  "Use this feature if you want to save some DB space, while slightly degrading "
1212
  "WP SlimStat overall performances."
1213
  msgstr ""
1214
 
1215
+ #: ../../admin/config/maintenance.php:215
1216
  msgid "Reset Tabs"
1217
  msgstr ""
1218
 
1219
+ #: ../../admin/config/maintenance.php:216
1220
  msgid ""
1221
  "Reset SlimStat's box order settings if one or more tabs are empty (no "
1222
  "reports shown) or metrics are missing."
1223
  msgstr ""
1224
 
1225
+ #: ../../admin/config/maintenance.php:219
1226
  msgid "Reset Stats"
1227
  msgstr ""
1228
 
1229
+ #: ../../admin/config/maintenance.php:220
1230
  msgid ""
1231
  "Select this option if you want to empty your WP SlimStat database (does not "
1232
  "reset your settings)."
1233
  msgstr ""
1234
 
1235
+ #: ../../admin/config/maintenance.php:223
1236
+ msgid "Export Settings"
1237
+ msgstr ""
1238
+
1239
+ #: ../../admin/config/maintenance.php:224
1240
+ msgid ""
1241
+ "Export all your SlimStat settings in a text file. You can import them later "
1242
+ "by pasting the content of that file in the text field below."
1243
+ msgstr ""
1244
+
1245
+ #: ../../admin/config/maintenance.php:227
1246
+ msgid "Import Settings"
1247
+ msgstr ""
1248
+
1249
+ #: ../../admin/config/maintenance.php:232
1250
+ msgid "Import"
1251
+ msgstr ""
1252
+
1253
+ #: ../../admin/config/maintenance.php:233
1254
+ msgid "Are you sure you want to OVERWRITE your current settings?"
1255
+ msgstr ""
1256
+
1257
  #: ../../admin/config/support.php:22
1258
  msgid ""
1259
  "How valuable is monitoring your visitors for your site? WP SlimStat is and "
1304
 
1305
  #: ../../admin/lang/dynamic_strings.php:3
1306
  msgid "xx"
1307
+ msgstr "Unknown"
1308
 
1309
  #: ../../admin/lang/dynamic_strings.php:4
1310
  msgid "unknown"
1311
  msgstr "Unknown"
1312
 
1313
  #: ../../admin/lang/dynamic_strings.php:5
1314
+ msgid "win8.1"
1315
+ msgstr "Windows 8.1"
1316
 
1317
  #: ../../admin/lang/dynamic_strings.php:6
1318
  msgid "win8"
1319
  msgstr "Windows 8"
1320
 
1321
  #: ../../admin/lang/dynamic_strings.php:7
1322
+ msgid "win7"
1323
+ msgstr "Windows 7"
1324
 
1325
  #: ../../admin/lang/dynamic_strings.php:8
1326
  msgid "winvista"
1419
  msgstr "Cygwin"
1420
 
1421
  #: ../../admin/lang/dynamic_strings.php:32
 
 
 
 
1422
  msgid "digital unix"
1423
  msgstr "Digital Unix"
1424
 
1425
+ #: ../../admin/lang/dynamic_strings.php:33
1426
  msgid "risc os"
1427
  msgstr "Risc OS"
1428
 
1429
+ #: ../../admin/lang/dynamic_strings.php:34
 
 
 
 
 
 
 
 
1430
  msgid "openvms"
1431
  msgstr "OpenVMS"
1432
 
1433
+ #: ../../admin/lang/dynamic_strings.php:35
1434
  msgid "linux"
1435
  msgstr "Linux"
1436
 
1437
+ #: ../../admin/lang/dynamic_strings.php:36
1438
  msgid "freebsd"
1439
  msgstr "FreeBSD"
1440
 
1441
+ #: ../../admin/lang/dynamic_strings.php:37
1442
  msgid "openbsd"
1443
  msgstr "OpenBSD"
1444
 
1445
+ #: ../../admin/lang/dynamic_strings.php:38
1446
  msgid "netbsd"
1447
  msgstr "NetBSD"
1448
 
1449
+ #: ../../admin/lang/dynamic_strings.php:39
1450
  msgid "debian"
1451
  msgstr "Debian"
1452
 
1453
+ #: ../../admin/lang/dynamic_strings.php:40
1454
  msgid "amiga"
1455
  msgstr "Amiga"
1456
 
1457
+ #: ../../admin/lang/dynamic_strings.php:41
1458
  msgid "android"
1459
  msgstr "Android"
1460
 
1461
+ #: ../../admin/lang/dynamic_strings.php:42
1462
  msgid "wyderos"
1463
  msgstr "WyderOS"
1464
 
1465
+ #: ../../admin/lang/dynamic_strings.php:43
1466
  msgid "iphone osx"
1467
  msgstr "iPhone OS X"
1468
 
1469
+ #: ../../admin/lang/dynamic_strings.php:44
1470
  msgid "ios"
1471
  msgstr "iPhone OS X"
1472
 
1473
+ #: ../../admin/lang/dynamic_strings.php:45
1474
  msgid "palm"
1475
  msgstr "Palm"
1476
 
1477
+ #: ../../admin/lang/dynamic_strings.php:46
1478
  msgid "wap"
1479
  msgstr "WAP"
1480
 
1481
+ #: ../../admin/lang/dynamic_strings.php:47
1482
  msgid "java"
1483
  msgstr "Java"
1484
 
1485
+ #: ../../admin/lang/dynamic_strings.php:48
1486
+ msgid "winphone7"
1487
+ msgstr "Windows Phone"
1488
+
1489
+ #: ../../admin/lang/dynamic_strings.php:49
1490
  msgid "wince"
1491
  msgstr "Windows CE"
1492
 
1493
+ #: ../../admin/lang/dynamic_strings.php:50
1494
  msgid "symbianos"
1495
  msgstr "Symbian OS"
1496
 
1497
+ #: ../../admin/lang/dynamic_strings.php:51
1498
  msgid "blackberry os"
1499
  msgstr "BlackBerry OS"
1500
 
1501
+ #: ../../admin/lang/dynamic_strings.php:52
1502
  msgid "webos"
1503
  msgstr "WebOS"
1504
 
1505
+ #: ../../admin/lang/dynamic_strings.php:53
1506
  msgid "p-and"
1507
  msgstr "Android"
1508
 
1509
+ #: ../../admin/lang/dynamic_strings.php:54
1510
  msgid "p-bla"
1511
  msgstr "BlackBerry"
1512
 
1513
+ #: ../../admin/lang/dynamic_strings.php:55
1514
  msgid "p-chr"
1515
  msgstr "Chrome OS"
1516
 
1517
+ #: ../../admin/lang/dynamic_strings.php:56
1518
  msgid "p-fre"
1519
  msgstr "Linux FreeBSD"
1520
 
1521
+ #: ../../admin/lang/dynamic_strings.php:57
1522
  msgid "p-ios"
1523
  msgstr "Apple iOS"
1524
 
1525
+ #: ../../admin/lang/dynamic_strings.php:58
1526
  msgid "p-jav"
1527
  msgstr "Java-based OS"
1528
 
1529
+ #: ../../admin/lang/dynamic_strings.php:59
1530
  msgid "p-lin"
1531
  msgstr "Linux"
1532
 
1533
+ #: ../../admin/lang/dynamic_strings.php:60
1534
  msgid "p-mac"
1535
  msgstr "Apple"
1536
 
1537
+ #: ../../admin/lang/dynamic_strings.php:61
1538
  msgid "p-sym"
1539
  msgstr "Symbian OS"
1540
 
1541
+ #: ../../admin/lang/dynamic_strings.php:62
1542
  msgid "p-unk"
1543
  msgstr "Unknown"
1544
 
1545
+ #: ../../admin/lang/dynamic_strings.php:63
1546
  msgid "p-win"
1547
  msgstr "Microsoft"
1548
 
1549
+ #: ../../admin/lang/dynamic_strings.php:64
1550
  msgid "powertv"
1551
  msgstr "PowerTV"
1552
 
1553
+ #: ../../admin/lang/dynamic_strings.php:65
1554
  msgid "acrobat"
1555
  msgstr "Acrobat Reader"
1556
 
1557
+ #: ../../admin/lang/dynamic_strings.php:66
1558
  msgid "director"
1559
  msgstr "Macromedia Director"
1560
 
1561
+ #: ../../admin/lang/dynamic_strings.php:67
1562
  msgid "flash"
1563
  msgstr "Adobe Flash Player"
1564
 
1565
+ #: ../../admin/lang/dynamic_strings.php:68
1566
  msgid "mediaplayer"
1567
  msgstr "Microsoft Media Player"
1568
 
1569
+ #: ../../admin/lang/dynamic_strings.php:69
1570
  msgid "quicktime"
1571
  msgstr "QuickTime"
1572
 
1573
+ #: ../../admin/lang/dynamic_strings.php:70
1574
  msgid "real"
1575
  msgstr "Real Player"
1576
 
1577
+ #: ../../admin/lang/dynamic_strings.php:71
1578
  msgid "silverlight"
1579
  msgstr "Microsoft Silverlight"
1580
 
1581
+ # Afrikaans
1582
+ #: ../../admin/lang/dynamic_strings.php:72
1583
+ msgid "l-af"
1584
+ msgstr "Afrikaans"
1585
+
1586
+ # Afrikaans
1587
+ #: ../../admin/lang/dynamic_strings.php:73
1588
+ msgid "l-af-ZA"
1589
+ msgstr "Afrikaans (South Africa)"
1590
+
1591
+ # Arabic
1592
  #: ../../admin/lang/dynamic_strings.php:74
1593
+ msgid "l-ar"
1594
+ msgstr "Arabic"
1595
 
1596
+ # Arabic
1597
  #: ../../admin/lang/dynamic_strings.php:75
1598
+ msgid "l-ar-AE"
1599
+ msgstr "Arabic (U.A.E.)"
1600
 
1601
+ # Arabic
1602
  #: ../../admin/lang/dynamic_strings.php:76
1603
+ msgid "l-ar-BH"
1604
+ msgstr "Arabic (Bahrain)"
1605
 
1606
+ # Arabic
1607
  #: ../../admin/lang/dynamic_strings.php:77
1608
+ msgid "l-ar-DZ"
1609
+ msgstr "Arabic (Algeria)"
1610
 
1611
+ # Arabic
1612
  #: ../../admin/lang/dynamic_strings.php:78
1613
+ msgid "l-ar-EG"
1614
+ msgstr "Arabic (Egypt)"
1615
 
1616
+ # Arabic
1617
  #: ../../admin/lang/dynamic_strings.php:79
1618
+ msgid "l-ar-IQ"
1619
+ msgstr "Arabic (Iraq)"
1620
 
1621
+ # Arabic
1622
  #: ../../admin/lang/dynamic_strings.php:80
1623
+ msgid "l-ar-JO"
1624
+ msgstr "Arabic (Jordan)"
1625
 
1626
  # Arabic
1627
  #: ../../admin/lang/dynamic_strings.php:81
1628
+ msgid "l-ar-KW"
1629
+ msgstr "Arabic (Kuwait)"
1630
 
1631
+ # Arabic
1632
  #: ../../admin/lang/dynamic_strings.php:82
1633
+ msgid "l-ar-LB"
1634
+ msgstr "Arabic (Lebanon)"
1635
 
1636
+ # Arabic
1637
  #: ../../admin/lang/dynamic_strings.php:83
1638
+ msgid "l-ar-LY"
1639
+ msgstr "Arabic (Libya)"
1640
 
1641
+ # Arabic
1642
  #: ../../admin/lang/dynamic_strings.php:84
1643
+ msgid "l-ar-MA"
1644
+ msgstr "Arabic (Morocco)"
1645
 
1646
+ # Arabic
1647
  #: ../../admin/lang/dynamic_strings.php:85
1648
+ msgid "l-ar-OM"
1649
+ msgstr "Arabic (Oman)"
1650
 
1651
+ # Arabic
1652
  #: ../../admin/lang/dynamic_strings.php:86
1653
+ msgid "l-ar-QA"
1654
+ msgstr "Arabic (Qatar)"
1655
 
1656
+ # Arabic
1657
  #: ../../admin/lang/dynamic_strings.php:87
1658
+ msgid "l-ar-SA"
1659
+ msgstr "Arabic (Saudi Arabia)"
1660
 
1661
+ # Arabic
1662
  #: ../../admin/lang/dynamic_strings.php:88
1663
+ msgid "l-ar-SY"
1664
+ msgstr "Arabic (Syria)"
1665
 
1666
+ # Arabic
1667
  #: ../../admin/lang/dynamic_strings.php:89
1668
+ msgid "l-ar-TN"
1669
+ msgstr "Arabic (Tunisia)"
1670
 
1671
+ # Arabic
1672
  #: ../../admin/lang/dynamic_strings.php:90
1673
+ msgid "l-ar-YE"
1674
+ msgstr "Arabic (Yemen)"
1675
 
1676
+ # Azerbaijani
1677
  #: ../../admin/lang/dynamic_strings.php:91
1678
+ msgid "l-az"
1679
+ msgstr "Azerbaijani"
1680
 
1681
+ # Azerbaijani
1682
  #: ../../admin/lang/dynamic_strings.php:92
 
 
 
 
1683
  #: ../../admin/lang/dynamic_strings.php:93
1684
+ msgid "l-az-AZ"
1685
+ msgstr "Azeri (Latin)"
1686
 
1687
+ # Belarusian
1688
  #: ../../admin/lang/dynamic_strings.php:94
1689
+ msgid "l-be"
1690
+ msgstr "Belarusian"
1691
 
1692
+ # Belarusian
1693
  #: ../../admin/lang/dynamic_strings.php:95
1694
+ msgid "l-be-BY"
1695
+ msgstr "Belarusian (Belarus)"
1696
 
1697
+ # Bulgarian
1698
  #: ../../admin/lang/dynamic_strings.php:96
1699
+ msgid "l-bg"
1700
+ msgstr "Bulgarian"
1701
 
1702
+ # Bulgarian
1703
  #: ../../admin/lang/dynamic_strings.php:97
1704
+ msgid "l-bg-BG"
1705
+ msgstr "Bulgarian (Bulgaria)"
1706
 
1707
+ # Bosnian
1708
  #: ../../admin/lang/dynamic_strings.php:98
1709
+ msgid "l-bs-BA"
1710
+ msgstr "Bosnian"
1711
 
1712
+ # Catalan; Valencian
1713
  #: ../../admin/lang/dynamic_strings.php:99
1714
+ msgid "l-ca"
1715
+ msgstr "Catalan; Valencian"
1716
 
1717
+ # Catalan; Valencian
1718
  #: ../../admin/lang/dynamic_strings.php:100
1719
+ msgid "l-ca-ES"
1720
+ msgstr "Catalan (Spain)"
1721
 
1722
  # Czech
1723
  #: ../../admin/lang/dynamic_strings.php:101
1724
  msgid "l-cs"
1725
  msgstr "Czech"
1726
 
1727
+ # Czech
1728
  #: ../../admin/lang/dynamic_strings.php:102
1729
+ msgid "l-cs-CZ"
1730
+ msgstr "Czech (Czech Republic)"
1731
 
1732
+ # Welsh
1733
  #: ../../admin/lang/dynamic_strings.php:103
1734
+ msgid "l-cy"
1735
+ msgstr "Welsh"
1736
 
1737
  # Welsh
1738
  #: ../../admin/lang/dynamic_strings.php:104
1739
+ msgid "l-cy-GB"
1740
+ msgstr "Welsh (United Kingdom)"
1741
 
1742
  # Danish
1743
  #: ../../admin/lang/dynamic_strings.php:105
1744
  msgid "l-da"
1745
  msgstr "Danish"
1746
 
1747
+ # Danish
1748
  #: ../../admin/lang/dynamic_strings.php:106
1749
+ msgid "l-da-DK"
1750
+ msgstr "Danish"
1751
+
1752
+ # German
1753
+ #: ../../admin/lang/dynamic_strings.php:107
1754
  msgid "l-de"
1755
  msgstr "German"
1756
 
1757
+ # German
 
 
 
 
 
1758
  #: ../../admin/lang/dynamic_strings.php:108
1759
+ msgid "l-de-AT"
1760
+ msgstr "German (Austria)"
1761
 
1762
+ # German
1763
  #: ../../admin/lang/dynamic_strings.php:109
1764
+ msgid "l-de-CH"
1765
+ msgstr "German (Switzerland)"
1766
 
1767
+ # German
1768
  #: ../../admin/lang/dynamic_strings.php:110
1769
+ msgid "l-de-DE"
1770
+ msgstr "German"
1771
 
1772
+ # German
1773
  #: ../../admin/lang/dynamic_strings.php:111
1774
+ msgid "l-de-LI"
1775
+ msgstr "German (Liechtenstein)"
1776
 
1777
+ # German
1778
  #: ../../admin/lang/dynamic_strings.php:112
1779
+ msgid "l-de-LU"
1780
+ msgstr "German (Luxembourg)"
1781
 
1782
+ # Dhivehi; Divehi; Maldivian
1783
  #: ../../admin/lang/dynamic_strings.php:113
1784
+ msgid "l-dv"
1785
+ msgstr "Dhivehi; Divehi; Maldivian"
1786
 
1787
+ # Dhivehi; Divehi; Maldivian
1788
  #: ../../admin/lang/dynamic_strings.php:114
1789
+ msgid "l-dv-MV"
1790
+ msgstr "Dhivehi"
1791
 
1792
+ # Modern Greek (1453-)
1793
  #: ../../admin/lang/dynamic_strings.php:115
1794
+ msgid "l-el"
1795
+ msgstr "Modern Greek (1453-)"
1796
 
1797
+ # Modern Greek (1453-)
1798
  #: ../../admin/lang/dynamic_strings.php:116
1799
+ msgid "l-el-GR"
1800
+ msgstr "Greek"
1801
 
1802
+ # English
1803
  #: ../../admin/lang/dynamic_strings.php:117
1804
+ msgid "l-en"
1805
+ msgstr "English"
1806
 
1807
+ # English
1808
  #: ../../admin/lang/dynamic_strings.php:118
1809
+ msgid "l-en-AU"
1810
+ msgstr "English (Australia)"
1811
 
1812
+ # English
1813
  #: ../../admin/lang/dynamic_strings.php:119
1814
+ msgid "l-en-BZ"
1815
+ msgstr "English (Belize)"
1816
 
1817
+ # English
1818
  #: ../../admin/lang/dynamic_strings.php:120
1819
+ msgid "l-en-CA"
1820
+ msgstr "English (Canada)"
1821
 
1822
+ # English
1823
  #: ../../admin/lang/dynamic_strings.php:121
1824
+ msgid "l-en-CB"
1825
+ msgstr "English (Caribbean)"
1826
 
1827
+ # English
1828
  #: ../../admin/lang/dynamic_strings.php:122
1829
+ msgid "l-en-GB"
1830
+ msgstr "English (UK)"
1831
 
1832
+ # English
1833
  #: ../../admin/lang/dynamic_strings.php:123
1834
+ msgid "l-en-IE"
1835
+ msgstr "English (Ireland)"
1836
 
1837
+ # English
1838
  #: ../../admin/lang/dynamic_strings.php:124
1839
+ msgid "l-en-JM"
1840
+ msgstr "English (Jamaica)"
1841
 
1842
+ # English
1843
  #: ../../admin/lang/dynamic_strings.php:125
1844
+ msgid "l-en-NZ"
1845
+ msgstr "English (New Zealand)"
1846
 
1847
+ # English
1848
  #: ../../admin/lang/dynamic_strings.php:126
1849
+ msgid "l-en-PH"
1850
+ msgstr "English (Philippines)"
1851
 
1852
+ # English
1853
  #: ../../admin/lang/dynamic_strings.php:127
1854
+ msgid "l-en-TT"
1855
+ msgstr "English (Trinidad and Tobago)"
1856
 
1857
+ # English
1858
  #: ../../admin/lang/dynamic_strings.php:128
1859
+ msgid "l-en-US"
1860
+ msgstr "English (US)"
1861
 
1862
+ # English
1863
  #: ../../admin/lang/dynamic_strings.php:129
1864
+ msgid "l-en-ZA"
1865
+ msgstr "English (South Africa)"
1866
 
1867
+ # English
1868
  #: ../../admin/lang/dynamic_strings.php:130
1869
+ msgid "l-en-ZW"
1870
+ msgstr "English (Zimbabwe)"
1871
 
1872
+ # Esperanto
1873
  #: ../../admin/lang/dynamic_strings.php:131
1874
+ msgid "l-eo"
1875
+ msgstr "Esperanto"
1876
 
1877
+ # Spanish; Castilian
1878
  #: ../../admin/lang/dynamic_strings.php:132
1879
+ msgid "l-es"
1880
+ msgstr "Spanish; Castilian"
1881
 
1882
+ # Spanish; Castilian
1883
  #: ../../admin/lang/dynamic_strings.php:133
1884
+ msgid "l-es-AR"
1885
+ msgstr "Spanish (Argentina)"
1886
 
1887
+ # Spanish; Castilian
1888
  #: ../../admin/lang/dynamic_strings.php:134
1889
+ msgid "l-es-BO"
1890
+ msgstr "Spanish (Bolivia)"
1891
 
1892
+ # Spanish; Castilian
1893
  #: ../../admin/lang/dynamic_strings.php:135
1894
+ msgid "l-es-CL"
1895
+ msgstr "Spanish (Chile)"
1896
 
1897
+ # Spanish; Castilian
1898
  #: ../../admin/lang/dynamic_strings.php:136
1899
+ msgid "l-es-CO"
1900
+ msgstr "Spanish (Colombia)"
1901
 
1902
+ # Spanish; Castilian
1903
  #: ../../admin/lang/dynamic_strings.php:137
1904
+ msgid "l-es-CR"
1905
+ msgstr "Spanish (Costa Rica)"
1906
 
1907
+ # Spanish; Castilian
1908
  #: ../../admin/lang/dynamic_strings.php:138
1909
+ msgid "l-es-DO"
1910
+ msgstr "Spanish (Dominican Republic)"
1911
 
1912
+ # Spanish; Castilian
1913
  #: ../../admin/lang/dynamic_strings.php:139
1914
+ msgid "l-es-EC"
1915
+ msgstr "Spanish (Ecuador)"
1916
 
1917
+ # Spanish; Castilian
1918
  #: ../../admin/lang/dynamic_strings.php:140
 
 
 
 
1919
  #: ../../admin/lang/dynamic_strings.php:141
1920
+ msgid "l-es-ES"
1921
+ msgstr "Spanish (Castilian)"
1922
 
1923
+ # Spanish; Castilian
1924
  #: ../../admin/lang/dynamic_strings.php:142
1925
+ msgid "l-es-GT"
1926
+ msgstr "Spanish (Guatemala)"
1927
 
1928
+ # Spanish; Castilian
1929
  #: ../../admin/lang/dynamic_strings.php:143
1930
+ msgid "l-es-HN"
1931
+ msgstr "Spanish (Honduras)"
1932
 
1933
+ # Spanish; Castilian
1934
  #: ../../admin/lang/dynamic_strings.php:144
1935
+ msgid "l-es-MX"
1936
+ msgstr "Spanish (Mexico)"
1937
 
1938
+ # Spanish; Castilian
1939
  #: ../../admin/lang/dynamic_strings.php:145
1940
+ msgid "l-es-NI"
1941
+ msgstr "Spanish (Nicaragua)"
1942
 
1943
+ # Spanish; Castilian
1944
  #: ../../admin/lang/dynamic_strings.php:146
1945
+ msgid "l-es-PA"
1946
+ msgstr "Spanish (Panama)"
1947
 
1948
+ # Spanish; Castilian
1949
  #: ../../admin/lang/dynamic_strings.php:147
1950
+ msgid "l-es-PE"
1951
+ msgstr "Spanish (Peru)"
1952
 
1953
+ # Spanish; Castilian
1954
  #: ../../admin/lang/dynamic_strings.php:148
1955
+ msgid "l-es-PR"
1956
+ msgstr "Spanish (Puerto Rico)"
1957
 
1958
+ # Spanish; Castilian
1959
  #: ../../admin/lang/dynamic_strings.php:149
1960
+ msgid "l-es-PY"
1961
+ msgstr "Spanish (Puerto Rico)"
1962
 
1963
+ # Spanish; Castilian
1964
  #: ../../admin/lang/dynamic_strings.php:150
1965
+ msgid "l-es-SV"
1966
+ msgstr "Spanish (El Salvador)"
1967
 
1968
+ # Spanish; Castilian
1969
  #: ../../admin/lang/dynamic_strings.php:151
1970
+ msgid "l-es-UY"
1971
+ msgstr "Spanish (Uruguay)"
1972
 
1973
+ # Spanish; Castilian
1974
  #: ../../admin/lang/dynamic_strings.php:152
1975
+ msgid "l-es-VE"
1976
+ msgstr "Spanish (Venezuela)"
1977
 
1978
+ # Estonian
1979
  #: ../../admin/lang/dynamic_strings.php:153
1980
+ msgid "l-et"
1981
+ msgstr "Estonian"
1982
 
1983
+ # Estonian
1984
  #: ../../admin/lang/dynamic_strings.php:154
1985
+ msgid "l-et-EE"
1986
+ msgstr "Estonian"
1987
 
1988
+ # Basque
1989
  #: ../../admin/lang/dynamic_strings.php:155
1990
+ msgid "l-eu"
1991
+ msgstr "Basque"
1992
 
1993
+ # Basque
1994
  #: ../../admin/lang/dynamic_strings.php:156
1995
+ msgid "l-eu-ES"
1996
+ msgstr "Basque"
1997
 
1998
+ # Persian
1999
  #: ../../admin/lang/dynamic_strings.php:157
2000
+ msgid "l-fa"
2001
+ msgstr "Persian"
2002
 
2003
+ # Persian
2004
  #: ../../admin/lang/dynamic_strings.php:158
2005
+ msgid "l-fa-IR"
2006
+ msgstr "Farsi"
2007
 
2008
+ # Finnish
2009
  #: ../../admin/lang/dynamic_strings.php:159
2010
+ msgid "l-fi"
2011
+ msgstr "Finnish"
2012
 
2013
+ # Finnish
2014
  #: ../../admin/lang/dynamic_strings.php:160
2015
+ msgid "l-fi-FI"
2016
+ msgstr "Finnish"
2017
 
2018
+ # Faroese
2019
  #: ../../admin/lang/dynamic_strings.php:161
2020
+ msgid "l-fo"
2021
+ msgstr "Faroese"
2022
 
2023
+ # Faroese
2024
  #: ../../admin/lang/dynamic_strings.php:162
2025
+ msgid "l-fo-FO"
2026
+ msgstr "Faroese"
2027
 
2028
+ # French
2029
  #: ../../admin/lang/dynamic_strings.php:163
2030
+ msgid "l-fr"
2031
+ msgstr "French"
2032
 
2033
+ # French
2034
  #: ../../admin/lang/dynamic_strings.php:164
2035
+ msgid "l-fr-BE"
2036
+ msgstr "French (Belgium)"
2037
 
2038
+ # French
2039
  #: ../../admin/lang/dynamic_strings.php:165
2040
+ msgid "l-fr-CA"
2041
+ msgstr "French (Canada)"
2042
 
2043
+ # French
2044
  #: ../../admin/lang/dynamic_strings.php:166
2045
+ msgid "l-fr-CH"
2046
+ msgstr "French (Switzerland)"
2047
 
2048
+ # French
2049
  #: ../../admin/lang/dynamic_strings.php:167
2050
+ msgid "l-fr-FR"
2051
+ msgstr "French"
2052
 
2053
+ # French
2054
  #: ../../admin/lang/dynamic_strings.php:168
2055
+ msgid "l-fr-LU"
2056
+ msgstr "French (Luxembourg)"
2057
 
2058
+ # French
2059
  #: ../../admin/lang/dynamic_strings.php:169
2060
+ msgid "l-fr-MC"
2061
+ msgstr "French (Monaco)"
2062
 
2063
+ # Galician
2064
  #: ../../admin/lang/dynamic_strings.php:170
2065
+ msgid "l-gl"
2066
+ msgstr "Galician"
2067
 
2068
+ # Galician
2069
  #: ../../admin/lang/dynamic_strings.php:171
2070
+ msgid "l-gl-ES"
2071
+ msgstr "Galician (Spain)"
2072
 
2073
+ # Gujarati
2074
  #: ../../admin/lang/dynamic_strings.php:172
2075
+ msgid "l-gu"
2076
+ msgstr "Gujarati"
2077
 
2078
+ # Gujarati
2079
  #: ../../admin/lang/dynamic_strings.php:173
2080
+ msgid "l-gu-IN"
2081
+ msgstr "Gujarati (India)"
2082
 
2083
+ # Hebrew
2084
  #: ../../admin/lang/dynamic_strings.php:174
2085
+ msgid "l-he"
2086
+ msgstr "Hebrew"
2087
 
2088
+ # Hebrew
2089
  #: ../../admin/lang/dynamic_strings.php:175
2090
+ msgid "l-he-IL"
2091
+ msgstr "Hebrew"
2092
 
2093
+ # Hindi
2094
  #: ../../admin/lang/dynamic_strings.php:176
2095
+ msgid "l-hi"
2096
+ msgstr "Hindi"
2097
 
2098
+ # Hindi
2099
  #: ../../admin/lang/dynamic_strings.php:177
2100
+ msgid "l-hi-IN"
2101
+ msgstr "Hindi"
2102
 
2103
+ # Croatian
2104
  #: ../../admin/lang/dynamic_strings.php:178
2105
+ msgid "l-hr"
2106
+ msgstr "Croatian"
2107
 
2108
+ # Croatian
2109
  #: ../../admin/lang/dynamic_strings.php:179
2110
+ msgid "l-hr-BA"
2111
+ msgstr "Croatian"
2112
 
2113
+ # Croatian
2114
  #: ../../admin/lang/dynamic_strings.php:180
2115
+ msgid "l-hr-HR"
2116
+ msgstr "Croatian"
2117
 
2118
+ # Hungarian
2119
  #: ../../admin/lang/dynamic_strings.php:181
2120
+ msgid "l-hu"
2121
+ msgstr "Hungarian"
2122
 
2123
+ # Hungarian
2124
  #: ../../admin/lang/dynamic_strings.php:182
2125
+ msgid "l-hu-HU"
2126
+ msgstr "Hungarian"
2127
 
2128
+ # Armenian
2129
  #: ../../admin/lang/dynamic_strings.php:183
2130
+ msgid "l-hy"
2131
+ msgstr "Armenian"
2132
 
2133
+ # Armenian
2134
  #: ../../admin/lang/dynamic_strings.php:184
2135
+ msgid "l-hy-AM"
2136
+ msgstr "Armenian"
2137
 
 
2138
  #: ../../admin/lang/dynamic_strings.php:185
2139
+ msgid "l-id"
2140
+ msgstr ""
2141
 
 
2142
  #: ../../admin/lang/dynamic_strings.php:186
2143
+ msgid "l-id-ID"
2144
+ msgstr ""
2145
 
2146
+ # Icelandic
2147
  #: ../../admin/lang/dynamic_strings.php:187
2148
+ msgid "l-is"
2149
+ msgstr "Icelandic"
2150
 
2151
+ # Icelandic
2152
  #: ../../admin/lang/dynamic_strings.php:188
2153
+ msgid "l-is-IS"
2154
+ msgstr "Icelandic"
2155
 
2156
+ # Italian
2157
  #: ../../admin/lang/dynamic_strings.php:189
2158
+ msgid "l-it"
2159
+ msgstr "Italian"
2160
 
2161
+ # Italian
2162
  #: ../../admin/lang/dynamic_strings.php:190
2163
+ msgid "l-it-CH"
2164
+ msgstr "Italian (Switzerland)"
2165
 
2166
+ # Italian
2167
  #: ../../admin/lang/dynamic_strings.php:191
2168
+ msgid "l-it-IT"
2169
+ msgstr "Italian"
2170
 
2171
+ # Japanese
2172
  #: ../../admin/lang/dynamic_strings.php:192
2173
+ msgid "l-ja"
2174
+ msgstr "Japanese"
2175
 
2176
+ # Japanese
2177
  #: ../../admin/lang/dynamic_strings.php:193
2178
+ msgid "l-ja-JP"
2179
+ msgstr "Japanese"
2180
 
2181
+ # Georgian
2182
  #: ../../admin/lang/dynamic_strings.php:194
2183
+ msgid "l-ka"
2184
+ msgstr "Georgian"
2185
 
2186
+ # Georgian
2187
  #: ../../admin/lang/dynamic_strings.php:195
2188
+ msgid "l-ka-GE"
2189
+ msgstr "Georgian"
2190
 
2191
+ # Kazakh
2192
  #: ../../admin/lang/dynamic_strings.php:196
2193
+ msgid "l-kk"
2194
+ msgstr "Kazakh"
2195
 
2196
+ # Kazakh
2197
  #: ../../admin/lang/dynamic_strings.php:197
2198
+ msgid "l-kk-KZ"
2199
+ msgstr "Kazakh"
2200
 
2201
+ # Kannada
2202
  #: ../../admin/lang/dynamic_strings.php:198
2203
+ msgid "l-kn"
2204
+ msgstr "Kannada"
2205
 
2206
+ # Kannada
2207
  #: ../../admin/lang/dynamic_strings.php:199
2208
+ msgid "l-kn-IN"
2209
+ msgstr "Kannada"
2210
 
2211
+ # Korean
2212
  #: ../../admin/lang/dynamic_strings.php:200
2213
+ msgid "l-ko"
2214
+ msgstr "Korean"
2215
 
2216
+ # Korean
2217
  #: ../../admin/lang/dynamic_strings.php:201
2218
+ msgid "l-ko-KR"
2219
+ msgstr "Korean"
2220
 
2221
+ # Korean
2222
  #: ../../admin/lang/dynamic_strings.php:202
2223
+ msgid "l-kok"
2224
+ msgstr "Konkani (India)"
2225
 
2226
+ # Korean
2227
  #: ../../admin/lang/dynamic_strings.php:203
2228
+ msgid "l-kok-IN"
2229
+ msgstr "Konkani (India)"
2230
 
2231
+ # Kirghiz; Kyrgyz
2232
  #: ../../admin/lang/dynamic_strings.php:204
2233
+ msgid "l-ky"
2234
+ msgstr "Kirghiz; Kyrgyz"
2235
 
2236
+ # Kirghiz; Kyrgyz
2237
  #: ../../admin/lang/dynamic_strings.php:205
2238
+ msgid "l-ky-KG"
2239
+ msgstr "Kirghiz"
2240
 
2241
+ # Lithuanian
2242
  #: ../../admin/lang/dynamic_strings.php:206
2243
+ msgid "l-lt"
2244
+ msgstr "Lithuanian"
2245
 
2246
+ # Lithuanian
2247
  #: ../../admin/lang/dynamic_strings.php:207
2248
+ msgid "l-lt-LT"
2249
+ msgstr "Lithuanian"
2250
 
2251
+ # Latvian
2252
  #: ../../admin/lang/dynamic_strings.php:208
2253
+ msgid "l-lv"
2254
+ msgstr "Latvian"
2255
 
2256
+ # Latvian
2257
  #: ../../admin/lang/dynamic_strings.php:209
2258
+ msgid "l-lv-LV"
2259
+ msgstr "Latvian"
2260
 
2261
+ # Maori
2262
  #: ../../admin/lang/dynamic_strings.php:210
2263
+ msgid "l-mi"
2264
+ msgstr "Maori"
2265
 
2266
+ # Maori
2267
  #: ../../admin/lang/dynamic_strings.php:211
2268
+ msgid "l-mi-NZ"
2269
+ msgstr "Maori (New Zealand)"
2270
 
2271
+ # Macedonian
2272
  #: ../../admin/lang/dynamic_strings.php:212
2273
+ msgid "l-mk"
2274
+ msgstr "Macedonian"
2275
 
2276
+ # Macedonian
2277
  #: ../../admin/lang/dynamic_strings.php:213
2278
+ msgid "l-mk-MK"
2279
+ msgstr "Macedonian"
2280
 
2281
+ # Mongolian
2282
  #: ../../admin/lang/dynamic_strings.php:214
2283
+ msgid "l-mn"
2284
+ msgstr "Mongolian"
2285
 
2286
+ # Mongolian
2287
  #: ../../admin/lang/dynamic_strings.php:215
2288
+ msgid "l-mn-MN"
2289
+ msgstr "Mongolian"
2290
 
2291
+ # Marathi
2292
  #: ../../admin/lang/dynamic_strings.php:216
2293
+ msgid "l-mr"
2294
+ msgstr "Marathi"
2295
 
2296
+ # Marathi
2297
  #: ../../admin/lang/dynamic_strings.php:217
2298
+ msgid "l-mr-IN"
2299
+ msgstr "Marathi"
2300
 
2301
+ # Malay
2302
  #: ../../admin/lang/dynamic_strings.php:218
2303
+ msgid "l-ms"
2304
+ msgstr "Malay"
2305
 
2306
+ # Malay
2307
  #: ../../admin/lang/dynamic_strings.php:219
2308
+ msgid "l-ms-BN"
2309
+ msgstr "Malay"
2310
 
2311
+ # Malay
2312
  #: ../../admin/lang/dynamic_strings.php:220
2313
+ msgid "l-ms-MY"
2314
+ msgstr "Malay"
2315
 
2316
+ # Maltese
2317
  #: ../../admin/lang/dynamic_strings.php:221
2318
+ msgid "l-mt"
2319
+ msgstr "Maltese"
2320
 
2321
+ # Maltese
2322
  #: ../../admin/lang/dynamic_strings.php:222
2323
+ msgid "l-mt-MT"
2324
+ msgstr "Maltese"
2325
 
2326
+ # Norwegian Bokmål
2327
  #: ../../admin/lang/dynamic_strings.php:223
2328
+ msgid "l-nb"
2329
+ msgstr "Norwegian Bokmål"
2330
 
2331
+ # Norwegian Bokmål
2332
  #: ../../admin/lang/dynamic_strings.php:224
2333
+ msgid "l-nb-NO"
2334
+ msgstr "Norwegian Bokmål"
2335
 
2336
+ # Dutch; Flemish
2337
  #: ../../admin/lang/dynamic_strings.php:225
2338
+ msgid "l-nl"
2339
+ msgstr "Dutch; Flemish"
2340
 
2341
+ # Dutch; Flemish
2342
  #: ../../admin/lang/dynamic_strings.php:226
2343
+ msgid "l-nl-BE"
2344
+ msgstr "Dutch (Belgium)"
2345
 
2346
+ # Dutch; Flemish
2347
  #: ../../admin/lang/dynamic_strings.php:227
2348
+ msgid "l-nl-NL"
2349
+ msgstr "Dutch"
2350
 
2351
+ # Norwegian Nynorsk
2352
  #: ../../admin/lang/dynamic_strings.php:228
2353
+ msgid "l-nn-NO"
2354
+ msgstr "Norwegian"
2355
 
 
2356
  #: ../../admin/lang/dynamic_strings.php:229
2357
+ msgid "l-ns"
2358
+ msgstr ""
2359
 
 
2360
  #: ../../admin/lang/dynamic_strings.php:230
2361
+ msgid "l-ns-ZA"
2362
+ msgstr ""
2363
 
2364
+ # Panjabi; Punjabi
2365
  #: ../../admin/lang/dynamic_strings.php:231
2366
+ msgid "l-pa"
2367
+ msgstr "Panjabi; Punjabi"
2368
 
2369
+ # Panjabi; Punjabi
2370
  #: ../../admin/lang/dynamic_strings.php:232
2371
+ msgid "l-pa-IN"
2372
+ msgstr "Panjabi"
2373
 
2374
+ # Polish
2375
  #: ../../admin/lang/dynamic_strings.php:233
2376
+ msgid "l-pl"
2377
+ msgstr "Polish"
2378
 
2379
+ # Polish
2380
  #: ../../admin/lang/dynamic_strings.php:234
2381
+ msgid "l-pl-PL"
2382
+ msgstr "Polish"
2383
 
2384
+ # Pushto; Pashto
2385
  #: ../../admin/lang/dynamic_strings.php:235
2386
+ msgid "l-ps"
2387
+ msgstr "Pushto; Pashto"
2388
 
2389
+ # Pushto; Pashto
2390
  #: ../../admin/lang/dynamic_strings.php:236
2391
+ msgid "l-ps-AR"
2392
+ msgstr "Pushto"
2393
 
2394
+ # Portuguese
2395
  #: ../../admin/lang/dynamic_strings.php:237
2396
+ msgid "l-pt"
2397
+ msgstr "Portuguese"
2398
 
2399
+ # Portuguese
2400
  #: ../../admin/lang/dynamic_strings.php:238
2401
+ msgid "l-pt-BR"
2402
+ msgstr "Portuguese (Brazil)"
2403
 
2404
+ # Portuguese
2405
  #: ../../admin/lang/dynamic_strings.php:239
2406
+ msgid "l-pt-PT"
2407
+ msgstr "Portuguese"
2408
 
2409
+ # Quechua
2410
  #: ../../admin/lang/dynamic_strings.php:240
2411
+ msgid "l-qu"
2412
+ msgstr "Quechua"
2413
 
2414
+ # Quechua
2415
  #: ../../admin/lang/dynamic_strings.php:241
2416
+ msgid "l-qu-BO"
2417
+ msgstr "Quechua (Bolivia)"
2418
 
2419
+ # Quechua
2420
  #: ../../admin/lang/dynamic_strings.php:242
2421
+ msgid "l-qu-EC"
2422
+ msgstr "Quechua (Ecuador)"
2423
 
2424
+ # Quechua
2425
  #: ../../admin/lang/dynamic_strings.php:243
2426
+ msgid "l-qu-PE"
2427
+ msgstr "Quechua (Peru)"
2428
 
2429
+ # Romanian; Moldavian; Moldovan
2430
  #: ../../admin/lang/dynamic_strings.php:244
2431
+ msgid "l-ro"
2432
+ msgstr "Romanian; Moldavian; Moldovan"
2433
 
2434
+ # Romanian; Moldavian; Moldovan
2435
  #: ../../admin/lang/dynamic_strings.php:245
2436
+ msgid "l-ro-RO"
2437
+ msgstr "Romanian"
2438
 
2439
+ # Russian
2440
  #: ../../admin/lang/dynamic_strings.php:246
2441
+ msgid "l-ru"
2442
+ msgstr "Russian"
2443
 
2444
+ # Russian
2445
  #: ../../admin/lang/dynamic_strings.php:247
2446
+ msgid "l-ru-RU"
2447
+ msgstr "Russian"
2448
 
 
2449
  #: ../../admin/lang/dynamic_strings.php:248
2450
+ msgid "l-sa"
2451
+ msgstr ""
2452
 
 
2453
  #: ../../admin/lang/dynamic_strings.php:249
2454
+ msgid "l-sa-IN"
2455
+ msgstr ""
2456
 
2457
+ # Northern Sami
2458
  #: ../../admin/lang/dynamic_strings.php:250
2459
+ msgid "l-se"
2460
+ msgstr "Northern Sami"
2461
 
2462
+ # Northern Sami
2463
  #: ../../admin/lang/dynamic_strings.php:251
 
 
 
 
2464
  #: ../../admin/lang/dynamic_strings.php:252
 
 
 
 
2465
  #: ../../admin/lang/dynamic_strings.php:253
2466
+ msgid "l-se-FI"
2467
+ msgstr "Northern Sami"
2468
 
2469
+ # Northern Sami
2470
  #: ../../admin/lang/dynamic_strings.php:254
 
 
 
 
2471
  #: ../../admin/lang/dynamic_strings.php:255
 
 
 
 
2472
  #: ../../admin/lang/dynamic_strings.php:256
2473
+ msgid "l-se-NO"
2474
+ msgstr "Northern Sami (Norway)"
2475
 
2476
+ # Northern Sami
2477
  #: ../../admin/lang/dynamic_strings.php:257
 
 
 
 
2478
  #: ../../admin/lang/dynamic_strings.php:258
 
 
 
 
2479
  #: ../../admin/lang/dynamic_strings.php:259
2480
+ msgid "l-se-SE"
2481
+ msgstr "Northern Sami"
2482
 
2483
+ # Slovak
2484
  #: ../../admin/lang/dynamic_strings.php:260
2485
+ msgid "l-sk"
2486
+ msgstr "Slovak"
2487
 
2488
+ # Slovak
2489
  #: ../../admin/lang/dynamic_strings.php:261
2490
+ msgid "l-sk-SK"
2491
+ msgstr "Slovak"
2492
 
2493
+ # Slovenian
2494
  #: ../../admin/lang/dynamic_strings.php:262
2495
+ msgid "l-sl"
2496
+ msgstr "Slovenian"
2497
 
2498
+ # Slovenian
2499
  #: ../../admin/lang/dynamic_strings.php:263
2500
+ msgid "l-sl-SI"
2501
+ msgstr "Slovenian"
2502
 
2503
+ # Albanian
2504
  #: ../../admin/lang/dynamic_strings.php:264
2505
+ msgid "l-sq"
2506
+ msgstr "Albanian"
2507
 
2508
+ # Albanian
2509
  #: ../../admin/lang/dynamic_strings.php:265
2510
+ msgid "l-sq-AL"
2511
+ msgstr "Albanian"
2512
 
2513
+ # Serbian
2514
  #: ../../admin/lang/dynamic_strings.php:266
 
 
 
 
2515
  #: ../../admin/lang/dynamic_strings.php:267
2516
+ msgid "l-sr-BA"
2517
+ msgstr "Serbian"
2518
 
2519
+ # Serbian
2520
  #: ../../admin/lang/dynamic_strings.php:268
 
 
 
 
2521
  #: ../../admin/lang/dynamic_strings.php:269
2522
+ msgid "l-sr-SP"
2523
+ msgstr "Serbian"
2524
 
2525
+ # Swedish
2526
  #: ../../admin/lang/dynamic_strings.php:270
2527
+ msgid "l-sv"
2528
+ msgstr "Swedish"
2529
 
2530
+ # Swedish
2531
  #: ../../admin/lang/dynamic_strings.php:271
2532
+ msgid "l-sv-FI"
2533
+ msgstr "Swedish (Finland)"
2534
 
2535
+ # Swedish
2536
  #: ../../admin/lang/dynamic_strings.php:272
2537
+ msgid "l-sv-SE"
2538
+ msgstr "Swedish"
2539
 
2540
+ # Swahili
2541
  #: ../../admin/lang/dynamic_strings.php:273
2542
+ msgid "l-sw"
2543
+ msgstr "Swahili"
2544
 
2545
+ # Swahili
2546
  #: ../../admin/lang/dynamic_strings.php:274
2547
+ msgid "l-sw-KE"
2548
+ msgstr "Swahili (Kenya)"
2549
 
 
2550
  #: ../../admin/lang/dynamic_strings.php:275
2551
+ msgid "l-syr"
2552
+ msgstr ""
2553
 
 
2554
  #: ../../admin/lang/dynamic_strings.php:276
2555
+ msgid "l-syr-SY"
2556
+ msgstr ""
2557
 
2558
+ # Tamil
2559
  #: ../../admin/lang/dynamic_strings.php:277
2560
+ msgid "l-ta"
2561
+ msgstr "Tamil"
2562
 
2563
+ # Tamil
2564
  #: ../../admin/lang/dynamic_strings.php:278
2565
+ msgid "l-ta-IN"
2566
+ msgstr "Tamil"
2567
 
2568
+ # Telugu
2569
  #: ../../admin/lang/dynamic_strings.php:279
2570
+ msgid "l-te"
2571
+ msgstr "Telugu"
2572
 
2573
+ # Telugu
2574
  #: ../../admin/lang/dynamic_strings.php:280
2575
+ msgid "l-te-IN"
2576
+ msgstr "Telugu"
2577
 
2578
+ # Thai
2579
  #: ../../admin/lang/dynamic_strings.php:281
2580
+ msgid "l-th"
2581
+ msgstr "Thai"
2582
 
2583
+ # Thai
2584
  #: ../../admin/lang/dynamic_strings.php:282
2585
+ msgid "l-th-TH"
2586
+ msgstr "Thai"
2587
 
2588
+ # Tagalog
2589
  #: ../../admin/lang/dynamic_strings.php:283
2590
+ msgid "l-tl"
2591
+ msgstr "Tagalog"
2592
 
2593
+ # Tagalog
2594
  #: ../../admin/lang/dynamic_strings.php:284
2595
+ msgid "l-tl-PH"
2596
+ msgstr "Tagalog"
2597
 
2598
+ # Tswana
2599
  #: ../../admin/lang/dynamic_strings.php:285
2600
+ msgid "l-tn"
2601
+ msgstr "Tswana"
2602
 
2603
+ # Tswana
2604
  #: ../../admin/lang/dynamic_strings.php:286
2605
+ msgid "l-tn-ZA"
2606
+ msgstr "Tswana"
2607
 
2608
+ # Turkish
2609
  #: ../../admin/lang/dynamic_strings.php:287
2610
+ msgid "l-tr"
2611
+ msgstr "Turkish"
2612
 
2613
+ # Turkish
2614
  #: ../../admin/lang/dynamic_strings.php:288
2615
+ msgid "l-tr-TR"
2616
+ msgstr "Turkish"
2617
 
2618
+ # Tatar
2619
  #: ../../admin/lang/dynamic_strings.php:289
2620
+ msgid "l-tt"
2621
+ msgstr "Tatar"
2622
 
2623
+ # Tatar
2624
  #: ../../admin/lang/dynamic_strings.php:290
2625
+ msgid "l-tt-RU"
2626
+ msgstr "Tatar"
2627
 
2628
+ # Tsonga
2629
  #: ../../admin/lang/dynamic_strings.php:291
2630
+ msgid "l-ts"
2631
+ msgstr "Tsonga"
2632
 
2633
+ # Ukrainian
2634
  #: ../../admin/lang/dynamic_strings.php:292
2635
+ msgid "l-uk"
2636
+ msgstr "Ukrainian"
2637
 
2638
+ # Ukrainian
2639
  #: ../../admin/lang/dynamic_strings.php:293
2640
+ msgid "l-uk-UA"
2641
+ msgstr "Ukrainian"
2642
 
2643
+ # Urdu
2644
  #: ../../admin/lang/dynamic_strings.php:294
2645
+ msgid "l-ur"
2646
+ msgstr "Urdu"
2647
 
2648
+ # Urdu
2649
  #: ../../admin/lang/dynamic_strings.php:295
2650
+ msgid "l-ur-PK"
2651
+ msgstr "Urdu"
2652
 
2653
+ # Uzbek
2654
  #: ../../admin/lang/dynamic_strings.php:296
2655
+ msgid "l-uz"
2656
+ msgstr "Uzbek"
2657
 
2658
+ # Uzbek
2659
  #: ../../admin/lang/dynamic_strings.php:297
 
 
 
 
2660
  #: ../../admin/lang/dynamic_strings.php:298
2661
+ msgid "l-uz-UZ"
2662
+ msgstr "Uzbek"
2663
 
2664
+ # Vietnamese
2665
  #: ../../admin/lang/dynamic_strings.php:299
2666
+ msgid "l-vi"
2667
+ msgstr "Vietnamese"
2668
 
2669
+ # Vietnamese
2670
  #: ../../admin/lang/dynamic_strings.php:300
2671
+ msgid "l-vi-VN"
2672
+ msgstr "Vietnamese"
2673
 
2674
+ # Xhosa
2675
  #: ../../admin/lang/dynamic_strings.php:301
2676
+ msgid "l-xh"
2677
+ msgstr "Xhosa"
2678
 
2679
+ # Xhosa
2680
  #: ../../admin/lang/dynamic_strings.php:302
2681
+ msgid "l-xh-ZA"
2682
+ msgstr "Xhosa"
2683
 
2684
+ # Chinese
2685
  #: ../../admin/lang/dynamic_strings.php:303
2686
+ msgid "l-zh"
2687
+ msgstr "Chinese"
2688
 
2689
+ # Chinese
2690
  #: ../../admin/lang/dynamic_strings.php:304
2691
+ msgid "l-zh-CN"
2692
+ msgstr "Chinese"
2693
 
2694
+ # Chinese
2695
  #: ../../admin/lang/dynamic_strings.php:305
2696
+ msgid "l-zh-HK"
2697
+ msgstr "Chinese (Hong Kong)"
2698
 
2699
+ # Chinese
2700
  #: ../../admin/lang/dynamic_strings.php:306
2701
+ msgid "l-zh-MO"
2702
+ msgstr "Chinese (Macau)"
2703
 
2704
+ # Chinese
2705
  #: ../../admin/lang/dynamic_strings.php:307
2706
+ msgid "l-zh-SG"
2707
+ msgstr "Chinese (Singapore)"
2708
 
2709
+ # Chinese
2710
  #: ../../admin/lang/dynamic_strings.php:308
2711
+ msgid "l-zh-TW"
2712
+ msgstr "Chinese (T)"
2713
 
2714
+ # Zulu
2715
  #: ../../admin/lang/dynamic_strings.php:309
2716
+ msgid "l-zu"
2717
+ msgstr "Zulu"
2718
 
2719
+ # Zulu
2720
  #: ../../admin/lang/dynamic_strings.php:310
2721
+ msgid "l-zu-ZA"
2722
+ msgstr "Zulu (South Africa)"
2723
 
 
2724
  #: ../../admin/lang/dynamic_strings.php:311
2725
+ #: ../../admin/view/wp-slimstat-reports.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2726
  msgid "l-"
2727
  msgstr "Unknown"
2728
 
2729
  # Unknown
2730
+ #: ../../admin/lang/dynamic_strings.php:312
2731
  msgid "l-empty"
2732
  msgstr "Unknown"
2733
 
2734
  # Unknown
2735
+ #: ../../admin/lang/dynamic_strings.php:313
2736
  msgid "l-xx"
2737
  msgstr "Unknown"
2738
 
2739
+ #: ../../admin/lang/dynamic_strings.php:314
2740
  msgid "c-xy"
2741
  msgstr "Local IP"
2742
 
2743
+ #: ../../admin/view/index.php:11
2744
  msgid "Details"
2745
  msgstr ""
2746
 
2747
+ #: ../../admin/view/index.php:29 ../../admin/view/index.php:101
2748
+ #: ../../admin/view/index.php:102 ../../admin/view/wp-slimstat-reports.php:68
2749
  msgid "Year"
2750
  msgstr ""
2751
 
2752
+ #: ../../admin/view/index.php:31
2753
  msgid "Show records where"
2754
  msgstr ""
2755
 
2756
+ #: ../../admin/view/index.php:32
2757
  msgid ""
2758
  "Please refer to the contextual help (available on WP 3.3+) for more "
2759
  "information on what these filters mean."
2760
  msgstr ""
2761
 
2762
+ #: ../../admin/view/index.php:45
2763
+ msgid "-- Advanced filters --"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2764
  msgstr ""
2765
 
2766
+ #: ../../admin/view/index.php:46 ../../admin/view/wp-slimstat-reports.php:50
2767
+ #: ../../admin/view/wp-slimstat-reports.php:97
2768
+ msgid "Browser Capabilities"
 
 
 
2769
  msgstr ""
2770
 
2771
+ #: ../../admin/view/index.php:58 ../../admin/view/wp-slimstat-reports.php:62
2772
+ msgid "Resource ID"
 
 
 
2773
  msgstr ""
2774
 
2775
+ #: ../../admin/view/index.php:63
2776
+ msgid "equals"
 
 
 
 
2777
  msgstr ""
2778
 
2779
+ #: ../../admin/view/index.php:64
2780
+ msgid "is not equal to"
 
 
2781
  msgstr ""
2782
 
2783
+ #: ../../admin/view/index.php:65
2784
+ msgid "contains"
 
 
2785
  msgstr ""
2786
 
2787
+ #: ../../admin/view/index.php:66
2788
+ msgid "does not contain"
 
 
2789
  msgstr ""
2790
 
2791
+ #: ../../admin/view/index.php:67
2792
+ msgid "starts with"
 
 
 
 
2793
  msgstr ""
2794
 
2795
+ #: ../../admin/view/index.php:68
2796
+ msgid "ends with"
 
 
2797
  msgstr ""
2798
 
2799
+ #: ../../admin/view/index.php:69
2800
+ msgid "sounds like"
 
 
2801
  msgstr ""
2802
 
2803
+ #: ../../admin/view/index.php:70
2804
+ msgid "is empty"
2805
  msgstr ""
2806
 
2807
+ #: ../../admin/view/index.php:71
2808
+ msgid "is not empty"
2809
  msgstr ""
2810
 
2811
+ #: ../../admin/view/index.php:72
2812
+ msgid "is greater than"
2813
  msgstr ""
2814
 
2815
+ #: ../../admin/view/index.php:73
2816
+ msgid "is less than"
2817
  msgstr ""
2818
 
2819
+ #: ../../admin/view/index.php:74
2820
+ msgid "matches"
 
 
2821
  msgstr ""
2822
 
2823
+ #: ../../admin/view/index.php:75
2824
+ msgid "does not match"
 
 
 
 
2825
  msgstr ""
2826
 
2827
+ #: ../../admin/view/index.php:80
2828
+ msgid "Select a day to make the interval field appear."
2829
  msgstr ""
2830
 
2831
+ #: ../../admin/view/index.php:81
2832
+ msgid "Filter by date"
 
 
 
2833
  msgstr ""
2834
 
2835
+ #: ../../admin/view/index.php:84 ../../admin/view/wp-slimstat-reports.php:66
2836
+ msgid "Day"
 
 
 
2837
  msgstr ""
2838
 
2839
+ #: ../../admin/view/index.php:93 ../../admin/view/wp-slimstat-reports.php:67
2840
+ msgid "Month"
 
 
2841
  msgstr ""
2842
 
2843
+ #: ../../admin/view/index.php:110
2844
+ msgid "Go"
2845
  msgstr ""
2846
 
2847
  # Unknown
2848
+ #: ../../admin/view/index.php:126
2849
  msgid "c-xx"
2850
  msgstr "Unknown"
2851
 
2852
  # Afghanistan
2853
+ #: ../../admin/view/index.php:126
2854
  msgid "c-af"
2855
  msgstr "Afghanistan"
2856
 
2857
  # Åland Islands
2858
+ #: ../../admin/view/index.php:126
2859
  msgid "c-ax"
2860
  msgstr "Aland Islands"
2861
 
2862
  # Albania
2863
+ #: ../../admin/view/index.php:126
2864
  msgid "c-al"
2865
  msgstr "Albania"
2866
 
2867
  # Algeria
2868
+ #: ../../admin/view/index.php:126
2869
  msgid "c-dz"
2870
  msgstr "Algeria"
2871
 
2872
  # Andorra
2873
+ #: ../../admin/view/index.php:126
2874
  msgid "c-ad"
2875
  msgstr "Andorra"
2876
 
2877
  # Angola
2878
+ #: ../../admin/view/index.php:126
2879
  msgid "c-ao"
2880
  msgstr "Angola"
2881
 
2882
  # Anguilla
2883
+ #: ../../admin/view/index.php:126
2884
  msgid "c-ai"
2885
  msgstr "Anguilla"
2886
 
2887
  # Antigua and Barbuda
2888
+ #: ../../admin/view/index.php:126
2889
  msgid "c-ag"
2890
  msgstr "Antigua and Barbuda"
2891
 
2892
  # Argentina
2893
+ #: ../../admin/view/index.php:126
2894
  msgid "c-ar"
2895
  msgstr "Argentina"
2896
 
2897
  # Armenia
2898
+ #: ../../admin/view/index.php:126
2899
  msgid "c-am"
2900
  msgstr "Armenia"
2901
 
2902
  # Aruba
2903
+ #: ../../admin/view/index.php:126
2904
  msgid "c-aw"
2905
  msgstr "Aruba"
2906
 
2907
  # Australia
2908
+ #: ../../admin/view/index.php:126
2909
  msgid "c-au"
2910
  msgstr "Australia"
2911
 
2912
  # Austria
2913
+ #: ../../admin/view/index.php:126
2914
  msgid "c-at"
2915
  msgstr "Austria"
2916
 
2917
  # Azerbaijan
2918
+ #: ../../admin/view/index.php:126
2919
  msgid "c-az"
2920
  msgstr "Azerbaijan"
2921
 
2922
  # Bahamas
2923
+ #: ../../admin/view/index.php:126
2924
  msgid "c-bs"
2925
  msgstr "Bahamas"
2926
 
2927
  # Bahrain
2928
+ #: ../../admin/view/index.php:126
2929
  msgid "c-bh"
2930
  msgstr "Bahrain"
2931
 
2932
  # Bangladesh
2933
+ #: ../../admin/view/index.php:126
2934
  msgid "c-bd"
2935
  msgstr "Bangladesh"
2936
 
2937
  # Barbados
2938
+ #: ../../admin/view/index.php:126
2939
  msgid "c-bb"
2940
  msgstr "Barbados"
2941
 
2942
  # Belarus
2943
+ #: ../../admin/view/index.php:126
2944
  msgid "c-by"
2945
  msgstr "Belarus"
2946
 
2947
  # Belgium
2948
+ #: ../../admin/view/index.php:126
2949
  msgid "c-be"
2950
  msgstr "Belgium"
2951
 
2952
  # Belize
2953
+ #: ../../admin/view/index.php:126
2954
  msgid "c-bz"
2955
  msgstr "Belize"
2956
 
2957
  # Benin
2958
+ #: ../../admin/view/index.php:126
2959
  msgid "c-bj"
2960
  msgstr "Benin"
2961
 
2962
  # Bermuda
2963
+ #: ../../admin/view/index.php:126
2964
  msgid "c-bm"
2965
  msgstr "Bermuda"
2966
 
2967
  # Bhutan
2968
+ #: ../../admin/view/index.php:126
2969
  msgid "c-bt"
2970
  msgstr "Bhutan"
2971
 
2972
  # Bolivia
2973
+ #: ../../admin/view/index.php:126
2974
  msgid "c-bo"
2975
  msgstr "Bolivia"
2976
 
2977
  # Bosnia and Herzegovina
2978
+ #: ../../admin/view/index.php:126
2979
  msgid "c-ba"
2980
  msgstr "Bosnia and Herzegovina"
2981
 
2982
  # Botswana
2983
+ #: ../../admin/view/index.php:126
2984
  msgid "c-bw"
2985
  msgstr "Botswana"
2986
 
2987
  # Brazil
2988
+ #: ../../admin/view/index.php:126
2989
  msgid "c-br"
2990
  msgstr "Brazil"
2991
 
2992
  # Brunei Darussalam
2993
+ #: ../../admin/view/index.php:126
2994
  msgid "c-bn"
2995
  msgstr "Brunei Darussalam"
2996
 
2997
  # Bulgaria
2998
+ #: ../../admin/view/index.php:126
2999
  msgid "c-bg"
3000
  msgstr "Bulgaria"
3001
 
3002
  # Burkina Faso
3003
+ #: ../../admin/view/index.php:126
3004
  msgid "c-bf"
3005
  msgstr "Burkina Faso"
3006
 
3007
  # Burundi
3008
+ #: ../../admin/view/index.php:126
3009
  msgid "c-bi"
3010
  msgstr "Burundi"
3011
 
3012
  # Cambodia
3013
+ #: ../../admin/view/index.php:126
3014
  msgid "c-kh"
3015
  msgstr "Cambodia"
3016
 
3017
  # Cameroon
3018
+ #: ../../admin/view/index.php:126
3019
  msgid "c-cm"
3020
  msgstr "Cameroon"
3021
 
3022
  # Canada
3023
+ #: ../../admin/view/index.php:126
3024
  msgid "c-ca"
3025
  msgstr "Canada"
3026
 
3027
  # Cape Verde
3028
+ #: ../../admin/view/index.php:126
3029
  msgid "c-cv"
3030
  msgstr "Cape Verde"
3031
 
3032
  # Cayman Islands
3033
+ #: ../../admin/view/index.php:126
3034
  msgid "c-ky"
3035
  msgstr "Cayman Islands"
3036
 
3037
  # Central African Republic
3038
+ #: ../../admin/view/index.php:126
3039
  msgid "c-cf"
3040
  msgstr "Central African Republic"
3041
 
3042
  # Chad
3043
+ #: ../../admin/view/index.php:126
3044
  msgid "c-td"
3045
  msgstr "Chad"
3046
 
3047
  # Chile
3048
+ #: ../../admin/view/index.php:126
3049
  msgid "c-cl"
3050
  msgstr "Chile"
3051
 
3052
  # China
3053
+ #: ../../admin/view/index.php:126
3054
  msgid "c-cn"
3055
  msgstr "China"
3056
 
3057
  # Colombia
3058
+ #: ../../admin/view/index.php:126
3059
  msgid "c-co"
3060
  msgstr "Colombia"
3061
 
3062
  # Comoros
3063
+ #: ../../admin/view/index.php:126
3064
  msgid "c-km"
3065
  msgstr "Comoros"
3066
 
3067
  # Congo
3068
+ #: ../../admin/view/index.php:126
3069
  msgid "c-cg"
3070
  msgstr "Congo"
3071
 
3072
  # The Democratic Republic of the Congo
3073
+ #: ../../admin/view/index.php:126
3074
  msgid "c-cd"
3075
  msgstr "The Democratic Republic of the Congo"
3076
 
3077
  # Costa Rica
3078
+ #: ../../admin/view/index.php:126
3079
  msgid "c-cr"
3080
  msgstr "Costa Rica"
3081
 
3082
  # Côte d'Ivoire
3083
+ #: ../../admin/view/index.php:126
3084
  msgid "c-ci"
3085
  msgstr "Côte d'Ivoire"
3086
 
3087
  # Croatia
3088
+ #: ../../admin/view/index.php:126
3089
  msgid "c-hr"
3090
  msgstr "Croatia"
3091
 
3092
  # Cuba
3093
+ #: ../../admin/view/index.php:126
3094
  msgid "c-cu"
3095
  msgstr "Cuba"
3096
 
3097
  # Cyprus
3098
+ #: ../../admin/view/index.php:126
3099
  msgid "c-cy"
3100
  msgstr "Cyprus"
3101
 
3102
  # Czech Republic
3103
+ #: ../../admin/view/index.php:126
3104
  msgid "c-cz"
3105
  msgstr "Czech Republic"
3106
 
3107
  # Denmark
3108
+ #: ../../admin/view/index.php:126
3109
  msgid "c-dk"
3110
  msgstr "Denmark"
3111
 
3112
  # Djibouti
3113
+ #: ../../admin/view/index.php:126
3114
  msgid "c-dj"
3115
  msgstr "Djibouti"
3116
 
3117
  # Dominica
3118
+ #: ../../admin/view/index.php:126
3119
  msgid "c-dm"
3120
  msgstr "Dominica"
3121
 
3122
  # Dominican Republic
3123
+ #: ../../admin/view/index.php:126
3124
  msgid "c-do"
3125
  msgstr "Dominican Republic"
3126
 
3127
  # Ecuador
3128
+ #: ../../admin/view/index.php:126
3129
  msgid "c-ec"
3130
  msgstr "Ecuador"
3131
 
3132
  # Egypt
3133
+ #: ../../admin/view/index.php:126
3134
  msgid "c-eg"
3135
  msgstr "Egypt"
3136
 
3137
  # El Salvador
3138
+ #: ../../admin/view/index.php:126
3139
  msgid "c-sv"
3140
  msgstr "El Salvador"
3141
 
3142
  # Equatorial Guinea
3143
+ #: ../../admin/view/index.php:126
3144
  msgid "c-gq"
3145
  msgstr "Equatorial Guinea"
3146
 
3147
  # Eritrea
3148
+ #: ../../admin/view/index.php:126
3149
  msgid "c-er"
3150
  msgstr "Eritrea"
3151
 
3152
  # Estonia
3153
+ #: ../../admin/view/index.php:126
3154
  msgid "c-ee"
3155
  msgstr "Estonia"
3156
 
3157
  # Ethiopia
3158
+ #: ../../admin/view/index.php:126
3159
  msgid "c-et"
3160
  msgstr "Ethiopia"
3161
 
3162
  # Faroe Islands
3163
+ #: ../../admin/view/index.php:126
3164
  msgid "c-fo"
3165
  msgstr "Faroe Islands"
3166
 
3167
  # Falkland Islands (Malvinas)
3168
+ #: ../../admin/view/index.php:126
3169
  msgid "c-fk"
3170
  msgstr "Falkland Islands (Malvinas)"
3171
 
3172
  # Fiji
3173
+ #: ../../admin/view/index.php:126
3174
  msgid "c-fj"
3175
  msgstr "Fiji"
3176
 
3177
  # Finland
3178
+ #: ../../admin/view/index.php:126
3179
  msgid "c-fi"
3180
  msgstr "Finland"
3181
 
3182
  # France
3183
+ #: ../../admin/view/index.php:126
3184
  msgid "c-fr"
3185
  msgstr "France"
3186
 
3187
  # French Guiana
3188
+ #: ../../admin/view/index.php:126
3189
  msgid "c-gf"
3190
  msgstr "French Guiana"
3191
 
3192
  # Gabon
3193
+ #: ../../admin/view/index.php:126
3194
  msgid "c-ga"
3195
  msgstr "Gabon"
3196
 
3197
  # Gambia
3198
+ #: ../../admin/view/index.php:126
3199
  msgid "c-gm"
3200
  msgstr "Gambia"
3201
 
3202
  # Georgia
3203
+ #: ../../admin/view/index.php:126
3204
  msgid "c-ge"
3205
  msgstr "Georgia"
3206
 
3207
  # Germany
3208
+ #: ../../admin/view/index.php:126
3209
  msgid "c-de"
3210
  msgstr "Germany"
3211
 
3212
  # Ghana
3213
+ #: ../../admin/view/index.php:126
3214
  msgid "c-gh"
3215
  msgstr "Ghana"
3216
 
3217
  # Greece
3218
+ #: ../../admin/view/index.php:126
3219
  msgid "c-gr"
3220
  msgstr "Greece"
3221
 
3222
  # Greenland
3223
+ #: ../../admin/view/index.php:126
3224
  msgid "c-gl"
3225
  msgstr "Greenland"
3226
 
3227
  # Grenada
3228
+ #: ../../admin/view/index.php:126
3229
  msgid "c-gd"
3230
  msgstr "Grenada"
3231
 
3232
  # Guadeloupe
3233
+ #: ../../admin/view/index.php:126
3234
  msgid "c-gp"
3235
  msgstr "Guadeloupe"
3236
 
3237
  # Guatemala
3238
+ #: ../../admin/view/index.php:126
3239
  msgid "c-gt"
3240
  msgstr "Guatemala"
3241
 
3242
  # Guinea
3243
+ #: ../../admin/view/index.php:126
3244
  msgid "c-gn"
3245
  msgstr "Guinea"
3246
 
3247
  # Guinea-Bissau
3248
+ #: ../../admin/view/index.php:126
3249
  msgid "c-gw"
3250
  msgstr "Guinea-Bissau"
3251
 
3252
  # Guyana
3253
+ #: ../../admin/view/index.php:126
3254
  msgid "c-gy"
3255
  msgstr "Guyana"
3256
 
3257
  # Haiti
3258
+ #: ../../admin/view/index.php:126
3259
  msgid "c-ht"
3260
  msgstr "Haiti"
3261
 
3262
  # Honduras
3263
+ #: ../../admin/view/index.php:126
3264
  msgid "c-hn"
3265
  msgstr "Honduras"
3266
 
3267
  # Hong Kong
3268
+ #: ../../admin/view/index.php:126
3269
  msgid "c-hk"
3270
  msgstr "Hong Kong"
3271
 
3272
  # Hungary
3273
+ #: ../../admin/view/index.php:126
3274
  msgid "c-hu"
3275
  msgstr "Hungary"
3276
 
3277
  # Iceland
3278
+ #: ../../admin/view/index.php:126
3279
  msgid "c-is"
3280
  msgstr "Iceland"
3281
 
3282
  # India
3283
+ #: ../../admin/view/index.php:126
3284
  msgid "c-in"
3285
  msgstr "India"
3286
 
3287
  # Indonesia
3288
+ #: ../../admin/view/index.php:126
3289
  msgid "c-id"
3290
  msgstr "Indonesia"
3291
 
3292
  # Islamic Republic of Iran
3293
+ #: ../../admin/view/index.php:126
3294
  msgid "c-ir"
3295
  msgstr "Islamic Republic of Iran"
3296
 
3297
  # Iraq
3298
+ #: ../../admin/view/index.php:126
3299
  msgid "c-iq"
3300
  msgstr "Iraq"
3301
 
3302
  # Ireland
3303
+ #: ../../admin/view/index.php:126
3304
  msgid "c-ie"
3305
  msgstr "Ireland"
3306
 
3307
  # Israel
3308
+ #: ../../admin/view/index.php:126
3309
  msgid "c-il"
3310
  msgstr "Israel"
3311
 
3312
  # Italy
3313
+ #: ../../admin/view/index.php:126
3314
  msgid "c-it"
3315
  msgstr "Italy"
3316
 
3317
  # Jamaica
3318
+ #: ../../admin/view/index.php:126
3319
  msgid "c-jm"
3320
  msgstr "Jamaica"
3321
 
3322
  # Japan
3323
+ #: ../../admin/view/index.php:126
3324
  msgid "c-jp"
3325
  msgstr "Japan"
3326
 
3327
  # Jordan
3328
+ #: ../../admin/view/index.php:126
3329
  msgid "c-jo"
3330
  msgstr "Jordan"
3331
 
3332
  # Kazakhstan
3333
+ #: ../../admin/view/index.php:126
3334
  msgid "c-kz"
3335
  msgstr "Kazakhstan"
3336
 
3337
  # Kenya
3338
+ #: ../../admin/view/index.php:126
3339
  msgid "c-ke"
3340
  msgstr "Kenya"
3341
 
3342
  # Nauru
3343
+ #: ../../admin/view/index.php:126
3344
  msgid "c-nr"
3345
  msgstr "Nauru"
3346
 
3347
  # Democratic People's Republic of Korea
3348
+ #: ../../admin/view/index.php:126
3349
  msgid "c-kp"
3350
  msgstr "Democratic People's Republic of Korea"
3351
 
3352
  # Republic of Korea
3353
+ #: ../../admin/view/index.php:126
3354
  msgid "c-kr"
3355
  msgstr "Republic of Korea"
3356
 
3357
+ #: ../../admin/view/index.php:126
3358
  msgid "c-kv"
3359
  msgstr "Kosovo"
3360
 
3361
  # Kuwait
3362
+ #: ../../admin/view/index.php:126
3363
  msgid "c-kw"
3364
  msgstr "Kuwait"
3365
 
3366
  # Kyrgyzstan
3367
+ #: ../../admin/view/index.php:126
3368
  msgid "c-kg"
3369
  msgstr "Kyrgyzstan"
3370
 
3371
  # Lao People's Democratic Republic
3372
+ #: ../../admin/view/index.php:126
3373
  msgid "c-la"
3374
  msgstr "Lao People's Democratic Republic"
3375
 
3376
  # Latvia
3377
+ #: ../../admin/view/index.php:126
3378
  msgid "c-lv"
3379
  msgstr "Latvia"
3380
 
3381
  # Lebanon
3382
+ #: ../../admin/view/index.php:126
3383
  msgid "c-lb"
3384
  msgstr "Lebanon"
3385
 
3386
  # Lesotho
3387
+ #: ../../admin/view/index.php:126
3388
  msgid "c-ls"
3389
  msgstr "Lesotho"
3390
 
3391
  # Liberia
3392
+ #: ../../admin/view/index.php:126
3393
  msgid "c-lr"
3394
  msgstr "Liberia"
3395
 
3396
  # Libyan Arab Jamahiriya
3397
+ #: ../../admin/view/index.php:126
3398
  msgid "c-ly"
3399
  msgstr "Libyan Arab Jamahiriya"
3400
 
3401
  # Liechtenstein
3402
+ #: ../../admin/view/index.php:126
3403
  msgid "c-li"
3404
  msgstr "Liechtenstein"
3405
 
3406
  # Lithuania
3407
+ #: ../../admin/view/index.php:126
3408
  msgid "c-lt"
3409
  msgstr "Lithuania"
3410
 
3411
  # Luxembourg
3412
+ #: ../../admin/view/index.php:126
3413
  msgid "c-lu"
3414
  msgstr "Luxembourg"
3415
 
3416
  # The Former Yugoslav Republic of Macedonia
3417
+ #: ../../admin/view/index.php:126
3418
  msgid "c-mk"
3419
  msgstr "The Former Yugoslav Republic of Macedonia"
3420
 
3421
  # Madagascar
3422
+ #: ../../admin/view/index.php:126
3423
  msgid "c-mg"
3424
  msgstr "Madagascar"
3425
 
3426
  # Malawi
3427
+ #: ../../admin/view/index.php:126
3428
  msgid "c-mw"
3429
  msgstr "Malawi"
3430
 
3431
  # Malaysia
3432
+ #: ../../admin/view/index.php:126
3433
  msgid "c-my"
3434
  msgstr "Malaysia"
3435
 
3436
  # Mali
3437
+ #: ../../admin/view/index.php:126
3438
  msgid "c-ml"
3439
  msgstr "Mali"
3440
 
3441
  # Malta
3442
+ #: ../../admin/view/index.php:126
3443
  msgid "c-mt"
3444
  msgstr "Malta"
3445
 
3446
  # Martinique
3447
+ #: ../../admin/view/index.php:126
3448
  msgid "c-mq"
3449
  msgstr "Martinique"
3450
 
3451
  # Mauritania
3452
+ #: ../../admin/view/index.php:126
3453
  msgid "c-mr"
3454
  msgstr "Mauritania"
3455
 
3456
  # Mauritius
3457
+ #: ../../admin/view/index.php:126
3458
  msgid "c-mu"
3459
  msgstr "Mauritius"
3460
 
3461
  # Mexico
3462
+ #: ../../admin/view/index.php:126
3463
  msgid "c-mx"
3464
  msgstr "Mexico"
3465
 
3466
  # Moldova
3467
+ #: ../../admin/view/index.php:126
3468
  msgid "c-md"
3469
  msgstr "Moldova"
3470
 
3471
  # Mongolia
3472
+ #: ../../admin/view/index.php:126
3473
  msgid "c-mn"
3474
  msgstr "Mongolia"
3475
 
3476
  # Montenegro
3477
+ #: ../../admin/view/index.php:126
3478
  msgid "c-me"
3479
  msgstr "Montenegro"
3480
 
3481
  # Montserrat
3482
+ #: ../../admin/view/index.php:126
3483
  msgid "c-ms"
3484
  msgstr "Montserrat"
3485
 
3486
  # Morocco
3487
+ #: ../../admin/view/index.php:126
3488
  msgid "c-ma"
3489
  msgstr "Morocco"
3490
 
3491
  # Mozambique
3492
+ #: ../../admin/view/index.php:126
3493
  msgid "c-mz"
3494
  msgstr "Mozambique"
3495
 
3496
  # Myanmar
3497
+ #: ../../admin/view/index.php:126
3498
  msgid "c-mm"
3499
  msgstr "Myanmar"
3500
 
3501
  # Namibia
3502
+ #: ../../admin/view/index.php:126
3503
  msgid "c-na"
3504
  msgstr "Namibia"
3505
 
3506
  # Nepal
3507
+ #: ../../admin/view/index.php:126
3508
  msgid "c-np"
3509
  msgstr "Nepal"
3510
 
3511
  # Netherlands
3512
+ #: ../../admin/view/index.php:126
3513
  msgid "c-nl"
3514
  msgstr "Netherlands"
3515
 
3516
  # New Caledonia
3517
+ #: ../../admin/view/index.php:126
3518
  msgid "c-nc"
3519
  msgstr "New Caledonia"
3520
 
3521
  # New Zealand
3522
+ #: ../../admin/view/index.php:126
3523
  msgid "c-nz"
3524
  msgstr "New Zealand"
3525
 
3526
  # Nicaragua
3527
+ #: ../../admin/view/index.php:126
3528
  msgid "c-ni"
3529
  msgstr "Nicaragua"
3530
 
3531
  # Niger
3532
+ #: ../../admin/view/index.php:126
3533
  msgid "c-ne"
3534
  msgstr "Niger"
3535
 
3536
  # Nigeria
3537
+ #: ../../admin/view/index.php:126
3538
  msgid "c-ng"
3539
  msgstr "Nigeria"
3540
 
3541
  # Norway
3542
+ #: ../../admin/view/index.php:126
3543
  msgid "c-no"
3544
  msgstr "Norway"
3545
 
3546
  # Oman
3547
+ #: ../../admin/view/index.php:126
3548
  msgid "c-om"
3549
  msgstr "Oman"
3550
 
3551
  # Pakistan
3552
+ #: ../../admin/view/index.php:126
3553
  msgid "c-pk"
3554
  msgstr "Pakistan"
3555
 
3556
  # Palau
3557
+ #: ../../admin/view/index.php:126
3558
  msgid "c-pw"
3559
  msgstr "Palau"
3560
 
3561
  # Occupied Palestinian Territory
3562
+ #: ../../admin/view/index.php:126
3563
  msgid "c-ps"
3564
  msgstr "Occupied Palestinian Territory"
3565
 
3566
  # Panama
3567
+ #: ../../admin/view/index.php:126
3568
  msgid "c-pa"
3569
  msgstr "Panama"
3570
 
3571
  # Papua New Guinea
3572
+ #: ../../admin/view/index.php:126
3573
  msgid "c-pg"
3574
  msgstr "Papua New Guinea"
3575
 
3576
  # Paraguay
3577
+ #: ../../admin/view/index.php:126
3578
  msgid "c-py"
3579
  msgstr "Paraguay"
3580
 
3581
  # Peru
3582
+ #: ../../admin/view/index.php:126
3583
  msgid "c-pe"
3584
  msgstr "Peru"
3585
 
3586
  # Philippines
3587
+ #: ../../admin/view/index.php:126
3588
  msgid "c-ph"
3589
  msgstr "Philippines"
3590
 
3591
  # Poland
3592
+ #: ../../admin/view/index.php:126
3593
  msgid "c-pl"
3594
  msgstr "Poland"
3595
 
3596
  # Portugal
3597
+ #: ../../admin/view/index.php:126
3598
  msgid "c-pt"
3599
  msgstr "Portugal"
3600
 
3601
  # Puerto Rico
3602
+ #: ../../admin/view/index.php:126
3603
  msgid "c-pr"
3604
  msgstr "Puerto Rico"
3605
 
3606
  # Qatar
3607
+ #: ../../admin/view/index.php:126
3608
  msgid "c-qa"
3609
  msgstr "Qatar"
3610
 
3611
  # Réunion
3612
+ #: ../../admin/view/index.php:126
3613
  msgid "c-re"
3614
  msgstr "Réunion"
3615
 
3616
  # Romania
3617
+ #: ../../admin/view/index.php:126
3618
  msgid "c-ro"
3619
  msgstr "Romania"
3620
 
3621
  # Russian Federation
3622
+ #: ../../admin/view/index.php:126
3623
  msgid "c-ru"
3624
  msgstr "Russian Federation"
3625
 
3626
  # Rwanda
3627
+ #: ../../admin/view/index.php:126
3628
  msgid "c-rw"
3629
  msgstr "Rwanda"
3630
 
3631
  # Saint Kitts and Nevis
3632
+ #: ../../admin/view/index.php:126
3633
  msgid "c-kn"
3634
  msgstr "Saint Kitts and Nevis"
3635
 
3636
  # Saint Lucia
3637
+ #: ../../admin/view/index.php:126
3638
  msgid "c-lc"
3639
  msgstr "Saint Lucia"
3640
 
3641
  # Saint Martin
3642
+ #: ../../admin/view/index.php:126
3643
  msgid "c-mf"
3644
  msgstr "Saint Martin"
3645
 
3646
  # Saint Vincent and the Grenadines
3647
+ #: ../../admin/view/index.php:126
3648
  msgid "c-vc"
3649
  msgstr "Saint Vincent and the Grenadines"
3650
 
3651
  # Samoa
3652
+ #: ../../admin/view/index.php:126
3653
  msgid "c-ws"
3654
  msgstr "Samoa"
3655
 
3656
  # Sao Tome and Principe
3657
+ #: ../../admin/view/index.php:126
3658
  msgid "c-st"
3659
  msgstr "Sao Tome and Principe"
3660
 
3661
  # Saudi Arabia
3662
+ #: ../../admin/view/index.php:126
3663
  msgid "c-sa"
3664
  msgstr "Saudi Arabia"
3665
 
3666
  # Senegal
3667
+ #: ../../admin/view/index.php:126
3668
  msgid "c-sn"
3669
  msgstr "Senegal"
3670
 
3671
  # Serbia
3672
+ #: ../../admin/view/index.php:126
3673
  msgid "c-rs"
3674
  msgstr "Serbia"
3675
 
3676
  # Sierra Leone
3677
+ #: ../../admin/view/index.php:126
3678
  msgid "c-sl"
3679
  msgstr "Sierra Leone"
3680
 
3681
  # Singapore
3682
+ #: ../../admin/view/index.php:126
3683
  msgid "c-sg"
3684
  msgstr "Singapore"
3685
 
3686
  # Slovakia
3687
+ #: ../../admin/view/index.php:126
3688
  msgid "c-sk"
3689
  msgstr "Slovakia"
3690
 
3691
  # Slovenia
3692
+ #: ../../admin/view/index.php:126
3693
  msgid "c-si"
3694
  msgstr "Slovenia"
3695
 
3696
  # Solomon Islands
3697
+ #: ../../admin/view/index.php:126
3698
  msgid "c-sb"
3699
  msgstr "Solomon Islands"
3700
 
3701
  # Somalia
3702
+ #: ../../admin/view/index.php:126
3703
  msgid "c-so"
3704
  msgstr "Somalia"
3705
 
3706
  # South Africa
3707
+ #: ../../admin/view/index.php:126
3708
  msgid "c-za"
3709
  msgstr "South Africa"
3710
 
3711
  # South Georgia and the South Sandwich Islands
3712
+ #: ../../admin/view/index.php:126
3713
  msgid "c-gs"
3714
  msgstr "South Georgia and the South Sandwich Islands"
3715
 
3716
  # Spain
3717
+ #: ../../admin/view/index.php:126
3718
  msgid "c-es"
3719
  msgstr "Spain"
3720
 
3721
  # Sri Lanka
3722
+ #: ../../admin/view/index.php:126
3723
  msgid "c-lk"
3724
  msgstr "Sri Lanka"
3725
 
3726
  # Sudan
3727
+ #: ../../admin/view/index.php:126
3728
  msgid "c-sd"
3729
  msgstr "Sudan"
3730
 
3731
+ #: ../../admin/view/index.php:126
3732
  msgid "c-ss"
3733
  msgstr "South Sudan"
3734
 
3735
  # Suriname
3736
+ #: ../../admin/view/index.php:126
3737
  msgid "c-sr"
3738
  msgstr "Suriname"
3739
 
3740
  # Svalbard and Jan Mayen
3741
+ #: ../../admin/view/index.php:126
3742
  msgid "c-sj"
3743
  msgstr "Svalbard and Jan Mayen"
3744
 
3745
  # Swaziland
3746
+ #: ../../admin/view/index.php:126
3747
  msgid "c-sz"
3748
  msgstr "Swaziland"
3749
 
3750
  # Sweden
3751
+ #: ../../admin/view/index.php:126
3752
  msgid "c-se"
3753
  msgstr "Sweden"
3754
 
3755
  # Switzerland
3756
+ #: ../../admin/view/index.php:126
3757
  msgid "c-ch"
3758
  msgstr "Switzerland"
3759
 
3760
  # Syrian Arab Republic
3761
+ #: ../../admin/view/index.php:126
3762
  msgid "c-sy"
3763
  msgstr "Syrian Arab Republic"
3764
 
3765
  # Taiwan, Province of China
3766
+ #: ../../admin/view/index.php:126
3767
  msgid "c-tw"
3768
  msgstr "Taiwan"
3769
 
3770
  # Tajikistan
3771
+ #: ../../admin/view/index.php:126
3772
  msgid "c-tj"
3773
  msgstr "Tajikistan"
3774
 
3775
  # United Republic of Tanzania
3776
+ #: ../../admin/view/index.php:126
3777
  msgid "c-tz"
3778
  msgstr "United Republic of Tanzania"
3779
 
3780
  # Thailand
3781
+ #: ../../admin/view/index.php:126
3782
  msgid "c-th"
3783
  msgstr "Thailand"
3784
 
3785
  # Timor-Leste
3786
+ #: ../../admin/view/index.php:126
3787
  msgid "c-tl"
3788
  msgstr "Timor-Leste"
3789
 
3790
  # Togo
3791
+ #: ../../admin/view/index.php:126
3792
  msgid "c-tg"
3793
  msgstr "Togo"
3794
 
3795
  # Tonga
3796
+ #: ../../admin/view/index.php:126
3797
  msgid "c-to"
3798
  msgstr "Tonga"
3799
 
3800
  # Trinidad and Tobago
3801
+ #: ../../admin/view/index.php:126
3802
  msgid "c-tt"
3803
  msgstr "Trinidad and Tobago"
3804
 
3805
  # Tunisia
3806
+ #: ../../admin/view/index.php:126
3807
  msgid "c-tn"
3808
  msgstr "Tunisia"
3809
 
3810
  # Turkey
3811
+ #: ../../admin/view/index.php:126
3812
  msgid "c-tr"
3813
  msgstr "Turkey"
3814
 
3815
  # Turkmenistan
3816
+ #: ../../admin/view/index.php:126
3817
  msgid "c-tm"
3818
  msgstr "Turkmenistan"
3819
 
3820
  # Turks and Caicos Islands
3821
+ #: ../../admin/view/index.php:126
3822
  msgid "c-tc"
3823
  msgstr "Turks and Caicos Islands"
3824
 
3825
  # Uganda
3826
+ #: ../../admin/view/index.php:126
3827
  msgid "c-ug"
3828
  msgstr "Uganda"
3829
 
3830
  # Ukraine
3831
+ #: ../../admin/view/index.php:126
3832
  msgid "c-ua"
3833
  msgstr "Ukraine"
3834
 
3835
  # United Arab Emirates
3836
+ #: ../../admin/view/index.php:126
3837
  msgid "c-ae"
3838
  msgstr "United Arab Emirates"
3839
 
3840
  # United Kingdom
3841
+ #: ../../admin/view/index.php:126
3842
  msgid "c-gb"
3843
  msgstr "United Kingdom"
3844
 
3845
  # United States
3846
+ #: ../../admin/view/index.php:126
3847
  msgid "c-us"
3848
  msgstr "United States"
3849
 
3850
  # Uruguay
3851
+ #: ../../admin/view/index.php:126
3852
  msgid "c-uy"
3853
  msgstr "Uruguay"
3854
 
3855
  # Uzbekistan
3856
+ #: ../../admin/view/index.php:126
3857
  msgid "c-uz"
3858
  msgstr "Uzbekistan"
3859
 
3860
  # Vanuatu
3861
+ #: ../../admin/view/index.php:126
3862
  msgid "c-vu"
3863
  msgstr "Vanuatu"
3864
 
3865
  # Venezuela
3866
+ #: ../../admin/view/index.php:126
3867
  msgid "c-ve"
3868
  msgstr "Venezuela"
3869
 
3870
  # Viet Nam
3871
+ #: ../../admin/view/index.php:126
3872
  msgid "c-vn"
3873
  msgstr "Viet Nam"
3874
 
3875
  # British Virgin Islands
3876
+ #: ../../admin/view/index.php:126
3877
  msgid "c-vg"
3878
  msgstr "British Virgin Islands"
3879
 
3880
  # U.S. Virgin Islands
3881
+ #: ../../admin/view/index.php:126
3882
  msgid "c-vi"
3883
  msgstr "U.S. Virgin Islands"
3884
 
3885
  # Western Sahara
3886
+ #: ../../admin/view/index.php:126
3887
  msgid "c-eh"
3888
  msgstr "Western Sahara"
3889
 
3890
  # Yemen
3891
+ #: ../../admin/view/index.php:126
3892
  msgid "c-ye"
3893
  msgstr "Yemen"
3894
 
3895
  # Zambia
3896
+ #: ../../admin/view/index.php:126
3897
  msgid "c-zm"
3898
  msgstr "Zambia"
3899
 
3900
  # Zimbabwe
3901
+ #: ../../admin/view/index.php:126
3902
  msgid "c-zw"
3903
  msgstr "Zimbabwe"
3904
 
3905
  # Guernsey
3906
+ #: ../../admin/view/index.php:126
3907
  msgid "c-gg"
3908
  msgstr "Guernsey"
3909
 
3910
  # Jersey
3911
+ #: ../../admin/view/index.php:126
3912
  msgid "c-je"
3913
  msgstr "Jersey"
3914
 
3915
  # Isle of Man
3916
+ #: ../../admin/view/index.php:126
3917
  msgid "c-im"
3918
  msgstr "Isle of Man"
3919
 
3920
  # Maldives
3921
+ #: ../../admin/view/index.php:126
3922
  msgid "c-mv"
3923
  msgstr "Maldives"
3924
 
3925
+ #: ../../admin/view/index.php:127
3926
+ msgid "c-eu"
3927
+ msgstr ""
3928
+
3929
  # Unknown
3930
+ #: ../../admin/view/index.php:134 ../../admin/view/right-now.php:94
3931
+ #: ../../admin/view/wp-slimstat-reports.php:412
3932
+ #: ../../admin/view/wp-slimstat-reports.php:551
3933
  msgid "c-"
3934
  msgstr "Unknown"
3935
 
3936
+ #: ../../admin/view/index.php:142 ../../admin/view/right-now.php:54
3937
+ #: ../../admin/view/wp-slimstat-reports.php:374
3938
+ #: ../../admin/view/wp-slimstat-reports.php:514
3939
  msgid "No data to display"
3940
  msgstr ""
3941
 
3942
+ #: ../../admin/view/index.php:192
3943
  msgid "Your report here"
3944
  msgstr ""
3945
 
3946
+ #: ../../admin/view/index.php:194
3947
  msgid ""
3948
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
3949
  "Just write a new plugin that retrieves the desired information from the "
3952
  "slimstat?forum_id=10\" target=\"_blank\">support forum</a>."
3953
  msgstr ""
3954
 
3955
+ #: ../../admin/view/index.php:208 ../../admin/view/wp-slimstat-reports.php:611
3956
+ #: ../../admin/view/wp-slimstat-reports.php:713
3957
+ #: ../../admin/view/wp-slimstat-reports.php:869
3958
+ msgid "Pageviews"
3959
+ msgstr ""
3960
+
3961
+ #: ../../admin/view/index.php:211
3962
+ msgid ""
3963
+ "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
3964
+ "WP SlimStat leverages this information to identify returning visitors. "
3965
+ "Please note that visitors also include registered users."
3966
+ msgstr ""
3967
+
3968
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
3969
+ msgid "Take a sneak peek at what human visitors are doing on your website"
3970
+ msgstr ""
3971
+
3972
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
3973
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:310
3974
+ #: ../../admin/view/index.php:316 ../../admin/view/right-now.php:166
3975
+ msgid "Color codes"
3976
+ msgstr ""
3977
+
3978
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
3979
+ msgid "From a search result page"
3980
+ msgstr ""
3981
+
3982
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
3983
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:310
3984
+ #: ../../admin/view/index.php:316 ../../admin/view/right-now.php:169
3985
+ msgid "Known Users"
3986
+ msgstr ""
3987
+
3988
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
3989
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:310
3990
+ #: ../../admin/view/index.php:316 ../../admin/view/right-now.php:170
3991
+ msgid "Other Humans"
3992
+ msgstr ""
3993
+
3994
+ #: ../../admin/view/index.php:220
3995
+ msgid ""
3996
+ "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
3997
+ "measures your site's rankings. Values are updated every 12 hours. Filters "
3998
+ "set above don't apply to this report."
3999
+ msgstr ""
4000
+
4001
+ #: ../../admin/view/index.php:223
4002
+ msgid ""
4003
+ "We have teamed up with HackerNinja.com to offer you a free surface security "
4004
+ "scan. By clicking submit, your website will be subjected to a full antivirus "
4005
+ "scan, Google Safe Browsing list check, and numerous other tests. NOTE: only "
4006
+ "your domain name (blog address) is being supplied to HackerNinja for the "
4007
+ "security scan. No other confidential information is being transmitted."
4008
+ msgstr ""
4009
+
4010
+ #: ../../admin/view/index.php:226
4011
+ msgid "Human Visits"
4012
+ msgstr ""
4013
+
4014
+ #: ../../admin/view/index.php:229 ../../admin/view/index.php:262
4015
+ msgid ""
4016
+ "This report shows you what languages your users have installed on their "
4017
+ "computers."
4018
+ msgstr ""
4019
+
4020
+ #: ../../admin/view/index.php:232 ../../admin/view/index.php:259
4021
+ msgid ""
4022
+ "A user agent is a generic term for any program used for accessing a website. "
4023
+ "This includes browsers (such as Chrome), robots and spiders, and any other "
4024
+ "software program that retrieves information from a website.<br><br>You can "
4025
+ "ignore any given user agent by setting the corresponding filter under "
4026
+ "Settings > SlimStat > Filters."
4027
+ msgstr ""
4028
+
4029
+ #: ../../admin/view/index.php:235
4030
+ msgid ""
4031
+ "Internet Service Provider: a company which provides other companies or "
4032
+ "individuals with access to the Internet. Your DSL or cable internet service "
4033
+ "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
4034
+ "by setting the corresponding filter under Settings > SlimStat > Filters."
4035
+ msgstr ""
4036
+
4037
+ #: ../../admin/view/index.php:238 ../../admin/view/index.php:256
4038
+ msgid ""
4039
+ "Which operating systems do your visitors use? Optimizing your site for the "
4040
+ "appropriate technical capabilities helps make your site more engaging and "
4041
+ "usable and can result in higher conversion rates and more sales."
4042
+ msgstr ""
4043
+
4044
+ #: ../../admin/view/index.php:241
4045
+ msgid ""
4046
+ "This report shows the most common screen resolutions used by your visitors. "
4047
+ "Knowing the most popular screen resolution of your visitors will help you "
4048
+ "create content optimized for that resolution or you may opt for resolution-"
4049
+ "independence."
4050
+ msgstr ""
4051
+
4052
+ #: ../../admin/view/index.php:244
4053
+ msgid ""
4054
+ "Which versions of Flash do your visitors have installed? Is Java supported "
4055
+ "on your visitors' platforms?"
4056
+ msgstr ""
4057
+
4058
+ #: ../../admin/view/index.php:247 ../../admin/view/index.php:280
4059
+ msgid ""
4060
+ "You can configure WP SlimStat to ignore a specific Country by setting the "
4061
+ "corresponding filter under Settings > SlimStat > Filters."
4062
+ msgstr ""
4063
+
4064
+ #: ../../admin/view/index.php:250
4065
+ msgid ""
4066
+ "You can ignore any specific Country by setting the corresponding filter "
4067
+ "under Settings > SlimStat > Filters."
4068
+ msgstr ""
4069
+
4070
+ #: ../../admin/view/index.php:253
4071
+ msgid ""
4072
+ "This report shows the most recent screen resolutions used by your visitors. "
4073
+ "Knowing the most popular screen resolution of your visitors will help you "
4074
+ "create content optimized for that resolution or you may opt for resolution-"
4075
+ "independence."
4076
+ msgstr ""
4077
+
4078
+ #: ../../admin/view/index.php:265
4079
+ msgid ""
4080
+ "This report shows you what user agent families (no version considered) are "
4081
+ "popular among your visitors."
4082
+ msgstr ""
4083
+
4084
+ #: ../../admin/view/index.php:268
4085
+ msgid ""
4086
+ "This report shows you what operating system families (no version considered) "
4087
+ "are popular among your visitors."
4088
+ msgstr ""
4089
+
4090
+ #: ../../admin/view/index.php:271
4091
+ msgid "List of registered users who recently visited your website."
4092
+ msgstr ""
4093
+
4094
+ #: ../../admin/view/index.php:274
4095
+ msgid "This report lists your most active registered users."
4096
+ msgstr ""
4097
+
4098
+ #: ../../admin/view/index.php:289
4099
+ msgid "Average Pageviews per Visit"
4100
+ msgstr ""
4101
+
4102
+ #: ../../admin/view/index.php:292
4103
+ msgid "This report lists the most recent posts viewed on your site, by title."
4104
+ msgstr ""
4105
+
4106
+ #: ../../admin/view/index.php:295
4107
+ msgid ""
4108
+ "A <em>bounce page</em> is a single-page visit, or visit in which the person "
4109
+ "left your site from the entrance (landing) page."
4110
+ msgstr ""
4111
+
4112
+ #: ../../admin/view/index.php:298
4113
+ msgid ""
4114
+ "The 404 or Not Found error message is a HTTP standard response code "
4115
+ "indicating that the client was able to communicate with the server, but the "
4116
+ "server could not find what was requested.<br><br>This report can be useful "
4117
+ "to detect attack attempts, by looking at patterns in 404 URLs."
4118
+ msgstr ""
4119
+
4120
+ #: ../../admin/view/index.php:301
4121
+ msgid "Searches performed using Wordpress' built-in search functionality."
4122
+ msgstr ""
4123
+
4124
+ #: ../../admin/view/index.php:304
4125
+ msgid ""
4126
+ "Categories provide a helpful way to group related posts together, and to "
4127
+ "quickly tell readers what a post is about. Categories also make it easier "
4128
+ "for people to find your content."
4129
+ msgstr ""
4130
+
4131
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:316
4132
+ msgid ""
4133
+ "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
4134
+ "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
4135
+ "link has an ID attribute associated to it."
4136
+ msgstr ""
4137
+
4138
+ #: ../../admin/view/index.php:310
4139
+ msgid ""
4140
+ "This report lists any <em>event</em> occurred on your website. Please refer "
4141
+ "to the FAQ for more information on how to leverage this functionality."
4142
+ msgstr ""
4143
+
4144
+ #: ../../admin/view/index.php:313
4145
+ msgid "This report lists the most popular posts on your site, by title."
4146
+ msgstr ""
4147
+
4148
  #: ../../admin/view/right-now.php:38
4149
+ #: ../../admin/view/wp-slimstat-reports.php:303
4150
  msgid "Refresh"
4151
  msgstr ""
4152
 
4164
  msgstr ""
4165
 
4166
  #: ../../admin/view/right-now.php:73 ../../admin/view/right-now.php:82
4167
+ #: ../../admin/view/wp-slimstat-reports.php:473
4168
  #, php-format
4169
  msgid "Filter results where IP equals %s"
4170
  msgstr ""
4180
  msgstr ""
4181
 
4182
  #: ../../admin/view/right-now.php:94
4183
+ #: ../../admin/view/wp-slimstat-reports.php:551
4184
  msgid "Country"
4185
  msgstr ""
4186
 
4207
  msgstr ""
4208
 
4209
  #: ../../admin/view/right-now.php:144
4210
+ #: ../../admin/view/wp-slimstat-reports.php:466
4211
+ #: ../../admin/view/wp-slimstat-reports.php:470
4212
+ #: ../../admin/view/wp-slimstat-reports.php:533
4213
+ #: ../../admin/view/wp-slimstat-reports.php:561
4214
+ #: ../../admin/view/wp-slimstat-reports.php:577
4215
  msgid "Open this URL in a new window"
4216
  msgstr ""
4217
 
4218
  #: ../../admin/view/right-now.php:144
4219
+ #: ../../admin/view/wp-slimstat-reports.php:577
4220
  #, php-format
4221
  msgid "Filter results where resource equals %s"
4222
  msgstr ""
4263
  msgstr ""
4264
 
4265
  #: ../../admin/view/wp-slimstat-reports.php:79
4266
+ #: ../../admin/view/wp-slimstat-reports.php:91
4267
+ #: ../../admin/view/wp-slimstat-reports.php:110
4268
  msgid "Summary"
4269
  msgstr ""
4270
 
4273
  msgstr ""
4274
 
4275
  #: ../../admin/view/wp-slimstat-reports.php:81
4276
+ #: ../../admin/view/wp-slimstat-reports.php:115
4277
  msgid "Spy View"
4278
  msgstr ""
4279
 
4280
  #: ../../admin/view/wp-slimstat-reports.php:82
4281
+ #: ../../admin/view/wp-slimstat-reports.php:116
4282
  msgid "Recent Search Terms"
4283
  msgstr ""
4284
 
4285
  #: ../../admin/view/wp-slimstat-reports.php:83
4286
+ msgid "Top Pages"
4287
  msgstr ""
4288
 
4289
  #: ../../admin/view/wp-slimstat-reports.php:84
4290
+ #: ../../admin/view/wp-slimstat-reports.php:113
4291
+ msgid "Top Traffic Sources"
4292
  msgstr ""
4293
 
4294
  #: ../../admin/view/wp-slimstat-reports.php:85
4295
+ msgid "Top Known Visitors"
 
 
4296
  msgstr ""
4297
 
4298
  #: ../../admin/view/wp-slimstat-reports.php:86
4299
+ #: ../../admin/view/wp-slimstat-reports.php:111
4300
+ #: ../../admin/view/wp-slimstat-reports.php:131
4301
+ msgid "Top Search Terms"
4302
  msgstr ""
4303
 
4304
  #: ../../admin/view/wp-slimstat-reports.php:87
4305
+ #: ../../admin/view/wp-slimstat-reports.php:98
4306
+ #: ../../admin/view/wp-slimstat-reports.php:112
4307
+ msgid "Top Countries"
4308
  msgstr ""
4309
 
4310
  #: ../../admin/view/wp-slimstat-reports.php:88
4311
+ msgid "Rankings"
 
 
4312
  msgstr ""
4313
 
4314
  #: ../../admin/view/wp-slimstat-reports.php:89
4315
+ msgid "Security Scan"
 
 
4316
  msgstr ""
4317
 
4318
  #: ../../admin/view/wp-slimstat-reports.php:90
 
 
 
 
4319
  msgid "Human Visits (chart)"
4320
  msgstr ""
4321
 
4322
+ #: ../../admin/view/wp-slimstat-reports.php:92
4323
  msgid "Top Languages"
4324
  msgstr ""
4325
 
4326
+ #: ../../admin/view/wp-slimstat-reports.php:93
4327
  msgid "Top Browsers"
4328
  msgstr ""
4329
 
4330
+ #: ../../admin/view/wp-slimstat-reports.php:94
4331
  msgid "Top Service Providers"
4332
  msgstr ""
4333
 
4334
+ #: ../../admin/view/wp-slimstat-reports.php:95
4335
  msgid "Top Operating Systems"
4336
  msgstr ""
4337
 
4338
+ #: ../../admin/view/wp-slimstat-reports.php:96
4339
  msgid "Top Screen Resolutions"
4340
  msgstr ""
4341
 
4342
+ #: ../../admin/view/wp-slimstat-reports.php:99
4343
  msgid "Visit Duration"
4344
  msgstr ""
4345
 
4346
+ #: ../../admin/view/wp-slimstat-reports.php:100
4347
+ #: ../../admin/view/wp-slimstat-reports.php:117
4348
+ msgid "Recent Countries"
4349
+ msgstr ""
4350
+
4351
+ #: ../../admin/view/wp-slimstat-reports.php:101
4352
  msgid "Recent Screen Resolutions"
4353
  msgstr ""
4354
 
4355
+ #: ../../admin/view/wp-slimstat-reports.php:102
4356
  msgid "Recent Operating Systems"
4357
  msgstr ""
4358
 
4359
+ #: ../../admin/view/wp-slimstat-reports.php:103
4360
  msgid "Recent Browsers"
4361
  msgstr ""
4362
 
4363
+ #: ../../admin/view/wp-slimstat-reports.php:104
4364
  msgid "Recent Languages"
4365
  msgstr ""
4366
 
4367
+ #: ../../admin/view/wp-slimstat-reports.php:105
4368
  msgid "Top Browser Families"
4369
  msgstr ""
4370
 
4371
+ #: ../../admin/view/wp-slimstat-reports.php:106
4372
  msgid "Top OS Families"
4373
  msgstr ""
4374
 
4375
+ #: ../../admin/view/wp-slimstat-reports.php:107
4376
  msgid "Recent Users"
4377
  msgstr ""
4378
 
4379
+ #: ../../admin/view/wp-slimstat-reports.php:108
4380
  msgid "Top Users"
4381
  msgstr ""
4382
 
4383
+ #: ../../admin/view/wp-slimstat-reports.php:109
4384
  msgid "Traffic Sources (chart)"
4385
  msgstr ""
4386
 
4387
+ #: ../../admin/view/wp-slimstat-reports.php:114
4388
  msgid "Top Referring Search Engines"
4389
  msgstr ""
4390
 
4391
+ #: ../../admin/view/wp-slimstat-reports.php:118
4392
+ #: ../../admin/view/wp-slimstat-reports.php:134
4393
  msgid "Top Landing Pages"
4394
  msgstr ""
4395
 
4396
+ #: ../../admin/view/wp-slimstat-reports.php:119
4397
  msgid "Average Pageviews per Visit (chart)"
4398
  msgstr ""
4399
 
4400
+ #: ../../admin/view/wp-slimstat-reports.php:120
4401
  msgid "Recent Posts"
4402
  msgstr ""
4403
 
4404
+ #: ../../admin/view/wp-slimstat-reports.php:121
4405
  msgid "Recent Bounce Pages"
4406
  msgstr ""
4407
 
4408
+ #: ../../admin/view/wp-slimstat-reports.php:122
4409
  msgid "Recent Feeds"
4410
  msgstr ""
4411
 
4412
+ #: ../../admin/view/wp-slimstat-reports.php:123
4413
  msgid "Recent 404 URLs"
4414
  msgstr ""
4415
 
4416
+ #: ../../admin/view/wp-slimstat-reports.php:124
4417
  msgid "Recent Internal Searches"
4418
  msgstr ""
4419
 
4420
+ #: ../../admin/view/wp-slimstat-reports.php:125
4421
  msgid "Top Categories"
4422
  msgstr ""
4423
 
4424
+ #: ../../admin/view/wp-slimstat-reports.php:126
4425
  msgid "Recent Outbound Links"
4426
  msgstr ""
4427
 
4428
+ #: ../../admin/view/wp-slimstat-reports.php:127
4429
  msgid "Recent Events"
4430
  msgstr ""
4431
 
4432
+ #: ../../admin/view/wp-slimstat-reports.php:128
4433
  msgid "Top Posts"
4434
  msgstr ""
4435
 
4436
+ #: ../../admin/view/wp-slimstat-reports.php:129
4437
  msgid "Top Feeds"
4438
  msgstr ""
4439
 
4440
+ #: ../../admin/view/wp-slimstat-reports.php:130
4441
  msgid "Top Internal Searches"
4442
  msgstr ""
4443
 
4444
+ #: ../../admin/view/wp-slimstat-reports.php:132
4445
  msgid "Recent Categories"
4446
  msgstr ""
4447
 
4448
+ #: ../../admin/view/wp-slimstat-reports.php:133
4449
  msgid "Top 404 URLs"
4450
  msgstr ""
4451
 
4452
+ #: ../../admin/view/wp-slimstat-reports.php:135
4453
  msgid "Top Authors"
4454
  msgstr ""
4455
 
4456
+ #: ../../admin/view/wp-slimstat-reports.php:136
4457
  msgid "Top Tags"
4458
  msgstr ""
4459
 
4460
+ #: ../../admin/view/wp-slimstat-reports.php:137
4461
  msgid "Recent Downloads"
4462
  msgstr ""
4463
 
4464
+ #: ../../admin/view/wp-slimstat-reports.php:138
4465
+ msgid "Top Outbound Links and Downloads"
4466
+ msgstr ""
4467
+
4468
+ #: ../../admin/view/wp-slimstat-reports.php:139
4469
+ msgid "Your Content"
4470
+ msgstr ""
4471
+
4472
+ #: ../../admin/view/wp-slimstat-reports.php:227
4473
  msgid "Chart controls"
4474
  msgstr ""
4475
 
4476
+ #: ../../admin/view/wp-slimstat-reports.php:227
4477
  msgid "Use your mouse wheel to zoom in and out"
4478
  msgstr ""
4479
 
4480
+ #: ../../admin/view/wp-slimstat-reports.php:227
4481
  msgid "While zooming in, drag the chart to move to a different area"
4482
  msgstr ""
4483
 
4484
+ #: ../../admin/view/wp-slimstat-reports.php:227
4485
  msgid "Double click on an empty region to reset the zoom level"
4486
  msgstr ""
4487
 
4488
+ #: ../../admin/view/wp-slimstat-reports.php:228
4489
  msgid ""
4490
  "Click on a data point to display the activity chart for each hour of that day"
4491
  msgstr ""
4492
 
4493
+ #: ../../admin/view/wp-slimstat-reports.php:260
4494
  msgid "src"
4495
  msgstr ""
4496
 
4497
+ #: ../../admin/view/wp-slimstat-reports.php:261
4498
  msgid "serp"
4499
  msgstr ""
4500
 
4501
+ #: ../../admin/view/wp-slimstat-reports.php:266
4502
  msgid "Go to the corresponding search engine result page"
4503
  msgstr ""
4504
 
4505
+ #: ../../admin/view/wp-slimstat-reports.php:269
4506
  msgid "Go to the referring page"
4507
  msgstr ""
4508
 
4509
+ #: ../../admin/view/wp-slimstat-reports.php:288
4510
  msgid "Remove all filters"
4511
  msgstr ""
4512
 
4513
+ #: ../../admin/view/wp-slimstat-reports.php:290
4514
+ #: ../../admin/view/wp-slimstat-reports.php:297
4515
  msgid "Current filters:"
4516
  msgstr ""
4517
 
4518
+ #: ../../admin/view/wp-slimstat-reports.php:293
4519
  msgid "Remove filter for"
4520
  msgstr ""
4521
 
4522
+ #: ../../admin/view/wp-slimstat-reports.php:329
4523
  #, php-format
4524
  msgid "%s Minute by Minute"
4525
  msgstr ""
4526
 
4527
+ #: ../../admin/view/wp-slimstat-reports.php:332
4528
  #, php-format
4529
  msgid "Hourly %s"
4530
  msgstr ""
4531
 
4532
+ #: ../../admin/view/wp-slimstat-reports.php:335
4533
  #, php-format
4534
  msgid "Monthly %s"
4535
  msgstr ""
4536
 
4537
+ #: ../../admin/view/wp-slimstat-reports.php:338
4538
  #, php-format
4539
  msgid "Daily %s"
4540
  msgstr ""
4541
 
4542
+ #: ../../admin/view/wp-slimstat-reports.php:394
4543
  msgid "Category ID"
4544
  msgstr ""
4545
 
4546
+ #: ../../admin/view/wp-slimstat-reports.php:427
4547
  msgid "OS Code"
4548
  msgstr ""
4549
 
4550
+ #: ../../admin/view/wp-slimstat-reports.php:437
4551
  msgid "Referrer"
4552
  msgstr ""
4553
 
4554
+ #: ../../admin/view/wp-slimstat-reports.php:454
4555
  #, php-format
4556
  msgid "Filter results where %s %s %s"
4557
  msgstr ""
4558
 
4559
+ #: ../../admin/view/wp-slimstat-reports.php:461
4560
+ #: ../../admin/view/wp-slimstat-reports.php:655
4561
+ #: ../../admin/view/wp-slimstat-reports.php:666
4562
+ #: ../../admin/view/wp-slimstat-reports.php:671
4563
+ #: ../../admin/view/wp-slimstat-reports.php:676
4564
+ #: ../../admin/view/wp-slimstat-reports.php:681
4565
+ #: ../../admin/view/wp-slimstat-reports.php:686
4566
+ #: ../../admin/view/wp-slimstat-reports.php:691
4567
+ #: ../../admin/view/wp-slimstat-reports.php:696
4568
+ #: ../../admin/view/wp-slimstat-reports.php:701
4569
  msgid "Hits"
4570
  msgstr ""
4571
 
4572
+ #: ../../admin/view/wp-slimstat-reports.php:530
4573
  msgid "Search for"
4574
  msgstr ""
4575
 
4576
+ #: ../../admin/view/wp-slimstat-reports.php:561
4577
+ #: ../../admin/view/wp-slimstat-reports.php:577
4578
  msgid "Source"
4579
  msgstr ""
4580
 
4581
+ #: ../../admin/view/wp-slimstat-reports.php:561
4582
  #, php-format
4583
  msgid "Filter results where domain equals %s"
4584
  msgstr ""
4585
 
4586
+ #: ../../admin/view/wp-slimstat-reports.php:563
4587
  msgid "Keywords"
4588
  msgstr ""
4589
 
4590
+ #: ../../admin/view/wp-slimstat-reports.php:564
4591
  #, php-format
4592
  msgid "Filter results where searchterm equals %s"
4593
  msgstr ""
4594
 
4595
+ #: ../../admin/view/wp-slimstat-reports.php:589
4596
  msgid "Total Pageviews"
4597
  msgstr ""
4598
 
4599
+ #: ../../admin/view/wp-slimstat-reports.php:590
4600
  msgid "DB Size"
4601
  msgstr ""
4602
 
4603
+ #: ../../admin/view/wp-slimstat-reports.php:591
4604
  msgid "Tracking Active"
4605
  msgstr ""
4606
 
4607
+ #: ../../admin/view/wp-slimstat-reports.php:593
4608
  msgid "Tracking Browser Caps"
4609
  msgstr ""
4610
 
4611
+ #: ../../admin/view/wp-slimstat-reports.php:594
4612
  msgid "Auto purge"
4613
  msgstr ""
4614
 
4615
+ #: ../../admin/view/wp-slimstat-reports.php:595
4616
  msgid "Oldest pageview"
4617
  msgstr ""
4618
 
4619
+ #: ../../admin/view/wp-slimstat-reports.php:595
4620
  msgid "No visits"
4621
  msgstr ""
4622
 
4623
+ #: ../../admin/view/wp-slimstat-reports.php:610
4624
+ #: ../../admin/view/wp-slimstat-reports.php:712
4625
  msgid ""
4626
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
4627
  "time the tracking code is executed."
4628
  msgstr ""
4629
 
4630
+ #: ../../admin/view/wp-slimstat-reports.php:612
4631
  msgid "This counter is based on any user activity in the last 5 minutes."
4632
  msgstr ""
4633
 
4634
+ #: ../../admin/view/wp-slimstat-reports.php:613
4635
  msgid "Last 5 minutes"
4636
  msgstr ""
4637
 
4638
+ #: ../../admin/view/wp-slimstat-reports.php:614
4639
  msgid "This counter is based on any user activity in the last 30 minutes."
4640
  msgstr ""
4641
 
4642
+ #: ../../admin/view/wp-slimstat-reports.php:615
4643
  msgid "Last 30 minutes"
4644
  msgstr ""
4645
 
4646
+ #: ../../admin/view/wp-slimstat-reports.php:616
4647
  msgid "Filter results where date equals today"
4648
  msgstr ""
4649
 
4650
+ #: ../../admin/view/wp-slimstat-reports.php:616
4651
  msgid "Today"
4652
  msgstr ""
4653
 
4654
+ #: ../../admin/view/wp-slimstat-reports.php:617
4655
  msgid "Filter results where date equals yesterday"
4656
  msgstr ""
4657
 
4658
+ #: ../../admin/view/wp-slimstat-reports.php:617
4659
  msgid "Yesterday"
4660
  msgstr ""
4661
 
4662
+ #: ../../admin/view/wp-slimstat-reports.php:618
4663
  msgid "How many pages have been visited on average during the current period."
4664
  msgstr ""
4665
 
4666
+ #: ../../admin/view/wp-slimstat-reports.php:619
4667
+ #: ../../admin/view/wp-slimstat-reports.php:882
4668
  msgid "Avg Pageviews"
4669
  msgstr ""
4670
 
4671
+ #: ../../admin/view/wp-slimstat-reports.php:620
4672
  msgid ""
4673
  "Visitors who landed on your site after searching for a keyword on Google, "
4674
  "Yahoo, etc."
4675
  msgstr ""
4676
 
4677
+ #: ../../admin/view/wp-slimstat-reports.php:621
4678
  msgid "From Search Results"
4679
  msgstr ""
4680
 
4681
+ #: ../../admin/view/wp-slimstat-reports.php:622
4682
  msgid ""
4683
  "Used to differentiate between multiple requests to download a file from one "
4684
  "internet address (IP) and requests originating from many distinct addresses"
4685
  msgstr ""
4686
 
4687
+ #: ../../admin/view/wp-slimstat-reports.php:623
4688
+ #: ../../admin/view/wp-slimstat-reports.php:637
4689
+ #: ../../admin/view/wp-slimstat-reports.php:869
4690
+ #: ../../admin/view/wp-slimstat-reports.php:873
4691
+ #: ../../admin/view/wp-slimstat-reports.php:877
4692
  msgid "Unique IPs"
4693
  msgstr ""
4694
 
4695
+ #: ../../admin/view/wp-slimstat-reports.php:634
4696
  msgid ""
4697
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
4698
  "multiple times if they perform multiple visits."
4699
  msgstr ""
4700
 
4701
+ #: ../../admin/view/wp-slimstat-reports.php:635
4702
  msgid "Human visits"
4703
  msgstr ""
4704
 
4705
+ #: ../../admin/view/wp-slimstat-reports.php:636
4706
  msgid "This number includes <strong>human visits</strong> only."
4707
  msgstr ""
4708
 
4709
+ #: ../../admin/view/wp-slimstat-reports.php:638
4710
+ #: ../../admin/view/wp-slimstat-reports.php:724
4711
  msgid ""
4712
  "Percentage of single-page visits, i.e. visits in which the person left your "
4713
  "site from the entrance page."
4714
  msgstr ""
4715
 
4716
+ #: ../../admin/view/wp-slimstat-reports.php:639
4717
  msgid "Bounce rate"
4718
  msgstr ""
4719
 
4720
+ #: ../../admin/view/wp-slimstat-reports.php:640
4721
  msgid "Visitors who had previously left a comment on your blog."
4722
  msgstr ""
4723
 
4724
+ #: ../../admin/view/wp-slimstat-reports.php:641
4725
  msgid "Known visitors"
4726
  msgstr ""
4727
 
4728
+ #: ../../admin/view/wp-slimstat-reports.php:642
4729
  msgid "Human users who visited your site only once."
4730
  msgstr ""
4731
 
4732
+ #: ../../admin/view/wp-slimstat-reports.php:643
4733
  msgid "New visitors"
4734
  msgstr ""
4735
 
4736
+ #: ../../admin/view/wp-slimstat-reports.php:644
4737
  msgid "Bots"
4738
  msgstr ""
4739
 
4740
+ #: ../../admin/view/wp-slimstat-reports.php:645
4741
  msgid "Pages per visit"
4742
  msgstr ""
4743
 
4744
+ #: ../../admin/view/wp-slimstat-reports.php:646
4745
+ #: ../../admin/view/wp-slimstat-reports.php:882
4746
  msgid "Longest visit"
4747
  msgstr ""
4748
 
4749
+ #: ../../admin/view/wp-slimstat-reports.php:646
4750
  msgid "hits"
4751
  msgstr ""
4752
 
4753
+ #: ../../admin/view/wp-slimstat-reports.php:667
4754
  msgid "0 - 30 seconds"
4755
  msgstr ""
4756
 
4757
+ #: ../../admin/view/wp-slimstat-reports.php:672
4758
  msgid "31 - 60 seconds"
4759
  msgstr ""
4760
 
4761
+ #: ../../admin/view/wp-slimstat-reports.php:677
4762
  msgid "1 - 3 minutes"
4763
  msgstr ""
4764
 
4765
+ #: ../../admin/view/wp-slimstat-reports.php:682
4766
  msgid "3 - 5 minutes"
4767
  msgstr ""
4768
 
4769
+ #: ../../admin/view/wp-slimstat-reports.php:687
4770
  msgid "5 - 7 minutes"
4771
  msgstr ""
4772
 
4773
+ #: ../../admin/view/wp-slimstat-reports.php:692
4774
  msgid "7 - 10 minutes"
4775
  msgstr ""
4776
 
4777
+ #: ../../admin/view/wp-slimstat-reports.php:697
4778
  msgid "10 - 20 minutes"
4779
  msgstr ""
4780
 
4781
+ #: ../../admin/view/wp-slimstat-reports.php:702
4782
  msgid "More than 20 minutes"
4783
  msgstr ""
4784
 
4785
+ #: ../../admin/view/wp-slimstat-reports.php:714
4786
  msgid ""
4787
  "A referrer (or referring site) is the site that a visitor previously visited "
4788
  "before following a link to your site."
4789
  msgstr ""
4790
 
4791
+ #: ../../admin/view/wp-slimstat-reports.php:715
4792
  msgid "Unique Referrers"
4793
  msgstr ""
4794
 
4795
+ #: ../../admin/view/wp-slimstat-reports.php:716
4796
  msgid ""
4797
  "Visitors who visited the site by typing the URL directly into their browser. "
4798
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
4800
  "documents that don't include tracking variables."
4801
  msgstr ""
4802
 
4803
+ #: ../../admin/view/wp-slimstat-reports.php:717
4804
  msgid "Direct Pageviews"
4805
  msgstr ""
4806
 
4807
+ #: ../../admin/view/wp-slimstat-reports.php:718
4808
  msgid ""
4809
  "Visitors who came to your site via searches on Google or some other search "
4810
  "engine."
4811
  msgstr ""
4812
 
4813
+ #: ../../admin/view/wp-slimstat-reports.php:719
4814
  msgid "From a search result"
4815
  msgstr ""
4816
 
4817
+ #: ../../admin/view/wp-slimstat-reports.php:720
4818
  msgid ""
4819
  "The first page that a user views during a session. This is also known as the "
4820
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
4822
  "a landing page."
4823
  msgstr ""
4824
 
4825
+ #: ../../admin/view/wp-slimstat-reports.php:721
4826
  msgid "Unique Landing Pages"
4827
  msgstr ""
4828
 
4829
+ #: ../../admin/view/wp-slimstat-reports.php:722
4830
  msgid "Number of single-page visits to your site over the selected period."
4831
  msgstr ""
4832
 
4833
+ #: ../../admin/view/wp-slimstat-reports.php:723
4834
  msgid "Bounce Pages"
4835
  msgstr ""
4836
 
4837
+ #: ../../admin/view/wp-slimstat-reports.php:725
4838
  msgid "New Visitors Rate"
4839
  msgstr ""
4840
 
4841
+ #: ../../admin/view/wp-slimstat-reports.php:726
4842
  msgid ""
4843
  "Visitors who visited the site in the last 5 minutes coming from a search "
4844
  "engine."
4845
  msgstr ""
4846
 
4847
+ #: ../../admin/view/wp-slimstat-reports.php:727
4848
  msgid "Currently from search engines"
4849
  msgstr ""
4850
 
4851
+ #: ../../admin/view/wp-slimstat-reports.php:791
4852
+ msgid "Number of pages in your site included in Google's index."
4853
+ msgstr ""
4854
+
4855
+ #: ../../admin/view/wp-slimstat-reports.php:792
4856
+ msgid "Google Index"
4857
+ msgstr ""
4858
+
4859
+ #: ../../admin/view/wp-slimstat-reports.php:793
4860
+ msgid "Number of pages, according to Google, that link back to your site."
4861
+ msgstr ""
4862
+
4863
+ #: ../../admin/view/wp-slimstat-reports.php:794
4864
+ msgid "Google Backlinks"
4865
+ msgstr ""
4866
+
4867
+ #: ../../admin/view/wp-slimstat-reports.php:795
4868
+ msgid ""
4869
+ "How many times the Facebook Like button has been approximately clicked on "
4870
+ "your site."
4871
+ msgstr ""
4872
+
4873
+ #: ../../admin/view/wp-slimstat-reports.php:796
4874
+ msgid "Facebook Likes"
4875
+ msgstr ""
4876
+
4877
+ #: ../../admin/view/wp-slimstat-reports.php:797
4878
+ msgid ""
4879
+ "How many times your site has been shared by someone on the social network."
4880
+ msgstr ""
4881
+
4882
+ #: ../../admin/view/wp-slimstat-reports.php:798
4883
+ msgid "Facebook Shares"
4884
+ msgstr ""
4885
+
4886
+ #: ../../admin/view/wp-slimstat-reports.php:799
4887
+ msgid "How many times links to your website have been clicked on Facebook."
4888
+ msgstr ""
4889
+
4890
+ #: ../../admin/view/wp-slimstat-reports.php:800
4891
+ msgid "Facebook Clicks"
4892
+ msgstr ""
4893
+
4894
+ #: ../../admin/view/wp-slimstat-reports.php:801
4895
+ msgid ""
4896
+ "Alexa is a subsidiary company of Amazon.com which provides commercial web "
4897
+ "traffic data."
4898
+ msgstr ""
4899
+
4900
+ #: ../../admin/view/wp-slimstat-reports.php:802
4901
+ msgid "Alexa World Rank"
4902
+ msgstr ""
4903
+
4904
+ #: ../../admin/view/wp-slimstat-reports.php:803
4905
+ msgid "Alexa Country Rank"
4906
+ msgstr ""
4907
+
4908
+ #: ../../admin/view/wp-slimstat-reports.php:804
4909
+ msgid "Alexa Popularity"
4910
+ msgstr ""
4911
+
4912
+ #: ../../admin/view/wp-slimstat-reports.php:836
4913
+ msgid ""
4914
+ "This value includes not only posts, but also custom post types, regardless "
4915
+ "of their status"
4916
+ msgstr ""
4917
+
4918
+ #: ../../admin/view/wp-slimstat-reports.php:837
4919
+ msgid "Content Items"
4920
+ msgstr ""
4921
+
4922
+ #: ../../admin/view/wp-slimstat-reports.php:838
4923
+ msgid "Total Comments"
4924
+ msgstr ""
4925
+
4926
+ #: ../../admin/view/wp-slimstat-reports.php:839
4927
+ msgid "Pingbacks"
4928
+ msgstr ""
4929
+
4930
+ #: ../../admin/view/wp-slimstat-reports.php:840
4931
+ msgid "Trackbacks"
4932
+ msgstr ""
4933
+
4934
+ #: ../../admin/view/wp-slimstat-reports.php:841
4935
+ msgid "Longest Post (ID)"
4936
+ msgstr ""
4937
+
4938
+ #: ../../admin/view/wp-slimstat-reports.php:842
4939
+ msgid "Longest Comment (ID)"
4940
+ msgstr ""
4941
+
4942
+ #: ../../admin/view/wp-slimstat-reports.php:843
4943
+ msgid "Avg Comments Per Post"
4944
+ msgstr ""
4945
+
4946
+ #: ../../admin/view/wp-slimstat-reports.php:844
4947
+ msgid "Avg Posts Per Day"
4948
+ msgstr ""
4949
+
4950
+ #: ../../admin/view/wp-slimstat-reports.php:873
4951
  msgid "Visits"
4952
  msgstr ""
4953
 
4954
+ #: ../../admin/view/wp-slimstat-reports.php:877
4955
  msgid "Domains"
4956
  msgstr ""
admin/lang/wp-slimstat-es_ES.mo CHANGED
Binary file
admin/lang/wp-slimstat-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-30 22:28-0500\n"
6
- "PO-Revision-Date: 2013-10-30 22:29-0500\n"
7
  "Last-Translator: get used to it <support@getused.to.it>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
@@ -16,88 +16,88 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
- #: ../../wp-slimstat.php:1137 ../../admin/wp-slimstat-admin.php:413
20
  #: ../../admin/view/index.php:11 ../../admin/view/wp-slimstat-reports.php:140
21
  msgid "Right Now"
22
  msgstr ""
23
 
24
- #: ../../wp-slimstat.php:1138 ../../admin/wp-slimstat-admin.php:414
25
- #: ../../admin/wp-slimstat-admin.php:431 ../../admin/view/index.php:12
26
  msgid "Overview"
27
  msgstr ""
28
 
29
- #: ../../wp-slimstat.php:1139 ../../admin/wp-slimstat-admin.php:415
30
- #: ../../admin/wp-slimstat-admin.php:432 ../../admin/view/index.php:13
31
  msgid "Visitors"
32
  msgstr "Visitantes"
33
 
34
- #: ../../wp-slimstat.php:1140 ../../admin/wp-slimstat-admin.php:416
35
- #: ../../admin/wp-slimstat-admin.php:433 ../../admin/view/index.php:14
36
  msgid "Content"
37
  msgstr "Contenido"
38
 
39
- #: ../../wp-slimstat.php:1141 ../../admin/wp-slimstat-admin.php:417
40
- #: ../../admin/wp-slimstat-admin.php:434 ../../admin/view/index.php:15
41
- #: ../../admin/view/index.php:273
42
  msgid "Traffic Sources"
43
  msgstr "Origen del Tráfico"
44
 
45
- #: ../../wp-slimstat.php:1142 ../../admin/wp-slimstat-admin.php:418
46
- #: ../../admin/wp-slimstat-admin.php:435 ../../admin/view/index.php:16
47
- #: ../../admin/view/index.php:139
48
  msgid "World Map"
49
  msgstr "Mapa del Mundo"
50
 
51
- #: ../../wp-slimstat.php:1143 ../../admin/wp-slimstat-admin.php:419
52
- #: ../../admin/wp-slimstat-admin.php:436 ../../admin/view/index.php:17
53
  msgid "Custom Reports"
54
  msgstr "Informes Personalizados"
55
 
56
- #: ../../wp-slimstat.php:1144 ../../admin/wp-slimstat-admin.php:420
57
- #: ../../admin/wp-slimstat-admin.php:437 ../../admin/config/index.php:9
58
  #: ../../admin/config/index.php:208 ../../admin/config/index.php:216
59
  msgid "Add-ons"
60
  msgstr ""
61
 
62
- #: ../../wp-slimstat.php:1147 ../../admin/wp-slimstat-admin.php:468
63
- #: ../../admin/wp-slimstat-admin.php:471 ../../admin/wp-slimstat-admin.php:515
64
- #: ../../admin/wp-slimstat-admin.php:518
65
  #, fuzzy
66
  msgid "Settings"
67
  msgstr "Seleccionar orden"
68
 
69
- #: ../../admin/wp-slimstat-admin.php:534
70
  msgid "Stats"
71
  msgstr ""
72
 
73
- #: ../../admin/wp-slimstat-admin.php:567
74
  msgid "Show on screen"
75
  msgstr ""
76
 
77
- #: ../../admin/wp-slimstat-admin.php:613
78
  msgid "There was an error updating the following options:"
79
  msgstr ""
80
 
81
- #: ../../admin/wp-slimstat-admin.php:616
82
  msgid "Your settings have been successfully updated."
83
  msgstr ""
84
 
85
- #: ../../admin/wp-slimstat-admin.php:632
86
  msgid "Save Changes"
87
  msgstr ""
88
 
89
- #: ../../admin/wp-slimstat-admin.php:645 ../../admin/config/maintenance.php:29
90
  #: ../../admin/config/maintenance.php:38
91
  msgid "Yes"
92
  msgstr ""
93
 
94
- #: ../../admin/wp-slimstat-admin.php:646 ../../admin/config/maintenance.php:29
95
  #: ../../admin/config/maintenance.php:38
96
- #: ../../admin/view/wp-slimstat-reports.php:600
97
  msgid "No"
98
  msgstr ""
99
 
100
- #: ../../admin/wp-slimstat-admin.php:683
101
  msgid ""
102
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
103
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
@@ -105,52 +105,52 @@ msgid ""
105
  "FAQs</a> for more information."
106
  msgstr ""
107
 
108
- #: ../../admin/wp-slimstat-admin.php:703
109
  msgid "Definitions"
110
  msgstr ""
111
 
112
- #: ../../admin/wp-slimstat-admin.php:706
113
  #, fuzzy
114
  msgid "Pageview"
115
  msgstr "Paginas visitadas"
116
 
117
- #: ../../admin/wp-slimstat-admin.php:706
118
  msgid ""
119
  "A request to load a single HTML file (\"page\"). This should be contrasted "
120
  "with a \"hit\", which refers to a request for any file from a web server. WP "
121
  "SlimStat logs a pageview each time the tracking code is executed"
122
  msgstr ""
123
 
124
- #: ../../admin/wp-slimstat-admin.php:707
125
  #, fuzzy
126
  msgid "(Human) Visit"
127
  msgstr "Visitas humanas"
128
 
129
- #: ../../admin/wp-slimstat-admin.php:707
130
  msgid ""
131
  "A period of interaction between a visitor's browser and your website, ending "
132
  "when the browser is closed or when the user has been inactive on that site "
133
  "for 30 minutes"
134
  msgstr ""
135
 
136
- #: ../../admin/wp-slimstat-admin.php:708 ../../admin/view/index.php:213
137
- #: ../../admin/view/index.php:279 ../../admin/view/right-now.php:168
138
  #, fuzzy
139
  msgid "Known Visitor"
140
  msgstr "Palabras clave recientes"
141
 
142
- #: ../../admin/wp-slimstat-admin.php:708
143
  msgid ""
144
  "Any user who has left a comment on your blog, and is thus identified by "
145
  "Wordpress as a returning visitor"
146
  msgstr ""
147
 
148
- #: ../../admin/wp-slimstat-admin.php:709
149
  #, fuzzy
150
  msgid "Unique IP"
151
  msgstr "IPs Unicas"
152
 
153
- #: ../../admin/wp-slimstat-admin.php:709
154
  msgid ""
155
  "Used to differentiate between multiple requests to download a file from one "
156
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -158,271 +158,271 @@ msgid ""
158
  "from, it is useful, but not perfect"
159
  msgstr ""
160
 
161
- #: ../../admin/wp-slimstat-admin.php:710 ../../admin/wp-slimstat-admin.php:752
162
  #: ../../admin/view/index.php:56 ../../admin/view/right-now.php:90
163
  #: ../../admin/view/wp-slimstat-reports.php:60
164
  msgid "Originating IP"
165
  msgstr ""
166
 
167
- #: ../../admin/wp-slimstat-admin.php:710
168
  msgid ""
169
  "the originating IP address of a client connecting to a web server through an "
170
  "HTTP proxy or load balancer"
171
  msgstr ""
172
 
173
- #: ../../admin/wp-slimstat-admin.php:711
174
  #, fuzzy
175
  msgid "Direct Traffic"
176
  msgstr "Visita Directa"
177
 
178
- #: ../../admin/wp-slimstat-admin.php:711
179
  msgid ""
180
  "All those people showing up to your Web site by typing in the URL of your "
181
  "Web site coming or from a bookmark; some people also call this \"default "
182
  "traffic\" or \"ambient traffic\""
183
  msgstr ""
184
 
185
- #: ../../admin/wp-slimstat-admin.php:712
186
  #, fuzzy
187
  msgid "Search Engine"
188
  msgstr "Motores de Búsqueda"
189
 
190
- #: ../../admin/wp-slimstat-admin.php:712
191
  msgid ""
192
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
193
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
194
  msgstr ""
195
 
196
- #: ../../admin/wp-slimstat-admin.php:713 ../../admin/wp-slimstat-admin.php:729
197
  #: ../../admin/config/maintenance.php:183 ../../admin/view/index.php:38
198
  #: ../../admin/view/wp-slimstat-reports.php:43
199
  #, fuzzy
200
  msgid "Search Terms"
201
  msgstr "Principales Recursos"
202
 
203
- #: ../../admin/wp-slimstat-admin.php:713 ../../admin/wp-slimstat-admin.php:729
204
- #: ../../admin/view/index.php:216 ../../admin/view/index.php:282
205
  msgid "Keywords used by your visitors to find your website on a search engine"
206
  msgstr ""
207
 
208
- #: ../../admin/wp-slimstat-admin.php:714
209
  msgid "SERP"
210
  msgstr ""
211
 
212
- #: ../../admin/wp-slimstat-admin.php:714
213
  msgid ""
214
  "Short for search engine results page, the Web page that a search engine "
215
  "returns with the results of its search. The value shown represents your rank "
216
  "(or position) within that list of results"
217
  msgstr ""
218
 
219
- #: ../../admin/wp-slimstat-admin.php:715
220
  #: ../../admin/config/maintenance.php:178 ../../admin/view/index.php:49
221
  #: ../../admin/view/wp-slimstat-reports.php:53
222
  #, fuzzy
223
  msgid "User Agent"
224
  msgstr "Buscadores"
225
 
226
- #: ../../admin/wp-slimstat-admin.php:715
227
  msgid ""
228
  "Any program used for accessing a website; this includes browsers, robots, "
229
  "spiders and any other program that was used to retrieve information from the "
230
  "site"
231
  msgstr ""
232
 
233
- #: ../../admin/wp-slimstat-admin.php:716 ../../admin/view/index.php:53
234
  #: ../../admin/view/wp-slimstat-reports.php:57
235
  #, fuzzy
236
  msgid "Outbound Link"
237
  msgstr "Enlaces Salientes Recientes"
238
 
239
- #: ../../admin/wp-slimstat-admin.php:716
240
  msgid ""
241
  "A link from one domain to another is said to be outbound from its source "
242
  "anchor and inbound to its target. This report lists all the links to other "
243
  "websites followed by your visitors."
244
  msgstr ""
245
 
246
- #: ../../admin/wp-slimstat-admin.php:723
247
  msgid "Basic Filters"
248
  msgstr ""
249
 
250
- #: ../../admin/wp-slimstat-admin.php:726 ../../admin/view/index.php:35
251
  #: ../../admin/view/right-now.php:98
252
  #: ../../admin/view/wp-slimstat-reports.php:40
253
  msgid "Browser"
254
  msgstr "Navegador"
255
 
256
- #: ../../admin/wp-slimstat-admin.php:726
257
  msgid "User agent (Firefox, Chrome, ...)"
258
  msgstr ""
259
 
260
- #: ../../admin/wp-slimstat-admin.php:727
261
  #: ../../admin/config/maintenance.php:179 ../../admin/view/index.php:36
262
  #: ../../admin/view/wp-slimstat-reports.php:41
263
- #: ../../admin/view/wp-slimstat-reports.php:417
264
  msgid "Country Code"
265
  msgstr "Código de Pais"
266
 
267
- #: ../../admin/wp-slimstat-admin.php:727
268
  msgid "2-letter code (us, ru, de, it, ...)"
269
  msgstr ""
270
 
271
- #: ../../admin/wp-slimstat-admin.php:728 ../../admin/view/index.php:37
272
  #: ../../admin/view/wp-slimstat-reports.php:42
273
  msgid "IP"
274
  msgstr "IP"
275
 
276
- #: ../../admin/wp-slimstat-admin.php:728
277
  msgid "Visitor's public IP address"
278
  msgstr ""
279
 
280
- #: ../../admin/wp-slimstat-admin.php:730
281
  #: ../../admin/config/maintenance.php:181 ../../admin/view/index.php:39
282
  #: ../../admin/view/wp-slimstat-reports.php:44
283
- #: ../../admin/view/wp-slimstat-reports.php:429
284
  msgid "Language Code"
285
  msgstr "Código de Idioma"
286
 
287
- #: ../../admin/wp-slimstat-admin.php:730
288
  msgid ""
289
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
290
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
291
  "column) for more information"
292
  msgstr ""
293
 
294
- #: ../../admin/wp-slimstat-admin.php:731 ../../admin/view/index.php:40
295
  #: ../../admin/view/wp-slimstat-reports.php:45
296
  msgid "Operating System"
297
  msgstr "Sistema Operativo"
298
 
299
- #: ../../admin/wp-slimstat-admin.php:731
300
  msgid ""
301
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
302
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
303
  "manual page</a> for more information"
304
  msgstr ""
305
 
306
- #: ../../admin/wp-slimstat-admin.php:732
307
  #: ../../admin/config/maintenance.php:182 ../../admin/view/index.php:41
308
  #: ../../admin/view/wp-slimstat-reports.php:46
309
  msgid "Permalink"
310
  msgstr "Enlace Permanente"
311
 
312
- #: ../../admin/wp-slimstat-admin.php:732
313
  msgid "URL accessed on your site"
314
  msgstr ""
315
 
316
- #: ../../admin/wp-slimstat-admin.php:733 ../../admin/view/index.php:42
317
  #: ../../admin/view/wp-slimstat-reports.php:48
318
  msgid "Referer"
319
  msgstr "Referido"
320
 
321
- #: ../../admin/wp-slimstat-admin.php:733
322
  msgid "Complete address of the referrer page"
323
  msgstr ""
324
 
325
- #: ../../admin/wp-slimstat-admin.php:734 ../../admin/view/index.php:43
326
  #: ../../admin/view/wp-slimstat-reports.php:49
327
  #, fuzzy
328
  msgid "Visitor's Name"
329
  msgstr "Visitantes"
330
 
331
- #: ../../admin/wp-slimstat-admin.php:734
332
  msgid ""
333
  "Visitors' names according to the cookie set by Wordpress after they leave a "
334
  "comment"
335
  msgstr ""
336
 
337
- #: ../../admin/wp-slimstat-admin.php:742
338
  msgid "Advanced Filters"
339
  msgstr ""
340
 
341
- #: ../../admin/wp-slimstat-admin.php:745 ../../admin/view/index.php:47
342
  #: ../../admin/view/wp-slimstat-reports.php:51
343
  #, fuzzy
344
  msgid "Browser Version"
345
  msgstr "Versión del Navegador"
346
 
347
- #: ../../admin/wp-slimstat-admin.php:745
348
  msgid "user agent version (9.0, 11, ...)"
349
  msgstr ""
350
 
351
- #: ../../admin/wp-slimstat-admin.php:746 ../../admin/view/index.php:48
352
  #: ../../admin/view/wp-slimstat-reports.php:52
353
  #, fuzzy
354
  msgid "Browser Type"
355
  msgstr "Navegador"
356
 
357
- #: ../../admin/wp-slimstat-admin.php:746
358
  msgid ""
359
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
360
  "all others"
361
  msgstr ""
362
 
363
- #: ../../admin/wp-slimstat-admin.php:747 ../../admin/view/index.php:50
364
  #: ../../admin/view/wp-slimstat-reports.php:54
365
  msgid "Color Depth"
366
  msgstr ""
367
 
368
- #: ../../admin/wp-slimstat-admin.php:747
369
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
370
  msgstr ""
371
 
372
- #: ../../admin/wp-slimstat-admin.php:748 ../../admin/view/index.php:51
373
  #: ../../admin/view/wp-slimstat-reports.php:55
374
  #, fuzzy
375
  msgid "CSS Version"
376
  msgstr "Versión de CSS"
377
 
378
- #: ../../admin/wp-slimstat-admin.php:748
379
  msgid ""
380
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
381
  "values)"
382
  msgstr ""
383
 
384
- #: ../../admin/wp-slimstat-admin.php:749 ../../admin/view/index.php:52
385
  #: ../../admin/view/wp-slimstat-reports.php:56
386
  #, fuzzy
387
  msgid "Pageview Attributes"
388
  msgstr "Paginas visitadas"
389
 
390
- #: ../../admin/wp-slimstat-admin.php:749
391
  msgid ""
392
  "this field is set to <em>[pre]</em> if the resource has been accessed "
393
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
394
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
395
  msgstr ""
396
 
397
- #: ../../admin/wp-slimstat-admin.php:750 ../../admin/view/index.php:54
398
  #: ../../admin/view/wp-slimstat-reports.php:58
399
  msgid "Post Author"
400
  msgstr "Autor de la entrada(sección)"
401
 
402
- #: ../../admin/wp-slimstat-admin.php:750
403
  msgid "author associated to that post/page when the resource was accessed"
404
  msgstr ""
405
 
406
- #: ../../admin/wp-slimstat-admin.php:751 ../../admin/view/index.php:55
407
  #: ../../admin/view/wp-slimstat-reports.php:59
408
  msgid "Post Category ID"
409
  msgstr "ID de la entrada(sección) de la Categoria"
410
 
411
- #: ../../admin/wp-slimstat-admin.php:751
412
  msgid "ID of the category/term associated to the resource, when available"
413
  msgstr ""
414
 
415
- #: ../../admin/wp-slimstat-admin.php:752
416
  msgid "visitor's originating IP address, if available"
417
  msgstr ""
418
 
419
- #: ../../admin/wp-slimstat-admin.php:753 ../../admin/view/index.php:57
420
  #: ../../admin/view/wp-slimstat-reports.php:61
421
  #, fuzzy
422
  msgid "Resource Content Type"
423
  msgstr "Contenidos Recientes"
424
 
425
- #: ../../admin/wp-slimstat-admin.php:753
426
  msgid ""
427
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
428
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -431,54 +431,54 @@ msgid ""
431
  "information"
432
  msgstr ""
433
 
434
- #: ../../admin/wp-slimstat-admin.php:754 ../../admin/view/index.php:59
435
  #: ../../admin/view/wp-slimstat-reports.php:63
436
  msgid "Screen Resolution"
437
  msgstr "Resolución de Pantalla"
438
 
439
- #: ../../admin/wp-slimstat-admin.php:754
440
  msgid "viewport width and height (1024x768, 800x600, ...)"
441
  msgstr ""
442
 
443
- #: ../../admin/wp-slimstat-admin.php:755 ../../admin/view/index.php:60
444
  #: ../../admin/view/wp-slimstat-reports.php:64
445
  #, fuzzy
446
  msgid "Visit ID"
447
  msgstr "Visitas"
448
 
449
- #: ../../admin/wp-slimstat-admin.php:755
450
  msgid ""
451
  "generally used in conjunction with <em>is not empty</em>, identifies human "
452
  "visitors"
453
  msgstr ""
454
 
455
- #: ../../admin/wp-slimstat-admin.php:756
456
  msgid "Date Filters"
457
  msgstr ""
458
 
459
- #: ../../admin/wp-slimstat-admin.php:756
460
  msgid ""
461
  "you can specify the timeframe by entering a number in the <em>interval</em> "
462
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
463
  "year=blank, interval=-1 will set a year-to-date filter)"
464
  msgstr ""
465
 
466
- #: ../../admin/wp-slimstat-admin.php:757
467
  msgid "SERP Position"
468
  msgstr ""
469
 
470
- #: ../../admin/wp-slimstat-admin.php:757
471
  msgid ""
472
  "set the filter to Referer contains cd=N&, where N is the position you are "
473
  "looking for"
474
  msgstr ""
475
 
476
- #: ../../admin/wp-slimstat-admin.php:773 ../../admin/config/index.php:9
477
  #: ../../admin/config/index.php:205
478
  msgid "Support"
479
  msgstr ""
480
 
481
- #: ../../admin/wp-slimstat-admin.php:782
482
  msgid ""
483
  "<a href=\"http://slimstat.getused.to.it/\">WP SlimStat</a> is and will "
484
  "always be free, but consider supporting the author if this plugin helped you "
@@ -566,7 +566,7 @@ msgid ""
566
  msgstr ""
567
 
568
  #: ../../admin/config/index.php:21
569
- #: ../../admin/view/wp-slimstat-reports.php:598
570
  msgid "Javascript Mode"
571
  msgstr ""
572
 
@@ -600,7 +600,7 @@ msgstr ""
600
 
601
  #: ../../admin/config/index.php:22 ../../admin/view/index.php:29
602
  #: ../../admin/view/index.php:104 ../../admin/view/wp-slimstat-reports.php:69
603
- #: ../../admin/view/wp-slimstat-reports.php:600
604
  msgid "days"
605
  msgstr "dias"
606
 
@@ -880,20 +880,10 @@ msgid ""
880
  "will not be tracked. Capabilities are case-insensitive."
881
  msgstr ""
882
 
883
- #: ../../admin/config/index.php:79
884
- #, fuzzy
885
- msgid "Ignore users"
886
- msgstr "Navegadores recientes"
887
-
888
  #: ../../admin/config/index.php:82
889
  msgid "Ignore users (username not found)"
890
  msgstr ""
891
 
892
- #: ../../admin/config/index.php:102
893
- #, fuzzy
894
- msgid "Users by capability"
895
- msgstr "Navegador"
896
-
897
  #: ../../admin/config/index.php:105
898
  msgid ""
899
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
@@ -925,7 +915,7 @@ msgid ""
925
  "case, the list has precedence over the capability."
926
  msgstr ""
927
 
928
- #: ../../admin/config/index.php:117 ../../admin/config/index.php:177
929
  msgid "Capability to Admin"
930
  msgstr ""
931
 
@@ -937,7 +927,7 @@ msgid ""
937
  "here below can be used to override this option for specific users."
938
  msgstr ""
939
 
940
- #: ../../admin/config/index.php:118 ../../admin/config/index.php:133
941
  msgid "Read access"
942
  msgstr ""
943
 
@@ -949,7 +939,7 @@ msgid ""
949
  "Usernames are case sensitive."
950
  msgstr ""
951
 
952
- #: ../../admin/config/index.php:119 ../../admin/config/index.php:164
953
  msgid "Config access"
954
  msgstr ""
955
 
@@ -967,10 +957,6 @@ msgstr ""
967
  msgid "Read access: username not found"
968
  msgstr ""
969
 
970
- #: ../../admin/config/index.php:146
971
- msgid "Capability to Read"
972
- msgstr ""
973
-
974
  #: ../../admin/config/index.php:149 ../../admin/config/index.php:180
975
  msgid ""
976
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
@@ -1370,17 +1356,16 @@ msgid "unknown"
1370
  msgstr "Desconocido"
1371
 
1372
  #: ../../admin/lang/dynamic_strings.php:5
1373
- msgid "win7"
1374
- msgstr "Windows 7"
1375
 
1376
  #: ../../admin/lang/dynamic_strings.php:6
1377
  msgid "win8"
1378
  msgstr ""
1379
 
1380
  #: ../../admin/lang/dynamic_strings.php:7
1381
- #, fuzzy
1382
- msgid "winphone7"
1383
- msgstr "iPhone OS X"
1384
 
1385
  #: ../../admin/lang/dynamic_strings.php:8
1386
  msgid "winvista"
@@ -1479,1555 +1464,1513 @@ msgid "cygwin"
1479
  msgstr "Cygwin"
1480
 
1481
  #: ../../admin/lang/dynamic_strings.php:32
1482
- msgid "darwin"
1483
- msgstr "Darwin"
1484
-
1485
- #: ../../admin/lang/dynamic_strings.php:33
1486
  msgid "digital unix"
1487
  msgstr "Digital Unix"
1488
 
1489
- #: ../../admin/lang/dynamic_strings.php:34
1490
  msgid "risc os"
1491
  msgstr "Risc OS"
1492
 
1493
- #: ../../admin/lang/dynamic_strings.php:35
1494
- msgid "dec alpha"
1495
- msgstr "DEC Alpha"
1496
-
1497
- #: ../../admin/lang/dynamic_strings.php:36
1498
- msgid "vax"
1499
- msgstr "VAX"
1500
-
1501
- #: ../../admin/lang/dynamic_strings.php:37
1502
  msgid "openvms"
1503
  msgstr "OpenVMS"
1504
 
1505
- #: ../../admin/lang/dynamic_strings.php:38
1506
  msgid "linux"
1507
  msgstr "Linux"
1508
 
1509
- #: ../../admin/lang/dynamic_strings.php:39
1510
  msgid "freebsd"
1511
  msgstr "FreeBSD"
1512
 
1513
- #: ../../admin/lang/dynamic_strings.php:40
1514
  msgid "openbsd"
1515
  msgstr "OpenBSD"
1516
 
1517
- #: ../../admin/lang/dynamic_strings.php:41
1518
  msgid "netbsd"
1519
  msgstr "NetBSD"
1520
 
1521
- #: ../../admin/lang/dynamic_strings.php:42
1522
  msgid "debian"
1523
  msgstr "Debian"
1524
 
1525
- #: ../../admin/lang/dynamic_strings.php:43
1526
  msgid "amiga"
1527
  msgstr "Amiga"
1528
 
1529
- #: ../../admin/lang/dynamic_strings.php:44
1530
  msgid "android"
1531
  msgstr "Android"
1532
 
1533
- #: ../../admin/lang/dynamic_strings.php:45
1534
  msgid "wyderos"
1535
  msgstr "WyderOS"
1536
 
1537
- #: ../../admin/lang/dynamic_strings.php:46
1538
  msgid "iphone osx"
1539
  msgstr "iPhone OS X"
1540
 
1541
- #: ../../admin/lang/dynamic_strings.php:47
1542
  #, fuzzy
1543
  msgid "ios"
1544
  msgstr "Apple iOS"
1545
 
1546
- #: ../../admin/lang/dynamic_strings.php:48
1547
  msgid "palm"
1548
  msgstr "Palm"
1549
 
1550
- #: ../../admin/lang/dynamic_strings.php:49
1551
  msgid "wap"
1552
  msgstr "WAP"
1553
 
1554
- #: ../../admin/lang/dynamic_strings.php:50
1555
  msgid "java"
1556
  msgstr "Java"
1557
 
1558
- #: ../../admin/lang/dynamic_strings.php:51
 
 
 
 
 
1559
  msgid "wince"
1560
  msgstr "Windows CE"
1561
 
1562
- #: ../../admin/lang/dynamic_strings.php:52
1563
  msgid "symbianos"
1564
  msgstr "Symbian OS"
1565
 
1566
- #: ../../admin/lang/dynamic_strings.php:53
1567
  msgid "blackberry os"
1568
  msgstr ""
1569
 
1570
- #: ../../admin/lang/dynamic_strings.php:54
1571
  msgid "webos"
1572
  msgstr "WebOS"
1573
 
1574
- #: ../../admin/lang/dynamic_strings.php:55
1575
  msgid "p-and"
1576
  msgstr "Android"
1577
 
1578
- #: ../../admin/lang/dynamic_strings.php:56
1579
  msgid "p-bla"
1580
  msgstr "BlackBerry"
1581
 
1582
- #: ../../admin/lang/dynamic_strings.php:57
1583
  msgid "p-chr"
1584
  msgstr "Chrome OS"
1585
 
1586
- #: ../../admin/lang/dynamic_strings.php:58
1587
  msgid "p-fre"
1588
  msgstr "Linux FreeBSD"
1589
 
1590
- #: ../../admin/lang/dynamic_strings.php:59
1591
  msgid "p-ios"
1592
  msgstr "Apple iOS"
1593
 
1594
- #: ../../admin/lang/dynamic_strings.php:60
1595
  msgid "p-jav"
1596
  msgstr "Java-based OS"
1597
 
1598
- #: ../../admin/lang/dynamic_strings.php:61
1599
  msgid "p-lin"
1600
  msgstr "Linux"
1601
 
1602
- #: ../../admin/lang/dynamic_strings.php:62
1603
  msgid "p-mac"
1604
  msgstr "Apple"
1605
 
1606
- #: ../../admin/lang/dynamic_strings.php:63
1607
  msgid "p-sym"
1608
  msgstr "Symbian OS"
1609
 
1610
- #: ../../admin/lang/dynamic_strings.php:64
1611
  msgid "p-unk"
1612
  msgstr "Unknown"
1613
 
1614
- #: ../../admin/lang/dynamic_strings.php:65
1615
  msgid "p-win"
1616
  msgstr "Microsoft"
1617
 
1618
- #: ../../admin/lang/dynamic_strings.php:66
1619
  msgid "powertv"
1620
  msgstr "PowerTV"
1621
 
1622
- #: ../../admin/lang/dynamic_strings.php:67
1623
  #, fuzzy
1624
  msgid "acrobat"
1625
  msgstr "Acrobat"
1626
 
1627
- #: ../../admin/lang/dynamic_strings.php:68
1628
  msgid "director"
1629
  msgstr ""
1630
 
1631
- #: ../../admin/lang/dynamic_strings.php:69
1632
  #, fuzzy
1633
  msgid "flash"
1634
  msgstr "Flash"
1635
 
1636
- #: ../../admin/lang/dynamic_strings.php:70
1637
  #, fuzzy
1638
  msgid "mediaplayer"
1639
  msgstr "Media Player"
1640
 
1641
- #: ../../admin/lang/dynamic_strings.php:71
1642
  msgid "quicktime"
1643
  msgstr ""
1644
 
1645
- #: ../../admin/lang/dynamic_strings.php:72
1646
  msgid "real"
1647
  msgstr ""
1648
 
1649
- #: ../../admin/lang/dynamic_strings.php:73
1650
  #, fuzzy
1651
  msgid "silverlight"
1652
  msgstr "Silverlight"
1653
 
1654
  # Afar
1655
- #: ../../admin/lang/dynamic_strings.php:74
1656
  msgid "l-aa"
1657
  msgstr "Afar"
1658
 
1659
  # Abkhazian
1660
- #: ../../admin/lang/dynamic_strings.php:75
1661
  msgid "l-ab"
1662
  msgstr "Abkhazian"
1663
 
1664
  # Avestan
1665
- #: ../../admin/lang/dynamic_strings.php:76
1666
  msgid "l-ae"
1667
  msgstr "Avestan"
1668
 
1669
  # Afrikaans
1670
- #: ../../admin/lang/dynamic_strings.php:77
1671
  msgid "l-af"
1672
  msgstr "Afrikaans"
1673
 
1674
  # Akan
1675
- #: ../../admin/lang/dynamic_strings.php:78
1676
  msgid "l-ak"
1677
  msgstr "Akan"
1678
 
1679
  # Amharic
1680
- #: ../../admin/lang/dynamic_strings.php:79
1681
  msgid "l-am"
1682
  msgstr "Amharic"
1683
 
1684
- # Aragonese
1685
- #: ../../admin/lang/dynamic_strings.php:80
1686
- msgid "l-an"
1687
- msgstr "Aragonese"
1688
-
1689
  # Arabic
1690
- #: ../../admin/lang/dynamic_strings.php:81
1691
  msgid "l-ar"
1692
  msgstr "Arabic"
1693
 
1694
  # Assamese
1695
- #: ../../admin/lang/dynamic_strings.php:82
1696
  msgid "l-as"
1697
  msgstr "Assamese"
1698
 
1699
  # Avaric
1700
- #: ../../admin/lang/dynamic_strings.php:83
1701
  msgid "l-av"
1702
  msgstr "Avaric"
1703
 
1704
  # Aymara
1705
- #: ../../admin/lang/dynamic_strings.php:84
1706
  msgid "l-ay"
1707
  msgstr "Aymara"
1708
 
1709
  # Azerbaijani
1710
- #: ../../admin/lang/dynamic_strings.php:85
1711
  msgid "l-az"
1712
  msgstr "Azerbaijani"
1713
 
1714
  # Bashkir
1715
- #: ../../admin/lang/dynamic_strings.php:86
1716
  msgid "l-ba"
1717
  msgstr "Bashkir"
1718
 
1719
  # Belarusian
1720
- #: ../../admin/lang/dynamic_strings.php:87
1721
  msgid "l-be"
1722
  msgstr "Belarusian"
1723
 
1724
  # Bulgarian
1725
- #: ../../admin/lang/dynamic_strings.php:88
1726
  msgid "l-bg"
1727
  msgstr "Bulgarian"
1728
 
1729
  # Bihari languages
1730
- #: ../../admin/lang/dynamic_strings.php:89
1731
  msgid "l-bh"
1732
  msgstr "Bihari languages"
1733
 
1734
  # Bislama
1735
- #: ../../admin/lang/dynamic_strings.php:90
1736
  msgid "l-bi"
1737
  msgstr "Bislama"
1738
 
1739
  # Bambara
1740
- #: ../../admin/lang/dynamic_strings.php:91
1741
  msgid "l-bm"
1742
  msgstr "Bambara"
1743
 
1744
  # Bengali
1745
- #: ../../admin/lang/dynamic_strings.php:92
1746
  msgid "l-bn"
1747
  msgstr "Bengali"
1748
 
1749
  # Tibetan
1750
- #: ../../admin/lang/dynamic_strings.php:93
1751
  msgid "l-bo"
1752
  msgstr "Tibetan"
1753
 
1754
  # Breton
1755
- #: ../../admin/lang/dynamic_strings.php:94
1756
  msgid "l-br"
1757
  msgstr "Breton"
1758
 
1759
  # Bosnian
1760
- #: ../../admin/lang/dynamic_strings.php:95
1761
  msgid "l-bs"
1762
  msgstr "Bosnian"
1763
 
1764
  # Catalan; Valencian
1765
- #: ../../admin/lang/dynamic_strings.php:96
1766
  msgid "l-ca"
1767
  msgstr "Catalan; Valencian"
1768
 
1769
  # Chechen
1770
- #: ../../admin/lang/dynamic_strings.php:97
1771
  msgid "l-ce"
1772
  msgstr "Chechen"
1773
 
1774
- # Chamorro
1775
- #: ../../admin/lang/dynamic_strings.php:98
1776
- msgid "l-ch"
1777
- msgstr "Chamorro"
1778
-
1779
  # Corsican
1780
- #: ../../admin/lang/dynamic_strings.php:99
1781
  msgid "l-co"
1782
  msgstr "Corsican"
1783
 
1784
  # Cree
1785
- #: ../../admin/lang/dynamic_strings.php:100
1786
  msgid "l-cr"
1787
  msgstr "Cree"
1788
 
1789
  # Czech
1790
- #: ../../admin/lang/dynamic_strings.php:101
1791
  msgid "l-cs"
1792
  msgstr "Czech"
1793
 
1794
- # Church Slavic; Church Slavonic
1795
- #: ../../admin/lang/dynamic_strings.php:102
1796
- msgid "l-cu"
1797
- msgstr "Church Slavic; Church Slavonic"
1798
-
1799
  # Chuvash
1800
- #: ../../admin/lang/dynamic_strings.php:103
1801
  msgid "l-cv"
1802
  msgstr "Chuvash"
1803
 
1804
  # Welsh
1805
- #: ../../admin/lang/dynamic_strings.php:104
1806
  msgid "l-cy"
1807
  msgstr "Welsh"
1808
 
1809
  # Danish
1810
- #: ../../admin/lang/dynamic_strings.php:105
1811
  msgid "l-da"
1812
  msgstr "Danish"
1813
 
1814
  # German
1815
- #: ../../admin/lang/dynamic_strings.php:106
1816
  msgid "l-de"
1817
  msgstr "German"
1818
 
1819
  # Dhivehi; Divehi; Maldivian
1820
- #: ../../admin/lang/dynamic_strings.php:107
1821
  msgid "l-dv"
1822
  msgstr "Dhivehi; Divehi; Maldivian"
1823
 
1824
  # Dzongkha
1825
- #: ../../admin/lang/dynamic_strings.php:108
1826
  msgid "l-dz"
1827
  msgstr "Dzongkha"
1828
 
1829
  # Ewe
1830
- #: ../../admin/lang/dynamic_strings.php:109
1831
  msgid "l-ee"
1832
  msgstr "Ewe"
1833
 
1834
  # Modern Greek (1453-)
1835
- #: ../../admin/lang/dynamic_strings.php:110
1836
  msgid "l-el"
1837
  msgstr "Modern Greek (1453-)"
1838
 
1839
  # English
1840
- #: ../../admin/lang/dynamic_strings.php:111
1841
  msgid "l-en"
1842
  msgstr "English"
1843
 
1844
  # Esperanto
1845
- #: ../../admin/lang/dynamic_strings.php:112
1846
  msgid "l-eo"
1847
  msgstr "Esperanto"
1848
 
1849
  # Spanish; Castilian
1850
- #: ../../admin/lang/dynamic_strings.php:113
1851
  msgid "l-es"
1852
  msgstr "Spanish; Castilian"
1853
 
1854
  # Estonian
1855
- #: ../../admin/lang/dynamic_strings.php:114
1856
  msgid "l-et"
1857
  msgstr "Estonian"
1858
 
1859
  # Basque
1860
- #: ../../admin/lang/dynamic_strings.php:115
1861
  msgid "l-eu"
1862
  msgstr "Basque"
1863
 
1864
  # Persian
1865
- #: ../../admin/lang/dynamic_strings.php:116
1866
  msgid "l-fa"
1867
  msgstr "Persian"
1868
 
1869
  # Fulah
1870
- #: ../../admin/lang/dynamic_strings.php:117
1871
  msgid "l-ff"
1872
  msgstr "Fulah"
1873
 
1874
  # Finnish
1875
- #: ../../admin/lang/dynamic_strings.php:118
1876
  msgid "l-fi"
1877
  msgstr "Finnish"
1878
 
1879
  # Fijian
1880
- #: ../../admin/lang/dynamic_strings.php:119
1881
  msgid "l-fj"
1882
  msgstr "Fijian"
1883
 
1884
  # Faroese
1885
- #: ../../admin/lang/dynamic_strings.php:120
1886
  msgid "l-fo"
1887
  msgstr "Faroese"
1888
 
1889
  # French
1890
- #: ../../admin/lang/dynamic_strings.php:121
1891
  msgid "l-fr"
1892
  msgstr "French"
1893
 
1894
- # Western Frisian
1895
- #: ../../admin/lang/dynamic_strings.php:122
1896
- msgid "l-fy"
1897
- msgstr "Western Frisian"
1898
-
1899
  # Irish
1900
- #: ../../admin/lang/dynamic_strings.php:123
1901
  msgid "l-ga"
1902
  msgstr "Irish"
1903
 
1904
  # Scottish Gaelic; Gaelic
1905
- #: ../../admin/lang/dynamic_strings.php:124
1906
  msgid "l-gd"
1907
  msgstr "Scottish Gaelic; Gaelic"
1908
 
1909
  # Galician
1910
- #: ../../admin/lang/dynamic_strings.php:125
1911
  msgid "l-gl"
1912
  msgstr "Galician"
1913
 
1914
  # Guarani
1915
- #: ../../admin/lang/dynamic_strings.php:126
1916
  msgid "l-gn"
1917
  msgstr "Guarani"
1918
 
1919
  # Gujarati
1920
- #: ../../admin/lang/dynamic_strings.php:127
1921
  msgid "l-gu"
1922
  msgstr "Gujarati"
1923
 
1924
  # Manx
1925
- #: ../../admin/lang/dynamic_strings.php:128
1926
  msgid "l-gv"
1927
  msgstr "Manx"
1928
 
1929
  # Hausa
1930
- #: ../../admin/lang/dynamic_strings.php:129
1931
  msgid "l-ha"
1932
  msgstr "Hausa"
1933
 
1934
  # Hebrew
1935
- #: ../../admin/lang/dynamic_strings.php:130
1936
  msgid "l-he"
1937
  msgstr "Hebrew"
1938
 
1939
  # Hindi
1940
- #: ../../admin/lang/dynamic_strings.php:131
1941
  msgid "l-hi"
1942
  msgstr "Hindi"
1943
 
1944
- # Hiri Motu
1945
- #: ../../admin/lang/dynamic_strings.php:132
1946
- msgid "l-ho"
1947
- msgstr "Hiri Motu"
1948
-
1949
  # Croatian
1950
- #: ../../admin/lang/dynamic_strings.php:133
1951
  msgid "l-hr"
1952
  msgstr "Croatian"
1953
 
1954
  # Haitian; Haitian Creole
1955
- #: ../../admin/lang/dynamic_strings.php:134
1956
  msgid "l-ht"
1957
  msgstr "Haitian; Haitian Creole"
1958
 
1959
  # Hungarian
1960
- #: ../../admin/lang/dynamic_strings.php:135
1961
  msgid "l-hu"
1962
  msgstr "Hungarian"
1963
 
1964
  # Armenian
1965
- #: ../../admin/lang/dynamic_strings.php:136
1966
  msgid "l-hy"
1967
  msgstr "Armenian"
1968
 
1969
- # Herero
1970
- #: ../../admin/lang/dynamic_strings.php:137
1971
- msgid "l-hz"
1972
- msgstr "Herero"
1973
-
1974
  # Interlingua (International Auxiliary Language Association)
1975
- #: ../../admin/lang/dynamic_strings.php:138
1976
  msgid "l-ia"
1977
  msgstr "Interlingua (International Auxiliary Language Association)"
1978
 
1979
- # Indonesian
1980
- #: ../../admin/lang/dynamic_strings.php:139
1981
- msgid "l-id"
1982
- msgstr "Indonesian"
1983
-
1984
  # Interlingue; Occidental
1985
- #: ../../admin/lang/dynamic_strings.php:140
1986
  msgid "l-ie"
1987
  msgstr "Interlingue; Occidental"
1988
 
1989
- # Igbo
1990
- #: ../../admin/lang/dynamic_strings.php:141
1991
- msgid "l-ig"
1992
- msgstr "Igbo"
1993
-
1994
  # Sichuan Yi; Nuosu
1995
- #: ../../admin/lang/dynamic_strings.php:142
1996
  msgid "l-ii"
1997
  msgstr "Sichuan Yi; Nuosu"
1998
 
1999
  # Inupiaq
2000
- #: ../../admin/lang/dynamic_strings.php:143
2001
  msgid "l-ik"
2002
  msgstr "Inupiaq"
2003
 
2004
  # Indonesian
2005
- #: ../../admin/lang/dynamic_strings.php:144
2006
  msgid "l-in"
2007
  msgstr "Indonesian"
2008
 
2009
  # Ido
2010
- #: ../../admin/lang/dynamic_strings.php:145
2011
  msgid "l-io"
2012
  msgstr "Ido"
2013
 
2014
  # Icelandic
2015
- #: ../../admin/lang/dynamic_strings.php:146
2016
  msgid "l-is"
2017
  msgstr "Icelandic"
2018
 
2019
  # Italian
2020
- #: ../../admin/lang/dynamic_strings.php:147
2021
  msgid "l-it"
2022
  msgstr "Italian"
2023
 
2024
- # Inuktitut
2025
- #: ../../admin/lang/dynamic_strings.php:148
2026
- msgid "l-iu"
2027
- msgstr "Inuktitut"
2028
-
2029
  # Hebrew
2030
- #: ../../admin/lang/dynamic_strings.php:149
2031
  msgid "l-iw"
2032
  msgstr "Hebrew"
2033
 
2034
  # Japanese
2035
- #: ../../admin/lang/dynamic_strings.php:150
2036
  msgid "l-ja"
2037
  msgstr "Japanese"
2038
 
2039
  # Yiddish
2040
- #: ../../admin/lang/dynamic_strings.php:151
2041
  msgid "l-ji"
2042
  msgstr "Yiddish"
2043
 
2044
  # Javanese
2045
- #: ../../admin/lang/dynamic_strings.php:152
2046
  msgid "l-jv"
2047
  msgstr "Javanese"
2048
 
2049
  # Javanese
2050
- #: ../../admin/lang/dynamic_strings.php:153
2051
  msgid "l-jw"
2052
  msgstr "Javanese"
2053
 
2054
  # Georgian
2055
- #: ../../admin/lang/dynamic_strings.php:154
2056
  msgid "l-ka"
2057
  msgstr "Georgian"
2058
 
2059
  # Kongo
2060
- #: ../../admin/lang/dynamic_strings.php:155
2061
  msgid "l-kg"
2062
  msgstr "Kongo"
2063
 
2064
  # Kikuyu; Gikuyu
2065
- #: ../../admin/lang/dynamic_strings.php:156
2066
  msgid "l-ki"
2067
  msgstr "Kikuyu; Gikuyu"
2068
 
2069
  # Kuanyama; Kwanyama
2070
- #: ../../admin/lang/dynamic_strings.php:157
2071
  msgid "l-kj"
2072
  msgstr "Kuanyama; Kwanyama"
2073
 
2074
  # Kazakh
2075
- #: ../../admin/lang/dynamic_strings.php:158
2076
  msgid "l-kk"
2077
  msgstr "Kazakh"
2078
 
2079
  # Kalaallisut; Greenlandic
2080
- #: ../../admin/lang/dynamic_strings.php:159
2081
  msgid "l-kl"
2082
  msgstr "Kalaallisut; Greenlandic"
2083
 
2084
  # Central Khmer
2085
- #: ../../admin/lang/dynamic_strings.php:160
2086
  msgid "l-km"
2087
  msgstr "Central Khmer"
2088
 
2089
  # Kannada
2090
- #: ../../admin/lang/dynamic_strings.php:161
2091
  msgid "l-kn"
2092
  msgstr "Kannada"
2093
 
2094
  # Korean
2095
- #: ../../admin/lang/dynamic_strings.php:162
2096
  msgid "l-ko"
2097
  msgstr "Korean"
2098
 
2099
  # Kanuri
2100
- #: ../../admin/lang/dynamic_strings.php:163
2101
  msgid "l-kr"
2102
  msgstr "Kanuri"
2103
 
2104
  # Kashmiri
2105
- #: ../../admin/lang/dynamic_strings.php:164
2106
  msgid "l-ks"
2107
  msgstr "Kashmiri"
2108
 
2109
  # Kurdish
2110
- #: ../../admin/lang/dynamic_strings.php:165
2111
  msgid "l-ku"
2112
  msgstr "Kurdish"
2113
 
2114
  # Komi
2115
- #: ../../admin/lang/dynamic_strings.php:166
2116
  msgid "l-kv"
2117
  msgstr "Komi"
2118
 
2119
  # Cornish
2120
- #: ../../admin/lang/dynamic_strings.php:167
2121
  msgid "l-kw"
2122
  msgstr "Cornish"
2123
 
2124
  # Kirghiz; Kyrgyz
2125
- #: ../../admin/lang/dynamic_strings.php:168
2126
  msgid "l-ky"
2127
  msgstr "Kirghiz; Kyrgyz"
2128
 
2129
  # Latin
2130
- #: ../../admin/lang/dynamic_strings.php:169
2131
  msgid "l-la"
2132
  msgstr "Latin"
2133
 
2134
  # Luxembourgish; Letzeburgesch
2135
- #: ../../admin/lang/dynamic_strings.php:170
2136
  msgid "l-lb"
2137
  msgstr "Luxembourgish; Letzeburgesch"
2138
 
2139
  # Ganda
2140
- #: ../../admin/lang/dynamic_strings.php:171
2141
  msgid "l-lg"
2142
  msgstr "Ganda"
2143
 
2144
  # Limburgan; Limburge; Limburgish
2145
- #: ../../admin/lang/dynamic_strings.php:172
2146
  msgid "l-li"
2147
  msgstr "Limburgan; Limburge; Limburgish"
2148
 
2149
  # Lingala
2150
- #: ../../admin/lang/dynamic_strings.php:173
2151
  msgid "l-ln"
2152
  msgstr "Lingala"
2153
 
2154
  # Lao
2155
- #: ../../admin/lang/dynamic_strings.php:174
2156
  msgid "l-lo"
2157
  msgstr "Lao"
2158
 
2159
  # Lithuanian
2160
- #: ../../admin/lang/dynamic_strings.php:175
2161
  msgid "l-lt"
2162
  msgstr "Lithuanian"
2163
 
2164
  # Luba-Katanga
2165
- #: ../../admin/lang/dynamic_strings.php:176
2166
  msgid "l-lu"
2167
  msgstr "Luba-Katanga"
2168
 
2169
  # Latvian
2170
- #: ../../admin/lang/dynamic_strings.php:177
2171
  msgid "l-lv"
2172
  msgstr "Latvian"
2173
 
2174
  # Malagasy
2175
- #: ../../admin/lang/dynamic_strings.php:178
2176
  msgid "l-mg"
2177
  msgstr "Malagasy"
2178
 
2179
  # Marshallese
2180
- #: ../../admin/lang/dynamic_strings.php:179
2181
  msgid "l-mh"
2182
  msgstr "Marshallese"
2183
 
2184
  # Maori
2185
- #: ../../admin/lang/dynamic_strings.php:180
2186
  msgid "l-mi"
2187
  msgstr "Maori"
2188
 
2189
  # Macedonian
2190
- #: ../../admin/lang/dynamic_strings.php:181
2191
  msgid "l-mk"
2192
  msgstr "Macedonian"
2193
 
2194
  # Malayalam
2195
- #: ../../admin/lang/dynamic_strings.php:182
2196
  msgid "l-ml"
2197
  msgstr "Malayalam"
2198
 
2199
  # Mongolian
2200
- #: ../../admin/lang/dynamic_strings.php:183
2201
  msgid "l-mn"
2202
  msgstr "Mongolian"
2203
 
2204
  # Moldavian; Moldovan
2205
- #: ../../admin/lang/dynamic_strings.php:184
2206
  msgid "l-mo"
2207
  msgstr "Moldavian; Moldovan"
2208
 
2209
  # Marathi
2210
- #: ../../admin/lang/dynamic_strings.php:185
2211
  msgid "l-mr"
2212
  msgstr "Marathi"
2213
 
2214
  # Malay
2215
- #: ../../admin/lang/dynamic_strings.php:186
2216
  msgid "l-ms"
2217
  msgstr "Malay"
2218
 
2219
  # Maltese
2220
- #: ../../admin/lang/dynamic_strings.php:187
2221
  msgid "l-mt"
2222
  msgstr "Maltese"
2223
 
2224
  # Burmese
2225
- #: ../../admin/lang/dynamic_strings.php:188
2226
  msgid "l-my"
2227
  msgstr "Burmese"
2228
 
2229
  # Nauru
2230
- #: ../../admin/lang/dynamic_strings.php:189
2231
  msgid "l-na"
2232
  msgstr "Nauru"
2233
 
2234
  # Norwegian Bokmål
2235
- #: ../../admin/lang/dynamic_strings.php:190
2236
  msgid "l-nb"
2237
  msgstr "Norwegian Bokmål"
2238
 
2239
  # North Ndebele
2240
- #: ../../admin/lang/dynamic_strings.php:191
2241
  msgid "l-nd"
2242
  msgstr "North Ndebele"
2243
 
2244
  # Nepali
2245
- #: ../../admin/lang/dynamic_strings.php:192
2246
  msgid "l-ne"
2247
  msgstr "Nepali"
2248
 
2249
  # Ndonga
2250
- #: ../../admin/lang/dynamic_strings.php:193
2251
  msgid "l-ng"
2252
  msgstr "Ndonga"
2253
 
2254
  # Dutch; Flemish
2255
- #: ../../admin/lang/dynamic_strings.php:194
2256
  msgid "l-nl"
2257
  msgstr "Dutch; Flemish"
2258
 
2259
  # Norwegian Nynorsk
2260
- #: ../../admin/lang/dynamic_strings.php:195
2261
  msgid "l-nn"
2262
  msgstr "Norwegian Nynorsk"
2263
 
2264
  # Norwegian
2265
- #: ../../admin/lang/dynamic_strings.php:196
2266
  msgid "l-no"
2267
  msgstr "Norwegian"
2268
 
2269
- # South Ndebele
2270
- #: ../../admin/lang/dynamic_strings.php:197
2271
- msgid "l-nr"
2272
- msgstr "South Ndebele"
2273
-
2274
  # Navajo; Navaho
2275
- #: ../../admin/lang/dynamic_strings.php:198
2276
  msgid "l-nv"
2277
  msgstr "Navajo; Navaho"
2278
 
2279
  # Nyanja; Chewa; Chichewa
2280
- #: ../../admin/lang/dynamic_strings.php:199
2281
  msgid "l-ny"
2282
  msgstr "Nyanja; Chewa; Chichewa"
2283
 
2284
  # Occitan (post 1500)
2285
- #: ../../admin/lang/dynamic_strings.php:200
2286
  msgid "l-oc"
2287
  msgstr "Occitan (post 1500)"
2288
 
2289
  # Ojibwa
2290
- #: ../../admin/lang/dynamic_strings.php:201
2291
  msgid "l-oj"
2292
  msgstr "Ojibwa"
2293
 
2294
  # Oromo
2295
- #: ../../admin/lang/dynamic_strings.php:202
2296
  msgid "l-om"
2297
  msgstr "Oromo"
2298
 
2299
  # Oriya
2300
- #: ../../admin/lang/dynamic_strings.php:203
2301
  msgid "l-or"
2302
  msgstr "Oriya"
2303
 
2304
  # Ossetian; Ossetic
2305
- #: ../../admin/lang/dynamic_strings.php:204
2306
  msgid "l-os"
2307
  msgstr "Ossetian; Ossetic"
2308
 
2309
  # Panjabi; Punjabi
2310
- #: ../../admin/lang/dynamic_strings.php:205
2311
  msgid "l-pa"
2312
  msgstr "Panjabi; Punjabi"
2313
 
2314
  # Pali
2315
- #: ../../admin/lang/dynamic_strings.php:206
2316
  msgid "l-pi"
2317
  msgstr "Pali"
2318
 
2319
  # Polish
2320
- #: ../../admin/lang/dynamic_strings.php:207
2321
  msgid "l-pl"
2322
  msgstr "Polish"
2323
 
2324
  # Polish
2325
- #: ../../admin/lang/dynamic_strings.php:208
2326
  #, fuzzy
2327
  msgid "l-pl-pl"
2328
  msgstr "Polish"
2329
 
2330
  # Pushto; Pashto
2331
- #: ../../admin/lang/dynamic_strings.php:209
2332
  msgid "l-ps"
2333
  msgstr "Pushto; Pashto"
2334
 
2335
  # Portuguese
2336
- #: ../../admin/lang/dynamic_strings.php:210
2337
  msgid "l-pt"
2338
  msgstr "Portuguese"
2339
 
2340
  # Portuguese
2341
- #: ../../admin/lang/dynamic_strings.php:211
2342
  #, fuzzy
2343
  msgid "l-pt-pt"
2344
  msgstr "Portuguese"
2345
 
2346
  # Quechua
2347
- #: ../../admin/lang/dynamic_strings.php:212
2348
  msgid "l-qu"
2349
  msgstr "Quechua"
2350
 
2351
  # Romansh
2352
- #: ../../admin/lang/dynamic_strings.php:213
2353
  msgid "l-rm"
2354
  msgstr "Romansh"
2355
 
2356
  # Rundi
2357
- #: ../../admin/lang/dynamic_strings.php:214
2358
  msgid "l-rn"
2359
  msgstr "Rundi"
2360
 
2361
  # Romanian; Moldavian; Moldovan
2362
- #: ../../admin/lang/dynamic_strings.php:215
2363
  msgid "l-ro"
2364
  msgstr "Romanian; Moldavian; Moldovan"
2365
 
2366
  # Russian
2367
- #: ../../admin/lang/dynamic_strings.php:216
2368
  msgid "l-ru"
2369
  msgstr "Russian"
2370
 
2371
  # Kinyarwanda
2372
- #: ../../admin/lang/dynamic_strings.php:217
2373
  msgid "l-rw"
2374
  msgstr "Kinyarwanda"
2375
 
2376
- # Sanskrit
2377
- #: ../../admin/lang/dynamic_strings.php:218
2378
- msgid "l-sa"
2379
- msgstr "Sanskrit"
2380
-
2381
  # Sardinian
2382
- #: ../../admin/lang/dynamic_strings.php:219
2383
  msgid "l-sc"
2384
  msgstr "Sardinian"
2385
 
2386
  # Sindhi
2387
- #: ../../admin/lang/dynamic_strings.php:220
2388
  msgid "l-sd"
2389
  msgstr "Sindhi"
2390
 
2391
  # Northern Sami
2392
- #: ../../admin/lang/dynamic_strings.php:221
2393
  msgid "l-se"
2394
  msgstr "Northern Sami"
2395
 
2396
  # Sango
2397
- #: ../../admin/lang/dynamic_strings.php:222
2398
  msgid "l-sg"
2399
  msgstr "Sango"
2400
 
2401
  # Serbo-Croatian
2402
- #: ../../admin/lang/dynamic_strings.php:223
2403
  msgid "l-sh"
2404
  msgstr "Serbo-Croatian"
2405
 
2406
  # Sinhala; Sinhalese
2407
- #: ../../admin/lang/dynamic_strings.php:224
2408
  msgid "l-si"
2409
  msgstr "Sinhala; Sinhalese"
2410
 
2411
  # Slovak
2412
- #: ../../admin/lang/dynamic_strings.php:225
2413
  msgid "l-sk"
2414
  msgstr "Slovak"
2415
 
2416
  # Slovenian
2417
- #: ../../admin/lang/dynamic_strings.php:226
2418
  msgid "l-sl"
2419
  msgstr "Slovenian"
2420
 
2421
  # Samoan
2422
- #: ../../admin/lang/dynamic_strings.php:227
2423
  msgid "l-sm"
2424
  msgstr "Samoan"
2425
 
2426
  # Shona
2427
- #: ../../admin/lang/dynamic_strings.php:228
2428
  msgid "l-sn"
2429
  msgstr "Shona"
2430
 
2431
  # Somali
2432
- #: ../../admin/lang/dynamic_strings.php:229
2433
  msgid "l-so"
2434
  msgstr "Somali"
2435
 
2436
  # Albanian
2437
- #: ../../admin/lang/dynamic_strings.php:230
2438
  msgid "l-sq"
2439
  msgstr "Albanian"
2440
 
2441
  # Serbian
2442
- #: ../../admin/lang/dynamic_strings.php:231
2443
  msgid "l-sr"
2444
  msgstr "Serbian"
2445
 
2446
  # Swati
2447
- #: ../../admin/lang/dynamic_strings.php:232
2448
  msgid "l-ss"
2449
  msgstr "Swati"
2450
 
2451
  # Southern Sotho
2452
- #: ../../admin/lang/dynamic_strings.php:233
2453
  msgid "l-st"
2454
  msgstr "Southern Sotho"
2455
 
2456
  # Sundanese
2457
- #: ../../admin/lang/dynamic_strings.php:234
2458
  msgid "l-su"
2459
  msgstr "Sundanese"
2460
 
2461
  # Swedish
2462
- #: ../../admin/lang/dynamic_strings.php:235
2463
  msgid "l-sv"
2464
  msgstr "Swedish"
2465
 
2466
  # Swahili
2467
- #: ../../admin/lang/dynamic_strings.php:236
2468
  msgid "l-sw"
2469
  msgstr "Swahili"
2470
 
2471
  # Tamil
2472
- #: ../../admin/lang/dynamic_strings.php:237
2473
  msgid "l-ta"
2474
  msgstr "Tamil"
2475
 
2476
  # Telugu
2477
- #: ../../admin/lang/dynamic_strings.php:238
2478
  msgid "l-te"
2479
  msgstr "Telugu"
2480
 
2481
  # Tajik
2482
- #: ../../admin/lang/dynamic_strings.php:239
2483
  msgid "l-tg"
2484
  msgstr "Tajik"
2485
 
2486
  # Thai
2487
- #: ../../admin/lang/dynamic_strings.php:240
2488
  msgid "l-th"
2489
  msgstr "Thai"
2490
 
2491
  # Thai
2492
- #: ../../admin/lang/dynamic_strings.php:241
2493
  #, fuzzy
2494
  msgid "l-th-th"
2495
  msgstr "Thai"
2496
 
2497
  # Tigrinya
2498
- #: ../../admin/lang/dynamic_strings.php:242
2499
  msgid "l-ti"
2500
  msgstr "Tigrinya"
2501
 
2502
  # Turkmen
2503
- #: ../../admin/lang/dynamic_strings.php:243
2504
  msgid "l-tk"
2505
  msgstr "Turkmen"
2506
 
2507
  # Tagalog
2508
- #: ../../admin/lang/dynamic_strings.php:244
2509
  msgid "l-tl"
2510
  msgstr "Tagalog"
2511
 
2512
  # Tswana
2513
- #: ../../admin/lang/dynamic_strings.php:245
2514
  msgid "l-tn"
2515
  msgstr "Tswana"
2516
 
2517
  # Tonga (Tonga Islands)
2518
- #: ../../admin/lang/dynamic_strings.php:246
2519
  msgid "l-to"
2520
  msgstr "Tonga (Tonga Islands)"
2521
 
2522
  # Turkish
2523
- #: ../../admin/lang/dynamic_strings.php:247
2524
  msgid "l-tr"
2525
  msgstr "Turkish"
2526
 
2527
  # Tsonga
2528
- #: ../../admin/lang/dynamic_strings.php:248
2529
  msgid "l-ts"
2530
  msgstr "Tsonga"
2531
 
2532
  # Tatar
2533
- #: ../../admin/lang/dynamic_strings.php:249
2534
  msgid "l-tt"
2535
  msgstr "Tatar"
2536
 
2537
- # Twi
2538
- #: ../../admin/lang/dynamic_strings.php:250
2539
- msgid "l-tw"
2540
- msgstr "Twi"
2541
-
2542
  # Tahitian
2543
- #: ../../admin/lang/dynamic_strings.php:251
2544
  msgid "l-ty"
2545
  msgstr "Tahitian"
2546
 
2547
  # Uighur; Uyghur
2548
- #: ../../admin/lang/dynamic_strings.php:252
2549
  msgid "l-ug"
2550
  msgstr "Uighur; Uyghur"
2551
 
2552
  # Ukrainian
2553
- #: ../../admin/lang/dynamic_strings.php:253
2554
  msgid "l-uk"
2555
  msgstr "Ukrainian"
2556
 
2557
  # Urdu
2558
- #: ../../admin/lang/dynamic_strings.php:254
2559
  msgid "l-ur"
2560
  msgstr "Urdu"
2561
 
2562
  # Uzbek
2563
- #: ../../admin/lang/dynamic_strings.php:255
2564
  msgid "l-uz"
2565
  msgstr "Uzbek"
2566
 
2567
  # Venda
2568
- #: ../../admin/lang/dynamic_strings.php:256
2569
  msgid "l-ve"
2570
  msgstr "Venda"
2571
 
2572
  # Vietnamese
2573
- #: ../../admin/lang/dynamic_strings.php:257
2574
  msgid "l-vi"
2575
  msgstr "Vietnamese"
2576
 
2577
  # Vietnamese
2578
- #: ../../admin/lang/dynamic_strings.php:258
2579
  #, fuzzy
2580
  msgid "l-vi-vn"
2581
  msgstr "Vietnamese"
2582
 
2583
  # Volapük
2584
- #: ../../admin/lang/dynamic_strings.php:259
2585
  msgid "l-vo"
2586
  msgstr "Volapük"
2587
 
2588
- # Walloon
2589
- #: ../../admin/lang/dynamic_strings.php:260
2590
- msgid "l-wa"
2591
- msgstr "Walloon"
2592
-
2593
  # Wolof
2594
- #: ../../admin/lang/dynamic_strings.php:261
2595
  msgid "l-wo"
2596
  msgstr "Wolof"
2597
 
2598
  # Xhosa
2599
- #: ../../admin/lang/dynamic_strings.php:262
2600
  msgid "l-xh"
2601
  msgstr "Xhosa"
2602
 
2603
  # Yiddish
2604
- #: ../../admin/lang/dynamic_strings.php:263
2605
  msgid "l-yi"
2606
  msgstr "Yiddish"
2607
 
2608
  # Yoruba
2609
- #: ../../admin/lang/dynamic_strings.php:264
2610
  msgid "l-yo"
2611
  msgstr "Yoruba"
2612
 
2613
  # Zhuang; Chuang
2614
- #: ../../admin/lang/dynamic_strings.php:265
2615
  msgid "l-za"
2616
  msgstr "Zhuang; Chuang"
2617
 
2618
  # Chinese
2619
- #: ../../admin/lang/dynamic_strings.php:266
2620
  msgid "l-zh"
2621
  msgstr "Chinese"
2622
 
2623
  # Zulu
2624
- #: ../../admin/lang/dynamic_strings.php:267
2625
  msgid "l-zu"
2626
  msgstr "Zulu"
2627
 
2628
  # Arabic (Saudi Arabia)
2629
- #: ../../admin/lang/dynamic_strings.php:268
2630
  msgid "l-ar-sa"
2631
  msgstr "Arabic (Saudi Arabia)"
2632
 
2633
  # Arabic (Iraq)
2634
- #: ../../admin/lang/dynamic_strings.php:269
2635
  msgid "l-ar-iq"
2636
  msgstr "Arabic (Iraq)"
2637
 
2638
  # Arabic (Egypt)
2639
- #: ../../admin/lang/dynamic_strings.php:270
2640
  msgid "l-ar-eg"
2641
  msgstr "Arabic (Egypt)"
2642
 
2643
  # Arabic (Libya)
2644
- #: ../../admin/lang/dynamic_strings.php:271
2645
  msgid "l-ar-ly"
2646
  msgstr "Arabic (Libya)"
2647
 
2648
  # Arabic (Algeria)
2649
- #: ../../admin/lang/dynamic_strings.php:272
2650
  msgid "l-ar-dz"
2651
  msgstr "Arabic (Algeria)"
2652
 
2653
  # Arabic (Morocco)
2654
- #: ../../admin/lang/dynamic_strings.php:273
2655
  msgid "l-ar-ma"
2656
  msgstr "Arabic (Morocco)"
2657
 
2658
  # Arabic (Tunisia)
2659
- #: ../../admin/lang/dynamic_strings.php:274
2660
  msgid "l-ar-tn"
2661
  msgstr "Arabic (Tunisia)"
2662
 
2663
  # Arabic (Oman)
2664
- #: ../../admin/lang/dynamic_strings.php:275
2665
  msgid "l-ar-om"
2666
  msgstr "Arabic (Oman)"
2667
 
2668
  # Arabic (Yemen)
2669
- #: ../../admin/lang/dynamic_strings.php:276
2670
  msgid "l-ar-ye"
2671
  msgstr "Arabic (Yemen)"
2672
 
2673
  # Arabic (Syria)
2674
- #: ../../admin/lang/dynamic_strings.php:277
2675
  msgid "l-ar-sy"
2676
  msgstr "Arabic (Syria)"
2677
 
2678
  # Arabic (Jordan)
2679
- #: ../../admin/lang/dynamic_strings.php:278
2680
  msgid "l-ar-jo"
2681
  msgstr "Arabic (Jordan)"
2682
 
2683
  # Arabic (Lebanon)
2684
- #: ../../admin/lang/dynamic_strings.php:279
2685
  msgid "l-ar-lb"
2686
  msgstr "Arabic (Lebanon)"
2687
 
2688
  # Arabic (Kuwait)
2689
- #: ../../admin/lang/dynamic_strings.php:280
2690
  msgid "l-ar-kw"
2691
  msgstr "Arabic (Kuwait)"
2692
 
2693
  # Arabic (United Arab Emirates)
2694
- #: ../../admin/lang/dynamic_strings.php:281
2695
  msgid "l-ar-ae"
2696
  msgstr "Arabic (United Arab Emirates)"
2697
 
2698
  # Arabic (Bahrain)
2699
- #: ../../admin/lang/dynamic_strings.php:282
2700
  msgid "l-ar-bh"
2701
  msgstr "Arabic (Bahrain)"
2702
 
2703
  # Arabic (Qatar)
2704
- #: ../../admin/lang/dynamic_strings.php:283
2705
  msgid "l-ar-qa"
2706
  msgstr "Arabic (Qatar)"
2707
 
 
 
 
 
 
 
2708
  # Chinese (China)
2709
- #: ../../admin/lang/dynamic_strings.php:284
2710
  msgid "l-zh-cn"
2711
  msgstr "Chinese (China)"
2712
 
2713
  # Chinese (Taiwan)
2714
- #: ../../admin/lang/dynamic_strings.php:285
2715
  msgid "l-zh-tw"
2716
  msgstr "Chinese (Taiwan)"
2717
 
2718
  # Chinese (Hong Kong)
2719
- #: ../../admin/lang/dynamic_strings.php:286
2720
  msgid "l-zh-hk"
2721
  msgstr "Chinese (Hong Kong)"
2722
 
2723
  # Chinese (Singapore)
2724
- #: ../../admin/lang/dynamic_strings.php:287
2725
  msgid "l-zh-sg"
2726
  msgstr "Chinese (Singapore)"
2727
 
2728
  # Dutch (Netherlands)
2729
- #: ../../admin/lang/dynamic_strings.php:288
2730
  msgid "l-nl-nl"
2731
  msgstr "Dutch (Netherlands)"
2732
 
2733
  # Dutch (Belgium)
2734
- #: ../../admin/lang/dynamic_strings.php:289
2735
  msgid "l-nl-be"
2736
  msgstr "Dutch (Belgium)"
2737
 
2738
  # English (United Kingdom)
2739
- #: ../../admin/lang/dynamic_strings.php:290
2740
  msgid "l-en-gb"
2741
  msgstr "English (United Kingdom)"
2742
 
2743
  # English (United States)
2744
- #: ../../admin/lang/dynamic_strings.php:291
2745
  msgid "l-en-us"
2746
  msgstr "English (United States)"
2747
 
2748
  # English (Australia)
2749
- #: ../../admin/lang/dynamic_strings.php:292
2750
  msgid "l-en-au"
2751
  msgstr "English (Australia)"
2752
 
2753
  # English (Canada)
2754
- #: ../../admin/lang/dynamic_strings.php:293
2755
  msgid "l-en-ca"
2756
  msgstr "English (Canada)"
2757
 
2758
  # English (New Zealand)
2759
- #: ../../admin/lang/dynamic_strings.php:294
2760
  msgid "l-en-nz"
2761
  msgstr "English (New Zealand)"
2762
 
2763
  # English (Ireland)
2764
- #: ../../admin/lang/dynamic_strings.php:295
2765
  msgid "l-en-ie"
2766
  msgstr "English (Ireland)"
2767
 
2768
  # English (South Africa)
2769
- #: ../../admin/lang/dynamic_strings.php:296
2770
  msgid "l-en-za"
2771
  msgstr "English (South Africa)"
2772
 
2773
  # English (Jamaica)
2774
- #: ../../admin/lang/dynamic_strings.php:297
2775
  msgid "l-en-jm"
2776
  msgstr "English (Jamaica)"
2777
 
2778
  # English (Belize)
2779
- #: ../../admin/lang/dynamic_strings.php:298
2780
  msgid "l-en-bz"
2781
  msgstr "English (Belize)"
2782
 
2783
  # English (Trinidad)
2784
- #: ../../admin/lang/dynamic_strings.php:299
2785
  msgid "l-en-tt"
2786
  msgstr "English (Trinidad)"
2787
 
2788
  # French (Belgium)
2789
- #: ../../admin/lang/dynamic_strings.php:300
2790
  msgid "l-fr-be"
2791
  msgstr "French (Belgium)"
2792
 
2793
  # French (France)
2794
- #: ../../admin/lang/dynamic_strings.php:301
2795
  msgid "l-fr-fr"
2796
  msgstr "French (France)"
2797
 
2798
  # French (Switzerland)
2799
- #: ../../admin/lang/dynamic_strings.php:302
2800
  msgid "l-fr-ch"
2801
  msgstr "French (Switzerland)"
2802
 
2803
  # French (Canada)
2804
- #: ../../admin/lang/dynamic_strings.php:303
2805
  msgid "l-fr-ca"
2806
  msgstr "French (Canada)"
2807
 
2808
  # French (Luxembourg)
2809
- #: ../../admin/lang/dynamic_strings.php:304
2810
  msgid "l-fr-lu"
2811
  msgstr "French (Luxembourg)"
2812
 
2813
  # German (Austria)
2814
- #: ../../admin/lang/dynamic_strings.php:305
2815
  msgid "l-de-at"
2816
  msgstr "German (Austria)"
2817
 
2818
  # German (Germany)
2819
- #: ../../admin/lang/dynamic_strings.php:306
2820
  msgid "l-de-de"
2821
  msgstr "German (Germany)"
2822
 
2823
  # German (Switzerland)
2824
- #: ../../admin/lang/dynamic_strings.php:307
2825
  msgid "l-de-ch"
2826
  msgstr "German (Switzerland)"
2827
 
2828
  # German (Luxembourg)
2829
- #: ../../admin/lang/dynamic_strings.php:308
2830
  msgid "l-de-lu"
2831
  msgstr "German (Luxembourg)"
2832
 
2833
  # German (Liechtenstein)
2834
- #: ../../admin/lang/dynamic_strings.php:309
2835
  msgid "l-de-li"
2836
  msgstr "German (Liechtenstein)"
2837
 
2838
  # Greek (Greece)
2839
- #: ../../admin/lang/dynamic_strings.php:310
2840
  msgid "l-el-gr"
2841
  msgstr "Greek (Greece)"
2842
 
2843
  # Spanish (Dominican Republic)
2844
- #: ../../admin/lang/dynamic_strings.php:311
2845
  msgid "l-es-do"
2846
  msgstr "Spanish (Dominican Republic)"
2847
 
2848
  # Spanish (Argentina)
2849
- #: ../../admin/lang/dynamic_strings.php:312
2850
  msgid "l-es-ar"
2851
  msgstr "Spanish (Argentina)"
2852
 
2853
  # Spanish (Colombia)
2854
- #: ../../admin/lang/dynamic_strings.php:313
2855
  msgid "l-es-co"
2856
  msgstr "Spanish (Colombia)"
2857
 
2858
  # Spanish (Mexico)
2859
- #: ../../admin/lang/dynamic_strings.php:314
2860
  msgid "l-es-mx"
2861
  msgstr "Spanish (Mexico)"
2862
 
2863
  # Spanish (Spain)
2864
- #: ../../admin/lang/dynamic_strings.php:315
2865
  msgid "l-es-es"
2866
  msgstr "Spanish (Spain)"
2867
 
2868
  # Spanish (Guatemala)
2869
- #: ../../admin/lang/dynamic_strings.php:316
2870
  msgid "l-es-gt"
2871
  msgstr "Spanish (Guatemala)"
2872
 
2873
  # Spanish (Costa Rica)
2874
- #: ../../admin/lang/dynamic_strings.php:317
2875
  msgid "l-es-cr"
2876
  msgstr "Spanish (Costa Rica)"
2877
 
2878
  # Spanish (Panama)
2879
- #: ../../admin/lang/dynamic_strings.php:318
2880
  msgid "l-es-pa"
2881
  msgstr "Spanish (Panama)"
2882
 
2883
  # Spanish (Venezuela)
2884
- #: ../../admin/lang/dynamic_strings.php:319
2885
  msgid "l-es-ve"
2886
  msgstr "Spanish (Venezuela)"
2887
 
2888
  # Spanish (Peru)
2889
- #: ../../admin/lang/dynamic_strings.php:320
2890
  msgid "l-es-pe"
2891
  msgstr "Spanish (Peru)"
2892
 
2893
  # Spanish (Ecuador)
2894
- #: ../../admin/lang/dynamic_strings.php:321
2895
  msgid "l-es-ec"
2896
  msgstr "Spanish (Ecuador)"
2897
 
2898
  # Spanish (Chile)
2899
- #: ../../admin/lang/dynamic_strings.php:322
2900
  msgid "l-es-cl"
2901
  msgstr "Spanish (Chile)"
2902
 
2903
  # Spanish (Uruguay)
2904
- #: ../../admin/lang/dynamic_strings.php:323
2905
  msgid "l-es-uy"
2906
  msgstr "Spanish (Uruguay)"
2907
 
2908
  # Spanish (Paraguay)
2909
- #: ../../admin/lang/dynamic_strings.php:324
2910
  msgid "l-es-py"
2911
  msgstr "Spanish (Paraguay)"
2912
 
2913
  # Spanish (Bolivia)
2914
- #: ../../admin/lang/dynamic_strings.php:325
2915
  msgid "l-es-bo"
2916
  msgstr "Spanish (Bolivia)"
2917
 
2918
  # Spanish (El Salvador)
2919
- #: ../../admin/lang/dynamic_strings.php:326
2920
  msgid "l-es-sv"
2921
  msgstr "Spanish (El Salvador)"
2922
 
2923
  # Spanish (Honduras)
2924
- #: ../../admin/lang/dynamic_strings.php:327
2925
  msgid "l-es-hn"
2926
  msgstr "Spanish (Honduras)"
2927
 
2928
  # Spanish (Nicaragua)
2929
- #: ../../admin/lang/dynamic_strings.php:328
2930
  msgid "l-es-ni"
2931
  msgstr "Spanish (Nicaragua)"
2932
 
2933
  # Spanish (Puerto Rico)
2934
- #: ../../admin/lang/dynamic_strings.php:329
2935
  msgid "l-es-pr"
2936
  msgstr "Spanish (Puerto Rico)"
2937
 
2938
  # Hebrew (Israel)
2939
- #: ../../admin/lang/dynamic_strings.php:330
2940
  msgid "l-he-il"
2941
  msgstr "Hebrew (Israel)"
2942
 
2943
  # Hungarian (Hungary)
2944
- #: ../../admin/lang/dynamic_strings.php:331
2945
  msgid "l-hu-hu"
2946
  msgstr "Hungarian (Hungary)"
2947
 
2948
  # Internet Explorer Easter Egg
2949
- #: ../../admin/lang/dynamic_strings.php:332
2950
  msgid "l-ie-ee"
2951
  msgstr "Internet Explorer Easter Egg"
2952
 
2953
  # Italian (Italia)
2954
- #: ../../admin/lang/dynamic_strings.php:333
2955
  msgid "l-it-it"
2956
  msgstr "Italian (Italia)"
2957
 
2958
  # Italian (Switzerland)
2959
- #: ../../admin/lang/dynamic_strings.php:334
2960
  msgid "l-it-ch"
2961
  msgstr "Italian (Switzerland)"
2962
 
2963
  # Korean (Republic of Korea)
2964
- #: ../../admin/lang/dynamic_strings.php:335
2965
  msgid "l-ko-kr"
2966
  msgstr "Korean (Republic of Korea)"
2967
 
2968
  # Korean (Democratic People's Republic of Korea)
2969
- #: ../../admin/lang/dynamic_strings.php:336
2970
  msgid "l-ko-kp"
2971
  msgstr "Korean (Democratic People's Republic of Korea)"
2972
 
 
 
 
 
 
 
2973
  # Portuguese (Brazil)
2974
- #: ../../admin/lang/dynamic_strings.php:337
2975
  msgid "l-pt-br"
2976
  msgstr "Portuguese (Brazil)"
2977
 
2978
  # Romanian (Moldava)
2979
- #: ../../admin/lang/dynamic_strings.php:338
2980
  msgid "l-ro-md"
2981
  msgstr "Romanian (Moldava)"
2982
 
 
 
 
 
 
 
2983
  # Russian (Russia)
2984
- #: ../../admin/lang/dynamic_strings.php:339
2985
  msgid "l-ru-ru"
2986
  msgstr "Russian (Russia)"
2987
 
2988
  # Russian (Moldava)
2989
- #: ../../admin/lang/dynamic_strings.php:340
2990
  msgid "l-ru-md"
2991
  msgstr "Russian (Moldava)"
2992
 
2993
  # Swedish (Sweden)
2994
- #: ../../admin/lang/dynamic_strings.php:341
2995
  msgid "l-sv-se"
2996
  msgstr "Swedish (Sweden)"
2997
 
2998
  # Swedish (Finland)
2999
- #: ../../admin/lang/dynamic_strings.php:342
3000
  msgid "l-sv-fi"
3001
  msgstr "Swedish (Finland)"
3002
 
3003
  # Japanese
3004
- #: ../../admin/lang/dynamic_strings.php:343
3005
  #, fuzzy
3006
  msgid "l-ja-jp"
3007
  msgstr "Japanese"
3008
 
3009
  # Turkish
3010
- #: ../../admin/lang/dynamic_strings.php:344
3011
  #, fuzzy
3012
  msgid "l-tr-tr"
3013
  msgstr "Turkish"
3014
 
3015
- #: ../../admin/lang/dynamic_strings.php:345
3016
- #: ../../admin/view/wp-slimstat-reports.php:430
 
 
 
 
 
 
 
 
 
 
 
 
3017
  msgid "l-"
3018
  msgstr "l-"
3019
 
3020
  # Unknown
3021
- #: ../../admin/lang/dynamic_strings.php:346
3022
  msgid "l-empty"
3023
  msgstr "Unknown"
3024
 
3025
  # Unknown
3026
- #: ../../admin/lang/dynamic_strings.php:347
3027
  msgid "l-xx"
3028
  msgstr "Unknown"
3029
 
3030
- #: ../../admin/lang/dynamic_strings.php:348
3031
  msgid "c-xy"
3032
  msgstr "Local IP"
3033
 
@@ -3055,7 +2998,7 @@ msgid "-- Advanced filters --"
3055
  msgstr ""
3056
 
3057
  #: ../../admin/view/index.php:46 ../../admin/view/wp-slimstat-reports.php:50
3058
- #: ../../admin/view/wp-slimstat-reports.php:98
3059
  #, fuzzy
3060
  msgid "Browser Capabilities"
3061
  msgstr "Navegador"
@@ -4220,24 +4163,29 @@ msgstr "Isle of Man"
4220
  msgid "c-mv"
4221
  msgstr "Maldives"
4222
 
 
 
 
 
 
4223
  # Unknown
4224
- #: ../../admin/view/index.php:133 ../../admin/view/right-now.php:94
4225
- #: ../../admin/view/wp-slimstat-reports.php:418
4226
- #: ../../admin/view/wp-slimstat-reports.php:557
4227
  msgid "c-"
4228
  msgstr "Unknown"
4229
 
4230
- #: ../../admin/view/index.php:141 ../../admin/view/right-now.php:54
4231
- #: ../../admin/view/wp-slimstat-reports.php:380
4232
- #: ../../admin/view/wp-slimstat-reports.php:520
4233
  msgid "No data to display"
4234
  msgstr "No hay datos que mostrar"
4235
 
4236
- #: ../../admin/view/index.php:191
4237
  msgid "Your report here"
4238
  msgstr ""
4239
 
4240
- #: ../../admin/view/index.php:193
4241
  #, fuzzy
4242
  msgid ""
4243
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
@@ -4257,67 +4205,75 @@ msgstr ""
4257
  "información, visite mi <a href=\"http://lab.duechiacchiere.it/\" target="
4258
  "\"_blank\"> Foro de Soporte </ a>."
4259
 
4260
- #: ../../admin/view/index.php:207 ../../admin/view/wp-slimstat-reports.php:617
4261
- #: ../../admin/view/wp-slimstat-reports.php:719
4262
- #: ../../admin/view/wp-slimstat-reports.php:758
4263
  msgid "Pageviews"
4264
  msgstr "Paginas visitadas"
4265
 
4266
- #: ../../admin/view/index.php:210
4267
  msgid ""
4268
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
4269
  "WP SlimStat leverages this information to identify returning visitors. "
4270
  "Please note that visitors also include registered users."
4271
  msgstr ""
4272
 
4273
- #: ../../admin/view/index.php:213 ../../admin/view/index.php:279
4274
  msgid "Take a sneak peek at what human visitors are doing on your website"
4275
  msgstr ""
4276
 
4277
- #: ../../admin/view/index.php:213 ../../admin/view/index.php:279
4278
- #: ../../admin/view/index.php:303 ../../admin/view/index.php:306
4279
- #: ../../admin/view/index.php:312 ../../admin/view/right-now.php:166
4280
  #, fuzzy
4281
  msgid "Color codes"
4282
  msgstr "Código de Pais"
4283
 
4284
- #: ../../admin/view/index.php:213 ../../admin/view/index.php:279
4285
  msgid "From a search result page"
4286
  msgstr ""
4287
 
4288
- #: ../../admin/view/index.php:213 ../../admin/view/index.php:279
4289
- #: ../../admin/view/index.php:303 ../../admin/view/index.php:306
4290
- #: ../../admin/view/index.php:312 ../../admin/view/right-now.php:169
4291
  #, fuzzy
4292
  msgid "Known Users"
4293
  msgstr "Navegadores recientes"
4294
 
4295
- #: ../../admin/view/index.php:213 ../../admin/view/index.php:279
4296
- #: ../../admin/view/index.php:303 ../../admin/view/index.php:306
4297
- #: ../../admin/view/index.php:312 ../../admin/view/right-now.php:170
4298
  msgid "Other Humans"
4299
  msgstr ""
4300
 
4301
- #: ../../admin/view/index.php:219
 
 
 
 
 
 
 
4302
  msgid ""
4303
- "Unique sessions initiated by your visitors. If a user is inactive on your "
4304
- "site for 30 minutes or more, any future activity will be attributed to a new "
4305
- "session. Users that leave your site and return within 30 minutes will be "
4306
- "counted as part of the original session."
 
4307
  msgstr ""
4308
 
4309
- #: ../../admin/view/index.php:222
4310
  #, fuzzy
4311
  msgid "Human Visits"
4312
  msgstr "Visitas humanas"
4313
 
4314
- #: ../../admin/view/index.php:225 ../../admin/view/index.php:258
4315
  msgid ""
4316
  "This report shows you what languages your users have installed on their "
4317
  "computers."
4318
  msgstr ""
4319
 
4320
- #: ../../admin/view/index.php:228 ../../admin/view/index.php:255
4321
  msgid ""
4322
  "A user agent is a generic term for any program used for accessing a website. "
4323
  "This includes browsers (such as Chrome), robots and spiders, and any other "
@@ -4326,7 +4282,7 @@ msgid ""
4326
  "Settings > SlimStat > Filters."
4327
  msgstr ""
4328
 
4329
- #: ../../admin/view/index.php:231
4330
  msgid ""
4331
  "Internet Service Provider: a company which provides other companies or "
4332
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -4334,14 +4290,14 @@ msgid ""
4334
  "by setting the corresponding filter under Settings > SlimStat > Filters."
4335
  msgstr ""
4336
 
4337
- #: ../../admin/view/index.php:234 ../../admin/view/index.php:252
4338
  msgid ""
4339
  "Which operating systems do your visitors use? Optimizing your site for the "
4340
  "appropriate technical capabilities helps make your site more engaging and "
4341
  "usable and can result in higher conversion rates and more sales."
4342
  msgstr ""
4343
 
4344
- #: ../../admin/view/index.php:237
4345
  msgid ""
4346
  "This report shows the most common screen resolutions used by your visitors. "
4347
  "Knowing the most popular screen resolution of your visitors will help you "
@@ -4349,25 +4305,25 @@ msgid ""
4349
  "independence."
4350
  msgstr ""
4351
 
4352
- #: ../../admin/view/index.php:240
4353
  msgid ""
4354
  "Which versions of Flash do your visitors have installed? Is Java supported "
4355
  "on your visitors' platforms?"
4356
  msgstr ""
4357
 
4358
- #: ../../admin/view/index.php:243 ../../admin/view/index.php:276
4359
  msgid ""
4360
  "You can configure WP SlimStat to ignore a specific Country by setting the "
4361
  "corresponding filter under Settings > SlimStat > Filters."
4362
  msgstr ""
4363
 
4364
- #: ../../admin/view/index.php:246
4365
  msgid ""
4366
  "You can ignore any specific Country by setting the corresponding filter "
4367
  "under Settings > SlimStat > Filters."
4368
  msgstr ""
4369
 
4370
- #: ../../admin/view/index.php:249
4371
  msgid ""
4372
  "This report shows the most recent screen resolutions used by your visitors. "
4373
  "Knowing the most popular screen resolution of your visitors will help you "
@@ -4375,42 +4331,42 @@ msgid ""
4375
  "independence."
4376
  msgstr ""
4377
 
4378
- #: ../../admin/view/index.php:261
4379
  msgid ""
4380
  "This report shows you what user agent families (no version considered) are "
4381
  "popular among your visitors."
4382
  msgstr ""
4383
 
4384
- #: ../../admin/view/index.php:264
4385
  msgid ""
4386
  "This report shows you what operating system families (no version considered) "
4387
  "are popular among your visitors."
4388
  msgstr ""
4389
 
4390
- #: ../../admin/view/index.php:267
4391
  msgid "List of registered users who recently visited your website."
4392
  msgstr ""
4393
 
4394
- #: ../../admin/view/index.php:270
4395
  msgid "This report lists your most active registered users."
4396
  msgstr ""
4397
 
4398
- #: ../../admin/view/index.php:285
4399
  #, fuzzy
4400
  msgid "Average Pageviews per Visit"
4401
  msgstr "Promedio de páginas vistas por horas"
4402
 
4403
- #: ../../admin/view/index.php:288
4404
  msgid "This report lists the most recent posts viewed on your site, by title."
4405
  msgstr ""
4406
 
4407
- #: ../../admin/view/index.php:291
4408
  msgid ""
4409
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
4410
  "left your site from the entrance (landing) page."
4411
  msgstr ""
4412
 
4413
- #: ../../admin/view/index.php:294
4414
  msgid ""
4415
  "The 404 or Not Found error message is a HTTP standard response code "
4416
  "indicating that the client was able to communicate with the server, but the "
@@ -4418,36 +4374,36 @@ msgid ""
4418
  "to detect attack attempts, by looking at patterns in 404 URLs."
4419
  msgstr ""
4420
 
4421
- #: ../../admin/view/index.php:297
4422
  msgid "Searches performed using Wordpress' built-in search functionality."
4423
  msgstr ""
4424
 
4425
- #: ../../admin/view/index.php:300
4426
  msgid ""
4427
  "Categories provide a helpful way to group related posts together, and to "
4428
  "quickly tell readers what a post is about. Categories also make it easier "
4429
  "for people to find your content."
4430
  msgstr ""
4431
 
4432
- #: ../../admin/view/index.php:303 ../../admin/view/index.php:312
4433
  msgid ""
4434
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
4435
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
4436
  "link has an ID attribute associated to it."
4437
  msgstr ""
4438
 
4439
- #: ../../admin/view/index.php:306
4440
  msgid ""
4441
  "This report lists any <em>event</em> occurred on your website. Please refer "
4442
  "to the FAQ for more information on how to leverage this functionality."
4443
  msgstr ""
4444
 
4445
- #: ../../admin/view/index.php:309
4446
  msgid "This report lists the most popular posts on your site, by title."
4447
  msgstr ""
4448
 
4449
  #: ../../admin/view/right-now.php:38
4450
- #: ../../admin/view/wp-slimstat-reports.php:309
4451
  msgid "Refresh"
4452
  msgstr ""
4453
 
@@ -4465,7 +4421,7 @@ msgid "refreshing in"
4465
  msgstr ""
4466
 
4467
  #: ../../admin/view/right-now.php:73 ../../admin/view/right-now.php:82
4468
- #: ../../admin/view/wp-slimstat-reports.php:479
4469
  #, php-format
4470
  msgid "Filter results where IP equals %s"
4471
  msgstr ""
@@ -4481,7 +4437,7 @@ msgid "Filter results where ther user's real IP equals %s"
4481
  msgstr ""
4482
 
4483
  #: ../../admin/view/right-now.php:94
4484
- #: ../../admin/view/wp-slimstat-reports.php:557
4485
  msgid "Country"
4486
  msgstr "País"
4487
 
@@ -4508,17 +4464,17 @@ msgid "Filter results where screen resolution equals %s"
4508
  msgstr ""
4509
 
4510
  #: ../../admin/view/right-now.php:144
4511
- #: ../../admin/view/wp-slimstat-reports.php:472
4512
- #: ../../admin/view/wp-slimstat-reports.php:476
4513
- #: ../../admin/view/wp-slimstat-reports.php:539
4514
- #: ../../admin/view/wp-slimstat-reports.php:567
4515
- #: ../../admin/view/wp-slimstat-reports.php:583
4516
  #, fuzzy
4517
  msgid "Open this URL in a new window"
4518
  msgstr "Abrir %s en una nueva ventana"
4519
 
4520
  #: ../../admin/view/right-now.php:144
4521
- #: ../../admin/view/wp-slimstat-reports.php:583
4522
  #, php-format
4523
  msgid "Filter results where resource equals %s"
4524
  msgstr ""
@@ -4570,8 +4526,8 @@ msgid "About WP SlimStat"
4570
  msgstr "Acerca de WP-SlimStat"
4571
 
4572
  #: ../../admin/view/wp-slimstat-reports.php:79
4573
- #: ../../admin/view/wp-slimstat-reports.php:92
4574
- #: ../../admin/view/wp-slimstat-reports.php:111
4575
  #, fuzzy
4576
  msgid "Summary"
4577
  msgstr "Sumario de"
@@ -4582,235 +4538,237 @@ msgid "Recent Known Visitors"
4582
  msgstr "Palabras clave recientes"
4583
 
4584
  #: ../../admin/view/wp-slimstat-reports.php:81
4585
- #: ../../admin/view/wp-slimstat-reports.php:116
4586
  msgid "Spy View"
4587
  msgstr ""
4588
 
4589
  #: ../../admin/view/wp-slimstat-reports.php:82
4590
- #: ../../admin/view/wp-slimstat-reports.php:117
4591
  #, fuzzy
4592
  msgid "Recent Search Terms"
4593
  msgstr "Búsquedas Internas Recientes"
4594
 
4595
  #: ../../admin/view/wp-slimstat-reports.php:83
4596
  #, fuzzy
4597
- msgid "Top Languages - Just Visitors"
4598
- msgstr "Idiomas - Solo Visitantes"
4599
-
4600
- #: ../../admin/view/wp-slimstat-reports.php:84
4601
- #, fuzzy
4602
  msgid "Top Pages"
4603
  msgstr "Principales Páginas de Salida"
4604
 
4605
- #: ../../admin/view/wp-slimstat-reports.php:85
4606
- #: ../../admin/view/wp-slimstat-reports.php:101
4607
- #: ../../admin/view/wp-slimstat-reports.php:118
4608
- msgid "Recent Countries"
4609
- msgstr "Paises Recientes"
4610
-
4611
- #: ../../admin/view/wp-slimstat-reports.php:86
4612
- #: ../../admin/view/wp-slimstat-reports.php:114
4613
  #, fuzzy
4614
  msgid "Top Traffic Sources"
4615
  msgstr "Origen del Tráfico"
4616
 
4617
- #: ../../admin/view/wp-slimstat-reports.php:87
4618
  #, fuzzy
4619
  msgid "Top Known Visitors"
4620
  msgstr "Palabras clave recientes"
4621
 
4622
- #: ../../admin/view/wp-slimstat-reports.php:88
4623
- #: ../../admin/view/wp-slimstat-reports.php:112
4624
- #: ../../admin/view/wp-slimstat-reports.php:132
4625
  #, fuzzy
4626
  msgid "Top Search Terms"
4627
  msgstr "Principales Recursos"
4628
 
4629
- #: ../../admin/view/wp-slimstat-reports.php:89
4630
- #: ../../admin/view/wp-slimstat-reports.php:99
4631
- #: ../../admin/view/wp-slimstat-reports.php:113
4632
  msgid "Top Countries"
4633
  msgstr "Paises que más visitan"
4634
 
4635
- #: ../../admin/view/wp-slimstat-reports.php:90
4636
- #, fuzzy
4637
- msgid "Top Downloads"
4638
- msgstr "Descargas Recientes"
 
 
 
4639
 
4640
- #: ../../admin/view/wp-slimstat-reports.php:91
4641
  #, fuzzy
4642
  msgid "Human Visits (chart)"
4643
  msgstr "Visitas humanas por hora"
4644
 
4645
- #: ../../admin/view/wp-slimstat-reports.php:93
4646
  #, fuzzy
4647
  msgid "Top Languages"
4648
  msgstr "Idiomas"
4649
 
4650
- #: ../../admin/view/wp-slimstat-reports.php:94
4651
  #, fuzzy
4652
  msgid "Top Browsers"
4653
  msgstr "Navegador"
4654
 
4655
- #: ../../admin/view/wp-slimstat-reports.php:95
4656
  #, fuzzy
4657
  msgid "Top Service Providers"
4658
  msgstr "Principales Recursos"
4659
 
4660
- #: ../../admin/view/wp-slimstat-reports.php:96
4661
  #, fuzzy
4662
  msgid "Top Operating Systems"
4663
  msgstr "Sistemas Operativos"
4664
 
4665
- #: ../../admin/view/wp-slimstat-reports.php:97
4666
  #, fuzzy
4667
  msgid "Top Screen Resolutions"
4668
  msgstr "Resolución de Pantalla"
4669
 
4670
- #: ../../admin/view/wp-slimstat-reports.php:100
4671
  #, fuzzy
4672
  msgid "Visit Duration"
4673
  msgstr "Visitas"
4674
 
4675
- #: ../../admin/view/wp-slimstat-reports.php:102
 
 
 
 
 
4676
  #, fuzzy
4677
  msgid "Recent Screen Resolutions"
4678
  msgstr "Resolución de Pantalla"
4679
 
4680
- #: ../../admin/view/wp-slimstat-reports.php:103
4681
  #, fuzzy
4682
  msgid "Recent Operating Systems"
4683
  msgstr "Sistemas Operativos"
4684
 
4685
- #: ../../admin/view/wp-slimstat-reports.php:104
4686
  #, fuzzy
4687
  msgid "Recent Browsers"
4688
  msgstr "Contenidos Recientes"
4689
 
4690
- #: ../../admin/view/wp-slimstat-reports.php:105
4691
  #, fuzzy
4692
  msgid "Recent Languages"
4693
  msgstr "Idiomas"
4694
 
4695
- #: ../../admin/view/wp-slimstat-reports.php:106
4696
  #, fuzzy
4697
  msgid "Top Browser Families"
4698
  msgstr "Navegador"
4699
 
4700
- #: ../../admin/view/wp-slimstat-reports.php:107
4701
  msgid "Top OS Families"
4702
  msgstr ""
4703
 
4704
- #: ../../admin/view/wp-slimstat-reports.php:108
4705
  #, fuzzy
4706
  msgid "Recent Users"
4707
  msgstr "Buscadores"
4708
 
4709
- #: ../../admin/view/wp-slimstat-reports.php:109
4710
  #, fuzzy
4711
  msgid "Top Users"
4712
  msgstr "Buscadores"
4713
 
4714
- #: ../../admin/view/wp-slimstat-reports.php:110
4715
  #, fuzzy
4716
  msgid "Traffic Sources (chart)"
4717
  msgstr "Origen del Tráfico"
4718
 
4719
- #: ../../admin/view/wp-slimstat-reports.php:115
4720
  #, fuzzy
4721
  msgid "Top Referring Search Engines"
4722
  msgstr "Motores de Búsqueda"
4723
 
4724
- #: ../../admin/view/wp-slimstat-reports.php:119
4725
- #: ../../admin/view/wp-slimstat-reports.php:135
4726
  #, fuzzy
4727
  msgid "Top Landing Pages"
4728
  msgstr "Principales Páginas de Salida"
4729
 
4730
- #: ../../admin/view/wp-slimstat-reports.php:120
4731
  #, fuzzy
4732
  msgid "Average Pageviews per Visit (chart)"
4733
  msgstr "Promedio de páginas vistas por horas"
4734
 
4735
- #: ../../admin/view/wp-slimstat-reports.php:121
4736
  #, fuzzy
4737
  msgid "Recent Posts"
4738
  msgstr "Contenidos Recientes"
4739
 
4740
- #: ../../admin/view/wp-slimstat-reports.php:122
4741
  #, fuzzy
4742
  msgid "Recent Bounce Pages"
4743
  msgstr "Páginas recientes de rebote"
4744
 
4745
- #: ../../admin/view/wp-slimstat-reports.php:123
4746
  msgid "Recent Feeds"
4747
  msgstr "Feeds Recientes"
4748
 
4749
- #: ../../admin/view/wp-slimstat-reports.php:124
4750
  #, fuzzy
4751
  msgid "Recent 404 URLs"
4752
  msgstr "Páginas 404 recientes"
4753
 
4754
- #: ../../admin/view/wp-slimstat-reports.php:125
4755
  msgid "Recent Internal Searches"
4756
  msgstr "Búsquedas Internas Recientes"
4757
 
4758
- #: ../../admin/view/wp-slimstat-reports.php:126
4759
  #, fuzzy
4760
  msgid "Top Categories"
4761
  msgstr "Principales Páginas de Salida"
4762
 
4763
- #: ../../admin/view/wp-slimstat-reports.php:127
4764
  msgid "Recent Outbound Links"
4765
  msgstr "Enlaces Salientes Recientes"
4766
 
4767
- #: ../../admin/view/wp-slimstat-reports.php:128
4768
  #, fuzzy
4769
  msgid "Recent Events"
4770
  msgstr "Contenidos Recientes"
4771
 
4772
- #: ../../admin/view/wp-slimstat-reports.php:129
4773
  #, fuzzy
4774
  msgid "Top Posts"
4775
  msgstr "Paises que más visitan"
4776
 
4777
- #: ../../admin/view/wp-slimstat-reports.php:130
4778
  #, fuzzy
4779
  msgid "Top Feeds"
4780
  msgstr "Top Palabras Clave"
4781
 
4782
- #: ../../admin/view/wp-slimstat-reports.php:131
4783
  #, fuzzy
4784
  msgid "Top Internal Searches"
4785
  msgstr "Búsquedas Internas Recientes"
4786
 
4787
- #: ../../admin/view/wp-slimstat-reports.php:133
4788
  #, fuzzy
4789
  msgid "Recent Categories"
4790
  msgstr "Paises Recientes"
4791
 
4792
- #: ../../admin/view/wp-slimstat-reports.php:134
4793
  msgid "Top 404 URLs"
4794
  msgstr ""
4795
 
4796
- #: ../../admin/view/wp-slimstat-reports.php:136
4797
  #, fuzzy
4798
  msgid "Top Authors"
4799
  msgstr "Autor de la entrada(sección)"
4800
 
4801
- #: ../../admin/view/wp-slimstat-reports.php:137
4802
  #, fuzzy
4803
  msgid "Top Tags"
4804
  msgstr "Principales Páginas de Salida"
4805
 
4806
- #: ../../admin/view/wp-slimstat-reports.php:138
4807
  msgid "Recent Downloads"
4808
  msgstr "Descargas Recientes"
4809
 
4810
- #: ../../admin/view/wp-slimstat-reports.php:139
4811
  msgid "Top Outbound Links and Downloads"
4812
  msgstr ""
4813
 
 
 
 
 
 
4814
  #: ../../admin/view/wp-slimstat-reports.php:227
4815
  msgid "Chart controls"
4816
  msgstr ""
@@ -4832,324 +4790,324 @@ msgid ""
4832
  "Click on a data point to display the activity chart for each hour of that day"
4833
  msgstr ""
4834
 
4835
- #: ../../admin/view/wp-slimstat-reports.php:266
4836
  msgid "src"
4837
  msgstr ""
4838
 
4839
- #: ../../admin/view/wp-slimstat-reports.php:267
4840
  msgid "serp"
4841
  msgstr ""
4842
 
4843
- #: ../../admin/view/wp-slimstat-reports.php:272
4844
  msgid "Go to the corresponding search engine result page"
4845
  msgstr ""
4846
 
4847
- #: ../../admin/view/wp-slimstat-reports.php:275
4848
  msgid "Go to the referring page"
4849
  msgstr ""
4850
 
4851
- #: ../../admin/view/wp-slimstat-reports.php:294
4852
  msgid "Remove all filters"
4853
  msgstr ""
4854
 
4855
- #: ../../admin/view/wp-slimstat-reports.php:296
4856
- #: ../../admin/view/wp-slimstat-reports.php:303
4857
  msgid "Current filters:"
4858
  msgstr "Filtros Actuales:"
4859
 
4860
- #: ../../admin/view/wp-slimstat-reports.php:299
4861
  #, fuzzy
4862
  msgid "Remove filter for"
4863
  msgstr "Seleccionar filtro"
4864
 
4865
- #: ../../admin/view/wp-slimstat-reports.php:335
4866
  #, php-format
4867
  msgid "%s Minute by Minute"
4868
  msgstr ""
4869
 
4870
- #: ../../admin/view/wp-slimstat-reports.php:338
4871
  #, fuzzy, php-format
4872
  msgid "Hourly %s"
4873
  msgstr "Paginas visitadas"
4874
 
4875
- #: ../../admin/view/wp-slimstat-reports.php:341
4876
  #, fuzzy, php-format
4877
  msgid "Monthly %s"
4878
  msgstr "Mes"
4879
 
4880
- #: ../../admin/view/wp-slimstat-reports.php:344
4881
  #, fuzzy, php-format
4882
  msgid "Daily %s"
4883
  msgstr "Paginas visitadas"
4884
 
4885
- #: ../../admin/view/wp-slimstat-reports.php:400
4886
  #, fuzzy
4887
  msgid "Category ID"
4888
  msgstr "ID de la entrada(sección) de la Categoria"
4889
 
4890
- #: ../../admin/view/wp-slimstat-reports.php:433
4891
  msgid "OS Code"
4892
  msgstr ""
4893
 
4894
- #: ../../admin/view/wp-slimstat-reports.php:443
4895
  #, fuzzy
4896
  msgid "Referrer"
4897
  msgstr "Referido"
4898
 
4899
- #: ../../admin/view/wp-slimstat-reports.php:460
4900
  #, php-format
4901
  msgid "Filter results where %s %s %s"
4902
  msgstr ""
4903
 
4904
- #: ../../admin/view/wp-slimstat-reports.php:467
4905
- #: ../../admin/view/wp-slimstat-reports.php:661
4906
- #: ../../admin/view/wp-slimstat-reports.php:672
4907
- #: ../../admin/view/wp-slimstat-reports.php:677
4908
- #: ../../admin/view/wp-slimstat-reports.php:682
4909
- #: ../../admin/view/wp-slimstat-reports.php:687
4910
- #: ../../admin/view/wp-slimstat-reports.php:692
4911
- #: ../../admin/view/wp-slimstat-reports.php:697
4912
- #: ../../admin/view/wp-slimstat-reports.php:702
4913
- #: ../../admin/view/wp-slimstat-reports.php:707
4914
  #, fuzzy
4915
  msgid "Hits"
4916
  msgstr "Visitas"
4917
 
4918
- #: ../../admin/view/wp-slimstat-reports.php:536
4919
  #, fuzzy
4920
  msgid "Search for"
4921
  msgstr "Sumario de"
4922
 
4923
- #: ../../admin/view/wp-slimstat-reports.php:567
4924
- #: ../../admin/view/wp-slimstat-reports.php:583
4925
  #, fuzzy
4926
  msgid "Source"
4927
  msgstr "Porcentaje de Abandonos"
4928
 
4929
- #: ../../admin/view/wp-slimstat-reports.php:567
4930
  #, php-format
4931
  msgid "Filter results where domain equals %s"
4932
  msgstr ""
4933
 
4934
- #: ../../admin/view/wp-slimstat-reports.php:569
4935
  msgid "Keywords"
4936
  msgstr "Palabras clave"
4937
 
4938
- #: ../../admin/view/wp-slimstat-reports.php:570
4939
  #, php-format
4940
  msgid "Filter results where searchterm equals %s"
4941
  msgstr ""
4942
 
4943
- #: ../../admin/view/wp-slimstat-reports.php:595
4944
  #, fuzzy
4945
  msgid "Total Pageviews"
4946
  msgstr "Paginas visitadas"
4947
 
4948
- #: ../../admin/view/wp-slimstat-reports.php:596
4949
  #, fuzzy
4950
  msgid "DB Size"
4951
  msgstr "Tamaño de los Datos"
4952
 
4953
- #: ../../admin/view/wp-slimstat-reports.php:597
4954
  msgid "Tracking Active"
4955
  msgstr "Seguimiento Activo"
4956
 
4957
- #: ../../admin/view/wp-slimstat-reports.php:599
4958
  msgid "Tracking Browser Caps"
4959
  msgstr ""
4960
 
4961
- #: ../../admin/view/wp-slimstat-reports.php:600
4962
  msgid "Auto purge"
4963
  msgstr "Autopurgar"
4964
 
4965
- #: ../../admin/view/wp-slimstat-reports.php:601
4966
  #, fuzzy
4967
  msgid "Oldest pageview"
4968
  msgstr "Visita más larga"
4969
 
4970
- #: ../../admin/view/wp-slimstat-reports.php:601
4971
  #, fuzzy
4972
  msgid "No visits"
4973
  msgstr "Visitantes"
4974
 
4975
- #: ../../admin/view/wp-slimstat-reports.php:616
4976
- #: ../../admin/view/wp-slimstat-reports.php:718
4977
  msgid ""
4978
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
4979
  "time the tracking code is executed."
4980
  msgstr ""
4981
 
4982
- #: ../../admin/view/wp-slimstat-reports.php:618
4983
  msgid "This counter is based on any user activity in the last 5 minutes."
4984
  msgstr ""
4985
 
4986
- #: ../../admin/view/wp-slimstat-reports.php:619
4987
  msgid "Last 5 minutes"
4988
  msgstr ""
4989
 
4990
- #: ../../admin/view/wp-slimstat-reports.php:620
4991
  msgid "This counter is based on any user activity in the last 30 minutes."
4992
  msgstr ""
4993
 
4994
- #: ../../admin/view/wp-slimstat-reports.php:621
4995
  msgid "Last 30 minutes"
4996
  msgstr ""
4997
 
4998
- #: ../../admin/view/wp-slimstat-reports.php:622
4999
  msgid "Filter results where date equals today"
5000
  msgstr ""
5001
 
5002
- #: ../../admin/view/wp-slimstat-reports.php:622
5003
  msgid "Today"
5004
  msgstr ""
5005
 
5006
- #: ../../admin/view/wp-slimstat-reports.php:623
5007
  msgid "Filter results where date equals yesterday"
5008
  msgstr ""
5009
 
5010
- #: ../../admin/view/wp-slimstat-reports.php:623
5011
  msgid "Yesterday"
5012
  msgstr ""
5013
 
5014
- #: ../../admin/view/wp-slimstat-reports.php:624
5015
  msgid "How many pages have been visited on average during the current period."
5016
  msgstr ""
5017
 
5018
- #: ../../admin/view/wp-slimstat-reports.php:625
5019
- #: ../../admin/view/wp-slimstat-reports.php:771
5020
  msgid "Avg Pageviews"
5021
  msgstr "Promedio Paginas Visitadas"
5022
 
5023
- #: ../../admin/view/wp-slimstat-reports.php:626
5024
  msgid ""
5025
  "Visitors who landed on your site after searching for a keyword on Google, "
5026
  "Yahoo, etc."
5027
  msgstr ""
5028
 
5029
- #: ../../admin/view/wp-slimstat-reports.php:627
5030
  #, fuzzy
5031
  msgid "From Search Results"
5032
  msgstr "Principales Recursos"
5033
 
5034
- #: ../../admin/view/wp-slimstat-reports.php:628
5035
  msgid ""
5036
  "Used to differentiate between multiple requests to download a file from one "
5037
  "internet address (IP) and requests originating from many distinct addresses"
5038
  msgstr ""
5039
 
5040
- #: ../../admin/view/wp-slimstat-reports.php:629
5041
- #: ../../admin/view/wp-slimstat-reports.php:643
5042
- #: ../../admin/view/wp-slimstat-reports.php:758
5043
- #: ../../admin/view/wp-slimstat-reports.php:762
5044
- #: ../../admin/view/wp-slimstat-reports.php:766
5045
  msgid "Unique IPs"
5046
  msgstr "IPs Unicas"
5047
 
5048
- #: ../../admin/view/wp-slimstat-reports.php:640
5049
  msgid ""
5050
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
5051
  "multiple times if they perform multiple visits."
5052
  msgstr ""
5053
 
5054
- #: ../../admin/view/wp-slimstat-reports.php:641
5055
  msgid "Human visits"
5056
  msgstr "Visitas humanas"
5057
 
5058
- #: ../../admin/view/wp-slimstat-reports.php:642
5059
  msgid "This number includes <strong>human visits</strong> only."
5060
  msgstr ""
5061
 
5062
- #: ../../admin/view/wp-slimstat-reports.php:644
5063
- #: ../../admin/view/wp-slimstat-reports.php:730
5064
  msgid ""
5065
  "Percentage of single-page visits, i.e. visits in which the person left your "
5066
  "site from the entrance page."
5067
  msgstr ""
5068
 
5069
- #: ../../admin/view/wp-slimstat-reports.php:645
5070
  msgid "Bounce rate"
5071
  msgstr "Porcentaje de Abandonos"
5072
 
5073
- #: ../../admin/view/wp-slimstat-reports.php:646
5074
  msgid "Visitors who had previously left a comment on your blog."
5075
  msgstr ""
5076
 
5077
- #: ../../admin/view/wp-slimstat-reports.php:647
5078
  #, fuzzy
5079
  msgid "Known visitors"
5080
  msgstr "Palabras clave recientes"
5081
 
5082
- #: ../../admin/view/wp-slimstat-reports.php:648
5083
  msgid "Human users who visited your site only once."
5084
  msgstr ""
5085
 
5086
- #: ../../admin/view/wp-slimstat-reports.php:649
5087
  #, fuzzy
5088
  msgid "New visitors"
5089
  msgstr "Visitantes"
5090
 
5091
- #: ../../admin/view/wp-slimstat-reports.php:650
5092
  msgid "Bots"
5093
  msgstr "Motores de Búsqueda"
5094
 
5095
- #: ../../admin/view/wp-slimstat-reports.php:651
5096
  msgid "Pages per visit"
5097
  msgstr "Páginas por visita"
5098
 
5099
- #: ../../admin/view/wp-slimstat-reports.php:652
5100
- #: ../../admin/view/wp-slimstat-reports.php:771
5101
  msgid "Longest visit"
5102
  msgstr "Visita más larga"
5103
 
5104
- #: ../../admin/view/wp-slimstat-reports.php:652
5105
  #, fuzzy
5106
  msgid "hits"
5107
  msgstr "Visitas"
5108
 
5109
- #: ../../admin/view/wp-slimstat-reports.php:673
5110
  msgid "0 - 30 seconds"
5111
  msgstr ""
5112
 
5113
- #: ../../admin/view/wp-slimstat-reports.php:678
5114
  msgid "31 - 60 seconds"
5115
  msgstr ""
5116
 
5117
- #: ../../admin/view/wp-slimstat-reports.php:683
5118
  msgid "1 - 3 minutes"
5119
  msgstr ""
5120
 
5121
- #: ../../admin/view/wp-slimstat-reports.php:688
5122
  msgid "3 - 5 minutes"
5123
  msgstr ""
5124
 
5125
- #: ../../admin/view/wp-slimstat-reports.php:693
5126
  msgid "5 - 7 minutes"
5127
  msgstr ""
5128
 
5129
- #: ../../admin/view/wp-slimstat-reports.php:698
5130
  msgid "7 - 10 minutes"
5131
  msgstr ""
5132
 
5133
- #: ../../admin/view/wp-slimstat-reports.php:703
5134
  msgid "10 - 20 minutes"
5135
  msgstr ""
5136
 
5137
- #: ../../admin/view/wp-slimstat-reports.php:708
5138
  msgid "More than 20 minutes"
5139
  msgstr ""
5140
 
5141
- #: ../../admin/view/wp-slimstat-reports.php:720
5142
  msgid ""
5143
  "A referrer (or referring site) is the site that a visitor previously visited "
5144
  "before following a link to your site."
5145
  msgstr ""
5146
 
5147
- #: ../../admin/view/wp-slimstat-reports.php:721
5148
  #, fuzzy
5149
  msgid "Unique Referrers"
5150
  msgstr "Referidos Únicos"
5151
 
5152
- #: ../../admin/view/wp-slimstat-reports.php:722
5153
  msgid ""
5154
  "Visitors who visited the site by typing the URL directly into their browser. "
5155
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -5157,22 +5115,22 @@ msgid ""
5157
  "documents that don't include tracking variables."
5158
  msgstr ""
5159
 
5160
- #: ../../admin/view/wp-slimstat-reports.php:723
5161
  #, fuzzy
5162
  msgid "Direct Pageviews"
5163
  msgstr "Paginas visitadas"
5164
 
5165
- #: ../../admin/view/wp-slimstat-reports.php:724
5166
  msgid ""
5167
  "Visitors who came to your site via searches on Google or some other search "
5168
  "engine."
5169
  msgstr ""
5170
 
5171
- #: ../../admin/view/wp-slimstat-reports.php:725
5172
  msgid "From a search result"
5173
  msgstr ""
5174
 
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-15 22:42-0500\n"
6
+ "PO-Revision-Date: 2013-11-15 22:42-0500\n"
7
  "Last-Translator: get used to it <support@getused.to.it>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: ../..\n"
18
 
19
+ #: ../../wp-slimstat.php:1156 ../../admin/wp-slimstat-admin.php:387
20
  #: ../../admin/view/index.php:11 ../../admin/view/wp-slimstat-reports.php:140
21
  msgid "Right Now"
22
  msgstr ""
23
 
24
+ #: ../../wp-slimstat.php:1157 ../../admin/wp-slimstat-admin.php:388
25
+ #: ../../admin/wp-slimstat-admin.php:405 ../../admin/view/index.php:12
26
  msgid "Overview"
27
  msgstr ""
28
 
29
+ #: ../../wp-slimstat.php:1158 ../../admin/wp-slimstat-admin.php:389
30
+ #: ../../admin/wp-slimstat-admin.php:406 ../../admin/view/index.php:13
31
  msgid "Visitors"
32
  msgstr "Visitantes"
33
 
34
+ #: ../../wp-slimstat.php:1159 ../../admin/wp-slimstat-admin.php:390
35
+ #: ../../admin/wp-slimstat-admin.php:407 ../../admin/view/index.php:14
36
  msgid "Content"
37
  msgstr "Contenido"
38
 
39
+ #: ../../wp-slimstat.php:1160 ../../admin/wp-slimstat-admin.php:391
40
+ #: ../../admin/wp-slimstat-admin.php:408 ../../admin/view/index.php:15
41
+ #: ../../admin/view/index.php:277
42
  msgid "Traffic Sources"
43
  msgstr "Origen del Tráfico"
44
 
45
+ #: ../../wp-slimstat.php:1161 ../../admin/wp-slimstat-admin.php:392
46
+ #: ../../admin/wp-slimstat-admin.php:409 ../../admin/view/index.php:16
47
+ #: ../../admin/view/index.php:140
48
  msgid "World Map"
49
  msgstr "Mapa del Mundo"
50
 
51
+ #: ../../wp-slimstat.php:1162 ../../admin/wp-slimstat-admin.php:393
52
+ #: ../../admin/wp-slimstat-admin.php:410 ../../admin/view/index.php:17
53
  msgid "Custom Reports"
54
  msgstr "Informes Personalizados"
55
 
56
+ #: ../../wp-slimstat.php:1163 ../../admin/wp-slimstat-admin.php:394
57
+ #: ../../admin/wp-slimstat-admin.php:411 ../../admin/config/index.php:9
58
  #: ../../admin/config/index.php:208 ../../admin/config/index.php:216
59
  msgid "Add-ons"
60
  msgstr ""
61
 
62
+ #: ../../wp-slimstat.php:1166 ../../admin/wp-slimstat-admin.php:442
63
+ #: ../../admin/wp-slimstat-admin.php:445 ../../admin/wp-slimstat-admin.php:489
64
+ #: ../../admin/wp-slimstat-admin.php:492
65
  #, fuzzy
66
  msgid "Settings"
67
  msgstr "Seleccionar orden"
68
 
69
+ #: ../../admin/wp-slimstat-admin.php:508
70
  msgid "Stats"
71
  msgstr ""
72
 
73
+ #: ../../admin/wp-slimstat-admin.php:541
74
  msgid "Show on screen"
75
  msgstr ""
76
 
77
+ #: ../../admin/wp-slimstat-admin.php:588
78
  msgid "There was an error updating the following options:"
79
  msgstr ""
80
 
81
+ #: ../../admin/wp-slimstat-admin.php:591
82
  msgid "Your settings have been successfully updated."
83
  msgstr ""
84
 
85
+ #: ../../admin/wp-slimstat-admin.php:607
86
  msgid "Save Changes"
87
  msgstr ""
88
 
89
+ #: ../../admin/wp-slimstat-admin.php:620 ../../admin/config/maintenance.php:29
90
  #: ../../admin/config/maintenance.php:38
91
  msgid "Yes"
92
  msgstr ""
93
 
94
+ #: ../../admin/wp-slimstat-admin.php:621 ../../admin/config/maintenance.php:29
95
  #: ../../admin/config/maintenance.php:38
96
+ #: ../../admin/view/wp-slimstat-reports.php:594
97
  msgid "No"
98
  msgstr ""
99
 
100
+ #: ../../admin/wp-slimstat-admin.php:658
101
  msgid ""
102
  "WARNING: a misconfigured setting and/or server environment is preventing WP "
103
  "SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
105
  "FAQs</a> for more information."
106
  msgstr ""
107
 
108
+ #: ../../admin/wp-slimstat-admin.php:678
109
  msgid "Definitions"
110
  msgstr ""
111
 
112
+ #: ../../admin/wp-slimstat-admin.php:681
113
  #, fuzzy
114
  msgid "Pageview"
115
  msgstr "Paginas visitadas"
116
 
117
+ #: ../../admin/wp-slimstat-admin.php:681
118
  msgid ""
119
  "A request to load a single HTML file (\"page\"). This should be contrasted "
120
  "with a \"hit\", which refers to a request for any file from a web server. WP "
121
  "SlimStat logs a pageview each time the tracking code is executed"
122
  msgstr ""
123
 
124
+ #: ../../admin/wp-slimstat-admin.php:682
125
  #, fuzzy
126
  msgid "(Human) Visit"
127
  msgstr "Visitas humanas"
128
 
129
+ #: ../../admin/wp-slimstat-admin.php:682
130
  msgid ""
131
  "A period of interaction between a visitor's browser and your website, ending "
132
  "when the browser is closed or when the user has been inactive on that site "
133
  "for 30 minutes"
134
  msgstr ""
135
 
136
+ #: ../../admin/wp-slimstat-admin.php:683 ../../admin/view/index.php:214
137
+ #: ../../admin/view/index.php:283 ../../admin/view/right-now.php:168
138
  #, fuzzy
139
  msgid "Known Visitor"
140
  msgstr "Palabras clave recientes"
141
 
142
+ #: ../../admin/wp-slimstat-admin.php:683
143
  msgid ""
144
  "Any user who has left a comment on your blog, and is thus identified by "
145
  "Wordpress as a returning visitor"
146
  msgstr ""
147
 
148
+ #: ../../admin/wp-slimstat-admin.php:684
149
  #, fuzzy
150
  msgid "Unique IP"
151
  msgstr "IPs Unicas"
152
 
153
+ #: ../../admin/wp-slimstat-admin.php:684
154
  msgid ""
155
  "Used to differentiate between multiple requests to download a file from one "
156
  "internet address (IP) and requests originating from many distinct addresses; "
158
  "from, it is useful, but not perfect"
159
  msgstr ""
160
 
161
+ #: ../../admin/wp-slimstat-admin.php:685 ../../admin/wp-slimstat-admin.php:727
162
  #: ../../admin/view/index.php:56 ../../admin/view/right-now.php:90
163
  #: ../../admin/view/wp-slimstat-reports.php:60
164
  msgid "Originating IP"
165
  msgstr ""
166
 
167
+ #: ../../admin/wp-slimstat-admin.php:685
168
  msgid ""
169
  "the originating IP address of a client connecting to a web server through an "
170
  "HTTP proxy or load balancer"
171
  msgstr ""
172
 
173
+ #: ../../admin/wp-slimstat-admin.php:686
174
  #, fuzzy
175
  msgid "Direct Traffic"
176
  msgstr "Visita Directa"
177
 
178
+ #: ../../admin/wp-slimstat-admin.php:686
179
  msgid ""
180
  "All those people showing up to your Web site by typing in the URL of your "
181
  "Web site coming or from a bookmark; some people also call this \"default "
182
  "traffic\" or \"ambient traffic\""
183
  msgstr ""
184
 
185
+ #: ../../admin/wp-slimstat-admin.php:687
186
  #, fuzzy
187
  msgid "Search Engine"
188
  msgstr "Motores de Búsqueda"
189
 
190
+ #: ../../admin/wp-slimstat-admin.php:687
191
  msgid ""
192
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
193
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
194
  msgstr ""
195
 
196
+ #: ../../admin/wp-slimstat-admin.php:688 ../../admin/wp-slimstat-admin.php:704
197
  #: ../../admin/config/maintenance.php:183 ../../admin/view/index.php:38
198
  #: ../../admin/view/wp-slimstat-reports.php:43
199
  #, fuzzy
200
  msgid "Search Terms"
201
  msgstr "Principales Recursos"
202
 
203
+ #: ../../admin/wp-slimstat-admin.php:688 ../../admin/wp-slimstat-admin.php:704
204
+ #: ../../admin/view/index.php:217 ../../admin/view/index.php:286
205
  msgid "Keywords used by your visitors to find your website on a search engine"
206
  msgstr ""
207
 
208
+ #: ../../admin/wp-slimstat-admin.php:689
209
  msgid "SERP"
210
  msgstr ""
211
 
212
+ #: ../../admin/wp-slimstat-admin.php:689
213
  msgid ""
214
  "Short for search engine results page, the Web page that a search engine "
215
  "returns with the results of its search. The value shown represents your rank "
216
  "(or position) within that list of results"
217
  msgstr ""
218
 
219
+ #: ../../admin/wp-slimstat-admin.php:690
220
  #: ../../admin/config/maintenance.php:178 ../../admin/view/index.php:49
221
  #: ../../admin/view/wp-slimstat-reports.php:53
222
  #, fuzzy
223
  msgid "User Agent"
224
  msgstr "Buscadores"
225
 
226
+ #: ../../admin/wp-slimstat-admin.php:690
227
  msgid ""
228
  "Any program used for accessing a website; this includes browsers, robots, "
229
  "spiders and any other program that was used to retrieve information from the "
230
  "site"
231
  msgstr ""
232
 
233
+ #: ../../admin/wp-slimstat-admin.php:691 ../../admin/view/index.php:53
234
  #: ../../admin/view/wp-slimstat-reports.php:57
235
  #, fuzzy
236
  msgid "Outbound Link"
237
  msgstr "Enlaces Salientes Recientes"
238
 
239
+ #: ../../admin/wp-slimstat-admin.php:691
240
  msgid ""
241
  "A link from one domain to another is said to be outbound from its source "
242
  "anchor and inbound to its target. This report lists all the links to other "
243
  "websites followed by your visitors."
244
  msgstr ""
245
 
246
+ #: ../../admin/wp-slimstat-admin.php:698
247
  msgid "Basic Filters"
248
  msgstr ""
249
 
250
+ #: ../../admin/wp-slimstat-admin.php:701 ../../admin/view/index.php:35
251
  #: ../../admin/view/right-now.php:98
252
  #: ../../admin/view/wp-slimstat-reports.php:40
253
  msgid "Browser"
254
  msgstr "Navegador"
255
 
256
+ #: ../../admin/wp-slimstat-admin.php:701
257
  msgid "User agent (Firefox, Chrome, ...)"
258
  msgstr ""
259
 
260
+ #: ../../admin/wp-slimstat-admin.php:702
261
  #: ../../admin/config/maintenance.php:179 ../../admin/view/index.php:36
262
  #: ../../admin/view/wp-slimstat-reports.php:41
263
+ #: ../../admin/view/wp-slimstat-reports.php:411
264
  msgid "Country Code"
265
  msgstr "Código de Pais"
266
 
267
+ #: ../../admin/wp-slimstat-admin.php:702
268
  msgid "2-letter code (us, ru, de, it, ...)"
269
  msgstr ""
270
 
271
+ #: ../../admin/wp-slimstat-admin.php:703 ../../admin/view/index.php:37
272
  #: ../../admin/view/wp-slimstat-reports.php:42
273
  msgid "IP"
274
  msgstr "IP"
275
 
276
+ #: ../../admin/wp-slimstat-admin.php:703
277
  msgid "Visitor's public IP address"
278
  msgstr ""
279
 
280
+ #: ../../admin/wp-slimstat-admin.php:705
281
  #: ../../admin/config/maintenance.php:181 ../../admin/view/index.php:39
282
  #: ../../admin/view/wp-slimstat-reports.php:44
283
+ #: ../../admin/view/wp-slimstat-reports.php:423
284
  msgid "Language Code"
285
  msgstr "Código de Idioma"
286
 
287
+ #: ../../admin/wp-slimstat-admin.php:705
288
  msgid ""
289
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
290
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
291
  "column) for more information"
292
  msgstr ""
293
 
294
+ #: ../../admin/wp-slimstat-admin.php:706 ../../admin/view/index.php:40
295
  #: ../../admin/view/wp-slimstat-reports.php:45
296
  msgid "Operating System"
297
  msgstr "Sistema Operativo"
298
 
299
+ #: ../../admin/wp-slimstat-admin.php:706
300
  msgid ""
301
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
302
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
303
  "manual page</a> for more information"
304
  msgstr ""
305
 
306
+ #: ../../admin/wp-slimstat-admin.php:707
307
  #: ../../admin/config/maintenance.php:182 ../../admin/view/index.php:41
308
  #: ../../admin/view/wp-slimstat-reports.php:46
309
  msgid "Permalink"
310
  msgstr "Enlace Permanente"
311
 
312
+ #: ../../admin/wp-slimstat-admin.php:707
313
  msgid "URL accessed on your site"
314
  msgstr ""
315
 
316
+ #: ../../admin/wp-slimstat-admin.php:708 ../../admin/view/index.php:42
317
  #: ../../admin/view/wp-slimstat-reports.php:48
318
  msgid "Referer"
319
  msgstr "Referido"
320
 
321
+ #: ../../admin/wp-slimstat-admin.php:708
322
  msgid "Complete address of the referrer page"
323
  msgstr ""
324
 
325
+ #: ../../admin/wp-slimstat-admin.php:709 ../../admin/view/index.php:43
326
  #: ../../admin/view/wp-slimstat-reports.php:49
327
  #, fuzzy
328
  msgid "Visitor's Name"
329
  msgstr "Visitantes"
330
 
331
+ #: ../../admin/wp-slimstat-admin.php:709
332
  msgid ""
333
  "Visitors' names according to the cookie set by Wordpress after they leave a "
334
  "comment"
335
  msgstr ""
336
 
337
+ #: ../../admin/wp-slimstat-admin.php:717
338
  msgid "Advanced Filters"
339
  msgstr ""
340
 
341
+ #: ../../admin/wp-slimstat-admin.php:720 ../../admin/view/index.php:47
342
  #: ../../admin/view/wp-slimstat-reports.php:51
343
  #, fuzzy
344
  msgid "Browser Version"
345
  msgstr "Versión del Navegador"
346
 
347
+ #: ../../admin/wp-slimstat-admin.php:720
348
  msgid "user agent version (9.0, 11, ...)"
349
  msgstr ""
350
 
351
+ #: ../../admin/wp-slimstat-admin.php:721 ../../admin/view/index.php:48
352
  #: ../../admin/view/wp-slimstat-reports.php:52
353
  #, fuzzy
354
  msgid "Browser Type"
355
  msgstr "Navegador"
356
 
357
+ #: ../../admin/wp-slimstat-admin.php:721
358
  msgid ""
359
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
360
  "all others"
361
  msgstr ""
362
 
363
+ #: ../../admin/wp-slimstat-admin.php:722 ../../admin/view/index.php:50
364
  #: ../../admin/view/wp-slimstat-reports.php:54
365
  msgid "Color Depth"
366
  msgstr ""
367
 
368
+ #: ../../admin/wp-slimstat-admin.php:722
369
  msgid "visitor's screen's color depth (8, 16, 24, ...)"
370
  msgstr ""
371
 
372
+ #: ../../admin/wp-slimstat-admin.php:723 ../../admin/view/index.php:51
373
  #: ../../admin/view/wp-slimstat-reports.php:55
374
  #, fuzzy
375
  msgid "CSS Version"
376
  msgstr "Versión de CSS"
377
 
378
+ #: ../../admin/wp-slimstat-admin.php:723
379
  msgid ""
380
  "what CSS standard was supported by that browser (1, 2, 3 and other integer "
381
  "values)"
382
  msgstr ""
383
 
384
+ #: ../../admin/wp-slimstat-admin.php:724 ../../admin/view/index.php:52
385
  #: ../../admin/view/wp-slimstat-reports.php:56
386
  #, fuzzy
387
  msgid "Pageview Attributes"
388
  msgstr "Paginas visitadas"
389
 
390
+ #: ../../admin/wp-slimstat-admin.php:724
391
  msgid ""
392
  "this field is set to <em>[pre]</em> if the resource has been accessed "
393
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
394
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
395
  msgstr ""
396
 
397
+ #: ../../admin/wp-slimstat-admin.php:725 ../../admin/view/index.php:54
398
  #: ../../admin/view/wp-slimstat-reports.php:58
399
  msgid "Post Author"
400
  msgstr "Autor de la entrada(sección)"
401
 
402
+ #: ../../admin/wp-slimstat-admin.php:725
403
  msgid "author associated to that post/page when the resource was accessed"
404
  msgstr ""
405
 
406
+ #: ../../admin/wp-slimstat-admin.php:726 ../../admin/view/index.php:55
407
  #: ../../admin/view/wp-slimstat-reports.php:59
408
  msgid "Post Category ID"
409
  msgstr "ID de la entrada(sección) de la Categoria"
410
 
411
+ #: ../../admin/wp-slimstat-admin.php:726
412
  msgid "ID of the category/term associated to the resource, when available"
413
  msgstr ""
414
 
415
+ #: ../../admin/wp-slimstat-admin.php:727
416
  msgid "visitor's originating IP address, if available"
417
  msgstr ""
418
 
419
+ #: ../../admin/wp-slimstat-admin.php:728 ../../admin/view/index.php:57
420
  #: ../../admin/view/wp-slimstat-reports.php:61
421
  #, fuzzy
422
  msgid "Resource Content Type"
423
  msgstr "Contenidos Recientes"
424
 
425
+ #: ../../admin/wp-slimstat-admin.php:728
426
  msgid ""
427
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
428
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
431
  "information"
432
  msgstr ""
433
 
434
+ #: ../../admin/wp-slimstat-admin.php:729 ../../admin/view/index.php:59
435
  #: ../../admin/view/wp-slimstat-reports.php:63
436
  msgid "Screen Resolution"
437
  msgstr "Resolución de Pantalla"
438
 
439
+ #: ../../admin/wp-slimstat-admin.php:729
440
  msgid "viewport width and height (1024x768, 800x600, ...)"
441
  msgstr ""
442
 
443
+ #: ../../admin/wp-slimstat-admin.php:730 ../../admin/view/index.php:60
444
  #: ../../admin/view/wp-slimstat-reports.php:64
445
  #, fuzzy
446
  msgid "Visit ID"
447
  msgstr "Visitas"
448
 
449
+ #: ../../admin/wp-slimstat-admin.php:730
450
  msgid ""
451
  "generally used in conjunction with <em>is not empty</em>, identifies human "
452
  "visitors"
453
  msgstr ""
454
 
455
+ #: ../../admin/wp-slimstat-admin.php:731
456
  msgid "Date Filters"
457
  msgstr ""
458
 
459
+ #: ../../admin/wp-slimstat-admin.php:731
460
  msgid ""
461
  "you can specify the timeframe by entering a number in the <em>interval</em> "
462
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
463
  "year=blank, interval=-1 will set a year-to-date filter)"
464
  msgstr ""
465
 
466
+ #: ../../admin/wp-slimstat-admin.php:732
467
  msgid "SERP Position"
468
  msgstr ""
469
 
470
+ #: ../../admin/wp-slimstat-admin.php:732
471
  msgid ""
472
  "set the filter to Referer contains cd=N&, where N is the position you are "
473
  "looking for"
474
  msgstr ""
475
 
476
+ #: ../../admin/wp-slimstat-admin.php:748 ../../admin/config/index.php:9
477
  #: ../../admin/config/index.php:205
478
  msgid "Support"
479
  msgstr ""
480
 
481
+ #: ../../admin/wp-slimstat-admin.php:757
482
  msgid ""
483
  "<a href=\"http://slimstat.getused.to.it/\">WP SlimStat</a> is and will "
484
  "always be free, but consider supporting the author if this plugin helped you "
566
  msgstr ""
567
 
568
  #: ../../admin/config/index.php:21
569
+ #: ../../admin/view/wp-slimstat-reports.php:592
570
  msgid "Javascript Mode"
571
  msgstr ""
572
 
600
 
601
  #: ../../admin/config/index.php:22 ../../admin/view/index.php:29
602
  #: ../../admin/view/index.php:104 ../../admin/view/wp-slimstat-reports.php:69
603
+ #: ../../admin/view/wp-slimstat-reports.php:594
604
  msgid "days"
605
  msgstr "dias"
606
 
880
  "will not be tracked. Capabilities are case-insensitive."
881
  msgstr ""
882
 
 
 
 
 
 
883
  #: ../../admin/config/index.php:82
884
  msgid "Ignore users (username not found)"
885
  msgstr ""
886
 
 
 
 
 
 
887
  #: ../../admin/config/index.php:105
888
  msgid ""
889
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
915
  "case, the list has precedence over the capability."
916
  msgstr ""
917
 
918
+ #: ../../admin/config/index.php:117
919
  msgid "Capability to Admin"
920
  msgstr ""
921
 
927
  "here below can be used to override this option for specific users."
928
  msgstr ""
929
 
930
+ #: ../../admin/config/index.php:118
931
  msgid "Read access"
932
  msgstr ""
933
 
939
  "Usernames are case sensitive."
940
  msgstr ""
941
 
942
+ #: ../../admin/config/index.php:119
943
  msgid "Config access"
944
  msgstr ""
945
 
957
  msgid "Read access: username not found"
958
  msgstr ""
959
 
 
 
 
 
960
  #: ../../admin/config/index.php:149 ../../admin/config/index.php:180
961
  msgid ""
962
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
1356
  msgstr "Desconocido"
1357
 
1358
  #: ../../admin/lang/dynamic_strings.php:5
1359
+ msgid "win8.1"
1360
+ msgstr ""
1361
 
1362
  #: ../../admin/lang/dynamic_strings.php:6
1363
  msgid "win8"
1364
  msgstr ""
1365
 
1366
  #: ../../admin/lang/dynamic_strings.php:7
1367
+ msgid "win7"
1368
+ msgstr "Windows 7"
 
1369
 
1370
  #: ../../admin/lang/dynamic_strings.php:8
1371
  msgid "winvista"
1464
  msgstr "Cygwin"
1465
 
1466
  #: ../../admin/lang/dynamic_strings.php:32
 
 
 
 
1467
  msgid "digital unix"
1468
  msgstr "Digital Unix"
1469
 
1470
+ #: ../../admin/lang/dynamic_strings.php:33
1471
  msgid "risc os"
1472
  msgstr "Risc OS"
1473
 
1474
+ #: ../../admin/lang/dynamic_strings.php:34
 
 
 
 
 
 
 
 
1475
  msgid "openvms"
1476
  msgstr "OpenVMS"
1477
 
1478
+ #: ../../admin/lang/dynamic_strings.php:35
1479
  msgid "linux"
1480
  msgstr "Linux"
1481
 
1482
+ #: ../../admin/lang/dynamic_strings.php:36
1483
  msgid "freebsd"
1484
  msgstr "FreeBSD"
1485
 
1486
+ #: ../../admin/lang/dynamic_strings.php:37
1487
  msgid "openbsd"
1488
  msgstr "OpenBSD"
1489
 
1490
+ #: ../../admin/lang/dynamic_strings.php:38
1491
  msgid "netbsd"
1492
  msgstr "NetBSD"
1493
 
1494
+ #: ../../admin/lang/dynamic_strings.php:39
1495
  msgid "debian"
1496
  msgstr "Debian"
1497
 
1498
+ #: ../../admin/lang/dynamic_strings.php:40
1499
  msgid "amiga"
1500
  msgstr "Amiga"
1501
 
1502
+ #: ../../admin/lang/dynamic_strings.php:41
1503
  msgid "android"
1504
  msgstr "Android"
1505
 
1506
+ #: ../../admin/lang/dynamic_strings.php:42
1507
  msgid "wyderos"
1508
  msgstr "WyderOS"
1509
 
1510
+ #: ../../admin/lang/dynamic_strings.php:43
1511
  msgid "iphone osx"
1512
  msgstr "iPhone OS X"
1513
 
1514
+ #: ../../admin/lang/dynamic_strings.php:44
1515
  #, fuzzy
1516
  msgid "ios"
1517
  msgstr "Apple iOS"
1518
 
1519
+ #: ../../admin/lang/dynamic_strings.php:45
1520
  msgid "palm"
1521
  msgstr "Palm"
1522
 
1523
+ #: ../../admin/lang/dynamic_strings.php:46
1524
  msgid "wap"
1525
  msgstr "WAP"
1526
 
1527
+ #: ../../admin/lang/dynamic_strings.php:47
1528
  msgid "java"
1529
  msgstr "Java"
1530
 
1531
+ #: ../../admin/lang/dynamic_strings.php:48
1532
+ #, fuzzy
1533
+ msgid "winphone7"
1534
+ msgstr "iPhone OS X"
1535
+
1536
+ #: ../../admin/lang/dynamic_strings.php:49
1537
  msgid "wince"
1538
  msgstr "Windows CE"
1539
 
1540
+ #: ../../admin/lang/dynamic_strings.php:50
1541
  msgid "symbianos"
1542
  msgstr "Symbian OS"
1543
 
1544
+ #: ../../admin/lang/dynamic_strings.php:51
1545
  msgid "blackberry os"
1546
  msgstr ""
1547
 
1548
+ #: ../../admin/lang/dynamic_strings.php:52
1549
  msgid "webos"
1550
  msgstr "WebOS"
1551
 
1552
+ #: ../../admin/lang/dynamic_strings.php:53
1553
  msgid "p-and"
1554
  msgstr "Android"
1555
 
1556
+ #: ../../admin/lang/dynamic_strings.php:54
1557
  msgid "p-bla"
1558
  msgstr "BlackBerry"
1559
 
1560
+ #: ../../admin/lang/dynamic_strings.php:55
1561
  msgid "p-chr"
1562
  msgstr "Chrome OS"
1563
 
1564
+ #: ../../admin/lang/dynamic_strings.php:56
1565
  msgid "p-fre"
1566
  msgstr "Linux FreeBSD"
1567
 
1568
+ #: ../../admin/lang/dynamic_strings.php:57
1569
  msgid "p-ios"
1570
  msgstr "Apple iOS"
1571
 
1572
+ #: ../../admin/lang/dynamic_strings.php:58
1573
  msgid "p-jav"
1574
  msgstr "Java-based OS"
1575
 
1576
+ #: ../../admin/lang/dynamic_strings.php:59
1577
  msgid "p-lin"
1578
  msgstr "Linux"
1579
 
1580
+ #: ../../admin/lang/dynamic_strings.php:60
1581
  msgid "p-mac"
1582
  msgstr "Apple"
1583
 
1584
+ #: ../../admin/lang/dynamic_strings.php:61
1585
  msgid "p-sym"
1586
  msgstr "Symbian OS"
1587
 
1588
+ #: ../../admin/lang/dynamic_strings.php:62
1589
  msgid "p-unk"
1590
  msgstr "Unknown"
1591
 
1592
+ #: ../../admin/lang/dynamic_strings.php:63
1593
  msgid "p-win"
1594
  msgstr "Microsoft"
1595
 
1596
+ #: ../../admin/lang/dynamic_strings.php:64
1597
  msgid "powertv"
1598
  msgstr "PowerTV"
1599
 
1600
+ #: ../../admin/lang/dynamic_strings.php:65
1601
  #, fuzzy
1602
  msgid "acrobat"
1603
  msgstr "Acrobat"
1604
 
1605
+ #: ../../admin/lang/dynamic_strings.php:66
1606
  msgid "director"
1607
  msgstr ""
1608
 
1609
+ #: ../../admin/lang/dynamic_strings.php:67
1610
  #, fuzzy
1611
  msgid "flash"
1612
  msgstr "Flash"
1613
 
1614
+ #: ../../admin/lang/dynamic_strings.php:68
1615
  #, fuzzy
1616
  msgid "mediaplayer"
1617
  msgstr "Media Player"
1618
 
1619
+ #: ../../admin/lang/dynamic_strings.php:69
1620
  msgid "quicktime"
1621
  msgstr ""
1622
 
1623
+ #: ../../admin/lang/dynamic_strings.php:70
1624
  msgid "real"
1625
  msgstr ""
1626
 
1627
+ #: ../../admin/lang/dynamic_strings.php:71
1628
  #, fuzzy
1629
  msgid "silverlight"
1630
  msgstr "Silverlight"
1631
 
1632
  # Afar
1633
+ #: ../../admin/lang/dynamic_strings.php:72
1634
  msgid "l-aa"
1635
  msgstr "Afar"
1636
 
1637
  # Abkhazian
1638
+ #: ../../admin/lang/dynamic_strings.php:73
1639
  msgid "l-ab"
1640
  msgstr "Abkhazian"
1641
 
1642
  # Avestan
1643
+ #: ../../admin/lang/dynamic_strings.php:74
1644
  msgid "l-ae"
1645
  msgstr "Avestan"
1646
 
1647
  # Afrikaans
1648
+ #: ../../admin/lang/dynamic_strings.php:75
1649
  msgid "l-af"
1650
  msgstr "Afrikaans"
1651
 
1652
  # Akan
1653
+ #: ../../admin/lang/dynamic_strings.php:76
1654
  msgid "l-ak"
1655
  msgstr "Akan"
1656
 
1657
  # Amharic
1658
+ #: ../../admin/lang/dynamic_strings.php:77
1659
  msgid "l-am"
1660
  msgstr "Amharic"
1661
 
 
 
 
 
 
1662
  # Arabic
1663
+ #: ../../admin/lang/dynamic_strings.php:78
1664
  msgid "l-ar"
1665
  msgstr "Arabic"
1666
 
1667
  # Assamese
1668
+ #: ../../admin/lang/dynamic_strings.php:79
1669
  msgid "l-as"
1670
  msgstr "Assamese"
1671
 
1672
  # Avaric
1673
+ #: ../../admin/lang/dynamic_strings.php:80
1674
  msgid "l-av"
1675
  msgstr "Avaric"
1676
 
1677
  # Aymara
1678
+ #: ../../admin/lang/dynamic_strings.php:81
1679
  msgid "l-ay"
1680
  msgstr "Aymara"
1681
 
1682
  # Azerbaijani
1683
+ #: ../../admin/lang/dynamic_strings.php:82
1684
  msgid "l-az"
1685
  msgstr "Azerbaijani"
1686
 
1687
  # Bashkir
1688
+ #: ../../admin/lang/dynamic_strings.php:83
1689
  msgid "l-ba"
1690
  msgstr "Bashkir"
1691
 
1692
  # Belarusian
1693
+ #: ../../admin/lang/dynamic_strings.php:84
1694
  msgid "l-be"
1695
  msgstr "Belarusian"
1696
 
1697
  # Bulgarian
1698
+ #: ../../admin/lang/dynamic_strings.php:85
1699
  msgid "l-bg"
1700
  msgstr "Bulgarian"
1701
 
1702
  # Bihari languages
1703
+ #: ../../admin/lang/dynamic_strings.php:86
1704
  msgid "l-bh"
1705
  msgstr "Bihari languages"
1706
 
1707
  # Bislama
1708
+ #: ../../admin/lang/dynamic_strings.php:87
1709
  msgid "l-bi"
1710
  msgstr "Bislama"
1711
 
1712
  # Bambara
1713
+ #: ../../admin/lang/dynamic_strings.php:88
1714
  msgid "l-bm"
1715
  msgstr "Bambara"
1716
 
1717
  # Bengali
1718
+ #: ../../admin/lang/dynamic_strings.php:89
1719
  msgid "l-bn"
1720
  msgstr "Bengali"
1721
 
1722
  # Tibetan
1723
+ #: ../../admin/lang/dynamic_strings.php:90
1724
  msgid "l-bo"
1725
  msgstr "Tibetan"
1726
 
1727
  # Breton
1728
+ #: ../../admin/lang/dynamic_strings.php:91
1729
  msgid "l-br"
1730
  msgstr "Breton"
1731
 
1732
  # Bosnian
1733
+ #: ../../admin/lang/dynamic_strings.php:92
1734
  msgid "l-bs"
1735
  msgstr "Bosnian"
1736
 
1737
  # Catalan; Valencian
1738
+ #: ../../admin/lang/dynamic_strings.php:93
1739
  msgid "l-ca"
1740
  msgstr "Catalan; Valencian"
1741
 
1742
  # Chechen
1743
+ #: ../../admin/lang/dynamic_strings.php:94
1744
  msgid "l-ce"
1745
  msgstr "Chechen"
1746
 
 
 
 
 
 
1747
  # Corsican
1748
+ #: ../../admin/lang/dynamic_strings.php:95
1749
  msgid "l-co"
1750
  msgstr "Corsican"
1751
 
1752
  # Cree
1753
+ #: ../../admin/lang/dynamic_strings.php:96
1754
  msgid "l-cr"
1755
  msgstr "Cree"
1756
 
1757
  # Czech
1758
+ #: ../../admin/lang/dynamic_strings.php:97
1759
  msgid "l-cs"
1760
  msgstr "Czech"
1761
 
 
 
 
 
 
1762
  # Chuvash
1763
+ #: ../../admin/lang/dynamic_strings.php:98
1764
  msgid "l-cv"
1765
  msgstr "Chuvash"
1766
 
1767
  # Welsh
1768
+ #: ../../admin/lang/dynamic_strings.php:99
1769
  msgid "l-cy"
1770
  msgstr "Welsh"
1771
 
1772
  # Danish
1773
+ #: ../../admin/lang/dynamic_strings.php:100
1774
  msgid "l-da"
1775
  msgstr "Danish"
1776
 
1777
  # German
1778
+ #: ../../admin/lang/dynamic_strings.php:101
1779
  msgid "l-de"
1780
  msgstr "German"
1781
 
1782
  # Dhivehi; Divehi; Maldivian
1783
+ #: ../../admin/lang/dynamic_strings.php:102
1784
  msgid "l-dv"
1785
  msgstr "Dhivehi; Divehi; Maldivian"
1786
 
1787
  # Dzongkha
1788
+ #: ../../admin/lang/dynamic_strings.php:103
1789
  msgid "l-dz"
1790
  msgstr "Dzongkha"
1791
 
1792
  # Ewe
1793
+ #: ../../admin/lang/dynamic_strings.php:104
1794
  msgid "l-ee"
1795
  msgstr "Ewe"
1796
 
1797
  # Modern Greek (1453-)
1798
+ #: ../../admin/lang/dynamic_strings.php:105
1799
  msgid "l-el"
1800
  msgstr "Modern Greek (1453-)"
1801
 
1802
  # English
1803
+ #: ../../admin/lang/dynamic_strings.php:106
1804
  msgid "l-en"
1805
  msgstr "English"
1806
 
1807
  # Esperanto
1808
+ #: ../../admin/lang/dynamic_strings.php:107
1809
  msgid "l-eo"
1810
  msgstr "Esperanto"
1811
 
1812
  # Spanish; Castilian
1813
+ #: ../../admin/lang/dynamic_strings.php:108
1814
  msgid "l-es"
1815
  msgstr "Spanish; Castilian"
1816
 
1817
  # Estonian
1818
+ #: ../../admin/lang/dynamic_strings.php:109
1819
  msgid "l-et"
1820
  msgstr "Estonian"
1821
 
1822
  # Basque
1823
+ #: ../../admin/lang/dynamic_strings.php:110
1824
  msgid "l-eu"
1825
  msgstr "Basque"
1826
 
1827
  # Persian
1828
+ #: ../../admin/lang/dynamic_strings.php:111
1829
  msgid "l-fa"
1830
  msgstr "Persian"
1831
 
1832
  # Fulah
1833
+ #: ../../admin/lang/dynamic_strings.php:112
1834
  msgid "l-ff"
1835
  msgstr "Fulah"
1836
 
1837
  # Finnish
1838
+ #: ../../admin/lang/dynamic_strings.php:113
1839
  msgid "l-fi"
1840
  msgstr "Finnish"
1841
 
1842
  # Fijian
1843
+ #: ../../admin/lang/dynamic_strings.php:114
1844
  msgid "l-fj"
1845
  msgstr "Fijian"
1846
 
1847
  # Faroese
1848
+ #: ../../admin/lang/dynamic_strings.php:115
1849
  msgid "l-fo"
1850
  msgstr "Faroese"
1851
 
1852
  # French
1853
+ #: ../../admin/lang/dynamic_strings.php:116
1854
  msgid "l-fr"
1855
  msgstr "French"
1856
 
 
 
 
 
 
1857
  # Irish
1858
+ #: ../../admin/lang/dynamic_strings.php:117
1859
  msgid "l-ga"
1860
  msgstr "Irish"
1861
 
1862
  # Scottish Gaelic; Gaelic
1863
+ #: ../../admin/lang/dynamic_strings.php:118
1864
  msgid "l-gd"
1865
  msgstr "Scottish Gaelic; Gaelic"
1866
 
1867
  # Galician
1868
+ #: ../../admin/lang/dynamic_strings.php:119
1869
  msgid "l-gl"
1870
  msgstr "Galician"
1871
 
1872
  # Guarani
1873
+ #: ../../admin/lang/dynamic_strings.php:120
1874
  msgid "l-gn"
1875
  msgstr "Guarani"
1876
 
1877
  # Gujarati
1878
+ #: ../../admin/lang/dynamic_strings.php:121
1879
  msgid "l-gu"
1880
  msgstr "Gujarati"
1881
 
1882
  # Manx
1883
+ #: ../../admin/lang/dynamic_strings.php:122
1884
  msgid "l-gv"
1885
  msgstr "Manx"
1886
 
1887
  # Hausa
1888
+ #: ../../admin/lang/dynamic_strings.php:123
1889
  msgid "l-ha"
1890
  msgstr "Hausa"
1891
 
1892
  # Hebrew
1893
+ #: ../../admin/lang/dynamic_strings.php:124
1894
  msgid "l-he"
1895
  msgstr "Hebrew"
1896
 
1897
  # Hindi
1898
+ #: ../../admin/lang/dynamic_strings.php:125
1899
  msgid "l-hi"
1900
  msgstr "Hindi"
1901
 
 
 
 
 
 
1902
  # Croatian
1903
+ #: ../../admin/lang/dynamic_strings.php:126
1904
  msgid "l-hr"
1905
  msgstr "Croatian"
1906
 
1907
  # Haitian; Haitian Creole
1908
+ #: ../../admin/lang/dynamic_strings.php:127
1909
  msgid "l-ht"
1910
  msgstr "Haitian; Haitian Creole"
1911
 
1912
  # Hungarian
1913
+ #: ../../admin/lang/dynamic_strings.php:128
1914
  msgid "l-hu"
1915
  msgstr "Hungarian"
1916
 
1917
  # Armenian
1918
+ #: ../../admin/lang/dynamic_strings.php:129
1919
  msgid "l-hy"
1920
  msgstr "Armenian"
1921
 
 
 
 
 
 
1922
  # Interlingua (International Auxiliary Language Association)
1923
+ #: ../../admin/lang/dynamic_strings.php:130
1924
  msgid "l-ia"
1925
  msgstr "Interlingua (International Auxiliary Language Association)"
1926
 
 
 
 
 
 
1927
  # Interlingue; Occidental
1928
+ #: ../../admin/lang/dynamic_strings.php:131
1929
  msgid "l-ie"
1930
  msgstr "Interlingue; Occidental"
1931
 
 
 
 
 
 
1932
  # Sichuan Yi; Nuosu
1933
+ #: ../../admin/lang/dynamic_strings.php:132
1934
  msgid "l-ii"
1935
  msgstr "Sichuan Yi; Nuosu"
1936
 
1937
  # Inupiaq
1938
+ #: ../../admin/lang/dynamic_strings.php:133
1939
  msgid "l-ik"
1940
  msgstr "Inupiaq"
1941
 
1942
  # Indonesian
1943
+ #: ../../admin/lang/dynamic_strings.php:134
1944
  msgid "l-in"
1945
  msgstr "Indonesian"
1946
 
1947
  # Ido
1948
+ #: ../../admin/lang/dynamic_strings.php:135
1949
  msgid "l-io"
1950
  msgstr "Ido"
1951
 
1952
  # Icelandic
1953
+ #: ../../admin/lang/dynamic_strings.php:136
1954
  msgid "l-is"
1955
  msgstr "Icelandic"
1956
 
1957
  # Italian
1958
+ #: ../../admin/lang/dynamic_strings.php:137
1959
  msgid "l-it"
1960
  msgstr "Italian"
1961
 
 
 
 
 
 
1962
  # Hebrew
1963
+ #: ../../admin/lang/dynamic_strings.php:138
1964
  msgid "l-iw"
1965
  msgstr "Hebrew"
1966
 
1967
  # Japanese
1968
+ #: ../../admin/lang/dynamic_strings.php:139
1969
  msgid "l-ja"
1970
  msgstr "Japanese"
1971
 
1972
  # Yiddish
1973
+ #: ../../admin/lang/dynamic_strings.php:140
1974
  msgid "l-ji"
1975
  msgstr "Yiddish"
1976
 
1977
  # Javanese
1978
+ #: ../../admin/lang/dynamic_strings.php:141
1979
  msgid "l-jv"
1980
  msgstr "Javanese"
1981
 
1982
  # Javanese
1983
+ #: ../../admin/lang/dynamic_strings.php:142
1984
  msgid "l-jw"
1985
  msgstr "Javanese"
1986
 
1987
  # Georgian
1988
+ #: ../../admin/lang/dynamic_strings.php:143
1989
  msgid "l-ka"
1990
  msgstr "Georgian"
1991
 
1992
  # Kongo
1993
+ #: ../../admin/lang/dynamic_strings.php:144
1994
  msgid "l-kg"
1995
  msgstr "Kongo"
1996
 
1997
  # Kikuyu; Gikuyu
1998
+ #: ../../admin/lang/dynamic_strings.php:145
1999
  msgid "l-ki"
2000
  msgstr "Kikuyu; Gikuyu"
2001
 
2002
  # Kuanyama; Kwanyama
2003
+ #: ../../admin/lang/dynamic_strings.php:146
2004
  msgid "l-kj"
2005
  msgstr "Kuanyama; Kwanyama"
2006
 
2007
  # Kazakh
2008
+ #: ../../admin/lang/dynamic_strings.php:147
2009
  msgid "l-kk"
2010
  msgstr "Kazakh"
2011
 
2012
  # Kalaallisut; Greenlandic
2013
+ #: ../../admin/lang/dynamic_strings.php:148
2014
  msgid "l-kl"
2015
  msgstr "Kalaallisut; Greenlandic"
2016
 
2017
  # Central Khmer
2018
+ #: ../../admin/lang/dynamic_strings.php:149
2019
  msgid "l-km"
2020
  msgstr "Central Khmer"
2021
 
2022
  # Kannada
2023
+ #: ../../admin/lang/dynamic_strings.php:150
2024
  msgid "l-kn"
2025
  msgstr "Kannada"
2026
 
2027
  # Korean
2028
+ #: ../../admin/lang/dynamic_strings.php:151
2029
  msgid "l-ko"
2030
  msgstr "Korean"
2031
 
2032
  # Kanuri
2033
+ #: ../../admin/lang/dynamic_strings.php:152
2034
  msgid "l-kr"
2035
  msgstr "Kanuri"
2036
 
2037
  # Kashmiri
2038
+ #: ../../admin/lang/dynamic_strings.php:153
2039
  msgid "l-ks"
2040
  msgstr "Kashmiri"
2041
 
2042
  # Kurdish
2043
+ #: ../../admin/lang/dynamic_strings.php:154
2044
  msgid "l-ku"
2045
  msgstr "Kurdish"
2046
 
2047
  # Komi
2048
+ #: ../../admin/lang/dynamic_strings.php:155
2049
  msgid "l-kv"
2050
  msgstr "Komi"
2051
 
2052
  # Cornish
2053
+ #: ../../admin/lang/dynamic_strings.php:156
2054
  msgid "l-kw"
2055
  msgstr "Cornish"
2056
 
2057
  # Kirghiz; Kyrgyz
2058
+ #: ../../admin/lang/dynamic_strings.php:157
2059
  msgid "l-ky"
2060
  msgstr "Kirghiz; Kyrgyz"
2061
 
2062
  # Latin
2063
+ #: ../../admin/lang/dynamic_strings.php:158
2064
  msgid "l-la"
2065
  msgstr "Latin"
2066
 
2067
  # Luxembourgish; Letzeburgesch
2068
+ #: ../../admin/lang/dynamic_strings.php:159
2069
  msgid "l-lb"
2070
  msgstr "Luxembourgish; Letzeburgesch"
2071
 
2072
  # Ganda
2073
+ #: ../../admin/lang/dynamic_strings.php:160
2074
  msgid "l-lg"
2075
  msgstr "Ganda"
2076
 
2077
  # Limburgan; Limburge; Limburgish
2078
+ #: ../../admin/lang/dynamic_strings.php:161
2079
  msgid "l-li"
2080
  msgstr "Limburgan; Limburge; Limburgish"
2081
 
2082
  # Lingala
2083
+ #: ../../admin/lang/dynamic_strings.php:162
2084
  msgid "l-ln"
2085
  msgstr "Lingala"
2086
 
2087
  # Lao
2088
+ #: ../../admin/lang/dynamic_strings.php:163
2089
  msgid "l-lo"
2090
  msgstr "Lao"
2091
 
2092
  # Lithuanian
2093
+ #: ../../admin/lang/dynamic_strings.php:164
2094
  msgid "l-lt"
2095
  msgstr "Lithuanian"
2096
 
2097
  # Luba-Katanga
2098
+ #: ../../admin/lang/dynamic_strings.php:165
2099
  msgid "l-lu"
2100
  msgstr "Luba-Katanga"
2101
 
2102
  # Latvian
2103
+ #: ../../admin/lang/dynamic_strings.php:166
2104
  msgid "l-lv"
2105
  msgstr "Latvian"
2106
 
2107
  # Malagasy
2108
+ #: ../../admin/lang/dynamic_strings.php:167
2109
  msgid "l-mg"
2110
  msgstr "Malagasy"
2111
 
2112
  # Marshallese
2113
+ #: ../../admin/lang/dynamic_strings.php:168
2114
  msgid "l-mh"
2115
  msgstr "Marshallese"
2116
 
2117
  # Maori
2118
+ #: ../../admin/lang/dynamic_strings.php:169
2119
  msgid "l-mi"
2120
  msgstr "Maori"
2121
 
2122
  # Macedonian
2123
+ #: ../../admin/lang/dynamic_strings.php:170
2124
  msgid "l-mk"
2125
  msgstr "Macedonian"
2126
 
2127
  # Malayalam
2128
+ #: ../../admin/lang/dynamic_strings.php:171
2129
  msgid "l-ml"
2130
  msgstr "Malayalam"
2131
 
2132
  # Mongolian
2133
+ #: ../../admin/lang/dynamic_strings.php:172
2134
  msgid "l-mn"
2135
  msgstr "Mongolian"
2136
 
2137
  # Moldavian; Moldovan
2138
+ #: ../../admin/lang/dynamic_strings.php:173
2139
  msgid "l-mo"
2140
  msgstr "Moldavian; Moldovan"
2141
 
2142
  # Marathi
2143
+ #: ../../admin/lang/dynamic_strings.php:174
2144
  msgid "l-mr"
2145
  msgstr "Marathi"
2146
 
2147
  # Malay
2148
+ #: ../../admin/lang/dynamic_strings.php:175
2149
  msgid "l-ms"
2150
  msgstr "Malay"
2151
 
2152
  # Maltese
2153
+ #: ../../admin/lang/dynamic_strings.php:176
2154
  msgid "l-mt"
2155
  msgstr "Maltese"
2156
 
2157
  # Burmese
2158
+ #: ../../admin/lang/dynamic_strings.php:177
2159
  msgid "l-my"
2160
  msgstr "Burmese"
2161
 
2162
  # Nauru
2163
+ #: ../../admin/lang/dynamic_strings.php:178
2164
  msgid "l-na"
2165
  msgstr "Nauru"
2166
 
2167
  # Norwegian Bokmål
2168
+ #: ../../admin/lang/dynamic_strings.php:179
2169
  msgid "l-nb"
2170
  msgstr "Norwegian Bokmål"
2171
 
2172
  # North Ndebele
2173
+ #: ../../admin/lang/dynamic_strings.php:180
2174
  msgid "l-nd"
2175
  msgstr "North Ndebele"
2176
 
2177
  # Nepali
2178
+ #: ../../admin/lang/dynamic_strings.php:181
2179
  msgid "l-ne"
2180
  msgstr "Nepali"
2181
 
2182
  # Ndonga
2183
+ #: ../../admin/lang/dynamic_strings.php:182
2184
  msgid "l-ng"
2185
  msgstr "Ndonga"
2186
 
2187
  # Dutch; Flemish
2188
+ #: ../../admin/lang/dynamic_strings.php:183
2189
  msgid "l-nl"
2190
  msgstr "Dutch; Flemish"
2191
 
2192
  # Norwegian Nynorsk
2193
+ #: ../../admin/lang/dynamic_strings.php:184
2194
  msgid "l-nn"
2195
  msgstr "Norwegian Nynorsk"
2196
 
2197
  # Norwegian
2198
+ #: ../../admin/lang/dynamic_strings.php:185
2199
  msgid "l-no"
2200
  msgstr "Norwegian"
2201
 
 
 
 
 
 
2202
  # Navajo; Navaho
2203
+ #: ../../admin/lang/dynamic_strings.php:186
2204
  msgid "l-nv"
2205
  msgstr "Navajo; Navaho"
2206
 
2207
  # Nyanja; Chewa; Chichewa
2208
+ #: ../../admin/lang/dynamic_strings.php:187
2209
  msgid "l-ny"
2210
  msgstr "Nyanja; Chewa; Chichewa"
2211
 
2212
  # Occitan (post 1500)
2213
+ #: ../../admin/lang/dynamic_strings.php:188
2214
  msgid "l-oc"
2215
  msgstr "Occitan (post 1500)"
2216
 
2217
  # Ojibwa
2218
+ #: ../../admin/lang/dynamic_strings.php:189
2219
  msgid "l-oj"
2220
  msgstr "Ojibwa"
2221
 
2222
  # Oromo
2223
+ #: ../../admin/lang/dynamic_strings.php:190
2224
  msgid "l-om"
2225
  msgstr "Oromo"
2226
 
2227
  # Oriya
2228
+ #: ../../admin/lang/dynamic_strings.php:191
2229
  msgid "l-or"
2230
  msgstr "Oriya"
2231
 
2232
  # Ossetian; Ossetic
2233
+ #: ../../admin/lang/dynamic_strings.php:192
2234
  msgid "l-os"
2235
  msgstr "Ossetian; Ossetic"
2236
 
2237
  # Panjabi; Punjabi
2238
+ #: ../../admin/lang/dynamic_strings.php:193
2239
  msgid "l-pa"
2240
  msgstr "Panjabi; Punjabi"
2241
 
2242
  # Pali
2243
+ #: ../../admin/lang/dynamic_strings.php:194
2244
  msgid "l-pi"
2245
  msgstr "Pali"
2246
 
2247
  # Polish
2248
+ #: ../../admin/lang/dynamic_strings.php:195
2249
  msgid "l-pl"
2250
  msgstr "Polish"
2251
 
2252
  # Polish
2253
+ #: ../../admin/lang/dynamic_strings.php:196
2254
  #, fuzzy
2255
  msgid "l-pl-pl"
2256
  msgstr "Polish"
2257
 
2258
  # Pushto; Pashto
2259
+ #: ../../admin/lang/dynamic_strings.php:197
2260
  msgid "l-ps"
2261
  msgstr "Pushto; Pashto"
2262
 
2263
  # Portuguese
2264
+ #: ../../admin/lang/dynamic_strings.php:198
2265
  msgid "l-pt"
2266
  msgstr "Portuguese"
2267
 
2268
  # Portuguese
2269
+ #: ../../admin/lang/dynamic_strings.php:199
2270
  #, fuzzy
2271
  msgid "l-pt-pt"
2272
  msgstr "Portuguese"
2273
 
2274
  # Quechua
2275
+ #: ../../admin/lang/dynamic_strings.php:200
2276
  msgid "l-qu"
2277
  msgstr "Quechua"
2278
 
2279
  # Romansh
2280
+ #: ../../admin/lang/dynamic_strings.php:201
2281
  msgid "l-rm"
2282
  msgstr "Romansh"
2283
 
2284
  # Rundi
2285
+ #: ../../admin/lang/dynamic_strings.php:202
2286
  msgid "l-rn"
2287
  msgstr "Rundi"
2288
 
2289
  # Romanian; Moldavian; Moldovan
2290
+ #: ../../admin/lang/dynamic_strings.php:203
2291
  msgid "l-ro"
2292
  msgstr "Romanian; Moldavian; Moldovan"
2293
 
2294
  # Russian
2295
+ #: ../../admin/lang/dynamic_strings.php:204
2296
  msgid "l-ru"
2297
  msgstr "Russian"
2298
 
2299
  # Kinyarwanda
2300
+ #: ../../admin/lang/dynamic_strings.php:205
2301
  msgid "l-rw"
2302
  msgstr "Kinyarwanda"
2303
 
 
 
 
 
 
2304
  # Sardinian
2305
+ #: ../../admin/lang/dynamic_strings.php:206
2306
  msgid "l-sc"
2307
  msgstr "Sardinian"
2308
 
2309
  # Sindhi
2310
+ #: ../../admin/lang/dynamic_strings.php:207
2311
  msgid "l-sd"
2312
  msgstr "Sindhi"
2313
 
2314
  # Northern Sami
2315
+ #: ../../admin/lang/dynamic_strings.php:208
2316
  msgid "l-se"
2317
  msgstr "Northern Sami"
2318
 
2319
  # Sango
2320
+ #: ../../admin/lang/dynamic_strings.php:209
2321
  msgid "l-sg"
2322
  msgstr "Sango"
2323
 
2324
  # Serbo-Croatian
2325
+ #: ../../admin/lang/dynamic_strings.php:210
2326
  msgid "l-sh"
2327
  msgstr "Serbo-Croatian"
2328
 
2329
  # Sinhala; Sinhalese
2330
+ #: ../../admin/lang/dynamic_strings.php:211
2331
  msgid "l-si"
2332
  msgstr "Sinhala; Sinhalese"
2333
 
2334
  # Slovak
2335
+ #: ../../admin/lang/dynamic_strings.php:212
2336
  msgid "l-sk"
2337
  msgstr "Slovak"
2338
 
2339
  # Slovenian
2340
+ #: ../../admin/lang/dynamic_strings.php:213
2341
  msgid "l-sl"
2342
  msgstr "Slovenian"
2343
 
2344
  # Samoan
2345
+ #: ../../admin/lang/dynamic_strings.php:214
2346
  msgid "l-sm"
2347
  msgstr "Samoan"
2348
 
2349
  # Shona
2350
+ #: ../../admin/lang/dynamic_strings.php:215
2351
  msgid "l-sn"
2352
  msgstr "Shona"
2353
 
2354
  # Somali
2355
+ #: ../../admin/lang/dynamic_strings.php:216
2356
  msgid "l-so"
2357
  msgstr "Somali"
2358
 
2359
  # Albanian
2360
+ #: ../../admin/lang/dynamic_strings.php:217
2361
  msgid "l-sq"
2362
  msgstr "Albanian"
2363
 
2364
  # Serbian
2365
+ #: ../../admin/lang/dynamic_strings.php:218
2366
  msgid "l-sr"
2367
  msgstr "Serbian"
2368
 
2369
  # Swati
2370
+ #: ../../admin/lang/dynamic_strings.php:219
2371
  msgid "l-ss"
2372
  msgstr "Swati"
2373
 
2374
  # Southern Sotho
2375
+ #: ../../admin/lang/dynamic_strings.php:220
2376
  msgid "l-st"
2377
  msgstr "Southern Sotho"
2378
 
2379
  # Sundanese
2380
+ #: ../../admin/lang/dynamic_strings.php:221
2381
  msgid "l-su"
2382
  msgstr "Sundanese"
2383
 
2384
  # Swedish
2385
+ #: ../../admin/lang/dynamic_strings.php:222
2386
  msgid "l-sv"
2387
  msgstr "Swedish"
2388
 
2389
  # Swahili
2390
+ #: ../../admin/lang/dynamic_strings.php:223
2391
  msgid "l-sw"
2392
  msgstr "Swahili"
2393
 
2394
  # Tamil
2395
+ #: ../../admin/lang/dynamic_strings.php:224
2396
  msgid "l-ta"
2397
  msgstr "Tamil"
2398
 
2399
  # Telugu
2400
+ #: ../../admin/lang/dynamic_strings.php:225
2401
  msgid "l-te"
2402
  msgstr "Telugu"
2403
 
2404
  # Tajik
2405
+ #: ../../admin/lang/dynamic_strings.php:226
2406
  msgid "l-tg"
2407
  msgstr "Tajik"
2408
 
2409
  # Thai
2410
+ #: ../../admin/lang/dynamic_strings.php:227
2411
  msgid "l-th"
2412
  msgstr "Thai"
2413
 
2414
  # Thai
2415
+ #: ../../admin/lang/dynamic_strings.php:228
2416
  #, fuzzy
2417
  msgid "l-th-th"
2418
  msgstr "Thai"
2419
 
2420
  # Tigrinya
2421
+ #: ../../admin/lang/dynamic_strings.php:229
2422
  msgid "l-ti"
2423
  msgstr "Tigrinya"
2424
 
2425
  # Turkmen
2426
+ #: ../../admin/lang/dynamic_strings.php:230
2427
  msgid "l-tk"
2428
  msgstr "Turkmen"
2429
 
2430
  # Tagalog
2431
+ #: ../../admin/lang/dynamic_strings.php:231
2432
  msgid "l-tl"
2433
  msgstr "Tagalog"
2434
 
2435
  # Tswana
2436
+ #: ../../admin/lang/dynamic_strings.php:232
2437
  msgid "l-tn"
2438
  msgstr "Tswana"
2439
 
2440
  # Tonga (Tonga Islands)
2441
+ #: ../../admin/lang/dynamic_strings.php:233
2442
  msgid "l-to"
2443
  msgstr "Tonga (Tonga Islands)"
2444
 
2445
  # Turkish
2446
+ #: ../../admin/lang/dynamic_strings.php:234
2447
  msgid "l-tr"
2448
  msgstr "Turkish"
2449
 
2450
  # Tsonga
2451
+ #: ../../admin/lang/dynamic_strings.php:235
2452
  msgid "l-ts"
2453
  msgstr "Tsonga"
2454
 
2455
  # Tatar
2456
+ #: ../../admin/lang/dynamic_strings.php:236
2457
  msgid "l-tt"
2458
  msgstr "Tatar"
2459
 
 
 
 
 
 
2460
  # Tahitian
2461
+ #: ../../admin/lang/dynamic_strings.php:237
2462
  msgid "l-ty"
2463
  msgstr "Tahitian"
2464
 
2465
  # Uighur; Uyghur
2466
+ #: ../../admin/lang/dynamic_strings.php:238
2467
  msgid "l-ug"
2468
  msgstr "Uighur; Uyghur"
2469
 
2470
  # Ukrainian
2471
+ #: ../../admin/lang/dynamic_strings.php:239
2472
  msgid "l-uk"
2473
  msgstr "Ukrainian"
2474
 
2475
  # Urdu
2476
+ #: ../../admin/lang/dynamic_strings.php:240
2477
  msgid "l-ur"
2478
  msgstr "Urdu"
2479
 
2480
  # Uzbek
2481
+ #: ../../admin/lang/dynamic_strings.php:241
2482
  msgid "l-uz"
2483
  msgstr "Uzbek"
2484
 
2485
  # Venda
2486
+ #: ../../admin/lang/dynamic_strings.php:242
2487
  msgid "l-ve"
2488
  msgstr "Venda"
2489
 
2490
  # Vietnamese
2491
+ #: ../../admin/lang/dynamic_strings.php:243
2492
  msgid "l-vi"
2493
  msgstr "Vietnamese"
2494
 
2495
  # Vietnamese
2496
+ #: ../../admin/lang/dynamic_strings.php:244
2497
  #, fuzzy
2498
  msgid "l-vi-vn"
2499
  msgstr "Vietnamese"
2500
 
2501
  # Volapük
2502
+ #: ../../admin/lang/dynamic_strings.php:245
2503
  msgid "l-vo"
2504
  msgstr "Volapük"
2505
 
 
 
 
 
 
2506
  # Wolof
2507
+ #: ../../admin/lang/dynamic_strings.php:246
2508
  msgid "l-wo"
2509
  msgstr "Wolof"
2510
 
2511
  # Xhosa
2512
+ #: ../../admin/lang/dynamic_strings.php:247
2513
  msgid "l-xh"
2514
  msgstr "Xhosa"
2515
 
2516
  # Yiddish
2517
+ #: ../../admin/lang/dynamic_strings.php:248
2518
  msgid "l-yi"
2519
  msgstr "Yiddish"
2520
 
2521
  # Yoruba
2522
+ #: ../../admin/lang/dynamic_strings.php:249
2523
  msgid "l-yo"
2524
  msgstr "Yoruba"
2525
 
2526
  # Zhuang; Chuang
2527
+ #: ../../admin/lang/dynamic_strings.php:250
2528
  msgid "l-za"
2529
  msgstr "Zhuang; Chuang"
2530
 
2531
  # Chinese
2532
+ #: ../../admin/lang/dynamic_strings.php:251
2533
  msgid "l-zh"
2534
  msgstr "Chinese"
2535
 
2536
  # Zulu
2537
+ #: ../../admin/lang/dynamic_strings.php:252
2538
  msgid "l-zu"
2539
  msgstr "Zulu"
2540
 
2541
  # Arabic (Saudi Arabia)
2542
+ #: ../../admin/lang/dynamic_strings.php:253
2543
  msgid "l-ar-sa"
2544
  msgstr "Arabic (Saudi Arabia)"
2545
 
2546
  # Arabic (Iraq)
2547
+ #: ../../admin/lang/dynamic_strings.php:254
2548
  msgid "l-ar-iq"
2549
  msgstr "Arabic (Iraq)"
2550
 
2551
  # Arabic (Egypt)
2552
+ #: ../../admin/lang/dynamic_strings.php:255
2553
  msgid "l-ar-eg"
2554
  msgstr "Arabic (Egypt)"
2555
 
2556
  # Arabic (Libya)
2557
+ #: ../../admin/lang/dynamic_strings.php:256
2558
  msgid "l-ar-ly"
2559
  msgstr "Arabic (Libya)"
2560
 
2561
  # Arabic (Algeria)
2562
+ #: ../../admin/lang/dynamic_strings.php:257
2563
  msgid "l-ar-dz"
2564
  msgstr "Arabic (Algeria)"
2565
 
2566
  # Arabic (Morocco)
2567
+ #: ../../admin/lang/dynamic_strings.php:258
2568
  msgid "l-ar-ma"
2569
  msgstr "Arabic (Morocco)"
2570
 
2571
  # Arabic (Tunisia)
2572
+ #: ../../admin/lang/dynamic_strings.php:259
2573
  msgid "l-ar-tn"
2574
  msgstr "Arabic (Tunisia)"
2575
 
2576
  # Arabic (Oman)
2577
+ #: ../../admin/lang/dynamic_strings.php:260
2578
  msgid "l-ar-om"
2579
  msgstr "Arabic (Oman)"
2580
 
2581
  # Arabic (Yemen)
2582
+ #: ../../admin/lang/dynamic_strings.php:261
2583
  msgid "l-ar-ye"
2584
  msgstr "Arabic (Yemen)"
2585
 
2586
  # Arabic (Syria)
2587
+ #: ../../admin/lang/dynamic_strings.php:262
2588
  msgid "l-ar-sy"
2589
  msgstr "Arabic (Syria)"
2590
 
2591
  # Arabic (Jordan)
2592
+ #: ../../admin/lang/dynamic_strings.php:263
2593
  msgid "l-ar-jo"
2594
  msgstr "Arabic (Jordan)"
2595
 
2596
  # Arabic (Lebanon)
2597
+ #: ../../admin/lang/dynamic_strings.php:264
2598
  msgid "l-ar-lb"
2599
  msgstr "Arabic (Lebanon)"
2600
 
2601
  # Arabic (Kuwait)
2602
+ #: ../../admin/lang/dynamic_strings.php:265
2603
  msgid "l-ar-kw"
2604
  msgstr "Arabic (Kuwait)"
2605
 
2606
  # Arabic (United Arab Emirates)
2607
+ #: ../../admin/lang/dynamic_strings.php:266
2608
  msgid "l-ar-ae"
2609
  msgstr "Arabic (United Arab Emirates)"
2610
 
2611
  # Arabic (Bahrain)
2612
+ #: ../../admin/lang/dynamic_strings.php:267
2613
  msgid "l-ar-bh"
2614
  msgstr "Arabic (Bahrain)"
2615
 
2616
  # Arabic (Qatar)
2617
+ #: ../../admin/lang/dynamic_strings.php:268
2618
  msgid "l-ar-qa"
2619
  msgstr "Arabic (Qatar)"
2620
 
2621
+ # Bulgarian
2622
+ #: ../../admin/lang/dynamic_strings.php:269
2623
+ #, fuzzy
2624
+ msgid "l-bg-bg"
2625
+ msgstr "Bulgarian"
2626
+
2627
  # Chinese (China)
2628
+ #: ../../admin/lang/dynamic_strings.php:270
2629
  msgid "l-zh-cn"
2630
  msgstr "Chinese (China)"
2631
 
2632
  # Chinese (Taiwan)
2633
+ #: ../../admin/lang/dynamic_strings.php:271
2634
  msgid "l-zh-tw"
2635
  msgstr "Chinese (Taiwan)"
2636
 
2637
  # Chinese (Hong Kong)
2638
+ #: ../../admin/lang/dynamic_strings.php:272
2639
  msgid "l-zh-hk"
2640
  msgstr "Chinese (Hong Kong)"
2641
 
2642
  # Chinese (Singapore)
2643
+ #: ../../admin/lang/dynamic_strings.php:273
2644
  msgid "l-zh-sg"
2645
  msgstr "Chinese (Singapore)"
2646
 
2647
  # Dutch (Netherlands)
2648
+ #: ../../admin/lang/dynamic_strings.php:274
2649
  msgid "l-nl-nl"
2650
  msgstr "Dutch (Netherlands)"
2651
 
2652
  # Dutch (Belgium)
2653
+ #: ../../admin/lang/dynamic_strings.php:275
2654
  msgid "l-nl-be"
2655
  msgstr "Dutch (Belgium)"
2656
 
2657
  # English (United Kingdom)
2658
+ #: ../../admin/lang/dynamic_strings.php:276
2659
  msgid "l-en-gb"
2660
  msgstr "English (United Kingdom)"
2661
 
2662
  # English (United States)
2663
+ #: ../../admin/lang/dynamic_strings.php:277
2664
  msgid "l-en-us"
2665
  msgstr "English (United States)"
2666
 
2667
  # English (Australia)
2668
+ #: ../../admin/lang/dynamic_strings.php:278
2669
  msgid "l-en-au"
2670
  msgstr "English (Australia)"
2671
 
2672
  # English (Canada)
2673
+ #: ../../admin/lang/dynamic_strings.php:279
2674
  msgid "l-en-ca"
2675
  msgstr "English (Canada)"
2676
 
2677
  # English (New Zealand)
2678
+ #: ../../admin/lang/dynamic_strings.php:280
2679
  msgid "l-en-nz"
2680
  msgstr "English (New Zealand)"
2681
 
2682
  # English (Ireland)
2683
+ #: ../../admin/lang/dynamic_strings.php:281
2684
  msgid "l-en-ie"
2685
  msgstr "English (Ireland)"
2686
 
2687
  # English (South Africa)
2688
+ #: ../../admin/lang/dynamic_strings.php:282
2689
  msgid "l-en-za"
2690
  msgstr "English (South Africa)"
2691
 
2692
  # English (Jamaica)
2693
+ #: ../../admin/lang/dynamic_strings.php:283
2694
  msgid "l-en-jm"
2695
  msgstr "English (Jamaica)"
2696
 
2697
  # English (Belize)
2698
+ #: ../../admin/lang/dynamic_strings.php:284
2699
  msgid "l-en-bz"
2700
  msgstr "English (Belize)"
2701
 
2702
  # English (Trinidad)
2703
+ #: ../../admin/lang/dynamic_strings.php:285
2704
  msgid "l-en-tt"
2705
  msgstr "English (Trinidad)"
2706
 
2707
  # French (Belgium)
2708
+ #: ../../admin/lang/dynamic_strings.php:286
2709
  msgid "l-fr-be"
2710
  msgstr "French (Belgium)"
2711
 
2712
  # French (France)
2713
+ #: ../../admin/lang/dynamic_strings.php:287
2714
  msgid "l-fr-fr"
2715
  msgstr "French (France)"
2716
 
2717
  # French (Switzerland)
2718
+ #: ../../admin/lang/dynamic_strings.php:288
2719
  msgid "l-fr-ch"
2720
  msgstr "French (Switzerland)"
2721
 
2722
  # French (Canada)
2723
+ #: ../../admin/lang/dynamic_strings.php:289
2724
  msgid "l-fr-ca"
2725
  msgstr "French (Canada)"
2726
 
2727
  # French (Luxembourg)
2728
+ #: ../../admin/lang/dynamic_strings.php:290
2729
  msgid "l-fr-lu"
2730
  msgstr "French (Luxembourg)"
2731
 
2732
  # German (Austria)
2733
+ #: ../../admin/lang/dynamic_strings.php:291
2734
  msgid "l-de-at"
2735
  msgstr "German (Austria)"
2736
 
2737
  # German (Germany)
2738
+ #: ../../admin/lang/dynamic_strings.php:292
2739
  msgid "l-de-de"
2740
  msgstr "German (Germany)"
2741
 
2742
  # German (Switzerland)
2743
+ #: ../../admin/lang/dynamic_strings.php:293
2744
  msgid "l-de-ch"
2745
  msgstr "German (Switzerland)"
2746
 
2747
  # German (Luxembourg)
2748
+ #: ../../admin/lang/dynamic_strings.php:294
2749
  msgid "l-de-lu"
2750
  msgstr "German (Luxembourg)"
2751
 
2752
  # German (Liechtenstein)
2753
+ #: ../../admin/lang/dynamic_strings.php:295
2754
  msgid "l-de-li"
2755
  msgstr "German (Liechtenstein)"
2756
 
2757
  # Greek (Greece)
2758
+ #: ../../admin/lang/dynamic_strings.php:296
2759
  msgid "l-el-gr"
2760
  msgstr "Greek (Greece)"
2761
 
2762
  # Spanish (Dominican Republic)
2763
+ #: ../../admin/lang/dynamic_strings.php:297
2764
  msgid "l-es-do"
2765
  msgstr "Spanish (Dominican Republic)"
2766
 
2767
  # Spanish (Argentina)
2768
+ #: ../../admin/lang/dynamic_strings.php:298
2769
  msgid "l-es-ar"
2770
  msgstr "Spanish (Argentina)"
2771
 
2772
  # Spanish (Colombia)
2773
+ #: ../../admin/lang/dynamic_strings.php:299
2774
  msgid "l-es-co"
2775
  msgstr "Spanish (Colombia)"
2776
 
2777
  # Spanish (Mexico)
2778
+ #: ../../admin/lang/dynamic_strings.php:300
2779
  msgid "l-es-mx"
2780
  msgstr "Spanish (Mexico)"
2781
 
2782
  # Spanish (Spain)
2783
+ #: ../../admin/lang/dynamic_strings.php:301
2784
  msgid "l-es-es"
2785
  msgstr "Spanish (Spain)"
2786
 
2787
  # Spanish (Guatemala)
2788
+ #: ../../admin/lang/dynamic_strings.php:302
2789
  msgid "l-es-gt"
2790
  msgstr "Spanish (Guatemala)"
2791
 
2792
  # Spanish (Costa Rica)
2793
+ #: ../../admin/lang/dynamic_strings.php:303
2794
  msgid "l-es-cr"
2795
  msgstr "Spanish (Costa Rica)"
2796
 
2797
  # Spanish (Panama)
2798
+ #: ../../admin/lang/dynamic_strings.php:304
2799
  msgid "l-es-pa"
2800
  msgstr "Spanish (Panama)"
2801
 
2802
  # Spanish (Venezuela)
2803
+ #: ../../admin/lang/dynamic_strings.php:305
2804
  msgid "l-es-ve"
2805
  msgstr "Spanish (Venezuela)"
2806
 
2807
  # Spanish (Peru)
2808
+ #: ../../admin/lang/dynamic_strings.php:306
2809
  msgid "l-es-pe"
2810
  msgstr "Spanish (Peru)"
2811
 
2812
  # Spanish (Ecuador)
2813
+ #: ../../admin/lang/dynamic_strings.php:307
2814
  msgid "l-es-ec"
2815
  msgstr "Spanish (Ecuador)"
2816
 
2817
  # Spanish (Chile)
2818
+ #: ../../admin/lang/dynamic_strings.php:308
2819
  msgid "l-es-cl"
2820
  msgstr "Spanish (Chile)"
2821
 
2822
  # Spanish (Uruguay)
2823
+ #: ../../admin/lang/dynamic_strings.php:309
2824
  msgid "l-es-uy"
2825
  msgstr "Spanish (Uruguay)"
2826
 
2827
  # Spanish (Paraguay)
2828
+ #: ../../admin/lang/dynamic_strings.php:310
2829
  msgid "l-es-py"
2830
  msgstr "Spanish (Paraguay)"
2831
 
2832
  # Spanish (Bolivia)
2833
+ #: ../../admin/lang/dynamic_strings.php:311
2834
  msgid "l-es-bo"
2835
  msgstr "Spanish (Bolivia)"
2836
 
2837
  # Spanish (El Salvador)
2838
+ #: ../../admin/lang/dynamic_strings.php:312
2839
  msgid "l-es-sv"
2840
  msgstr "Spanish (El Salvador)"
2841
 
2842
  # Spanish (Honduras)
2843
+ #: ../../admin/lang/dynamic_strings.php:313
2844
  msgid "l-es-hn"
2845
  msgstr "Spanish (Honduras)"
2846
 
2847
  # Spanish (Nicaragua)
2848
+ #: ../../admin/lang/dynamic_strings.php:314
2849
  msgid "l-es-ni"
2850
  msgstr "Spanish (Nicaragua)"
2851
 
2852
  # Spanish (Puerto Rico)
2853
+ #: ../../admin/lang/dynamic_strings.php:315
2854
  msgid "l-es-pr"
2855
  msgstr "Spanish (Puerto Rico)"
2856
 
2857
  # Hebrew (Israel)
2858
+ #: ../../admin/lang/dynamic_strings.php:316
2859
  msgid "l-he-il"
2860
  msgstr "Hebrew (Israel)"
2861
 
2862
  # Hungarian (Hungary)
2863
+ #: ../../admin/lang/dynamic_strings.php:317
2864
  msgid "l-hu-hu"
2865
  msgstr "Hungarian (Hungary)"
2866
 
2867
  # Internet Explorer Easter Egg
2868
+ #: ../../admin/lang/dynamic_strings.php:318
2869
  msgid "l-ie-ee"
2870
  msgstr "Internet Explorer Easter Egg"
2871
 
2872
  # Italian (Italia)
2873
+ #: ../../admin/lang/dynamic_strings.php:319
2874
  msgid "l-it-it"
2875
  msgstr "Italian (Italia)"
2876
 
2877
  # Italian (Switzerland)
2878
+ #: ../../admin/lang/dynamic_strings.php:320
2879
  msgid "l-it-ch"
2880
  msgstr "Italian (Switzerland)"
2881
 
2882
  # Korean (Republic of Korea)
2883
+ #: ../../admin/lang/dynamic_strings.php:321
2884
  msgid "l-ko-kr"
2885
  msgstr "Korean (Republic of Korea)"
2886
 
2887
  # Korean (Democratic People's Republic of Korea)
2888
+ #: ../../admin/lang/dynamic_strings.php:322
2889
  msgid "l-ko-kp"
2890
  msgstr "Korean (Democratic People's Republic of Korea)"
2891
 
2892
+ # Lithuanian
2893
+ #: ../../admin/lang/dynamic_strings.php:323
2894
+ #, fuzzy
2895
+ msgid "l-lt-lt"
2896
+ msgstr "Lithuanian"
2897
+
2898
  # Portuguese (Brazil)
2899
+ #: ../../admin/lang/dynamic_strings.php:324
2900
  msgid "l-pt-br"
2901
  msgstr "Portuguese (Brazil)"
2902
 
2903
  # Romanian (Moldava)
2904
+ #: ../../admin/lang/dynamic_strings.php:325
2905
  msgid "l-ro-md"
2906
  msgstr "Romanian (Moldava)"
2907
 
2908
+ # Romanian; Moldavian; Moldovan
2909
+ #: ../../admin/lang/dynamic_strings.php:326
2910
+ #, fuzzy
2911
+ msgid "l-ro-ro"
2912
+ msgstr "Romanian; Moldavian; Moldovan"
2913
+
2914
  # Russian (Russia)
2915
+ #: ../../admin/lang/dynamic_strings.php:327
2916
  msgid "l-ru-ru"
2917
  msgstr "Russian (Russia)"
2918
 
2919
  # Russian (Moldava)
2920
+ #: ../../admin/lang/dynamic_strings.php:328
2921
  msgid "l-ru-md"
2922
  msgstr "Russian (Moldava)"
2923
 
2924
  # Swedish (Sweden)
2925
+ #: ../../admin/lang/dynamic_strings.php:329
2926
  msgid "l-sv-se"
2927
  msgstr "Swedish (Sweden)"
2928
 
2929
  # Swedish (Finland)
2930
+ #: ../../admin/lang/dynamic_strings.php:330
2931
  msgid "l-sv-fi"
2932
  msgstr "Swedish (Finland)"
2933
 
2934
  # Japanese
2935
+ #: ../../admin/lang/dynamic_strings.php:331
2936
  #, fuzzy
2937
  msgid "l-ja-jp"
2938
  msgstr "Japanese"
2939
 
2940
  # Turkish
2941
+ #: ../../admin/lang/dynamic_strings.php:332
2942
  #, fuzzy
2943
  msgid "l-tr-tr"
2944
  msgstr "Turkish"
2945
 
2946
+ # Tatar
2947
+ #: ../../admin/lang/dynamic_strings.php:333
2948
+ #, fuzzy
2949
+ msgid "l-tt-ru"
2950
+ msgstr "Tatar"
2951
+
2952
+ # Ukrainian
2953
+ #: ../../admin/lang/dynamic_strings.php:334
2954
+ #, fuzzy
2955
+ msgid "l-uk-ua"
2956
+ msgstr "Ukrainian"
2957
+
2958
+ #: ../../admin/lang/dynamic_strings.php:335
2959
+ #: ../../admin/view/wp-slimstat-reports.php:424
2960
  msgid "l-"
2961
  msgstr "l-"
2962
 
2963
  # Unknown
2964
+ #: ../../admin/lang/dynamic_strings.php:336
2965
  msgid "l-empty"
2966
  msgstr "Unknown"
2967
 
2968
  # Unknown
2969
+ #: ../../admin/lang/dynamic_strings.php:337
2970
  msgid "l-xx"
2971
  msgstr "Unknown"
2972
 
2973
+ #: ../../admin/lang/dynamic_strings.php:338
2974
  msgid "c-xy"
2975
  msgstr "Local IP"
2976
 
2998
  msgstr ""
2999
 
3000
  #: ../../admin/view/index.php:46 ../../admin/view/wp-slimstat-reports.php:50
3001
+ #: ../../admin/view/wp-slimstat-reports.php:97
3002
  #, fuzzy
3003
  msgid "Browser Capabilities"
3004
  msgstr "Navegador"
4163
  msgid "c-mv"
4164
  msgstr "Maldives"
4165
 
4166
+ # European Union
4167
+ #: ../../admin/view/index.php:127
4168
+ msgid "c-eu"
4169
+ msgstr "European Union"
4170
+
4171
  # Unknown
4172
+ #: ../../admin/view/index.php:134 ../../admin/view/right-now.php:94
4173
+ #: ../../admin/view/wp-slimstat-reports.php:412
4174
+ #: ../../admin/view/wp-slimstat-reports.php:551
4175
  msgid "c-"
4176
  msgstr "Unknown"
4177
 
4178
+ #: ../../admin/view/index.php:142 ../../admin/view/right-now.php:54
4179
+ #: ../../admin/view/wp-slimstat-reports.php:374
4180
+ #: ../../admin/view/wp-slimstat-reports.php:514
4181
  msgid "No data to display"
4182
  msgstr "No hay datos que mostrar"
4183
 
4184
+ #: ../../admin/view/index.php:192
4185
  msgid "Your report here"
4186
  msgstr ""
4187
 
4188
+ #: ../../admin/view/index.php:194
4189
  #, fuzzy
4190
  msgid ""
4191
  "Yes, you can! Create and view your personalized analytics for WP SlimStat. "
4205
  "información, visite mi <a href=\"http://lab.duechiacchiere.it/\" target="
4206
  "\"_blank\"> Foro de Soporte </ a>."
4207
 
4208
+ #: ../../admin/view/index.php:208 ../../admin/view/wp-slimstat-reports.php:611
4209
+ #: ../../admin/view/wp-slimstat-reports.php:713
4210
+ #: ../../admin/view/wp-slimstat-reports.php:869
4211
  msgid "Pageviews"
4212
  msgstr "Paginas visitadas"
4213
 
4214
+ #: ../../admin/view/index.php:211
4215
  msgid ""
4216
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
4217
  "WP SlimStat leverages this information to identify returning visitors. "
4218
  "Please note that visitors also include registered users."
4219
  msgstr ""
4220
 
4221
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4222
  msgid "Take a sneak peek at what human visitors are doing on your website"
4223
  msgstr ""
4224
 
4225
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4226
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:310
4227
+ #: ../../admin/view/index.php:316 ../../admin/view/right-now.php:166
4228
  #, fuzzy
4229
  msgid "Color codes"
4230
  msgstr "Código de Pais"
4231
 
4232
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4233
  msgid "From a search result page"
4234
  msgstr ""
4235
 
4236
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4237
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:310
4238
+ #: ../../admin/view/index.php:316 ../../admin/view/right-now.php:169
4239
  #, fuzzy
4240
  msgid "Known Users"
4241
  msgstr "Navegadores recientes"
4242
 
4243
+ #: ../../admin/view/index.php:214 ../../admin/view/index.php:283
4244
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:310
4245
+ #: ../../admin/view/index.php:316 ../../admin/view/right-now.php:170
4246
  msgid "Other Humans"
4247
  msgstr ""
4248
 
4249
+ #: ../../admin/view/index.php:220
4250
+ msgid ""
4251
+ "WP SlimStat retrieves live information from Alexa, Facebook and Google, to "
4252
+ "measures your site's rankings. Values are updated every 12 hours. Filters "
4253
+ "set above don't apply to this report."
4254
+ msgstr ""
4255
+
4256
+ #: ../../admin/view/index.php:223
4257
  msgid ""
4258
+ "We have teamed up with HackerNinja.com to offer you a free surface security "
4259
+ "scan. By clicking submit, your website will be subjected to a full antivirus "
4260
+ "scan, Google Safe Browsing list check, and numerous other tests. NOTE: only "
4261
+ "your domain name (blog address) is being supplied to HackerNinja for the "
4262
+ "security scan. No other confidential information is being transmitted."
4263
  msgstr ""
4264
 
4265
+ #: ../../admin/view/index.php:226
4266
  #, fuzzy
4267
  msgid "Human Visits"
4268
  msgstr "Visitas humanas"
4269
 
4270
+ #: ../../admin/view/index.php:229 ../../admin/view/index.php:262
4271
  msgid ""
4272
  "This report shows you what languages your users have installed on their "
4273
  "computers."
4274
  msgstr ""
4275
 
4276
+ #: ../../admin/view/index.php:232 ../../admin/view/index.php:259
4277
  msgid ""
4278
  "A user agent is a generic term for any program used for accessing a website. "
4279
  "This includes browsers (such as Chrome), robots and spiders, and any other "
4282
  "Settings > SlimStat > Filters."
4283
  msgstr ""
4284
 
4285
+ #: ../../admin/view/index.php:235
4286
  msgid ""
4287
  "Internet Service Provider: a company which provides other companies or "
4288
  "individuals with access to the Internet. Your DSL or cable internet service "
4290
  "by setting the corresponding filter under Settings > SlimStat > Filters."
4291
  msgstr ""
4292
 
4293
+ #: ../../admin/view/index.php:238 ../../admin/view/index.php:256
4294
  msgid ""
4295
  "Which operating systems do your visitors use? Optimizing your site for the "
4296
  "appropriate technical capabilities helps make your site more engaging and "
4297
  "usable and can result in higher conversion rates and more sales."
4298
  msgstr ""
4299
 
4300
+ #: ../../admin/view/index.php:241
4301
  msgid ""
4302
  "This report shows the most common screen resolutions used by your visitors. "
4303
  "Knowing the most popular screen resolution of your visitors will help you "
4305
  "independence."
4306
  msgstr ""
4307
 
4308
+ #: ../../admin/view/index.php:244
4309
  msgid ""
4310
  "Which versions of Flash do your visitors have installed? Is Java supported "
4311
  "on your visitors' platforms?"
4312
  msgstr ""
4313
 
4314
+ #: ../../admin/view/index.php:247 ../../admin/view/index.php:280
4315
  msgid ""
4316
  "You can configure WP SlimStat to ignore a specific Country by setting the "
4317
  "corresponding filter under Settings > SlimStat > Filters."
4318
  msgstr ""
4319
 
4320
+ #: ../../admin/view/index.php:250
4321
  msgid ""
4322
  "You can ignore any specific Country by setting the corresponding filter "
4323
  "under Settings > SlimStat > Filters."
4324
  msgstr ""
4325
 
4326
+ #: ../../admin/view/index.php:253
4327
  msgid ""
4328
  "This report shows the most recent screen resolutions used by your visitors. "
4329
  "Knowing the most popular screen resolution of your visitors will help you "
4331
  "independence."
4332
  msgstr ""
4333
 
4334
+ #: ../../admin/view/index.php:265
4335
  msgid ""
4336
  "This report shows you what user agent families (no version considered) are "
4337
  "popular among your visitors."
4338
  msgstr ""
4339
 
4340
+ #: ../../admin/view/index.php:268
4341
  msgid ""
4342
  "This report shows you what operating system families (no version considered) "
4343
  "are popular among your visitors."
4344
  msgstr ""
4345
 
4346
+ #: ../../admin/view/index.php:271
4347
  msgid "List of registered users who recently visited your website."
4348
  msgstr ""
4349
 
4350
+ #: ../../admin/view/index.php:274
4351
  msgid "This report lists your most active registered users."
4352
  msgstr ""
4353
 
4354
+ #: ../../admin/view/index.php:289
4355
  #, fuzzy
4356
  msgid "Average Pageviews per Visit"
4357
  msgstr "Promedio de páginas vistas por horas"
4358
 
4359
+ #: ../../admin/view/index.php:292
4360
  msgid "This report lists the most recent posts viewed on your site, by title."
4361
  msgstr ""
4362
 
4363
+ #: ../../admin/view/index.php:295
4364
  msgid ""
4365
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
4366
  "left your site from the entrance (landing) page."
4367
  msgstr ""
4368
 
4369
+ #: ../../admin/view/index.php:298
4370
  msgid ""
4371
  "The 404 or Not Found error message is a HTTP standard response code "
4372
  "indicating that the client was able to communicate with the server, but the "
4374
  "to detect attack attempts, by looking at patterns in 404 URLs."
4375
  msgstr ""
4376
 
4377
+ #: ../../admin/view/index.php:301
4378
  msgid "Searches performed using Wordpress' built-in search functionality."
4379
  msgstr ""
4380
 
4381
+ #: ../../admin/view/index.php:304
4382
  msgid ""
4383
  "Categories provide a helpful way to group related posts together, and to "
4384
  "quickly tell readers what a post is about. Categories also make it easier "
4385
  "for people to find your content."
4386
  msgstr ""
4387
 
4388
+ #: ../../admin/view/index.php:307 ../../admin/view/index.php:316
4389
  msgid ""
4390
  "<strong>Link Details</strong><br>- <em>A:n</em> means that the n-th link in "
4391
  "the page was clicked.<br>- <em>ID:xx</em> is shown when the corresponding "
4392
  "link has an ID attribute associated to it."
4393
  msgstr ""
4394
 
4395
+ #: ../../admin/view/index.php:310
4396
  msgid ""
4397
  "This report lists any <em>event</em> occurred on your website. Please refer "
4398
  "to the FAQ for more information on how to leverage this functionality."
4399
  msgstr ""
4400
 
4401
+ #: ../../admin/view/index.php:313
4402
  msgid "This report lists the most popular posts on your site, by title."
4403
  msgstr ""
4404
 
4405
  #: ../../admin/view/right-now.php:38
4406
+ #: ../../admin/view/wp-slimstat-reports.php:303
4407
  msgid "Refresh"
4408
  msgstr ""
4409
 
4421
  msgstr ""
4422
 
4423
  #: ../../admin/view/right-now.php:73 ../../admin/view/right-now.php:82
4424
+ #: ../../admin/view/wp-slimstat-reports.php:473
4425
  #, php-format
4426
  msgid "Filter results where IP equals %s"
4427
  msgstr ""
4437
  msgstr ""
4438
 
4439
  #: ../../admin/view/right-now.php:94
4440
+ #: ../../admin/view/wp-slimstat-reports.php:551
4441
  msgid "Country"
4442
  msgstr "País"
4443
 
4464
  msgstr ""
4465
 
4466
  #: ../../admin/view/right-now.php:144
4467
+ #: ../../admin/view/wp-slimstat-reports.php:466
4468
+ #: ../../admin/view/wp-slimstat-reports.php:470
4469
+ #: ../../admin/view/wp-slimstat-reports.php:533
4470
+ #: ../../admin/view/wp-slimstat-reports.php:561
4471
+ #: ../../admin/view/wp-slimstat-reports.php:577
4472
  #, fuzzy
4473
  msgid "Open this URL in a new window"
4474
  msgstr "Abrir %s en una nueva ventana"
4475
 
4476
  #: ../../admin/view/right-now.php:144
4477
+ #: ../../admin/view/wp-slimstat-reports.php:577
4478
  #, php-format
4479
  msgid "Filter results where resource equals %s"
4480
  msgstr ""
4526
  msgstr "Acerca de WP-SlimStat"
4527
 
4528
  #: ../../admin/view/wp-slimstat-reports.php:79
4529
+ #: ../../admin/view/wp-slimstat-reports.php:91
4530
+ #: ../../admin/view/wp-slimstat-reports.php:110
4531
  #, fuzzy
4532
  msgid "Summary"
4533
  msgstr "Sumario de"
4538
  msgstr "Palabras clave recientes"
4539
 
4540
  #: ../../admin/view/wp-slimstat-reports.php:81
4541
+ #: ../../admin/view/wp-slimstat-reports.php:115
4542
  msgid "Spy View"
4543
  msgstr ""
4544
 
4545
  #: ../../admin/view/wp-slimstat-reports.php:82
4546
+ #: ../../admin/view/wp-slimstat-reports.php:116
4547
  #, fuzzy
4548
  msgid "Recent Search Terms"
4549
  msgstr "Búsquedas Internas Recientes"
4550
 
4551
  #: ../../admin/view/wp-slimstat-reports.php:83
4552
  #, fuzzy
 
 
 
 
 
4553
  msgid "Top Pages"
4554
  msgstr "Principales Páginas de Salida"
4555
 
4556
+ #: ../../admin/view/wp-slimstat-reports.php:84
4557
+ #: ../../admin/view/wp-slimstat-reports.php:113
 
 
 
 
 
 
4558
  #, fuzzy
4559
  msgid "Top Traffic Sources"
4560
  msgstr "Origen del Tráfico"
4561
 
4562
+ #: ../../admin/view/wp-slimstat-reports.php:85
4563
  #, fuzzy
4564
  msgid "Top Known Visitors"
4565
  msgstr "Palabras clave recientes"
4566
 
4567
+ #: ../../admin/view/wp-slimstat-reports.php:86
4568
+ #: ../../admin/view/wp-slimstat-reports.php:111
4569
+ #: ../../admin/view/wp-slimstat-reports.php:131
4570
  #, fuzzy
4571
  msgid "Top Search Terms"
4572
  msgstr "Principales Recursos"
4573
 
4574
+ #: ../../admin/view/wp-slimstat-reports.php:87
4575
+ #: ../../admin/view/wp-slimstat-reports.php:98
4576
+ #: ../../admin/view/wp-slimstat-reports.php:112
4577
  msgid "Top Countries"
4578
  msgstr "Paises que más visitan"
4579
 
4580
+ #: ../../admin/view/wp-slimstat-reports.php:88
4581
+ msgid "Rankings"
4582
+ msgstr ""
4583
+
4584
+ #: ../../admin/view/wp-slimstat-reports.php:89
4585
+ msgid "Security Scan"
4586
+ msgstr ""
4587
 
4588
+ #: ../../admin/view/wp-slimstat-reports.php:90
4589
  #, fuzzy
4590
  msgid "Human Visits (chart)"
4591
  msgstr "Visitas humanas por hora"
4592
 
4593
+ #: ../../admin/view/wp-slimstat-reports.php:92
4594
  #, fuzzy
4595
  msgid "Top Languages"
4596
  msgstr "Idiomas"
4597
 
4598
+ #: ../../admin/view/wp-slimstat-reports.php:93
4599
  #, fuzzy
4600
  msgid "Top Browsers"
4601
  msgstr "Navegador"
4602
 
4603
+ #: ../../admin/view/wp-slimstat-reports.php:94
4604
  #, fuzzy
4605
  msgid "Top Service Providers"
4606
  msgstr "Principales Recursos"
4607
 
4608
+ #: ../../admin/view/wp-slimstat-reports.php:95
4609
  #, fuzzy
4610
  msgid "Top Operating Systems"
4611
  msgstr "Sistemas Operativos"
4612
 
4613
+ #: ../../admin/view/wp-slimstat-reports.php:96
4614
  #, fuzzy
4615
  msgid "Top Screen Resolutions"
4616
  msgstr "Resolución de Pantalla"
4617
 
4618
+ #: ../../admin/view/wp-slimstat-reports.php:99
4619
  #, fuzzy
4620
  msgid "Visit Duration"
4621
  msgstr "Visitas"
4622
 
4623
+ #: ../../admin/view/wp-slimstat-reports.php:100
4624
+ #: ../../admin/view/wp-slimstat-reports.php:117
4625
+ msgid "Recent Countries"
4626
+ msgstr "Paises Recientes"
4627
+
4628
+ #: ../../admin/view/wp-slimstat-reports.php:101
4629
  #, fuzzy
4630
  msgid "Recent Screen Resolutions"
4631
  msgstr "Resolución de Pantalla"
4632
 
4633
+ #: ../../admin/view/wp-slimstat-reports.php:102
4634
  #, fuzzy
4635
  msgid "Recent Operating Systems"
4636
  msgstr "Sistemas Operativos"
4637
 
4638
+ #: ../../admin/view/wp-slimstat-reports.php:103
4639
  #, fuzzy
4640
  msgid "Recent Browsers"
4641
  msgstr "Contenidos Recientes"
4642
 
4643
+ #: ../../admin/view/wp-slimstat-reports.php:104
4644
  #, fuzzy
4645
  msgid "Recent Languages"
4646
  msgstr "Idiomas"
4647
 
4648
+ #: ../../admin/view/wp-slimstat-reports.php:105
4649
  #, fuzzy
4650
  msgid "Top Browser Families"
4651
  msgstr "Navegador"
4652
 
4653
+ #: ../../admin/view/wp-slimstat-reports.php:106
4654
  msgid "Top OS Families"
4655
  msgstr ""
4656
 
4657
+ #: ../../admin/view/wp-slimstat-reports.php:107
4658
  #, fuzzy
4659
  msgid "Recent Users"
4660
  msgstr "Buscadores"
4661
 
4662
+ #: ../../admin/view/wp-slimstat-reports.php:108
4663
  #, fuzzy
4664
  msgid "Top Users"
4665
  msgstr "Buscadores"
4666
 
4667
+ #: ../../admin/view/wp-slimstat-reports.php:109
4668
  #, fuzzy
4669
  msgid "Traffic Sources (chart)"
4670
  msgstr "Origen del Tráfico"
4671
 
4672
+ #: ../../admin/view/wp-slimstat-reports.php:114
4673
  #, fuzzy
4674
  msgid "Top Referring Search Engines"
4675
  msgstr "Motores de Búsqueda"
4676
 
4677
+ #: ../../admin/view/wp-slimstat-reports.php:118
4678
+ #: ../../admin/view/wp-slimstat-reports.php:134
4679
  #, fuzzy
4680
  msgid "Top Landing Pages"
4681
  msgstr "Principales Páginas de Salida"
4682
 
4683
+ #: ../../admin/view/wp-slimstat-reports.php:119
4684
  #, fuzzy
4685
  msgid "Average Pageviews per Visit (chart)"
4686
  msgstr "Promedio de páginas vistas por horas"
4687
 
4688
+ #: ../../admin/view/wp-slimstat-reports.php:120
4689
  #, fuzzy
4690
  msgid "Recent Posts"
4691
  msgstr "Contenidos Recientes"
4692
 
4693
+ #: ../../admin/view/wp-slimstat-reports.php:121
4694
  #, fuzzy
4695
  msgid "Recent Bounce Pages"
4696
  msgstr "Páginas recientes de rebote"
4697
 
4698
+ #: ../../admin/view/wp-slimstat-reports.php:122
4699
  msgid "Recent Feeds"
4700
  msgstr "Feeds Recientes"
4701
 
4702
+ #: ../../admin/view/wp-slimstat-reports.php:123
4703
  #, fuzzy
4704
  msgid "Recent 404 URLs"
4705
  msgstr "Páginas 404 recientes"
4706
 
4707
+ #: ../../admin/view/wp-slimstat-reports.php:124
4708
  msgid "Recent Internal Searches"
4709
  msgstr "Búsquedas Internas Recientes"
4710
 
4711
+ #: ../../admin/view/wp-slimstat-reports.php:125
4712
  #, fuzzy
4713
  msgid "Top Categories"
4714
  msgstr "Principales Páginas de Salida"
4715
 
4716
+ #: ../../admin/view/wp-slimstat-reports.php:126
4717
  msgid "Recent Outbound Links"
4718
  msgstr "Enlaces Salientes Recientes"
4719
 
4720
+ #: ../../admin/view/wp-slimstat-reports.php:127
4721
  #, fuzzy
4722
  msgid "Recent Events"
4723
  msgstr "Contenidos Recientes"
4724
 
4725
+ #: ../../admin/view/wp-slimstat-reports.php:128
4726
  #, fuzzy
4727
  msgid "Top Posts"
4728
  msgstr "Paises que más visitan"
4729
 
4730
+ #: ../../admin/view/wp-slimstat-reports.php:129
4731
  #, fuzzy
4732
  msgid "Top Feeds"
4733
  msgstr "Top Palabras Clave"
4734
 
4735
+ #: ../../admin/view/wp-slimstat-reports.php:130
4736
  #, fuzzy
4737
  msgid "Top Internal Searches"
4738
  msgstr "Búsquedas Internas Recientes"
4739
 
4740
+ #: ../../admin/view/wp-slimstat-reports.php:132
4741
  #, fuzzy
4742
  msgid "Recent Categories"
4743
  msgstr "Paises Recientes"
4744
 
4745
+ #: ../../admin/view/wp-slimstat-reports.php:133
4746
  msgid "Top 404 URLs"
4747
  msgstr ""
4748
 
4749
+ #: ../../admin/view/wp-slimstat-reports.php:135
4750
  #, fuzzy
4751
  msgid "Top Authors"
4752
  msgstr "Autor de la entrada(sección)"
4753
 
4754
+ #: ../../admin/view/wp-slimstat-reports.php:136
4755
  #, fuzzy
4756
  msgid "Top Tags"
4757
  msgstr "Principales Páginas de Salida"
4758
 
4759
+ #: ../../admin/view/wp-slimstat-reports.php:137
4760
  msgid "Recent Downloads"
4761
  msgstr "Descargas Recientes"
4762
 
4763
+ #: ../../admin/view/wp-slimstat-reports.php:138
4764
  msgid "Top Outbound Links and Downloads"
4765
  msgstr ""
4766
 
4767
+ #: ../../admin/view/wp-slimstat-reports.php:139
4768
+ #, fuzzy
4769
+ msgid "Your Content"
4770
+ msgstr "Contenido"
4771
+
4772
  #: ../../admin/view/wp-slimstat-reports.php:227
4773
  msgid "Chart controls"
4774
  msgstr ""
4790
  "Click on a data point to display the activity chart for each hour of that day"
4791
  msgstr ""
4792
 
4793
+ #: ../../admin/view/wp-slimstat-reports.php:260
4794
  msgid "src"
4795
  msgstr ""
4796
 
4797
+ #: ../../admin/view/wp-slimstat-reports.php:261
4798
  msgid "serp"
4799
  msgstr ""
4800
 
4801
+ #: ../../admin/view/wp-slimstat-reports.php:266
4802
  msgid "Go to the corresponding search engine result page"
4803
  msgstr ""
4804
 
4805
+ #: ../../admin/view/wp-slimstat-reports.php:269
4806
  msgid "Go to the referring page"
4807
  msgstr ""
4808
 
4809
+ #: ../../admin/view/wp-slimstat-reports.php:288
4810
  msgid "Remove all filters"
4811
  msgstr ""
4812
 
4813
+ #: ../../admin/view/wp-slimstat-reports.php:290
4814
+ #: ../../admin/view/wp-slimstat-reports.php:297
4815
  msgid "Current filters:"
4816
  msgstr "Filtros Actuales:"
4817
 
4818
+ #: ../../admin/view/wp-slimstat-reports.php:293
4819
  #, fuzzy
4820
  msgid "Remove filter for"
4821
  msgstr "Seleccionar filtro"
4822
 
4823
+ #: ../../admin/view/wp-slimstat-reports.php:329
4824
  #, php-format
4825
  msgid "%s Minute by Minute"
4826
  msgstr ""
4827
 
4828
+ #: ../../admin/view/wp-slimstat-reports.php:332
4829
  #, fuzzy, php-format
4830
  msgid "Hourly %s"
4831
  msgstr "Paginas visitadas"
4832
 
4833
+ #: ../../admin/view/wp-slimstat-reports.php:335
4834
  #, fuzzy, php-format
4835
  msgid "Monthly %s"
4836
  msgstr "Mes"
4837
 
4838
+ #: ../../admin/view/wp-slimstat-reports.php:338
4839
  #, fuzzy, php-format
4840
  msgid "Daily %s"
4841
  msgstr "Paginas visitadas"
4842
 
4843
+ #: ../../admin/view/wp-slimstat-reports.php:394
4844
  #, fuzzy
4845
  msgid "Category ID"
4846
  msgstr "ID de la entrada(sección) de la Categoria"
4847
 
4848
+ #: ../../admin/view/wp-slimstat-reports.php:427
4849
  msgid "OS Code"
4850
  msgstr ""
4851
 
4852
+ #: ../../admin/view/wp-slimstat-reports.php:437
4853
  #, fuzzy
4854
  msgid "Referrer"
4855
  msgstr "Referido"
4856
 
4857
+ #: ../../admin/view/wp-slimstat-reports.php:454
4858
  #, php-format
4859
  msgid "Filter results where %s %s %s"
4860
  msgstr ""
4861
 
4862
+ #: ../../admin/view/wp-slimstat-reports.php:461
4863
+ #: ../../admin/view/wp-slimstat-reports.php:655
4864
+ #: ../../admin/view/wp-slimstat-reports.php:666
4865
+ #: ../../admin/view/wp-slimstat-reports.php:671
4866
+ #: ../../admin/view/wp-slimstat-reports.php:676
4867
+ #: ../../admin/view/wp-slimstat-reports.php:681
4868
+ #: ../../admin/view/wp-slimstat-reports.php:686
4869
+ #: ../../admin/view/wp-slimstat-reports.php:691
4870
+ #: ../../admin/view/wp-slimstat-reports.php:696
4871
+ #: ../../admin/view/wp-slimstat-reports.php:701
4872
  #, fuzzy
4873
  msgid "Hits"
4874
  msgstr "Visitas"
4875
 
4876
+ #: ../../admin/view/wp-slimstat-reports.php:530
4877
  #, fuzzy
4878
  msgid "Search for"
4879
  msgstr "Sumario de"
4880
 
4881
+ #: ../../admin/view/wp-slimstat-reports.php:561
4882
+ #: ../../admin/view/wp-slimstat-reports.php:577
4883
  #, fuzzy
4884
  msgid "Source"
4885
  msgstr "Porcentaje de Abandonos"
4886
 
4887
+ #: ../../admin/view/wp-slimstat-reports.php:561
4888
  #, php-format
4889
  msgid "Filter results where domain equals %s"
4890
  msgstr ""
4891
 
4892
+ #: ../../admin/view/wp-slimstat-reports.php:563
4893
  msgid "Keywords"
4894
  msgstr "Palabras clave"
4895
 
4896
+ #: ../../admin/view/wp-slimstat-reports.php:564
4897
  #, php-format
4898
  msgid "Filter results where searchterm equals %s"
4899
  msgstr ""
4900
 
4901
+ #: ../../admin/view/wp-slimstat-reports.php:589
4902
  #, fuzzy
4903
  msgid "Total Pageviews"
4904
  msgstr "Paginas visitadas"
4905
 
4906
+ #: ../../admin/view/wp-slimstat-reports.php:590
4907
  #, fuzzy
4908
  msgid "DB Size"
4909
  msgstr "Tamaño de los Datos"
4910
 
4911
+ #: ../../admin/view/wp-slimstat-reports.php:591
4912
  msgid "Tracking Active"
4913
  msgstr "Seguimiento Activo"
4914
 
4915
+ #: ../../admin/view/wp-slimstat-reports.php:593
4916
  msgid "Tracking Browser Caps"
4917
  msgstr ""
4918
 
4919
+ #: ../../admin/view/wp-slimstat-reports.php:594
4920
  msgid "Auto purge"
4921
  msgstr "Autopurgar"
4922
 
4923
+ #: ../../admin/view/wp-slimstat-reports.php:595
4924
  #, fuzzy
4925
  msgid "Oldest pageview"
4926
  msgstr "Visita más larga"
4927
 
4928
+ #: ../../admin/view/wp-slimstat-reports.php:595
4929
  #, fuzzy
4930
  msgid "No visits"
4931
  msgstr "Visitantes"
4932
 
4933
+ #: ../../admin/view/wp-slimstat-reports.php:610
4934
+ #: ../../admin/view/wp-slimstat-reports.php:712
4935
  msgid ""
4936
  "A request to load a single HTML file. WP SlimStat logs a \"pageview\" each "
4937
  "time the tracking code is executed."
4938
  msgstr ""
4939
 
4940
+ #: ../../admin/view/wp-slimstat-reports.php:612
4941
  msgid "This counter is based on any user activity in the last 5 minutes."
4942
  msgstr ""
4943
 
4944
+ #: ../../admin/view/wp-slimstat-reports.php:613
4945
  msgid "Last 5 minutes"
4946
  msgstr ""
4947
 
4948
+ #: ../../admin/view/wp-slimstat-reports.php:614
4949
  msgid "This counter is based on any user activity in the last 30 minutes."
4950
  msgstr ""
4951
 
4952
+ #: ../../admin/view/wp-slimstat-reports.php:615
4953
  msgid "Last 30 minutes"
4954
  msgstr ""
4955
 
4956
+ #: ../../admin/view/wp-slimstat-reports.php:616
4957
  msgid "Filter results where date equals today"
4958
  msgstr ""
4959
 
4960
+ #: ../../admin/view/wp-slimstat-reports.php:616
4961
  msgid "Today"
4962
  msgstr ""
4963
 
4964
+ #: ../../admin/view/wp-slimstat-reports.php:617
4965
  msgid "Filter results where date equals yesterday"
4966
  msgstr ""
4967
 
4968
+ #: ../../admin/view/wp-slimstat-reports.php:617
4969
  msgid "Yesterday"
4970
  msgstr ""
4971
 
4972
+ #: ../../admin/view/wp-slimstat-reports.php:618
4973
  msgid "How many pages have been visited on average during the current period."
4974
  msgstr ""
4975
 
4976
+ #: ../../admin/view/wp-slimstat-reports.php:619
4977
+ #: ../../admin/view/wp-slimstat-reports.php:882
4978
  msgid "Avg Pageviews"
4979
  msgstr "Promedio Paginas Visitadas"
4980
 
4981
+ #: ../../admin/view/wp-slimstat-reports.php:620
4982
  msgid ""
4983
  "Visitors who landed on your site after searching for a keyword on Google, "
4984
  "Yahoo, etc."
4985
  msgstr ""
4986
 
4987
+ #: ../../admin/view/wp-slimstat-reports.php:621
4988
  #, fuzzy
4989
  msgid "From Search Results"
4990
  msgstr "Principales Recursos"
4991
 
4992
+ #: ../../admin/view/wp-slimstat-reports.php:622
4993
  msgid ""
4994
  "Used to differentiate between multiple requests to download a file from one "
4995
  "internet address (IP) and requests originating from many distinct addresses"
4996
  msgstr ""
4997
 
4998
+ #: ../../admin/view/wp-slimstat-reports.php:623
4999
+ #: ../../admin/view/wp-slimstat-reports.php:637
5000
+ #: ../../admin/view/wp-slimstat-reports.php:869
5001
+ #: ../../admin/view/wp-slimstat-reports.php:873
5002
+ #: ../../admin/view/wp-slimstat-reports.php:877
5003
  msgid "Unique IPs"
5004
  msgstr "IPs Unicas"
5005
 
5006
+ #: ../../admin/view/wp-slimstat-reports.php:634
5007
  msgid ""
5008
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
5009
  "multiple times if they perform multiple visits."
5010
  msgstr ""
5011
 
5012
+ #: ../../admin/view/wp-slimstat-reports.php:635
5013
  msgid "Human visits"
5014
  msgstr "Visitas humanas"
5015
 
5016
+ #: ../../admin/view/wp-slimstat-reports.php:636
5017
  msgid "This number includes <strong>human visits</strong> only."
5018
  msgstr ""
5019
 
5020
+ #: ../../admin/view/wp-slimstat-reports.php:638
5021
+ #: ../../admin/view/wp-slimstat-reports.php:724
5022
  msgid ""
5023
  "Percentage of single-page visits, i.e. visits in which the person left your "
5024
  "site from the entrance page."
5025
  msgstr ""
5026
 
5027
+ #: ../../admin/view/wp-slimstat-reports.php:639
5028
  msgid "Bounce rate"
5029
  msgstr "Porcentaje de Abandonos"
5030
 
5031
+ #: ../../admin/view/wp-slimstat-reports.php:640
5032
  msgid "Visitors who had previously left a comment on your blog."
5033
  msgstr ""
5034
 
5035
+ #: ../../admin/view/wp-slimstat-reports.php:641
5036
  #, fuzzy
5037
  msgid "Known visitors"
5038
  msgstr "Palabras clave recientes"
5039
 
5040
+ #: ../../admin/view/wp-slimstat-reports.php:642
5041
  msgid "Human users who visited your site only once."
5042
  msgstr ""
5043
 
5044
+ #: ../../admin/view/wp-slimstat-reports.php:643
5045
  #, fuzzy
5046
  msgid "New visitors"
5047
  msgstr "Visitantes"
5048
 
5049
+ #: ../../admin/view/wp-slimstat-reports.php:644
5050
  msgid "Bots"
5051
  msgstr "Motores de Búsqueda"
5052
 
5053
+ #: ../../admin/view/wp-slimstat-reports.php:645
5054
  msgid "Pages per visit"
5055
  msgstr "Páginas por visita"
5056
 
5057
+ #: ../../admin/view/wp-slimstat-reports.php:646
5058
+ #: ../../admin/view/wp-slimstat-reports.php:882
5059
  msgid "Longest visit"
5060
  msgstr "Visita más larga"
5061
 
5062
+ #: ../../admin/view/wp-slimstat-reports.php:646
5063
  #, fuzzy
5064
  msgid "hits"
5065
  msgstr "Visitas"
5066
 
5067
+ #: ../../admin/view/wp-slimstat-reports.php:667
5068
  msgid "0 - 30 seconds"
5069
  msgstr ""
5070
 
5071
+ #: ../../admin/view/wp-slimstat-reports.php:672
5072
  msgid "31 - 60 seconds"
5073
  msgstr ""
5074
 
5075
+ #: ../../admin/view/wp-slimstat-reports.php:677
5076
  msgid "1 - 3 minutes"
5077
  msgstr ""
5078
 
5079
+ #: ../../admin/view/wp-slimstat-reports.php:682
5080
  msgid "3 - 5 minutes"
5081
  msgstr ""
5082
 
5083
+ #: ../../admin/view/wp-slimstat-reports.php:687
5084
  msgid "5 - 7 minutes"
5085
  msgstr ""
5086
 
5087
+ #: ../../admin/view/wp-slimstat-reports.php:692
5088
  msgid "7 - 10 minutes"
5089
  msgstr ""
5090
 
5091
+ #: ../../admin/view/wp-slimstat-reports.php:697
5092
  msgid "10 - 20 minutes"
5093
  msgstr ""
5094
 
5095
+ #: ../../admin/view/wp-slimstat-reports.php:702
5096
  msgid "More than 20 minutes"
5097
  msgstr ""
5098
 
5099
+ #: ../../admin/view/wp-slimstat-reports.php:714
5100
  msgid ""
5101
  "A referrer (or referring site) is the site that a visitor previously visited "
5102
  "before following a link to your site."
5103
  msgstr ""
5104
 
5105
+ #: ../../admin/view/wp-slimstat-reports.php:715
5106
  #, fuzzy
5107
  msgid "Unique Referrers"
5108
  msgstr "Referidos Únicos"
5109
 
5110
+ #: ../../admin/view/wp-slimstat-reports.php:716
5111
  msgid ""
5112
  "Visitors who visited the site by typing the URL directly into their browser. "
5113
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
5115
  "documents that don't include tracking variables."
5116
  msgstr ""
5117
 
5118
+ #: ../../admin/view/wp-slimstat-reports.php:717
5119
  #, fuzzy
5120
  msgid "Direct Pageviews"
5121
  msgstr "Paginas visitadas"
5122
 
5123
+ #: ../../admin/view/wp-slimstat-reports.php:718
5124
  msgid ""
5125
  "Visitors who came to your site via searches on Google or some other search "
5126
  "engine."
5127
  msgstr ""
5128
 
5129
+ #: ../../admin/view/wp-slimstat-reports.php:719
5130
  msgid "From a search result"
5131
  msgstr ""
5132