Head Cleaner - Version 1.3.0

Version Description

Download this release

Release Info

Developer wokamoto
Plugin Icon wp plugin Head Cleaner
Version 1.3.0
Comparing to
See all releases

Code changes from version 1.2.0 to 1.3.0

head-cleaner.php CHANGED
@@ -1,11 +1,13 @@
1
  <?php
2
  /*
3
  Plugin Name: Head Cleaner
4
- Version: 1.2.0
5
  Plugin URI: http://wppluginsj.sourceforge.jp/head-cleaner/
6
  Description: Cleaning tags from your WordPress header and footer.
7
  Author: wokamoto
8
  Author URI: http://dogmap.jp/
 
 
9
 
10
  License:
11
  Released under the GPL license
@@ -107,7 +109,7 @@ if (!class_exists('wokController') || !class_exists('wokScriptManager'))
107
  //**************************************************************************************
108
  class HeadCleanerController extends wokController {
109
  public $plugin_name = 'head-cleaner';
110
- public $plugin_ver = '1.2.0';
111
 
112
  // Deafault Options
113
  private $options_default = array(
@@ -136,6 +138,7 @@ class HeadCleanerController extends wokController {
136
  'ie_conditional' => false,
137
  'canonical_tag' => true,
138
  'gzip_on' => false,
 
139
  );
140
  private $csstidy_template = array(
141
  'low_compression' ,
@@ -207,10 +210,6 @@ class HeadCleanerController extends wokController {
207
  }
208
  }
209
 
210
- // Set browscap
211
- if ( !ini_get('browscap') )
212
- ini_set('browscap', dirname(__FILE__) . '/includes/php_browscap.ini');
213
-
214
  // Require PHP Libraries
215
  if (!is_admin())
216
  $this->_require_libraries();
@@ -274,6 +273,10 @@ class HeadCleanerController extends wokController {
274
  require($includes . 'csstidy-1.3/class.csstidy.php');
275
  $this->options['css_optimise'] = class_exists('csstidy') && $this->options['css_optimise'];
276
  }
 
 
 
 
277
  }
278
 
279
  //**************************************************************************************
@@ -450,11 +453,6 @@ class HeadCleanerController extends wokController {
450
  $elements = $dom->find("link[rel='stylesheet']");
451
  foreach ((array) $elements as $element) {
452
  $tag = trim($element);
453
- if (isset($element->href)) {
454
- $src = str_replace($this->wp_url, ABSPATH, trim(preg_replace('/\.css\?.*$/i', '.css', $element->href)));
455
- $this->_file_gzip($src);
456
- }
457
-
458
  if (strpos($css_tag, $tag) === FALSE) {
459
  if (strpos($element->href, $this->wp_url) === FALSE) {
460
  $css_tag .= $tag . "\n";
@@ -515,84 +513,82 @@ class HeadCleanerController extends wokController {
515
  unset($wk_inline_css);
516
  unset($element); unset($elements);
517
 
518
- if ($this->_is_javascript()) {
519
- $inner_js = '';
520
- $foot_js = '';
521
- $js_src = array();
522
- $js_libs = array();
523
- $elements = $dom->find("script");
524
- foreach ((array) $elements as $element) {
525
- if (!isset($element->src)) {
526
- $inline_js .= $this->_remove_comment($element->innertext, 'js');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
527
  } else {
528
- $src = trim($element->src);
529
- if (!isset($this->head_js[$src]))
530
- $this->head_js[$src] = true;
531
-
532
- $find = FALSE;
533
- if (preg_match('/\/((prototype|jquery|mootools)\.js)\?ver=([\.\d]+)[^\?]*$/i', $src, $matches)) {
534
- list($find, $filename, $product, $version) = $matches;
535
- } elseif (preg_match('/\/((prototype|jquery|mootools)[\-\.](min|[\.\d]+)[^\/]*\.js)\?[^\?]*$/i', $src, $matches)) {
536
- list($find, $filename, $product, $version) = $matches;
537
- } elseif (preg_match('/\/scriptaculous\/((builder|controls|dragdrop|effects|wp\-scriptaculous|scriptaculous|slider|sound|unittest)\.js)\?ver\=([\.\d]+)[^\?]*$/i', $src, $matches)) {
538
- list($find, $filename, $product, $version) = $matches;
539
- $product = (strpos($product, 'scriptaculous') === FALSE
540
- ? 'scriptaculous/' . $product
541
- : 'scriptaculous/scriptaculous');
542
- }
543
- unset($matches);
544
-
545
- if ($find !== FALSE) {
546
- $version = trim(substr($version, -1) === '.' ? substr($version, 0, -1) : $version);
547
- if (empty($version))
548
- $version = preg_replace('/^.*\/([\.\d]+)\/.*$/', '$1', $src);
549
- if (!preg_match('/^[\.\d]*\d$/', $version))
550
- $version = '1';
551
- $js_libs[$product][$version] = $src;
552
- } elseif ($this->head_js[$src] === FALSE) {
553
- $foot_js .= trim($element) . "\n";
554
- } elseif (strpos($src, $this->wp_url) === FALSE) {
555
- $script_tag .= trim($element) . "\n";
556
- } else {
557
- $inner_js .= trim($element) . "\n";
558
- $js_src[] = $element->src;
559
- }
560
  }
561
  }
562
- unset($element); unset($elements);
 
563
 
564
- // JavaScript FrameWork (Prototype.js > jQuery > mootools)
565
- if (count($js_libs) > 0) {
566
- list($js_libs_src, $wk_inner_js, $wk_outer_js) = $this->_js_framework($js_libs);
567
 
568
- if (count($js_libs_src) > 0)
569
- $js_src = array_merge($js_libs_src, $js_src);
570
 
571
- $script_tag = $script_tag . $wk_outer_js;
572
- $inner_js = $wk_inner_js . $inner_js;
573
 
574
- unset($js_libs_src); unset($js_libs);
575
- }
576
 
577
- $inline_js = trim($inline_js);
578
- if ($this->options['cache_enabled']) {
579
- if ($this->options['combined_js']) {
580
- $inner_js = $this->_combined_javascript($js_src, trim($inline_js));
581
- $script_tag = trim(trim($script_tag) . "\n" . $inner_js) . "\n";
582
- $inline_js = '';
583
- } else {
584
- $script_tag = trim(trim($script_tag) . "\n" . $inner_js) . "\n";
585
- $inline_js = $this->_combined_inline_javascript(trim($inline_js));
586
- }
587
  } else {
588
  $script_tag = trim(trim($script_tag) . "\n" . $inner_js) . "\n";
589
- $inline_js = (!empty($inline_js) ? "<script type=\"text/javascript\">//<![CDATA[\n{$inline_js}\n//]]></script>\n" : '');
590
  }
591
- $script_tag = trim($script_tag) . (!empty($script_tag) ? "\n" : '');
592
- $inner_js = trim($inner_js) . (!empty($inner_js) ? "\n" : '');
593
- $inline_js = trim($inline_js) . (!empty($inline_js) ? "\n" : '');
594
- $foot_js = trim($foot_js) . (!empty($foot_js) ? "\n" : '');
595
  }
 
 
 
 
596
 
597
  $object_tag = $this->_dom_to_html($dom->find("object"));
598
 
@@ -689,16 +685,14 @@ class HeadCleanerController extends wokController {
689
  foreach ((array) $elements as $element) {
690
  switch ($element->tag) {
691
  case 'script':
692
- if ($this->_is_javascript()) {
693
- if (!isset($element->src)) {
694
- $inline_js .= $this->_remove_comment($element->innertext, 'js');
 
 
695
  } else {
696
- if (strpos($element->src, $this->wp_url) === FALSE) {
697
- $script_tag .= trim($element) . "\n";
698
- } else {
699
- $inner_js .= trim($element) . "\n";
700
- $js_src[] = preg_replace('/\.gz$/i', '', $element->src);
701
- }
702
  }
703
  }
704
  break;
@@ -765,88 +759,6 @@ class HeadCleanerController extends wokController {
765
  }
766
  }
767
 
768
- //**************************************************************************************
769
- // Is JavaScript ?
770
- //**************************************************************************************
771
- private function _is_javascript($ua = '') {
772
- if ( function_exists('get_browser') ) {
773
- $browser = get_browser(null, true);
774
- if ($browser[javascript])
775
- return true;
776
- }
777
-
778
- $ua = strtolower(empty($ua) ? $_SERVER['HTTP_USER_AGENT'] : $ua);
779
- $pattern = '/(msie|gecko|applewebkit|opera|safari|sleipnir|chrome)/i';
780
- if (preg_match($pattern, $ua))
781
- //return !$this->_is_bot($ua);
782
- return true;
783
- else
784
- return false;
785
- }
786
-
787
- //**************************************************************************************
788
- // Is bot ?
789
- //**************************************************************************************
790
- private function _is_bot( $ua = '', $bots = '' ){
791
- $bots = "Crawler"
792
- .",libwww-perl"
793
- .",TrackBack"
794
- .",libghttp"
795
- .",Google"
796
- .",http://www.google.com/bot.html"
797
- .",Yahoo"
798
- .",http://help.yahoo.com/help/us/ysearch/slurp"
799
- .",http://help.yahoo.co.jp/help/jp/blog-search/"
800
- .",http://publisher.yahoo.com/rssguide"
801
- .",http://help.yahoo.co.jp/help/jp/search/indexing/indexing-27.html"
802
- .",http://misc.yahoo.com.cn/help.html"
803
- .",msnbot"
804
- .",http://search.msn.com/msnbot.htm"
805
- .",Ask.jp"
806
- .",http://ask.jp/"
807
- .",FunWebProducts-AskJeevesJapan"
808
- .",BlogFan.ORG"
809
- .",blogoonbot"
810
- .",BlogPeople"
811
- .",BlogRanking"
812
- .",Bulkfeeds"
813
- .",DrecomBot"
814
- .",gooRSSreader"
815
- .",Hatena"
816
- .",ichiro"
817
- .",Infoseek"
818
- .",Livedoor"
819
- .",Captain NAMAAN"
820
- .",MaplogCrawler"
821
- .",So-net"
822
- .",Technoratibot"
823
- .",Accelatech"
824
- .",AppleSyndication"
825
- .",Baiduspider"
826
- .",Biz360"
827
- .",BLOG360"
828
- .",blogWatcher"
829
- .",Feedster"
830
- .",Feed::Find"
831
- .",Moreoverbot"
832
- .",wadaino.jp"
833
- .",http://www.accelobot.com"
834
- .",ndl-japan-warp"
835
- .",http://about.ask.com/en/docs/about/webmasters.shtml"
836
- .",FreshDownload"
837
- .",Celestial"
838
- .",http://express.nime.ac.jp/"
839
- .(!empty($bots) ? ',' . $bots : '')
840
- ;
841
- $pattern = '/(' . str_replace(',', '|', preg_quote(strtolower($bots), '/')) . ')/i';
842
- $ua = strtolower(empty($ua) ? $_SERVER['HTTP_USER_AGENT'] : $ua);
843
-
844
- if (preg_match($pattern, $ua))
845
- return true;
846
- else
847
- return false;
848
- }
849
-
850
  //**************************************************************************************
851
  // Is mobile ?
852
  //**************************************************************************************
@@ -1176,7 +1088,7 @@ class HeadCleanerController extends wokController {
1176
  $css = $this->_css_optimise($css);
1177
 
1178
  if (!empty($css))
1179
- $this->_file_write($filename, $css);
1180
  }
1181
 
1182
  $fileurl = ($this->options['dynamic']
@@ -1205,7 +1117,7 @@ class HeadCleanerController extends wokController {
1205
 
1206
  $filename = $this->cache_path . $longfilename;
1207
  if (!file_exists($filename) && !empty($css))
1208
- $this->_file_write($filename, $css);
1209
 
1210
  $fileurl = ($this->options['dynamic']
1211
  ? $this->self_url . '?f=' . $md5_filename . '&amp;t=css'
@@ -1246,7 +1158,7 @@ class HeadCleanerController extends wokController {
1246
  $script = $this->_js_minify($script);
1247
 
1248
  if (!empty($script))
1249
- $this->_file_write($filename, $script);
1250
  }
1251
 
1252
  $fileurl = ($this->options['dynamic']
@@ -1275,7 +1187,7 @@ class HeadCleanerController extends wokController {
1275
 
1276
  $filename = $this->cache_path . $longfilename;
1277
  if (!file_exists($filename) && !empty($script) )
1278
- $this->_file_write($filename, $script);
1279
 
1280
  $fileurl = ($this->options['dynamic']
1281
  ? $this->self_url . '?f=' . $md5_filename . '&amp;t=js'
@@ -1552,6 +1464,7 @@ class HeadCleanerController extends wokController {
1552
  $this->options['css_optimise'] = (isset($_POST['css_optimise']) && $_POST['css_optimise'] == 'on' ? true : false);
1553
  $this->options['default_media'] = trim($_POST['default_media']);
1554
  $this->options['gzip_on'] = (isset($_POST['gzip_on']) && $_POST['gzip_on'] == 'on' ? true : false);
 
1555
  $this->options['debug_mode'] = (isset($_POST['debug_mode']) && $_POST['debug_mode'] == 'on' ? true : false);
1556
  $this->options['csstidy_option']['template'] = (int) $_POST['template'];
1557
  $this->options['csstidy_option']['optimise_shorthands'] = (int) $_POST['optimise_shorthands'];
@@ -1696,12 +1609,13 @@ class HeadCleanerController extends wokController {
1696
  $out .= __('gzip compress to CSS and JS.', $this->textdomain_name);
1697
  $out .= "</td>";
1698
  $out .= "<td>";
 
 
1699
  $out .= "</td>";
1700
  $out .= "<td>";
1701
  $out .= "</td>";
1702
  $out .= "</tr>\n";
1703
 
1704
-
1705
  $out .= "<tr>";
1706
  $out .= "<td>";
1707
  $out .= "<input type=\"checkbox\" name=\"xml_declaration\" id=\"xml_declaration\" value=\"on\" style=\"margin-right:0.5em;\"".($this->options['xml_declaration'] === true ? " checked=\"true\"" : "")." />";
1
  <?php
2
  /*
3
  Plugin Name: Head Cleaner
4
+ Version: 1.3.0
5
  Plugin URI: http://wppluginsj.sourceforge.jp/head-cleaner/
6
  Description: Cleaning tags from your WordPress header and footer.
7
  Author: wokamoto
8
  Author URI: http://dogmap.jp/
9
+ Text Domain: head-cleaner
10
+ Domain Path: languages
11
 
12
  License:
13
  Released under the GPL license
109
  //**************************************************************************************
110
  class HeadCleanerController extends wokController {
111
  public $plugin_name = 'head-cleaner';
112
+ public $plugin_ver = '1.3.0';
113
 
114
  // Deafault Options
115
  private $options_default = array(
138
  'ie_conditional' => false,
139
  'canonical_tag' => true,
140
  'gzip_on' => false,
141
+ 'use_ajax_libs' => false,
142
  );
143
  private $csstidy_template = array(
144
  'low_compression' ,
210
  }
211
  }
212
 
 
 
 
 
213
  // Require PHP Libraries
214
  if (!is_admin())
215
  $this->_require_libraries();
273
  require($includes . 'csstidy-1.3/class.csstidy.php');
274
  $this->options['css_optimise'] = class_exists('csstidy') && $this->options['css_optimise'];
275
  }
276
+
277
+ // Use Google Ajax Libraries
278
+ if ($this->options['use_ajax_libs'])
279
+ require($includes . 'regist_ajax_libs.php');
280
  }
281
 
282
  //**************************************************************************************
453
  $elements = $dom->find("link[rel='stylesheet']");
454
  foreach ((array) $elements as $element) {
455
  $tag = trim($element);
 
 
 
 
 
456
  if (strpos($css_tag, $tag) === FALSE) {
457
  if (strpos($element->href, $this->wp_url) === FALSE) {
458
  $css_tag .= $tag . "\n";
513
  unset($wk_inline_css);
514
  unset($element); unset($elements);
515
 
516
+ $inner_js = '';
517
+ $foot_js = '';
518
+ $js_src = array();
519
+ $js_libs = array();
520
+ $elements = $dom->find("script");
521
+ foreach ((array) $elements as $element) {
522
+ if (!isset($element->src)) {
523
+ $inline_js .= $this->_remove_comment($element->innertext, 'js');
524
+ } else {
525
+ $src = trim($element->src);
526
+ if (!isset($this->head_js[$src]))
527
+ $this->head_js[$src] = true;
528
+
529
+ $find = FALSE;
530
+ if (preg_match('/\/((prototype|jquery|mootools)\.js)\?ver=([\.\d]+)[^\?]*$/i', $src, $matches)) {
531
+ list($find, $filename, $product, $version) = $matches;
532
+ } elseif (preg_match('/\/((prototype|jquery|mootools)[\-\.](min|[\.\d]+)[^\/]*\.js)\?[^\?]*$/i', $src, $matches)) {
533
+ list($find, $filename, $product, $version) = $matches;
534
+ } elseif (preg_match('/\/scriptaculous\/((builder|controls|dragdrop|effects|wp\-scriptaculous|scriptaculous|slider|sound|unittest)\.js)\?ver\=([\.\d]+)[^\?]*$/i', $src, $matches)) {
535
+ list($find, $filename, $product, $version) = $matches;
536
+ $product = (strpos($product, 'scriptaculous') === FALSE
537
+ ? 'scriptaculous/' . $product
538
+ : 'scriptaculous/scriptaculous');
539
+ }
540
+ unset($matches);
541
+
542
+ if ($find !== FALSE) {
543
+ $version = trim(substr($version, -1) === '.' ? substr($version, 0, -1) : $version);
544
+ if (empty($version))
545
+ $version = preg_replace('/^.*\/([\.\d]+)\/.*$/', '$1', $src);
546
+ if (!preg_match('/^[\.\d]*\d$/', $version))
547
+ $version = '1';
548
+ $js_libs[$product][$version] = $src;
549
+ } elseif ($this->head_js[$src] === FALSE) {
550
+ $foot_js .= trim($element) . "\n";
551
+ } elseif (strpos($src, $this->wp_url) === FALSE) {
552
+ $script_tag .= trim($element) . "\n";
553
  } else {
554
+ $inner_js .= trim($element) . "\n";
555
+ $js_src[] = $element->src;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
556
  }
557
  }
558
+ }
559
+ unset($element); unset($elements);
560
 
561
+ // JavaScript FrameWork (Prototype.js > jQuery > mootools)
562
+ if (count($js_libs) > 0) {
563
+ list($js_libs_src, $wk_inner_js, $wk_outer_js) = $this->_js_framework($js_libs);
564
 
565
+ if (count($js_libs_src) > 0)
566
+ $js_src = array_merge($js_libs_src, $js_src);
567
 
568
+ $script_tag = $script_tag . $wk_outer_js;
569
+ $inner_js = $wk_inner_js . $inner_js;
570
 
571
+ unset($js_libs_src); unset($js_libs);
572
+ }
573
 
574
+ $inline_js = trim($inline_js);
575
+ if ($this->options['cache_enabled']) {
576
+ if ($this->options['combined_js']) {
577
+ $inner_js = $this->_combined_javascript($js_src, trim($inline_js));
578
+ $script_tag = trim(trim($script_tag) . "\n" . $inner_js) . "\n";
579
+ $inline_js = '';
 
 
 
 
580
  } else {
581
  $script_tag = trim(trim($script_tag) . "\n" . $inner_js) . "\n";
582
+ $inline_js = $this->_combined_inline_javascript(trim($inline_js));
583
  }
584
+ } else {
585
+ $script_tag = trim(trim($script_tag) . "\n" . $inner_js) . "\n";
586
+ $inline_js = (!empty($inline_js) ? "<script type=\"text/javascript\">//<![CDATA[\n{$inline_js}\n//]]></script>\n" : '');
 
587
  }
588
+ $script_tag = trim($script_tag) . (!empty($script_tag) ? "\n" : '');
589
+ $inner_js = trim($inner_js) . (!empty($inner_js) ? "\n" : '');
590
+ $inline_js = trim($inline_js) . (!empty($inline_js) ? "\n" : '');
591
+ $foot_js = trim($foot_js) . (!empty($foot_js) ? "\n" : '');
592
 
593
  $object_tag = $this->_dom_to_html($dom->find("object"));
594
 
685
  foreach ((array) $elements as $element) {
686
  switch ($element->tag) {
687
  case 'script':
688
+ if (!isset($element->src)) {
689
+ $inline_js .= $this->_remove_comment($element->innertext, 'js');
690
+ } else {
691
+ if (strpos($element->src, $this->wp_url) === FALSE) {
692
+ $script_tag .= trim($element) . "\n";
693
  } else {
694
+ $inner_js .= trim($element) . "\n";
695
+ $js_src[] = preg_replace('/\.gz$/i', '', $element->src);
 
 
 
 
696
  }
697
  }
698
  break;
759
  }
760
  }
761
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
762
  //**************************************************************************************
763
  // Is mobile ?
764
  //**************************************************************************************
1088
  $css = $this->_css_optimise($css);
1089
 
1090
  if (!empty($css))
1091
+ $this->_file_write($filename, $css, $this->options['gzip_on']);
1092
  }
1093
 
1094
  $fileurl = ($this->options['dynamic']
1117
 
1118
  $filename = $this->cache_path . $longfilename;
1119
  if (!file_exists($filename) && !empty($css))
1120
+ $this->_file_write($filename, $css, $this->options['gzip_on']);
1121
 
1122
  $fileurl = ($this->options['dynamic']
1123
  ? $this->self_url . '?f=' . $md5_filename . '&amp;t=css'
1158
  $script = $this->_js_minify($script);
1159
 
1160
  if (!empty($script))
1161
+ $this->_file_write($filename, $script, $this->options['gzip_on']);
1162
  }
1163
 
1164
  $fileurl = ($this->options['dynamic']
1187
 
1188
  $filename = $this->cache_path . $longfilename;
1189
  if (!file_exists($filename) && !empty($script) )
1190
+ $this->_file_write($filename, $script, $this->options['gzip_on']);
1191
 
1192
  $fileurl = ($this->options['dynamic']
1193
  ? $this->self_url . '?f=' . $md5_filename . '&amp;t=js'
1464
  $this->options['css_optimise'] = (isset($_POST['css_optimise']) && $_POST['css_optimise'] == 'on' ? true : false);
1465
  $this->options['default_media'] = trim($_POST['default_media']);
1466
  $this->options['gzip_on'] = (isset($_POST['gzip_on']) && $_POST['gzip_on'] == 'on' ? true : false);
1467
+ $this->options['use_ajax_libs'] = (isset($_POST['use_ajax_libs']) && $_POST['use_ajax_libs'] == 'on' ? true : false);
1468
  $this->options['debug_mode'] = (isset($_POST['debug_mode']) && $_POST['debug_mode'] == 'on' ? true : false);
1469
  $this->options['csstidy_option']['template'] = (int) $_POST['template'];
1470
  $this->options['csstidy_option']['optimise_shorthands'] = (int) $_POST['optimise_shorthands'];
1609
  $out .= __('gzip compress to CSS and JS.', $this->textdomain_name);
1610
  $out .= "</td>";
1611
  $out .= "<td>";
1612
+ $out .= "<input type=\"checkbox\" name=\"use_ajax_libs\" id=\"use_ajax_libs\" value=\"on\" style=\"margin-right:0.5em;\"".($this->options['use_ajax_libs'] === true ? " checked=\"true\"" : "")." />";
1613
+ $out .= __('Use Google Ajax Libraries.', $this->textdomain_name);
1614
  $out .= "</td>";
1615
  $out .= "<td>";
1616
  $out .= "</td>";
1617
  $out .= "</tr>\n";
1618
 
 
1619
  $out .= "<tr>";
1620
  $out .= "<td>";
1621
  $out .= "<input type=\"checkbox\" name=\"xml_declaration\" id=\"xml_declaration\" value=\"on\" style=\"margin-right:0.5em;\"".($this->options['xml_declaration'] === true ? " checked=\"true\"" : "")." />";
includes/php_browscap.ini DELETED
@@ -1,16798 +0,0 @@
1
- ;;; Provided courtesy of http://browsers.garykeith.com
2
- ;;; Created on Thursday, March 26, 2009 at 4:03 PM GMT
3
-
4
- [GJK_Browscap_Version]
5
- Version=4467
6
- Released=Thu, 26 Mar 2009 16:03:56 -0000
7
-
8
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties
9
-
10
- [DefaultProperties]
11
- Browser="DefaultProperties"
12
- Version=0
13
- MajorVer=0
14
- MinorVer=0
15
- Platform=unknown
16
- Alpha=false
17
- Beta=false
18
- Win16=false
19
- Win32=false
20
- Win64=false
21
- Frames=false
22
- IFrames=false
23
- Tables=false
24
- Cookies=false
25
- BackgroundSounds=false
26
- CDF=false
27
- VBScript=false
28
- JavaApplets=false
29
- JavaScript=false
30
- ActiveXControls=false
31
- isBanned=false
32
- isMobileDevice=false
33
- isSyndicationReader=false
34
- Crawler=false
35
- CssVersion=0
36
- supportsCSS=false
37
- AOL=false
38
- aolVersion=0
39
-
40
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ask
41
-
42
- [Ask]
43
- Parent=DefaultProperties
44
- Browser="Ask"
45
- Frames=true
46
- Tables=true
47
- Crawler=true
48
-
49
- [Mozilla/?.0 (compatible; Ask Jeeves/Teoma*)]
50
- Parent=Ask
51
- Browser="Teoma"
52
-
53
- [Mozilla/2.0 (compatible; Ask Jeeves)]
54
- Parent=Ask
55
- Browser="AskJeeves"
56
-
57
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Baidu
58
-
59
- [Baidu]
60
- Parent=DefaultProperties
61
- Browser="Baidu"
62
- Frames=true
63
- Tables=true
64
- Crawler=true
65
-
66
- [BaiduImageSpider*]
67
- Parent=Baidu
68
- Browser="BaiduImageSpider"
69
-
70
- [Baiduspider*]
71
- Parent=Baidu
72
- Browser="BaiDu"
73
-
74
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google
75
-
76
- [Google]
77
- Parent=DefaultProperties
78
- Browser="Google"
79
- Frames=true
80
- IFrames=true
81
- Tables=true
82
- JavaScript=true
83
- Crawler=true
84
-
85
- [* (compatible; Googlebot-Mobile/2.1; *http://www.google.com/bot.html)]
86
- Parent=Google
87
- Browser="Googlebot-Mobile"
88
- Frames=false
89
- IFrames=false
90
- Tables=false
91
-
92
- [*Google Wireless Transcoder*]
93
- Parent=Google
94
- Browser="Google Wireless Transcoder"
95
-
96
- [AdsBot-Google (?http://www.google.com/adsbot.html)]
97
- Parent=Google
98
- Browser="AdsBot-Google"
99
-
100
- [Feedfetcher-Google-iGoogleGadgets;*]
101
- Parent=Google
102
- Browser="iGoogleGadgets"
103
- isBanned=true
104
- isSyndicationReader=true
105
-
106
- [Feedfetcher-Google;*]
107
- Parent=Google
108
- Browser="Feedfetcher-Google"
109
- isBanned=true
110
- isSyndicationReader=true
111
-
112
- [Google OpenSocial agent (http://www.google.com/feedfetcher.html)]
113
- Parent=Google
114
- Browser="Google OpenSocial"
115
-
116
- [Google-Sitemaps/*]
117
- Parent=Google
118
- Browser="Google-Sitemaps"
119
-
120
- [Googlebot-Image/*]
121
- Parent=Google
122
- Browser="Googlebot-Image"
123
- CDF=true
124
-
125
- [googlebot-urlconsole]
126
- Parent=Google
127
- Browser="googlebot-urlconsole"
128
-
129
- [Googlebot-Video/1.0]
130
- Parent=Google
131
- Browser="Google-Video"
132
-
133
- [Googlebot/2.1 (?http://www.google.com/bot.html)]
134
- Parent=Google
135
- Browser="Googlebot"
136
-
137
- [Googlebot/2.1 (?http://www.googlebot.com/bot.html)]
138
- Parent=Google
139
- Browser="Googlebot"
140
-
141
- [Googlebot/Test*]
142
- Parent=Google
143
- Browser="Googlebot/Test"
144
-
145
- [gsa-crawler*]
146
- Parent=Google
147
- Browser="Google Search Appliance"
148
- isBanned=true
149
-
150
- [Mediapartners-Google*]
151
- Parent=Google
152
- Browser="Mediapartners-Google"
153
-
154
- [Mozilla/4.0 (compatible; Google Desktop)]
155
- Parent=Google
156
- Browser="Google Desktop"
157
-
158
- [Mozilla/4.0 (compatible; GoogleToolbar*)]
159
- Parent=Google
160
- Browser="Google Toolbar"
161
- isBanned=true
162
-
163
- [Mozilla/5.0 (compatible; Google Keyword Tool;*)]
164
- Parent=Google
165
- Browser="Google Keyword Tool"
166
-
167
- [Mozilla/5.0 (compatible; Googlebot/2.1; ?http://www.google.com/bot.html)]
168
- Parent=Google
169
- Browser="Google Webmaster Tools"
170
-
171
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Inktomi
172
-
173
- [Inktomi]
174
- Parent=DefaultProperties
175
- Browser="Inktomi"
176
- Frames=true
177
- Tables=true
178
- Crawler=true
179
-
180
- [* (compatible;YahooSeeker/M1A1-R2D2; *)]
181
- Parent=Inktomi
182
- Browser="YahooSeeker-Mobile"
183
- Frames=false
184
- Tables=false
185
-
186
- [Mozilla/4.0]
187
- Parent=Inktomi
188
-
189
- [Mozilla/4.0 (compatible; MSIE 5.0; Windows NT)]
190
- Parent=Inktomi
191
- Win32=true
192
-
193
- [Mozilla/4.0 (compatible; Yahoo Japan; for robot study; kasugiya)]
194
- Parent=Inktomi
195
- Browser="Yahoo! RobotStudy"
196
- isBanned=true
197
-
198
- [Mozilla/5.0 (compatible; BMC/1.0 (Y!J-AGENT))]
199
- Parent=Inktomi
200
- Browser="Y!J-AGENT/BMC"
201
-
202
- [Mozilla/5.0 (compatible; BMF/1.0 (Y!J-AGENT))]
203
- Parent=Inktomi
204
- Browser="Y!J-AGENT/BMF"
205
-
206
- [Mozilla/5.0 (compatible; BMI/1.0 (Y!J-AGENT; 1.0))]
207
- Parent=Inktomi
208
- Browser="Y!J-AGENT/BMI"
209
-
210
- [Mozilla/5.0 (compatible; Yahoo! DE Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
211
- Parent=Inktomi
212
- Browser="Yahoo! Directory Engine"
213
-
214
- [Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)]
215
- Parent=Inktomi
216
- Browser="Yahoo! Slurp China"
217
-
218
- [Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)]
219
- Parent=Inktomi
220
- Browser="Yahoo! Slurp"
221
- Version=3.0
222
- MajorVer=3
223
- MinorVer=0
224
-
225
- [Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
226
- Parent=Inktomi
227
- Browser="Yahoo! Slurp"
228
-
229
- [Mozilla/5.0 (compatible; Yahoo! Verifier/1.1)]
230
- Parent=Inktomi
231
- Browser="Yahoo! Verifier"
232
- Version=1.1
233
- MajorVer=1
234
- MinorVer=1
235
-
236
- [Mozilla/5.0 (Slurp/cat; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
237
- Parent=Inktomi
238
- Browser="Slurp/cat"
239
-
240
- [Mozilla/5.0 (Slurp/si; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
241
- Parent=Inktomi
242
-
243
- [Mozilla/5.0 (Yahoo-MMCrawler/4.0; mailto:vertical-crawl-support@yahoo-inc.com)]
244
- Parent=Inktomi
245
- Browser="Yahoo-MMCrawler"
246
- Version=4.0
247
- MajorVer=4
248
- MinorVer=0
249
-
250
- [Scooter/*]
251
- Parent=Inktomi
252
- Browser="Scooter"
253
-
254
- [Scooter/3.3Y!CrawlX]
255
- Parent=Inktomi
256
- Browser="Scooter/3.3Y!CrawlX"
257
- Version=3.3
258
- MajorVer=3
259
- MinorVer=3
260
-
261
- [slurp]
262
- Parent=Inktomi
263
- Browser="slurp"
264
-
265
- [Y!J-BSC/1.0*]
266
- Parent=Inktomi
267
- Browser="Y!J-BSC"
268
- Version=1.0
269
- MajorVer=1
270
- MinorVer=0
271
- isBanned=true
272
-
273
- [Y!J-SRD/1.0]
274
- Parent=Inktomi
275
- Browser="Y!J-SRD"
276
- Version=1.0
277
- MajorVer=1
278
- MinorVer=0
279
-
280
- [Yahoo Mindset]
281
- Parent=Inktomi
282
- Browser="Yahoo Mindset"
283
-
284
- [Yahoo Pipes*]
285
- Parent=Inktomi
286
- Browser="Yahoo Pipes"
287
-
288
- [Yahoo! Mindset]
289
- Parent=Inktomi
290
- Browser="Yahoo! Mindset"
291
-
292
- [Yahoo! Slurp/Site Explorer]
293
- Parent=Inktomi
294
- Browser="Yahoo! Site Explorer"
295
-
296
- [Yahoo-Blogs/*]
297
- Parent=Inktomi
298
- Browser="Yahoo-Blogs"
299
-
300
- [Yahoo-MMAudVid*]
301
- Parent=Inktomi
302
- Browser="Yahoo-MMAudVid"
303
-
304
- [Yahoo-MMCrawler*]
305
- Parent=Inktomi
306
- Browser="Yahoo-MMCrawler"
307
- isBanned=true
308
-
309
- [YahooFeedSeeker*]
310
- Parent=Inktomi
311
- Browser="YahooFeedSeeker"
312
- isSyndicationReader=true
313
- Crawler=false
314
-
315
- [YahooSeeker/*]
316
- Parent=Inktomi
317
- Browser="YahooSeeker"
318
- isMobileDevice=true
319
-
320
- [YahooSeeker/CafeKelsa (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
321
- Parent=Inktomi
322
- Browser="YahooSeeker/CafeKelsa"
323
-
324
- [YahooSeeker/CafeKelsa-dev (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
325
- Parent=Inktomi
326
-
327
- [YahooVideoSearch*]
328
- Parent=Inktomi
329
- Browser="YahooVideoSearch"
330
-
331
- [YahooYSMcm*]
332
- Parent=Inktomi
333
- Browser="YahooYSMcm"
334
-
335
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN
336
-
337
- [MSN]
338
- Parent=DefaultProperties
339
- Browser="MSN"
340
- Frames=true
341
- Tables=true
342
- Crawler=true
343
-
344
- [librabot/1.0 (*)]
345
- Parent=MSN
346
- Browser="librabot"
347
-
348
- [llssbot/1.0]
349
- Parent=MSN
350
- Browser="llssbot"
351
- Version=1.0
352
- MajorVer=1
353
- MinorVer=0
354
-
355
- [MSMOBOT/1.1*]
356
- Parent=MSN
357
- Browser="msnbot-mobile"
358
- Version=1.1
359
- MajorVer=1
360
- MinorVer=1
361
-
362
- [MSNBot-Academic/1.0*]
363
- Parent=MSN
364
- Browser="MSNBot-Academic"
365
- Version=1.0
366
- MajorVer=1
367
- MinorVer=0
368
-
369
- [msnbot-media/1.0*]
370
- Parent=MSN
371
- Browser="msnbot-media"
372
- Version=1.0
373
- MajorVer=1
374
- MinorVer=0
375
-
376
- [msnbot-media/1.1*]
377
- Parent=MSN
378
- Browser="msnbot-media"
379
- Version=1.1
380
- MajorVer=1
381
- MinorVer=1
382
-
383
- [MSNBot-News/1.0*]
384
- Parent=MSN
385
- Browser="MSNBot-News"
386
- Version=1.0
387
- MajorVer=1
388
- MinorVer=0
389
-
390
- [MSNBot-NewsBlogs/1.0*]
391
- Parent=MSN
392
- Browser="MSNBot-NewsBlogs"
393
- Version=1
394
- MajorVer=1
395
- MinorVer=0
396
-
397
- [msnbot-products]
398
- Parent=MSN
399
- Browser="msnbot-products"
400
-
401
- [msnbot/1.0*]
402
- Parent=MSN
403
- Browser="msnbot"
404
- Version=1.0
405
- MajorVer=1
406
- MinorVer=0
407
-
408
- [msnbot/1.1*]
409
- Parent=MSN
410
- Browser="msnbot"
411
- Version=1.1
412
- MajorVer=1
413
- MinorVer=1
414
-
415
- [msnbot/2.0b*]
416
- Parent=MSN
417
- Version=2.0
418
- MajorVer=2
419
- MinorVer=0
420
- Beta=true
421
-
422
- [MSR-ISRCCrawler]
423
- Parent=MSN
424
- Browser="MSR-ISRCCrawler"
425
-
426
- [renlifangbot/1.0 (?http://search.msn.com/msnbot.htm)]
427
- Parent=MSN
428
- Browser="renlifangbot"
429
-
430
- [T-Mobile Dash Mozilla/4.0 (*) MSNBOT-MOBILE/1.1 (*)]
431
- Parent=MSN
432
- Browser="msnbot-mobile"
433
-
434
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo
435
-
436
- [Yahoo]
437
- Parent=DefaultProperties
438
- Browser="Yahoo"
439
- Frames=true
440
- Tables=true
441
- Crawler=true
442
-
443
- [Mozilla/4.0 (compatible; Y!J; for robot study*)]
444
- Parent=Yahoo
445
- Browser="Y!J"
446
-
447
- [Mozilla/5.0 (Yahoo-Test/4.0*)]
448
- Parent=Yahoo
449
- Browser="Yahoo-Test"
450
- Version=4.0
451
- MajorVer=4
452
- MinorVer=0
453
-
454
- [mp3Spider cn-search-devel at yahoo-inc dot com]
455
- Parent=Yahoo
456
- Browser="Yahoo! Media"
457
- isBanned=true
458
-
459
- [My Browser]
460
- Parent=Yahoo
461
- Browser="Yahoo! My Browser"
462
-
463
- [Y!OASIS/*]
464
- Parent=Yahoo
465
- Browser="Y!OASIS"
466
- isBanned=true
467
-
468
- [YahooYSMcm/2.0.0]
469
- Parent=Yahoo
470
- Browser="YahooYSMcm"
471
- Version=2.0
472
- MajorVer=2
473
- MinorVer=0
474
- isBanned=true
475
-
476
- [YRL_ODP_CRAWLER]
477
- Parent=Yahoo
478
- Browser="YRL_ODP_CRAWLER"
479
- isBanned=true
480
-
481
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yandex
482
-
483
- [Yandex]
484
- Parent=DefaultProperties
485
- Browser="Yandex"
486
- Frames=true
487
- IFrames=true
488
- Tables=true
489
- Cookies=true
490
- Crawler=true
491
-
492
- [Mozilla/4.0 (compatible; MSIE 5.0; YANDEX)]
493
- Parent=Yandex
494
-
495
- [Yandex/*]
496
- Parent=Yandex
497
-
498
- [YandexBlog/*]
499
- Parent=Yandex
500
- Browser="YandexBlog"
501
- isSyndicationReader=true
502
-
503
- [YandexSomething/*]
504
- Parent=Yandex
505
- Browser="YandexSomething"
506
- isSyndicationReader=true
507
-
508
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Best of the Web
509
-
510
- [Best of the Web]
511
- Parent=DefaultProperties
512
- Browser="Best of the Web"
513
- Frames=true
514
- Tables=true
515
-
516
- [Mozilla/4.0 (compatible; BOTW Feed Grabber; *http://botw.org)]
517
- Parent=Best of the Web
518
- Browser="BOTW Feed Grabber"
519
- isSyndicationReader=true
520
- Crawler=false
521
-
522
- [Mozilla/4.0 (compatible; BOTW Spider; *http://botw.org)]
523
- Parent=Best of the Web
524
- Browser="BOTW Spider"
525
- isBanned=true
526
-
527
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boitho
528
-
529
- [Boitho]
530
- Parent=DefaultProperties
531
- Browser="Boitho"
532
- Frames=true
533
- Tables=true
534
- Crawler=true
535
-
536
- [boitho.com-dc/*]
537
- Parent=Boitho
538
- Browser="boitho.com-dc"
539
-
540
- [boitho.com-robot/*]
541
- Parent=Boitho
542
- Browser="boitho.com-robot"
543
-
544
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Convera
545
-
546
- [Convera]
547
- Parent=DefaultProperties
548
- Browser="Convera"
549
- Frames=true
550
- Tables=true
551
- Crawler=true
552
-
553
- [ConveraCrawler/*]
554
- Parent=Convera
555
- Browser="ConveraCrawler"
556
-
557
- [ConveraMultiMediaCrawler/0.1*]
558
- Parent=Convera
559
- Browser="ConveraMultiMediaCrawler"
560
- Version=0.1
561
- MajorVer=0
562
- MinorVer=1
563
-
564
- [CrawlConvera*]
565
- Parent=Convera
566
- Browser="CrawlConvera"
567
-
568
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DotBot
569
-
570
- [DotBot]
571
- Parent=DefaultProperties
572
- Browser="DotBot"
573
- Frames=true
574
- Tables=true
575
- isBanned=true
576
- Crawler=true
577
-
578
- [DotBot/* (http://www.dotnetdotcom.org/*)]
579
- Parent=DotBot
580
-
581
- [Mozilla/5.0 (compatible; DotBot/*; http://www.dotnetdotcom.org/*)]
582
- Parent=DotBot
583
-
584
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Entireweb
585
-
586
- [Entireweb]
587
- Parent=DefaultProperties
588
- Browser="Entireweb"
589
- Frames=true
590
- IFrames=true
591
- Tables=true
592
- isBanned=true
593
- Crawler=true
594
-
595
- [Mozilla/4.0 (compatible; SpeedySpider; www.entireweb.com)]
596
- Parent=Entireweb
597
-
598
- [Speedy Spider (*Beta/*)]
599
- Parent=Entireweb
600
-
601
- [Speedy?Spider?(http://www.entireweb.com*)]
602
- Parent=Entireweb
603
-
604
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Envolk
605
-
606
- [Envolk]
607
- Parent=DefaultProperties
608
- Browser="Envolk"
609
- Frames=true
610
- IFrames=true
611
- Tables=true
612
- isBanned=true
613
- Crawler=true
614
-
615
- [envolk/* (?http://www.envolk.com/envolk*)]
616
- Parent=Envolk
617
-
618
- [envolk?ITS?spider/* (?http://www.envolk.com/envolk*)]
619
- Parent=Envolk
620
-
621
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Exalead
622
-
623
- [Exalead]
624
- Parent=DefaultProperties
625
- Browser="Exalead"
626
- Frames=true
627
- Tables=true
628
- isBanned=true
629
- Crawler=true
630
-
631
- [Exabot-Images/1.0]
632
- Parent=Exalead
633
- Browser="Exabot-Images"
634
- Version=1.0
635
- MajorVer=1
636
- MinorVer=0
637
-
638
- [Exabot-Test/*]
639
- Parent=Exalead
640
- Browser="Exabot-Test"
641
-
642
- [Exabot/2.0]
643
- Parent=Exalead
644
- Browser="Exabot"
645
-
646
- [Exabot/3.0]
647
- Parent=Exalead
648
- Browser="Exabot"
649
- Version=3.0
650
- MajorVer=3
651
- MinorVer=0
652
- Platform=Liberate
653
-
654
- [Exalead NG/*]
655
- Parent=Exalead
656
- Browser="Exalead NG"
657
- isBanned=true
658
-
659
- [Mozilla/5.0 (compatible; Exabot-Images/3.0;*)]
660
- Parent=Exalead
661
- Browser="Exabot-Images"
662
-
663
- [Mozilla/5.0 (compatible; Exabot/3.0 (BiggerBetter/tests);*)]
664
- Parent=Exalead
665
- Browser="Exabot/BiggerBetter/tests"
666
-
667
- [Mozilla/5.0 (compatible; Exabot/3.0;*)]
668
- Parent=Exalead
669
- Browser="Exabot"
670
- isBanned=false
671
-
672
- [Mozilla/5.0 (compatible; NGBot/*)]
673
- Parent=Exalead
674
-
675
- [ng/*]
676
- Parent=Exalead
677
- Browser="Exalead Previewer"
678
- Version=1.0
679
- MajorVer=1
680
- MinorVer=0
681
- isBanned=true
682
-
683
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fast/AllTheWeb
684
-
685
- [Fast/AllTheWeb]
686
- Parent=DefaultProperties
687
- Browser="Fast/AllTheWeb"
688
- Alpha=true
689
- Beta=true
690
- Win16=true
691
- Win32=true
692
- Win64=true
693
- Frames=true
694
- IFrames=true
695
- Tables=true
696
- Cookies=true
697
- BackgroundSounds=true
698
- CDF=true
699
- VBScript=true
700
- JavaApplets=true
701
- JavaScript=true
702
- ActiveXControls=true
703
- isBanned=true
704
- isMobileDevice=true
705
- isSyndicationReader=true
706
- Crawler=true
707
-
708
- [*FAST Enterprise Crawler*]
709
- Parent=Fast/AllTheWeb
710
- Browser="FAST Enterprise Crawler"
711
-
712
- [FAST Data Search Document Retriever/4.0*]
713
- Parent=Fast/AllTheWeb
714
- Browser="FAST Data Search Document Retriever"
715
-
716
- [FAST MetaWeb Crawler (helpdesk at fastsearch dot com)]
717
- Parent=Fast/AllTheWeb
718
- Browser="FAST MetaWeb Crawler"
719
-
720
- [Fast PartnerSite Crawler*]
721
- Parent=Fast/AllTheWeb
722
- Browser="FAST PartnerSite"
723
-
724
- [FAST-WebCrawler/*]
725
- Parent=Fast/AllTheWeb
726
- Browser="FAST-WebCrawler"
727
-
728
- [FAST-WebCrawler/*/FirstPage*]
729
- Parent=Fast/AllTheWeb
730
- Browser="FAST-WebCrawler/FirstPage"
731
-
732
- [FAST-WebCrawler/*/Fresh*]
733
- Parent=Fast/AllTheWeb
734
- Browser="FAST-WebCrawler/Fresh"
735
-
736
- [FAST-WebCrawler/*/PartnerSite*]
737
- Parent=Fast/AllTheWeb
738
- Browser="FAST PartnerSite"
739
-
740
- [FAST-WebCrawler/*?Multimedia*]
741
- Parent=Fast/AllTheWeb
742
- Browser="FAST-WebCrawler/Multimedia"
743
-
744
- [FastSearch Web Crawler for*]
745
- Parent=Fast/AllTheWeb
746
- Browser="FastSearch Web Crawler"
747
-
748
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Gigabot
749
-
750
- [Gigabot]
751
- Parent=DefaultProperties
752
- Browser="Gigabot"
753
- Frames=true
754
- IFrames=true
755
- Tables=true
756
- Crawler=true
757
-
758
- [Gigabot*]
759
- Parent=Gigabot
760
-
761
- [GigabotSiteSearch/*]
762
- Parent=Gigabot
763
- Browser="GigabotSiteSearch"
764
-
765
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ilse
766
-
767
- [Ilse]
768
- Parent=DefaultProperties
769
- Browser="Ilse"
770
- Frames=true
771
- Tables=true
772
- Crawler=true
773
-
774
- [IlseBot/*]
775
- Parent=Ilse
776
-
777
- [INGRID/?.0*]
778
- Parent=Ilse
779
- Browser="Ilse"
780
-
781
- [Mozilla/3.0 (INGRID/*]
782
- Parent=Ilse
783
- Browser="Ilse"
784
-
785
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iVia Project
786
-
787
- [iVia Project]
788
- Parent=DefaultProperties
789
- Browser="iVia Project"
790
- Frames=true
791
- IFrames=true
792
- Tables=true
793
- Crawler=true
794
-
795
- [DataFountains/DMOZ Downloader*]
796
- Parent=iVia Project
797
- Browser="DataFountains/DMOZ Downloader"
798
- isBanned=true
799
-
800
- [DataFountains/DMOZ Feature Vector Corpus Creator*]
801
- Parent=iVia Project
802
- Browser="DataFountains/DMOZ Feature Vector Corpus"
803
-
804
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Jayde Online
805
-
806
- [Jayde Online]
807
- Parent=DefaultProperties
808
- Browser="Jayde Online"
809
- Frames=true
810
- Tables=true
811
- Crawler=true
812
-
813
- [ExactSeek Crawler/*]
814
- Parent=Jayde Online
815
- Browser="ExactSeek Crawler"
816
-
817
- [exactseek-pagereaper-* (crawler@exactseek.com)]
818
- Parent=Jayde Online
819
- Browser="exactseek-pagereaper"
820
- isBanned=true
821
-
822
- [exactseek.com]
823
- Parent=Jayde Online
824
- Browser="exactseek.com"
825
-
826
- [Jayde Crawler*]
827
- Parent=Jayde Online
828
- Browser="Jayde Crawler"
829
-
830
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycos
831
-
832
- [Lycos]
833
- Parent=DefaultProperties
834
- Browser="Lycos"
835
- Frames=true
836
- Tables=true
837
- Crawler=true
838
-
839
- [Lycos*]
840
- Parent=Lycos
841
- Browser="Lycos"
842
-
843
- [Lycos-Proxy]
844
- Parent=Lycos
845
- Browser="Lycos-Proxy"
846
-
847
- [Lycos-Spider_(modspider)]
848
- Parent=Lycos
849
- Browser="Lycos-Spider_(modspider)"
850
-
851
- [Lycos-Spider_(T-Rex)]
852
- Parent=Lycos
853
- Browser="Lycos-Spider_(T-Rex)"
854
-
855
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Naver
856
-
857
- [Naver]
858
- Parent=DefaultProperties
859
- Browser="Naver"
860
- isBanned=true
861
- Crawler=true
862
-
863
- [Cowbot-* (NHN Corp*naver.com)]
864
- Parent=Naver
865
- Browser="Naver Cowbot"
866
-
867
- [Mozilla/4.0 (compatible; NaverBot/*; *)]
868
- Parent=Naver
869
-
870
- [Mozilla/4.0 (compatible; NaverBot/*; nhnbot@naver.com)]
871
- Parent=Naver
872
- Browser="Naver NaverBot"
873
-
874
- [NaverBot-* (NHN Corp*naver.com)]
875
- Parent=Naver
876
- Browser="Naver NHN Corp"
877
-
878
- [Yeti/*]
879
- Parent=Naver
880
- Browser="Yeti"
881
-
882
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Snap
883
-
884
- [Snap]
885
- Parent=DefaultProperties
886
- Browser="Snap"
887
- isBanned=true
888
- Crawler=true
889
-
890
- [Mozilla/5.0 (SnapPreviewBot) Gecko/* Firefox/*]
891
- Parent=Snap
892
-
893
- [Snapbot/*]
894
- Parent=Snap
895
-
896
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou
897
-
898
- [Sogou]
899
- Parent=DefaultProperties
900
- Browser="Sogou"
901
- Frames=true
902
- Tables=true
903
- isBanned=true
904
- Crawler=true
905
-
906
- [shaboyi spider]
907
- Parent=Sogou
908
- Browser="Sogou/Shaboyi Spider"
909
-
910
- [Sogou develop spider/*]
911
- Parent=Sogou
912
- Browser="Sogou Develop Spider"
913
-
914
- [Sogou head spider*]
915
- Parent=Sogou
916
- Browser="Sogou/HEAD Spider"
917
-
918
- [sogou js robot(*)]
919
- Parent=Sogou
920
-
921
- [Sogou Orion spider/*]
922
- Parent=Sogou
923
- Browser="Sogou Orion spider"
924
-
925
- [Sogou Pic Agent]
926
- Parent=Sogou
927
- Browser="Sogou/Image Crawler"
928
-
929
- [Sogou Pic Spider]
930
- Parent=Sogou
931
- Browser="Sogou Pic Spider"
932
-
933
- [Sogou Push Spider/*]
934
- Parent=Sogou
935
- Browser="Sogou Push Spider"
936
-
937
- [sogou spider]
938
- Parent=Sogou
939
- Browser="Sogou/Spider"
940
-
941
- [sogou web spider*]
942
- Parent=Sogou
943
- Browser="sogou web spider"
944
-
945
- [Sogou-Test-Spider/*]
946
- Parent=Sogou
947
- Browser="Sogou-Test-Spider"
948
-
949
- [Best Whois (http://www.bestwhois.net/)]
950
- Parent=DNS Tools
951
- Browser="Best Whois"
952
-
953
- [DNSGroup/*]
954
- Parent=DNS Tools
955
- Browser="DNS Group Crawler"
956
-
957
- [NG-Search/*]
958
- Parent=Exalead
959
- Browser="NG-SearchBot"
960
-
961
- [TouchStone]
962
- Parent=Feeds Syndicators
963
- Browser="TouchStone"
964
- isSyndicationReader=true
965
-
966
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General Crawlers
967
-
968
- [General Crawlers]
969
- Parent=DefaultProperties
970
- Browser="General Crawlers"
971
- Crawler=true
972
-
973
- [A .NET Web Crawler]
974
- Parent=General Crawlers
975
- isBanned=true
976
-
977
- [BabalooSpider/1.*]
978
- Parent=General Crawlers
979
- Browser="BabalooSpider"
980
-
981
- [BilgiBot/*]
982
- Parent=General Crawlers
983
- Browser="BilgiBot"
984
- isBanned=true
985
-
986
- [bot/* (bot; *bot@bot.bot)]
987
- Parent=General Crawlers
988
- Browser="bot"
989
- isBanned=true
990
-
991
- [CyberPatrol*]
992
- Parent=General Crawlers
993
- Browser="CyberPatrol"
994
- isBanned=true
995
-
996
- [Cynthia 1.0]
997
- Parent=General Crawlers
998
- Browser="Cynthia"
999
- Version=1.0
1000
- MajorVer=1
1001
- MinorVer=0
1002
-
1003
- [ddetailsbot (http://www.displaydetails.com)]
1004
- Parent=General Crawlers
1005
- Browser="ddetailsbot"
1006
-
1007
- [DomainCrawler/1.0 (info@domaincrawler.com; http://www.domaincrawler.com/domains/view/*)]
1008
- Parent=General Crawlers
1009
- Browser="DomainCrawler"
1010
-
1011
- [DomainsBotBot/1.*]
1012
- Parent=General Crawlers
1013
- Browser="DomainsBotBot"
1014
- isBanned=true
1015
-
1016
- [DomainsDB.net MetaCrawler*]
1017
- Parent=General Crawlers
1018
- Browser="DomainsDB"
1019
-
1020
- [Drupal (*)]
1021
- Parent=General Crawlers
1022
- Browser="Drupal"
1023
-
1024
- [Dumbot (version *)*]
1025
- Parent=General Crawlers
1026
- Browser="Dumbfind"
1027
-
1028
- [EuripBot/*]
1029
- Parent=General Crawlers
1030
- Browser="Europe Internet Portal"
1031
-
1032
- [eventax/*]
1033
- Parent=General Crawlers
1034
- Browser="eventax"
1035
-
1036
- [FANGCrawl/*]
1037
- Parent=General Crawlers
1038
- Browser="Safe-t.net Web Filtering Service"
1039
- isBanned=true
1040
-
1041
- [favorstarbot/*]
1042
- Parent=General Crawlers
1043
- Browser="favorstarbot"
1044
- isBanned=true
1045
-
1046
- [FollowSite.com (*)]
1047
- Parent=General Crawlers
1048
- Browser="FollowSite"
1049
- isBanned=true
1050
-
1051
- [Gaisbot*]
1052
- Parent=General Crawlers
1053
- Browser="Gaisbot"
1054
-
1055
- [Healthbot/Health_and_Longevity_Project_(HealthHaven.com) ]
1056
- Parent=General Crawlers
1057
- Browser="Healthbot"
1058
- isBanned=true
1059
-
1060
- [hitcrawler_0.*]
1061
- Parent=General Crawlers
1062
- Browser="hitcrawler"
1063
- isBanned=true
1064
-
1065
- [htdig/*]
1066
- Parent=General Crawlers
1067
- Browser="ht://Dig"
1068
-
1069
- [http://hilfe.acont.de/bot.html ACONTBOT]
1070
- Parent=General Crawlers
1071
- Browser="ACONTBOT"
1072
- isBanned=true
1073
-
1074
- [JetBrains*]
1075
- Parent=General Crawlers
1076
- Browser="Omea Pro"
1077
-
1078
- [KakleBot - www.kakle.com/0.1]
1079
- Parent=General Crawlers
1080
- Browser="KakleBot"
1081
-
1082
- [KBeeBot/0.*]
1083
- Parent=General Crawlers
1084
- Browser="KBeeBot"
1085
- isBanned=true
1086
-
1087
- [Keyword Density/*]
1088
- Parent=General Crawlers
1089
- Browser="Keyword Density"
1090
-
1091
- [LetsCrawl.com/1.0*]
1092
- Parent=General Crawlers
1093
- Browser="LetsCrawl.com"
1094
- isBanned=true
1095
-
1096
- [Lincoln State Web Browser]
1097
- Parent=General Crawlers
1098
- Browser="Lincoln State Web Browser"
1099
- isBanned=true
1100
-
1101
- [Links4US-Crawler,*]
1102
- Parent=General Crawlers
1103
- Browser="Links4US-Crawler"
1104
- isBanned=true
1105
-
1106
- [Lorkyll *.* -- lorkyll@444.net]
1107
- Parent=General Crawlers
1108
- Browser="Lorkyll"
1109
- isBanned=true
1110
-
1111
- [Lsearch/sondeur]
1112
- Parent=General Crawlers
1113
- Browser="Lsearch/sondeur"
1114
- isBanned=true
1115
-
1116
- [LucidMedia ClickSense/4.?]
1117
- Parent=General Crawlers
1118
- Browser="LucidMedia-ClickSense"
1119
- isBanned=true
1120
-
1121
- [MapoftheInternet.com?(?http://MapoftheInternet.com)]
1122
- Parent=General Crawlers
1123
- Browser="MapoftheInternet"
1124
- isBanned=true
1125
-
1126
- [Marvin v0.3]
1127
- Parent=General Crawlers
1128
- Browser="MedHunt"
1129
- Version=0.3
1130
- MajorVer=0
1131
- MinorVer=3
1132
-
1133
- [masidani_bot_v0.6*]
1134
- Parent=General Crawlers
1135
- Browser="masidani_bot"
1136
-
1137
- [Metaspinner/0.01 (Metaspinner; http://www.meta-spinner.de/; support@meta-spinner.de/)]
1138
- Parent=General Crawlers
1139
- Browser="Metaspinner/0.01"
1140
- Version=0.01
1141
- MajorVer=0
1142
- MinorVer=01
1143
-
1144
- [metatagsdir/*]
1145
- Parent=General Crawlers
1146
- Browser="metatagsdir"
1147
- isBanned=true
1148
-
1149
- [Microsoft Windows Network Diagnostics]
1150
- Parent=General Crawlers
1151
- Browser="Microsoft Windows Network Diagnostics"
1152
- isBanned=true
1153
-
1154
- [Miva (AlgoFeedback@miva.com)]
1155
- Parent=General Crawlers
1156
- Browser="Miva"
1157
-
1158
- [moget/*]
1159
- Parent=General Crawlers
1160
- Browser="Goo"
1161
-
1162
- [Mozdex/0.7.2*]
1163
- Parent=General Crawlers
1164
- Browser="Mozdex"
1165
-
1166
- [Mozilla Compatible (MS IE 3.01 WinNT)]
1167
- Parent=General Crawlers
1168
- isBanned=true
1169
-
1170
- [Mozilla/* (compatible; WebCapture*)]
1171
- Parent=General Crawlers
1172
- Browser="WebCapture"
1173
-
1174
- [Mozilla/4.0 (compatible; DepSpid/*)]
1175
- Parent=General Crawlers
1176
- Browser="DepSpid"
1177
-
1178
- [Mozilla/4.0 (compatible; MSIE *; Windows NT *; SV1)]
1179
- Parent=General Crawlers
1180
- Browser="AVG"
1181
-
1182
- [Mozilla/4.0 (compatible; MSIE 4.01; Vonna.com b o t)]
1183
- Parent=General Crawlers
1184
- Browser="Vonna.com"
1185
- isBanned=true
1186
-
1187
- [Mozilla/4.0 (compatible; MSIE 4.01; Windows95)]
1188
- Parent=General Crawlers
1189
- Win32=true
1190
-
1191
- [Mozilla/4.0 (compatible; MSIE 4.5; Windows 98; )]
1192
- Parent=General Crawlers
1193
- Win32=true
1194
-
1195
- [Mozilla/4.0 (compatible; MyFamilyBot/*)]
1196
- Parent=General Crawlers
1197
- Browser="MyFamilyBot"
1198
-
1199
- [Mozilla/4.0 (compatible; N-Stealth)]
1200
- Parent=General Crawlers
1201
- Browser="N-Stealth"
1202
-
1203
- [Mozilla/4.0 (compatible; Scumbot/*; Linux/*)]
1204
- Parent=General Crawlers
1205
- isBanned=true
1206
-
1207
- [Mozilla/4.0 (compatible; Spider; Linux)]
1208
- Parent=General Crawlers
1209
- isBanned=true
1210
-
1211
- [Mozilla/4.0 (compatible; Win32)]
1212
- Parent=General Crawlers
1213
- Browser="Unknown Crawler"
1214
- isBanned=true
1215
-
1216
- [Mozilla/4.1]
1217
- Parent=General Crawlers
1218
- isBanned=true
1219
-
1220
- [Mozilla/4.5]
1221
- Parent=General Crawlers
1222
- isBanned=true
1223
-
1224
- [Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/1.0]
1225
- Parent=General Crawlers
1226
- Browser="Gnomit"
1227
- isBanned=true
1228
-
1229
- [Mozilla/5.0 (compatible; AboutUsBot/*)]
1230
- Parent=General Crawlers
1231
- Browser="AboutUsBot"
1232
- isBanned=true
1233
-
1234
- [Mozilla/5.0 (compatible; BuzzRankingBot/*)]
1235
- Parent=General Crawlers
1236
- Browser="BuzzRankingBot"
1237
- isBanned=true
1238
-
1239
- [Mozilla/5.0 (compatible; Diffbot/0.1; http://www.diffbot.com)]
1240
- Parent=General Crawlers
1241
- Browser="Diffbot"
1242
-
1243
- [Mozilla/5.0 (compatible; FirstSearchBot/1.0; *)]
1244
- Parent=General Crawlers
1245
- Browser="FirstSearchBot"
1246
-
1247
- [mozilla/5.0 (compatible; genevabot http://www.healthdash.com)]
1248
- Parent=General Crawlers
1249
- Browser="Healthdash"
1250
-
1251
- [Mozilla/5.0 (compatible; JadynAveBot; *http://www.jadynave.com/robot*]
1252
- Parent=General Crawlers
1253
- Browser="JadynAveBot"
1254
- isBanned=true
1255
-
1256
- [Mozilla/5.0 (compatible; Kyluka crawl; http://www.kyluka.com/crawl.html; crawl@kyluka.com)]
1257
- Parent=General Crawlers
1258
- Browser="Kyluka"
1259
-
1260
- [Mozilla/5.0 (compatible; MJ12bot/v1.2.*; http://www.majestic12.co.uk/bot.php*)]
1261
- Parent=General Crawlers
1262
- Browser="MJ12bot"
1263
- Version=1.2
1264
- MajorVer=1
1265
- MinorVer=2
1266
-
1267
- [Mozilla/5.0 (compatible; MSIE 7.0 ?http://www.europarchive.org)]
1268
- Parent=General Crawlers
1269
- Browser="Europe Web Archive"
1270
-
1271
- [Mozilla/5.0 (compatible; Seznam screenshot-generator 2.0;*)]
1272
- Parent=General Crawlers
1273
- Browser="Seznam screenshot-generator"
1274
- isBanned=true
1275
-
1276
- [Mozilla/5.0 (compatible; Twingly Recon; http://www.twingly.com/)]
1277
- Parent=General Crawlers
1278
- Browser="Twingly Recon"
1279
-
1280
- [Mozilla/5.0 (compatible; unwrapbot/2.*; http://www.unwrap.jp*)]
1281
- Parent=General Crawlers
1282
- Browser="UnWrap"
1283
-
1284
- [Mozilla/5.0 (compatible; Vermut*)]
1285
- Parent=General Crawlers
1286
- Browser="Vermut"
1287
-
1288
- [Mozilla/5.0 (compatible; Webbot/*)]
1289
- Parent=General Crawlers
1290
- Browser="Webbot.ru"
1291
- isBanned=true
1292
-
1293
- [n4p_bot*]
1294
- Parent=General Crawlers
1295
- Browser="n4p_bot"
1296
-
1297
- [nabot*]
1298
- Parent=General Crawlers
1299
- Browser="Nabot"
1300
-
1301
- [NetCarta_WebMapper/*]
1302
- Parent=General Crawlers
1303
- Browser="NetCarta_WebMapper"
1304
- isBanned=true
1305
-
1306
- [NetID.com Bot*]
1307
- Parent=General Crawlers
1308
- Browser="NetID.com Bot"
1309
- isBanned=true
1310
-
1311
- [neTVision AG andreas.heidoetting@thomson-webcast.net]
1312
- Parent=General Crawlers
1313
- Browser="neTVision"
1314
-
1315
- [NextopiaBOT*]
1316
- Parent=General Crawlers
1317
- Browser="NextopiaBOT"
1318
-
1319
- [nicebot]
1320
- Parent=General Crawlers
1321
- Browser="nicebot"
1322
- isBanned=true
1323
-
1324
- [niXXieBot?Foster*]
1325
- Parent=General Crawlers
1326
- Browser="niXXiebot-Foster"
1327
-
1328
- [Nozilla/P.N (Just for IDS woring)]
1329
- Parent=General Crawlers
1330
- Browser="Nozilla/P.N"
1331
- isBanned=true
1332
-
1333
- [Nudelsalat/*]
1334
- Parent=General Crawlers
1335
- Browser="Nudelsalat"
1336
- isBanned=true
1337
-
1338
- [Ocelli/*]
1339
- Parent=General Crawlers
1340
- Browser="Ocelli"
1341
-
1342
- [OpenTaggerBot (http://www.opentagger.com/opentaggerbot.htm)]
1343
- Parent=General Crawlers
1344
- Browser="OpenTaggerBot"
1345
-
1346
- [Oracle Enterprise Search]
1347
- Parent=General Crawlers
1348
- Browser="Oracle Enterprise Search"
1349
- isBanned=true
1350
-
1351
- [Oracle Ultra Search]
1352
- Parent=General Crawlers
1353
- Browser="Oracle Ultra Search"
1354
-
1355
- [Pajaczek/*]
1356
- Parent=General Crawlers
1357
- Browser="Pajaczek"
1358
- isBanned=true
1359
-
1360
- [panscient.com]
1361
- Parent=General Crawlers
1362
- Browser="panscient.com"
1363
- isBanned=true
1364
-
1365
- [Patwebbot (http://www.herz-power.de/technik.html)]
1366
- Parent=General Crawlers
1367
- Browser="Patwebbot"
1368
-
1369
- [PDFBot (crawler@pdfind.com)]
1370
- Parent=General Crawlers
1371
- Browser="PDFBot"
1372
-
1373
- [Pete-Spider/1.*]
1374
- Parent=General Crawlers
1375
- Browser="Pete-Spider"
1376
- isBanned=true
1377
-
1378
- [PhpDig/*]
1379
- Parent=General Crawlers
1380
- Browser="PhpDig"
1381
-
1382
- [PlantyNet_WebRobot*]
1383
- Parent=General Crawlers
1384
- Browser="PlantyNet"
1385
- isBanned=true
1386
-
1387
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PluckIt
1388
-
1389
- [PluckItCrawler/1.0 (*)]
1390
- Parent=General Crawlers
1391
- isMobileDevice=true
1392
-
1393
- [PMAFind]
1394
- Parent=General Crawlers
1395
- Browser="PMAFind"
1396
- isBanned=true
1397
-
1398
- [Poodle_predictor_1.0]
1399
- Parent=General Crawlers
1400
- Browser="Poodle Predictor"
1401
-
1402
- [QuickFinder Crawler]
1403
- Parent=General Crawlers
1404
- Browser="QuickFinder"
1405
- isBanned=true
1406
-
1407
- [Radiation Retriever*]
1408
- Parent=General Crawlers
1409
- Browser="Radiation Retriever"
1410
- isBanned=true
1411
-
1412
- [RedCarpet/*]
1413
- Parent=General Crawlers
1414
- Browser="RedCarpet"
1415
- isBanned=true
1416
-
1417
- [RixBot (http://babelserver.org/rix)]
1418
- Parent=General Crawlers
1419
- Browser="RixBot"
1420
-
1421
- [Rome Client (http://tinyurl.com/64t5n) Ver: 0.*]
1422
- Parent=General Crawlers
1423
- Browser="TinyURL"
1424
-
1425
- [SBIder/*]
1426
- Parent=General Crawlers
1427
- Browser="SiteSell"
1428
-
1429
- [ScollSpider/2.*]
1430
- Parent=General Crawlers
1431
- Browser="ScollSpider"
1432
- isBanned=true
1433
-
1434
- [Search Fst]
1435
- Parent=General Crawlers
1436
- Browser="Search Fst"
1437
-
1438
- [searchbot admin@google.com]
1439
- Parent=General Crawlers
1440
- Browser="searchbot"
1441
- isBanned=true
1442
-
1443
- [Seeker.lookseek.com]
1444
- Parent=General Crawlers
1445
- Browser="LookSeek"
1446
- isBanned=true
1447
-
1448
- [semanticdiscovery/*]
1449
- Parent=General Crawlers
1450
- Browser="Semantic Discovery"
1451
-
1452
- [SeznamBot/*]
1453
- Parent=General Crawlers
1454
- Browser="SeznamBot"
1455
- isBanned=true
1456
-
1457
- [Shelob (shelob@gmx.net)]
1458
- Parent=General Crawlers
1459
- Browser="Shelob"
1460
- isBanned=true
1461
-
1462
- [shelob v1.*]
1463
- Parent=General Crawlers
1464
- Browser="shelob"
1465
- isBanned=true
1466
-
1467
- [ShopWiki/1.0*]
1468
- Parent=General Crawlers
1469
- Browser="ShopWiki"
1470
- Version=1.0
1471
- MajorVer=1
1472
- MinorVer=0
1473
-
1474
- [ShowXML/1.0 libwww/5.4.0]
1475
- Parent=General Crawlers
1476
- Browser="ShowXML"
1477
- isBanned=true
1478
-
1479
- [sitecheck.internetseer.com*]
1480
- Parent=General Crawlers
1481
- Browser="Internetseer"
1482
-
1483
- [SMBot/*]
1484
- Parent=General Crawlers
1485
- Browser="SMBot"
1486
-
1487
- [sohu*]
1488
- Parent=General Crawlers
1489
- Browser="sohu-search"
1490
- isBanned=true
1491
-
1492
- [SpankBot*]
1493
- Parent=General Crawlers
1494
- Browser="SpankBot"
1495
- isBanned=true
1496
-
1497
- [spider (tspyyp@tom.com)]
1498
- Parent=General Crawlers
1499
- Browser="spider (tspyyp@tom.com)"
1500
- isBanned=true
1501
-
1502
- [Sunrise/0.*]
1503
- Parent=General Crawlers
1504
- Browser="Sunrise"
1505
- isBanned=true
1506
-
1507
- [Superpages URL Verification Engine]
1508
- Parent=General Crawlers
1509
- Browser="Superpages"
1510
-
1511
- [Surf Knight]
1512
- Parent=General Crawlers
1513
- Browser="Surf Knight"
1514
- isBanned=true
1515
-
1516
- [SurveyBot/*]
1517
- Parent=General Crawlers
1518
- Browser="SurveyBot"
1519
- isBanned=true
1520
-
1521
- [SynapticSearch/AI Crawler 1.?]
1522
- Parent=General Crawlers
1523
- Browser="SynapticSearch"
1524
- isBanned=true
1525
-
1526
- [SyncMgr]
1527
- Parent=General Crawlers
1528
- Browser="SyncMgr"
1529
-
1530
- [Tagyu Agent/1.0]
1531
- Parent=General Crawlers
1532
- Browser="Tagyu"
1533
-
1534
- [Talkro Web-Shot/*]
1535
- Parent=General Crawlers
1536
- Browser="Talkro Web-Shot"
1537
- isBanned=true
1538
-
1539
- [Tecomi Bot (http://www.tecomi.com/bot.htm)]
1540
- Parent=General Crawlers
1541
- Browser="Tecomi"
1542
-
1543
- [TheInformant*]
1544
- Parent=General Crawlers
1545
- Browser="TheInformant"
1546
- isBanned=true
1547
-
1548
- [Toata dragostea*]
1549
- Parent=General Crawlers
1550
- Browser="Toata dragostea"
1551
- isBanned=true
1552
-
1553
- [Tutorial Crawler*]
1554
- Parent=General Crawlers
1555
- isBanned=true
1556
-
1557
- [UbiCrawler/*]
1558
- Parent=General Crawlers
1559
- Browser="UbiCrawler"
1560
-
1561
- [UCmore]
1562
- Parent=General Crawlers
1563
- Browser="UCmore"
1564
-
1565
- [User*Agent:*]
1566
- Parent=General Crawlers
1567
- isBanned=true
1568
-
1569
- [USER_AGENT]
1570
- Parent=General Crawlers
1571
- Browser="USER_AGENT"
1572
- isBanned=true
1573
-
1574
- [VadixBot]
1575
- Parent=General Crawlers
1576
- Browser="VadixBot"
1577
-
1578
- [VengaBot/*]
1579
- Parent=General Crawlers
1580
- Browser="VengaBot"
1581
- isBanned=true
1582
-
1583
- [Visicom Toolbar]
1584
- Parent=General Crawlers
1585
- Browser="Visicom Toolbar"
1586
-
1587
- [W3C-WebCon/*]
1588
- Parent=General Crawlers
1589
- Browser="W3C-WebCon"
1590
-
1591
- [Webclipping.com]
1592
- Parent=General Crawlers
1593
- Browser="Webclipping.com"
1594
- isBanned=true
1595
-
1596
- [webcollage/*]
1597
- Parent=General Crawlers
1598
- Browser="WebCollage"
1599
- isBanned=true
1600
-
1601
- [WebCrawler_1.*]
1602
- Parent=General Crawlers
1603
- Browser="WebCrawler"
1604
-
1605
- [WebFilter Robot*]
1606
- Parent=General Crawlers
1607
- Browser="WebFilter Robot"
1608
-
1609
- [WeBoX/*]
1610
- Parent=General Crawlers
1611
- Browser="WeBoX"
1612
-
1613
- [WebTrends/*]
1614
- Parent=General Crawlers
1615
- Browser="WebTrends"
1616
-
1617
- [West Wind Internet Protocols*]
1618
- Parent=General Crawlers
1619
- Browser="Versatel"
1620
- isBanned=true
1621
-
1622
- [WhizBang]
1623
- Parent=General Crawlers
1624
- Browser="WhizBang"
1625
-
1626
- [Willow Internet Crawler by Twotrees V*]
1627
- Parent=General Crawlers
1628
- Browser="Willow Internet Crawler"
1629
-
1630
- [WIRE/* (Linux; i686; Bot,Robot,Spider,Crawler)]
1631
- Parent=General Crawlers
1632
- Browser="WIRE"
1633
- isBanned=true
1634
-
1635
- [www.fi crawler, contact crawler@www.fi]
1636
- Parent=General Crawlers
1637
- Browser="www.fi crawler"
1638
-
1639
- [Xerka WebBot v1.*]
1640
- Parent=General Crawlers
1641
- Browser="Xerka"
1642
- isBanned=true
1643
-
1644
- [XML Sitemaps Generator*]
1645
- Parent=General Crawlers
1646
- Browser="XML Sitemaps Generator"
1647
-
1648
- [XSpider*]
1649
- Parent=General Crawlers
1650
- Browser="XSpider"
1651
- isBanned=true
1652
-
1653
- [YooW!/* (?http://www.yoow.eu)]
1654
- Parent=General Crawlers
1655
- Browser="YooW!"
1656
- isBanned=true
1657
-
1658
- [HiddenMarket-*]
1659
- Parent=General RSS
1660
- Browser="HiddenMarket"
1661
- isBanned=true
1662
-
1663
- [FOTOCHECKER]
1664
- Parent=Image Crawlers
1665
- Browser="FOTOCHECKER"
1666
- isBanned=true
1667
-
1668
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Search Engines
1669
-
1670
- [Search Engines]
1671
- Parent=DefaultProperties
1672
- Browser="Search Engines"
1673
- Crawler=true
1674
-
1675
- [*FDSE robot*]
1676
- Parent=Search Engines
1677
- Browser="FDSE Robot"
1678
-
1679
- [*Fluffy the spider*]
1680
- Parent=Search Engines
1681
- Browser="SearchHippo"
1682
-
1683
- [Abacho*]
1684
- Parent=Search Engines
1685
- Browser="Abacho"
1686
-
1687
- [ah-ha.com crawler (crawler@ah-ha.com)]
1688
- Parent=Search Engines
1689
- Browser="Ah-Ha"
1690
-
1691
- [AIBOT/*]
1692
- Parent=Search Engines
1693
- Browser="21Seek.Com"
1694
-
1695
- [ALeadSoftbot/*]
1696
- Parent=Search Engines
1697
- Browser="ALeadSoftbot"
1698
-
1699
- [Amfibibot/*]
1700
- Parent=Search Engines
1701
- Browser="Amfibi"
1702
-
1703
- [AnswerBus (http://www.answerbus.com/)]
1704
- Parent=Search Engines
1705
-
1706
- [antibot-V*]
1707
- Parent=Search Engines
1708
- Browser="antibot"
1709
-
1710
- [appie*(www.walhello.com)]
1711
- Parent=Search Engines
1712
- Browser="Walhello"
1713
-
1714
- [ASPSeek/*]
1715
- Parent=Search Engines
1716
- Browser="ASPSeek"
1717
-
1718
- [BigCliqueBOT/*]
1719
- Parent=Search Engines
1720
- Browser="BigClique.com/BigClic.com"
1721
-
1722
- [Blaiz-Bee/*]
1723
- Parent=Search Engines
1724
- Browser="RawGrunt"
1725
-
1726
- [btbot/*]
1727
- Parent=Search Engines
1728
- Browser="Bit Torrent Search Engine"
1729
-
1730
- [Busiversebot/v1.0 (http://www.busiverse.com/bot.php)]
1731
- Parent=Search Engines
1732
- Browser="Busiversebot"
1733
- isBanned=true
1734
-
1735
- [CatchBot/*; http://www.catchbot.com]
1736
- Parent=Search Engines
1737
- Browser="CatchBot"
1738
- Version=1.0
1739
- MajorVer=1
1740
- MinorVer=0
1741
-
1742
- [CipinetBot (http://www.cipinet.com/bot.html)]
1743
- Parent=Search Engines
1744
- Browser="CipinetBot"
1745
-
1746
- [Cogentbot/1.?*]
1747
- Parent=Search Engines
1748
- Browser="Cogentbot"
1749
-
1750
- [compatible; Mozilla 4.0; MSIE 5.5; (SqwidgeBot v1.01 - http://www.sqwidge.com/bot/)]
1751
- Parent=Search Engines
1752
- Browser="SqwidgeBot"
1753
-
1754
- [cosmos*]
1755
- Parent=Search Engines
1756
- Browser="Xyleme"
1757
-
1758
- [Deepindex]
1759
- Parent=Search Engines
1760
- Browser="Deepindex"
1761
-
1762
- [DiamondBot]
1763
- Parent=Search Engines
1764
- Browser="DiamondBot"
1765
-
1766
- [Dumbot*]
1767
- Parent=Search Engines
1768
- Browser="Dumbot"
1769
- Version=0.2
1770
- MajorVer=0
1771
- MinorVer=2
1772
- Beta=true
1773
-
1774
- [Eule?Robot*]
1775
- Parent=Search Engines
1776
- Browser="Eule-Robot"
1777
-
1778
- [Faxobot/*]
1779
- Parent=Search Engines
1780
- Browser="Faxo"
1781
-
1782
- [Filangy/*]
1783
- Parent=Search Engines
1784
- Browser="Filangy"
1785
-
1786
- [flatlandbot/*]
1787
- Parent=Search Engines
1788
- Browser="Flatland"
1789
-
1790
- [Fooky.com/ScorpionBot/ScoutOut;*]
1791
- Parent=Search Engines
1792
- Browser="ScorpionBot"
1793
- isBanned=true
1794
-
1795
- [FyberSpider*]
1796
- Parent=Search Engines
1797
- Browser="FyberSpider"
1798
- isBanned=true
1799
-
1800
- [Gaisbot/*]
1801
- Parent=Search Engines
1802
- Browser="Gaisbot"
1803
-
1804
- [gazz/*(gazz@nttr.co.jp)]
1805
- Parent=Search Engines
1806
- Browser="gazz"
1807
-
1808
- [geniebot*]
1809
- Parent=Search Engines
1810
- Browser="GenieKnows"
1811
-
1812
- [GOFORITBOT (?http://www.goforit.com/about/?)]
1813
- Parent=Search Engines
1814
- Browser="GoForIt"
1815
-
1816
- [GoGuidesBot/*]
1817
- Parent=Search Engines
1818
- Browser="GoGuidesBot"
1819
-
1820
- [GroschoBot/*]
1821
- Parent=Search Engines
1822
- Browser="GroschoBot"
1823
-
1824
- [GurujiBot/1.*]
1825
- Parent=Search Engines
1826
- Browser="GurujiBot"
1827
- isBanned=true
1828
-
1829
- [HenryTheMiragoRobot*]
1830
- Parent=Search Engines
1831
- Browser="Mirago"
1832
-
1833
- [HolmesBot (http://holmes.ge)]
1834
- Parent=Search Engines
1835
- Browser="HolmesBot"
1836
-
1837
- [Hotzonu/*]
1838
- Parent=Search Engines
1839
- Browser="Hotzonu"
1840
-
1841
- [HyperEstraier/*]
1842
- Parent=Search Engines
1843
- Browser="HyperEstraier"
1844
- isBanned=true
1845
-
1846
- [i1searchbot/*]
1847
- Parent=Search Engines
1848
- Browser="i1searchbot"
1849
-
1850
- [IIITBOT/1.*]
1851
- Parent=Search Engines
1852
- Browser="Indian Language Web Search Engine"
1853
-
1854
- [Iltrovatore-?etaccio/*]
1855
- Parent=Search Engines
1856
- Browser="Iltrovatore-Setaccio"
1857
-
1858
- [InfociousBot (?http://corp.infocious.com/tech_crawler.php)]
1859
- Parent=Search Engines
1860
- Browser="InfociousBot"
1861
- isBanned=true
1862
-
1863
- [Infoseek SideWinder/*]
1864
- Parent=Search Engines
1865
- Browser="Infoseek"
1866
-
1867
- [iSEEKbot/*]
1868
- Parent=Search Engines
1869
- Browser="iSEEKbot"
1870
-
1871
- [Knight/0.? (Zook Knight; http://knight.zook.in/; knight@zook.in)]
1872
- Parent=Search Engines
1873
- Browser="Knight"
1874
-
1875
- [Kolinka Forum Search (www.kolinka.com)]
1876
- Parent=Search Engines
1877
- Browser="Kolinka Forum Search"
1878
- isBanned=true
1879
-
1880
- [KRetrieve/]
1881
- Parent=Search Engines
1882
- Browser="KRetrieve"
1883
- isBanned=true
1884
-
1885
- [LapozzBot/*]
1886
- Parent=Search Engines
1887
- Browser="LapozzBot"
1888
-
1889
- [Linknzbot*]
1890
- Parent=Search Engines
1891
- Browser="Linknzbot"
1892
-
1893
- [LocalcomBot/*]
1894
- Parent=Search Engines
1895
- Browser="LocalcomBot"
1896
-
1897
- [Mail.Ru/1.0]
1898
- Parent=Search Engines
1899
- Browser="Mail.Ru"
1900
-
1901
- [MaSagool/*]
1902
- Parent=Search Engines
1903
- Browser="Sagoo"
1904
- Version=1.0
1905
- MajorVer=1
1906
- MinorVer=0
1907
-
1908
- [miniRank/*]
1909
- Parent=Search Engines
1910
- Browser="miniRank"
1911
-
1912
- [Mnogosearch*]
1913
- Parent=Search Engines
1914
- Browser="Mnogosearch"
1915
-
1916
- [Mozilla/0.9* no dos :) (Linux)]
1917
- Parent=Search Engines
1918
- Browser="goliat"
1919
- isBanned=true
1920
-
1921
- [Mozilla/4.0 (compatible; Arachmo)]
1922
- Parent=Search Engines
1923
- Browser="Arachmo"
1924
-
1925
- [Mozilla/4.0 (compatible; http://search.thunderstone.com/texis/websearch/about.html)]
1926
- Parent=Search Engines
1927
- Browser="ThunderStone"
1928
- isBanned=true
1929
-
1930
- [Mozilla/4.0 (compatible; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)]
1931
- Parent=Search Engines
1932
- Browser="Girafabot"
1933
- Win32=true
1934
-
1935
- [Mozilla/4.0 (compatible; Vagabondo/*; webcrawler at wise-guys dot nl; *)]
1936
- Parent=Search Engines
1937
- Browser="Vagabondo"
1938
-
1939
- [Mozilla/4.0(?compatible; MSIE 6.0; Qihoo *)]
1940
- Parent=Search Engines
1941
- Browser="Qihoo"
1942
-
1943
- [Mozilla/4.7 (compatible; WhizBang; http://www.whizbang.com/crawler)]
1944
- Parent=Search Engines
1945
- Browser="Inxight Software"
1946
-
1947
- [Mozilla/5.0 (*) VoilaBot*]
1948
- Parent=Search Engines
1949
- Browser="VoilaBot"
1950
- isBanned=true
1951
-
1952
- [Mozilla/5.0 (compatible; ActiveTouristBot*; http://www.activetourist.com)]
1953
- Parent=Search Engines
1954
- Browser="ActiveTouristBot"
1955
-
1956
- [Mozilla/5.0 (compatible; Charlotte/*; *)]
1957
- Parent=Search Engines
1958
- Browser="Charlotte"
1959
- Beta=true
1960
- isBanned=true
1961
-
1962
- [Mozilla/5.0 (compatible; CXL-FatAssANT*)]
1963
- Parent=Search Engines
1964
- Browser="FatAssANT"
1965
-
1966
- [Mozilla/5.0 (compatible; DBLBot/1.0; http://www.dontbuylists.com/)]
1967
- Parent=Search Engines
1968
- Browser="DBLBot"
1969
- Version=1.0
1970
- MajorVer=1
1971
- MinorVer=0
1972
-
1973
- [Mozilla/5.0 (compatible; EARTHCOM.info/*)]
1974
- Parent=Search Engines
1975
- Browser="EARTHCOM"
1976
-
1977
- [Mozilla/5.0 (compatible; Lipperhey Spider; http://www.lipperhey.com/)]
1978
- Parent=Search Engines
1979
- Browser="Lipperhey Spider"
1980
-
1981
- [Mozilla/5.0 (compatible; MojeekBot/*; http://www.mojeek.com/bot.html)]
1982
- Parent=Search Engines
1983
- Browser="MojeekBot"
1984
-
1985
- [Mozilla/5.0 (compatible; NLCrawler/*]
1986
- Parent=Search Engines
1987
- Browser="Northern Light Web Search"
1988
-
1989
- [Mozilla/5.0 (compatible; OsO;*]
1990
- Parent=Search Engines
1991
- Browser="Octopodus"
1992
- isBanned=true
1993
-
1994
- [Mozilla/5.0 (compatible; Pogodak.*)]
1995
- Parent=Search Engines
1996
- Browser="Pogodak"
1997
-
1998
- [Mozilla/5.0 (compatible; Quantcastbot/1.*)]
1999
- Parent=Search Engines
2000
- Browser="Quantcastbot"
2001
-
2002
- [Mozilla/5.0 (compatible; ScoutJet; *http://www.scoutjet.com/)]
2003
- Parent=Search Engines
2004
- Browser="ScoutJet"
2005
-
2006
- [Mozilla/5.0 (compatible; Scrubby/*; http://www.scrubtheweb.com/abs/meta-check.html)]
2007
- Parent=Search Engines
2008
- Browser="Scrubby"
2009
- isBanned=true
2010
-
2011
- [Mozilla/5.0 (compatible; YoudaoBot/1.*; http://www.youdao.com/help/webmaster/spider/*)]
2012
- Parent=Search Engines
2013
- Browser="YoudaoBot"
2014
- Version=1.0
2015
- MajorVer=1
2016
- MinorVer=0
2017
-
2018
- [Mozilla/5.0 (Twiceler*)]
2019
- Parent=Search Engines
2020
- Browser="Twiceler"
2021
- isBanned=true
2022
-
2023
- [Mozilla/5.0 CostaCider Search*]
2024
- Parent=Search Engines
2025
- Browser="CostaCider Search"
2026
-
2027
- [NavissoBot]
2028
- Parent=Search Engines
2029
- Browser="NavissoBot"
2030
-
2031
- [NextGenSearchBot*(for information visit *)]
2032
- Parent=Search Engines
2033
- Browser="ZoomInfo"
2034
- isBanned=true
2035
-
2036
- [Norbert the Spider(Burf.com)]
2037
- Parent=Search Engines
2038
- Browser="Norbert the Spider"
2039
-
2040
- [NuSearch Spider*]
2041
- Parent=Search Engines
2042
- Browser="nuSearch"
2043
-
2044
- [ObjectsSearch/*]
2045
- Parent=Search Engines
2046
- Browser="ObjectsSearch"
2047
-
2048
- [OpenISearch/1.*]
2049
- Parent=Search Engines
2050
- Browser="OpenISearch (Amazon)"
2051
-
2052
- [Pagebull http://www.pagebull.com/]
2053
- Parent=Search Engines
2054
- Browser="Pagebull"
2055
-
2056
- [PEERbot*]
2057
- Parent=Search Engines
2058
- Browser="PEERbot"
2059
-
2060
- [Pompos/*]
2061
- Parent=Search Engines
2062
- Browser="Pompos"
2063
-
2064
- [Popdexter/*]
2065
- Parent=Search Engines
2066
- Browser="Popdex"
2067
-
2068
- [Qweery*]
2069
- Parent=Search Engines
2070
- Browser="QweeryBot"
2071
-
2072
- [RedCell/* (*)]
2073
- Parent=Search Engines
2074
- Browser="RedCell"
2075
-
2076
- [Scrubby/*]
2077
- Parent=Search Engines
2078
- Browser="Scrub The Web"
2079
-
2080
- [Search-10/*]
2081
- Parent=Search Engines
2082
- Browser="Search-10"
2083
-
2084
- [search.ch*]
2085
- Parent=Search Engines
2086
- Browser="Swiss Search Engine"
2087
-
2088
- [Searchmee! Spider*]
2089
- Parent=Search Engines
2090
- Browser="Searchmee!"
2091
-
2092
- [Seekbot/*]
2093
- Parent=Search Engines
2094
- Browser="Seekbot"
2095
-
2096
- [SiteSpider (http://www.SiteSpider.com/)]
2097
- Parent=Search Engines
2098
- Browser="SiteSpider"
2099
-
2100
- [Spinne/*]
2101
- Parent=Search Engines
2102
- Browser="Spinne"
2103
-
2104
- [sproose/*]
2105
- Parent=Search Engines
2106
- Browser="Sproose"
2107
-
2108
- [Sqeobot/0.*]
2109
- Parent=Search Engines
2110
- Browser="Branzel"
2111
- isBanned=true
2112
-
2113
- [SquigglebotBot/*]
2114
- Parent=Search Engines
2115
- Browser="SquigglebotBot"
2116
- isBanned=true
2117
-
2118
- [StackRambler/*]
2119
- Parent=Search Engines
2120
- Browser="StackRambler"
2121
-
2122
- [SygolBot*]
2123
- Parent=Search Engines
2124
- Browser="SygolBot"
2125
-
2126
- [SynoBot]
2127
- Parent=Search Engines
2128
- Browser="SynoBot"
2129
-
2130
- [Szukacz/*]
2131
- Parent=Search Engines
2132
- Browser="Szukacz"
2133
-
2134
- [Tarantula/*]
2135
- Parent=Search Engines
2136
- Browser="Tarantula"
2137
- isBanned=true
2138
-
2139
- [TerrawizBot/*]
2140
- Parent=Search Engines
2141
- Browser="TerrawizBot"
2142
- isBanned=true
2143
-
2144
- [Tkensaku/*]
2145
- Parent=Search Engines
2146
- Browser="Tkensaku"
2147
-
2148
- [TMCrawler]
2149
- Parent=Search Engines
2150
- Browser="TMCrawler"
2151
- isBanned=true
2152
-
2153
- [updated/*]
2154
- Parent=Search Engines
2155
- Browser="Updated!"
2156
-
2157
- [URL Spider Pro/*]
2158
- Parent=Search Engines
2159
- Browser="URL Spider Pro"
2160
-
2161
- [URL Spider SQL*]
2162
- Parent=Search Engines
2163
- Browser="Innerprise Enterprise Search"
2164
-
2165
- [VMBot/*]
2166
- Parent=Search Engines
2167
- Browser="VMBot"
2168
-
2169
- [voyager/2.0 (http://www.kosmix.com/html/crawler.html)]
2170
- Parent=Search Engines
2171
- Browser="Voyager"
2172
-
2173
- [wadaino.jp-crawler*]
2174
- Parent=Search Engines
2175
- Browser="wadaino.jp"
2176
- isBanned=true
2177
-
2178
- [WebAlta Crawler/*]
2179
- Parent=Search Engines
2180
- Browser="WebAlta Crawler"
2181
- isBanned=true
2182
-
2183
- [WebCorp/*]
2184
- Parent=Search Engines
2185
- Browser="WebCorp"
2186
- isBanned=true
2187
-
2188
- [webcrawl.net]
2189
- Parent=Search Engines
2190
- Browser="webcrawl.net"
2191
-
2192
- [WISEbot/*]
2193
- Parent=Search Engines
2194
- Browser="WISEbot"
2195
- isBanned=true
2196
-
2197
- [Wotbox/*]
2198
- Parent=Search Engines
2199
- Browser="Wotbox"
2200
-
2201
- [www.zatka.com]
2202
- Parent=Search Engines
2203
- Browser="Zatka"
2204
-
2205
- [WWWeasel Robot v*]
2206
- Parent=Search Engines
2207
- Browser="World Wide Weasel"
2208
-
2209
- [YadowsCrawler*]
2210
- Parent=Search Engines
2211
- Browser="YadowsCrawler"
2212
-
2213
- [YodaoBot/*]
2214
- Parent=Search Engines
2215
- Browser="YodaoBot"
2216
- isBanned=true
2217
-
2218
- [ZeBot_www.ze.bz*]
2219
- Parent=Search Engines
2220
- Browser="ZE.bz"
2221
-
2222
- [zibber-v*]
2223
- Parent=Search Engines
2224
- Browser="Zibb"
2225
-
2226
- [ZipppBot/*]
2227
- Parent=Search Engines
2228
- Browser="ZipppBot"
2229
-
2230
- [ATA-Translation-Service]
2231
- Parent=Translators
2232
- Browser="ATA-Translation-Service"
2233
-
2234
- [GJK_Browser_Check]
2235
- Parent=Version Checkers
2236
- Browser="GJK_Browser_Check"
2237
-
2238
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hatena
2239
-
2240
- [Hatena]
2241
- Parent=DefaultProperties
2242
- Browser="Hatena"
2243
- isBanned=true
2244
- Crawler=true
2245
-
2246
- [Feed::Find/*]
2247
- Parent=Hatena
2248
- Browser="Feed Find"
2249
- isSyndicationReader=true
2250
-
2251
- [Hatena Antenna/*]
2252
- Parent=Hatena
2253
- Browser="Hatena Antenna"
2254
-
2255
- [Hatena Bookmark/*]
2256
- Parent=Hatena
2257
- Browser="Hatena Bookmark"
2258
-
2259
- [Hatena RSS/*]
2260
- Parent=Hatena
2261
- Browser="Hatena RSS"
2262
- isSyndicationReader=true
2263
-
2264
- [Hatena::Crawler/*]
2265
- Parent=Hatena
2266
- Browser="Hatena Crawler"
2267
-
2268
- [HatenaScreenshot*]
2269
- Parent=Hatena
2270
- Browser="HatenaScreenshot"
2271
-
2272
- [URI::Fetch/*]
2273
- Parent=Hatena
2274
- Browser="URI::Fetch"
2275
-
2276
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Internet Archive
2277
-
2278
- [Internet Archive]
2279
- Parent=DefaultProperties
2280
- Browser="Internet Archive"
2281
- Frames=true
2282
- IFrames=true
2283
- Tables=true
2284
- isBanned=true
2285
- Crawler=true
2286
-
2287
- [*heritrix*]
2288
- Parent=Internet Archive
2289
- Browser="Heritrix"
2290
- isBanned=true
2291
-
2292
- [ia_archiver*]
2293
- Parent=Internet Archive
2294
- Browser="Internet Archive"
2295
-
2296
- [InternetArchive/*]
2297
- Parent=Internet Archive
2298
- Browser="InternetArchive"
2299
-
2300
- [Mozilla/5.0 (compatible; archive.org_bot/1.*)]
2301
- Parent=Internet Archive
2302
-
2303
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch
2304
-
2305
- [Nutch]
2306
- Parent=DefaultProperties
2307
- Browser="Nutch"
2308
- isBanned=true
2309
- Crawler=true
2310
-
2311
- [*Nutch*]
2312
- Parent=Nutch
2313
- isBanned=true
2314
-
2315
- [CazoodleBot/*]
2316
- Parent=Nutch
2317
- Browser="CazoodleBot"
2318
-
2319
- [LOOQ/0.1*]
2320
- Parent=Nutch
2321
- Browser="LOOQ"
2322
-
2323
- [Nutch/0.? (OpenX Spider)]
2324
- Parent=Nutch
2325
-
2326
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Webaroo
2327
-
2328
- [Webaroo]
2329
- Parent=DefaultProperties
2330
- Browser="Webaroo"
2331
-
2332
- [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Webaroo/*)]
2333
- Parent=Webaroo
2334
- Browser="Webaroo"
2335
-
2336
- [Mozilla/5.0 (Windows; U; Windows *; *; rv:*) Gecko/* Firefox/* webaroo/*]
2337
- Parent=Webaroo
2338
- Browser="Webaroo"
2339
-
2340
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Word Press
2341
-
2342
- [Word Press]
2343
- Parent=DefaultProperties
2344
- Browser="Word Press"
2345
- Alpha=true
2346
- Beta=true
2347
- Win16=true
2348
- Win32=true
2349
- Win64=true
2350
- Frames=true
2351
- IFrames=true
2352
- Tables=true
2353
- Cookies=true
2354
- BackgroundSounds=true
2355
- CDF=true
2356
- VBScript=true
2357
- JavaApplets=true
2358
- JavaScript=true
2359
- ActiveXControls=true
2360
- isBanned=true
2361
- isMobileDevice=true
2362
- isSyndicationReader=true
2363
- Crawler=true
2364
-
2365
- [WordPress-B-/2.*]
2366
- Parent=Word Press
2367
- Browser="WordPress-B"
2368
-
2369
- [WordPress-Do-P-/2.*]
2370
- Parent=Word Press
2371
- Browser="WordPress-Do-P"
2372
-
2373
- [BlueCoat ProxySG]
2374
- Parent=Blue Coat Systems
2375
- Browser="BlueCoat ProxySG"
2376
-
2377
- [CerberianDrtrs/*]
2378
- Parent=Blue Coat Systems
2379
- Browser="Cerberian"
2380
-
2381
- [Inne: Mozilla/4.0 (compatible; Cerberian Drtrs*)]
2382
- Parent=Blue Coat Systems
2383
- Browser="Cerberian"
2384
-
2385
- [Mozilla/4.0 (compatible; Cerberian Drtrs*)]
2386
- Parent=Blue Coat Systems
2387
- Browser="Cerberian"
2388
-
2389
- [Mozilla/4.0 (compatible; MSIE 6.0; Bluecoat DRTR)]
2390
- Parent=Blue Coat Systems
2391
- Browser="Bluecoat"
2392
-
2393
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Copyright/Plagiarism
2394
-
2395
- [Copyright/Plagiarism]
2396
- Parent=DefaultProperties
2397
- Browser="Copyright/Plagiarism"
2398
- isBanned=true
2399
- Crawler=true
2400
-
2401
- [BDFetch]
2402
- Parent=Copyright/Plagiarism
2403
- Browser="BDFetch"
2404
-
2405
- [copyright sheriff (*)]
2406
- Parent=Copyright/Plagiarism
2407
- Browser="copyright sheriff"
2408
-
2409
- [CopyRightCheck*]
2410
- Parent=Copyright/Plagiarism
2411
- Browser="CopyRightCheck"
2412
-
2413
- [FairAd Client*]
2414
- Parent=Copyright/Plagiarism
2415
- Browser="FairAd Client"
2416
-
2417
- [iCopyright Conductor*]
2418
- Parent=Copyright/Plagiarism
2419
- Browser="iCopyright Conductor"
2420
-
2421
- [IPiumBot laurion(dot)com]
2422
- Parent=Copyright/Plagiarism
2423
- Browser="IPiumBot"
2424
-
2425
- [IWAgent/*]
2426
- Parent=Copyright/Plagiarism
2427
- Browser="Brand Protect"
2428
-
2429
- [Mozilla/5.0 (compatible; DKIMRepBot/*)]
2430
- Parent=Copyright/Plagiarism
2431
- Browser="DKIMRepBot"
2432
-
2433
- [oBot]
2434
- Parent=Copyright/Plagiarism
2435
- Browser="oBot"
2436
-
2437
- [SlySearch/*]
2438
- Parent=Copyright/Plagiarism
2439
- Browser="SlySearch"
2440
-
2441
- [TurnitinBot/*]
2442
- Parent=Copyright/Plagiarism
2443
- Browser="TurnitinBot"
2444
-
2445
- [TutorGigBot/*]
2446
- Parent=Copyright/Plagiarism
2447
- Browser="TutorGig"
2448
-
2449
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DNS Tools
2450
-
2451
- [DNS Tools]
2452
- Parent=DefaultProperties
2453
- Browser="DNS Tools"
2454
- Crawler=true
2455
-
2456
- [Domain Dossier utility*]
2457
- Parent=DNS Tools
2458
- Browser="Domain Dossier"
2459
-
2460
- [Mozilla/5.0 (compatible; DNS-Digger/*)]
2461
- Parent=DNS Tools
2462
- Browser="DNS-Digger"
2463
-
2464
- [OpenDNS Domain Crawler noc@opendns.com]
2465
- Parent=DNS Tools
2466
- Browser="OpenDNS Domain Crawler"
2467
-
2468
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Download Managers
2469
-
2470
- [Download Managers]
2471
- Parent=DefaultProperties
2472
- Browser="Download Managers"
2473
- Frames=true
2474
- IFrames=true
2475
- Tables=true
2476
- isBanned=true
2477
- Crawler=true
2478
-
2479
- [AndroidDownloadManager]
2480
- Parent=Download Managers
2481
- Browser="Android Download Manager"
2482
-
2483
- [AutoMate5]
2484
- Parent=Download Managers
2485
- Browser="AutoMate5"
2486
-
2487
- [Beamer*]
2488
- Parent=Download Managers
2489
- Browser="Beamer"
2490
-
2491
- [BitBeamer/*]
2492
- Parent=Download Managers
2493
- Browser="BitBeamer"
2494
-
2495
- [BitTorrent/*]
2496
- Parent=Download Managers
2497
- Browser="BitTorrent"
2498
-
2499
- [DA *]
2500
- Parent=Download Managers
2501
- Browser="Download Accelerator"
2502
-
2503
- [Download Demon*]
2504
- Parent=Download Managers
2505
- Browser="Download Demon"
2506
-
2507
- [Download Express*]
2508
- Parent=Download Managers
2509
- Browser="Download Express"
2510
-
2511
- [Download Master*]
2512
- Parent=Download Managers
2513
- Browser="Download Master"
2514
-
2515
- [Download Ninja*]
2516
- Parent=Download Managers
2517
- Browser="Download Ninja"
2518
-
2519
- [Download Wonder*]
2520
- Parent=Download Managers
2521
- Browser="Download Wonder"
2522
-
2523
- [DownloadSession*]
2524
- Parent=Download Managers
2525
- Browser="DownloadSession"
2526
-
2527
- [EasyDL/*]
2528
- Parent=Download Managers
2529
- Browser="EasyDL"
2530
-
2531
- [FDM 1.x]
2532
- Parent=Download Managers
2533
- Browser="Free Download Manager"
2534
-
2535
- [FlashGet]
2536
- Parent=Download Managers
2537
- Browser="FlashGet"
2538
-
2539
- [FreshDownload/*]
2540
- Parent=Download Managers
2541
- Browser="FreshDownload"
2542
-
2543
- [GetRight/*]
2544
- Parent=Download Managers
2545
- Browser="GetRight"
2546
-
2547
- [GetRightPro/*]
2548
- Parent=Download Managers
2549
- Browser="GetRightPro"
2550
-
2551
- [GetSmart/*]
2552
- Parent=Download Managers
2553
- Browser="GetSmart"
2554
-
2555
- [Go!Zilla*]
2556
- Parent=Download Managers
2557
- Browser="GoZilla"
2558
-
2559
- [Gozilla/*]
2560
- Parent=Download Managers
2561
- Browser="Gozilla"
2562
-
2563
- [Internet Ninja*]
2564
- Parent=Download Managers
2565
- Browser="Internet Ninja"
2566
-
2567
- [Kontiki Client*]
2568
- Parent=Download Managers
2569
- Browser="Kontiki Client"
2570
-
2571
- [lftp/3.2.1]
2572
- Parent=Download Managers
2573
- Browser="lftp"
2574
-
2575
- [LightningDownload/*]
2576
- Parent=Download Managers
2577
- Browser="LightningDownload"
2578
-
2579
- [LMQueueBot/*]
2580
- Parent=Download Managers
2581
- Browser="LMQueueBot"
2582
-
2583
- [MetaProducts Download Express/*]
2584
- Parent=Download Managers
2585
- Browser="Download Express"
2586
-
2587
- [Mozilla/4.0 (compatible; Getleft*)]
2588
- Parent=Download Managers
2589
- Browser="Getleft"
2590
-
2591
- [Myzilla]
2592
- Parent=Download Managers
2593
- Browser="Myzilla"
2594
-
2595
- [Net Vampire/*]
2596
- Parent=Download Managers
2597
- Browser="Net Vampire"
2598
-
2599
- [Net_Vampire*]
2600
- Parent=Download Managers
2601
- Browser="Net_Vampire"
2602
-
2603
- [NetAnts*]
2604
- Parent=Download Managers
2605
- Browser="NetAnts"
2606
-
2607
- [NetPumper*]
2608
- Parent=Download Managers
2609
- Browser="NetPumper"
2610
-
2611
- [NetSucker*]
2612
- Parent=Download Managers
2613
- Browser="NetSucker"
2614
-
2615
- [NetZip Downloader*]
2616
- Parent=Download Managers
2617
- Browser="NetZip Downloader"
2618
-
2619
- [NexTools WebAgent*]
2620
- Parent=Download Managers
2621
- Browser="NexTools WebAgent"
2622
-
2623
- [Offline Downloader*]
2624
- Parent=Download Managers
2625
- Browser="Offline Downloader"
2626
-
2627
- [P3P Client]
2628
- Parent=Download Managers
2629
- Browser="P3P Client"
2630
-
2631
- [PageDown*]
2632
- Parent=Download Managers
2633
- Browser="PageDown"
2634
-
2635
- [PicaLoader*]
2636
- Parent=Download Managers
2637
- Browser="PicaLoader"
2638
-
2639
- [Prozilla*]
2640
- Parent=Download Managers
2641
- Browser="Prozilla"
2642
-
2643
- [RealDownload/*]
2644
- Parent=Download Managers
2645
- Browser="RealDownload"
2646
-
2647
- [sEasyDL/*]
2648
- Parent=Download Managers
2649
- Browser="EasyDL"
2650
-
2651
- [shareaza*]
2652
- Parent=Download Managers
2653
- Browser="shareaza"
2654
-
2655
- [SmartDownload/*]
2656
- Parent=Download Managers
2657
- Browser="SmartDownload"
2658
-
2659
- [SpeedDownload/*]
2660
- Parent=Download Managers
2661
- Browser="Speed Download"
2662
-
2663
- [Star*Downloader/*]
2664
- Parent=Download Managers
2665
- Browser="StarDownloader"
2666
-
2667
- [STEROID Download]
2668
- Parent=Download Managers
2669
- Browser="STEROID Download"
2670
-
2671
- [SuperBot/*]
2672
- Parent=Download Managers
2673
- Browser="SuperBot"
2674
-
2675
- [Vegas95/*]
2676
- Parent=Download Managers
2677
- Browser="Vegas95"
2678
-
2679
- [WebZIP*]
2680
- Parent=Download Managers
2681
- Browser="WebZIP"
2682
-
2683
- [Wget*]
2684
- Parent=Download Managers
2685
- Browser="Wget"
2686
-
2687
- [WinTools]
2688
- Parent=Download Managers
2689
- Browser="WinTools"
2690
-
2691
- [Xaldon WebSpider*]
2692
- Parent=Download Managers
2693
- Browser="Xaldon WebSpider"
2694
-
2695
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; E-Mail Harvesters
2696
-
2697
- [E-Mail Harvesters]
2698
- Parent=DefaultProperties
2699
- Browser="E-Mail Harvesters"
2700
- Frames=true
2701
- IFrames=true
2702
- Tables=true
2703
- isBanned=true
2704
- Crawler=true
2705
-
2706
- [*E-Mail Address Extractor*]
2707
- Parent=E-Mail Harvesters
2708
- Browser="E-Mail Address Extractor"
2709
-
2710
- [*Larbin*]
2711
- Parent=E-Mail Harvesters
2712
- Browser="Larbin"
2713
-
2714
- [*www4mail/*]
2715
- Parent=E-Mail Harvesters
2716
- Browser="www4mail"
2717
-
2718
- [8484 Boston Project*]
2719
- Parent=E-Mail Harvesters
2720
- Browser="8484 Boston Project"
2721
-
2722
- [CherryPicker*/*]
2723
- Parent=E-Mail Harvesters
2724
- Browser="CherryPickerElite"
2725
-
2726
- [Chilkat/*]
2727
- Parent=E-Mail Harvesters
2728
- Browser="Chilkat"
2729
-
2730
- [ContactBot/*]
2731
- Parent=E-Mail Harvesters
2732
- Browser="ContactBot"
2733
-
2734
- [eCatch*]
2735
- Parent=E-Mail Harvesters
2736
- Browser="eCatch"
2737
-
2738
- [EmailCollector*]
2739
- Parent=E-Mail Harvesters
2740
- Browser="E-Mail Collector"
2741
-
2742
- [EMAILsearcher]
2743
- Parent=E-Mail Harvesters
2744
- Browser="EMAILsearcher"
2745
-
2746
- [EmailSiphon*]
2747
- Parent=E-Mail Harvesters
2748
- Browser="E-Mail Siphon"
2749
-
2750
- [EmailWolf*]
2751
- Parent=E-Mail Harvesters
2752
- Browser="EMailWolf"
2753
-
2754
- [Epsilon SoftWorks' MailMunky]
2755
- Parent=E-Mail Harvesters
2756
- Browser="MailMunky"
2757
-
2758
- [ExtractorPro*]
2759
- Parent=E-Mail Harvesters
2760
- Browser="ExtractorPro"
2761
-
2762
- [Franklin Locator*]
2763
- Parent=E-Mail Harvesters
2764
- Browser="Franklin Locator"
2765
-
2766
- [Missigua Locator*]
2767
- Parent=E-Mail Harvesters
2768
- Browser="Missigua Locator"
2769
-
2770
- [Mozilla/4.0 (compatible; Advanced Email Extractor*)]
2771
- Parent=E-Mail Harvesters
2772
- Browser="Advanced Email Extractor"
2773
-
2774
- [Netprospector*]
2775
- Parent=E-Mail Harvesters
2776
- Browser="Netprospector"
2777
-
2778
- [ProWebWalker*]
2779
- Parent=E-Mail Harvesters
2780
- Browser="ProWebWalker"
2781
-
2782
- [sna-0.0.*]
2783
- Parent=E-Mail Harvesters
2784
- Browser="Mike Elliott's E-Mail Harvester"
2785
-
2786
- [WebEnhancer*]
2787
- Parent=E-Mail Harvesters
2788
- Browser="WebEnhancer"
2789
-
2790
- [WebMiner*]
2791
- Parent=E-Mail Harvesters
2792
- Browser="WebMiner"
2793
-
2794
- [ZIBB Crawler (email address / WWW address)]
2795
- Parent=E-Mail Harvesters
2796
- Browser="ZIBB Crawler"
2797
-
2798
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Blogs
2799
-
2800
- [Feeds Blogs]
2801
- Parent=DefaultProperties
2802
- Browser="Feeds Blogs"
2803
- isSyndicationReader=true
2804
- Crawler=true
2805
-
2806
- [Bloglines Title Fetch/*]
2807
- Parent=Feeds Blogs
2808
- Browser="Bloglines Title Fetch"
2809
-
2810
- [Bloglines/* (http://www.bloglines.com*)]
2811
- Parent=Feeds Blogs
2812
- Browser="BlogLines Web"
2813
-
2814
- [BlogPulseLive (support@blogpulse.com)]
2815
- Parent=Feeds Blogs
2816
- Browser="BlogPulseLive"
2817
-
2818
- [blogsearchbot-pumpkin-2]
2819
- Parent=Feeds Blogs
2820
- Browser="blogsearchbot-pumpkin"
2821
- isSyndicationReader=false
2822
-
2823
- [Irish Blogs Aggregator/*1.0*]
2824
- Parent=Feeds Blogs
2825
- Browser="Irish Blogs Aggregator"
2826
- Version=1.0
2827
- MajorVer=1
2828
- MinorVer=0
2829
-
2830
- [kinjabot (http://www.kinja.com; *)]
2831
- Parent=Feeds Blogs
2832
- Browser="kinjabot"
2833
-
2834
- [Net::Trackback/*]
2835
- Parent=Feeds Blogs
2836
- Browser="Net::Trackback"
2837
-
2838
- [Reblog*]
2839
- Parent=Feeds Blogs
2840
- Browser="Reblog"
2841
-
2842
- [WordPress/*]
2843
- Parent=Feeds Blogs
2844
- Browser="WordPress"
2845
-
2846
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Syndicators
2847
-
2848
- [Feeds Syndicators]
2849
- Parent=DefaultProperties
2850
- Browser="Feeds Syndicators"
2851
- isSyndicationReader=true
2852
-
2853
- [*LinkLint*]
2854
- Parent=Feeds Syndicators
2855
- Browser="LinkLint"
2856
-
2857
- [*NetNewsWire/*]
2858
- Parent=Feeds Syndicators
2859
-
2860
- [*NetVisualize*]
2861
- Parent=Feeds Syndicators
2862
- Browser="NetVisualize"
2863
-
2864
- [Akregator/*]
2865
- Parent=Feeds Syndicators
2866
- Browser="Akregator"
2867
-
2868
- [AppleSyndication/*]
2869
- Parent=Feeds Syndicators
2870
- Browser="Safari RSS"
2871
- Platform=MacOSX
2872
-
2873
- [Cocoal.icio.us/* (*)*]
2874
- Parent=Feeds Syndicators
2875
- Browser="Cocoal.icio.us"
2876
- isBanned=true
2877
-
2878
- [Feed43 Proxy/* (*)]
2879
- Parent=Feeds Syndicators
2880
- Browser="Feed For Free"
2881
-
2882
- [FeedBurner/*]
2883
- Parent=Feeds Syndicators
2884
- Browser="FeedBurner"
2885
-
2886
- [FeedDemon/* (*)]
2887
- Parent=Feeds Syndicators
2888
- Browser="FeedDemon"
2889
- Platform=Win32
2890
-
2891
- [FeedDigest/* (*)]
2892
- Parent=Feeds Syndicators
2893
- Browser="FeedDigest"
2894
-
2895
- [FeedGhost/1.*]
2896
- Parent=Feeds Syndicators
2897
- Browser="FeedGhost"
2898
- Version=1.0
2899
- MajorVer=1
2900
- MinorVer=0
2901
-
2902
- [FeedOnFeeds/0.1.* ( http://minutillo.com/steve/feedonfeeds/)]
2903
- Parent=Feeds Syndicators
2904
- Browser="FeedOnFeeds"
2905
- Version=0.1
2906
- MajorVer=0
2907
- MinorVer=1
2908
-
2909
- [Feedreader * (Powered by Newsbrain)]
2910
- Parent=Feeds Syndicators
2911
- Browser="Newsbrain"
2912
-
2913
- [Feedshow/* (*)]
2914
- Parent=Feeds Syndicators
2915
- Browser="Feedshow"
2916
-
2917
- [Feedster Crawler/?.0; Feedster, Inc.]
2918
- Parent=Feeds Syndicators
2919
- Browser="Feedster"
2920
-
2921
- [GreatNews/1.0]
2922
- Parent=Feeds Syndicators
2923
- Browser="GreatNews"
2924
- Version=1.0
2925
- MajorVer=1
2926
- MinorVer=0
2927
-
2928
- [Gregarius/*]
2929
- Parent=Feeds Syndicators
2930
- Browser="Gregarius"
2931
-
2932
- [intraVnews/*]
2933
- Parent=Feeds Syndicators
2934
- Browser="intraVnews"
2935
-
2936
- [JetBrains Omea Reader*]
2937
- Parent=Feeds Syndicators
2938
- Browser="Omea Reader"
2939
- isBanned=true
2940
-
2941
- [Liferea/1.5* (Linux; *; http://liferea.sf.net/)]
2942
- Parent=Feeds Syndicators
2943
- Browser="Liferea"
2944
- isBanned=true
2945
-
2946
- [livedoor FeedFetcher/0.0* (http://reader.livedoor.com/;*)]
2947
- Parent=Feeds Syndicators
2948
- Browser="FeedFetcher"
2949
- Version=0.0
2950
- MajorVer=0
2951
- MinorVer=0
2952
-
2953
- [MagpieRSS/* (*)]
2954
- Parent=Feeds Syndicators
2955
- Browser="MagpieRSS"
2956
-
2957
- [Mobitype * (compatible; Mozilla/*; MSIE *.*; Windows *)]
2958
- Parent=Feeds Syndicators
2959
- Browser="Mobitype"
2960
- Platform=Win32
2961
-
2962
- [Mozilla/5.0 (*; Rojo *; http://www.rojo.com/corporate/help/agg; *)*]
2963
- Parent=Feeds Syndicators
2964
- Browser="Rojo"
2965
-
2966
- [Mozilla/5.0 (*aggregator:TailRank; http://tailrank.com/robot)*]
2967
- Parent=Feeds Syndicators
2968
- Browser="TailRank"
2969
-
2970
- [Mozilla/5.0 (compatible; MSIE 6.0; Podtech Network; crawler_admin@podtech.net)]
2971
- Parent=Feeds Syndicators
2972
- Browser="Podtech Network"
2973
-
2974
- [Mozilla/5.0 (compatible; Newz Crawler *; http://www.newzcrawler.com/?)]
2975
- Parent=Feeds Syndicators
2976
- Browser="Newz Crawler"
2977
-
2978
- [Mozilla/5.0 (compatible; RSSMicro.com RSS/Atom Feed Robot)]
2979
- Parent=Feeds Syndicators
2980
- Browser="RSSMicro"
2981
-
2982
- [Mozilla/5.0 (compatible;*newstin.com;*)]
2983
- Parent=Feeds Syndicators
2984
- Browser="NewsTin"
2985
-
2986
- [Mozilla/5.0 (RSS Reader Panel)]
2987
- Parent=Feeds Syndicators
2988
- Browser="RSS Reader Panel"
2989
-
2990
- [Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:FeedParser; *) Gecko/*]
2991
- Parent=Feeds Syndicators
2992
- Browser="FeedParser"
2993
-
2994
- [Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:NewsMonster; *) Gecko/*]
2995
- Parent=Feeds Syndicators
2996
- Browser="NewsMonster"
2997
-
2998
- [Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:Rojo; *) Gecko/*]
2999
- Parent=Feeds Syndicators
3000
- Browser="Rojo"
3001
-
3002
- [Netvibes (*)]
3003
- Parent=Feeds Syndicators
3004
- Browser="Netvibes"
3005
-
3006
- [NewsAlloy/* (*)]
3007
- Parent=Feeds Syndicators
3008
- Browser="NewsAlloy"
3009
-
3010
- [Omnipelagos*]
3011
- Parent=Feeds Syndicators
3012
- Browser="Omnipelagos"
3013
-
3014
- [Particls]
3015
- Parent=Feeds Syndicators
3016
- Browser="Particls"
3017
-
3018
- [Protopage/* (*)]
3019
- Parent=Feeds Syndicators
3020
- Browser="Protopage"
3021
-
3022
- [PubSub-RSS-Reader/* (*)]
3023
- Parent=Feeds Syndicators
3024
- Browser="PubSub-RSS-Reader"
3025
-
3026
- [RSS Menu/*]
3027
- Parent=Feeds Syndicators
3028
- Browser="RSS Menu"
3029
-
3030
- [RssBandit/*]
3031
- Parent=Feeds Syndicators
3032
- Browser="RssBandit"
3033
-
3034
- [RssBar/1.2*]
3035
- Parent=Feeds Syndicators
3036
- Browser="RssBar"
3037
- Version=1.2
3038
- MajorVer=1
3039
- MinorVer=2
3040
-
3041
- [SharpReader/*]
3042
- Parent=Feeds Syndicators
3043
- Browser="SharpReader"
3044
-
3045
- [SimplePie/*]
3046
- Parent=Feeds Syndicators
3047
- Browser="SimplePie"
3048
-
3049
- [Strategic Board Bot (?http://www.strategicboard.com)]
3050
- Parent=Feeds Syndicators
3051
- Browser="Strategic Board Bot"
3052
- isBanned=true
3053
-
3054
- [TargetYourNews.com bot]
3055
- Parent=Feeds Syndicators
3056
- Browser="TargetYourNews"
3057
-
3058
- [Technoratibot/*]
3059
- Parent=Feeds Syndicators
3060
- Browser="Technoratibot"
3061
-
3062
- [Windows-RSS-Platform/1.0*]
3063
- Parent=Feeds Syndicators
3064
- Browser="Windows-RSS-Platform"
3065
- Version=1.0
3066
- MajorVer=1
3067
- MinorVer=0
3068
- Win32=true
3069
-
3070
- [Wizz RSS News Reader]
3071
- Parent=Feeds Syndicators
3072
- Browser="Wizz"
3073
-
3074
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General RSS
3075
-
3076
- [General RSS]
3077
- Parent=DefaultProperties
3078
- Browser="General RSS"
3079
- isSyndicationReader=true
3080
-
3081
- [AideRSS/1.0 (aiderss.com); * subscribers]
3082
- Parent=General RSS
3083
- Browser="AideRSS"
3084
- Version=1.0
3085
- MajorVer=1
3086
- MinorVer=0
3087
-
3088
- [CC Metadata Scaper http://wiki.creativecommons.org/Metadata_Scraper]
3089
- Parent=General RSS
3090
- Browser="CC Metadata Scaper"
3091
-
3092
- [Mozilla/5.0 (compatible) GM RSS Panel]
3093
- Parent=General RSS
3094
- Browser="RSS Panel"
3095
-
3096
- [Mozilla/5.0 http://www.inclue.com; graeme@inclue.com]
3097
- Parent=General RSS
3098
- Browser="Inclue"
3099
-
3100
- [Runnk online rss reader : http://www.runnk.com/ : RSS favorites : RSS ranking : RSS aggregator*]
3101
- Parent=General RSS
3102
- Browser="Ruunk"
3103
-
3104
- [Windows-RSS-Platform/2.0 (MSIE 8.0; Windows NT 6.0)]
3105
- Parent=General RSS
3106
- Browser="Windows-RSS-Platform"
3107
- Platform=WinVista
3108
-
3109
- [Mozilla/5.0 (X11; ?; Linux; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.4]
3110
- Parent=Google Code
3111
- Browser="Arora"
3112
- Version=0.4
3113
- MajorVer=0
3114
- MinorVer=4
3115
- Platform=Linux
3116
- CssVersion=2
3117
- supportsCSS=true
3118
-
3119
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Validation Checkers
3120
-
3121
- [HTML Validators]
3122
- Parent=DefaultProperties
3123
- Browser="HTML Validators"
3124
- Frames=true
3125
- IFrames=true
3126
- Tables=true
3127
- Crawler=true
3128
-
3129
- [(HTML Validator http://www.searchengineworld.com/validator/)]
3130
- Parent=HTML Validators
3131
- Browser="Search Engine World HTML Validator"
3132
-
3133
- [FeedValidator/1.3]
3134
- Parent=HTML Validators
3135
- Browser="FeedValidator"
3136
- Version=1.3
3137
- MajorVer=1
3138
- MinorVer=3
3139
-
3140
- [Jigsaw/* W3C_CSS_Validator_JFouffa/*]
3141
- Parent=HTML Validators
3142
- Browser="Jigsaw CSS Validator"
3143
-
3144
- [Search Engine World Robots.txt Validator*]
3145
- Parent=HTML Validators
3146
- Browser="Search Engine World Robots.txt Validator"
3147
-
3148
- [W3C_Validator/*]
3149
- Parent=HTML Validators
3150
- Browser="W3C Validator"
3151
-
3152
- [W3CLineMode/*]
3153
- Parent=HTML Validators
3154
- Browser="W3C Line Mode"
3155
-
3156
- [Weblide/2.? beta*]
3157
- Parent=HTML Validators
3158
- Browser="Weblide"
3159
- Version=2.0
3160
- MajorVer=2
3161
- MinorVer=0
3162
- Beta=true
3163
-
3164
- [WebmasterWorld StickyMail Server Header Checker*]
3165
- Parent=HTML Validators
3166
- Browser="WebmasterWorld Server Header Checker"
3167
-
3168
- [WWWC/*]
3169
- Parent=HTML Validators
3170
-
3171
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Image Crawlers
3172
-
3173
- [Image Crawlers]
3174
- Parent=DefaultProperties
3175
- Browser="Image Crawlers"
3176
- Frames=true
3177
- IFrames=true
3178
- Tables=true
3179
- isBanned=true
3180
- Crawler=true
3181
-
3182
- [*CFNetwork*]
3183
- Parent=Image Crawlers
3184
- Browser="CFNetwork"
3185
-
3186
- [*PhotoStickies/*]
3187
- Parent=Image Crawlers
3188
- Browser="PhotoStickies"
3189
-
3190
- [Camcrawler*]
3191
- Parent=Image Crawlers
3192
- Browser="Camcrawler"
3193
-
3194
- [CydralSpider/*]
3195
- Parent=Image Crawlers
3196
- Browser="Cydral Web Image Search"
3197
- isBanned=true
3198
-
3199
- [Der gro\xdfe BilderSauger*]
3200
- Parent=Image Crawlers
3201
- Browser="Gallery Grabber"
3202
-
3203
- [Extreme Picture Finder]
3204
- Parent=Image Crawlers
3205
- Browser="Extreme Picture Finder"
3206
-
3207
- [FLATARTS_FAVICO]
3208
- Parent=Image Crawlers
3209
- Browser="FlatArts Favorites Icon Tool"
3210
-
3211
- [HTML2JPG Blackbox, http://www.html2jpg.com]
3212
- Parent=Image Crawlers
3213
- Browser="HTML2JPG"
3214
-
3215
- [IconSurf/2.*]
3216
- Parent=Image Crawlers
3217
- Browser="IconSurf"
3218
-
3219
- [kalooga/KaloogaBot*]
3220
- Parent=Image Crawlers
3221
- Browser="KaloogaBot"
3222
-
3223
- [Mister PIX*]
3224
- Parent=Image Crawlers
3225
- Browser="Mister PIX"
3226
-
3227
- [Mozilla/5.0 (Macintosh; U; *Mac OS X; *) AppleWebKit/* (*) Pandora/2.*]
3228
- Parent=Image Crawlers
3229
- Browser="Pandora"
3230
-
3231
- [naoFavicon4IE*]
3232
- Parent=Image Crawlers
3233
- Browser="naoFavicon4IE"
3234
-
3235
- [pixfinder/*]
3236
- Parent=Image Crawlers
3237
- Browser="pixfinder"
3238
-
3239
- [rssImagesBot/0.1 (*http://herbert.groot.jebbink.nl/?app=rssImages)]
3240
- Parent=Image Crawlers
3241
- Browser="rssImagesBot"
3242
-
3243
- [Web Image Collector*]
3244
- Parent=Image Crawlers
3245
- Browser="Web Image Collector"
3246
-
3247
- [WebImages * (?http://herbert.groot.jebbink.nl/?app=WebImages?)]
3248
- Parent=Image Crawlers
3249
- Browser="WebImages"
3250
-
3251
- [WebPix*]
3252
- Parent=Image Crawlers
3253
- Browser="Custo"
3254
-
3255
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Link Checkers
3256
-
3257
- [Link Checkers]
3258
- Parent=DefaultProperties
3259
- Browser="Link Checkers"
3260
- Frames=true
3261
- IFrames=true
3262
- Tables=true
3263
- Crawler=true
3264
-
3265
- [!Susie (http://www.sync2it.com/susie)]
3266
- Parent=Link Checkers
3267
- Browser="!Susie"
3268
-
3269
- [*AgentName/*]
3270
- Parent=Link Checkers
3271
- Browser="AgentName"
3272
-
3273
- [*Linkman*]
3274
- Parent=Link Checkers
3275
- Browser="Linkman"
3276
-
3277
- [*LinksManager.com*]
3278
- Parent=Link Checkers
3279
- Browser="LinksManager"
3280
-
3281
- [*Powermarks/*]
3282
- Parent=Link Checkers
3283
- Browser="Powermarks"
3284
-
3285
- [*W3C-checklink/*]
3286
- Parent=Link Checkers
3287
- Browser="W3C Link Checker"
3288
-
3289
- [*Web Link Validator*]
3290
- Parent=Link Checkers
3291
- Browser="Web Link Validator"
3292
-
3293
- [*Zeus*]
3294
- Parent=Link Checkers
3295
- Browser="Zeus"
3296
- isBanned=true
3297
-
3298
- [ActiveBookmark *]
3299
- Parent=Link Checkers
3300
- Browser="ActiveBookmark"
3301
-
3302
- [Bookdog/*]
3303
- Parent=Link Checkers
3304
- Browser="Bookdog"
3305
-
3306
- [Bookmark Buddy*]
3307
- Parent=Link Checkers
3308
- Browser="Bookmark Buddy"
3309
-
3310
- [Bookmark Renewal Check Agent*]
3311
- Parent=Link Checkers
3312
- Browser="Bookmark Renewal Check Agent"
3313
-
3314
- [Bookmark search tool*]
3315
- Parent=Link Checkers
3316
- Browser="Bookmark search tool"
3317
-
3318
- [Bookmark-Manager]
3319
- Parent=Link Checkers
3320
- Browser="Bookmark-Manager"
3321
-
3322
- [Checkbot*]
3323
- Parent=Link Checkers
3324
- Browser="Checkbot"
3325
-
3326
- [CheckLinks/*]
3327
- Parent=Link Checkers
3328
- Browser="CheckLinks"
3329
-
3330
- [CyberSpyder Link Test/*]
3331
- Parent=Link Checkers
3332
- Browser="CyberSpyder Link Test"
3333
-
3334
- [DLC/*]
3335
- Parent=Link Checkers
3336
- Browser="DLC"
3337
-
3338
- [DocWeb Link Crawler (http://doc.php.net)]
3339
- Parent=Link Checkers
3340
- Browser="DocWeb Link Crawler"
3341
-
3342
- [FavOrg]
3343
- Parent=Link Checkers
3344
- Browser="FavOrg"
3345
-
3346
- [Favorites Sweeper v.3.*]
3347
- Parent=Link Checkers
3348
- Browser="Favorites Sweeper"
3349
-
3350
- [FindLinks/*]
3351
- Parent=Link Checkers
3352
- Browser="FindLinks"
3353
-
3354
- [Funnel Web Profiler*]
3355
- Parent=Link Checkers
3356
- Browser="Funnel Web Profiler"
3357
-
3358
- [Html Link Validator (www.lithopssoft.com)]
3359
- Parent=Link Checkers
3360
- Browser="HTML Link Validator"
3361
-
3362
- [IECheck]
3363
- Parent=Link Checkers
3364
- Browser="IECheck"
3365
-
3366
- [JCheckLinks/*]
3367
- Parent=Link Checkers
3368
- Browser="JCheckLinks"
3369
-
3370
- [JRTwine Software Check Favorites Utility]
3371
- Parent=Link Checkers
3372
- Browser="JRTwine"
3373
-
3374
- [Link Valet Online*]
3375
- Parent=Link Checkers
3376
- Browser="Link Valet"
3377
- isBanned=true
3378
-
3379
- [LinkAlarm/*]
3380
- Parent=Link Checkers
3381
- Browser="LinkAlarm"
3382
-
3383
- [Linkbot*]
3384
- Parent=Link Checkers
3385
- Browser="Linkbot"
3386
-
3387
- [LinkChecker/*]
3388
- Parent=Link Checkers
3389
- Browser="LinkChecker"
3390
-
3391
- [LinkextractorPro*]
3392
- Parent=Link Checkers
3393
- Browser="LinkextractorPro"
3394
- isBanned=true
3395
-
3396
- [LinkLint-checkonly/*]
3397
- Parent=Link Checkers
3398
- Browser="LinkLint"
3399
-
3400
- [LinkScan/*]
3401
- Parent=Link Checkers
3402
- Browser="LinkScan"
3403
-
3404
- [LinkSweeper/*]
3405
- Parent=Link Checkers
3406
- Browser="LinkSweeper"
3407
-
3408
- [LinkWalker*]
3409
- Parent=Link Checkers
3410
- Browser="LinkWalker"
3411
-
3412
- [MetaGer-LinkChecker]
3413
- Parent=Link Checkers
3414
- Browser="MetaGer-LinkChecker"
3415
-
3416
- [Mozilla/* (compatible; linktiger/*; *http://www.linktiger.com*)]
3417
- Parent=Link Checkers
3418
- Browser="LinkTiger"
3419
- isBanned=true
3420
-
3421
- [Mozilla/4.0 (Compatible); URLBase*]
3422
- Parent=Link Checkers
3423
- Browser="URLBase"
3424
-
3425
- [Mozilla/4.0 (compatible; Link Utility; http://net-promoter.com)]
3426
- Parent=Link Checkers
3427
- Browser="NetPromoter Link Utility"
3428
-
3429
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Web Link Validator*]
3430
- Parent=Link Checkers
3431
- Browser="Web Link Validator"
3432
- Win32=true
3433
-
3434
- [Mozilla/4.0 (compatible; MSIE 7.0; Win32) Link Commander 3.0]
3435
- Parent=Link Checkers
3436
- Browser="Link Commander"
3437
- Version=3.0
3438
- MajorVer=3
3439
- MinorVer=0
3440
- Platform=Win32
3441
-
3442
- [Mozilla/4.0 (compatible; smartBot/1.*; checking links; *)]
3443
- Parent=Link Checkers
3444
- Browser="smartBot"
3445
-
3446
- [Mozilla/4.0 (compatible; SuperCleaner*;*)]
3447
- Parent=Link Checkers
3448
- Browser="SuperCleaner"
3449
-
3450
- [Mozilla/5.0 gURLChecker/*]
3451
- Parent=Link Checkers
3452
- Browser="gURLChecker"
3453
- isBanned=true
3454
-
3455
- [Newsgroupreporter LinkCheck]
3456
- Parent=Link Checkers
3457
- Browser="Newsgroupreporter LinkCheck"
3458
-
3459
- [onCHECK Linkchecker von www.scientec.de fuer www.onsinn.de]
3460
- Parent=Link Checkers
3461
- Browser="onCHECK Linkchecker"
3462
-
3463
- [online link validator (http://www.dead-links.com/)]
3464
- Parent=Link Checkers
3465
- Browser="Dead-Links.com"
3466
- isBanned=true
3467
-
3468
- [REL Link Checker*]
3469
- Parent=Link Checkers
3470
- Browser="REL Link Checker"
3471
-
3472
- [RLinkCheker*]
3473
- Parent=Link Checkers
3474
- Browser="RLinkCheker"
3475
-
3476
- [Robozilla/*]
3477
- Parent=Link Checkers
3478
- Browser="Robozilla"
3479
-
3480
- [RPT-HTTPClient/*]
3481
- Parent=Link Checkers
3482
- Browser="RPT-HTTPClient"
3483
- isBanned=true
3484
-
3485
- [SafariBookmarkChecker*(?http://www.coriolis.ch/)]
3486
- Parent=Link Checkers
3487
- Browser="SafariBookmarkChecker"
3488
- Platform=MacOSX
3489
- CssVersion=2
3490
- supportsCSS=true
3491
-
3492
- [Simpy/* (Simpy; http://www.simpy.com/?ref=bot; feedback at simpy dot com)]
3493
- Parent=Link Checkers
3494
- Browser="Simpy"
3495
-
3496
- [SiteBar/*]
3497
- Parent=Link Checkers
3498
- Browser="SiteBar"
3499
-
3500
- [Susie (http://www.sync2it.com/bms/susie.php]
3501
- Parent=Link Checkers
3502
- Browser="Susie"
3503
-
3504
- [URLBase/6.*]
3505
- Parent=Link Checkers
3506
-
3507
- [VSE/*]
3508
- Parent=Link Checkers
3509
- Browser="VSE Link Tester"
3510
-
3511
- [WebTrends Link Analyzer]
3512
- Parent=Link Checkers
3513
- Browser="WebTrends Link Analyzer"
3514
-
3515
- [WorQmada/*]
3516
- Parent=Link Checkers
3517
- Browser="WorQmada"
3518
-
3519
- [Xenu* Link Sleuth*]
3520
- Parent=Link Checkers
3521
- Browser="Xenu's Link Sleuth"
3522
- isBanned=true
3523
-
3524
- [Z-Add Link Checker*]
3525
- Parent=Link Checkers
3526
- Browser="Z-Add Link Checker"
3527
-
3528
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft
3529
-
3530
- [Microsoft]
3531
- Parent=DefaultProperties
3532
- Browser="Microsoft"
3533
- isBanned=true
3534
-
3535
- [Live (http://www.live.com/)]
3536
- Parent=Microsoft
3537
- Browser="Microsoft Live"
3538
- isBanned=false
3539
- isSyndicationReader=true
3540
-
3541
- [MFC Foundation Class Library*]
3542
- Parent=Microsoft
3543
- Browser="MFC Foundation Class Library"
3544
-
3545
- [MFHttpScan]
3546
- Parent=Microsoft
3547
- Browser="MFHttpScan"
3548
-
3549
- [Microsoft BITS/*]
3550
- Parent=Microsoft
3551
- Browser="BITS"
3552
-
3553
- [Microsoft Data Access Internet Publishing Provider Cache Manager]
3554
- Parent=Microsoft
3555
- Browser="MS IPP"
3556
-
3557
- [Microsoft Data Access Internet Publishing Provider DAV*]
3558
- Parent=Microsoft
3559
- Browser="MS IPP DAV"
3560
-
3561
- [Microsoft Data Access Internet Publishing Provider Protocol Discovery]
3562
- Parent=Microsoft
3563
- Browser="MS IPPPD"
3564
-
3565
- [Microsoft Internet Explorer]
3566
- Parent=Microsoft
3567
- Browser="Fake IE"
3568
-
3569
- [Microsoft Office Existence Discovery]
3570
- Parent=Microsoft
3571
- Browser="Microsoft Office Existence Discovery"
3572
-
3573
- [Microsoft Office Protocol Discovery]
3574
- Parent=Microsoft
3575
- Browser="MS OPD"
3576
-
3577
- [Microsoft Office/* (*Picture Manager*)]
3578
- Parent=Microsoft
3579
- Browser="Microsoft Office Picture Manager"
3580
-
3581
- [Microsoft URL Control*]
3582
- Parent=Microsoft
3583
- Browser="Microsoft URL Control"
3584
-
3585
- [Microsoft Visio MSIE]
3586
- Parent=Microsoft
3587
- Browser="Microsoft Visio"
3588
-
3589
- [Microsoft-WebDAV-MiniRedir/*]
3590
- Parent=Microsoft
3591
- Browser="Microsoft-WebDAV"
3592
-
3593
- [Mozilla/5.0 (Macintosh; Intel Mac OS X) Excel/12.*]
3594
- Parent=Microsoft
3595
- Browser="Microsoft Excel"
3596
- Version=12.0
3597
- MajorVer=12
3598
- MinorVer=0
3599
- Platform=MacOSX
3600
-
3601
- [MSN Feed Manager]
3602
- Parent=Microsoft
3603
- Browser="MSN Feed Manager"
3604
- isBanned=false
3605
- isSyndicationReader=true
3606
-
3607
- [MSProxy/*]
3608
- Parent=Microsoft
3609
- Browser="MS Proxy"
3610
-
3611
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Browsers
3612
-
3613
- [Miscellaneous Browsers]
3614
- Parent=DefaultProperties
3615
- Browser="Miscellaneous Browsers"
3616
- Frames=true
3617
- Tables=true
3618
- Cookies=true
3619
-
3620
- [*Amiga*]
3621
- Parent=Miscellaneous Browsers
3622
- Browser="Amiga"
3623
- Platform=Amiga
3624
-
3625
- [*avantbrowser*]
3626
- Parent=Miscellaneous Browsers
3627
- Browser="Avant Browser"
3628
-
3629
- [12345]
3630
- Parent=Miscellaneous Browsers
3631
- Browser="12345"
3632
- isBanned=true
3633
-
3634
- [Ace Explorer]
3635
- Parent=Miscellaneous Browsers
3636
- Browser="Ace Explorer"
3637
-
3638
- [Enigma Browser*]
3639
- Parent=Miscellaneous Browsers
3640
- Browser="Enigma Browser"
3641
-
3642
- [EVE-minibrowser/*]
3643
- Parent=Miscellaneous Browsers
3644
- Browser="EVE-minibrowser"
3645
- IFrames=false
3646
- Tables=false
3647
- BackgroundSounds=false
3648
- VBScript=false
3649
- JavaApplets=false
3650
- JavaScript=false
3651
- ActiveXControls=false
3652
- isBanned=false
3653
- Crawler=false
3654
-
3655
- [Godzilla/* (Basic*; *; Commodore C=64; *; rv:1.*)*]
3656
- Parent=Miscellaneous Browsers
3657
- Browser="Godzilla"
3658
-
3659
- [GreenBrowser]
3660
- Parent=Miscellaneous Browsers
3661
- Browser="GreenBrowser"
3662
- Frames=true
3663
- IFrames=true
3664
- Tables=true
3665
- Cookies=true
3666
- BackgroundSounds=true
3667
- VBScript=true
3668
- JavaApplets=true
3669
- JavaScript=true
3670
- ActiveXControls=true
3671
- CssVersion=2
3672
- supportsCSS=true
3673
-
3674
- [Kopiczek/* (WyderOS*; *)]
3675
- Parent=Miscellaneous Browsers
3676
- Browser="Kopiczek"
3677
- Platform=WyderOS
3678
- IFrames=true
3679
- JavaApplets=true
3680
- JavaScript=true
3681
- CssVersion=2
3682
- supportsCSS=true
3683
-
3684
- [Mozilla/* (*) - BrowseX (*)]
3685
- Parent=Miscellaneous Browsers
3686
- Browser="BrowseX"
3687
-
3688
- [Mozilla/* (Win32;*Escape?*; ?)]
3689
- Parent=Miscellaneous Browsers
3690
- Browser="Escape"
3691
- Platform=Win32
3692
-
3693
- [Mozilla/4.0 (compatible; ibisBrowser)]
3694
- Parent=Miscellaneous Browsers
3695
- Browser="ibisBrowser"
3696
-
3697
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) AppleWebKit/* (*) HistoryHound/*]
3698
- Parent=Miscellaneous Browsers
3699
- Browser="HistoryHound"
3700
-
3701
- [NetRecorder*]
3702
- Parent=Miscellaneous Browsers
3703
- Browser="NetRecorder"
3704
-
3705
- [NetSurfer*]
3706
- Parent=Miscellaneous Browsers
3707
- Browser="NetSurfer"
3708
-
3709
- [ogeb browser , Version 1.1.0]
3710
- Parent=Miscellaneous Browsers
3711
- Browser="ogeb browser"
3712
- Version=1.1
3713
- MajorVer=1
3714
- MinorVer=1
3715
-
3716
- [SCEJ PSP BROWSER 0102pspNavigator]
3717
- Parent=Miscellaneous Browsers
3718
- Browser="Wipeout Pure"
3719
-
3720
- [SlimBrowser]
3721
- Parent=Miscellaneous Browsers
3722
- Browser="SlimBrowser"
3723
-
3724
- [WWW_Browser/*]
3725
- Parent=Miscellaneous Browsers
3726
- Browser="WWW Browser"
3727
- Version=1.69
3728
- MajorVer=1
3729
- MinorVer=69
3730
- Platform=Win16
3731
- CssVersion=3
3732
- supportsCSS=true
3733
-
3734
- [*Netcraft Webserver Survey*]
3735
- Parent=Netcraft
3736
- Browser="Netcraft Webserver Survey"
3737
- isBanned=true
3738
-
3739
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Offline Browsers
3740
-
3741
- [Offline Browsers]
3742
- Parent=DefaultProperties
3743
- Browser="Offline Browsers"
3744
- Frames=true
3745
- Tables=true
3746
- Cookies=true
3747
- isBanned=true
3748
- Crawler=true
3749
-
3750
- [*Check&Get*]
3751
- Parent=Offline Browsers
3752
- Browser="Check&Get"
3753
-
3754
- [*HTTrack*]
3755
- Parent=Offline Browsers
3756
- Browser="HTTrack"
3757
-
3758
- [*MSIECrawler*]
3759
- Parent=Offline Browsers
3760
- Browser="IE Offline Browser"
3761
-
3762
- [*TweakMASTER*]
3763
- Parent=Offline Browsers
3764
- Browser="TweakMASTER"
3765
-
3766
- [BackStreet Browser *]
3767
- Parent=Offline Browsers
3768
- Browser="BackStreet Browser"
3769
-
3770
- [Go-Ahead-Got-It*]
3771
- Parent=Offline Browsers
3772
- Browser="Go Ahead Got-It"
3773
-
3774
- [iGetter/*]
3775
- Parent=Offline Browsers
3776
- Browser="iGetter"
3777
-
3778
- [Teleport*]
3779
- Parent=Offline Browsers
3780
- Browser="Teleport"
3781
-
3782
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Online Scanners
3783
-
3784
- [Online Scanners]
3785
- Parent=DefaultProperties
3786
- Browser="Online Scanners"
3787
- isBanned=true
3788
-
3789
- [Morfeus Fucking Scanner]
3790
- Parent=Online Scanners
3791
- Browser="Morfeus Fucking Scanner"
3792
-
3793
- [Mozilla/4.0 (compatible; Trend Micro tmdr 1.*]
3794
- Parent=Online Scanners
3795
- Browser="Trend Micro"
3796
-
3797
- [Titanium 2005 (4.02.01)]
3798
- Parent=Online Scanners
3799
- Browser="Panda Antivirus Titanium"
3800
-
3801
- [virus_detector*]
3802
- Parent=Online Scanners
3803
- Browser="Secure Computing Corporation"
3804
-
3805
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Proxy Servers
3806
-
3807
- [Proxy Servers]
3808
- Parent=DefaultProperties
3809
- Browser="Proxy Servers"
3810
- isBanned=true
3811
-
3812
- [*squid*]
3813
- Parent=Proxy Servers
3814
- Browser="Squid"
3815
-
3816
- [Anonymisiert*]
3817
- Parent=Proxy Servers
3818
- Browser="Anonymizied"
3819
-
3820
- [Anonymizer/*]
3821
- Parent=Proxy Servers
3822
- Browser="Anonymizer"
3823
-
3824
- [Anonymizied*]
3825
- Parent=Proxy Servers
3826
- Browser="Anonymizied"
3827
-
3828
- [Anonymous*]
3829
- Parent=Proxy Servers
3830
- Browser="Anonymous"
3831
-
3832
- [Anonymous/*]
3833
- Parent=Proxy Servers
3834
- Browser="Anonymous"
3835
-
3836
- [CE-Preload]
3837
- Parent=Proxy Servers
3838
- Browser="CE-Preload"
3839
-
3840
- [http://Anonymouse.org/*]
3841
- Parent=Proxy Servers
3842
- Browser="Anonymouse"
3843
-
3844
- [IE/6.01 (CP/M; 8-bit*)]
3845
- Parent=Proxy Servers
3846
- Browser="Squid"
3847
-
3848
- [Mozilla/* (TuringOS; Turing Machine; 0.0)]
3849
- Parent=Proxy Servers
3850
- Browser="Anonymizer"
3851
-
3852
- [Mozilla/4.0 (compatible; MSIE ?.0; SaferSurf*)]
3853
- Parent=Proxy Servers
3854
- Browser="SaferSurf"
3855
-
3856
- [Mozilla/5.0 (compatible; del.icio.us-thumbnails/*; *) KHTML/* (like Gecko)]
3857
- Parent=Proxy Servers
3858
- Browser="Yahoo!"
3859
- isBanned=true
3860
- Crawler=true
3861
-
3862
- [Nutscrape]
3863
- Parent=Proxy Servers
3864
- Browser="Squid"
3865
-
3866
- [Nutscrape/* (CP/M; 8-bit*)]
3867
- Parent=Proxy Servers
3868
- Browser="Squid"
3869
-
3870
- [Privoxy/*]
3871
- Parent=Proxy Servers
3872
- Browser="Privoxy"
3873
-
3874
- [ProxyTester*]
3875
- Parent=Proxy Servers
3876
- Browser="ProxyTester"
3877
- isBanned=true
3878
- Crawler=true
3879
-
3880
- [SilentSurf*]
3881
- Parent=Proxy Servers
3882
- Browser="SilentSurf"
3883
-
3884
- [SmallProxy*]
3885
- Parent=Proxy Servers
3886
- Browser="SmallProxy"
3887
-
3888
- [Space*Bison/*]
3889
- Parent=Proxy Servers
3890
- Browser="Proxomitron"
3891
-
3892
- [Sqworm/*]
3893
- Parent=Proxy Servers
3894
- Browser="Websense"
3895
-
3896
- [SurfControl]
3897
- Parent=Proxy Servers
3898
- Browser="SurfControl"
3899
-
3900
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Research Projects
3901
-
3902
- [Research Projects]
3903
- Parent=DefaultProperties
3904
- Browser="Research Projects"
3905
- isBanned=true
3906
- Crawler=true
3907
-
3908
- [*research*]
3909
- Parent=Research Projects
3910
-
3911
- [AcadiaUniversityWebCensusClient]
3912
- Parent=Research Projects
3913
- Browser="AcadiaUniversityWebCensusClient"
3914
-
3915
- [Amico Alpha * (*) Gecko/* AmicoAlpha/*]
3916
- Parent=Research Projects
3917
- Browser="Amico Alpha"
3918
-
3919
- [annotate_google; http://ponderer.org/*]
3920
- Parent=Research Projects
3921
- Browser="Annotate Google"
3922
-
3923
- [CMS crawler (?http://buytaert.net/crawler/)]
3924
- Parent=Research Projects
3925
-
3926
- [e-SocietyRobot(http://www.yama.info.waseda.ac.jp/~yamana/es/)]
3927
- Parent=Research Projects
3928
- Browser="e-SocietyRobot"
3929
-
3930
- [Forschungsportal/*]
3931
- Parent=Research Projects
3932
- Browser="Forschungsportal"
3933
-
3934
- [Gulper Web *]
3935
- Parent=Research Projects
3936
- Browser="Gulper Web Bot"
3937
-
3938
- [HooWWWer/*]
3939
- Parent=Research Projects
3940
- Browser="HooWWWer"
3941
-
3942
- [http://buytaert.net/crawler]
3943
- Parent=Research Projects
3944
-
3945
- [inetbot/* (?http://www.inetbot.com/bot.html)]
3946
- Parent=Research Projects
3947
- Browser="inetbot"
3948
-
3949
- [IRLbot/*]
3950
- Parent=Research Projects
3951
- Browser="IRLbot"
3952
-
3953
- [Lachesis]
3954
- Parent=Research Projects
3955
- Browser="Lachesis"
3956
-
3957
- [Mozilla/5.0 (compatible; nextthing.org/*)]
3958
- Parent=Research Projects
3959
- Browser="nextthing.org"
3960
- Version=1.0
3961
- MajorVer=1
3962
- MinorVer=0
3963
-
3964
- [Mozilla/5.0 (compatible; Theophrastus/*)]
3965
- Parent=Research Projects
3966
- Browser="Theophrastus"
3967
-
3968
- [Mozilla/5.0 (compatible; Webscan v0.*; http://otc.dyndns.org/webscan/)]
3969
- Parent=Research Projects
3970
- Browser="Webscan"
3971
-
3972
- [MQbot*]
3973
- Parent=Research Projects
3974
- Browser="MQbot"
3975
-
3976
- [OutfoxBot/*]
3977
- Parent=Research Projects
3978
- Browser="OutfoxBot"
3979
-
3980
- [polybot?*]
3981
- Parent=Research Projects
3982
- Browser="Polybot"
3983
-
3984
- [Shim?Crawler*]
3985
- Parent=Research Projects
3986
- Browser="Shim Crawler"
3987
-
3988
- [Steeler/*]
3989
- Parent=Research Projects
3990
- Browser="Steeler"
3991
-
3992
- [Taiga web spider]
3993
- Parent=Research Projects
3994
- Browser="Taiga"
3995
-
3996
- [Theme Spider*]
3997
- Parent=Research Projects
3998
- Browser="Theme Spider"
3999
-
4000
- [UofTDB_experiment* (leehyun@cs.toronto.edu)]
4001
- Parent=Research Projects
4002
- Browser="UofTDB Experiment"
4003
-
4004
- [USyd-NLP-Spider*]
4005
- Parent=Research Projects
4006
- Browser="USyd-NLP-Spider"
4007
-
4008
- [woriobot*]
4009
- Parent=Research Projects
4010
- Browser="woriobot"
4011
-
4012
- [wwwster/* (Beta, mailto:gue@cis.uni-muenchen.de)]
4013
- Parent=Research Projects
4014
- Browser="wwwster"
4015
- Beta=true
4016
-
4017
- [Zao-Crawler]
4018
- Parent=Research Projects
4019
- Browser="Zao-Crawler"
4020
-
4021
- [Zao/*]
4022
- Parent=Research Projects
4023
- Browser="Zao"
4024
-
4025
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rippers
4026
-
4027
- [Rippers]
4028
- Parent=DefaultProperties
4029
- Browser="Rippers"
4030
- Frames=true
4031
- IFrames=true
4032
- Tables=true
4033
- isBanned=true
4034
- Crawler=true
4035
-
4036
- [*grub*]
4037
- Parent=Rippers
4038
- Browser="grub"
4039
-
4040
- [*ickHTTP*]
4041
- Parent=Rippers
4042
- Browser="IP*Works"
4043
-
4044
- [*java*]
4045
- Parent=Rippers
4046
-
4047
- [*libwww-perl*]
4048
- Parent=Rippers
4049
- Browser="libwww-perl"
4050
-
4051
- [*WebGrabber*]
4052
- Parent=Rippers
4053
-
4054
- [*WinHttpRequest*]
4055
- Parent=Rippers
4056
- Browser="WinHttp"
4057
-
4058
- [3D-FTP/*]
4059
- Parent=Rippers
4060
- Browser="3D-FTP"
4061
-
4062
- [3wGet/*]
4063
- Parent=Rippers
4064
- Browser="3wGet"
4065
-
4066
- [ActiveRefresh*]
4067
- Parent=Rippers
4068
- Browser="ActiveRefresh"
4069
-
4070
- [Artera (Version *)]
4071
- Parent=Rippers
4072
- Browser="Artera"
4073
-
4074
- [AutoHotkey]
4075
- Parent=Rippers
4076
- Browser="AutoHotkey"
4077
-
4078
- [b2w/*]
4079
- Parent=Rippers
4080
- Browser="b2w"
4081
-
4082
- [BasicHTTP/*]
4083
- Parent=Rippers
4084
- Browser="BasicHTTP"
4085
-
4086
- [BlockNote.Net]
4087
- Parent=Rippers
4088
- Browser="BlockNote.Net"
4089
-
4090
- [CAST]
4091
- Parent=Rippers
4092
- Browser="CAST"
4093
-
4094
- [CFNetwork/*]
4095
- Parent=Rippers
4096
- Browser="CFNetwork"
4097
-
4098
- [CFSCHEDULE*]
4099
- Parent=Rippers
4100
- Browser="ColdFusion Task Scheduler"
4101
-
4102
- [CobWeb/*]
4103
- Parent=Rippers
4104
- Browser="CobWeb"
4105
-
4106
- [ColdFusion*]
4107
- Parent=Rippers
4108
- Browser="ColdFusion"
4109
-
4110
- [Crawl_Application]
4111
- Parent=Rippers
4112
- Browser="Crawl_Application"
4113
-
4114
- [curl/*]
4115
- Parent=Rippers
4116
- Browser="cURL"
4117
-
4118
- [Custo*]
4119
- Parent=Rippers
4120
- Browser="Custo"
4121
-
4122
- [DataCha0s/*]
4123
- Parent=Rippers
4124
- Browser="DataCha0s"
4125
-
4126
- [DeepIndexer*]
4127
- Parent=Rippers
4128
- Browser="DeepIndexer"
4129
-
4130
- [DISCo Pump *]
4131
- Parent=Rippers
4132
- Browser="DISCo Pump"
4133
-
4134
- [eStyleSearch * (compatible; MSIE 6.0; Windows NT 5.0)]
4135
- Parent=Rippers
4136
- Browser="eStyleSearch"
4137
- Win32=true
4138
-
4139
- [ezic.com http agent *]
4140
- Parent=Rippers
4141
- Browser="Ezic.com"
4142
-
4143
- [fetch libfetch/*]
4144
- Parent=Rippers
4145
-
4146
- [FGet*]
4147
- Parent=Rippers
4148
- Browser="FGet"
4149
-
4150
- [Flaming AttackBot*]
4151
- Parent=Rippers
4152
- Browser="Flaming AttackBot"
4153
-
4154
- [Foobot*]
4155
- Parent=Rippers
4156
- Browser="Foobot"
4157
-
4158
- [GameSpyHTTP/*]
4159
- Parent=Rippers
4160
- Browser="GameSpyHTTP"
4161
-
4162
- [gnome-vfs/*]
4163
- Parent=Rippers
4164
- Browser="gnome-vfs"
4165
-
4166
- [Harvest/*]
4167
- Parent=Rippers
4168
- Browser="Harvest"
4169
-
4170
- [hcat/*]
4171
- Parent=Rippers
4172
- Browser="hcat"
4173
-
4174
- [HLoader]
4175
- Parent=Rippers
4176
- Browser="HLoader"
4177
-
4178
- [Holmes/*]
4179
- Parent=Rippers
4180
- Browser="Holmes"
4181
-
4182
- [HTMLParser/*]
4183
- Parent=Rippers
4184
- Browser="HTMLParser"
4185
-
4186
- [http generic]
4187
- Parent=Rippers
4188
- Browser="http generic"
4189
-
4190
- [httpclient*]
4191
- Parent=Rippers
4192
-
4193
- [httperf/*]
4194
- Parent=Rippers
4195
- Browser="httperf"
4196
-
4197
- [HTTPFetch/1.1*]
4198
- Parent=Rippers
4199
- Browser="HTTPFetch"
4200
-
4201
- [HttpSession]
4202
- Parent=Rippers
4203
- Browser="HttpSession"
4204
-
4205
- [httpunit/*]
4206
- Parent=Rippers
4207
- Browser="HttpUnit"
4208
-
4209
- [ICE_GetFile]
4210
- Parent=Rippers
4211
- Browser="ICE_GetFile"
4212
-
4213
- [iexplore.exe]
4214
- Parent=Rippers
4215
-
4216
- [Inet - Eureka App]
4217
- Parent=Rippers
4218
- Browser="Inet - Eureka App"
4219
-
4220
- [INetURL/*]
4221
- Parent=Rippers
4222
- Browser="INetURL"
4223
-
4224
- [InetURL:/*]
4225
- Parent=Rippers
4226
- Browser="InetURL"
4227
-
4228
- [Internet Exploiter/*]
4229
- Parent=Rippers
4230
-
4231
- [Internet Explore *]
4232
- Parent=Rippers
4233
- Browser="Fake IE"
4234
-
4235
- [Internet Explorer *]
4236
- Parent=Rippers
4237
- Browser="Fake IE"
4238
-
4239
- [IP*Works!*/*]
4240
- Parent=Rippers
4241
- Browser="IP*Works!"
4242
-
4243
- [IrssiUrlLog/*]
4244
- Parent=Rippers
4245
- Browser="IrssiUrlLog"
4246
-
4247
- [JPluck/*]
4248
- Parent=Rippers
4249
- Browser="JPluck"
4250
-
4251
- [Kapere (http://www.kapere.com)]
4252
- Parent=Rippers
4253
- Browser="Kapere"
4254
-
4255
- [LeechFTP]
4256
- Parent=Rippers
4257
- Browser="LeechFTP"
4258
-
4259
- [LeechGet*]
4260
- Parent=Rippers
4261
- Browser="LeechGet"
4262
-
4263
- [libcurl-agent/*]
4264
- Parent=Rippers
4265
- Browser="libcurl"
4266
-
4267
- [libWeb/clsHTTP*]
4268
- Parent=Rippers
4269
- Browser="libWeb/clsHTTP"
4270
-
4271
- [lwp*]
4272
- Parent=Rippers
4273
-
4274
- [MFC_Tear_Sample]
4275
- Parent=Rippers
4276
- Browser="MFC_Tear_Sample"
4277
-
4278
- [Moozilla]
4279
- Parent=Rippers
4280
- Browser="Moozilla"
4281
-
4282
- [MovableType/*]
4283
- Parent=Rippers
4284
- Browser="MovableType Web Log"
4285
-
4286
- [Mozilla/2.0 (compatible; NEWT ActiveX; Win32)]
4287
- Parent=Rippers
4288
- Browser="NEWT ActiveX"
4289
- Platform=Win32
4290
-
4291
- [Mozilla/3.0 (compatible)]
4292
- Parent=Rippers
4293
-
4294
- [Mozilla/3.0 (compatible; Indy Library)]
4295
- Parent=Rippers
4296
- Cookies=true
4297
-
4298
- [Mozilla/3.01 (compatible;)]
4299
- Parent=Rippers
4300
-
4301
- [Mozilla/4.0 (compatible; BorderManager*)]
4302
- Parent=Rippers
4303
- Browser="Novell BorderManager"
4304
-
4305
- [Mozilla/4.0 (compatible;)]
4306
- Parent=Rippers
4307
-
4308
- [Mozilla/5.0 (compatible; IPCheck Server Monitor*)]
4309
- Parent=Rippers
4310
- Browser="IPCheck Server Monitor"
4311
-
4312
- [OCN-SOC/*]
4313
- Parent=Rippers
4314
- Browser="OCN-SOC"
4315
-
4316
- [Offline Explorer*]
4317
- Parent=Rippers
4318
- Browser="Offline Explorer"
4319
-
4320
- [Open Web Analytics Bot*]
4321
- Parent=Rippers
4322
- Browser="Open Web Analytics Bot"
4323
-
4324
- [OSSProxy*]
4325
- Parent=Rippers
4326
- Browser="OSSProxy"
4327
-
4328
- [Pageload*]
4329
- Parent=Rippers
4330
- Browser="PageLoad"
4331
-
4332
- [pavuk/*]
4333
- Parent=Rippers
4334
- Browser="Pavuk"
4335
-
4336
- [PEAR HTTP_Request*]
4337
- Parent=Rippers
4338
- Browser="PEAR-PHP"
4339
-
4340
- [PHP*]
4341
- Parent=Rippers
4342
- Browser="PHP"
4343
-
4344
- [PigBlock (Windows NT 5.1; U)*]
4345
- Parent=Rippers
4346
- Browser="PigBlock"
4347
- Win32=true
4348
-
4349
- [Pockey*]
4350
- Parent=Rippers
4351
- Browser="Pockey-GetHTML"
4352
-
4353
- [POE-Component-Client-HTTP/*]
4354
- Parent=Rippers
4355
- Browser="POE-Component-Client-HTTP"
4356
-
4357
- [PycURL/*]
4358
- Parent=Rippers
4359
- Browser="PycURL"
4360
-
4361
- [Python*]
4362
- Parent=Rippers
4363
- Browser="Python"
4364
-
4365
- [RepoMonkey*]
4366
- Parent=Rippers
4367
- Browser="RepoMonkey"
4368
-
4369
- [SBL-BOT*]
4370
- Parent=Rippers
4371
- Browser="BlackWidow"
4372
-
4373
- [ScoutAbout*]
4374
- Parent=Rippers
4375
- Browser="ScoutAbout"
4376
-
4377
- [sherlock/*]
4378
- Parent=Rippers
4379
- Browser="Sherlock"
4380
-
4381
- [SiteParser/*]
4382
- Parent=Rippers
4383
- Browser="SiteParser"
4384
-
4385
- [SiteSnagger*]
4386
- Parent=Rippers
4387
- Browser="SiteSnagger"
4388
-
4389
- [SiteSucker/*]
4390
- Parent=Rippers
4391
- Browser="SiteSucker"
4392
-
4393
- [SiteWinder*]
4394
- Parent=Rippers
4395
- Browser="SiteWinder"
4396
-
4397
- [Snoopy*]
4398
- Parent=Rippers
4399
- Browser="Snoopy"
4400
-
4401
- [SOFTWING_TEAR_AGENT*]
4402
- Parent=Rippers
4403
- Browser="AspTear"
4404
-
4405
- [SuperHTTP/*]
4406
- Parent=Rippers
4407
- Browser="SuperHTTP"
4408
-
4409
- [Tcl http client package*]
4410
- Parent=Rippers
4411
- Browser="Tcl http client package"
4412
-
4413
- [Twisted PageGetter]
4414
- Parent=Rippers
4415
- Browser="Twisted PageGetter"
4416
-
4417
- [URL2File/*]
4418
- Parent=Rippers
4419
- Browser="URL2File"
4420
-
4421
- [UtilMind HTTPGet]
4422
- Parent=Rippers
4423
- Browser="UtilMind HTTPGet"
4424
-
4425
- [VCI WebViewer*]
4426
- Parent=Rippers
4427
- Browser="VCI WebViewer"
4428
-
4429
- [W3CRobot/*]
4430
- Parent=Rippers
4431
- Browser="W3CRobot"
4432
-
4433
- [Web Downloader*]
4434
- Parent=Rippers
4435
- Browser="Web Downloader"
4436
-
4437
- [Web Downloader/*]
4438
- Parent=Rippers
4439
- Browser="Web Downloader"
4440
-
4441
- [Web Magnet*]
4442
- Parent=Rippers
4443
- Browser="Web Magnet"
4444
-
4445
- [WebAuto/*]
4446
- Parent=Rippers
4447
-
4448
- [webbandit/*]
4449
- Parent=Rippers
4450
- Browser="webbandit"
4451
-
4452
- [WebCopier*]
4453
- Parent=Rippers
4454
- Browser="WebCopier"
4455
-
4456
- [WebDownloader*]
4457
- Parent=Rippers
4458
- Browser="WebDownloader"
4459
-
4460
- [WebFetch]
4461
- Parent=Rippers
4462
- Browser="WebFetch"
4463
-
4464
- [webfetch/*]
4465
- Parent=Rippers
4466
- Browser="WebFetch"
4467
-
4468
- [WebGatherer*]
4469
- Parent=Rippers
4470
- Browser="WebGatherer"
4471
-
4472
- [WebGet]
4473
- Parent=Rippers
4474
- Browser="WebGet"
4475
-
4476
- [WebReaper*]
4477
- Parent=Rippers
4478
- Browser="WebReaper"
4479
-
4480
- [WebRipper]
4481
- Parent=Rippers
4482
- Browser="WebRipper"
4483
-
4484
- [WebSauger*]
4485
- Parent=Rippers
4486
- Browser="WebSauger"
4487
-
4488
- [Website Downloader*]
4489
- Parent=Rippers
4490
- Browser="Website Downloader"
4491
-
4492
- [Website eXtractor*]
4493
- Parent=Rippers
4494
- Browser="Website eXtractor"
4495
-
4496
- [Website Quester]
4497
- Parent=Rippers
4498
- Browser="Website Quester"
4499
-
4500
- [WebsiteExtractor*]
4501
- Parent=Rippers
4502
- Browser="Website eXtractor"
4503
-
4504
- [WebSnatcher*]
4505
- Parent=Rippers
4506
- Browser="WebSnatcher"
4507
-
4508
- [Webster Pro*]
4509
- Parent=Rippers
4510
- Browser="Webster Pro"
4511
-
4512
- [WebStripper*]
4513
- Parent=Rippers
4514
- Browser="WebStripper"
4515
-
4516
- [WebWhacker*]
4517
- Parent=Rippers
4518
- Browser="WebWhacker"
4519
-
4520
- [WinScripter iNet Tools]
4521
- Parent=Rippers
4522
- Browser="WinScripter iNet Tools"
4523
-
4524
- [WWW-Mechanize/*]
4525
- Parent=Rippers
4526
- Browser="WWW-Mechanize"
4527
-
4528
- [Zend_Http_Client]
4529
- Parent=Rippers
4530
- Browser="Zend_Http_Client"
4531
-
4532
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Site Monitors
4533
-
4534
- [Site Monitors]
4535
- Parent=DefaultProperties
4536
- Browser="Site Monitors"
4537
- Cookies=true
4538
- isBanned=true
4539
- Crawler=true
4540
-
4541
- [*EasyRider*]
4542
- Parent=Site Monitors
4543
- Browser="EasyRider"
4544
-
4545
- [*maxamine.com--robot*]
4546
- Parent=Site Monitors
4547
- Browser="maxamine.com--robot"
4548
- isBanned=true
4549
-
4550
- [*WebMon ?.*]
4551
- Parent=Site Monitors
4552
- Browser="WebMon"
4553
-
4554
- [Kenjin Spider*]
4555
- Parent=Site Monitors
4556
- Browser="Kenjin Spider"
4557
-
4558
- [Kevin http://*]
4559
- Parent=Site Monitors
4560
- Browser="Kevin"
4561
- isBanned=true
4562
-
4563
- [Mozilla/4.0 (compatible; ChangeDetection/*]
4564
- Parent=Site Monitors
4565
- Browser="ChangeDetection"
4566
-
4567
- [Myst Monitor Service v*]
4568
- Parent=Site Monitors
4569
- Browser="Myst Monitor Service"
4570
-
4571
- [Net Probe]
4572
- Parent=Site Monitors
4573
- Browser="Net Probe"
4574
-
4575
- [NetMechanic*]
4576
- Parent=Site Monitors
4577
- Browser="NetMechanic"
4578
-
4579
- [NetReality*]
4580
- Parent=Site Monitors
4581
- Browser="NetReality"
4582
-
4583
- [Pingdom GIGRIB*]
4584
- Parent=Site Monitors
4585
- Browser="Pingdom"
4586
-
4587
- [Site Valet Online*]
4588
- Parent=Site Monitors
4589
- Browser="Site Valet"
4590
- isBanned=true
4591
-
4592
- [SITECHECKER]
4593
- Parent=Site Monitors
4594
- Browser="SITECHECKER"
4595
-
4596
- [sitemonitor@dnsvr.com/*]
4597
- Parent=Site Monitors
4598
- Browser="ZoneEdit Failover Monitor"
4599
- isBanned=false
4600
-
4601
- [UpTime Checker*]
4602
- Parent=Site Monitors
4603
- Browser="UpTime Checker"
4604
-
4605
- [URL Control*]
4606
- Parent=Site Monitors
4607
- Browser="URL Control"
4608
-
4609
- [URL_Access/*]
4610
- Parent=Site Monitors
4611
-
4612
- [URLCHECK]
4613
- Parent=Site Monitors
4614
- Browser="URLCHECK"
4615
-
4616
- [URLy Warning*]
4617
- Parent=Site Monitors
4618
- Browser="URLy Warning"
4619
-
4620
- [Webcheck *]
4621
- Parent=Site Monitors
4622
- Browser="Webcheck"
4623
- Version=1.0
4624
- MajorVer=1
4625
- MinorVer=0
4626
-
4627
- [WebPatrol/*]
4628
- Parent=Site Monitors
4629
- Browser="WebPatrol"
4630
-
4631
- [websitepulse checker/*]
4632
- Parent=Site Monitors
4633
- Browser="websitepulse checker"
4634
-
4635
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Social Bookmarkers
4636
-
4637
- [Social Bookmarkers]
4638
- Parent=DefaultProperties
4639
- Browser="Social Bookmarkers"
4640
- Frames=true
4641
- Tables=true
4642
- Cookies=true
4643
- JavaScript=true
4644
-
4645
- [BookmarkBase(2/;http://bookmarkbase.com)]
4646
- Parent=Social Bookmarkers
4647
- Browser="BookmarkBase"
4648
-
4649
- [Cocoal.icio.us/1.0 (v43) (Mac OS X; http://www.scifihifi.com/cocoalicious)]
4650
- Parent=Social Bookmarkers
4651
- Browser="Cocoalicious"
4652
-
4653
- [Mozilla/5.0 (compatible; FriendFeedBot/0.*; Http://friendfeed.com/about/bot)]
4654
- Parent=Social Bookmarkers
4655
- Browser="FriendFeedBot"
4656
-
4657
- [Twitturly*]
4658
- Parent=Social Bookmarkers
4659
- Browser="Twitturly"
4660
-
4661
- [WinkBot/*]
4662
- Parent=Social Bookmarkers
4663
- Browser="WinkBot"
4664
-
4665
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Translators
4666
-
4667
- [Translators]
4668
- Parent=DefaultProperties
4669
- Browser="Translators"
4670
- Frames=true
4671
- Tables=true
4672
- Cookies=true
4673
-
4674
- [Seram Server]
4675
- Parent=Translators
4676
- Browser="Seram Server"
4677
-
4678
- [TeragramWebcrawler/*]
4679
- Parent=Translators
4680
- Browser="TeragramWebcrawler"
4681
- Version=1.0
4682
- MajorVer=1
4683
- MinorVer=0
4684
-
4685
- [WebIndexer/* (Web Indexer; *)]
4686
- Parent=Translators
4687
- Browser="WorldLingo"
4688
-
4689
- [WebTrans]
4690
- Parent=Translators
4691
- Browser="WebTrans"
4692
-
4693
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Version Checkers
4694
-
4695
- [Version Checkers]
4696
- Parent=DefaultProperties
4697
- Browser="Version Checkers"
4698
- Crawler=true
4699
-
4700
- [Automated Browscap.ini Updater. To report issues contact us at http://www.skycomp.ca]
4701
- Parent=Version Checkers
4702
- Browser="Automated Browscap.ini Updater"
4703
-
4704
- [BMC Link Validator (http://www.briansmodelcars.com/links/)]
4705
- Parent=Version Checkers
4706
- Browser="BMC Link Validator"
4707
- MajorVer=1
4708
- MinorVer=0
4709
- Platform=Win2000
4710
-
4711
- [Browscap updater]
4712
- Parent=Version Checkers
4713
- Browser="Browscap updater"
4714
-
4715
- [BrowscapUpdater1.0]
4716
- Parent=Version Checkers
4717
-
4718
- [Browser Capabilities Project (http://browsers.garykeith.com; http://browsers.garykeith.com/sitemail/contact-me.asp)]
4719
- Parent=Version Checkers
4720
- Browser="Gary Keith's Version Checker"
4721
-
4722
- [Browser Capabilities Project AutoDownloader; created by Tom Kelleher Consulting, Inc. (tkelleher.com); used with special permission from Gary Joel Keith; uses Microsoft's WinHTTP component]
4723
- Parent=Version Checkers
4724
- Browser="TKC AutoDownloader"
4725
-
4726
- [browsers.garykeith.com browscap.ini bot BETA]
4727
- Parent=Version Checkers
4728
-
4729
- [Code Sample Web Client]
4730
- Parent=Version Checkers
4731
- Browser="Code Sample Web Client"
4732
-
4733
- [Desktop Sidebar*]
4734
- Parent=Version Checkers
4735
- Browser="Desktop Sidebar"
4736
- isBanned=true
4737
-
4738
- [Mono Browser Capabilities Updater*]
4739
- Parent=Version Checkers
4740
- Browser="Mono Browser Capabilities Updater"
4741
- isBanned=true
4742
-
4743
- [Rewmi/*]
4744
- Parent=Version Checkers
4745
- isBanned=true
4746
-
4747
- [Subtext Version 1.9* - http://subtextproject.com/ (Microsoft Windows NT 5.2.*)]
4748
- Parent=Version Checkers
4749
- Browser="Subtext"
4750
-
4751
- [TherapeuticResearch]
4752
- Parent=Version Checkers
4753
- Browser="TherapeuticResearch"
4754
-
4755
- [UpdateBrowscap*]
4756
- Parent=Version Checkers
4757
- Browser="UpdateBrowscap"
4758
-
4759
- [www.garykeith.com browscap.ini bot*]
4760
- Parent=Version Checkers
4761
- Browser="clarkson.edu "
4762
-
4763
- [www.substancia.com AutoHTTPAgent (ver *)]
4764
- Parent=Version Checkers
4765
- Browser="Subst�ncia"
4766
-
4767
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Become
4768
-
4769
- [Become]
4770
- Parent=DefaultProperties
4771
- Browser="Become"
4772
- Frames=true
4773
- Tables=true
4774
- isSyndicationReader=true
4775
- Crawler=true
4776
-
4777
- [*BecomeBot/*]
4778
- Parent=Become
4779
- Browser="BecomeBot"
4780
-
4781
- [*BecomeBot@exava.com*]
4782
- Parent=Become
4783
- Browser="BecomeBot"
4784
-
4785
- [*Exabot@exava.com*]
4786
- Parent=Become
4787
- Browser="Exabot"
4788
-
4789
- [MonkeyCrawl/*]
4790
- Parent=Become
4791
- Browser="MonkeyCrawl"
4792
-
4793
- [Mozilla/5.0 (compatible; BecomeJPBot/2.3; *)]
4794
- Parent=Become
4795
- Browser="BecomeJPBot"
4796
-
4797
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Blue Coat Systems
4798
-
4799
- [Blue Coat Systems]
4800
- Parent=DefaultProperties
4801
- Browser="Blue Coat Systems"
4802
- isBanned=true
4803
- Crawler=true
4804
-
4805
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Abusers
4806
-
4807
- [Browscap Abusers]
4808
- Parent=DefaultProperties
4809
- Browser="Browscap Abusers"
4810
- isBanned=true
4811
-
4812
- [Apple-PubSub/*]
4813
- Parent=Browscap Abusers
4814
- Browser="Apple-PubSub"
4815
-
4816
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FeedHub
4817
-
4818
- [FeedHub]
4819
- Parent=DefaultProperties
4820
- Browser="FeedHub"
4821
- isSyndicationReader=true
4822
-
4823
- [FeedHub FeedDiscovery/1.0 (http://www.feedhub.com)]
4824
- Parent=FeedHub
4825
- Browser="FeedHub FeedDiscovery"
4826
- Version=1.0
4827
- MajorVer=1
4828
- MinorVer=0
4829
-
4830
- [FeedHub FeedFetcher/1.0 (http://www.feedhub.com)]
4831
- Parent=FeedHub
4832
- Browser="FeedHub FeedFetcher"
4833
- Version=1.0
4834
- MajorVer=1
4835
- MinorVer=0
4836
-
4837
- [FeedHub MetaDataFetcher/1.0 (http://www.feedhub.com)]
4838
- Parent=FeedHub
4839
- Browser="FeedHub MetaDataFetcher"
4840
- Version=1.0
4841
- MajorVer=1
4842
- MinorVer=0
4843
-
4844
- [Internet Content Rating Association]
4845
- Parent=DefaultProperties
4846
- Browser=""
4847
- Frames=true
4848
- IFrames=true
4849
- Tables=true
4850
- Cookies=true
4851
- Crawler=true
4852
-
4853
- [ICRA_label_generator/1.?]
4854
- Parent=Internet Content Rating Association
4855
- Browser="ICRA_label_generator"
4856
-
4857
- [ICRA_Semantic_spider/0.?]
4858
- Parent=Internet Content Rating Association
4859
- Browser="ICRA_Semantic_spider"
4860
-
4861
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NameProtect
4862
-
4863
- [NameProtect]
4864
- Parent=DefaultProperties
4865
- Browser="NameProtect"
4866
- isBanned=true
4867
- Crawler=true
4868
-
4869
- [abot/*]
4870
- Parent=NameProtect
4871
- Browser="NameProtect"
4872
-
4873
- [NP/*]
4874
- Parent=NameProtect
4875
- Browser="NameProtect"
4876
-
4877
- [NPBot*]
4878
- Parent=NameProtect
4879
- Browser="NameProtect"
4880
-
4881
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netcraft
4882
-
4883
- [Netcraft]
4884
- Parent=DefaultProperties
4885
- Browser="Netcraft"
4886
- isBanned=true
4887
- Crawler=true
4888
-
4889
- [*Netcraft Web Server Survey*]
4890
- Parent=Netcraft
4891
- Browser="Netcraft Webserver Survey"
4892
- isBanned=true
4893
-
4894
- [Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; info@netcraft.com)]
4895
- Parent=Netcraft
4896
- Browser="NetcraftSurveyAgent"
4897
-
4898
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NewsGator
4899
-
4900
- [NewsGator]
4901
- Parent=DefaultProperties
4902
- Browser="NewsGator"
4903
- isSyndicationReader=true
4904
-
4905
- [MarsEdit*]
4906
- Parent=NewsGator
4907
- Browser="MarsEdit"
4908
-
4909
- [NetNewsWire*/*]
4910
- Parent=NewsGator
4911
- Browser="NetNewsWire"
4912
- Platform=MacOSX
4913
-
4914
- [NewsFire/*]
4915
- Parent=NewsGator
4916
- Browser="NewsFire"
4917
-
4918
- [NewsGator FetchLinks extension/*]
4919
- Parent=NewsGator
4920
- Browser="NewsGator FetchLinks"
4921
-
4922
- [NewsGator/*]
4923
- Parent=NewsGator
4924
- Browser="NewsGator"
4925
- isBanned=true
4926
-
4927
- [NewsGatorOnline/*]
4928
- Parent=NewsGator
4929
- Browser="NewsGatorOnline"
4930
-
4931
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.2
4932
-
4933
- [Chrome 0.2]
4934
- Parent=DefaultProperties
4935
- Browser="Chrome"
4936
- Version=0.2
4937
- MinorVer=2
4938
- Beta=true
4939
- Win32=true
4940
- Frames=true
4941
- IFrames=true
4942
- Tables=true
4943
- Cookies=true
4944
- JavaApplets=true
4945
- JavaScript=true
4946
- CssVersion=3
4947
- supportsCSS=true
4948
-
4949
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
4950
- Parent=Chrome 0.2
4951
- Platform=WinXP
4952
-
4953
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
4954
- Parent=Chrome 0.2
4955
- Platform=Win2003
4956
-
4957
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
4958
- Parent=Chrome 0.2
4959
- Platform=WinVista
4960
-
4961
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.3
4962
-
4963
- [Chrome 0.3]
4964
- Parent=DefaultProperties
4965
- Browser="Chrome"
4966
- Version=0.3
4967
- MinorVer=3
4968
- Beta=true
4969
- Win32=true
4970
- Frames=true
4971
- IFrames=true
4972
- Tables=true
4973
- Cookies=true
4974
- JavaApplets=true
4975
- JavaScript=true
4976
- CssVersion=3
4977
- supportsCSS=true
4978
-
4979
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
4980
- Parent=Chrome 0.3
4981
- Platform=WinXP
4982
-
4983
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
4984
- Parent=Chrome 0.3
4985
- Platform=Win2003
4986
-
4987
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
4988
- Parent=Chrome 0.3
4989
- Platform=WinVista
4990
-
4991
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.4
4992
-
4993
- [Chrome 0.4]
4994
- Parent=DefaultProperties
4995
- Browser="Chrome"
4996
- Version=0.4
4997
- MinorVer=4
4998
- Win32=true
4999
- Frames=true
5000
- IFrames=true
5001
- Tables=true
5002
- Cookies=true
5003
- JavaApplets=true
5004
- JavaScript=true
5005
- CssVersion=3
5006
- supportsCSS=true
5007
-
5008
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
5009
- Parent=Chrome 0.4
5010
- Platform=WinXP
5011
-
5012
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
5013
- Parent=Chrome 0.4
5014
- Platform=Win2003
5015
-
5016
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
5017
- Parent=Chrome 0.4
5018
- Platform=WinVista
5019
-
5020
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.5
5021
-
5022
- [Chrome 0.5]
5023
- Parent=DefaultProperties
5024
- Browser="Chrome"
5025
- Version=0.5
5026
- MinorVer=5
5027
- Beta=true
5028
- Win32=true
5029
- Frames=true
5030
- IFrames=true
5031
- Tables=true
5032
- Cookies=true
5033
- JavaApplets=true
5034
- JavaScript=true
5035
- CssVersion=3
5036
- supportsCSS=true
5037
-
5038
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
5039
- Parent=Chrome 0.5
5040
- Platform=WinXP
5041
-
5042
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
5043
- Parent=Chrome 0.5
5044
- Platform=Win2003
5045
-
5046
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
5047
- Parent=Chrome 0.5
5048
- Platform=WinVista
5049
-
5050
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 1.0
5051
-
5052
- [Chrome 1.0]
5053
- Parent=DefaultProperties
5054
- Browser="Chrome"
5055
- Version=1.0
5056
- MajorVer=1
5057
- Win32=true
5058
- Frames=true
5059
- IFrames=true
5060
- Tables=true
5061
- Cookies=true
5062
- JavaApplets=true
5063
- JavaScript=true
5064
- CssVersion=3
5065
- supportsCSS=true
5066
-
5067
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5068
- Parent=Chrome 1.0
5069
- Platform=WinXP
5070
-
5071
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5072
- Parent=Chrome 1.0
5073
- Platform=Win2003
5074
-
5075
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5076
- Parent=Chrome 1.0
5077
- Platform=WinVista
5078
-
5079
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5080
- Parent=Chrome 1.0
5081
- Platform=Win7
5082
-
5083
- [Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
5084
- Parent=Chrome 1.0
5085
- Platform=Win7
5086
-
5087
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 2.0
5088
-
5089
- [Chrome 2.0]
5090
- Parent=DefaultProperties
5091
- Browser="Chrome"
5092
- Version=2.0
5093
- MajorVer=2
5094
- Win32=true
5095
- Frames=true
5096
- IFrames=true
5097
- Tables=true
5098
- Cookies=true
5099
- JavaApplets=true
5100
- JavaScript=true
5101
- CssVersion=3
5102
- supportsCSS=true
5103
-
5104
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5105
- Parent=Chrome 2.0
5106
- Platform=WinXP
5107
-
5108
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5109
- Parent=Chrome 2.0
5110
- Platform=Win2003
5111
-
5112
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5113
- Parent=Chrome 2.0
5114
- Platform=WinVista
5115
-
5116
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5117
- Parent=Chrome 2.0
5118
- Platform=Win7
5119
-
5120
- [Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
5121
- Parent=Chrome 2.0
5122
- Platform=Win7
5123
-
5124
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Code
5125
-
5126
- [Google Code]
5127
- Parent=DefaultProperties
5128
- Browser="Google Code"
5129
- Tables=true
5130
- Cookies=true
5131
- JavaApplets=true
5132
-
5133
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.2
5134
-
5135
- [Iron 0.2]
5136
- Parent=DefaultProperties
5137
- Browser="Iron"
5138
- Version=0.2
5139
- MinorVer=2
5140
- Win32=true
5141
- Frames=true
5142
- IFrames=true
5143
- Tables=true
5144
- Cookies=true
5145
- JavaApplets=true
5146
- JavaScript=true
5147
- CssVersion=3
5148
- supportsCSS=true
5149
-
5150
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
5151
- Parent=Iron 0.2
5152
- Platform=WinXP
5153
-
5154
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
5155
- Parent=Iron 0.2
5156
- Platform=WinVista
5157
-
5158
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
5159
- Parent=Iron 0.2
5160
- Platform=Win7
5161
-
5162
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.3
5163
-
5164
- [Iron 0.3]
5165
- Parent=DefaultProperties
5166
- Browser="Iron"
5167
- Version=0.3
5168
- MinorVer=3
5169
- Win32=true
5170
- Frames=true
5171
- IFrames=true
5172
- Tables=true
5173
- Cookies=true
5174
- JavaApplets=true
5175
- JavaScript=true
5176
- CssVersion=3
5177
- supportsCSS=true
5178
-
5179
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
5180
- Parent=Iron 0.3
5181
- Platform=WinXP
5182
-
5183
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
5184
- Parent=Iron 0.3
5185
- Platform=WinVista
5186
-
5187
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
5188
- Parent=Iron 0.3
5189
- Platform=Win7
5190
-
5191
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.4
5192
-
5193
- [Iron 0.4]
5194
- Parent=DefaultProperties
5195
- Browser="Iron"
5196
- Version=0.4
5197
- MinorVer=4
5198
- Win32=true
5199
- Frames=true
5200
- IFrames=true
5201
- Tables=true
5202
- Cookies=true
5203
- JavaApplets=true
5204
- JavaScript=true
5205
- CssVersion=3
5206
- supportsCSS=true
5207
-
5208
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
5209
- Parent=Iron 0.4
5210
- Platform=WinXP
5211
-
5212
- [Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
5213
- Parent=Iron 0.4
5214
- Platform=WinVista
5215
-
5216
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
5217
- Parent=Iron 0.4
5218
- Platform=Win7
5219
-
5220
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iPod
5221
-
5222
- [iPod]
5223
- Parent=DefaultProperties
5224
- Browser="iPod"
5225
- Platform=iPhone OSX
5226
- isMobileDevice=true
5227
-
5228
- [Mozilla/5.0 (iPod; U; *Mac OS X; *) AppleWebKit/* (*) Version/3.0 Mobile/* Safari/*]
5229
- Parent=iPod
5230
- Version=3.0
5231
- MajorVer=3
5232
- MinorVer=0
5233
- Platform=MacOSX
5234
-
5235
- [Mozilla/5.0 (iPod; U; CPU iPhone OS 2_2 like Mac OS X; en-us) AppleWebKit/* (KHTML, like Gecko) Mobile/*]
5236
- Parent=iPod
5237
-
5238
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iTunes
5239
-
5240
- [iTunes]
5241
- Parent=DefaultProperties
5242
- Browser="iTunes"
5243
- Platform=iPhone OSX
5244
-
5245
- [iTunes/* (Windows; ?)]
5246
- Parent=iTunes
5247
- Browser="iTunes"
5248
- Platform=Win32
5249
- Win32=true
5250
-
5251
- [MOT-* iTunes/* MIB/* Profile/MIDP-* Configuration/CLDC-* UP.Link/*]
5252
- Parent=iTunes
5253
-
5254
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Media Players
5255
-
5256
- [Media Players]
5257
- Parent=DefaultProperties
5258
- Browser="Media Players"
5259
- Cookies=true
5260
-
5261
- [Microsoft NetShow(TM) Player with RealVideo(R)]
5262
- Parent=Media Players
5263
- Browser="Microsoft NetShow"
5264
-
5265
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; *) AppleWebKit/* RealPlayer]
5266
- Parent=Media Players
5267
- Browser="RealPlayer"
5268
- Platform=MacOSX
5269
-
5270
- [MPlayer 0.9*]
5271
- Parent=Media Players
5272
- Browser="MPlayer"
5273
- Version=0.9
5274
- MajorVer=0
5275
- MinorVer=9
5276
-
5277
- [MPlayer 1.*]
5278
- Parent=Media Players
5279
- Browser="MPlayer"
5280
- Version=1.0
5281
- MajorVer=1
5282
- MinorVer=0
5283
-
5284
- [MPlayer HEAD CVS]
5285
- Parent=Media Players
5286
- Browser="MPlayer"
5287
-
5288
- [RealPlayer*]
5289
- Parent=Media Players
5290
- Browser="RealPlayer"
5291
-
5292
- [RMA/*]
5293
- Parent=Media Players
5294
- Browser="RMA"
5295
-
5296
- [VLC media player*]
5297
- Parent=Media Players
5298
- Browser="VLC"
5299
-
5300
- [vobsub]
5301
- Parent=Media Players
5302
- Browser="vobsub"
5303
- isBanned=true
5304
-
5305
- [WinampMPEG/*]
5306
- Parent=Media Players
5307
- Browser="WinAmp"
5308
-
5309
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Media Player
5310
-
5311
- [Windows Media Player]
5312
- Parent=DefaultProperties
5313
- Browser="Windows Media Player"
5314
- Cookies=true
5315
-
5316
- [NSPlayer/10.*]
5317
- Parent=Windows Media Player
5318
- Version=10.0
5319
- MajorVer=10
5320
- MinorVer=0
5321
-
5322
- [NSPlayer/11.* WMFSDK/11.*]
5323
- Parent=Windows Media Player
5324
- Browser="Windows Media Player"
5325
- Version=11.0
5326
- MajorVer=11
5327
- MinorVer=0
5328
-
5329
- [NSPlayer/4.*]
5330
- Parent=Windows Media Player
5331
- Browser="Windows Media Player"
5332
- Version=4.0
5333
- MajorVer=4
5334
- MinorVer=0
5335
-
5336
- [NSPlayer/7.*]
5337
- Parent=Windows Media Player
5338
- Browser="Windows Media Player"
5339
- Version=7.0
5340
- MajorVer=7
5341
- MinorVer=0
5342
-
5343
- [NSPlayer/8.*]
5344
- Parent=Windows Media Player
5345
- Browser="Windows Media Player"
5346
- Version=8.0
5347
- MajorVer=8
5348
- MinorVer=0
5349
-
5350
- [NSPlayer/9.*]
5351
- Parent=Windows Media Player
5352
- Browser="Windows Media Player"
5353
- Version=9.0
5354
- MajorVer=9
5355
- MinorVer=0
5356
-
5357
- [Windows-Media-Player/10.*]
5358
- Parent=Windows Media Player
5359
- Browser="Windows-Media-Player"
5360
- Version=10.0
5361
- MajorVer=10
5362
- MinorVer=0
5363
- Win32=true
5364
-
5365
- [Windows-Media-Player/11.*]
5366
- Parent=Windows Media Player
5367
- Version=11.0
5368
- MajorVer=11
5369
- MinorVer=0
5370
- Win32=true
5371
-
5372
- [Windows-Media-Player/7.*]
5373
- Parent=Windows Media Player
5374
- Browser="Windows Media Player"
5375
- Version=7.0
5376
- MajorVer=7
5377
- MinorVer=0
5378
- Win32=true
5379
-
5380
- [Windows-Media-Player/8.*]
5381
- Parent=Windows Media Player
5382
- Browser="Windows Media Player"
5383
- Version=8.0
5384
- MajorVer=8
5385
- MinorVer=0
5386
- Win32=true
5387
-
5388
- [Windows-Media-Player/9.*]
5389
- Parent=Windows Media Player
5390
- Version=9.0
5391
- MajorVer=9
5392
- MinorVer=0
5393
- Win32=true
5394
-
5395
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Zune
5396
-
5397
- [Zune]
5398
- Parent=DefaultProperties
5399
- Browser="Zune"
5400
- Cookies=true
5401
-
5402
- [Mozilla/4.0 (compatible; MSIE ?.0; *Zune 2.0*)*]
5403
- Parent=Zune
5404
- Version=2.0
5405
- MajorVer=2
5406
- MinorVer=0
5407
-
5408
- [Mozilla/4.0 (compatible; MSIE ?.0; *Zune 2.5*)*]
5409
- Parent=Zune
5410
- Version=2.5
5411
- MajorVer=2
5412
- MinorVer=5
5413
-
5414
- [Mozilla/4.0 (compatible; MSIE ?.0; *Zune 3.0*)*]
5415
- Parent=Zune
5416
- Version=3.0
5417
- MajorVer=3
5418
- MinorVer=0
5419
-
5420
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.0
5421
-
5422
- [QuickTime 7.0]
5423
- Parent=DefaultProperties
5424
- Browser="QuickTime"
5425
- Version=7.0
5426
- MajorVer=7
5427
- Cookies=true
5428
-
5429
- [QuickTime (qtver=7.0*;cpu=PPC;os=Mac 10.*)]
5430
- Parent=QuickTime 7.0
5431
- Platform=MacOSX
5432
-
5433
- [QuickTime (qtver=7.0*;cpu=PPC;os=Mac 9.*)]
5434
- Parent=QuickTime 7.0
5435
- Platform=MacPPC
5436
-
5437
- [QuickTime (qtver=7.0*;os=Windows 95*)]
5438
- Parent=QuickTime 7.0
5439
- Platform=Win95
5440
- Win32=true
5441
-
5442
- [QuickTime (qtver=7.0*;os=Windows 98*)]
5443
- Parent=QuickTime 7.0
5444
- Platform=Win98
5445
- Win32=true
5446
-
5447
- [QuickTime (qtver=7.0*;os=Windows Me*)]
5448
- Parent=QuickTime 7.0
5449
- Platform=WinME
5450
- Win32=true
5451
-
5452
- [QuickTime (qtver=7.0*;os=Windows NT 4.0*)]
5453
- Parent=QuickTime 7.0
5454
- Platform=WinNT
5455
- Win32=true
5456
-
5457
- [QuickTime (qtver=7.0*;os=Windows NT 5.0*)]
5458
- Parent=QuickTime 7.0
5459
- Platform=Win2000
5460
- Win32=true
5461
-
5462
- [QuickTime (qtver=7.0*;os=Windows NT 5.1*)]
5463
- Parent=QuickTime 7.0
5464
- Platform=WinXP
5465
- Win32=true
5466
-
5467
- [QuickTime (qtver=7.0*;os=Windows NT 5.2*)]
5468
- Parent=QuickTime 7.0
5469
- Platform=Win2003
5470
- Win32=true
5471
-
5472
- [QuickTime/7.0.* (qtver=7.0.*;*;os=Mac 10.*)*]
5473
- Parent=QuickTime 7.0
5474
- Platform=MacOSX
5475
-
5476
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.1
5477
-
5478
- [QuickTime 7.1]
5479
- Parent=DefaultProperties
5480
- Browser="QuickTime"
5481
- Version=7.1
5482
- MajorVer=7
5483
- MinorVer=1
5484
- Cookies=true
5485
-
5486
- [QuickTime (qtver=7.1*;cpu=PPC;os=Mac 10.*)]
5487
- Parent=QuickTime 7.1
5488
- Platform=MacOSX
5489
-
5490
- [QuickTime (qtver=7.1*;cpu=PPC;os=Mac 9.*)]
5491
- Parent=QuickTime 7.1
5492
- Platform=MacPPC
5493
-
5494
- [QuickTime (qtver=7.1*;os=Windows 98*)]
5495
- Parent=QuickTime 7.1
5496
- Platform=Win98
5497
- Win32=true
5498
-
5499
- [QuickTime (qtver=7.1*;os=Windows NT 4.0*)]
5500
- Parent=QuickTime 7.1
5501
- Platform=WinNT
5502
- Win32=true
5503
-
5504
- [QuickTime (qtver=7.1*;os=Windows NT 5.0*)]
5505
- Parent=QuickTime 7.1
5506
- Platform=Win2000
5507
- Win32=true
5508
-
5509
- [QuickTime (qtver=7.1*;os=Windows NT 5.1*)]
5510
- Parent=QuickTime 7.1
5511
- Platform=WinXP
5512
- Win32=true
5513
-
5514
- [QuickTime (qtver=7.1*;os=Windows NT 5.2*)]
5515
- Parent=QuickTime 7.1
5516
- Platform=Win2003
5517
- Win32=true
5518
-
5519
- [QuickTime/7.1.* (qtver=7.1.*;*;os=Mac 10.*)*]
5520
- Parent=QuickTime 7.1
5521
- Platform=MacOSX
5522
-
5523
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.2
5524
-
5525
- [QuickTime 7.2]
5526
- Parent=DefaultProperties
5527
- Browser="QuickTime"
5528
- Version=7.2
5529
- MajorVer=7
5530
- MinorVer=2
5531
- Platform=MacOSX
5532
- Cookies=true
5533
-
5534
- [QuickTime (qtver=7.2*;cpu=PPC;os=Mac 10.*)]
5535
- Parent=QuickTime 7.2
5536
- Platform=MacOSX
5537
-
5538
- [QuickTime (qtver=7.2*;cpu=PPC;os=Mac 9.*)]
5539
- Parent=QuickTime 7.2
5540
- Platform=MacPPC
5541
-
5542
- [QuickTime (qtver=7.2*;os=Windows 98*)]
5543
- Parent=QuickTime 7.2
5544
- Platform=Win98
5545
- Win32=true
5546
-
5547
- [QuickTime (qtver=7.2*;os=Windows NT 4.0*)]
5548
- Parent=QuickTime 7.2
5549
- Platform=WinNT
5550
- Win32=true
5551
-
5552
- [QuickTime (qtver=7.2*;os=Windows NT 5.0*)]
5553
- Parent=QuickTime 7.2
5554
- Platform=Win2000
5555
- Win32=true
5556
-
5557
- [QuickTime (qtver=7.2*;os=Windows NT 5.1*)]
5558
- Parent=QuickTime 7.2
5559
- Platform=WinXP
5560
- Win32=true
5561
-
5562
- [QuickTime (qtver=7.2*;os=Windows NT 5.2*)]
5563
- Parent=QuickTime 7.2
5564
- Platform=Win2003
5565
- Win32=true
5566
-
5567
- [QuickTime/7.2.* (qtver=7.2.*;*;os=Mac 10.*)*]
5568
- Parent=QuickTime 7.2
5569
- Platform=MacOSX
5570
-
5571
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.3
5572
-
5573
- [QuickTime 7.3]
5574
- Parent=DefaultProperties
5575
- Browser="QuickTime"
5576
- Version=7.3
5577
- MajorVer=7
5578
- MinorVer=3
5579
- Platform=MacOSX
5580
- Cookies=true
5581
-
5582
- [QuickTime (qtver=7.3*;cpu=PPC;os=Mac 10.*)]
5583
- Parent=QuickTime 7.3
5584
- Platform=MacOSX
5585
-
5586
- [QuickTime (qtver=7.3*;cpu=PPC;os=Mac 9.*)]
5587
- Parent=QuickTime 7.3
5588
- Platform=MacPPC
5589
-
5590
- [QuickTime (qtver=7.3*;os=Windows 98*)]
5591
- Parent=QuickTime 7.3
5592
- Platform=Win98
5593
- Win32=true
5594
-
5595
- [QuickTime (qtver=7.3*;os=Windows NT 4.0*)]
5596
- Parent=QuickTime 7.3
5597
- Platform=WinNT
5598
- Win32=true
5599
-
5600
- [QuickTime (qtver=7.3*;os=Windows NT 5.0*)]
5601
- Parent=QuickTime 7.3
5602
- Platform=Win2000
5603
- Win32=true
5604
-
5605
- [QuickTime (qtver=7.3*;os=Windows NT 5.1*)]
5606
- Parent=QuickTime 7.3
5607
- Platform=WinXP
5608
- Win32=true
5609
-
5610
- [QuickTime (qtver=7.3*;os=Windows NT 5.2*)]
5611
- Parent=QuickTime 7.3
5612
- Platform=Win2003
5613
- Win32=true
5614
-
5615
- [QuickTime/7.3.* (qtver=7.3.*;*;os=Mac 10.*)*]
5616
- Parent=QuickTime 7.3
5617
- Platform=MacOSX
5618
-
5619
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.4
5620
-
5621
- [QuickTime 7.4]
5622
- Parent=DefaultProperties
5623
- Browser="QuickTime"
5624
- Version=7.4
5625
- MajorVer=7
5626
- MinorVer=4
5627
- Platform=MacOSX
5628
- Cookies=true
5629
-
5630
- [QuickTime (qtver=7.4*;cpu=PPC;os=Mac 10.*)]
5631
- Parent=QuickTime 7.4
5632
- Platform=MacOSX
5633
-
5634
- [QuickTime (qtver=7.4*;cpu=PPC;os=Mac 9.*)]
5635
- Parent=QuickTime 7.4
5636
- Platform=MacPPC
5637
-
5638
- [QuickTime (qtver=7.4*;os=Windows 98*)]
5639
- Parent=QuickTime 7.4
5640
- Platform=Win98
5641
- Win32=true
5642
-
5643
- [QuickTime (qtver=7.4*;os=Windows NT 4.0*)]
5644
- Parent=QuickTime 7.4
5645
- Platform=WinNT
5646
- Win32=true
5647
-
5648
- [QuickTime (qtver=7.4*;os=Windows NT 5.0*)]
5649
- Parent=QuickTime 7.4
5650
- Platform=Win2000
5651
- Win32=true
5652
-
5653
- [QuickTime (qtver=7.4*;os=Windows NT 5.1*)]
5654
- Parent=QuickTime 7.4
5655
- Platform=WinXP
5656
- Win32=true
5657
-
5658
- [QuickTime (qtver=7.4*;os=Windows NT 5.2*)]
5659
- Parent=QuickTime 7.4
5660
- Platform=Win2003
5661
- Win32=true
5662
-
5663
- [QuickTime/7.4.* (qtver=7.4.*;*;os=Mac 10.*)*]
5664
- Parent=QuickTime 7.4
5665
- Platform=MacOSX
5666
-
5667
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Android
5668
-
5669
- [Android]
5670
- Parent=DefaultProperties
5671
- Browser="Android"
5672
- Frames=true
5673
- Tables=true
5674
- Cookies=true
5675
- JavaScript=true
5676
- isMobileDevice=true
5677
-
5678
- [Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Safari/*]
5679
- Parent=Android
5680
- Browser="Android"
5681
- Platform=Linux
5682
- isMobileDevice=true
5683
-
5684
- [Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Version/3.0.* Mobile Safari/*]
5685
- Parent=Android
5686
- Browser="Android"
5687
- Platform=Linux
5688
- isMobileDevice=true
5689
-
5690
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BlackBerry
5691
-
5692
- [BlackBerry]
5693
- Parent=DefaultProperties
5694
- Browser="BlackBerry"
5695
- Frames=true
5696
- Tables=true
5697
- Cookies=true
5698
- JavaScript=true
5699
- isMobileDevice=true
5700
-
5701
- [*BlackBerry*]
5702
- Parent=BlackBerry
5703
-
5704
- [*BlackBerrySimulator/*]
5705
- Parent=BlackBerry
5706
-
5707
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Handspring Blazer
5708
-
5709
- [Blazer]
5710
- Parent=DefaultProperties
5711
- Browser="Handspring Blazer"
5712
- Platform=Palm
5713
- Frames=true
5714
- Tables=true
5715
- Cookies=true
5716
- isMobileDevice=true
5717
-
5718
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 95; PalmSource; Blazer 3.0) 16;160x160]
5719
- Parent=Blazer
5720
- Version=3.0
5721
- MajorVer=3
5722
- MinorVer=0
5723
-
5724
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.0) 16;320x448]
5725
- Parent=Blazer
5726
- Version=4.0
5727
- MajorVer=4
5728
- MinorVer=0
5729
-
5730
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.1) 16;320x320]
5731
- Parent=Blazer
5732
- Version=4.1
5733
- MajorVer=4
5734
- MinorVer=1
5735
-
5736
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.2) 16;320x320]
5737
- Parent=Blazer
5738
- Version=4.2
5739
- MajorVer=4
5740
- MinorVer=2
5741
-
5742
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.4) 16;320x320]
5743
- Parent=Blazer
5744
- Version=4.4
5745
- MajorVer=4
5746
- MinorVer=4
5747
-
5748
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.5) 16;320x320]
5749
- Parent=Blazer
5750
- Version=4.5
5751
- MajorVer=4
5752
- MinorVer=5
5753
-
5754
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DoCoMo
5755
-
5756
- [DoCoMo]
5757
- Parent=DefaultProperties
5758
- Browser="DoCoMo"
5759
- Frames=true
5760
- Tables=true
5761
- Cookies=true
5762
- JavaScript=true
5763
- isMobileDevice=true
5764
-
5765
- [DoCoMo/1.0*]
5766
- Parent=DoCoMo
5767
- Version=1.0
5768
- MajorVer=1
5769
- MinorVer=0
5770
- Platform=WAP
5771
-
5772
- [DoCoMo/2.0*]
5773
- Parent=DoCoMo
5774
- Version=2.0
5775
- MajorVer=2
5776
- MinorVer=0
5777
- Platform=WAP
5778
-
5779
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile
5780
-
5781
- [IEMobile]
5782
- Parent=DefaultProperties
5783
- Browser="IEMobile"
5784
- Platform=WinCE
5785
- Win32=true
5786
- Frames=true
5787
- IFrames=true
5788
- Tables=true
5789
- Cookies=true
5790
- VBScript=true
5791
- JavaScript=true
5792
- ActiveXControls=true
5793
- isMobileDevice=true
5794
- CssVersion=2
5795
- supportsCSS=true
5796
-
5797
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.*)*]
5798
- Parent=IEMobile
5799
- Version=6.0
5800
- MajorVer=6
5801
- MinorVer=0
5802
-
5803
- [Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.*)*]
5804
- Parent=IEMobile
5805
- Version=7.0
5806
- MajorVer=7
5807
- MinorVer=0
5808
-
5809
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iPhone
5810
-
5811
- [iPhone]
5812
- Parent=DefaultProperties
5813
- Browser="iPhone"
5814
- Platform=iPhone OSX
5815
- Frames=true
5816
- IFrames=true
5817
- Tables=true
5818
- Cookies=true
5819
- BackgroundSounds=true
5820
- JavaApplets=true
5821
- JavaScript=true
5822
- isMobileDevice=true
5823
- CssVersion=3
5824
- supportsCSS=true
5825
-
5826
- [Mozilla/4.0 (iPhone; *)]
5827
- Parent=iPhone
5828
-
5829
- [Mozilla/4.0 (iPhone; U; CPU like Mac OS X; *)]
5830
- Parent=iPhone
5831
-
5832
- [Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
5833
- Parent=iPhone
5834
- Browser="iPhone Simulator"
5835
- Version=3.1
5836
- MajorVer=3
5837
- MinorVer=1
5838
-
5839
- [Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_0_1 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
5840
- Parent=iPhone
5841
- Browser="iPhone Simulator"
5842
- Version=3.1
5843
- MajorVer=3
5844
- MinorVer=1
5845
-
5846
- [Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_1 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
5847
- Parent=iPhone
5848
- Browser="iPhone Simulator"
5849
- Version=3.1
5850
- MajorVer=3
5851
- MinorVer=1
5852
-
5853
- [Mozilla/5.0 (iPhone)]
5854
- Parent=iPhone
5855
-
5856
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)]
5857
- Parent=iPhone
5858
- Version=3.1
5859
- MajorVer=3
5860
- MinorVer=1
5861
-
5862
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
5863
- Parent=iPhone
5864
- Version=3.1
5865
- MajorVer=3
5866
- MinorVer=1
5867
-
5868
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_0* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
5869
- Parent=iPhone
5870
- Version=3.1
5871
- MajorVer=3
5872
- MinorVer=1
5873
-
5874
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_0_2 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)]
5875
- Parent=iPhone
5876
-
5877
- [Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_1 like Mac OS X; *)*]
5878
- Parent=iPhone
5879
-
5880
- [Mozilla/5.0 (iPhone; U; CPU like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.0 Mobile/* Safari/*]
5881
- Parent=iPhone
5882
- Version=3.0
5883
- MajorVer=3
5884
- MinorVer=0
5885
-
5886
- [Mozilla/5.0 (iPod; U; *Mac OS X; *) AppleWebKit/* (*) Version/* Mobile/*]
5887
- Parent=iPhone
5888
- Browser="iTouch"
5889
-
5890
- [Mozilla/5.0 (iPod; U; CPU iPhone OS 2_2* like Mac OS X; *)*]
5891
- Parent=iPhone
5892
- Version=2.2
5893
- MajorVer=2
5894
- MinorVer=2
5895
-
5896
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; KDDI
5897
-
5898
- [KDDI]
5899
- Parent=DefaultProperties
5900
- Browser="KDDI"
5901
- Frames=true
5902
- Tables=true
5903
- Cookies=true
5904
- BackgroundSounds=true
5905
- VBScript=true
5906
- JavaScript=true
5907
- ActiveXControls=true
5908
- isMobileDevice=true
5909
- CssVersion=1
5910
- supportsCSS=true
5911
-
5912
- [KDDI-* UP.Browser/* (GUI) MMP/*]
5913
- Parent=KDDI
5914
-
5915
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Motorola Internet Browser
5916
-
5917
- [Motorola Internet Browser]
5918
- Parent=DefaultProperties
5919
- Browser="Motorola Internet Browser"
5920
- Frames=true
5921
- Tables=true
5922
- Cookies=true
5923
- isMobileDevice=true
5924
-
5925
- [MOT-*/*]
5926
- Parent=Motorola Internet Browser
5927
-
5928
- [MOT-1*/* UP.Browser/*]
5929
- Parent=Motorola Internet Browser
5930
-
5931
- [MOT-8700_/* UP.Browser/*]
5932
- Parent=Motorola Internet Browser
5933
-
5934
- [MOT-A-0A/* UP.Browser/*]
5935
- Parent=Motorola Internet Browser
5936
-
5937
- [MOT-A-2B/* UP.Browser/*]
5938
- Parent=Motorola Internet Browser
5939
-
5940
- [MOT-A-88/* UP.Browser/*]
5941
- Parent=Motorola Internet Browser
5942
-
5943
- [MOT-C???/* MIB/*]
5944
- Parent=Motorola Internet Browser
5945
-
5946
- [MOT-GATW_/* UP.Browser/*]
5947
- Parent=Motorola Internet Browser
5948
-
5949
- [MOT-L6/* MIB/*]
5950
- Parent=Motorola Internet Browser
5951
-
5952
- [MOT-L7/* MIB/*]
5953
- Parent=Motorola Internet Browser
5954
-
5955
- [MOT-M*/* UP.Browser/*]
5956
- Parent=Motorola Internet Browser
5957
-
5958
- [MOT-MP*/* Mozilla/* (compatible; MSIE *; Windows CE; *)]
5959
- Parent=Motorola Internet Browser
5960
- Win32=true
5961
-
5962
- [MOT-MP*/* Mozilla/4.0 (compatible; MSIE *; Windows CE; *)]
5963
- Parent=Motorola Internet Browser
5964
- Win32=true
5965
-
5966
- [MOT-SAP4_/* UP.Browser/*]
5967
- Parent=Motorola Internet Browser
5968
-
5969
- [MOT-T*/*]
5970
- Parent=Motorola Internet Browser
5971
-
5972
- [MOT-T7*/* MIB/*]
5973
- Parent=Motorola Internet Browser
5974
-
5975
- [MOT-T721*]
5976
- Parent=Motorola Internet Browser
5977
-
5978
- [MOT-TA02/* MIB/*]
5979
- Parent=Motorola Internet Browser
5980
-
5981
- [MOT-V*/*]
5982
- Parent=Motorola Internet Browser
5983
-
5984
- [MOT-V*/* MIB/*]
5985
- Parent=Motorola Internet Browser
5986
-
5987
- [MOT-V*/* UP.Browser/*]
5988
- Parent=Motorola Internet Browser
5989
-
5990
- [MOT-V3/* MIB/*]
5991
- Parent=Motorola Internet Browser
5992
-
5993
- [MOT-V4*/* MIB/*]
5994
- Parent=Motorola Internet Browser
5995
-
5996
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN Mobile Proxy
5997
-
5998
- [MSN Mobile Proxy]
5999
- Parent=DefaultProperties
6000
- Browser="MSN Mobile Proxy"
6001
- Win32=true
6002
- Frames=true
6003
- Tables=true
6004
- Cookies=true
6005
- JavaScript=true
6006
- ActiveXControls=true
6007
- isMobileDevice=true
6008
-
6009
- [Mozilla/* (compatible; MSIE *; Windows*; MSN Mobile Proxy)]
6010
- Parent=MSN Mobile Proxy
6011
-
6012
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetFront
6013
-
6014
- [NetFront]
6015
- Parent=DefaultProperties
6016
- Browser="NetFront"
6017
- Frames=true
6018
- Tables=true
6019
- Cookies=true
6020
- JavaScript=true
6021
- isMobileDevice=true
6022
-
6023
- [*NetFront/*]
6024
- Parent=NetFront
6025
-
6026
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia
6027
-
6028
- [Nokia]
6029
- Parent=DefaultProperties
6030
- Browser="Nokia"
6031
- Tables=true
6032
- Cookies=true
6033
- isMobileDevice=true
6034
-
6035
- [*Nokia*/*]
6036
- Parent=Nokia
6037
-
6038
- [Mozilla/* (SymbianOS/*; ?; *) AppleWebKit/* (KHTML, like Gecko) Safari/*]
6039
- Parent=Nokia
6040
- Platform=SymbianOS
6041
-
6042
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Openwave Mobile Browser
6043
-
6044
- [Openwave Mobile Browser]
6045
- Parent=DefaultProperties
6046
- Browser="Openwave Mobile Browser"
6047
- Alpha=true
6048
- Win32=true
6049
- Win64=true
6050
- Frames=true
6051
- Tables=true
6052
- Cookies=true
6053
- isMobileDevice=true
6054
-
6055
- [*UP.Browser/*]
6056
- Parent=Openwave Mobile Browser
6057
-
6058
- [*UP.Link/*]
6059
- Parent=Openwave Mobile Browser
6060
-
6061
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini
6062
-
6063
- [Opera Mini]
6064
- Parent=DefaultProperties
6065
- Browser="Opera Mini"
6066
- Frames=true
6067
- IFrames=true
6068
- Tables=true
6069
- Cookies=true
6070
- JavaScript=true
6071
- isMobileDevice=true
6072
-
6073
- [Opera/* (J2ME/MIDP; Opera Mini/1.0*)*]
6074
- Parent=Opera Mini
6075
- Version=1.0
6076
- MajorVer=1
6077
- MinorVer=0
6078
-
6079
- [Opera/* (J2ME/MIDP; Opera Mini/1.1*)*]
6080
- Parent=Opera Mini
6081
- Version=1.1
6082
- MajorVer=1
6083
- MinorVer=1
6084
-
6085
- [Opera/* (J2ME/MIDP; Opera Mini/1.2*)*]
6086
- Parent=Opera Mini
6087
- Version=1.2
6088
- MajorVer=1
6089
- MinorVer=2
6090
-
6091
- [Opera/* (J2ME/MIDP; Opera Mini/2.0*)*]
6092
- Parent=Opera Mini
6093
- Version=2.0
6094
- MajorVer=2
6095
- MinorVer=0
6096
-
6097
- [Opera/* (J2ME/MIDP; Opera Mini/3.0*)*]
6098
- Parent=Opera Mini
6099
- Version=3.0
6100
- MajorVer=3
6101
- MinorVer=0
6102
-
6103
- [Opera/* (J2ME/MIDP; Opera Mini/3.1*)*]
6104
- Parent=Opera Mini
6105
- Version=3.1
6106
- MajorVer=3
6107
- MinorVer=1
6108
-
6109
- [Opera/* (J2ME/MIDP; Opera Mini/4.0*)*]
6110
- Parent=Opera Mini
6111
- Version=4.0
6112
- MajorVer=4
6113
- MinorVer=0
6114
-
6115
- [Opera/* (J2ME/MIDP; Opera Mini/4.1*)*]
6116
- Parent=Opera Mini
6117
- Version=4.1
6118
- MajorVer=4
6119
- MinorVer=1
6120
-
6121
- [Opera/* (J2ME/MIDP; Opera Mini/4.2*)*]
6122
- Parent=Opera Mini
6123
- Version=4.2
6124
- MajorVer=4
6125
- MinorVer=2
6126
-
6127
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile
6128
-
6129
- [Opera Mobile]
6130
- Parent=DefaultProperties
6131
- Browser="Opera Mobi"
6132
- Frames=true
6133
- Tables=true
6134
- Cookies=true
6135
- isMobileDevice=true
6136
-
6137
- [Opera/9.5 (Microsoft Windows; PPC; *Opera Mobile/*)]
6138
- Parent=Opera Mobile
6139
- Version=9.5
6140
- MajorVer=9
6141
- MinorVer=5
6142
-
6143
- [Opera/9.5 (Microsoft Windows; PPC; Opera Mobi/*)]
6144
- Parent=Opera Mobile
6145
- Version=9.5
6146
- MajorVer=9
6147
- MinorVer=5
6148
-
6149
- [Opera/9.51 Beta (Microsoft Windows; PPC; Opera Mobi/*)]
6150
- Parent=Opera Mobile
6151
- Version=9.51
6152
- MajorVer=9
6153
- MinorVer=51
6154
- Beta=true
6155
-
6156
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playstation
6157
-
6158
- [Playstation]
6159
- Parent=DefaultProperties
6160
- Browser="Playstation"
6161
- Platform=WAP
6162
- Frames=true
6163
- Tables=true
6164
- Cookies=true
6165
- isMobileDevice=true
6166
-
6167
- [Mozilla/* (PLAYSTATION *; *)]
6168
- Parent=Playstation
6169
- Browser="PlayStation 3"
6170
- Frames=false
6171
-
6172
- [Mozilla/* (PSP (PlayStation Portable); *)]
6173
- Parent=Playstation
6174
-
6175
- [Sony PS2 (Linux)]
6176
- Parent=Playstation
6177
- Browser="Sony PS2"
6178
- Platform=Linux
6179
-
6180
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Pocket PC
6181
-
6182
- [Pocket PC]
6183
- Parent=DefaultProperties
6184
- Browser="Pocket PC"
6185
- Platform=WinCE
6186
- Win32=true
6187
- Frames=true
6188
- Tables=true
6189
- Cookies=true
6190
- JavaScript=true
6191
- ActiveXControls=true
6192
- isMobileDevice=true
6193
- CssVersion=1
6194
- supportsCSS=true
6195
-
6196
- [*(compatible; MSIE *.*; Windows CE; PPC; *)]
6197
- Parent=Pocket PC
6198
-
6199
- [HTC-*/* Mozilla/* (compatible; MSIE *.*; Windows CE*)*]
6200
- Parent=Pocket PC
6201
- Win32=true
6202
-
6203
- [Mozilla/* (compatible; MSPIE *.*; *Windows CE*)*]
6204
- Parent=Pocket PC
6205
- Win32=true
6206
-
6207
- [T-Mobile* Mozilla/* (compatible; MSIE *.*; Windows CE; *)]
6208
- Parent=Pocket PC
6209
-
6210
- [Vodafone* Mozilla/* (compatible; MSIE *.*; Windows CE; *)*]
6211
- Parent=Pocket PC
6212
-
6213
- [Windows CE (Pocket PC) - Version *.*]
6214
- Parent=Pocket PC
6215
- Win32=true
6216
-
6217
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEMC Browser
6218
-
6219
- [SEMC Browser]
6220
- Parent=DefaultProperties
6221
- Browser="SEMC Browser"
6222
- Platform=JAVA
6223
- Tables=true
6224
- isMobileDevice=true
6225
- CssVersion=1
6226
- supportsCSS=true
6227
-
6228
- [*SEMC-Browser/*]
6229
- Parent=SEMC Browser
6230
-
6231
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SonyEricsson
6232
-
6233
- [SonyEricsson]
6234
- Parent=DefaultProperties
6235
- Browser="SonyEricsson"
6236
- Frames=true
6237
- Tables=true
6238
- Cookies=true
6239
- JavaScript=true
6240
- isMobileDevice=true
6241
- CssVersion=1
6242
- supportsCSS=true
6243
-
6244
- [*Ericsson*]
6245
- Parent=SonyEricsson
6246
-
6247
- [*SonyEricsson*]
6248
- Parent=SonyEricsson
6249
-
6250
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netbox
6251
-
6252
- [Netbox]
6253
- Parent=DefaultProperties
6254
- Browser="Netbox"
6255
- Frames=true
6256
- Tables=true
6257
- Cookies=true
6258
- JavaScript=true
6259
- CssVersion=1
6260
- supportsCSS=true
6261
-
6262
- [Mozilla/3.01 (compatible; Netbox/*; Linux*)]
6263
- Parent=Netbox
6264
- Browser="Netbox"
6265
- Platform=Linux
6266
-
6267
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PowerTV
6268
-
6269
- [PowerTV]
6270
- Parent=DefaultProperties
6271
- Browser="PowerTV"
6272
- Platform=PowerTV
6273
- Frames=true
6274
- Tables=true
6275
- Cookies=true
6276
- JavaScript=true
6277
-
6278
- [Mozilla/4.0 PowerTV/1.5 (Compatible; Spyglass DM 3.2.1, EXPLORER)]
6279
- Parent=PowerTV
6280
- Version=1.5
6281
- MajorVer=1
6282
- MinorVer=5
6283
-
6284
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WebTV/MSNTV
6285
-
6286
- [WebTV]
6287
- Parent=DefaultProperties
6288
- Browser="WebTV/MSNTV"
6289
- Platform=WebTV
6290
- Frames=true
6291
- Tables=true
6292
- Cookies=true
6293
- JavaScript=true
6294
-
6295
- [Mozilla/3.0 WebTV/1.*(compatible; MSIE 2.0)]
6296
- Parent=WebTV
6297
- Version=1.0
6298
- MajorVer=1
6299
- MinorVer=0
6300
-
6301
- [Mozilla/4.0 WebTV/2.0*(compatible; MSIE 3.0)]
6302
- Parent=WebTV
6303
- Version=2.0
6304
- MajorVer=2
6305
- MinorVer=0
6306
-
6307
- [Mozilla/4.0 WebTV/2.1*(compatible; MSIE 3.0)]
6308
- Parent=WebTV
6309
- Version=2.1
6310
- MajorVer=2
6311
- MinorVer=1
6312
-
6313
- [Mozilla/4.0 WebTV/2.2*(compatible; MSIE 3.0)]
6314
- Parent=WebTV
6315
- Version=2.2
6316
- MajorVer=2
6317
- MinorVer=2
6318
-
6319
- [Mozilla/4.0 WebTV/2.3*(compatible; MSIE 3.0)]
6320
- Parent=WebTV
6321
- Version=2.3
6322
- MajorVer=2
6323
- MinorVer=3
6324
-
6325
- [Mozilla/4.0 WebTV/2.4*(compatible; MSIE 3.0)]
6326
- Parent=WebTV
6327
- Version=2.4
6328
- MajorVer=2
6329
- MinorVer=4
6330
-
6331
- [Mozilla/4.0 WebTV/2.5*(compatible; MSIE 4.0)]
6332
- Parent=WebTV
6333
- Version=2.5
6334
- MajorVer=2
6335
- MinorVer=5
6336
- CssVersion=1
6337
- supportsCSS=true
6338
-
6339
- [Mozilla/4.0 WebTV/2.6*(compatible; MSIE 4.0)]
6340
- Parent=WebTV
6341
- Version=2.6
6342
- MajorVer=2
6343
- MinorVer=6
6344
- CssVersion=1
6345
- supportsCSS=true
6346
-
6347
- [Mozilla/4.0 WebTV/2.7*(compatible; MSIE 4.0)]
6348
- Parent=WebTV
6349
- Version=2.7
6350
- MajorVer=2
6351
- MinorVer=7
6352
- CssVersion=1
6353
- supportsCSS=true
6354
-
6355
- [Mozilla/4.0 WebTV/2.8*(compatible; MSIE 4.0)]
6356
- Parent=WebTV
6357
- Version=2.8
6358
- MajorVer=2
6359
- MinorVer=8
6360
- JavaApplets=true
6361
- CssVersion=1
6362
- supportsCSS=true
6363
-
6364
- [Mozilla/4.0 WebTV/2.9*(compatible; MSIE 4.0)]
6365
- Parent=WebTV
6366
- Version=2.9
6367
- MajorVer=2
6368
- MinorVer=9
6369
- JavaApplets=true
6370
- CssVersion=1
6371
- supportsCSS=true
6372
-
6373
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Amaya
6374
-
6375
- [Amaya]
6376
- Parent=DefaultProperties
6377
- Browser="Amaya"
6378
- Tables=true
6379
- Cookies=true
6380
-
6381
- [amaya/7.*]
6382
- Parent=Amaya
6383
- Version=7.0
6384
- MajorVer=7
6385
- MinorVer=0
6386
-
6387
- [amaya/8.0*]
6388
- Parent=Amaya
6389
- Version=8.0
6390
- MajorVer=8
6391
- MinorVer=0
6392
- CssVersion=2
6393
- supportsCSS=true
6394
-
6395
- [amaya/8.1*]
6396
- Parent=Amaya
6397
- Version=8.1
6398
- MajorVer=8
6399
- MinorVer=1
6400
- CssVersion=2
6401
- supportsCSS=true
6402
-
6403
- [amaya/8.2*]
6404
- Parent=Amaya
6405
- Version=8.2
6406
- MajorVer=8
6407
- MinorVer=2
6408
- CssVersion=2
6409
- supportsCSS=true
6410
-
6411
- [amaya/8.3*]
6412
- Parent=Amaya
6413
- Version=8.3
6414
- MajorVer=8
6415
- MinorVer=3
6416
- CssVersion=2
6417
- supportsCSS=true
6418
-
6419
- [amaya/8.4*]
6420
- Parent=Amaya
6421
- Version=8.4
6422
- MajorVer=8
6423
- MinorVer=4
6424
- CssVersion=2
6425
- supportsCSS=true
6426
-
6427
- [amaya/8.5*]
6428
- Parent=Amaya
6429
- Version=8.5
6430
- MajorVer=8
6431
- MinorVer=5
6432
- CssVersion=2
6433
- supportsCSS=true
6434
-
6435
- [amaya/8.6*]
6436
- Parent=Amaya
6437
- Version=8.6
6438
- MajorVer=8
6439
- MinorVer=6
6440
- CssVersion=2
6441
- supportsCSS=true
6442
-
6443
- [amaya/8.7*]
6444
- Parent=Amaya
6445
- Version=8.7
6446
- MajorVer=8
6447
- MinorVer=7
6448
- CssVersion=2
6449
- supportsCSS=true
6450
-
6451
- [amaya/8.8*]
6452
- Parent=Amaya
6453
- Version=8.8
6454
- MajorVer=8
6455
- MinorVer=8
6456
- CssVersion=2
6457
- supportsCSS=true
6458
-
6459
- [amaya/8.9*]
6460
- Parent=Amaya
6461
- Version=8.9
6462
- MajorVer=8
6463
- MinorVer=9
6464
- CssVersion=2
6465
- supportsCSS=true
6466
-
6467
- [amaya/9.0*]
6468
- Parent=Amaya
6469
- Version=9.0
6470
- MajorVer=8
6471
- MinorVer=0
6472
- CssVersion=2
6473
- supportsCSS=true
6474
-
6475
- [amaya/9.1*]
6476
- Parent=Amaya
6477
- Version=9.1
6478
- MajorVer=9
6479
- MinorVer=1
6480
- CssVersion=2
6481
- supportsCSS=true
6482
-
6483
- [amaya/9.2*]
6484
- Parent=Amaya
6485
- Version=9.2
6486
- MajorVer=9
6487
- MinorVer=2
6488
- CssVersion=2
6489
- supportsCSS=true
6490
-
6491
- [amaya/9.3*]
6492
- Parent=Amaya
6493
- Version=9.3
6494
- MajorVer=9
6495
- MinorVer=3
6496
-
6497
- [amaya/9.4*]
6498
- Parent=Amaya
6499
- Version=9.4
6500
- MajorVer=9
6501
- MinorVer=4
6502
-
6503
- [amaya/9.5*]
6504
- Parent=Amaya
6505
- Version=9.5
6506
- MajorVer=9
6507
- MinorVer=5
6508
-
6509
- [Emacs-w3m/*]
6510
- Parent=Emacs/W3
6511
-
6512
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Links
6513
-
6514
- [Links]
6515
- Parent=DefaultProperties
6516
- Browser="Links"
6517
- Frames=true
6518
- Tables=true
6519
-
6520
- [Links (0.9*; CYGWIN_NT-5.1*)]
6521
- Parent=Links
6522
- Browser="Links"
6523
- Version=0.9
6524
- MajorVer=0
6525
- MinorVer=9
6526
- Platform=WinXP
6527
-
6528
- [Links (0.9*; Darwin*)]
6529
- Parent=Links
6530
- Version=0.9
6531
- MajorVer=0
6532
- MinorVer=9
6533
- Platform=MacPPC
6534
-
6535
- [Links (0.9*; FreeBSD*)]
6536
- Parent=Links
6537
- Browser="Links"
6538
- Version=0.9
6539
- MajorVer=0
6540
- MinorVer=9
6541
- Platform=FreeBSD
6542
-
6543
- [Links (0.9*; Linux*)]
6544
- Parent=Links
6545
- Browser="Links"
6546
- Version=0.9
6547
- MajorVer=0
6548
- MinorVer=9
6549
- Platform=Linux
6550
-
6551
- [Links (0.9*; OS/2*)]
6552
- Parent=Links
6553
- Browser="Links"
6554
- Version=0.9
6555
- MajorVer=0
6556
- MinorVer=9
6557
- Platform=OS/2
6558
-
6559
- [Links (0.9*; Unix*)]
6560
- Parent=Links
6561
- Browser="Links"
6562
- Version=0.9
6563
- MajorVer=0
6564
- MinorVer=9
6565
- Platform=Unix
6566
-
6567
- [Links (0.9*; Win32*)]
6568
- Parent=Links
6569
- Browser="Links"
6570
- Version=0.9
6571
- MajorVer=0
6572
- MinorVer=9
6573
- Platform=Win32
6574
- Win32=true
6575
-
6576
- [Links (1.0*; CYGWIN_NT-5.1*)]
6577
- Parent=Links
6578
- Browser="Links"
6579
- Version=1.0
6580
- MajorVer=1
6581
- MinorVer=0
6582
- Platform=WinXP
6583
-
6584
- [Links (1.0*; FreeBSD*)]
6585
- Parent=Links
6586
- Browser="Links"
6587
- Version=1.0
6588
- MajorVer=1
6589
- MinorVer=0
6590
- Platform=FreeBSD
6591
-
6592
- [Links (1.0*; Linux*)]
6593
- Parent=Links
6594
- Browser="Links"
6595
- Version=1.0
6596
- MajorVer=1
6597
- MinorVer=0
6598
- Platform=Linux
6599
-
6600
- [Links (1.0*; OS/2*)]
6601
- Parent=Links
6602
- Browser="Links"
6603
- Version=1.0
6604
- MajorVer=1
6605
- MinorVer=0
6606
- Platform=OS/2
6607
-
6608
- [Links (1.0*; Unix*)]
6609
- Parent=Links
6610
- Browser="Links"
6611
- Version=1.0
6612
- MajorVer=1
6613
- MinorVer=0
6614
- Platform=Unix
6615
-
6616
- [Links (1.0*; Win32*)]
6617
- Parent=Links
6618
- Browser="Links"
6619
- Version=1.0
6620
- MajorVer=1
6621
- MinorVer=0
6622
- Platform=Win32
6623
- Win32=true
6624
-
6625
- [Links (2.0*; Linux*)]
6626
- Parent=Links
6627
- Browser="Links"
6628
- Version=2.0
6629
- MajorVer=2
6630
- MinorVer=0
6631
- Platform=Linux
6632
-
6633
- [Links (2.1*; FreeBSD*)]
6634
- Parent=Links
6635
- Browser="Links"
6636
- Version=2.1
6637
- MajorVer=2
6638
- MinorVer=1
6639
- Platform=FreeBSD
6640
-
6641
- [Links (2.1*; Linux *)]
6642
- Parent=Links
6643
- Browser="Links"
6644
- Version=2.1
6645
- MajorVer=2
6646
- MinorVer=1
6647
- Platform=Linux
6648
-
6649
- [Links (2.1*; OpenBSD*)]
6650
- Parent=Links
6651
- Browser="Links"
6652
- Version=2.1
6653
- MajorVer=2
6654
- MinorVer=1
6655
- Platform=OpenBSD
6656
-
6657
- [Links (2.2*; FreeBSD*)]
6658
- Parent=Links
6659
- Version=2.2
6660
- MajorVer=2
6661
- MinorVer=2
6662
- Platform=FreeBSD
6663
-
6664
- [Links (2.2*; Linux *)]
6665
- Parent=Links
6666
- Version=2.2
6667
- MajorVer=2
6668
- MinorVer=2
6669
- Platform=Linux
6670
-
6671
- [Links (2.2*; OpenBSD*)]
6672
- Parent=Links
6673
- Version=2.2
6674
- MajorVer=2
6675
- MinorVer=2
6676
- Platform=OpenBSD
6677
-
6678
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lynx
6679
-
6680
- [Lynx]
6681
- Parent=DefaultProperties
6682
- Browser="Lynx"
6683
- Frames=true
6684
- Tables=true
6685
-
6686
- [Lynx *]
6687
- Parent=Lynx
6688
- Browser="Lynx"
6689
-
6690
- [Lynx/2.3*]
6691
- Parent=Lynx
6692
- Browser="Lynx"
6693
- Version=2.3
6694
- MajorVer=2
6695
- MinorVer=3
6696
-
6697
- [Lynx/2.4*]
6698
- Parent=Lynx
6699
- Browser="Lynx"
6700
- Version=2.4
6701
- MajorVer=2
6702
- MinorVer=4
6703
-
6704
- [Lynx/2.5*]
6705
- Parent=Lynx
6706
- Browser="Lynx"
6707
- Version=2.5
6708
- MajorVer=2
6709
- MinorVer=5
6710
-
6711
- [Lynx/2.6*]
6712
- Parent=Lynx
6713
- Browser="Lynx"
6714
- Version=2.6
6715
- MajorVer=2
6716
- MinorVer=6
6717
-
6718
- [Lynx/2.7*]
6719
- Parent=Lynx
6720
- Browser="Lynx"
6721
- Version=2.7
6722
- MajorVer=2
6723
- MinorVer=7
6724
-
6725
- [Lynx/2.8*]
6726
- Parent=Lynx
6727
- Browser="Lynx"
6728
- Version=2.8
6729
- MajorVer=2
6730
- MinorVer=8
6731
-
6732
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NCSA Mosaic
6733
-
6734
- [Mosaic]
6735
- Parent=DefaultProperties
6736
- Browser="Mosaic"
6737
-
6738
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; w3m
6739
-
6740
- [w3m]
6741
- Parent=DefaultProperties
6742
- Browser="w3m"
6743
- Frames=true
6744
- Tables=true
6745
-
6746
- [w3m/0.1*]
6747
- Parent=w3m
6748
- Browser="w3m"
6749
- Version=0.1
6750
- MajorVer=0
6751
- MinorVer=1
6752
-
6753
- [w3m/0.2*]
6754
- Parent=w3m
6755
- Browser="w3m"
6756
- Version=0.2
6757
- MajorVer=0
6758
- MinorVer=2
6759
-
6760
- [w3m/0.3*]
6761
- Parent=w3m
6762
- Browser="w3m"
6763
- Version=0.3
6764
- MajorVer=0
6765
- MinorVer=3
6766
-
6767
- [w3m/0.4*]
6768
- Parent=w3m
6769
- Browser="w3m"
6770
- Version=0.4
6771
- MajorVer=0
6772
- MinorVer=4
6773
- Cookies=true
6774
-
6775
- [w3m/0.5*]
6776
- Parent=w3m
6777
- Browser="w3m"
6778
- Version=0.5
6779
- MajorVer=0
6780
- MinorVer=5
6781
- Cookies=true
6782
-
6783
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.10
6784
-
6785
- [ELinks 0.10]
6786
- Parent=DefaultProperties
6787
- Browser="ELinks"
6788
- Version=0.10
6789
- MinorVer=10
6790
- Frames=true
6791
- Tables=true
6792
-
6793
- [ELinks (0.10*; *AIX*)]
6794
- Parent=ELinks 0.10
6795
- Platform=AIX
6796
-
6797
- [ELinks (0.10*; *BeOS*)]
6798
- Parent=ELinks 0.10
6799
- Platform=BeOS
6800
-
6801
- [ELinks (0.10*; *CygWin*)]
6802
- Parent=ELinks 0.10
6803
- Platform=CygWin
6804
-
6805
- [ELinks (0.10*; *Darwin*)]
6806
- Parent=ELinks 0.10
6807
- Platform=Darwin
6808
-
6809
- [ELinks (0.10*; *Digital Unix*)]
6810
- Parent=ELinks 0.10
6811
- Platform=Digital Unix
6812
-
6813
- [ELinks (0.10*; *FreeBSD*)]
6814
- Parent=ELinks 0.10
6815
- Platform=FreeBSD
6816
-
6817
- [ELinks (0.10*; *HPUX*)]
6818
- Parent=ELinks 0.10
6819
- Platform=HP-UX
6820
-
6821
- [ELinks (0.10*; *IRIX*)]
6822
- Parent=ELinks 0.10
6823
- Platform=IRIX
6824
-
6825
- [ELinks (0.10*; *Linux*)]
6826
- Parent=ELinks 0.10
6827
- Platform=Linux
6828
-
6829
- [ELinks (0.10*; *NetBSD*)]
6830
- Parent=ELinks 0.10
6831
- Platform=NetBSD
6832
-
6833
- [ELinks (0.10*; *OpenBSD*)]
6834
- Parent=ELinks 0.10
6835
- Platform=OpenBSD
6836
-
6837
- [ELinks (0.10*; *OS/2*)]
6838
- Parent=ELinks 0.10
6839
- Platform=OS/2
6840
-
6841
- [ELinks (0.10*; *RISC*)]
6842
- Parent=ELinks 0.10
6843
- Platform=RISC OS
6844
-
6845
- [ELinks (0.10*; *Solaris*)]
6846
- Parent=ELinks 0.10
6847
- Platform=Solaris
6848
-
6849
- [ELinks (0.10*; *Unix*)]
6850
- Parent=ELinks 0.10
6851
- Platform=Unix
6852
-
6853
- [ELinks/0.10* (*AIX*)]
6854
- Parent=ELinks 0.10
6855
- Platform=AIX
6856
-
6857
- [ELinks/0.10* (*BeOS*)]
6858
- Parent=ELinks 0.10
6859
- Platform=BeOS
6860
-
6861
- [ELinks/0.10* (*CygWin*)]
6862
- Parent=ELinks 0.10
6863
- Platform=CygWin
6864
-
6865
- [ELinks/0.10* (*Darwin*)]
6866
- Parent=ELinks 0.10
6867
- Platform=Darwin
6868
-
6869
- [ELinks/0.10* (*Digital Unix*)]
6870
- Parent=ELinks 0.10
6871
- Platform=Digital Unix
6872
-
6873
- [ELinks/0.10* (*FreeBSD*)]
6874
- Parent=ELinks 0.10
6875
- Platform=FreeBSD
6876
-
6877
- [ELinks/0.10* (*HPUX*)]
6878
- Parent=ELinks 0.10
6879
- Platform=HP-UX
6880
-
6881
- [ELinks/0.10* (*IRIX*)]
6882
- Parent=ELinks 0.10
6883
- Platform=IRIX
6884
-
6885
- [ELinks/0.10* (*Linux*)]
6886
- Parent=ELinks 0.10
6887
- Platform=Linux
6888
-
6889
- [ELinks/0.10* (*NetBSD*)]
6890
- Parent=ELinks 0.10
6891
- Platform=NetBSD
6892
-
6893
- [ELinks/0.10* (*OpenBSD*)]
6894
- Parent=ELinks 0.10
6895
- Platform=OpenBSD
6896
-
6897
- [ELinks/0.10* (*OS/2*)]
6898
- Parent=ELinks 0.10
6899
- Platform=OS/2
6900
-
6901
- [ELinks/0.10* (*RISC*)]
6902
- Parent=ELinks 0.10
6903
- Platform=RISC OS
6904
-
6905
- [ELinks/0.10* (*Solaris*)]
6906
- Parent=ELinks 0.10
6907
- Platform=Solaris
6908
-
6909
- [ELinks/0.10* (*Unix*)]
6910
- Parent=ELinks 0.10
6911
- Platform=Unix
6912
-
6913
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.11
6914
-
6915
- [ELinks 0.11]
6916
- Parent=DefaultProperties
6917
- Browser="ELinks"
6918
- Version=0.11
6919
- MinorVer=11
6920
- Frames=true
6921
- Tables=true
6922
-
6923
- [ELinks (0.11*; *AIX*)]
6924
- Parent=ELinks 0.11
6925
- Platform=AIX
6926
-
6927
- [ELinks (0.11*; *BeOS*)]
6928
- Parent=ELinks 0.11
6929
- Platform=BeOS
6930
-
6931
- [ELinks (0.11*; *CygWin*)]
6932
- Parent=ELinks 0.11
6933
- Platform=CygWin
6934
-
6935
- [ELinks (0.11*; *Darwin*)]
6936
- Parent=ELinks 0.11
6937
- Platform=Darwin
6938
-
6939
- [ELinks (0.11*; *Digital Unix*)]
6940
- Parent=ELinks 0.11
6941
- Platform=Digital Unix
6942
-
6943
- [ELinks (0.11*; *FreeBSD*)]
6944
- Parent=ELinks 0.11
6945
- Platform=FreeBSD
6946
-
6947
- [ELinks (0.11*; *HPUX*)]
6948
- Parent=ELinks 0.11
6949
- Platform=HP-UX
6950
-
6951
- [ELinks (0.11*; *IRIX*)]
6952
- Parent=ELinks 0.11
6953
- Platform=IRIX
6954
-
6955
- [ELinks (0.11*; *Linux*)]
6956
- Parent=ELinks 0.11
6957
- Platform=Linux
6958
-
6959
- [ELinks (0.11*; *NetBSD*)]
6960
- Parent=ELinks 0.11
6961
- Platform=NetBSD
6962
-
6963
- [ELinks (0.11*; *OpenBSD*)]
6964
- Parent=ELinks 0.11
6965
- Platform=OpenBSD
6966
-
6967
- [ELinks (0.11*; *OS/2*)]
6968
- Parent=ELinks 0.11
6969
- Platform=OS/2
6970
-
6971
- [ELinks (0.11*; *RISC*)]
6972
- Parent=ELinks 0.11
6973
- Platform=RISC OS
6974
-
6975
- [ELinks (0.11*; *Solaris*)]
6976
- Parent=ELinks 0.11
6977
- Platform=Solaris
6978
-
6979
- [ELinks (0.11*; *Unix*)]
6980
- Parent=ELinks 0.11
6981
- Platform=Unix
6982
-
6983
- [ELinks/0.11* (*AIX*)]
6984
- Parent=ELinks 0.11
6985
- Platform=AIX
6986
-
6987
- [ELinks/0.11* (*BeOS*)]
6988
- Parent=ELinks 0.11
6989
- Platform=BeOS
6990
-
6991
- [ELinks/0.11* (*CygWin*)]
6992
- Parent=ELinks 0.11
6993
- Platform=CygWin
6994
-
6995
- [ELinks/0.11* (*Darwin*)]
6996
- Parent=ELinks 0.11
6997
- Platform=Darwin
6998
-
6999
- [ELinks/0.11* (*Digital Unix*)]
7000
- Parent=ELinks 0.11
7001
- Platform=Digital Unix
7002
-
7003
- [ELinks/0.11* (*FreeBSD*)]
7004
- Parent=ELinks 0.11
7005
- Platform=FreeBSD
7006
-
7007
- [ELinks/0.11* (*HPUX*)]
7008
- Parent=ELinks 0.11
7009
- Platform=HP-UX
7010
-
7011
- [ELinks/0.11* (*IRIX*)]
7012
- Parent=ELinks 0.11
7013
- Platform=IRIX
7014
-
7015
- [ELinks/0.11* (*Linux*)]
7016
- Parent=ELinks 0.11
7017
- Platform=Linux
7018
-
7019
- [ELinks/0.11* (*NetBSD*)]
7020
- Parent=ELinks 0.11
7021
- Platform=NetBSD
7022
-
7023
- [ELinks/0.11* (*OpenBSD*)]
7024
- Parent=ELinks 0.11
7025
- Platform=OpenBSD
7026
-
7027
- [ELinks/0.11* (*OS/2*)]
7028
- Parent=ELinks 0.11
7029
- Platform=OS/2
7030
-
7031
- [ELinks/0.11* (*RISC*)]
7032
- Parent=ELinks 0.11
7033
- Platform=RISC OS
7034
-
7035
- [ELinks/0.11* (*Solaris*)]
7036
- Parent=ELinks 0.11
7037
- Platform=Solaris
7038
-
7039
- [ELinks/0.11* (*Unix*)]
7040
- Parent=ELinks 0.11
7041
- Platform=Unix
7042
-
7043
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.12
7044
-
7045
- [ELinks 0.12]
7046
- Parent=DefaultProperties
7047
- Browser="ELinks"
7048
- Version=0.12
7049
- MinorVer=12
7050
- Frames=true
7051
- Tables=true
7052
-
7053
- [ELinks (0.12*; *AIX*)]
7054
- Parent=ELinks 0.12
7055
- Platform=AIX
7056
-
7057
- [ELinks (0.12*; *BeOS*)]
7058
- Parent=ELinks 0.12
7059
- Platform=BeOS
7060
-
7061
- [ELinks (0.12*; *CygWin*)]
7062
- Parent=ELinks 0.12
7063
- Platform=CygWin
7064
-
7065
- [ELinks (0.12*; *Darwin*)]
7066
- Parent=ELinks 0.12
7067
- Platform=Darwin
7068
-
7069
- [ELinks (0.12*; *Digital Unix*)]
7070
- Parent=ELinks 0.12
7071
- Platform=Digital Unix
7072
-
7073
- [ELinks (0.12*; *FreeBSD*)]
7074
- Parent=ELinks 0.12
7075
- Platform=FreeBSD
7076
-
7077
- [ELinks (0.12*; *HPUX*)]
7078
- Parent=ELinks 0.12
7079
- Platform=HP-UX
7080
-
7081
- [ELinks (0.12*; *IRIX*)]
7082
- Parent=ELinks 0.12
7083
- Platform=IRIX
7084
-
7085
- [ELinks (0.12*; *Linux*)]
7086
- Parent=ELinks 0.12
7087
- Platform=Linux
7088
-
7089
- [ELinks (0.12*; *NetBSD*)]
7090
- Parent=ELinks 0.12
7091
- Platform=NetBSD
7092
-
7093
- [ELinks (0.12*; *OpenBSD*)]
7094
- Parent=ELinks 0.12
7095
- Platform=OpenBSD
7096
-
7097
- [ELinks (0.12*; *OS/2*)]
7098
- Parent=ELinks 0.12
7099
- Platform=OS/2
7100
-
7101
- [ELinks (0.12*; *RISC*)]
7102
- Parent=ELinks 0.12
7103
- Platform=RISC OS
7104
-
7105
- [ELinks (0.12*; *Solaris*)]
7106
- Parent=ELinks 0.12
7107
- Platform=Solaris
7108
-
7109
- [ELinks (0.12*; *Unix*)]
7110
- Parent=ELinks 0.12
7111
- Platform=Unix
7112
-
7113
- [ELinks/0.12* (*AIX*)]
7114
- Parent=ELinks 0.12
7115
- Platform=AIX
7116
-
7117
- [ELinks/0.12* (*BeOS*)]
7118
- Parent=ELinks 0.12
7119
- Platform=BeOS
7120
-
7121
- [ELinks/0.12* (*CygWin*)]
7122
- Parent=ELinks 0.12
7123
- Platform=CygWin
7124
-
7125
- [ELinks/0.12* (*Darwin*)]
7126
- Parent=ELinks 0.12
7127
- Platform=Darwin
7128
-
7129
- [ELinks/0.12* (*Digital Unix*)]
7130
- Parent=ELinks 0.12
7131
- Platform=Digital Unix
7132
-
7133
- [ELinks/0.12* (*FreeBSD*)]
7134
- Parent=ELinks 0.12
7135
- Platform=FreeBSD
7136
-
7137
- [ELinks/0.12* (*HPUX*)]
7138
- Parent=ELinks 0.12
7139
- Platform=HP-UX
7140
-
7141
- [ELinks/0.12* (*IRIX*)]
7142
- Parent=ELinks 0.12
7143
- Platform=IRIX
7144
-
7145
- [ELinks/0.12* (*Linux*)]
7146
- Parent=ELinks 0.12
7147
- Platform=Linux
7148
-
7149
- [ELinks/0.12* (*NetBSD*)]
7150
- Parent=ELinks 0.12
7151
- Platform=NetBSD
7152
-
7153
- [ELinks/0.12* (*OpenBSD*)]
7154
- Parent=ELinks 0.12
7155
- Platform=OpenBSD
7156
-
7157
- [ELinks/0.12* (*OS/2*)]
7158
- Parent=ELinks 0.12
7159
- Platform=OS/2
7160
-
7161
- [ELinks/0.12* (*RISC*)]
7162
- Parent=ELinks 0.12
7163
- Platform=RISC OS
7164
-
7165
- [ELinks/0.12* (*Solaris*)]
7166
- Parent=ELinks 0.12
7167
- Platform=Solaris
7168
-
7169
- [ELinks/0.12* (*Unix*)]
7170
- Parent=ELinks 0.12
7171
- Platform=Unix
7172
-
7173
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.9
7174
-
7175
- [ELinks 0.9]
7176
- Parent=DefaultProperties
7177
- Browser="ELinks"
7178
- Version=0.9
7179
- MinorVer=9
7180
- Frames=true
7181
- Tables=true
7182
-
7183
- [ELinks (0.9*; *AIX*)]
7184
- Parent=ELinks 0.9
7185
- Platform=AIX
7186
-
7187
- [ELinks (0.9*; *BeOS*)]
7188
- Parent=ELinks 0.9
7189
- Platform=BeOS
7190
-
7191
- [ELinks (0.9*; *CygWin*)]
7192
- Parent=ELinks 0.9
7193
- Platform=CygWin
7194
-
7195
- [ELinks (0.9*; *Darwin*)]
7196
- Parent=ELinks 0.9
7197
- Platform=Darwin
7198
-
7199
- [ELinks (0.9*; *Digital Unix*)]
7200
- Parent=ELinks 0.9
7201
- Platform=Digital Unix
7202
-
7203
- [ELinks (0.9*; *FreeBSD*)]
7204
- Parent=ELinks 0.9
7205
- Platform=FreeBSD
7206
-
7207
- [ELinks (0.9*; *HPUX*)]
7208
- Parent=ELinks 0.9
7209
- Platform=HP-UX
7210
-
7211
- [ELinks (0.9*; *IRIX*)]
7212
- Parent=ELinks 0.9
7213
- Platform=IRIX
7214
-
7215
- [ELinks (0.9*; *Linux*)]
7216
- Parent=ELinks 0.9
7217
- Platform=Linux
7218
-
7219
- [ELinks (0.9*; *NetBSD*)]
7220
- Parent=ELinks 0.9
7221
- Platform=NetBSD
7222
-
7223
- [ELinks (0.9*; *OpenBSD*)]
7224
- Parent=ELinks 0.9
7225
- Platform=OpenBSD
7226
-
7227
- [ELinks (0.9*; *OS/2*)]
7228
- Parent=ELinks 0.9
7229
- Platform=OS/2
7230
-
7231
- [ELinks (0.9*; *RISC*)]
7232
- Parent=ELinks 0.9
7233
- Platform=RISC OS
7234
-
7235
- [ELinks (0.9*; *Solaris*)]
7236
- Parent=ELinks 0.9
7237
- Platform=Solaris
7238
-
7239
- [ELinks (0.9*; *Unix*)]
7240
- Parent=ELinks 0.9
7241
- Platform=Unix
7242
-
7243
- [ELinks/0.9* (*AIX*)]
7244
- Parent=ELinks 0.9
7245
- Platform=AIX
7246
-
7247
- [ELinks/0.9* (*BeOS*)]
7248
- Parent=ELinks 0.9
7249
- Platform=BeOS
7250
-
7251
- [ELinks/0.9* (*CygWin*)]
7252
- Parent=ELinks 0.9
7253
- Platform=CygWin
7254
-
7255
- [ELinks/0.9* (*Darwin*)]
7256
- Parent=ELinks 0.9
7257
- Platform=Darwin
7258
-
7259
- [ELinks/0.9* (*Digital Unix*)]
7260
- Parent=ELinks 0.9
7261
- Platform=Digital Unix
7262
-
7263
- [ELinks/0.9* (*FreeBSD*)]
7264
- Parent=ELinks 0.9
7265
- Platform=FreeBSD
7266
-
7267
- [ELinks/0.9* (*HPUX*)]
7268
- Parent=ELinks 0.9
7269
- Platform=HP-UX
7270
-
7271
- [ELinks/0.9* (*IRIX*)]
7272
- Parent=ELinks 0.9
7273
- Platform=IRIX
7274
-
7275
- [ELinks/0.9* (*Linux*)]
7276
- Parent=ELinks 0.9
7277
- Platform=Linux
7278
-
7279
- [ELinks/0.9* (*NetBSD*)]
7280
- Parent=ELinks 0.9
7281
- Platform=NetBSD
7282
-
7283
- [ELinks/0.9* (*OpenBSD*)]
7284
- Parent=ELinks 0.9
7285
- Platform=OpenBSD
7286
-
7287
- [ELinks/0.9* (*OS/2*)]
7288
- Parent=ELinks 0.9
7289
- Platform=OS/2
7290
-
7291
- [ELinks/0.9* (*RISC*)]
7292
- Parent=ELinks 0.9
7293
- Platform=RISC OS
7294
-
7295
- [ELinks/0.9* (*Solaris*)]
7296
- Parent=ELinks 0.9
7297
- Platform=Solaris
7298
-
7299
- [ELinks/0.9* (*Unix*)]
7300
- Parent=ELinks 0.9
7301
- Platform=Unix
7302
-
7303
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AppleWebKit
7304
-
7305
- [AppleWebKit]
7306
- Parent=DefaultProperties
7307
- Browser="AppleWebKit"
7308
- Frames=true
7309
- IFrames=true
7310
- Tables=true
7311
- Cookies=true
7312
- BackgroundSounds=true
7313
- JavaApplets=true
7314
- JavaScript=true
7315
- CssVersion=2
7316
- supportsCSS=true
7317
-
7318
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (KHTML, like Gecko)]
7319
- Parent=AppleWebKit
7320
-
7321
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Camino
7322
-
7323
- [Camino]
7324
- Parent=DefaultProperties
7325
- Browser="Camino"
7326
- Platform=MacOSX
7327
- Frames=true
7328
- IFrames=true
7329
- Tables=true
7330
- Cookies=true
7331
- JavaApplets=true
7332
- JavaScript=true
7333
- CssVersion=2
7334
- supportsCSS=true
7335
-
7336
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.7*]
7337
- Parent=Camino
7338
- Version=0.7
7339
- MajorVer=0
7340
- MinorVer=7
7341
- Beta=true
7342
-
7343
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.8*]
7344
- Parent=Camino
7345
- Version=0.8
7346
- MajorVer=0
7347
- MinorVer=8
7348
- Beta=true
7349
-
7350
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.9*]
7351
- Parent=Camino
7352
- Version=0.9
7353
- MajorVer=0
7354
- MinorVer=9
7355
- Beta=true
7356
-
7357
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.0*]
7358
- Parent=Camino
7359
- Version=1.0
7360
- MajorVer=1
7361
- MinorVer=0
7362
-
7363
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.2*]
7364
- Parent=Camino
7365
- Version=1.2
7366
- MajorVer=1
7367
- MinorVer=2
7368
-
7369
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.3*]
7370
- Parent=Camino
7371
- Version=1.3
7372
- MajorVer=1
7373
- MinorVer=3
7374
- Platform=MacOSX
7375
-
7376
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.4*]
7377
- Parent=Camino
7378
- Version=1.4
7379
- MajorVer=1
7380
- MinorVer=4
7381
- Platform=MacOSX
7382
-
7383
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.5*]
7384
- Parent=Camino
7385
- Version=1.5
7386
- MajorVer=1
7387
- MinorVer=5
7388
- Platform=MacOSX
7389
-
7390
- [Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.6*]
7391
- Parent=Camino
7392
- Version=1.6
7393
- MajorVer=1
7394
- MinorVer=6
7395
- Platform=MacOSX
7396
-
7397
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chimera
7398
-
7399
- [Chimera]
7400
- Parent=DefaultProperties
7401
- Browser="Chimera"
7402
- Frames=true
7403
- IFrames=true
7404
- Tables=true
7405
- Cookies=true
7406
- JavaApplets=true
7407
- JavaScript=true
7408
-
7409
- [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Chimera/*]
7410
- Parent=Chimera
7411
- Platform=MacOSX
7412
-
7413
- [Mozilla/5.0 Gecko/* Chimera/*]
7414
- Parent=Chimera
7415
-
7416
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dillo
7417
-
7418
- [Dillo]
7419
- Parent=DefaultProperties
7420
- Browser="Dillo"
7421
- Platform=Linux
7422
- Frames=true
7423
- IFrames=true
7424
- Tables=true
7425
- Cookies=true
7426
- CssVersion=2
7427
- supportsCSS=true
7428
-
7429
- [Dillo/0.6*]
7430
- Parent=Dillo
7431
- Version=0.6
7432
- MajorVer=0
7433
- MinorVer=6
7434
-
7435
- [Dillo/0.7*]
7436
- Parent=Dillo
7437
- Version=0.7
7438
- MajorVer=0
7439
- MinorVer=7
7440
-
7441
- [Dillo/0.8*]
7442
- Parent=Dillo
7443
- Version=0.8
7444
- MajorVer=0
7445
- MinorVer=8
7446
-
7447
- [Dillo/2.0]
7448
- Parent=Dillo
7449
- Version=2.0
7450
- MajorVer=2
7451
- MinorVer=0
7452
-
7453
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Emacs/W3
7454
-
7455
- [Emacs/W3]
7456
- Parent=DefaultProperties
7457
- Browser="Emacs/W3"
7458
- Frames=true
7459
- Tables=true
7460
- Cookies=true
7461
-
7462
- [Emacs/W3/2.* (Unix*]
7463
- Parent=Emacs/W3
7464
- Version=2.0
7465
- MajorVer=2
7466
- MinorVer=0
7467
- Platform=Unix
7468
-
7469
- [Emacs/W3/2.* (X11*]
7470
- Parent=Emacs/W3
7471
- Version=2.0
7472
- MajorVer=2
7473
- MinorVer=0
7474
- Platform=Linux
7475
-
7476
- [Emacs/W3/3.* (Unix*]
7477
- Parent=Emacs/W3
7478
- Version=3.0
7479
- MajorVer=3
7480
- MinorVer=0
7481
- Platform=Unix
7482
-
7483
- [Emacs/W3/3.* (X11*]
7484
- Parent=Emacs/W3
7485
- Version=3.0
7486
- MajorVer=3
7487
- MinorVer=0
7488
- Platform=Linux
7489
-
7490
- [Emacs/W3/4.* (Unix*]
7491
- Parent=Emacs/W3
7492
- Version=4.0
7493
- MajorVer=4
7494
- MinorVer=0
7495
- Platform=Unix
7496
-
7497
- [Emacs/W3/4.* (X11*]
7498
- Parent=Emacs/W3
7499
- Version=4.0
7500
- MajorVer=4
7501
- MinorVer=0
7502
- Platform=Linux
7503
-
7504
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; fantomas
7505
-
7506
- [fantomas]
7507
- Parent=DefaultProperties
7508
- Browser="fantomas"
7509
- Frames=true
7510
- IFrames=true
7511
- Tables=true
7512
- Cookies=true
7513
- JavaScript=true
7514
-
7515
- [Mozilla/4.0 (cloakBrowser)]
7516
- Parent=fantomas
7517
- Browser="fantomas cloakBrowser"
7518
-
7519
- [Mozilla/4.0 (fantomas shadowMaker Browser)]
7520
- Parent=fantomas
7521
- Browser="fantomas shadowMaker Browser"
7522
-
7523
- [Mozilla/4.0 (fantomBrowser)]
7524
- Parent=fantomas
7525
- Browser="fantomas fantomBrowser"
7526
-
7527
- [Mozilla/4.0 (fantomCrew Browser)]
7528
- Parent=fantomas
7529
- Browser="fantomas fantomCrew Browser"
7530
-
7531
- [Mozilla/4.0 (stealthBrowser)]
7532
- Parent=fantomas
7533
- Browser="fantomas stealthBrowser"
7534
-
7535
- [multiBlocker browser*]
7536
- Parent=fantomas
7537
- Browser="fantomas multiBlocker browser"
7538
-
7539
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FrontPage
7540
-
7541
- [FrontPage]
7542
- Parent=DefaultProperties
7543
- Browser="FrontPage"
7544
- Frames=true
7545
- IFrames=true
7546
- Tables=true
7547
- Cookies=true
7548
- JavaScript=true
7549
-
7550
- [Mozilla/?* (compatible; MS FrontPage*)]
7551
- Parent=FrontPage
7552
-
7553
- [MSFrontPage/*]
7554
- Parent=FrontPage
7555
-
7556
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Galeon
7557
-
7558
- [Galeon]
7559
- Parent=DefaultProperties
7560
- Browser="Galeon"
7561
- Frames=true
7562
- IFrames=true
7563
- Tables=true
7564
- Cookies=true
7565
- JavaApplets=true
7566
- JavaScript=true
7567
- CssVersion=2
7568
- supportsCSS=true
7569
-
7570
- [Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.0*]
7571
- Parent=Galeon
7572
- Version=1.0
7573
- MajorVer=1
7574
- MinorVer=0
7575
- Platform=Linux
7576
-
7577
- [Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.1*]
7578
- Parent=Galeon
7579
- Version=1.1
7580
- MajorVer=1
7581
- MinorVer=1
7582
- Platform=Linux
7583
-
7584
- [Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.2*]
7585
- Parent=Galeon
7586
- Version=1.2
7587
- MajorVer=1
7588
- MinorVer=2
7589
- Platform=Linux
7590
-
7591
- [Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.3*]
7592
- Parent=Galeon
7593
- Version=1.3
7594
- MajorVer=1
7595
- MinorVer=3
7596
- Platform=Linux
7597
-
7598
- [Mozilla/5.0 (X11; U; Linux*; Debian/*) Gecko/* Galeon/1.0*]
7599
- Parent=Galeon
7600
- Version=1.0
7601
- MajorVer=1
7602
- MinorVer=0
7603
- Platform=Debian
7604
-
7605
- [Mozilla/5.0 (X11; U; Linux*; Debian/*) Gecko/* Galeon/1.1*]
7606
- Parent=Galeon
7607
- Version=1.1
7608
- MajorVer=1
7609
- MinorVer=1
7610
- Platform=Debian
7611
-
7612
- [Mozilla/5.0 (X11; U; Linux*; Debian/*) Gecko/* Galeon/1.2*]
7613
- Parent=Galeon
7614
- Version=1.2
7615
- MajorVer=1
7616
- MinorVer=2
7617
- Platform=Debian
7618
-
7619
- [Mozilla/5.0 (X11; U; Linux*; Debian/*) Gecko/* Galeon/1.3*]
7620
- Parent=Galeon
7621
- Version=1.3
7622
- MajorVer=1
7623
- MinorVer=3
7624
- Platform=Debian
7625
-
7626
- [Mozilla/5.0 Galeon/1.0* (X11; Linux*)*]
7627
- Parent=Galeon
7628
- Version=1.0
7629
- MajorVer=1
7630
- MinorVer=0
7631
- Platform=Linux
7632
-
7633
- [Mozilla/5.0 Galeon/1.1* (X11; Linux*)*]
7634
- Parent=Galeon
7635
- Version=1.1
7636
- MajorVer=1
7637
- MinorVer=1
7638
- Platform=Linux
7639
-
7640
- [Mozilla/5.0 Galeon/1.2* (X11; Linux*)*]
7641
- Parent=Galeon
7642
- Version=1.2
7643
- MajorVer=1
7644
- MinorVer=2
7645
- Platform=Linux
7646
-
7647
- [Mozilla/5.0 Galeon/1.3* (X11; Linux*)*]
7648
- Parent=Galeon
7649
- Version=1.3
7650
- MajorVer=1
7651
- MinorVer=3
7652
- Platform=Linux
7653
-
7654
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; HP Secure Web Browser
7655
-
7656
- [HP Secure Web Browser]
7657
- Parent=DefaultProperties
7658
- Browser="HP Secure Web Browser"
7659
- Platform=OpenVMS
7660
- Frames=true
7661
- IFrames=true
7662
- Tables=true
7663
- Cookies=true
7664
- JavaApplets=true
7665
- JavaScript=true
7666
- CssVersion=2
7667
- supportsCSS=true
7668
-
7669
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.0*) Gecko/*]
7670
- Parent=HP Secure Web Browser
7671
- Version=1.0
7672
- MajorVer=1
7673
- MinorVer=0
7674
-
7675
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.1*) Gecko/*]
7676
- Parent=HP Secure Web Browser
7677
- Version=1.1
7678
- MajorVer=1
7679
- MinorVer=1
7680
-
7681
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.2*) Gecko/*]
7682
- Parent=HP Secure Web Browser
7683
- Version=1.2
7684
- MajorVer=1
7685
- MinorVer=2
7686
-
7687
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.3*) Gecko/*]
7688
- Parent=HP Secure Web Browser
7689
- Version=1.3
7690
- MajorVer=1
7691
- MinorVer=3
7692
-
7693
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.4*) Gecko/*]
7694
- Parent=HP Secure Web Browser
7695
- Version=1.4
7696
- MajorVer=1
7697
- MinorVer=4
7698
-
7699
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.5*) Gecko/*]
7700
- Parent=HP Secure Web Browser
7701
- Version=1.5
7702
- MajorVer=1
7703
- MinorVer=5
7704
-
7705
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.6*) Gecko/*]
7706
- Parent=HP Secure Web Browser
7707
- Version=1.6
7708
- MajorVer=1
7709
- MinorVer=6
7710
-
7711
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.7*) Gecko/*]
7712
- Parent=HP Secure Web Browser
7713
- Version=1.7
7714
- MajorVer=1
7715
- MinorVer=7
7716
-
7717
- [Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.8*) Gecko/*]
7718
- Parent=HP Secure Web Browser
7719
- Version=1.8
7720
- MajorVer=1
7721
- MinorVer=8
7722
-
7723
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IBrowse
7724
-
7725
- [IBrowse]
7726
- Parent=DefaultProperties
7727
- Browser="IBrowse"
7728
- Platform=Amiga
7729
- Frames=true
7730
- Tables=true
7731
- Cookies=true
7732
- JavaScript=true
7733
-
7734
- [Arexx (compatible; MSIE 6.0; AmigaOS5.0) IBrowse 4.0]
7735
- Parent=IBrowse
7736
- Version=4.0
7737
- MajorVer=4
7738
- MinorVer=0
7739
-
7740
- [IBrowse/1.22 (AmigaOS *)]
7741
- Parent=IBrowse
7742
- Version=1.22
7743
- MajorVer=1
7744
- MinorVer=22
7745
-
7746
- [IBrowse/2.1 (AmigaOS *)]
7747
- Parent=IBrowse
7748
- Version=2.1
7749
- MajorVer=2
7750
- MinorVer=1
7751
-
7752
- [IBrowse/2.2 (AmigaOS *)]
7753
- Parent=IBrowse
7754
- Version=2.2
7755
- MajorVer=2
7756
- MinorVer=2
7757
-
7758
- [IBrowse/2.3 (AmigaOS *)]
7759
- Parent=IBrowse
7760
- Version=2.2
7761
- MajorVer=2
7762
- MinorVer=3
7763
-
7764
- [Mozilla/* (Win98; I) IBrowse/2.1 (AmigaOS 3.1)]
7765
- Parent=IBrowse
7766
- Version=2.1
7767
- MajorVer=2
7768
- MinorVer=1
7769
-
7770
- [Mozilla/* (Win98; I) IBrowse/2.2 (AmigaOS 3.1)]
7771
- Parent=IBrowse
7772
- Version=2.2
7773
- MajorVer=2
7774
- MinorVer=2
7775
-
7776
- [Mozilla/* (Win98; I) IBrowse/2.3 (AmigaOS 3.1)]
7777
- Parent=IBrowse
7778
- Version=2.3
7779
- MajorVer=2
7780
- MinorVer=3
7781
-
7782
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iCab
7783
-
7784
- [iCab]
7785
- Parent=DefaultProperties
7786
- Browser="iCab"
7787
- Frames=true
7788
- Tables=true
7789
- Cookies=true
7790
- JavaScript=true
7791
- CssVersion=1
7792
- supportsCSS=true
7793
-
7794
- [iCab/2.7* (Macintosh; ?; 68K*)]
7795
- Parent=iCab
7796
- Version=2.7
7797
- MajorVer=2
7798
- MinorVer=7
7799
- Platform=Mac68K
7800
-
7801
- [iCab/2.7* (Macintosh; ?; PPC*)]
7802
- Parent=iCab
7803
- Version=2.7
7804
- MajorVer=2
7805
- MinorVer=7
7806
- Platform=MacPPC
7807
-
7808
- [iCab/2.8* (Macintosh; ?; *Mac OS X*)]
7809
- Parent=iCab
7810
- Version=2.8
7811
- MajorVer=2
7812
- MinorVer=8
7813
- Platform=MacOSX
7814
-
7815
- [iCab/2.8* (Macintosh; ?; 68K*)]
7816
- Parent=iCab
7817
- Version=2.8
7818
- MajorVer=2
7819
- MinorVer=8
7820
- Platform=Mac68K
7821
-
7822
- [iCab/2.8* (Macintosh; ?; PPC)]
7823
- Parent=iCab
7824
- Version=2.8
7825
- MajorVer=2
7826
- MinorVer=8
7827
- Platform=MacPPC
7828
-
7829
- [iCab/2.9* (Macintosh; ?; *Mac OS X*)]
7830
- Parent=iCab
7831
- Version=2.9
7832
- MajorVer=2
7833
- MinorVer=9
7834
- Platform=MacOSX
7835
-
7836
- [iCab/2.9* (Macintosh; ?; 68K*)]
7837
- Parent=iCab
7838
- Version=2.9
7839
- MajorVer=2
7840
- MinorVer=9
7841
- Platform=Mac68K
7842
-
7843
- [iCab/2.9* (Macintosh; ?; PPC*)]
7844
- Parent=iCab
7845
- Version=2.9
7846
- MajorVer=2
7847
- MinorVer=9
7848
- Platform=MacPPC
7849
-
7850
- [iCab/3.0* (Macintosh; ?; *Mac OS X*)]
7851
- Parent=iCab
7852
- Version=3.0
7853
- MajorVer=3
7854
- MinorVer=0
7855
- Platform=MacOSX
7856
- CssVersion=2
7857
- supportsCSS=true
7858
-
7859
- [iCab/3.0* (Macintosh; ?; PPC*)]
7860
- Parent=iCab
7861
- Version=3.0
7862
- MajorVer=3
7863
- MinorVer=0
7864
- Platform=MacPPC
7865
- CssVersion=2
7866
- supportsCSS=true
7867
-
7868
- [iCab/4.0 (Macintosh; U; *Mac OS X)]
7869
- Parent=iCab
7870
- Version=4.0
7871
- MajorVer=4
7872
- MinorVer=0
7873
- Platform=MacOSX
7874
-
7875
- [Mozilla/* (compatible; iCab 3.0*; Macintosh; *Mac OS X*)]
7876
- Parent=iCab
7877
- Version=3.0
7878
- MajorVer=3
7879
- MinorVer=0
7880
- Platform=MacOSX
7881
- CssVersion=2
7882
- supportsCSS=true
7883
-
7884
- [Mozilla/* (compatible; iCab 3.0*; Macintosh; ?; PPC*)]
7885
- Parent=iCab
7886
- Version=3.0
7887
- MajorVer=3
7888
- MinorVer=0
7889
- Platform=MacPPC
7890
- CssVersion=2
7891
- supportsCSS=true
7892
-
7893
- [Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; 68K*)]
7894
- Parent=iCab
7895
- Version=2.7
7896
- MajorVer=2
7897
- MinorVer=7
7898
- Platform=Mac68K
7899
-
7900
- [Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; PPC*)]
7901
- Parent=iCab
7902
- Version=2.7
7903
- MajorVer=2
7904
- MinorVer=7
7905
- Platform=MacPPC
7906
-
7907
- [Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; *Mac OS X*)]
7908
- Parent=iCab
7909
- Version=2.8
7910
- MajorVer=2
7911
- MinorVer=8
7912
- Platform=MacOSX
7913
-
7914
- [Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; PPC*)]
7915
- Parent=iCab
7916
- Version=2.8
7917
- MajorVer=2
7918
- MinorVer=8
7919
- Platform=MacPPC
7920
-
7921
- [Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; *Mac OS X*)]
7922
- Parent=iCab
7923
- Version=2.9
7924
- MajorVer=2
7925
- MinorVer=9
7926
- Platform=MacOSX
7927
-
7928
- [Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; ?; PPC*)]
7929
- Parent=iCab
7930
- Version=2.9
7931
- MajorVer=2
7932
- MinorVer=9
7933
- Platform=MacPPC
7934
-
7935
- [Mozilla/4.5 (compatible; iCab 4.2*; Macintosh; *Mac OS X*)]
7936
- Parent=iCab
7937
- Version=4.2
7938
- MajorVer=4
7939
- MinorVer=2
7940
- Platform=MacOSX
7941
-
7942
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iSiloX
7943
-
7944
- [iSiloX]
7945
- Parent=DefaultProperties
7946
- Browser="iSiloX"
7947
- Frames=true
7948
- IFrames=true
7949
- Tables=true
7950
- Cookies=true
7951
- JavaScript=true
7952
- Crawler=true
7953
- CssVersion=2
7954
- supportsCSS=true
7955
-
7956
- [iSiloX/4.0* MacOS]
7957
- Parent=iSiloX
7958
- Version=4.0
7959
- MajorVer=4
7960
- MinorVer=0
7961
- Platform=MacPPC
7962
-
7963
- [iSiloX/4.0* Windows/32]
7964
- Parent=iSiloX
7965
- Version=4.0
7966
- MajorVer=4
7967
- MinorVer=0
7968
- Platform=Win32
7969
- Win32=true
7970
-
7971
- [iSiloX/4.1* MacOS]
7972
- Parent=iSiloX
7973
- Version=4.1
7974
- MajorVer=4
7975
- MinorVer=1
7976
- Platform=MacPPC
7977
-
7978
- [iSiloX/4.1* Windows/32]
7979
- Parent=iSiloX
7980
- Version=4.1
7981
- MajorVer=4
7982
- MinorVer=1
7983
- Platform=Win32
7984
- Win32=true
7985
-
7986
- [iSiloX/4.2* MacOS]
7987
- Parent=iSiloX
7988
- Version=4.2
7989
- MajorVer=4
7990
- MinorVer=2
7991
- Platform=MacPPC
7992
-
7993
- [iSiloX/4.2* Windows/32]
7994
- Parent=iSiloX
7995
- Version=4.2
7996
- MajorVer=4
7997
- MinorVer=2
7998
- Platform=Win32
7999
- Win32=true
8000
-
8001
- [iSiloX/4.3* MacOS]
8002
- Parent=iSiloX
8003
- Version=4.3
8004
- MajorVer=4
8005
- MinorVer=4
8006
- Platform=MacOSX
8007
-
8008
- [iSiloX/4.3* Windows/32]
8009
- Parent=iSiloX
8010
- Version=4.3
8011
- MajorVer=4
8012
- MinorVer=3
8013
- Platform=Win32
8014
- Win32=true
8015
-
8016
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycoris Desktop/LX
8017
-
8018
- [Lycoris Desktop/LX]
8019
- Parent=DefaultProperties
8020
- Browser="Lycoris Desktop/LX"
8021
- Frames=true
8022
- IFrames=true
8023
- Tables=true
8024
- Cookies=true
8025
- JavaApplets=true
8026
- JavaScript=true
8027
- Crawler=true
8028
-
8029
- [Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.*: Desktop/LX Amethyst) Gecko/*]
8030
- Parent=Lycoris Desktop/LX
8031
- Version=1.1
8032
- MajorVer=1
8033
- MinorVer=1
8034
- Platform=Linux
8035
-
8036
- [Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.*; Desktop/LX Amethyst) Gecko/*]
8037
- Parent=Lycoris Desktop/LX
8038
- Version=1.0
8039
- MajorVer=1
8040
- MinorVer=0
8041
- Platform=Linux
8042
-
8043
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mosaic
8044
-
8045
- [Mosaic]
8046
- Parent=DefaultProperties
8047
- Browser="Mosaic"
8048
- Frames=true
8049
- IFrames=true
8050
- Tables=true
8051
- Cookies=true
8052
- JavaApplets=true
8053
- JavaScript=true
8054
-
8055
- [Mozilla/4.0 (VMS_Mosaic)]
8056
- Parent=Mosaic
8057
- Platform=OpenVMS
8058
-
8059
- [VMS_Mosaic/3.7*]
8060
- Parent=Mosaic
8061
- Version=3.7
8062
- MajorVer=3
8063
- MinorVer=7
8064
- Platform=OpenVMS
8065
-
8066
- [VMS_Mosaic/3.8*]
8067
- Parent=Mosaic
8068
- Version=3.8
8069
- MajorVer=3
8070
- MinorVer=8
8071
- Platform=OpenVMS
8072
-
8073
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetPositive
8074
-
8075
- [NetPositive]
8076
- Parent=DefaultProperties
8077
- Browser="NetPositive"
8078
- Platform=BeOS
8079
- Frames=true
8080
- IFrames=true
8081
- Tables=true
8082
- Cookies=true
8083
- JavaApplets=true
8084
- JavaScript=true
8085
-
8086
- [*NetPositive/2.2*]
8087
- Parent=NetPositive
8088
- Version=2.2
8089
- MajorVer=2
8090
- MinorVer=2
8091
-
8092
- [*NetPositive/2.2*BeOS*]
8093
- Parent=NetPositive
8094
- Version=2.2
8095
- MajorVer=2
8096
- MinorVer=2
8097
-
8098
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb
8099
-
8100
- [OmniWeb]
8101
- Parent=DefaultProperties
8102
- Browser="OmniWeb"
8103
- Platform=MacOSX
8104
- Frames=true
8105
- Tables=true
8106
- Cookies=true
8107
- JavaApplets=true
8108
- JavaScript=true
8109
- isMobileDevice=true
8110
- CssVersion=2
8111
- supportsCSS=true
8112
-
8113
- [Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v4*]
8114
- Parent=OmniWeb
8115
- Version=4.5
8116
- MajorVer=4
8117
- MinorVer=5
8118
- Platform=MacOSX
8119
-
8120
- [Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v5*]
8121
- Parent=OmniWeb
8122
- Version=5.
8123
- MajorVer=5
8124
- MinorVer=0
8125
- Platform=MacOSX
8126
-
8127
- [Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v6*]
8128
- Parent=OmniWeb
8129
- Version=6.0
8130
- MajorVer=6
8131
- MinorVer=0
8132
- Platform=MacOSX
8133
-
8134
- [Mozilla/* (Macintosh; ?; PPC) OmniWeb/4*]
8135
- Parent=OmniWeb
8136
- Version=4.0
8137
- MajorVer=4
8138
- MinorVer=0
8139
- Platform=MacPPC
8140
-
8141
- [Mozilla/* (Macintosh; ?; PPC) OmniWeb/5*]
8142
- Parent=OmniWeb
8143
- Version=5.0
8144
- MajorVer=5
8145
- MinorVer=0
8146
- Platform=MacOSX
8147
-
8148
- [Mozilla/* (Macintosh; ?; PPC) OmniWeb/6*]
8149
- Parent=OmniWeb
8150
- Version=6.0
8151
- MajorVer=6
8152
- MinorVer=0
8153
- Platform=MacPPC
8154
-
8155
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.34]
8156
- Parent=OmniWeb
8157
- Version=5.1
8158
- MajorVer=5
8159
- MinorVer=1
8160
-
8161
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.34]
8162
- Parent=OmniWeb
8163
- Version=5.1
8164
- MajorVer=5
8165
- MinorVer=1
8166
-
8167
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/420+ (KHTML, like Gecko, Safari/420) OmniWeb/v607]
8168
- Parent=OmniWeb
8169
- Version=5.5
8170
- MajorVer=5
8171
- MinorVer=5
8172
-
8173
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/420+ (KHTML, like Gecko, Safari/420) OmniWeb/v607]
8174
- Parent=OmniWeb
8175
- Version=5.5
8176
- MajorVer=5
8177
- MinorVer=5
8178
-
8179
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/522+ (KHTML, like Gecko, Safari/522) OmniWeb/v613]
8180
- Parent=OmniWeb
8181
- Version=5.6
8182
- MajorVer=5
8183
- MinorVer=6
8184
-
8185
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/522+ (KHTML, like Gecko, Safari/522) OmniWeb/v613]
8186
- Parent=OmniWeb
8187
- Version=5.6
8188
- MajorVer=5
8189
- MinorVer=6
8190
-
8191
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v496]
8192
- Parent=OmniWeb
8193
- Version=4.5
8194
- MajorVer=4
8195
- MinorVer=5
8196
-
8197
- [Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v558.36 ]
8198
- Parent=OmniWeb
8199
- Version=5.0
8200
- MajorVer=5
8201
- MinorVer=0
8202
-
8203
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Shiira
8204
-
8205
- [Shiira]
8206
- Parent=DefaultProperties
8207
- Browser="Shiira"
8208
- Platform=MacOSX
8209
- Frames=true
8210
- IFrames=true
8211
- Tables=true
8212
- Cookies=true
8213
- BackgroundSounds=true
8214
- JavaApplets=true
8215
- JavaScript=true
8216
- CssVersion=2
8217
- supportsCSS=true
8218
-
8219
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/0.9*]
8220
- Parent=Shiira
8221
- Version=0.9
8222
- MajorVer=0
8223
- MinorVer=9
8224
-
8225
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.0*]
8226
- Parent=Shiira
8227
- Version=1.0
8228
- MajorVer=1
8229
- MinorVer=0
8230
-
8231
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.1*]
8232
- Parent=Shiira
8233
- Version=1.1
8234
- MajorVer=1
8235
- MinorVer=1
8236
-
8237
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.2*]
8238
- Parent=Shiira
8239
- Version=1.2
8240
- MajorVer=1
8241
- MinorVer=2
8242
-
8243
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.1*]
8244
- Parent=Shiira
8245
- Version=2.1
8246
- MajorVer=2
8247
- MinorVer=1
8248
-
8249
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.2*]
8250
- Parent=Shiira
8251
- Version=2.2
8252
- MajorVer=2
8253
- MinorVer=2
8254
-
8255
- [Windows Maker]
8256
- Parent=DefaultProperties
8257
- Browser="WMaker"
8258
- Platform=Linux
8259
- Frames=true
8260
- IFrames=true
8261
- Tables=true
8262
- Cookies=true
8263
- VBScript=true
8264
- JavaApplets=true
8265
- JavaScript=true
8266
- CssVersion=2
8267
- supportsCSS=true
8268
-
8269
- [WMaker*]
8270
- Parent=Windows Maker
8271
-
8272
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.0
8273
-
8274
- [K-Meleon 1.0]
8275
- Parent=DefaultProperties
8276
- Browser="K-Meleon"
8277
- Version=1.0
8278
- MajorVer=1
8279
- Win32=true
8280
- Frames=true
8281
- IFrames=true
8282
- Tables=true
8283
- Cookies=true
8284
- JavaApplets=true
8285
- JavaScript=true
8286
- CssVersion=2
8287
- supportsCSS=true
8288
-
8289
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8290
- Parent=K-Meleon 1.0
8291
- Version=1.0
8292
- MajorVer=1
8293
- MinorVer=0
8294
- Platform=Win95
8295
- Win32=true
8296
-
8297
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8298
- Parent=K-Meleon 1.0
8299
- Version=1.0
8300
- MajorVer=1
8301
- MinorVer=0
8302
- Platform=Win98
8303
- Win32=true
8304
-
8305
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.0*]
8306
- Parent=K-Meleon 1.0
8307
- Version=1.0
8308
- MajorVer=1
8309
- MinorVer=0
8310
- Platform=Win2000
8311
- Win32=true
8312
-
8313
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8314
- Parent=K-Meleon 1.0
8315
- Version=1.0
8316
- MajorVer=1
8317
- MinorVer=0
8318
- Platform=WinXP
8319
- Win32=true
8320
-
8321
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8322
- Parent=K-Meleon 1.0
8323
- Version=1.0
8324
- MajorVer=1
8325
- MinorVer=0
8326
- Platform=Win2003
8327
- Win32=true
8328
-
8329
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.0*]
8330
- Parent=K-Meleon 1.0
8331
- Version=1.0
8332
- MajorVer=1
8333
- MinorVer=0
8334
- Platform=WinNT
8335
- Win32=true
8336
-
8337
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.1
8338
-
8339
- [K-Meleon 1.1]
8340
- Parent=DefaultProperties
8341
- Browser="K-Meleon"
8342
- Version=1.1
8343
- MajorVer=1
8344
- MinorVer=1
8345
- Win32=true
8346
- Frames=true
8347
- IFrames=true
8348
- Tables=true
8349
- Cookies=true
8350
- JavaApplets=true
8351
- JavaScript=true
8352
- CssVersion=2
8353
- supportsCSS=true
8354
-
8355
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8356
- Parent=K-Meleon 1.1
8357
- Version=1.0
8358
- MajorVer=1
8359
- MinorVer=0
8360
- Platform=Win95
8361
- Win32=true
8362
-
8363
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8364
- Parent=K-Meleon 1.1
8365
- Version=1.0
8366
- MajorVer=1
8367
- MinorVer=0
8368
- Platform=Win98
8369
- Win32=true
8370
-
8371
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.1*]
8372
- Parent=K-Meleon 1.1
8373
- Version=1.0
8374
- MajorVer=1
8375
- MinorVer=0
8376
- Platform=Win2000
8377
- Win32=true
8378
-
8379
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8380
- Parent=K-Meleon 1.1
8381
- Version=1.0
8382
- MajorVer=1
8383
- MinorVer=0
8384
- Platform=WinXP
8385
- Win32=true
8386
-
8387
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8388
- Parent=K-Meleon 1.1
8389
- Version=1.0
8390
- MajorVer=1
8391
- MinorVer=0
8392
- Platform=Win2003
8393
- Win32=true
8394
-
8395
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.1*]
8396
- Parent=K-Meleon 1.1
8397
- Version=1.0
8398
- MajorVer=1
8399
- MinorVer=0
8400
- Platform=WinNT
8401
- Win32=true
8402
-
8403
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.5
8404
-
8405
- [K-Meleon 1.5]
8406
- Parent=DefaultProperties
8407
- Browser="K-Meleon"
8408
- Version=1.5
8409
- MajorVer=1
8410
- MinorVer=5
8411
- Win32=true
8412
- Frames=true
8413
- IFrames=true
8414
- Tables=true
8415
- Cookies=true
8416
- JavaApplets=true
8417
- JavaScript=true
8418
- CssVersion=2
8419
- supportsCSS=true
8420
-
8421
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8422
- Parent=K-Meleon 1.5
8423
- Version=1.0
8424
- MajorVer=1
8425
- MinorVer=0
8426
- Platform=Win95
8427
- Win32=true
8428
-
8429
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8430
- Parent=K-Meleon 1.5
8431
- Version=1.0
8432
- MajorVer=1
8433
- MinorVer=0
8434
- Platform=Win98
8435
- Win32=true
8436
-
8437
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.5*]
8438
- Parent=K-Meleon 1.5
8439
- Version=1.0
8440
- MajorVer=1
8441
- MinorVer=0
8442
- Platform=Win2000
8443
- Win32=true
8444
-
8445
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8446
- Parent=K-Meleon 1.5
8447
- Version=1.0
8448
- MajorVer=1
8449
- MinorVer=0
8450
- Platform=WinXP
8451
- Win32=true
8452
-
8453
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8454
- Parent=K-Meleon 1.5
8455
- Version=1.0
8456
- MajorVer=1
8457
- MinorVer=0
8458
- Platform=Win2003
8459
- Win32=true
8460
-
8461
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8462
- Parent=K-Meleon 1.5
8463
- Platform=WinVista
8464
-
8465
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8466
- Parent=K-Meleon 1.5
8467
- Platform=Win7
8468
-
8469
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
8470
- Parent=K-Meleon 1.5
8471
- Version=1.0
8472
- MajorVer=1
8473
- MinorVer=0
8474
- Platform=WinNT
8475
- Win32=true
8476
-
8477
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 3.0
8478
-
8479
- [Konqueror 3.0]
8480
- Parent=DefaultProperties
8481
- Browser="Konqueror"
8482
- Platform=Linux
8483
- Frames=true
8484
- IFrames=true
8485
- Tables=true
8486
- Cookies=true
8487
- JavaScript=true
8488
- CssVersion=2
8489
- supportsCSS=true
8490
-
8491
- [*Konqueror/3.0*]
8492
- Parent=Konqueror 3.0
8493
- Version=3.0
8494
- MajorVer=3
8495
- MinorVer=0
8496
- IFrames=false
8497
-
8498
- [*Konqueror/3.0*FreeBSD*]
8499
- Parent=Konqueror 3.0
8500
- Version=3.0
8501
- MajorVer=3
8502
- MinorVer=0
8503
- Platform=FreeBSD
8504
- IFrames=false
8505
-
8506
- [*Konqueror/3.0*Linux*]
8507
- Parent=Konqueror 3.0
8508
- Version=3.0
8509
- MajorVer=3
8510
- MinorVer=0
8511
- Platform=Linux
8512
- IFrames=false
8513
-
8514
- [*Konqueror/3.1*]
8515
- Parent=Konqueror 3.0
8516
- Version=3.1
8517
- MajorVer=3
8518
- MinorVer=1
8519
-
8520
- [*Konqueror/3.1*FreeBSD*]
8521
- Parent=Konqueror 3.0
8522
- Version=3.1
8523
- MajorVer=3
8524
- MinorVer=1
8525
- Platform=FreeBSD
8526
-
8527
- [*Konqueror/3.1*Linux*]
8528
- Parent=Konqueror 3.0
8529
- Version=3.1
8530
- MajorVer=3
8531
- MinorVer=1
8532
-
8533
- [*Konqueror/3.2*]
8534
- Parent=Konqueror 3.0
8535
- Version=3.2
8536
- MajorVer=3
8537
- MinorVer=2
8538
-
8539
- [*Konqueror/3.2*FreeBSD*]
8540
- Parent=Konqueror 3.0
8541
- Version=3.2
8542
- MajorVer=3
8543
- MinorVer=2
8544
- Platform=FreeBSD
8545
-
8546
- [*Konqueror/3.2*Linux*]
8547
- Parent=Konqueror 3.0
8548
- Version=3.2
8549
- MajorVer=3
8550
- MinorVer=2
8551
- Platform=Linux
8552
-
8553
- [*Konqueror/3.3*]
8554
- Parent=Konqueror 3.0
8555
- Version=3.3
8556
- MajorVer=3
8557
- MinorVer=3
8558
-
8559
- [*Konqueror/3.3*FreeBSD*]
8560
- Parent=Konqueror 3.0
8561
- Version=3.3
8562
- MajorVer=3
8563
- MinorVer=3
8564
- Platform=FreeBSD
8565
-
8566
- [*Konqueror/3.3*Linux*]
8567
- Parent=Konqueror 3.0
8568
- Version=3.3
8569
- MajorVer=3
8570
- MinorVer=3
8571
- Platform=Linux
8572
-
8573
- [*Konqueror/3.3*OpenBSD*]
8574
- Parent=Konqueror 3.0
8575
- Version=3.3
8576
- MajorVer=3
8577
- MinorVer=3
8578
- Platform=OpenBSD
8579
-
8580
- [*Konqueror/3.4*]
8581
- Parent=Konqueror 3.0
8582
- Version=3.4
8583
- MajorVer=3
8584
- MinorVer=4
8585
-
8586
- [*Konqueror/3.4*FreeBSD*]
8587
- Parent=Konqueror 3.0
8588
- Version=3.4
8589
- MajorVer=3
8590
- MinorVer=4
8591
- Platform=FreeBSD
8592
-
8593
- [*Konqueror/3.4*Linux*]
8594
- Parent=Konqueror 3.0
8595
- Version=3.4
8596
- MajorVer=3
8597
- MinorVer=4
8598
- Platform=Linux
8599
-
8600
- [*Konqueror/3.4*OpenBSD*]
8601
- Parent=Konqueror 3.0
8602
- Version=3.4
8603
- MajorVer=3
8604
- MinorVer=4
8605
- Platform=OpenBSD
8606
-
8607
- [*Konqueror/3.5*]
8608
- Parent=Konqueror 3.0
8609
- Version=3.5
8610
- MajorVer=3
8611
- MinorVer=5
8612
-
8613
- [*Konqueror/3.5*FreeBSD*]
8614
- Parent=Konqueror 3.0
8615
- Version=3.5
8616
- MajorVer=3
8617
- MinorVer=5
8618
- Platform=FreeBSD
8619
-
8620
- [*Konqueror/3.5*Linux*]
8621
- Parent=Konqueror 3.0
8622
- Version=3.5
8623
- MajorVer=3
8624
- MinorVer=5
8625
- Platform=Linux
8626
-
8627
- [*Konqueror/3.5*OpenBSD*]
8628
- Parent=Konqueror 3.0
8629
- Version=3.5
8630
- MajorVer=3
8631
- MinorVer=5
8632
- Platform=OpenBSD
8633
-
8634
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.0
8635
-
8636
- [Konqueror 4.0]
8637
- Parent=DefaultProperties
8638
- Browser="Konqueror"
8639
- Version=4.0
8640
- MajorVer=4
8641
- Frames=true
8642
- IFrames=true
8643
- Tables=true
8644
- Cookies=true
8645
- JavaScript=true
8646
- CssVersion=2
8647
- supportsCSS=true
8648
-
8649
- [Mozilla/5.0 (compatible; Konqueror/4.0*; Debian) KHTML/4.* (like Gecko)]
8650
- Parent=Konqueror 4.0
8651
- Platform=Debian
8652
-
8653
- [Mozilla/5.0 (compatible; Konqueror/4.0.*; *Linux) KHTML/4.* (like Gecko)]
8654
- Parent=Konqueror 4.0
8655
- Platform=Linux
8656
-
8657
- [Mozilla/5.0 (compatible; Konqueror/4.0.*; FreeBSD) KHTML/4.* (like Gecko)]
8658
- Parent=Konqueror 4.0
8659
- Platform=FreeBSD
8660
-
8661
- [Mozilla/5.0 (compatible; Konqueror/4.0.*; NetBSD) KHTML/4.* (like Gecko)]
8662
- Parent=Konqueror 4.0
8663
- Platform=NetBSD
8664
-
8665
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.1
8666
-
8667
- [Konqueror 4.1]
8668
- Parent=DefaultProperties
8669
- Browser="Konqueror"
8670
- Version=4.1
8671
- MajorVer=4
8672
- MinorVer=1
8673
- Frames=true
8674
- IFrames=true
8675
- Tables=true
8676
- Cookies=true
8677
- JavaScript=true
8678
- CssVersion=2
8679
- supportsCSS=true
8680
-
8681
- [Mozilla/5.0 (compatible; Konqueror/4.1*; *Linux*) KHTML/4.* (like Gecko)*]
8682
- Parent=Konqueror 4.1
8683
- Platform=Linux
8684
-
8685
- [Mozilla/5.0 (compatible; Konqueror/4.1*; Debian) KHTML/4.* (like Gecko)*]
8686
- Parent=Konqueror 4.1
8687
- Platform=Debian
8688
-
8689
- [Mozilla/5.0 (compatible; Konqueror/4.1*; FreeBSD) KHTML/4.* (like Gecko)*]
8690
- Parent=Konqueror 4.1
8691
- Platform=FreeBSD
8692
-
8693
- [Mozilla/5.0 (compatible; Konqueror/4.1*; NetBSD) KHTML/4.* (like Gecko)*]
8694
- Parent=Konqueror 4.1
8695
- Platform=NetBSD
8696
-
8697
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.2
8698
-
8699
- [Konqueror 4.2]
8700
- Parent=DefaultProperties
8701
- Browser="Konqueror"
8702
- Version=4.2
8703
- MajorVer=4
8704
- MinorVer=2
8705
- Frames=true
8706
- IFrames=true
8707
- Tables=true
8708
- Cookies=true
8709
- JavaScript=true
8710
- CssVersion=2
8711
- supportsCSS=true
8712
-
8713
- [Mozilla/5.0 (compatible; Konqueror/4.2*; *Linux*) KHTML/4.* (like Gecko)*]
8714
- Parent=Konqueror 4.2
8715
- Platform=Linux
8716
-
8717
- [Mozilla/5.0 (compatible; Konqueror/4.2*; Debian) KHTML/4.* (like Gecko)*]
8718
- Parent=Konqueror 4.2
8719
- Platform=Debian
8720
-
8721
- [Mozilla/5.0 (compatible; Konqueror/4.2*; FreeBSD) KHTML/4.* (like Gecko)*]
8722
- Parent=Konqueror 4.2
8723
- Platform=FreeBSD
8724
-
8725
- [Mozilla/5.0 (compatible; Konqueror/4.2*; NetBSD) KHTML/4.* (like Gecko)*]
8726
- Parent=Konqueror 4.2
8727
- Platform=NetBSD
8728
-
8729
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari
8730
-
8731
- [Safari]
8732
- Parent=DefaultProperties
8733
- Browser="Safari"
8734
- Platform=MacOSX
8735
- Frames=true
8736
- IFrames=true
8737
- Tables=true
8738
- Cookies=true
8739
- BackgroundSounds=true
8740
- JavaApplets=true
8741
- JavaScript=true
8742
- CssVersion=2
8743
- supportsCSS=true
8744
-
8745
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/100*]
8746
- Parent=Safari
8747
- Version=1.1
8748
- MajorVer=1
8749
- MinorVer=1
8750
-
8751
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/125*]
8752
- Parent=Safari
8753
- Version=1.2
8754
- MajorVer=1
8755
- MinorVer=2
8756
-
8757
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/312*]
8758
- Parent=Safari
8759
- Version=1.3
8760
- MajorVer=1
8761
- MinorVer=3
8762
-
8763
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/412*]
8764
- Parent=Safari
8765
- Version=2.0
8766
- MajorVer=2
8767
- MinorVer=0
8768
-
8769
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/416*]
8770
- Parent=Safari
8771
- Version=2.0
8772
- MajorVer=2
8773
- MinorVer=0
8774
-
8775
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/417*]
8776
- Parent=Safari
8777
- Version=2.0
8778
- MajorVer=2
8779
- MinorVer=0
8780
-
8781
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/418*]
8782
- Parent=Safari
8783
- Version=2.0
8784
- MajorVer=2
8785
- MinorVer=0
8786
-
8787
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/419*]
8788
- Parent=Safari
8789
- Version=2.0
8790
- MajorVer=2
8791
- MinorVer=0
8792
-
8793
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/52*]
8794
- Parent=Safari
8795
- Beta=true
8796
-
8797
- [Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/85*]
8798
- Parent=Safari
8799
- Version=1.0
8800
- MajorVer=1
8801
- MinorVer=0
8802
-
8803
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.0
8804
-
8805
- [Safari 3.0]
8806
- Parent=DefaultProperties
8807
- Browser="Safari"
8808
- Version=3.0
8809
- MajorVer=3
8810
- Platform=MacOSX
8811
- Frames=true
8812
- IFrames=true
8813
- Tables=true
8814
- Cookies=true
8815
- BackgroundSounds=true
8816
- JavaApplets=true
8817
- JavaScript=true
8818
- CssVersion=2
8819
- supportsCSS=true
8820
-
8821
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.0* Safari/*]
8822
- Parent=Safari 3.0
8823
- Platform=MacOSX
8824
-
8825
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.0* Safari/*]
8826
- Parent=Safari 3.0
8827
- Platform=WinXP
8828
-
8829
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.0* Safari/*]
8830
- Parent=Safari 3.0
8831
- Platform=Win2003
8832
-
8833
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.0* Safari/*]
8834
- Parent=Safari 3.0
8835
- Platform=WinVista
8836
-
8837
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.0* Safari/*]
8838
- Parent=Safari 3.0
8839
- Platform=Win7
8840
-
8841
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.1
8842
-
8843
- [Safari 3.1]
8844
- Parent=DefaultProperties
8845
- Browser="Safari"
8846
- Version=3.1
8847
- MajorVer=3
8848
- MinorVer=1
8849
- Platform=MacOSX
8850
- Frames=true
8851
- IFrames=true
8852
- Tables=true
8853
- Cookies=true
8854
- BackgroundSounds=true
8855
- JavaApplets=true
8856
- JavaScript=true
8857
- CssVersion=2
8858
- supportsCSS=true
8859
-
8860
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.1* Safari/*]
8861
- Parent=Safari 3.1
8862
- Platform=MacOSX
8863
-
8864
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.1* Safari/*]
8865
- Parent=Safari 3.1
8866
- Platform=WinXP
8867
-
8868
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.1* Safari/*]
8869
- Parent=Safari 3.1
8870
- Platform=Win2003
8871
-
8872
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.1* Safari/*]
8873
- Parent=Safari 3.1
8874
- Platform=WinVista
8875
-
8876
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.1* Safari/*]
8877
- Parent=Safari 3.1
8878
- Platform=Win7
8879
-
8880
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.2
8881
-
8882
- [Safari 3.2]
8883
- Parent=DefaultProperties
8884
- Browser="Safari"
8885
- Version=3.2
8886
- MajorVer=3
8887
- MinorVer=2
8888
- Frames=true
8889
- IFrames=true
8890
- Tables=true
8891
- Cookies=true
8892
- BackgroundSounds=true
8893
- JavaApplets=true
8894
- JavaScript=true
8895
- CssVersion=3
8896
- supportsCSS=true
8897
-
8898
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.2* Safari/*]
8899
- Parent=Safari 3.2
8900
- Platform=MacOSX
8901
-
8902
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.2* Safari/*]
8903
- Parent=Safari 3.2
8904
- Platform=WinXP
8905
-
8906
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.2* Safari/*]
8907
- Parent=Safari 3.2
8908
- Platform=Win2003
8909
-
8910
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.2* Safari/*]
8911
- Parent=Safari 3.2
8912
- Platform=WinVista
8913
-
8914
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.2* Safari/*]
8915
- Parent=Safari 3.2
8916
- Platform=Win7
8917
-
8918
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 4.0
8919
-
8920
- [Safari 4.0]
8921
- Parent=DefaultProperties
8922
- Browser="Safari"
8923
- Version=4.0
8924
- MajorVer=4
8925
- Beta=true
8926
- Frames=true
8927
- IFrames=true
8928
- Tables=true
8929
- Cookies=true
8930
- BackgroundSounds=true
8931
- JavaApplets=true
8932
- JavaScript=true
8933
- CssVersion=3
8934
- supportsCSS=true
8935
-
8936
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4.0* Safari/*]
8937
- Parent=Safari 4.0
8938
- Platform=MacOSX
8939
-
8940
- [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4 Public Beta Safari/*]
8941
- Parent=Safari 4.0
8942
-
8943
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
8944
- Parent=Safari 4.0
8945
- Platform=WinXP
8946
-
8947
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4.0* Safari/*]
8948
- Parent=Safari 4.0
8949
- Platform=WinXP
8950
-
8951
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
8952
- Parent=Safari 4.0
8953
- Platform=Win2003
8954
-
8955
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4.0* Safari/*]
8956
- Parent=Safari 4.0
8957
- Platform=Win2003
8958
-
8959
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
8960
- Parent=Safari 4.0
8961
- Platform=WinVista
8962
-
8963
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4.0* Safari/*]
8964
- Parent=Safari 4.0
8965
- Platform=WinVista
8966
-
8967
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
8968
- Parent=Safari 4.0
8969
- Platform=Win7
8970
-
8971
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4.0* Safari/*]
8972
- Parent=Safari 4.0
8973
- Platform=Win7
8974
-
8975
- [Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
8976
- Parent=Safari 4.0
8977
- Platform=Win7
8978
-
8979
- [Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4.0* Safari/*]
8980
- Parent=Safari 4.0
8981
- Platform=Win7
8982
-
8983
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.0
8984
-
8985
- [Opera 10.0]
8986
- Parent=DefaultProperties
8987
- Browser="Opera"
8988
- Version=10.0
8989
- MajorVer=10
8990
- Alpha=true
8991
- Frames=true
8992
- IFrames=true
8993
- Tables=true
8994
- Cookies=true
8995
- BackgroundSounds=true
8996
- JavaApplets=true
8997
- JavaScript=true
8998
- CssVersion=2
8999
- supportsCSS=true
9000
-
9001
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 10.0*]
9002
- Parent=Opera 10.0
9003
- Platform=Linux
9004
-
9005
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 10.0*]
9006
- Parent=Opera 10.0
9007
- Platform=MacOSX
9008
-
9009
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 10.0*]
9010
- Parent=Opera 10.0
9011
- Platform=MacPPC
9012
-
9013
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 10.0*]
9014
- Parent=Opera 10.0
9015
- Platform=Win2000
9016
- Win32=true
9017
-
9018
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 10.0*]
9019
- Parent=Opera 10.0
9020
- Platform=Win95
9021
- Win32=true
9022
-
9023
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 10.0*]
9024
- Parent=Opera 10.0
9025
- Platform=Win98
9026
- Win32=true
9027
-
9028
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 10.0*]
9029
- Parent=Opera 10.0
9030
- Platform=WinCE
9031
- Win32=true
9032
-
9033
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 10.0*]
9034
- Parent=Opera 10.0
9035
- Platform=WinME
9036
- Win32=true
9037
-
9038
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 10.0*]
9039
- Parent=Opera 10.0
9040
- Platform=WinNT
9041
- Win32=true
9042
-
9043
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 10.0*]
9044
- Parent=Opera 10.0
9045
- Platform=Win2000
9046
- Win32=true
9047
-
9048
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 10.0*]
9049
- Parent=Opera 10.0
9050
- Platform=WinXP
9051
- Win32=true
9052
-
9053
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 10.0*]
9054
- Parent=Opera 10.0
9055
- Platform=Win2003
9056
- Win32=true
9057
-
9058
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 10.0*]
9059
- Parent=Opera 10.0
9060
- Platform=WinVista
9061
- Win32=true
9062
-
9063
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 10.0*]
9064
- Parent=Opera 10.0
9065
- Platform=Win7
9066
-
9067
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 10.0*]
9068
- Parent=Opera 10.0
9069
- Platform=WinXP
9070
- Win32=true
9071
-
9072
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 10.0*]
9073
- Parent=Opera 10.0
9074
- Platform=FreeBSD
9075
-
9076
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 10.0*]
9077
- Parent=Opera 10.0
9078
- Platform=Linux
9079
-
9080
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 10.0*]
9081
- Parent=Opera 10.0
9082
- Platform=SunOS
9083
-
9084
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 10.0*]
9085
- Parent=Opera 10.0
9086
- Platform=MacOSX
9087
-
9088
- [Mozilla/* (Windows 2000;*) Opera 10.0*]
9089
- Parent=Opera 10.0
9090
- Platform=Win2000
9091
- Win32=true
9092
-
9093
- [Mozilla/* (Windows 95;*) Opera 10.0*]
9094
- Parent=Opera 10.0
9095
- Platform=Win95
9096
- Win32=true
9097
-
9098
- [Mozilla/* (Windows 98;*) Opera 10.0*]
9099
- Parent=Opera 10.0
9100
- Platform=Win98
9101
- Win32=true
9102
-
9103
- [Mozilla/* (Windows ME;*) Opera 10.0*]
9104
- Parent=Opera 10.0
9105
- Platform=WinME
9106
- Win32=true
9107
-
9108
- [Mozilla/* (Windows NT 4.0;*) Opera 10.0*]
9109
- Parent=Opera 10.0
9110
- Platform=WinNT
9111
- Win32=true
9112
-
9113
- [Mozilla/* (Windows NT 5.0;*) Opera 10.0*]
9114
- Parent=Opera 10.0
9115
- Platform=Win2000
9116
- Win32=true
9117
-
9118
- [Mozilla/* (Windows NT 5.1;*) Opera 10.0*]
9119
- Parent=Opera 10.0
9120
- Platform=WinXP
9121
- Win32=true
9122
-
9123
- [Mozilla/* (Windows NT 5.2;*) Opera 10.0*]
9124
- Parent=Opera 10.0
9125
- Platform=Win2003
9126
- Win32=true
9127
-
9128
- [Mozilla/* (Windows NT 6.0;*) Opera 10.0*]
9129
- Parent=Opera 10.0
9130
- Platform=WinVista
9131
-
9132
- [Mozilla/* (Windows NT 6.1;*) Opera 10.0*]
9133
- Parent=Opera 10.0
9134
- Platform=Win7
9135
-
9136
- [Mozilla/* (X11; Linux*) Opera 10.0*]
9137
- Parent=Opera 10.0
9138
- Platform=Linux
9139
-
9140
- [Opera/10.0* (Linux*)*]
9141
- Parent=Opera 10.0
9142
- Platform=Linux
9143
-
9144
- [Opera/10.0* (Macintosh; *Mac OS X;*)*]
9145
- Parent=Opera 10.0
9146
- Platform=MacOSX
9147
-
9148
- [Opera/10.0* (Windows 95*)*]
9149
- Parent=Opera 10.0
9150
- Platform=Win95
9151
- Win32=true
9152
-
9153
- [Opera/10.0* (Windows 98*)*]
9154
- Parent=Opera 10.0
9155
- Platform=Win98
9156
- Win32=true
9157
-
9158
- [Opera/10.0* (Windows CE*)*]
9159
- Parent=Opera 10.0
9160
- Platform=WinCE
9161
- Win32=true
9162
-
9163
- [Opera/10.0* (Windows ME*)*]
9164
- Parent=Opera 10.0
9165
- Platform=WinME
9166
- Win32=true
9167
-
9168
- [Opera/10.0* (Windows NT 4.0*)*]
9169
- Parent=Opera 10.0
9170
- Platform=WinNT
9171
- Win32=true
9172
-
9173
- [Opera/10.0* (Windows NT 5.0*)*]
9174
- Parent=Opera 10.0
9175
- Platform=Win2000
9176
- Win32=true
9177
-
9178
- [Opera/10.0* (Windows NT 5.1*)*]
9179
- Parent=Opera 10.0
9180
- Platform=WinXP
9181
- Win32=true
9182
-
9183
- [Opera/10.0* (Windows NT 5.2*)*]
9184
- Parent=Opera 10.0
9185
- Platform=Win2003
9186
- Win32=true
9187
-
9188
- [Opera/10.0* (Windows NT 6.0*)*]
9189
- Parent=Opera 10.0
9190
- Platform=WinVista
9191
- Win32=true
9192
-
9193
- [Opera/10.0* (Windows NT 6.1*)*]
9194
- Parent=Opera 10.0
9195
- Platform=Win7
9196
-
9197
- [Opera/10.0* (Windows XP*)*]
9198
- Parent=Opera 10.0
9199
- Platform=WinXP
9200
- Win32=true
9201
-
9202
- [Opera/10.0* (X11; FreeBSD*)*]
9203
- Parent=Opera 10.0
9204
- Platform=FreeBSD
9205
-
9206
- [Opera/10.0* (X11; Linux*)*]
9207
- Parent=Opera 10.0
9208
- Platform=Linux
9209
-
9210
- [Opera/10.0* (X11; SunOS*)*]
9211
- Parent=Opera 10.0
9212
- Platform=SunOS
9213
-
9214
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.0
9215
-
9216
- [Opera 7.0]
9217
- Parent=DefaultProperties
9218
- Browser="Opera"
9219
- Version=7.0
9220
- MajorVer=7
9221
- Frames=true
9222
- IFrames=true
9223
- Tables=true
9224
- Cookies=true
9225
- BackgroundSounds=true
9226
- JavaApplets=true
9227
- JavaScript=true
9228
- CssVersion=2
9229
- supportsCSS=true
9230
-
9231
- [Mozilla/3.0 (Windows 2000; ?) Opera 7.0*]
9232
- Parent=Opera 7.0
9233
- Platform=Win2000
9234
- Win32=true
9235
-
9236
- [Mozilla/3.0 (Windows 95; ?) Opera 7.0*]
9237
- Parent=Opera 7.0
9238
- Platform=Win95
9239
- Win32=true
9240
-
9241
- [Mozilla/3.0 (Windows 98; ?) Opera 7.0*]
9242
- Parent=Opera 7.0
9243
- Platform=Win98
9244
- Win32=true
9245
-
9246
- [Mozilla/3.0 (Windows ME; ?) Opera 7.0*]
9247
- Parent=Opera 7.0
9248
- Platform=WinME
9249
- Win32=true
9250
-
9251
- [Mozilla/3.0 (Windows NT 4.0; ?) Opera 7.0*]
9252
- Parent=Opera 7.0
9253
- Platform=WinNT
9254
- Win32=true
9255
-
9256
- [Mozilla/3.0 (Windows XP; ?) Opera 7.0*]
9257
- Parent=Opera 7.0
9258
- Platform=WinXP
9259
- Win32=true
9260
-
9261
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 2000) Opera 7.0*]
9262
- Parent=Opera 7.0
9263
- Platform=Win2000
9264
- Win32=true
9265
-
9266
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 95) Opera 7.0*]
9267
- Parent=Opera 7.0
9268
- Platform=Win95
9269
- Win32=true
9270
-
9271
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 98) Opera 7.0*]
9272
- Parent=Opera 7.0
9273
- Platform=Win98
9274
- Win32=true
9275
-
9276
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows ME) Opera 7.0*]
9277
- Parent=Opera 7.0
9278
- Platform=WinME
9279
- Win32=true
9280
-
9281
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0*]
9282
- Parent=Opera 7.0
9283
- Platform=WinNT
9284
- Win32=true
9285
-
9286
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.0) Opera 7.0*]
9287
- Parent=Opera 7.0
9288
- Platform=Win2000
9289
- Win32=true
9290
-
9291
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.1) Opera 7.0*]
9292
- Parent=Opera 7.0
9293
- Platform=WinXP
9294
- Win32=true
9295
-
9296
- [Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows XP) Opera 7.0*]
9297
- Parent=Opera 7.0
9298
- Platform=WinXP
9299
- Win32=true
9300
-
9301
- [Mozilla/4.78 (Windows 2000; ?) Opera 7.0*]
9302
- Parent=Opera 7.0
9303
- Platform=Win2000
9304
- Win32=true
9305
-
9306
- [Mozilla/4.78 (Windows 95; ?) Opera 7.0*]
9307
- Parent=Opera 7.0
9308
- Platform=Win95
9309
- Win32=true
9310
-
9311
- [Mozilla/4.78 (Windows 98; ?) Opera 7.0*]
9312
- Parent=Opera 7.0
9313
- Platform=Win98
9314
- Win32=true
9315
-
9316
- [Mozilla/4.78 (Windows ME; ?) Opera 7.0*]
9317
- Parent=Opera 7.0
9318
- Platform=WinME
9319
- Win32=true
9320
-
9321
- [Mozilla/4.78 (Windows NT 4.0; ?) Opera 7.0*]
9322
- Parent=Opera 7.0
9323
- Platform=WinNT
9324
- Win32=true
9325
-
9326
- [Mozilla/4.78 (Windows NT 5.1; ?) Opera 7.0*]
9327
- Parent=Opera 7.0
9328
- Platform=WinXP
9329
- Win32=true
9330
-
9331
- [Mozilla/4.78 (Windows Windows NT 5.0; ?) Opera 7.0*]
9332
- Parent=Opera 7.0
9333
- Platform=Win2000
9334
- Win32=true
9335
-
9336
- [Mozilla/4.78 (Windows XP; ?) Opera 7.0*]
9337
- Parent=Opera 7.0
9338
- Platform=WinXP
9339
- Win32=true
9340
-
9341
- [Mozilla/5.0 (Windows 2000; ?) Opera 7.0*]
9342
- Parent=Opera 7.0
9343
- Platform=Win2000
9344
- Win32=true
9345
-
9346
- [Mozilla/5.0 (Windows 95; ?) Opera 7.0*]
9347
- Parent=Opera 7.0
9348
- Platform=Win95
9349
- Win32=true
9350
-
9351
- [Mozilla/5.0 (Windows 98; ?) Opera 7.0*]
9352
- Parent=Opera 7.0
9353
- Platform=Win98
9354
- Win32=true
9355
-
9356
- [Mozilla/5.0 (Windows ME; ?) Opera 7.0*]
9357
- Parent=Opera 7.0
9358
- Platform=WinME
9359
- Win32=true
9360
-
9361
- [Mozilla/5.0 (Windows NT 4.0; ?) Opera 7.0*]
9362
- Parent=Opera 7.0
9363
- Platform=WinNT
9364
- Win32=true
9365
-
9366
- [Mozilla/5.0 (Windows NT 5.1; ?) Opera 7.0*]
9367
- Parent=Opera 7.0
9368
- Platform=WinXP
9369
- Win32=true
9370
-
9371
- [Mozilla/5.0 (Windows XP; ?) Opera 7.0*]
9372
- Parent=Opera 7.0
9373
- Platform=WinXP
9374
- Win32=true
9375
-
9376
- [Opera/7.0* (Windows 2000; ?)*]
9377
- Parent=Opera 7.0
9378
- Platform=Win2000
9379
- Win32=true
9380
-
9381
- [Opera/7.0* (Windows 95; ?)*]
9382
- Parent=Opera 7.0
9383
- Platform=Win95
9384
- Win32=true
9385
-
9386
- [Opera/7.0* (Windows 98; ?)*]
9387
- Parent=Opera 7.0
9388
- Platform=Win98
9389
- Win32=true
9390
-
9391
- [Opera/7.0* (Windows ME; ?)*]
9392
- Parent=Opera 7.0
9393
- Platform=WinME
9394
- Win32=true
9395
-
9396
- [Opera/7.0* (Windows NT 4.0; ?)*]
9397
- Parent=Opera 7.0
9398
- Platform=WinNT
9399
- Win32=true
9400
-
9401
- [Opera/7.0* (Windows NT 5.0; ?)*]
9402
- Parent=Opera 7.0
9403
- Platform=Win2000
9404
- Win32=true
9405
-
9406
- [Opera/7.0* (Windows NT 5.1; ?)*]
9407
- Parent=Opera 7.0
9408
- Platform=WinXP
9409
- Win32=true
9410
-
9411
- [Opera/7.0* (Windows XP; ?)*]
9412
- Parent=Opera 7.0
9413
- Platform=WinXP
9414
- Win32=true
9415
-
9416
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.1
9417
-
9418
- [Opera 7.1]
9419
- Parent=DefaultProperties
9420
- Browser="Opera"
9421
- Version=7.1
9422
- MajorVer=7
9423
- MinorVer=1
9424
- Frames=true
9425
- IFrames=true
9426
- Tables=true
9427
- Cookies=true
9428
- BackgroundSounds=true
9429
- JavaApplets=true
9430
- JavaScript=true
9431
- CssVersion=2
9432
- supportsCSS=true
9433
-
9434
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.1*]
9435
- Parent=Opera 7.1
9436
- Platform=Win2000
9437
- Win32=true
9438
-
9439
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.1*]
9440
- Parent=Opera 7.1
9441
- Platform=Win95
9442
- Win32=true
9443
-
9444
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.1*]
9445
- Parent=Opera 7.1
9446
- Platform=Win98
9447
- Win32=true
9448
-
9449
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.1*]
9450
- Parent=Opera 7.1
9451
- Platform=WinME
9452
- Win32=true
9453
-
9454
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.1*]
9455
- Parent=Opera 7.1
9456
- Platform=WinNT
9457
- Win32=true
9458
-
9459
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.1*]
9460
- Parent=Opera 7.1
9461
- Platform=Win2000
9462
- Win32=true
9463
-
9464
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.1*]
9465
- Parent=Opera 7.1
9466
- Platform=WinXP
9467
- Win32=true
9468
-
9469
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.1*]
9470
- Parent=Opera 7.1
9471
- Platform=WinXP
9472
- Win32=true
9473
-
9474
- [Mozilla/?.* (Windows 2000; ?) Opera 7.1*]
9475
- Parent=Opera 7.1
9476
- Platform=Win2000
9477
- Win32=true
9478
-
9479
- [Mozilla/?.* (Windows 95; ?) Opera 7.1*]
9480
- Parent=Opera 7.1
9481
- Platform=Win95
9482
- Win32=true
9483
-
9484
- [Mozilla/?.* (Windows 98; ?) Opera 7.1*]
9485
- Parent=Opera 7.1
9486
- Platform=Win98
9487
- Win32=true
9488
-
9489
- [Mozilla/?.* (Windows ME; ?) Opera 7.1*]
9490
- Parent=Opera 7.1
9491
- Platform=WinME
9492
- Win32=true
9493
-
9494
- [Mozilla/?.* (Windows NT 4.0; U) Opera 7.1*]
9495
- Parent=Opera 7.1
9496
- Platform=WinNT
9497
- Win32=true
9498
-
9499
- [Mozilla/?.* (Windows NT 5.0; U) Opera 7.1*]
9500
- Parent=Opera 7.1
9501
- Platform=Win2000
9502
- Win32=true
9503
-
9504
- [Mozilla/?.* (Windows NT 5.1; ?) Opera 7.1*]
9505
- Parent=Opera 7.1
9506
- Platform=WinXP
9507
- Win32=true
9508
-
9509
- [Opera/7.1* (Linux*; ?)*]
9510
- Parent=Opera 7.1
9511
- Platform=Linux
9512
-
9513
- [Opera/7.1* (Windows 95; ?)*]
9514
- Parent=Opera 7.1
9515
- Platform=Win95
9516
- Win32=true
9517
-
9518
- [Opera/7.1* (Windows 98; ?)*]
9519
- Parent=Opera 7.1
9520
- Platform=Win98
9521
- Win32=true
9522
-
9523
- [Opera/7.1* (Windows ME; ?)*]
9524
- Parent=Opera 7.1
9525
- Platform=WinME
9526
- Win32=true
9527
-
9528
- [Opera/7.1* (Windows NT 4.0; ?)*]
9529
- Parent=Opera 7.1
9530
- Platform=WinNT
9531
- Win32=true
9532
-
9533
- [Opera/7.1* (Windows NT 5.0; ?)*]
9534
- Parent=Opera 7.1
9535
- Platform=Win2000
9536
- Win32=true
9537
-
9538
- [Opera/7.1* (Windows NT 5.1; ?)*]
9539
- Parent=Opera 7.1
9540
- Platform=WinXP
9541
- Win32=true
9542
-
9543
- [Opera/7.1* (Windows XP; ?)*]
9544
- Parent=Opera 7.1
9545
- Platform=WinXP
9546
- Win32=true
9547
-
9548
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.2
9549
-
9550
- [Opera 7.2]
9551
- Parent=DefaultProperties
9552
- Browser="Opera"
9553
- Version=7.2
9554
- MajorVer=7
9555
- MinorVer=2
9556
- Frames=true
9557
- IFrames=true
9558
- Tables=true
9559
- Cookies=true
9560
- BackgroundSounds=true
9561
- JavaApplets=true
9562
- JavaScript=true
9563
- CssVersion=2
9564
- supportsCSS=true
9565
-
9566
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.2*]
9567
- Parent=Opera 7.2
9568
- Platform=Linux
9569
-
9570
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.2*]
9571
- Parent=Opera 7.2
9572
- Platform=Win2000
9573
- Win32=true
9574
-
9575
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.2*]
9576
- Parent=Opera 7.2
9577
- Platform=Win95
9578
- Win32=true
9579
-
9580
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.2*]
9581
- Parent=Opera 7.2
9582
- Platform=Win98
9583
- Win32=true
9584
-
9585
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.2*]
9586
- Parent=Opera 7.2
9587
- Platform=WinME
9588
- Win32=true
9589
-
9590
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.2*]
9591
- Parent=Opera 7.2
9592
- Platform=WinNT
9593
- Win32=true
9594
-
9595
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.2*]
9596
- Parent=Opera 7.2
9597
- Platform=Win2000
9598
- Win32=true
9599
-
9600
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.2*]
9601
- Parent=Opera 7.2
9602
- Platform=WinXP
9603
- Win32=true
9604
-
9605
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.2*]
9606
- Parent=Opera 7.2
9607
- Platform=Win2003
9608
- Win32=true
9609
-
9610
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.2*]
9611
- Parent=Opera 7.2
9612
- Platform=WinXP
9613
- Win32=true
9614
-
9615
- [Mozilla/?.* (Windows 2000; ?) Opera 7.2*]
9616
- Parent=Opera 7.2
9617
- Platform=Win2000
9618
- Win32=true
9619
-
9620
- [Mozilla/?.* (Windows 95; ?) Opera 7.2*]
9621
- Parent=Opera 7.2
9622
- Platform=Win95
9623
- Win32=true
9624
-
9625
- [Mozilla/?.* (Windows 98; ?) Opera 7.2*]
9626
- Parent=Opera 7.2
9627
- Platform=Win98
9628
- Win32=true
9629
-
9630
- [Mozilla/?.* (Windows ME; ?) Opera 7.2*]
9631
- Parent=Opera 7.2
9632
- Platform=WinME
9633
- Win32=true
9634
-
9635
- [Mozilla/?.* (Windows NT 4.0; U) Opera 7.2*]
9636
- Parent=Opera 7.2
9637
- Platform=WinNT
9638
- Win32=true
9639
-
9640
- [Mozilla/?.* (Windows NT 5.0; U) Opera 7.2*]
9641
- Parent=Opera 7.2
9642
- Platform=Win2000
9643
- Win32=true
9644
-
9645
- [Mozilla/?.* (Windows NT 5.1; ?) Opera 7.2*]
9646
- Parent=Opera 7.2
9647
- Platform=WinXP
9648
- Win32=true
9649
-
9650
- [Mozilla/?.* (Windows NT 5.2; ?) Opera 7.2*]
9651
- Parent=Opera 7.2
9652
- Platform=Win2003
9653
- Win32=true
9654
-
9655
- [Opera/7.2* (Linux*; ?)*]
9656
- Parent=Opera 7.2
9657
- Platform=Linux
9658
-
9659
- [Opera/7.2* (Windows 95; ?)*]
9660
- Parent=Opera 7.2
9661
- Platform=Win95
9662
- Win32=true
9663
-
9664
- [Opera/7.2* (Windows 98; ?)*]
9665
- Parent=Opera 7.2
9666
- Platform=Win98
9667
- Win32=true
9668
-
9669
- [Opera/7.2* (Windows ME; ?)*]
9670
- Parent=Opera 7.2
9671
- Platform=WinME
9672
- Win32=true
9673
-
9674
- [Opera/7.2* (Windows NT 4.0; ?)*]
9675
- Parent=Opera 7.2
9676
- Platform=WinNT
9677
- Win32=true
9678
-
9679
- [Opera/7.2* (Windows NT 5.0; ?)*]
9680
- Parent=Opera 7.2
9681
- Platform=Win2000
9682
- Win32=true
9683
-
9684
- [Opera/7.2* (Windows NT 5.1; ?)*]
9685
- Parent=Opera 7.2
9686
- Platform=WinXP
9687
- Win32=true
9688
-
9689
- [Opera/7.2* (Windows NT 5.2; ?)*]
9690
- Parent=Opera 7.2
9691
- Platform=Win2003
9692
- Win32=true
9693
-
9694
- [Opera/7.2* (Windows XP; ?)*]
9695
- Parent=Opera 7.2
9696
- Platform=WinXP
9697
- Win32=true
9698
-
9699
- [Opera/7.2* (X11; FreeBSD*; ?)*]
9700
- Parent=Opera 7.2
9701
- Platform=FreeBSD
9702
-
9703
- [Opera/7.2* (X11; Linux*; ?)*]
9704
- Parent=Opera 7.2
9705
- Platform=Linux
9706
-
9707
- [Opera/7.2* (X11; SunOS*)*]
9708
- Parent=Opera 7.2
9709
- Platform=SunOS
9710
-
9711
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.5
9712
-
9713
- [Opera 7.5]
9714
- Parent=DefaultProperties
9715
- Browser="Opera"
9716
- Version=7.5
9717
- MajorVer=7
9718
- MinorVer=5
9719
- Frames=true
9720
- IFrames=true
9721
- Tables=true
9722
- Cookies=true
9723
- BackgroundSounds=true
9724
- JavaApplets=true
9725
- JavaScript=true
9726
- CssVersion=2
9727
- supportsCSS=true
9728
-
9729
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.5*]
9730
- Parent=Opera 7.5
9731
- Platform=Linux
9732
-
9733
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.5*]
9734
- Parent=Opera 7.5
9735
- Platform=MacPPC
9736
-
9737
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.5*]
9738
- Parent=Opera 7.5
9739
- Platform=Win2000
9740
- Win32=true
9741
-
9742
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.5*]
9743
- Parent=Opera 7.5
9744
- Platform=Win95
9745
- Win32=true
9746
-
9747
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.5*]
9748
- Parent=Opera 7.5
9749
- Platform=Win98
9750
- Win32=true
9751
-
9752
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.5*]
9753
- Parent=Opera 7.5
9754
- Platform=WinME
9755
- Win32=true
9756
-
9757
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.5*]
9758
- Parent=Opera 7.5
9759
- Platform=WinNT
9760
- Win32=true
9761
-
9762
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.5*]
9763
- Parent=Opera 7.5
9764
- Platform=Win2000
9765
- Win32=true
9766
-
9767
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.5*]
9768
- Parent=Opera 7.5
9769
- Platform=WinXP
9770
- Win32=true
9771
-
9772
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.5*]
9773
- Parent=Opera 7.5
9774
- Platform=Win2003
9775
- Win32=true
9776
-
9777
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.5*]
9778
- Parent=Opera 7.5
9779
- Platform=WinXP
9780
- Win32=true
9781
-
9782
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.5*]
9783
- Parent=Opera 7.5
9784
- Platform=Linux
9785
-
9786
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.5*]
9787
- Parent=Opera 7.5
9788
- Platform=MacOSX
9789
-
9790
- [Mozilla/?.* (Windows 2000; ?) Opera 7.5*]
9791
- Parent=Opera 7.5
9792
- Platform=Win2000
9793
- Win32=true
9794
-
9795
- [Mozilla/?.* (Windows 95; ?) Opera 7.5*]
9796
- Parent=Opera 7.5
9797
- Platform=Win95
9798
- Win32=true
9799
-
9800
- [Mozilla/?.* (Windows 98; ?) Opera 7.5*]
9801
- Parent=Opera 7.5
9802
- Platform=Win98
9803
- Win32=true
9804
-
9805
- [Mozilla/?.* (Windows ME; ?) Opera 7.5*]
9806
- Parent=Opera 7.5
9807
- Platform=WinME
9808
- Win32=true
9809
-
9810
- [Mozilla/?.* (Windows NT 4.0; U) Opera 7.5*]
9811
- Parent=Opera 7.5
9812
- Platform=WinNT
9813
- Win32=true
9814
-
9815
- [Mozilla/?.* (Windows NT 5.0; U) Opera 7.5*]
9816
- Parent=Opera 7.5
9817
- Platform=Win2000
9818
- Win32=true
9819
-
9820
- [Mozilla/?.* (Windows NT 5.1; ?) Opera 7.5*]
9821
- Parent=Opera 7.5
9822
- Platform=WinXP
9823
- Win32=true
9824
-
9825
- [Mozilla/?.* (Windows NT 5.2; ?) Opera 7.5*]
9826
- Parent=Opera 7.5
9827
- Platform=Win2003
9828
- Win32=true
9829
-
9830
- [Mozilla/?.* (X11; Linux*; ?) Opera 7.5*]
9831
- Parent=Opera 7.5
9832
- Platform=Linux
9833
-
9834
- [Opera/7.5* (Linux*; ?)*]
9835
- Parent=Opera 7.5
9836
- Platform=Linux
9837
-
9838
- [Opera/7.5* (Macintosh; *Mac OS X; ?)*]
9839
- Parent=Opera 7.5
9840
- Platform=MacOSX
9841
-
9842
- [Opera/7.5* (Windows 95; ?)*]
9843
- Parent=Opera 7.5
9844
- Platform=Win95
9845
- Win32=true
9846
-
9847
- [Opera/7.5* (Windows 98; ?)*]
9848
- Parent=Opera 7.5
9849
- Platform=Win98
9850
- Win32=true
9851
-
9852
- [Opera/7.5* (Windows ME; ?)*]
9853
- Parent=Opera 7.5
9854
- Platform=WinME
9855
- Win32=true
9856
-
9857
- [Opera/7.5* (Windows NT 4.0; ?)*]
9858
- Parent=Opera 7.5
9859
- Platform=WinNT
9860
- Win32=true
9861
-
9862
- [Opera/7.5* (Windows NT 5.0; ?)*]
9863
- Parent=Opera 7.5
9864
- Platform=Win2000
9865
- Win32=true
9866
-
9867
- [Opera/7.5* (Windows NT 5.1; ?)*]
9868
- Parent=Opera 7.5
9869
- Platform=WinXP
9870
- Win32=true
9871
-
9872
- [Opera/7.5* (Windows NT 5.2; ?)*]
9873
- Parent=Opera 7.5
9874
- Platform=Win2003
9875
- Win32=true
9876
-
9877
- [Opera/7.5* (Windows XP; ?)*]
9878
- Parent=Opera 7.5
9879
- Platform=WinXP
9880
- Win32=true
9881
-
9882
- [Opera/7.5* (X11; FreeBSD*; ?)*]
9883
- Parent=Opera 7.5
9884
- Platform=FreeBSD
9885
-
9886
- [Opera/7.5* (X11; Linux*; ?)*]
9887
- Parent=Opera 7.5
9888
- Platform=Linux
9889
-
9890
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.6
9891
-
9892
- [Opera 7.6]
9893
- Parent=DefaultProperties
9894
- Browser="Opera"
9895
- Version=7.6
9896
- MajorVer=7
9897
- MinorVer=6
9898
- Frames=true
9899
- IFrames=true
9900
- Tables=true
9901
- Cookies=true
9902
- BackgroundSounds=true
9903
- JavaApplets=true
9904
- JavaScript=true
9905
- CssVersion=2
9906
- supportsCSS=true
9907
-
9908
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.6*]
9909
- Parent=Opera 7.6
9910
- Platform=Linux
9911
-
9912
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.6*]
9913
- Parent=Opera 7.6
9914
- Platform=MacPPC
9915
-
9916
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.6*]
9917
- Parent=Opera 7.6
9918
- Platform=Win2000
9919
- Win32=true
9920
-
9921
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.6*]
9922
- Parent=Opera 7.6
9923
- Platform=Win95
9924
- Win32=true
9925
-
9926
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.6*]
9927
- Parent=Opera 7.6
9928
- Platform=Win98
9929
- Win32=true
9930
-
9931
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.6*]
9932
- Parent=Opera 7.6
9933
- Platform=WinME
9934
- Win32=true
9935
-
9936
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.6*]
9937
- Parent=Opera 7.6
9938
- Platform=WinNT
9939
- Win32=true
9940
-
9941
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.6*]
9942
- Parent=Opera 7.6
9943
- Platform=Win2000
9944
- Win32=true
9945
-
9946
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.6*]
9947
- Parent=Opera 7.6
9948
- Platform=WinXP
9949
- Win32=true
9950
-
9951
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.6*]
9952
- Parent=Opera 7.6
9953
- Platform=Win2003
9954
- Win32=true
9955
-
9956
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.6*]
9957
- Parent=Opera 7.6
9958
- Platform=WinXP
9959
- Win32=true
9960
-
9961
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.6*]
9962
- Parent=Opera 7.6
9963
- Platform=Linux
9964
-
9965
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.6*]
9966
- Parent=Opera 7.6
9967
- Platform=MacOSX
9968
-
9969
- [Mozilla/?.* (Windows 2000; ?) Opera 7.6*]
9970
- Parent=Opera 7.6
9971
- Platform=Win2000
9972
- Win32=true
9973
-
9974
- [Mozilla/?.* (Windows 95; ?) Opera 7.6*]
9975
- Parent=Opera 7.6
9976
- Platform=Win95
9977
- Win32=true
9978
-
9979
- [Mozilla/?.* (Windows 98; ?) Opera 7.6*]
9980
- Parent=Opera 7.6
9981
- Platform=Win98
9982
- Win32=true
9983
-
9984
- [Mozilla/?.* (Windows ME; ?) Opera 7.6*]
9985
- Parent=Opera 7.6
9986
- Platform=WinME
9987
- Win32=true
9988
-
9989
- [Mozilla/?.* (Windows NT 4.0; U) Opera 7.6*]
9990
- Parent=Opera 7.6
9991
- Platform=WinNT
9992
- Win32=true
9993
-
9994
- [Mozilla/?.* (Windows NT 5.0; U) Opera 7.6*]
9995
- Parent=Opera 7.6
9996
- Platform=Win2000
9997
- Win32=true
9998
-
9999
- [Mozilla/?.* (Windows NT 5.1; ?) Opera 7.6*]
10000
- Parent=Opera 7.6
10001
- Platform=WinXP
10002
- Win32=true
10003
-
10004
- [Mozilla/?.* (Windows NT 5.2; ?) Opera 7.6*]
10005
- Parent=Opera 7.6
10006
- Platform=Win2003
10007
- Win32=true
10008
-
10009
- [Mozilla/?.* (X11; Linux*; ?) Opera 7.6*]
10010
- Parent=Opera 7.6
10011
- Platform=Linux
10012
-
10013
- [Opera/7.6* (Linux*)*]
10014
- Parent=Opera 7.6
10015
- Platform=Linux
10016
-
10017
- [Opera/7.6* (Macintosh; *Mac OS X; ?)*]
10018
- Parent=Opera 7.6
10019
- Platform=MacOSX
10020
-
10021
- [Opera/7.6* (Windows 95*)*]
10022
- Parent=Opera 7.6
10023
- Platform=Win95
10024
- Win32=true
10025
-
10026
- [Opera/7.6* (Windows 98*)*]
10027
- Parent=Opera 7.6
10028
- Platform=Win98
10029
- Win32=true
10030
-
10031
- [Opera/7.6* (Windows ME*)*]
10032
- Parent=Opera 7.6
10033
- Platform=WinME
10034
- Win32=true
10035
-
10036
- [Opera/7.6* (Windows NT 4.0*)*]
10037
- Parent=Opera 7.6
10038
- Platform=WinNT
10039
- Win32=true
10040
-
10041
- [Opera/7.6* (Windows NT 5.0*)*]
10042
- Parent=Opera 7.6
10043
- Platform=Win2000
10044
- Win32=true
10045
-
10046
- [Opera/7.6* (Windows NT 5.1*)*]
10047
- Parent=Opera 7.6
10048
- Platform=WinXP
10049
- Win32=true
10050
-
10051
- [Opera/7.6* (Windows NT 5.2*)*]
10052
- Parent=Opera 7.6
10053
- Platform=Win2003
10054
- Win32=true
10055
-
10056
- [Opera/7.6* (Windows XP*)*]
10057
- Parent=Opera 7.6
10058
- Platform=WinXP
10059
- Win32=true
10060
-
10061
- [Opera/7.6* (X11; FreeBSD*)*]
10062
- Parent=Opera 7.6
10063
- Platform=FreeBSD
10064
-
10065
- [Opera/7.6* (X11; Linux*)*]
10066
- Parent=Opera 7.6
10067
- Platform=Linux
10068
-
10069
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.0
10070
-
10071
- [Opera 8.0]
10072
- Parent=DefaultProperties
10073
- Browser="Opera"
10074
- Version=8.0
10075
- MajorVer=8
10076
- Frames=true
10077
- IFrames=true
10078
- Tables=true
10079
- Cookies=true
10080
- BackgroundSounds=true
10081
- JavaApplets=true
10082
- JavaScript=true
10083
- CssVersion=2
10084
- supportsCSS=true
10085
-
10086
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.0*]
10087
- Parent=Opera 8.0
10088
- Platform=Linux
10089
-
10090
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X; *) Opera 8.0*]
10091
- Parent=Opera 8.0
10092
- Platform=MacOSX
10093
-
10094
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.0*]
10095
- Parent=Opera 8.0
10096
- Platform=MacPPC
10097
-
10098
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.0*]
10099
- Parent=Opera 8.0
10100
- Platform=Win2000
10101
- Win32=true
10102
-
10103
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.0*]
10104
- Parent=Opera 8.0
10105
- Platform=Win95
10106
- Win32=true
10107
-
10108
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.0*]
10109
- Parent=Opera 8.0
10110
- Platform=Win98
10111
- Win32=true
10112
-
10113
- [Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.0*]
10114
- Parent=Opera 8.0
10115
- Platform=WinCE
10116
- Win32=true
10117
-
10118
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.0*]
10119
- Parent=Opera 8.0
10120
- Platform=WinME
10121
- Win32=true
10122
-
10123
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.0*]
10124
- Parent=Opera 8.0
10125
- Platform=WinNT
10126
- Win32=true
10127
-
10128
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.0*]
10129
- Parent=Opera 8.0
10130
- Platform=Win2000
10131
- Win32=true
10132
-
10133
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.0*]
10134
- Parent=Opera 8.0
10135
- Platform=WinXP
10136
- Win32=true
10137
-
10138
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.0*]
10139
- Parent=Opera 8.0
10140
- Platform=Win2003
10141
- Win32=true
10142
-
10143
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.0*]
10144
- Parent=Opera 8.0
10145
- Platform=WinXP
10146
- Win32=true
10147
-
10148
- [Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.0*]
10149
- Parent=Opera 8.0
10150
- Platform=FreeBSD
10151
-
10152
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.0*]
10153
- Parent=Opera 8.0
10154
- Platform=Linux
10155
-
10156
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.0*]
10157
- Parent=Opera 8.0
10158
- Platform=MacOSX
10159
-
10160
- [Mozilla/?.* (Windows 2000; *) Opera 8.0*]
10161
- Parent=Opera 8.0
10162
- Platform=Win2000
10163
- Win32=true
10164
-
10165
- [Mozilla/?.* (Windows 95; *) Opera 8.0*]
10166
- Parent=Opera 8.0
10167
- Platform=Win95
10168
- Win32=true
10169
-
10170
- [Mozilla/?.* (Windows 98; *) Opera 8.0*]
10171
- Parent=Opera 8.0
10172
- Platform=Win98
10173
- Win32=true
10174
-
10175
- [Mozilla/?.* (Windows ME; *) Opera 8.0*]
10176
- Parent=Opera 8.0
10177
- Platform=WinME
10178
- Win32=true
10179
-
10180
- [Mozilla/?.* (Windows NT 4.0; *) Opera 8.0*]
10181
- Parent=Opera 8.0
10182
- Platform=WinNT
10183
- Win32=true
10184
-
10185
- [Mozilla/?.* (Windows NT 5.0; *) Opera 8.0*]
10186
- Parent=Opera 8.0
10187
- Platform=Win2000
10188
- Win32=true
10189
-
10190
- [Mozilla/?.* (Windows NT 5.1; *) Opera 8.0*]
10191
- Parent=Opera 8.0
10192
- Platform=WinXP
10193
- Win32=true
10194
-
10195
- [Mozilla/?.* (Windows NT 5.2; *) Opera 8.0*]
10196
- Parent=Opera 8.0
10197
- Platform=Win2003
10198
- Win32=true
10199
-
10200
- [Mozilla/?.* (X11; Linux*; *) Opera 8.0*]
10201
- Parent=Opera 8.0
10202
- Platform=Linux
10203
-
10204
- [Opera/8.0* (Linux*)*]
10205
- Parent=Opera 8.0
10206
- Platform=Linux
10207
-
10208
- [Opera/8.0* (Macintosh; *Mac OS X; *)*]
10209
- Parent=Opera 8.0
10210
- Platform=MacOSX
10211
-
10212
- [Opera/8.0* (Windows 95*)*]
10213
- Parent=Opera 8.0
10214
- Platform=Win95
10215
- Win32=true
10216
-
10217
- [Opera/8.0* (Windows 98*)*]
10218
- Parent=Opera 8.0
10219
- Platform=Win98
10220
- Win32=true
10221
-
10222
- [Opera/8.0* (Windows CE*)*]
10223
- Parent=Opera 8.0
10224
- Platform=WinCE
10225
- Win32=true
10226
-
10227
- [Opera/8.0* (Windows ME*)*]
10228
- Parent=Opera 8.0
10229
- Platform=WinME
10230
- Win32=true
10231
-
10232
- [Opera/8.0* (Windows NT 4.0*)*]
10233
- Parent=Opera 8.0
10234
- Platform=WinNT
10235
- Win32=true
10236
-
10237
- [Opera/8.0* (Windows NT 5.0*)*]
10238
- Parent=Opera 8.0
10239
- Platform=Win2000
10240
- Win32=true
10241
-
10242
- [Opera/8.0* (Windows NT 5.1*)*]
10243
- Parent=Opera 8.0
10244
- Platform=WinXP
10245
- Win32=true
10246
-
10247
- [Opera/8.0* (Windows NT 5.2*)*]
10248
- Parent=Opera 8.0
10249
- Platform=Win2003
10250
- Win32=true
10251
-
10252
- [Opera/8.0* (Windows XP*)*]
10253
- Parent=Opera 8.0
10254
- Platform=WinXP
10255
- Win32=true
10256
-
10257
- [Opera/8.0* (X11; FreeBSD*)*]
10258
- Parent=Opera 8.0
10259
- Platform=FreeBSD
10260
-
10261
- [Opera/8.0* (X11; Linux*)*]
10262
- Parent=Opera 8.0
10263
- Platform=Linux
10264
-
10265
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.1
10266
-
10267
- [Opera 8.1]
10268
- Parent=DefaultProperties
10269
- Browser="Opera"
10270
- Version=8.1
10271
- MajorVer=8
10272
- MinorVer=1
10273
- Frames=true
10274
- IFrames=true
10275
- Tables=true
10276
- Cookies=true
10277
- BackgroundSounds=true
10278
- JavaApplets=true
10279
- JavaScript=true
10280
- CssVersion=2
10281
- supportsCSS=true
10282
-
10283
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.1*]
10284
- Parent=Opera 8.1
10285
- Platform=Linux
10286
-
10287
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.1*]
10288
- Parent=Opera 8.1
10289
- Platform=MacPPC
10290
-
10291
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.1*]
10292
- Parent=Opera 8.1
10293
- Platform=Win2000
10294
- Win32=true
10295
-
10296
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.1*]
10297
- Parent=Opera 8.1
10298
- Platform=Win95
10299
- Win32=true
10300
-
10301
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.1*]
10302
- Parent=Opera 8.1
10303
- Platform=Win98
10304
- Win32=true
10305
-
10306
- [Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.1*]
10307
- Parent=Opera 8.1
10308
- Platform=WinCE
10309
- Win32=true
10310
-
10311
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.1*]
10312
- Parent=Opera 8.1
10313
- Platform=WinME
10314
- Win32=true
10315
-
10316
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.1*]
10317
- Parent=Opera 8.1
10318
- Platform=WinNT
10319
- Win32=true
10320
-
10321
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.1*]
10322
- Parent=Opera 8.1
10323
- Platform=Win2000
10324
- Win32=true
10325
-
10326
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.1*]
10327
- Parent=Opera 8.1
10328
- Platform=WinXP
10329
- Win32=true
10330
-
10331
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.1*]
10332
- Parent=Opera 8.1
10333
- Platform=Win2003
10334
- Win32=true
10335
-
10336
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.1*]
10337
- Parent=Opera 8.1
10338
- Platform=WinXP
10339
- Win32=true
10340
-
10341
- [Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.1*]
10342
- Parent=Opera 8.1
10343
- Platform=FreeBSD
10344
-
10345
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.1*]
10346
- Parent=Opera 8.1
10347
- Platform=Linux
10348
-
10349
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.1*]
10350
- Parent=Opera 8.1
10351
- Platform=MacOSX
10352
-
10353
- [Mozilla/?.* (Windows 2000; *) Opera 8.1*]
10354
- Parent=Opera 8.1
10355
- Platform=Win2000
10356
- Win32=true
10357
-
10358
- [Mozilla/?.* (Windows 95; *) Opera 8.1*]
10359
- Parent=Opera 8.1
10360
- Platform=Win95
10361
- Win32=true
10362
-
10363
- [Mozilla/?.* (Windows 98; *) Opera 8.1*]
10364
- Parent=Opera 8.1
10365
- Platform=Win98
10366
- Win32=true
10367
-
10368
- [Mozilla/?.* (Windows ME; *) Opera 8.1*]
10369
- Parent=Opera 8.1
10370
- Platform=WinME
10371
- Win32=true
10372
-
10373
- [Mozilla/?.* (Windows NT 4.0; *) Opera 8.1*]
10374
- Parent=Opera 8.1
10375
- Platform=WinNT
10376
- Win32=true
10377
-
10378
- [Mozilla/?.* (Windows NT 5.0; *) Opera 8.1*]
10379
- Parent=Opera 8.1
10380
- Platform=Win2000
10381
- Win32=true
10382
-
10383
- [Mozilla/?.* (Windows NT 5.1; *) Opera 8.1*]
10384
- Parent=Opera 8.1
10385
- Platform=WinXP
10386
- Win32=true
10387
-
10388
- [Mozilla/?.* (Windows NT 5.2; *) Opera 8.1*]
10389
- Parent=Opera 8.1
10390
- Platform=Win2003
10391
- Win32=true
10392
-
10393
- [Mozilla/?.* (X11; Linux*; *) Opera 8.1*]
10394
- Parent=Opera 8.1
10395
- Platform=Linux
10396
-
10397
- [Opera/8.1* (Linux*)*]
10398
- Parent=Opera 8.1
10399
- Platform=Linux
10400
-
10401
- [Opera/8.1* (Macintosh; *Mac OS X; *)*]
10402
- Parent=Opera 8.1
10403
- Platform=MacOSX
10404
-
10405
- [Opera/8.1* (Windows 95*)*]
10406
- Parent=Opera 8.1
10407
- Platform=Win95
10408
- Win32=true
10409
-
10410
- [Opera/8.1* (Windows 98*)*]
10411
- Parent=Opera 8.1
10412
- Platform=Win98
10413
- Win32=true
10414
-
10415
- [Opera/8.1* (Windows CE*)*]
10416
- Parent=Opera 8.1
10417
- Platform=WinCE
10418
- Win32=true
10419
-
10420
- [Opera/8.1* (Windows ME*)*]
10421
- Parent=Opera 8.1
10422
- Platform=WinME
10423
- Win32=true
10424
-
10425
- [Opera/8.1* (Windows NT 4.0*)*]
10426
- Parent=Opera 8.1
10427
- Platform=WinNT
10428
- Win32=true
10429
-
10430
- [Opera/8.1* (Windows NT 5.0*)*]
10431
- Parent=Opera 8.1
10432
- Platform=Win2000
10433
- Win32=true
10434
-
10435
- [Opera/8.1* (Windows NT 5.1*)*]
10436
- Parent=Opera 8.1
10437
- Platform=WinXP
10438
- Win32=true
10439
-
10440
- [Opera/8.1* (Windows NT 5.2*)*]
10441
- Parent=Opera 8.1
10442
- Platform=Win2003
10443
- Win32=true
10444
-
10445
- [Opera/8.1* (Windows XP*)*]
10446
- Parent=Opera 8.1
10447
- Platform=WinXP
10448
- Win32=true
10449
-
10450
- [Opera/8.1* (X11; FreeBSD*)*]
10451
- Parent=Opera 8.1
10452
- Platform=FreeBSD
10453
-
10454
- [Opera/8.1* (X11; Linux*)*]
10455
- Parent=Opera 8.1
10456
- Platform=Linux
10457
-
10458
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.5
10459
-
10460
- [Opera 8.5]
10461
- Parent=DefaultProperties
10462
- Browser="Opera"
10463
- Version=8.5
10464
- MajorVer=8
10465
- MinorVer=5
10466
- Frames=true
10467
- IFrames=true
10468
- Tables=true
10469
- Cookies=true
10470
- BackgroundSounds=true
10471
- JavaApplets=true
10472
- JavaScript=true
10473
- CssVersion=2
10474
- supportsCSS=true
10475
-
10476
- [Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.5*]
10477
- Parent=Opera 8.5
10478
- Platform=Linux
10479
-
10480
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X;*) Opera 8.5*]
10481
- Parent=Opera 8.5
10482
- Platform=MacOSX
10483
-
10484
- [Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.5*]
10485
- Parent=Opera 8.5
10486
- Platform=MacPPC
10487
-
10488
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.5*]
10489
- Parent=Opera 8.5
10490
- Platform=Win2000
10491
- Win32=true
10492
-
10493
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.5*]
10494
- Parent=Opera 8.5
10495
- Platform=Win95
10496
- Win32=true
10497
-
10498
- [Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.5*]
10499
- Parent=Opera 8.5
10500
- Platform=Win98
10501
- Win32=true
10502
-
10503
- [Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.5*]
10504
- Parent=Opera 8.5
10505
- Platform=WinCE
10506
- Win32=true
10507
-
10508
- [Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.5*]
10509
- Parent=Opera 8.5
10510
- Platform=WinME
10511
- Win32=true
10512
-
10513
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.5*]
10514
- Parent=Opera 8.5
10515
- Platform=WinNT
10516
- Win32=true
10517
-
10518
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.5*]
10519
- Parent=Opera 8.5
10520
- Platform=Win2000
10521
- Win32=true
10522
-
10523
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.5*]
10524
- Parent=Opera 8.5
10525
- Platform=WinXP
10526
- Win32=true
10527
-
10528
- [Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.5*]
10529
- Parent=Opera 8.5
10530
- Platform=Win2003
10531
- Win32=true
10532
-
10533
- [Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.5*]
10534
- Parent=Opera 8.5
10535
- Platform=WinXP
10536
- Win32=true
10537
-
10538
- [Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.5*]
10539
- Parent=Opera 8.5
10540
- Platform=FreeBSD
10541
-
10542
- [Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.5*]
10543
- Parent=Opera 8.5
10544
- Platform=Linux
10545
-
10546
- [Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.5*]
10547
- Parent=Opera 8.5
10548
- Platform=MacOSX
10549
-
10550
- [Mozilla/?.* (Macintosh; PPC Mac OS X;*) Opera 8.5*]
10551
- Parent=Opera 8.5
10552
- Platform=MacOSX
10553
-
10554
- [Mozilla/?.* (Windows 2000; *) Opera 8.5*]
10555
- Parent=Opera 8.5
10556
- Platform=Win2000
10557
- Win32=true
10558
-
10559
- [Mozilla/?.* (Windows 95; *) Opera 8.5*]
10560
- Parent=Opera 8.5
10561
- Platform=Win95
10562
- Win32=true
10563
-
10564
- [Mozilla/?.* (Windows 98; *) Opera 8.5*]
10565
- Parent=Opera 8.5
10566
- Platform=Win98
10567
- Win32=true
10568
-
10569
- [Mozilla/?.* (Windows ME; *) Opera 8.5*]
10570
- Parent=Opera 8.5
10571
- Platform=WinME
10572
- Win32=true
10573
-
10574
- [Mozilla/?.* (Windows NT 4.0; *) Opera 8.5*]
10575
- Parent=Opera 8.5
10576
- Platform=WinNT
10577
- Win32=true
10578
-
10579
- [Mozilla/?.* (Windows NT 5.0; *) Opera 8.5*]
10580
- Parent=Opera 8.5
10581
- Platform=Win2000
10582
- Win32=true
10583
-
10584
- [Mozilla/?.* (Windows NT 5.1; *) Opera 8.5*]
10585
- Parent=Opera 8.5
10586
- Platform=WinXP
10587
- Win32=true
10588
-
10589
- [Mozilla/?.* (Windows NT 5.2; *) Opera 8.5*]
10590
- Parent=Opera 8.5
10591
- Platform=Win2003
10592
- Win32=true
10593
-
10594
- [Mozilla/?.* (X11; Linux*; *) Opera 8.5*]
10595
- Parent=Opera 8.5
10596
- Platform=Linux
10597
-
10598
- [Opera/8.5* (Linux*)*]
10599
- Parent=Opera 8.5
10600
- Platform=Linux
10601
-
10602
- [Opera/8.5* (Macintosh; *Mac OS X; *)*]
10603
- Parent=Opera 8.5
10604
- Platform=MacOSX
10605
-
10606
- [Opera/8.5* (Windows 95*)*]
10607
- Parent=Opera 8.5
10608
- Platform=Win95
10609
- Win32=true
10610
-
10611
- [Opera/8.5* (Windows 98*)*]
10612
- Parent=Opera 8.5
10613
- Platform=Win98
10614
- Win32=true
10615
-
10616
- [Opera/8.5* (Windows CE*)*]
10617
- Parent=Opera 8.5
10618
- Platform=WinCE
10619
- Win32=true
10620
-
10621
- [Opera/8.5* (Windows ME*)*]
10622
- Parent=Opera 8.5
10623
- Platform=WinME
10624
- Win32=true
10625
-
10626
- [Opera/8.5* (Windows NT 4.0*)*]
10627
- Parent=Opera 8.5
10628
- Platform=WinNT
10629
- Win32=true
10630
-
10631
- [Opera/8.5* (Windows NT 5.0*)*]
10632
- Parent=Opera 8.5
10633
- Platform=Win2000
10634
- Win32=true
10635
-
10636
- [Opera/8.5* (Windows NT 5.1*)*]
10637
- Parent=Opera 8.5
10638
- Platform=WinXP
10639
- Win32=true
10640
-
10641
- [Opera/8.5* (Windows NT 5.2*)*]
10642
- Parent=Opera 8.5
10643
- Platform=Win2003
10644
- Win32=true
10645
-
10646
- [Opera/8.5* (Windows XP*)*]
10647
- Parent=Opera 8.5
10648
- Platform=WinXP
10649
- Win32=true
10650
-
10651
- [Opera/8.5* (X11; FreeBSD*)*]
10652
- Parent=Opera 8.5
10653
- Platform=FreeBSD
10654
-
10655
- [Opera/8.5* (X11; Linux*)*]
10656
- Parent=Opera 8.5
10657
- Platform=Linux
10658
-
10659
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.0
10660
-
10661
- [Opera 9.0]
10662
- Parent=DefaultProperties
10663
- Browser="Opera"
10664
- Version=9.0
10665
- MajorVer=9
10666
- Frames=true
10667
- IFrames=true
10668
- Tables=true
10669
- Cookies=true
10670
- BackgroundSounds=true
10671
- JavaApplets=true
10672
- JavaScript=true
10673
- CssVersion=2
10674
- supportsCSS=true
10675
-
10676
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.0*]
10677
- Parent=Opera 9.0
10678
- Platform=Linux
10679
-
10680
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.0*]
10681
- Parent=Opera 9.0
10682
- Platform=MacOSX
10683
-
10684
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.0*]
10685
- Parent=Opera 9.0
10686
- Platform=MacPPC
10687
-
10688
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.0*]
10689
- Parent=Opera 9.0
10690
- Platform=Win2000
10691
- Win32=true
10692
-
10693
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.0*]
10694
- Parent=Opera 9.0
10695
- Platform=Win95
10696
- Win32=true
10697
-
10698
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.0*]
10699
- Parent=Opera 9.0
10700
- Platform=Win98
10701
- Win32=true
10702
-
10703
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.0*]
10704
- Parent=Opera 9.0
10705
- Platform=WinCE
10706
- Win32=true
10707
-
10708
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.0*]
10709
- Parent=Opera 9.0
10710
- Platform=WinME
10711
- Win32=true
10712
-
10713
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.0*]
10714
- Parent=Opera 9.0
10715
- Platform=WinNT
10716
- Win32=true
10717
-
10718
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.0*]
10719
- Parent=Opera 9.0
10720
- Platform=Win2000
10721
- Win32=true
10722
-
10723
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.0*]
10724
- Parent=Opera 9.0
10725
- Platform=WinXP
10726
- Win32=true
10727
-
10728
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.0*]
10729
- Parent=Opera 9.0
10730
- Platform=Win2003
10731
- Win32=true
10732
-
10733
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.0*]
10734
- Parent=Opera 9.0
10735
- Platform=WinVista
10736
- Win32=true
10737
-
10738
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.0*]
10739
- Parent=Opera 9.0
10740
- Platform=WinXP
10741
- Win32=true
10742
-
10743
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.0*]
10744
- Parent=Opera 9.0
10745
- Platform=FreeBSD
10746
-
10747
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.0*]
10748
- Parent=Opera 9.0
10749
- Platform=Linux
10750
-
10751
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.0*]
10752
- Parent=Opera 9.0
10753
- Platform=SunOS
10754
-
10755
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.0*]
10756
- Parent=Opera 9.0
10757
- Platform=MacOSX
10758
-
10759
- [Mozilla/* (Windows 2000;*) Opera 9.0*]
10760
- Parent=Opera 9.0
10761
- Platform=Win2000
10762
- Win32=true
10763
-
10764
- [Mozilla/* (Windows 95;*) Opera 9.0*]
10765
- Parent=Opera 9.0
10766
- Platform=Win95
10767
- Win32=true
10768
-
10769
- [Mozilla/* (Windows 98;*) Opera 9.0*]
10770
- Parent=Opera 9.0
10771
- Platform=Win98
10772
- Win32=true
10773
-
10774
- [Mozilla/* (Windows ME;*) Opera 9.0*]
10775
- Parent=Opera 9.0
10776
- Platform=WinME
10777
- Win32=true
10778
-
10779
- [Mozilla/* (Windows NT 4.0;*) Opera 9.0*]
10780
- Parent=Opera 9.0
10781
- Platform=WinNT
10782
- Win32=true
10783
-
10784
- [Mozilla/* (Windows NT 5.0;*) Opera 9.0*]
10785
- Parent=Opera 9.0
10786
- Platform=Win2000
10787
- Win32=true
10788
-
10789
- [Mozilla/* (Windows NT 5.1;*) Opera 9.0*]
10790
- Parent=Opera 9.0
10791
- Platform=WinXP
10792
- Win32=true
10793
-
10794
- [Mozilla/* (Windows NT 5.2;*) Opera 9.0*]
10795
- Parent=Opera 9.0
10796
- Platform=Win2003
10797
- Win32=true
10798
-
10799
- [Mozilla/* (X11; Linux*) Opera 9.0*]
10800
- Parent=Opera 9.0
10801
- Platform=Linux
10802
-
10803
- [Opera/9.0* (Linux*)*]
10804
- Parent=Opera 9.0
10805
- Platform=Linux
10806
-
10807
- [Opera/9.0* (Macintosh; *Mac OS X;*)*]
10808
- Parent=Opera 9.0
10809
- Platform=MacOSX
10810
-
10811
- [Opera/9.0* (Windows 95*)*]
10812
- Parent=Opera 9.0
10813
- Platform=Win95
10814
- Win32=true
10815
-
10816
- [Opera/9.0* (Windows 98*)*]
10817
- Parent=Opera 9.0
10818
- Platform=Win98
10819
- Win32=true
10820
-
10821
- [Opera/9.0* (Windows CE*)*]
10822
- Parent=Opera 9.0
10823
- Platform=WinCE
10824
- Win32=true
10825
-
10826
- [Opera/9.0* (Windows ME*)*]
10827
- Parent=Opera 9.0
10828
- Platform=WinME
10829
- Win32=true
10830
-
10831
- [Opera/9.0* (Windows NT 4.0*)*]
10832
- Parent=Opera 9.0
10833
- Platform=WinNT
10834
- Win32=true
10835
-
10836
- [Opera/9.0* (Windows NT 5.0*)*]
10837
- Parent=Opera 9.0
10838
- Platform=Win2000
10839
- Win32=true
10840
-
10841
- [Opera/9.0* (Windows NT 5.1*)*]
10842
- Parent=Opera 9.0
10843
- Platform=WinXP
10844
- Win32=true
10845
-
10846
- [Opera/9.0* (Windows NT 5.2*)*]
10847
- Parent=Opera 9.0
10848
- Platform=Win2003
10849
- Win32=true
10850
-
10851
- [Opera/9.0* (Windows NT 6.0*)*]
10852
- Parent=Opera 9.0
10853
- Platform=WinVista
10854
- Win32=true
10855
-
10856
- [Opera/9.0* (Windows XP*)*]
10857
- Parent=Opera 9.0
10858
- Platform=WinXP
10859
- Win32=true
10860
-
10861
- [Opera/9.0* (X11; FreeBSD*)*]
10862
- Parent=Opera 9.0
10863
- Platform=FreeBSD
10864
-
10865
- [Opera/9.0* (X11; Linux*)*]
10866
- Parent=Opera 9.0
10867
- Platform=Linux
10868
-
10869
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.1
10870
-
10871
- [Opera 9.1]
10872
- Parent=DefaultProperties
10873
- Browser="Opera"
10874
- Version=9.1
10875
- MajorVer=9
10876
- MinorVer=1
10877
- Frames=true
10878
- IFrames=true
10879
- Tables=true
10880
- Cookies=true
10881
- BackgroundSounds=true
10882
- JavaApplets=true
10883
- JavaScript=true
10884
- CssVersion=2
10885
- supportsCSS=true
10886
-
10887
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.1*]
10888
- Parent=Opera 9.1
10889
- Platform=Linux
10890
-
10891
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.1*]
10892
- Parent=Opera 9.1
10893
- Platform=MacOSX
10894
-
10895
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC;*) Opera 9.1*]
10896
- Parent=Opera 9.1
10897
- Platform=MacPPC
10898
-
10899
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.1*]
10900
- Parent=Opera 9.1
10901
- Platform=Win2000
10902
- Win32=true
10903
-
10904
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.1*]
10905
- Parent=Opera 9.1
10906
- Platform=Win95
10907
- Win32=true
10908
-
10909
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.1*]
10910
- Parent=Opera 9.1
10911
- Platform=Win98
10912
- Win32=true
10913
-
10914
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.1*]
10915
- Parent=Opera 9.1
10916
- Platform=WinCE
10917
- Win32=true
10918
-
10919
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.1*]
10920
- Parent=Opera 9.1
10921
- Platform=WinME
10922
- Win32=true
10923
-
10924
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.1*]
10925
- Parent=Opera 9.1
10926
- Platform=WinNT
10927
- Win32=true
10928
-
10929
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.1*]
10930
- Parent=Opera 9.1
10931
- Platform=Win2000
10932
- Win32=true
10933
-
10934
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.1*]
10935
- Parent=Opera 9.1
10936
- Platform=WinXP
10937
- Win32=true
10938
-
10939
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.1*]
10940
- Parent=Opera 9.1
10941
- Platform=Win2003
10942
- Win32=true
10943
-
10944
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.1*]
10945
- Parent=Opera 9.1
10946
- Platform=WinVista
10947
- Win32=true
10948
-
10949
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.1*]
10950
- Parent=Opera 9.1
10951
- Platform=WinXP
10952
- Win32=true
10953
-
10954
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.1*]
10955
- Parent=Opera 9.1
10956
- Platform=FreeBSD
10957
-
10958
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.1*]
10959
- Parent=Opera 9.1
10960
- Platform=Linux
10961
-
10962
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.1*]
10963
- Parent=Opera 9.1
10964
- Platform=SunOS
10965
-
10966
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.1*]
10967
- Parent=Opera 9.1
10968
- Platform=MacOSX
10969
-
10970
- [Mozilla/* (Windows 2000;*) Opera 9.1*]
10971
- Parent=Opera 9.1
10972
- Platform=Win2000
10973
- Win32=true
10974
-
10975
- [Mozilla/* (Windows 95;*) Opera 9.1*]
10976
- Parent=Opera 9.1
10977
- Platform=Win95
10978
- Win32=true
10979
-
10980
- [Mozilla/* (Windows 98;*) Opera 9.1*]
10981
- Parent=Opera 9.1
10982
- Platform=Win98
10983
- Win32=true
10984
-
10985
- [Mozilla/* (Windows ME;*) Opera 9.1*]
10986
- Parent=Opera 9.1
10987
- Platform=WinME
10988
- Win32=true
10989
-
10990
- [Mozilla/* (Windows NT 4.0;*) Opera 9.1*]
10991
- Parent=Opera 9.1
10992
- Platform=WinNT
10993
- Win32=true
10994
-
10995
- [Mozilla/* (Windows NT 5.0;*) Opera 9.1*]
10996
- Parent=Opera 9.1
10997
- Platform=Win2000
10998
- Win32=true
10999
-
11000
- [Mozilla/* (Windows NT 5.1;*) Opera 9.1*]
11001
- Parent=Opera 9.1
11002
- Platform=WinXP
11003
- Win32=true
11004
-
11005
- [Mozilla/* (Windows NT 5.2;*) Opera 9.1*]
11006
- Parent=Opera 9.1
11007
- Platform=Win2003
11008
- Win32=true
11009
-
11010
- [Mozilla/* (X11; Linux*) Opera 9.1*]
11011
- Parent=Opera 9.1
11012
- Platform=Linux
11013
-
11014
- [Opera/9.1* (Linux*)*]
11015
- Parent=Opera 9.1
11016
- Platform=Linux
11017
-
11018
- [Opera/9.1* (Macintosh; *Mac OS X;*)*]
11019
- Parent=Opera 9.1
11020
- Platform=MacOSX
11021
-
11022
- [Opera/9.1* (Windows 95*)*]
11023
- Parent=Opera 9.1
11024
- Platform=Win95
11025
- Win32=true
11026
-
11027
- [Opera/9.1* (Windows 98*)*]
11028
- Parent=Opera 9.1
11029
- Platform=Win98
11030
- Win32=true
11031
-
11032
- [Opera/9.1* (Windows CE*)*]
11033
- Parent=Opera 9.1
11034
- Platform=WinCE
11035
- Win32=true
11036
-
11037
- [Opera/9.1* (Windows ME*)*]
11038
- Parent=Opera 9.1
11039
- Platform=WinME
11040
- Win32=true
11041
-
11042
- [Opera/9.1* (Windows NT 4.0*)*]
11043
- Parent=Opera 9.1
11044
- Platform=WinNT
11045
- Win32=true
11046
-
11047
- [Opera/9.1* (Windows NT 5.0*)*]
11048
- Parent=Opera 9.1
11049
- Platform=Win2000
11050
- Win32=true
11051
-
11052
- [Opera/9.1* (Windows NT 5.1*)*]
11053
- Parent=Opera 9.1
11054
- Platform=WinXP
11055
- Win32=true
11056
-
11057
- [Opera/9.1* (Windows NT 5.2*)*]
11058
- Parent=Opera 9.1
11059
- Platform=Win2003
11060
- Win32=true
11061
-
11062
- [Opera/9.1* (Windows NT 6.0*)*]
11063
- Parent=Opera 9.1
11064
- Platform=WinVista
11065
- Win32=true
11066
-
11067
- [Opera/9.1* (Windows XP*)*]
11068
- Parent=Opera 9.1
11069
- Platform=WinXP
11070
- Win32=true
11071
-
11072
- [Opera/9.1* (X11; FreeBSD*)*]
11073
- Parent=Opera 9.1
11074
- Platform=FreeBSD
11075
-
11076
- [Opera/9.1* (X11; Linux*)*]
11077
- Parent=Opera 9.1
11078
- Platform=Linux
11079
-
11080
- [Opera/9.1* (X11; SunOS*)*]
11081
- Parent=Opera 9.1
11082
- Platform=SunOS
11083
-
11084
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.2
11085
-
11086
- [Opera 9.2]
11087
- Parent=DefaultProperties
11088
- Browser="Opera"
11089
- Version=9.2
11090
- MajorVer=9
11091
- MinorVer=2
11092
- Frames=true
11093
- IFrames=true
11094
- Tables=true
11095
- Cookies=true
11096
- BackgroundSounds=true
11097
- JavaApplets=true
11098
- JavaScript=true
11099
- CssVersion=2
11100
- supportsCSS=true
11101
-
11102
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.2*]
11103
- Parent=Opera 9.2
11104
- Platform=Linux
11105
-
11106
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.2*]
11107
- Parent=Opera 9.2
11108
- Platform=MacOSX
11109
-
11110
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.2*]
11111
- Parent=Opera 9.2
11112
- Platform=MacPPC
11113
-
11114
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.2*]
11115
- Parent=Opera 9.2
11116
- Platform=Win2000
11117
- Win32=true
11118
-
11119
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.2*]
11120
- Parent=Opera 9.2
11121
- Platform=Win95
11122
- Win32=true
11123
-
11124
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.2*]
11125
- Parent=Opera 9.2
11126
- Platform=Win98
11127
- Win32=true
11128
-
11129
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.2*]
11130
- Parent=Opera 9.2
11131
- Platform=WinCE
11132
- Win32=true
11133
-
11134
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.2*]
11135
- Parent=Opera 9.2
11136
- Platform=WinME
11137
- Win32=true
11138
-
11139
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.2*]
11140
- Parent=Opera 9.2
11141
- Platform=WinNT
11142
- Win32=true
11143
-
11144
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.2*]
11145
- Parent=Opera 9.2
11146
- Platform=Win2000
11147
- Win32=true
11148
-
11149
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.2*]
11150
- Parent=Opera 9.2
11151
- Platform=WinXP
11152
- Win32=true
11153
-
11154
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.2*]
11155
- Parent=Opera 9.2
11156
- Platform=Win2003
11157
- Win32=true
11158
-
11159
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.2*]
11160
- Parent=Opera 9.2
11161
- Platform=WinVista
11162
- Win32=true
11163
-
11164
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.2*]
11165
- Parent=Opera 9.2
11166
- Platform=Win7
11167
-
11168
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.2*]
11169
- Parent=Opera 9.2
11170
- Platform=WinXP
11171
- Win32=true
11172
-
11173
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.2*]
11174
- Parent=Opera 9.2
11175
- Platform=FreeBSD
11176
-
11177
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.2*]
11178
- Parent=Opera 9.2
11179
- Platform=Linux
11180
-
11181
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.2*]
11182
- Parent=Opera 9.2
11183
- Platform=SunOS
11184
-
11185
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.2*]
11186
- Parent=Opera 9.2
11187
- Platform=MacOSX
11188
-
11189
- [Mozilla/* (Windows 2000;*) Opera 9.2*]
11190
- Parent=Opera 9.2
11191
- Platform=Win2000
11192
- Win32=true
11193
-
11194
- [Mozilla/* (Windows 95;*) Opera 9.2*]
11195
- Parent=Opera 9.2
11196
- Platform=Win95
11197
- Win32=true
11198
-
11199
- [Mozilla/* (Windows 98;*) Opera 9.2*]
11200
- Parent=Opera 9.2
11201
- Platform=Win98
11202
- Win32=true
11203
-
11204
- [Mozilla/* (Windows ME;*) Opera 9.2*]
11205
- Parent=Opera 9.2
11206
- Platform=WinME
11207
- Win32=true
11208
-
11209
- [Mozilla/* (Windows NT 4.0;*) Opera 9.2*]
11210
- Parent=Opera 9.2
11211
- Platform=WinNT
11212
- Win32=true
11213
-
11214
- [Mozilla/* (Windows NT 5.0;*) Opera 9.2*]
11215
- Parent=Opera 9.2
11216
- Platform=Win2000
11217
- Win32=true
11218
-
11219
- [Mozilla/* (Windows NT 5.1;*) Opera 9.2*]
11220
- Parent=Opera 9.2
11221
- Platform=WinXP
11222
- Win32=true
11223
-
11224
- [Mozilla/* (Windows NT 5.2;*) Opera 9.2*]
11225
- Parent=Opera 9.2
11226
- Platform=Win2003
11227
- Win32=true
11228
-
11229
- [Mozilla/* (Windows NT 6.0;*) Opera 9.2*]
11230
- Parent=Opera 9.2
11231
- Platform=WinVista
11232
-
11233
- [Mozilla/* (Windows NT 6.1;*) Opera 9.2*]
11234
- Parent=Opera 9.2
11235
- Platform=Win7
11236
-
11237
- [Mozilla/* (X11; Linux*) Opera 9.2*]
11238
- Parent=Opera 9.2
11239
- Platform=Linux
11240
-
11241
- [Opera/9.2* (Linux*)*]
11242
- Parent=Opera 9.2
11243
- Platform=Linux
11244
-
11245
- [Opera/9.2* (Macintosh; *Mac OS X;*)*]
11246
- Parent=Opera 9.2
11247
- Platform=MacOSX
11248
-
11249
- [Opera/9.2* (Windows 95*)*]
11250
- Parent=Opera 9.2
11251
- Platform=Win95
11252
- Win32=true
11253
-
11254
- [Opera/9.2* (Windows 98*)*]
11255
- Parent=Opera 9.2
11256
- Platform=Win98
11257
- Win32=true
11258
-
11259
- [Opera/9.2* (Windows CE*)*]
11260
- Parent=Opera 9.2
11261
- Platform=WinCE
11262
- Win32=true
11263
-
11264
- [Opera/9.2* (Windows ME*)*]
11265
- Parent=Opera 9.2
11266
- Platform=WinME
11267
- Win32=true
11268
-
11269
- [Opera/9.2* (Windows NT 4.0*)*]
11270
- Parent=Opera 9.2
11271
- Platform=WinNT
11272
- Win32=true
11273
-
11274
- [Opera/9.2* (Windows NT 5.0*)*]
11275
- Parent=Opera 9.2
11276
- Platform=Win2000
11277
- Win32=true
11278
-
11279
- [Opera/9.2* (Windows NT 5.1*)*]
11280
- Parent=Opera 9.2
11281
- Platform=WinXP
11282
- Win32=true
11283
-
11284
- [Opera/9.2* (Windows NT 5.2*)*]
11285
- Parent=Opera 9.2
11286
- Platform=Win2003
11287
- Win32=true
11288
-
11289
- [Opera/9.2* (Windows NT 6.0*)*]
11290
- Parent=Opera 9.2
11291
- Platform=WinVista
11292
- Win32=true
11293
-
11294
- [Opera/9.2* (Windows NT 6.1*)*]
11295
- Parent=Opera 9.2
11296
- Platform=Win7
11297
-
11298
- [Opera/9.2* (Windows XP*)*]
11299
- Parent=Opera 9.2
11300
- Platform=WinXP
11301
- Win32=true
11302
-
11303
- [Opera/9.2* (X11; FreeBSD*)*]
11304
- Parent=Opera 9.2
11305
- Platform=FreeBSD
11306
-
11307
- [Opera/9.2* (X11; Linux*)*]
11308
- Parent=Opera 9.2
11309
- Platform=Linux
11310
-
11311
- [Opera/9.2* (X11; SunOS*)*]
11312
- Parent=Opera 9.2
11313
- Platform=SunOS
11314
-
11315
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.3
11316
-
11317
- [Opera 9.3]
11318
- Parent=DefaultProperties
11319
- Browser="Opera"
11320
- Version=9.3
11321
- MajorVer=9
11322
- MinorVer=3
11323
- Frames=true
11324
- IFrames=true
11325
- Tables=true
11326
- Cookies=true
11327
- BackgroundSounds=true
11328
- JavaApplets=true
11329
- JavaScript=true
11330
- CssVersion=2
11331
- supportsCSS=true
11332
-
11333
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.3*]
11334
- Parent=Opera 9.3
11335
- Platform=Linux
11336
-
11337
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.3*]
11338
- Parent=Opera 9.3
11339
- Platform=MacOSX
11340
-
11341
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.3*]
11342
- Parent=Opera 9.3
11343
- Platform=MacPPC
11344
-
11345
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.3*]
11346
- Parent=Opera 9.3
11347
- Platform=Win2000
11348
- Win32=true
11349
-
11350
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.3*]
11351
- Parent=Opera 9.3
11352
- Platform=Win95
11353
- Win32=true
11354
-
11355
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.3*]
11356
- Parent=Opera 9.3
11357
- Platform=Win98
11358
- Win32=true
11359
-
11360
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.3*]
11361
- Parent=Opera 9.3
11362
- Platform=WinCE
11363
- Win32=true
11364
-
11365
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.3*]
11366
- Parent=Opera 9.3
11367
- Platform=WinME
11368
- Win32=true
11369
-
11370
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.3*]
11371
- Parent=Opera 9.3
11372
- Platform=WinNT
11373
- Win32=true
11374
-
11375
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.3*]
11376
- Parent=Opera 9.3
11377
- Platform=Win2000
11378
- Win32=true
11379
-
11380
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.3*]
11381
- Parent=Opera 9.3
11382
- Platform=WinXP
11383
- Win32=true
11384
-
11385
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.3*]
11386
- Parent=Opera 9.3
11387
- Platform=Win2003
11388
- Win32=true
11389
-
11390
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.3*]
11391
- Parent=Opera 9.3
11392
- Platform=WinVista
11393
- Win32=true
11394
-
11395
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.3*]
11396
- Parent=Opera 9.3
11397
- Platform=Win7
11398
-
11399
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.3*]
11400
- Parent=Opera 9.3
11401
- Platform=WinXP
11402
- Win32=true
11403
-
11404
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.3*]
11405
- Parent=Opera 9.3
11406
- Platform=FreeBSD
11407
-
11408
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.3*]
11409
- Parent=Opera 9.3
11410
- Platform=Linux
11411
-
11412
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.3*]
11413
- Parent=Opera 9.3
11414
- Platform=SunOS
11415
-
11416
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.3*]
11417
- Parent=Opera 9.3
11418
- Platform=MacOSX
11419
-
11420
- [Mozilla/* (Windows 2000;*) Opera 9.3*]
11421
- Parent=Opera 9.3
11422
- Platform=Win2000
11423
- Win32=true
11424
-
11425
- [Mozilla/* (Windows 95;*) Opera 9.3*]
11426
- Parent=Opera 9.3
11427
- Platform=Win95
11428
- Win32=true
11429
-
11430
- [Mozilla/* (Windows 98;*) Opera 9.3*]
11431
- Parent=Opera 9.3
11432
- Platform=Win98
11433
- Win32=true
11434
-
11435
- [Mozilla/* (Windows ME;*) Opera 9.3*]
11436
- Parent=Opera 9.3
11437
- Platform=WinME
11438
- Win32=true
11439
-
11440
- [Mozilla/* (Windows NT 4.0;*) Opera 9.3*]
11441
- Parent=Opera 9.3
11442
- Platform=WinNT
11443
- Win32=true
11444
-
11445
- [Mozilla/* (Windows NT 5.0;*) Opera 9.3*]
11446
- Parent=Opera 9.3
11447
- Platform=Win2000
11448
- Win32=true
11449
-
11450
- [Mozilla/* (Windows NT 5.1;*) Opera 9.3*]
11451
- Parent=Opera 9.3
11452
- Platform=WinXP
11453
- Win32=true
11454
-
11455
- [Mozilla/* (Windows NT 5.2;*) Opera 9.3*]
11456
- Parent=Opera 9.3
11457
- Platform=Win2003
11458
- Win32=true
11459
-
11460
- [Mozilla/* (Windows NT 6.0;*) Opera 9.3*]
11461
- Parent=Opera 9.3
11462
- Platform=WinVista
11463
-
11464
- [Mozilla/* (Windows NT 6.1;*) Opera 9.3*]
11465
- Parent=Opera 9.3
11466
- Platform=Win7
11467
-
11468
- [Mozilla/* (X11; Linux*) Opera 9.3*]
11469
- Parent=Opera 9.3
11470
- Platform=Linux
11471
-
11472
- [Opera/9.3* (Linux*)*]
11473
- Parent=Opera 9.3
11474
- Platform=Linux
11475
-
11476
- [Opera/9.3* (Macintosh; *Mac OS X;*)*]
11477
- Parent=Opera 9.3
11478
- Platform=MacOSX
11479
-
11480
- [Opera/9.3* (Windows 95*)*]
11481
- Parent=Opera 9.3
11482
- Platform=Win95
11483
- Win32=true
11484
-
11485
- [Opera/9.3* (Windows 98*)*]
11486
- Parent=Opera 9.3
11487
- Platform=Win98
11488
- Win32=true
11489
-
11490
- [Opera/9.3* (Windows CE*)*]
11491
- Parent=Opera 9.3
11492
- Platform=WinCE
11493
- Win32=true
11494
-
11495
- [Opera/9.3* (Windows ME*)*]
11496
- Parent=Opera 9.3
11497
- Platform=WinME
11498
- Win32=true
11499
-
11500
- [Opera/9.3* (Windows NT 4.0*)*]
11501
- Parent=Opera 9.3
11502
- Platform=WinNT
11503
- Win32=true
11504
-
11505
- [Opera/9.3* (Windows NT 5.0*)*]
11506
- Parent=Opera 9.3
11507
- Platform=Win2000
11508
- Win32=true
11509
-
11510
- [Opera/9.3* (Windows NT 5.1*)*]
11511
- Parent=Opera 9.3
11512
- Platform=WinXP
11513
- Win32=true
11514
-
11515
- [Opera/9.3* (Windows NT 5.2*)*]
11516
- Parent=Opera 9.3
11517
- Platform=Win2003
11518
- Win32=true
11519
-
11520
- [Opera/9.3* (Windows NT 6.0*)*]
11521
- Parent=Opera 9.3
11522
- Platform=WinVista
11523
- Win32=true
11524
-
11525
- [Opera/9.3* (Windows NT 6.1*)*]
11526
- Parent=Opera 9.3
11527
- Platform=Win7
11528
-
11529
- [Opera/9.3* (Windows XP*)*]
11530
- Parent=Opera 9.3
11531
- Platform=WinXP
11532
- Win32=true
11533
-
11534
- [Opera/9.3* (X11; FreeBSD*)*]
11535
- Parent=Opera 9.3
11536
- Platform=FreeBSD
11537
-
11538
- [Opera/9.3* (X11; Linux*)*]
11539
- Parent=Opera 9.3
11540
- Platform=Linux
11541
-
11542
- [Opera/9.3* (X11; SunOS*)*]
11543
- Parent=Opera 9.3
11544
- Platform=SunOS
11545
-
11546
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.4
11547
-
11548
- [Opera 9.4]
11549
- Parent=DefaultProperties
11550
- Browser="Opera"
11551
- Version=9.4
11552
- MajorVer=9
11553
- MinorVer=4
11554
- Frames=true
11555
- IFrames=true
11556
- Tables=true
11557
- Cookies=true
11558
- BackgroundSounds=true
11559
- JavaApplets=true
11560
- JavaScript=true
11561
- CssVersion=2
11562
- supportsCSS=true
11563
-
11564
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.4*]
11565
- Parent=Opera 9.4
11566
- Platform=Linux
11567
-
11568
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.4*]
11569
- Parent=Opera 9.4
11570
- Platform=MacOSX
11571
-
11572
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.4*]
11573
- Parent=Opera 9.4
11574
- Platform=MacPPC
11575
-
11576
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.4*]
11577
- Parent=Opera 9.4
11578
- Platform=Win2000
11579
- Win32=true
11580
-
11581
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.4*]
11582
- Parent=Opera 9.4
11583
- Platform=Win95
11584
- Win32=true
11585
-
11586
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.4*]
11587
- Parent=Opera 9.4
11588
- Platform=Win98
11589
- Win32=true
11590
-
11591
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.4*]
11592
- Parent=Opera 9.4
11593
- Platform=WinCE
11594
- Win32=true
11595
-
11596
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.4*]
11597
- Parent=Opera 9.4
11598
- Platform=WinME
11599
- Win32=true
11600
-
11601
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.4*]
11602
- Parent=Opera 9.4
11603
- Platform=WinNT
11604
- Win32=true
11605
-
11606
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.4*]
11607
- Parent=Opera 9.4
11608
- Platform=Win2000
11609
- Win32=true
11610
-
11611
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.4*]
11612
- Parent=Opera 9.4
11613
- Platform=WinXP
11614
- Win32=true
11615
-
11616
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.4*]
11617
- Parent=Opera 9.4
11618
- Platform=Win2003
11619
- Win32=true
11620
-
11621
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.4*]
11622
- Parent=Opera 9.4
11623
- Platform=WinVista
11624
- Win32=true
11625
-
11626
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.4*]
11627
- Parent=Opera 9.4
11628
- Platform=Win7
11629
-
11630
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.4*]
11631
- Parent=Opera 9.4
11632
- Platform=WinXP
11633
- Win32=true
11634
-
11635
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.4*]
11636
- Parent=Opera 9.4
11637
- Platform=FreeBSD
11638
-
11639
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.4*]
11640
- Parent=Opera 9.4
11641
- Platform=Linux
11642
-
11643
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.4*]
11644
- Parent=Opera 9.4
11645
- Platform=SunOS
11646
-
11647
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.4*]
11648
- Parent=Opera 9.4
11649
- Platform=MacOSX
11650
-
11651
- [Mozilla/* (Windows 2000;*) Opera 9.4*]
11652
- Parent=Opera 9.4
11653
- Platform=Win2000
11654
- Win32=true
11655
-
11656
- [Mozilla/* (Windows 95;*) Opera 9.4*]
11657
- Parent=Opera 9.4
11658
- Platform=Win95
11659
- Win32=true
11660
-
11661
- [Mozilla/* (Windows 98;*) Opera 9.4*]
11662
- Parent=Opera 9.4
11663
- Platform=Win98
11664
- Win32=true
11665
-
11666
- [Mozilla/* (Windows ME;*) Opera 9.4*]
11667
- Parent=Opera 9.4
11668
- Platform=WinME
11669
- Win32=true
11670
-
11671
- [Mozilla/* (Windows NT 4.0;*) Opera 9.4*]
11672
- Parent=Opera 9.4
11673
- Platform=WinNT
11674
- Win32=true
11675
-
11676
- [Mozilla/* (Windows NT 5.0;*) Opera 9.4*]
11677
- Parent=Opera 9.4
11678
- Platform=Win2000
11679
- Win32=true
11680
-
11681
- [Mozilla/* (Windows NT 5.1;*) Opera 9.4*]
11682
- Parent=Opera 9.4
11683
- Platform=WinXP
11684
- Win32=true
11685
-
11686
- [Mozilla/* (Windows NT 5.2;*) Opera 9.4*]
11687
- Parent=Opera 9.4
11688
- Platform=Win2003
11689
- Win32=true
11690
-
11691
- [Mozilla/* (Windows NT 6.0;*) Opera 9.4*]
11692
- Parent=Opera 9.4
11693
- Platform=WinVista
11694
-
11695
- [Mozilla/* (Windows NT 6.1;*) Opera 9.4*]
11696
- Parent=Opera 9.4
11697
- Platform=Win7
11698
-
11699
- [Mozilla/* (X11; Linux*) Opera 9.4*]
11700
- Parent=Opera 9.4
11701
- Platform=Linux
11702
-
11703
- [Opera/9.4* (Linux*)*]
11704
- Parent=Opera 9.4
11705
- Platform=Linux
11706
-
11707
- [Opera/9.4* (Macintosh; *Mac OS X;*)*]
11708
- Parent=Opera 9.4
11709
- Platform=MacOSX
11710
-
11711
- [Opera/9.4* (Windows 95*)*]
11712
- Parent=Opera 9.4
11713
- Platform=Win95
11714
- Win32=true
11715
-
11716
- [Opera/9.4* (Windows 98*)*]
11717
- Parent=Opera 9.4
11718
- Platform=Win98
11719
- Win32=true
11720
-
11721
- [Opera/9.4* (Windows CE*)*]
11722
- Parent=Opera 9.4
11723
- Platform=WinCE
11724
- Win32=true
11725
-
11726
- [Opera/9.4* (Windows ME*)*]
11727
- Parent=Opera 9.4
11728
- Platform=WinME
11729
- Win32=true
11730
-
11731
- [Opera/9.4* (Windows NT 4.0*)*]
11732
- Parent=Opera 9.4
11733
- Platform=WinNT
11734
- Win32=true
11735
-
11736
- [Opera/9.4* (Windows NT 5.0*)*]
11737
- Parent=Opera 9.4
11738
- Platform=Win2000
11739
- Win32=true
11740
-
11741
- [Opera/9.4* (Windows NT 5.1*)*]
11742
- Parent=Opera 9.4
11743
- Platform=WinXP
11744
- Win32=true
11745
-
11746
- [Opera/9.4* (Windows NT 5.2*)*]
11747
- Parent=Opera 9.4
11748
- Platform=Win2003
11749
- Win32=true
11750
-
11751
- [Opera/9.4* (Windows NT 6.0*)*]
11752
- Parent=Opera 9.4
11753
- Platform=WinVista
11754
- Win32=true
11755
-
11756
- [Opera/9.4* (Windows NT 6.1*)*]
11757
- Parent=Opera 9.4
11758
- Platform=Win7
11759
-
11760
- [Opera/9.4* (Windows XP*)*]
11761
- Parent=Opera 9.4
11762
- Platform=WinXP
11763
- Win32=true
11764
-
11765
- [Opera/9.4* (X11; FreeBSD*)*]
11766
- Parent=Opera 9.4
11767
- Platform=FreeBSD
11768
-
11769
- [Opera/9.4* (X11; Linux*)*]
11770
- Parent=Opera 9.4
11771
- Platform=Linux
11772
-
11773
- [Opera/9.4* (X11; SunOS*)*]
11774
- Parent=Opera 9.4
11775
- Platform=SunOS
11776
-
11777
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.5
11778
-
11779
- [Opera 9.5]
11780
- Parent=DefaultProperties
11781
- Browser="Opera"
11782
- Version=9.5
11783
- MajorVer=9
11784
- MinorVer=5
11785
- Frames=true
11786
- IFrames=true
11787
- Tables=true
11788
- Cookies=true
11789
- BackgroundSounds=true
11790
- JavaApplets=true
11791
- JavaScript=true
11792
- CssVersion=2
11793
- supportsCSS=true
11794
-
11795
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.5*]
11796
- Parent=Opera 9.5
11797
- Platform=Linux
11798
-
11799
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.5*]
11800
- Parent=Opera 9.5
11801
- Platform=MacOSX
11802
-
11803
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.5*]
11804
- Parent=Opera 9.5
11805
- Platform=MacPPC
11806
-
11807
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.5*]
11808
- Parent=Opera 9.5
11809
- Platform=Win2000
11810
- Win32=true
11811
-
11812
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.5*]
11813
- Parent=Opera 9.5
11814
- Platform=Win95
11815
- Win32=true
11816
-
11817
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.5*]
11818
- Parent=Opera 9.5
11819
- Platform=Win98
11820
- Win32=true
11821
-
11822
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.5*]
11823
- Parent=Opera 9.5
11824
- Platform=WinCE
11825
- Win32=true
11826
-
11827
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.5*]
11828
- Parent=Opera 9.5
11829
- Platform=WinME
11830
- Win32=true
11831
-
11832
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.5*]
11833
- Parent=Opera 9.5
11834
- Platform=WinNT
11835
- Win32=true
11836
-
11837
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.5*]
11838
- Parent=Opera 9.5
11839
- Platform=Win2000
11840
- Win32=true
11841
-
11842
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.5*]
11843
- Parent=Opera 9.5
11844
- Platform=WinXP
11845
- Win32=true
11846
-
11847
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.5*]
11848
- Parent=Opera 9.5
11849
- Platform=Win2003
11850
- Win32=true
11851
-
11852
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.5*]
11853
- Parent=Opera 9.5
11854
- Platform=WinVista
11855
- Win32=true
11856
-
11857
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.5*]
11858
- Parent=Opera 9.5
11859
- Platform=Win7
11860
-
11861
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.5*]
11862
- Parent=Opera 9.5
11863
- Platform=WinXP
11864
- Win32=true
11865
-
11866
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.5*]
11867
- Parent=Opera 9.5
11868
- Platform=FreeBSD
11869
-
11870
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.5*]
11871
- Parent=Opera 9.5
11872
- Platform=Linux
11873
-
11874
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.5*]
11875
- Parent=Opera 9.5
11876
- Platform=SunOS
11877
-
11878
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.5*]
11879
- Parent=Opera 9.5
11880
- Platform=MacOSX
11881
-
11882
- [Mozilla/* (Windows 2000;*) Opera 9.5*]
11883
- Parent=Opera 9.5
11884
- Platform=Win2000
11885
- Win32=true
11886
-
11887
- [Mozilla/* (Windows 95;*) Opera 9.5*]
11888
- Parent=Opera 9.5
11889
- Platform=Win95
11890
- Win32=true
11891
-
11892
- [Mozilla/* (Windows 98;*) Opera 9.5*]
11893
- Parent=Opera 9.5
11894
- Platform=Win98
11895
- Win32=true
11896
-
11897
- [Mozilla/* (Windows ME;*) Opera 9.5*]
11898
- Parent=Opera 9.5
11899
- Platform=WinME
11900
- Win32=true
11901
-
11902
- [Mozilla/* (Windows NT 4.0;*) Opera 9.5*]
11903
- Parent=Opera 9.5
11904
- Platform=WinNT
11905
- Win32=true
11906
-
11907
- [Mozilla/* (Windows NT 5.0;*) Opera 9.5*]
11908
- Parent=Opera 9.5
11909
- Platform=Win2000
11910
- Win32=true
11911
-
11912
- [Mozilla/* (Windows NT 5.1;*) Opera 9.5*]
11913
- Parent=Opera 9.5
11914
- Platform=WinXP
11915
- Win32=true
11916
-
11917
- [Mozilla/* (Windows NT 5.2;*) Opera 9.5*]
11918
- Parent=Opera 9.5
11919
- Platform=Win2003
11920
- Win32=true
11921
-
11922
- [Mozilla/* (Windows NT 6.0;*) Opera 9.5*]
11923
- Parent=Opera 9.5
11924
- Platform=WinVista
11925
-
11926
- [Mozilla/* (Windows NT 6.1;*) Opera 9.5*]
11927
- Parent=Opera 9.5
11928
- Platform=Win7
11929
-
11930
- [Mozilla/* (X11; Linux*) Opera 9.5*]
11931
- Parent=Opera 9.5
11932
- Platform=Linux
11933
-
11934
- [Opera/9.5* (Linux*)*]
11935
- Parent=Opera 9.5
11936
- Platform=Linux
11937
-
11938
- [Opera/9.5* (Macintosh; *Mac OS X;*)*]
11939
- Parent=Opera 9.5
11940
- Platform=MacOSX
11941
-
11942
- [Opera/9.5* (Windows 95*)*]
11943
- Parent=Opera 9.5
11944
- Platform=Win95
11945
- Win32=true
11946
-
11947
- [Opera/9.5* (Windows 98*)*]
11948
- Parent=Opera 9.5
11949
- Platform=Win98
11950
- Win32=true
11951
-
11952
- [Opera/9.5* (Windows CE*)*]
11953
- Parent=Opera 9.5
11954
- Platform=WinCE
11955
- Win32=true
11956
-
11957
- [Opera/9.5* (Windows ME*)*]
11958
- Parent=Opera 9.5
11959
- Platform=WinME
11960
- Win32=true
11961
-
11962
- [Opera/9.5* (Windows NT 4.0*)*]
11963
- Parent=Opera 9.5
11964
- Platform=WinNT
11965
- Win32=true
11966
-
11967
- [Opera/9.5* (Windows NT 5.0*)*]
11968
- Parent=Opera 9.5
11969
- Platform=Win2000
11970
- Win32=true
11971
-
11972
- [Opera/9.5* (Windows NT 5.1*)*]
11973
- Parent=Opera 9.5
11974
- Platform=WinXP
11975
- Win32=true
11976
-
11977
- [Opera/9.5* (Windows NT 5.2*)*]
11978
- Parent=Opera 9.5
11979
- Platform=Win2003
11980
- Win32=true
11981
-
11982
- [Opera/9.5* (Windows NT 6.0*)*]
11983
- Parent=Opera 9.5
11984
- Platform=WinVista
11985
- Win32=true
11986
-
11987
- [Opera/9.5* (Windows NT 6.1*)*]
11988
- Parent=Opera 9.5
11989
- Platform=Win7
11990
-
11991
- [Opera/9.5* (Windows XP*)*]
11992
- Parent=Opera 9.5
11993
- Platform=WinXP
11994
- Win32=true
11995
-
11996
- [Opera/9.5* (X11; FreeBSD*)*]
11997
- Parent=Opera 9.5
11998
- Platform=FreeBSD
11999
-
12000
- [Opera/9.5* (X11; Linux*)*]
12001
- Parent=Opera 9.5
12002
- Platform=Linux
12003
-
12004
- [Opera/9.5* (X11; SunOS*)*]
12005
- Parent=Opera 9.5
12006
- Platform=SunOS
12007
-
12008
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.6
12009
-
12010
- [Opera 9.6]
12011
- Parent=DefaultProperties
12012
- Browser="Opera"
12013
- Version=9.6
12014
- MajorVer=9
12015
- MinorVer=6
12016
- Frames=true
12017
- IFrames=true
12018
- Tables=true
12019
- Cookies=true
12020
- BackgroundSounds=true
12021
- JavaApplets=true
12022
- JavaScript=true
12023
- CssVersion=2
12024
- supportsCSS=true
12025
-
12026
- [Mozilla/* (compatible; MSIE*; Linux*) Opera 9.6*]
12027
- Parent=Opera 9.6
12028
- Platform=Linux
12029
-
12030
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.6*]
12031
- Parent=Opera 9.6
12032
- Platform=MacOSX
12033
-
12034
- [Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.6*]
12035
- Parent=Opera 9.6
12036
- Platform=MacPPC
12037
-
12038
- [Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.6*]
12039
- Parent=Opera 9.6
12040
- Platform=Win2000
12041
- Win32=true
12042
-
12043
- [Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.6*]
12044
- Parent=Opera 9.6
12045
- Platform=Win95
12046
- Win32=true
12047
-
12048
- [Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.6*]
12049
- Parent=Opera 9.6
12050
- Platform=Win98
12051
- Win32=true
12052
-
12053
- [Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.6*]
12054
- Parent=Opera 9.6
12055
- Platform=WinCE
12056
- Win32=true
12057
-
12058
- [Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.6*]
12059
- Parent=Opera 9.6
12060
- Platform=WinME
12061
- Win32=true
12062
-
12063
- [Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.6*]
12064
- Parent=Opera 9.6
12065
- Platform=WinNT
12066
- Win32=true
12067
-
12068
- [Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.6*]
12069
- Parent=Opera 9.6
12070
- Platform=Win2000
12071
- Win32=true
12072
-
12073
- [Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.6*]
12074
- Parent=Opera 9.6
12075
- Platform=WinXP
12076
- Win32=true
12077
-
12078
- [Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.6*]
12079
- Parent=Opera 9.6
12080
- Platform=Win2003
12081
- Win32=true
12082
-
12083
- [Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.6*]
12084
- Parent=Opera 9.6
12085
- Platform=WinVista
12086
- Win32=true
12087
-
12088
- [Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.6*]
12089
- Parent=Opera 9.6
12090
- Platform=Win7
12091
-
12092
- [Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.6*]
12093
- Parent=Opera 9.6
12094
- Platform=WinXP
12095
- Win32=true
12096
-
12097
- [Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.6*]
12098
- Parent=Opera 9.6
12099
- Platform=FreeBSD
12100
-
12101
- [Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.6*]
12102
- Parent=Opera 9.6
12103
- Platform=Linux
12104
-
12105
- [Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.6*]
12106
- Parent=Opera 9.6
12107
- Platform=SunOS
12108
-
12109
- [Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.6*]
12110
- Parent=Opera 9.6
12111
- Platform=MacOSX
12112
-
12113
- [Mozilla/* (Windows 2000;*) Opera 9.6*]
12114
- Parent=Opera 9.6
12115
- Platform=Win2000
12116
- Win32=true
12117
-
12118
- [Mozilla/* (Windows 95;*) Opera 9.6*]
12119
- Parent=Opera 9.6
12120
- Platform=Win95
12121
- Win32=true
12122
-
12123
- [Mozilla/* (Windows 98;*) Opera 9.6*]
12124
- Parent=Opera 9.6
12125
- Platform=Win98
12126
- Win32=true
12127
-
12128
- [Mozilla/* (Windows ME;*) Opera 9.6*]
12129
- Parent=Opera 9.6
12130
- Platform=WinME
12131
- Win32=true
12132
-
12133
- [Mozilla/* (Windows NT 4.0;*) Opera 9.6*]
12134
- Parent=Opera 9.6
12135
- Platform=WinNT
12136
- Win32=true
12137
-
12138
- [Mozilla/* (Windows NT 5.0;*) Opera 9.6*]
12139
- Parent=Opera 9.6
12140
- Platform=Win2000
12141
- Win32=true
12142
-
12143
- [Mozilla/* (Windows NT 5.1;*) Opera 9.6*]
12144
- Parent=Opera 9.6
12145
- Platform=WinXP
12146
- Win32=true
12147
-
12148
- [Mozilla/* (Windows NT 5.2;*) Opera 9.6*]
12149
- Parent=Opera 9.6
12150
- Platform=Win2003
12151
- Win32=true
12152
-
12153
- [Mozilla/* (Windows NT 6.0;*) Opera 9.6*]
12154
- Parent=Opera 9.6
12155
- Platform=WinVista
12156
-
12157
- [Mozilla/* (Windows NT 6.1;*) Opera 9.6*]
12158
- Parent=Opera 9.6
12159
- Platform=Win7
12160
-
12161
- [Mozilla/* (X11; Linux*) Opera 9.6*]
12162
- Parent=Opera 9.6
12163
- Platform=Linux
12164
-
12165
- [Opera/9.6* (Linux*)*]
12166
- Parent=Opera 9.6
12167
- Platform=Linux
12168
-
12169
- [Opera/9.6* (Macintosh; *Mac OS X;*)*]
12170
- Parent=Opera 9.6
12171
- Platform=MacOSX
12172
-
12173
- [Opera/9.6* (Windows 95*)*]
12174
- Parent=Opera 9.6
12175
- Platform=Win95
12176
- Win32=true
12177
-
12178
- [Opera/9.6* (Windows 98*)*]
12179
- Parent=Opera 9.6
12180
- Platform=Win98
12181
- Win32=true
12182
-
12183
- [Opera/9.6* (Windows CE*)*]
12184
- Parent=Opera 9.6
12185
- Platform=WinCE
12186
- Win32=true
12187
-
12188
- [Opera/9.6* (Windows ME*)*]
12189
- Parent=Opera 9.6
12190
- Platform=WinME
12191
- Win32=true
12192
-
12193
- [Opera/9.6* (Windows NT 4.0*)*]
12194
- Parent=Opera 9.6
12195
- Platform=WinNT
12196
- Win32=true
12197
-
12198
- [Opera/9.6* (Windows NT 5.0*)*]
12199
- Parent=Opera 9.6
12200
- Platform=Win2000
12201
- Win32=true
12202
-
12203
- [Opera/9.6* (Windows NT 5.1*)*]
12204
- Parent=Opera 9.6
12205
- Platform=WinXP
12206
- Win32=true
12207
-
12208
- [Opera/9.6* (Windows NT 5.2*)*]
12209
- Parent=Opera 9.6
12210
- Platform=Win2003
12211
- Win32=true
12212
-
12213
- [Opera/9.6* (Windows NT 6.0*)*]
12214
- Parent=Opera 9.6
12215
- Platform=WinVista
12216
- Win32=true
12217
-
12218
- [Opera/9.6* (Windows NT 6.1*)*]
12219
- Parent=Opera 9.6
12220
- Platform=Win7
12221
-
12222
- [Opera/9.6* (Windows XP*)*]
12223
- Parent=Opera 9.6
12224
- Platform=WinXP
12225
- Win32=true
12226
-
12227
- [Opera/9.6* (X11; FreeBSD*)*]
12228
- Parent=Opera 9.6
12229
- Platform=FreeBSD
12230
-
12231
- [Opera/9.6* (X11; Linux*)*]
12232
- Parent=Opera 9.6
12233
- Platform=Linux
12234
-
12235
- [Opera/9.6* (X11; SunOS*)*]
12236
- Parent=Opera 9.6
12237
- Platform=SunOS
12238
-
12239
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.0
12240
-
12241
- [Netscape 4.0]
12242
- Parent=DefaultProperties
12243
- Browser="Netscape"
12244
- Version=4.0
12245
- MajorVer=4
12246
- Frames=true
12247
- Tables=true
12248
- Cookies=true
12249
- JavaApplets=true
12250
- JavaScript=true
12251
- CssVersion=1
12252
- supportsCSS=true
12253
-
12254
- [Mozilla/4.0*(Macintosh*]
12255
- Parent=Netscape 4.0
12256
- Version=4.03
12257
- MinorVer=03
12258
- Platform=MacPPC
12259
-
12260
- [Mozilla/4.0*(Win95;*]
12261
- Parent=Netscape 4.0
12262
- Platform=Win95
12263
-
12264
- [Mozilla/4.0*(Win98;*]
12265
- Parent=Netscape 4.0
12266
- Version=4.03
12267
- MinorVer=03
12268
- Platform=Win98
12269
-
12270
- [Mozilla/4.0*(WinNT*]
12271
- Parent=Netscape 4.0
12272
- Version=4.03
12273
- MinorVer=03
12274
- Platform=WinNT
12275
-
12276
- [Mozilla/4.0*(X11;*)]
12277
- Parent=Netscape 4.0
12278
- Platform=Linux
12279
-
12280
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.5
12281
-
12282
- [Netscape 4.5]
12283
- Parent=DefaultProperties
12284
- Browser="Netscape"
12285
- Version=4.5
12286
- MajorVer=4
12287
- MinorVer=5
12288
- Frames=true
12289
- Tables=true
12290
- Cookies=true
12291
- JavaApplets=true
12292
- JavaScript=true
12293
- CssVersion=1
12294
- supportsCSS=true
12295
-
12296
- [Mozilla/4.5*(Macintosh; ?; PPC)]
12297
- Parent=Netscape 4.5
12298
- Platform=MacPPC
12299
-
12300
- [Mozilla/4.5*(Win2000; ?)]
12301
- Parent=Netscape 4.5
12302
- Platform=Win2000
12303
-
12304
- [Mozilla/4.5*(Win95; ?)]
12305
- Parent=Netscape 4.5
12306
- Platform=Win95
12307
-
12308
- [Mozilla/4.5*(Win98; ?)]
12309
- Parent=Netscape 4.5
12310
- Platform=Win98
12311
-
12312
- [Mozilla/4.5*(WinME; ?)]
12313
- Parent=Netscape 4.5
12314
- Platform=WinME
12315
-
12316
- [Mozilla/4.5*(WinNT; ?)]
12317
- Parent=Netscape 4.5
12318
- Platform=WinNT
12319
-
12320
- [Mozilla/4.5*(WinXP; ?)]
12321
- Parent=Netscape 4.5
12322
- Platform=WinXP
12323
-
12324
- [Mozilla/4.5*(X11*)]
12325
- Parent=Netscape 4.5
12326
- Platform=Linux
12327
-
12328
- [Mozilla/4.51*(Macintosh; ?; PPC)]
12329
- Parent=Netscape 4.5
12330
- Version=4.51
12331
- MinorVer=51
12332
-
12333
- [Mozilla/4.51*(Win2000; ?)]
12334
- Parent=Netscape 4.5
12335
- Version=4.51
12336
- MinorVer=51
12337
- Platform=Win2000
12338
-
12339
- [Mozilla/4.51*(Win95; ?)]
12340
- Parent=Netscape 4.5
12341
- Version=4.51
12342
- MinorVer=51
12343
- Platform=Win95
12344
-
12345
- [Mozilla/4.51*(Win98; ?)]
12346
- Parent=Netscape 4.5
12347
- Version=4.51
12348
- MinorVer=51
12349
- Platform=Win98
12350
-
12351
- [Mozilla/4.51*(WinME; ?)]
12352
- Parent=Netscape 4.5
12353
- Version=4.51
12354
- MinorVer=51
12355
- Platform=WinME
12356
-
12357
- [Mozilla/4.51*(WinNT; ?)]
12358
- Parent=Netscape 4.5
12359
- Version=4.51
12360
- MinorVer=51
12361
- Platform=WinNT
12362
-
12363
- [Mozilla/4.51*(WinXP; ?)]
12364
- Parent=Netscape 4.5
12365
- Version=4.51
12366
- MinorVer=51
12367
- Platform=WinXP
12368
-
12369
- [Mozilla/4.51*(X11*)]
12370
- Parent=Netscape 4.5
12371
- Version=4.51
12372
- MinorVer=51
12373
- Platform=Linux
12374
-
12375
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.6
12376
-
12377
- [Netscape 4.6]
12378
- Parent=DefaultProperties
12379
- Browser="Netscape"
12380
- Version=4.6
12381
- MajorVer=4
12382
- MinorVer=6
12383
- Frames=true
12384
- Tables=true
12385
- Cookies=true
12386
- JavaApplets=true
12387
- JavaScript=true
12388
- CssVersion=1
12389
- supportsCSS=true
12390
-
12391
- [Mozilla/4.6 * (OS/2; ?)]
12392
- Parent=Netscape 4.6
12393
- Platform=OS/2
12394
-
12395
- [Mozilla/4.6*(Macintosh; ?; PPC)]
12396
- Parent=Netscape 4.6
12397
- Platform=MacPPC
12398
-
12399
- [Mozilla/4.6*(Win95; ?)]
12400
- Parent=Netscape 4.6
12401
- Platform=Win95
12402
-
12403
- [Mozilla/4.6*(Win98; ?)]
12404
- Parent=Netscape 4.6
12405
- Platform=Win98
12406
-
12407
- [Mozilla/4.6*(WinNT; ?)]
12408
- Parent=Netscape 4.6
12409
- Platform=WinNT
12410
-
12411
- [Mozilla/4.61*(Macintosh; ?; PPC)]
12412
- Parent=Netscape 4.6
12413
- Version=4.61
12414
- MajorVer=4
12415
- MinorVer=61
12416
- Platform=MacPPC
12417
-
12418
- [Mozilla/4.61*(OS/2; ?)]
12419
- Parent=Netscape 4.6
12420
- Version=4.61
12421
- MajorVer=4
12422
- MinorVer=61
12423
- Platform=OS/2
12424
-
12425
- [Mozilla/4.61*(Win95; ?)]
12426
- Parent=Netscape 4.6
12427
- Version=4.61
12428
- MajorVer=4
12429
- MinorVer=61
12430
- Platform=Win95
12431
-
12432
- [Mozilla/4.61*(Win98; ?)]
12433
- Parent=Netscape 4.6
12434
- Version=4.61
12435
- Platform=Win98
12436
-
12437
- [Mozilla/4.61*(WinNT; ?)]
12438
- Parent=Netscape 4.6
12439
- Version=4.61
12440
- MajorVer=4
12441
- MinorVer=61
12442
- Platform=WinNT
12443
-
12444
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.7
12445
-
12446
- [Netscape 4.7]
12447
- Parent=DefaultProperties
12448
- Browser="Netscape"
12449
- Version=4.7
12450
- MajorVer=4
12451
- MinorVer=7
12452
- Frames=true
12453
- Tables=true
12454
- Cookies=true
12455
- JavaApplets=true
12456
- JavaScript=true
12457
- CssVersion=1
12458
- supportsCSS=true
12459
-
12460
- [Mozilla/4.7 * (Win2000; ?)]
12461
- Parent=Netscape 4.7
12462
- Platform=Win2000
12463
-
12464
- [Mozilla/4.7*(Macintosh; ?; PPC)*]
12465
- Parent=Netscape 4.7
12466
- MinorVer=7
12467
- Platform=MacPPC
12468
-
12469
- [Mozilla/4.7*(Win95; ?)*]
12470
- Parent=Netscape 4.7
12471
- MinorVer=7
12472
- Platform=Win95
12473
-
12474
- [Mozilla/4.7*(Win98; ?)*]
12475
- Parent=Netscape 4.7
12476
- MinorVer=7
12477
- Platform=Win98
12478
-
12479
- [Mozilla/4.7*(Windows NT 4.0; ?)*]
12480
- Parent=Netscape 4.7
12481
- MinorVer=7
12482
- Platform=WinNT
12483
- Win32=true
12484
-
12485
- [Mozilla/4.7*(Windows NT 5.0; ?)*]
12486
- Parent=Netscape 4.7
12487
- MinorVer=7
12488
- Platform=Win2000
12489
- Win32=true
12490
-
12491
- [Mozilla/4.7*(Windows NT 5.1; ?)*]
12492
- Parent=Netscape 4.7
12493
- MinorVer=7
12494
- Platform=WinXP
12495
- Win32=true
12496
-
12497
- [Mozilla/4.7*(WinNT; ?)*]
12498
- Parent=Netscape 4.7
12499
- Platform=WinNT
12500
-
12501
- [Mozilla/4.7*(X11*)*]
12502
- Parent=Netscape 4.7
12503
- Platform=Linux
12504
-
12505
- [Mozilla/4.7*(X11; ?; SunOS*)*]
12506
- Parent=Netscape 4.7
12507
- Platform=SunOS
12508
-
12509
- [Mozilla/4.71*(Macintosh; ?; PPC)*]
12510
- Parent=Netscape 4.7
12511
- Version=4.71
12512
- MinorVer=71
12513
- Platform=MacPPC
12514
-
12515
- [Mozilla/4.71*(Win95; ?)*]
12516
- Parent=Netscape 4.7
12517
- Version=4.71
12518
- MinorVer=71
12519
- Platform=Win95
12520
-
12521
- [Mozilla/4.71*(Win98; ?)*]
12522
- Parent=Netscape 4.7
12523
- Version=4.71
12524
- MinorVer=71
12525
- Platform=Win98
12526
-
12527
- [Mozilla/4.71*(Windows NT 4.0; ?)*]
12528
- Parent=Netscape 4.7
12529
- Version=4.71
12530
- MinorVer=71
12531
- Platform=WinNT
12532
- Win32=true
12533
-
12534
- [Mozilla/4.71*(Windows NT 5.0; ?)*]
12535
- Parent=Netscape 4.7
12536
- Version=4.71
12537
- MinorVer=71
12538
- Platform=Win2000
12539
- Win32=true
12540
-
12541
- [Mozilla/4.71*(Windows NT 5.1; ?)*]
12542
- Parent=Netscape 4.7
12543
- Version=4.71
12544
- MinorVer=71
12545
- Platform=WinXP
12546
- Win32=true
12547
-
12548
- [Mozilla/4.71*(WinNT; ?)*]
12549
- Parent=Netscape 4.7
12550
- Version=4.71
12551
- MinorVer=71
12552
- Platform=WinNT
12553
-
12554
- [Mozilla/4.71*(X11*)*]
12555
- Parent=Netscape 4.7
12556
- Version=4.71
12557
- MinorVer=71
12558
- Platform=Linux
12559
-
12560
- [Mozilla/4.71*(X11; ?; SunOS*)*]
12561
- Parent=Netscape 4.7
12562
- Version=4.71
12563
- MinorVer=71
12564
- Platform=SunOS
12565
-
12566
- [Mozilla/4.72*(Macintosh; ?; PPC)*]
12567
- Parent=Netscape 4.7
12568
- MinorVer=72
12569
- Platform=MacPPC
12570
-
12571
- [Mozilla/4.72*(Win95; ?)*]
12572
- Parent=Netscape 4.7
12573
- MinorVer=72
12574
- Platform=Win95
12575
-
12576
- [Mozilla/4.72*(Win98; ?)*]
12577
- Parent=Netscape 4.7
12578
- MinorVer=72
12579
- Platform=Win98
12580
-
12581
- [Mozilla/4.72*(Windows NT 4.0; ?)*]
12582
- Parent=Netscape 4.7
12583
- MinorVer=72
12584
- Platform=WinNT
12585
- Win32=true
12586
-
12587
- [Mozilla/4.72*(Windows NT 5.0; ?)*]
12588
- Parent=Netscape 4.7
12589
- MinorVer=72
12590
- Platform=Win2000
12591
- Win32=true
12592
-
12593
- [Mozilla/4.72*(Windows NT 5.1; ?)*]
12594
- Parent=Netscape 4.7
12595
- MinorVer=72
12596
- Platform=WinXP
12597
- Win32=true
12598
-
12599
- [Mozilla/4.72*(WinNT; ?)*]
12600
- Parent=Netscape 4.7
12601
- MinorVer=72
12602
- Platform=WinNT
12603
-
12604
- [Mozilla/4.72*(X11*)*]
12605
- Parent=Netscape 4.7
12606
- MinorVer=72
12607
- Platform=Linux
12608
-
12609
- [Mozilla/4.72*(X11; ?; SunOS*)*]
12610
- Parent=Netscape 4.7
12611
- MinorVer=72
12612
- Platform=SunOS
12613
-
12614
- [Mozilla/4.73*(Macintosh; ?; PPC)*]
12615
- Parent=Netscape 4.7
12616
- MinorVer=73
12617
- Platform=MacPPC
12618
-
12619
- [Mozilla/4.73*(Win95; ?)*]
12620
- Parent=Netscape 4.7
12621
- MinorVer=73
12622
- Platform=Win95
12623
-
12624
- [Mozilla/4.73*(Win98; ?)*]
12625
- Parent=Netscape 4.7
12626
- MinorVer=73
12627
- Platform=Win98
12628
-
12629
- [Mozilla/4.73*(Windows NT 4.0; ?)*]
12630
- Parent=Netscape 4.7
12631
- MinorVer=73
12632
- Platform=WinNT
12633
- Win32=true
12634
-
12635
- [Mozilla/4.73*(Windows NT 5.0; ?)*]
12636
- Parent=Netscape 4.7
12637
- MinorVer=73
12638
- Platform=Win2000
12639
- Win32=true
12640
-
12641
- [Mozilla/4.73*(Windows NT 5.1; ?)*]
12642
- Parent=Netscape 4.7
12643
- MinorVer=73
12644
- Platform=WinXP
12645
- Win32=true
12646
-
12647
- [Mozilla/4.73*(WinNT; ?)*]
12648
- Parent=Netscape 4.7
12649
- MinorVer=73
12650
- Platform=WinNT
12651
-
12652
- [Mozilla/4.73*(X11*)*]
12653
- Parent=Netscape 4.7
12654
- MinorVer=73
12655
- Platform=Linux
12656
-
12657
- [Mozilla/4.73*(X11; ?; SunOS*)*]
12658
- Parent=Netscape 4.7
12659
- MinorVer=73
12660
- Platform=SunOS
12661
-
12662
- [Mozilla/4.74*(Macintosh; ?; PPC)*]
12663
- Parent=Netscape 4.7
12664
- MinorVer=74
12665
- Platform=MacPPC
12666
-
12667
- [Mozilla/4.74*(Win95; ?)*]
12668
- Parent=Netscape 4.7
12669
- MinorVer=74
12670
- Platform=Win95
12671
-
12672
- [Mozilla/4.74*(Win98; ?)*]
12673
- Parent=Netscape 4.7
12674
- MinorVer=74
12675
- Platform=Win98
12676
-
12677
- [Mozilla/4.74*(Windows NT 4.0; ?)*]
12678
- Parent=Netscape 4.7
12679
- MinorVer=74
12680
- Platform=WinNT
12681
- Win32=true
12682
-
12683
- [Mozilla/4.74*(Windows NT 5.0; ?)*]
12684
- Parent=Netscape 4.7
12685
- MinorVer=74
12686
- Platform=Win2000
12687
- Win32=true
12688
-
12689
- [Mozilla/4.74*(Windows NT 5.1; ?)*]
12690
- Parent=Netscape 4.7
12691
- MinorVer=74
12692
- Platform=WinXP
12693
- Win32=true
12694
-
12695
- [Mozilla/4.74*(WinNT; ?)*]
12696
- Parent=Netscape 4.7
12697
- MinorVer=74
12698
- Platform=WinNT
12699
-
12700
- [Mozilla/4.74*(X11*)*]
12701
- Parent=Netscape 4.7
12702
- MinorVer=74
12703
- Platform=Linux
12704
-
12705
- [Mozilla/4.74*(X11; ?; SunOS*)*]
12706
- Parent=Netscape 4.7
12707
- MinorVer=74
12708
- Platform=SunOS
12709
-
12710
- [Mozilla/4.75*(Macintosh; ?; PPC)*]
12711
- Parent=Netscape 4.7
12712
- MinorVer=75
12713
- Platform=MacPPC
12714
-
12715
- [Mozilla/4.75*(Win95; ?)*]
12716
- Parent=Netscape 4.7
12717
- MinorVer=75
12718
- Platform=Win95
12719
-
12720
- [Mozilla/4.75*(Win98; ?)*]
12721
- Parent=Netscape 4.7
12722
- MinorVer=75
12723
- Platform=Win98
12724
-
12725
- [Mozilla/4.75*(Windows NT 4.0; ?)*]
12726
- Parent=Netscape 4.7
12727
- MinorVer=75
12728
- Platform=WinNT
12729
- Win32=true
12730
-
12731
- [Mozilla/4.75*(Windows NT 5.0; ?)*]
12732
- Parent=Netscape 4.7
12733
- MinorVer=75
12734
- Platform=Win2000
12735
- Win32=true
12736
-
12737
- [Mozilla/4.75*(Windows NT 5.1; ?)*]
12738
- Parent=Netscape 4.7
12739
- MinorVer=75
12740
- Platform=WinXP
12741
- Win32=true
12742
-
12743
- [Mozilla/4.75*(WinNT; ?)*]
12744
- Parent=Netscape 4.7
12745
- MinorVer=75
12746
- Platform=WinNT
12747
-
12748
- [Mozilla/4.75*(X11*)*]
12749
- Parent=Netscape 4.7
12750
- MinorVer=75
12751
- Platform=Linux
12752
-
12753
- [Mozilla/4.75*(X11; ?; SunOS*)*]
12754
- Parent=Netscape 4.7
12755
- MinorVer=75
12756
- Platform=SunOS
12757
-
12758
- [Mozilla/4.76*(Macintosh; ?; PPC)*]
12759
- Parent=Netscape 4.7
12760
- MinorVer=76
12761
- Platform=MacPPC
12762
-
12763
- [Mozilla/4.76*(Win95; ?)*]
12764
- Parent=Netscape 4.7
12765
- MinorVer=76
12766
- Platform=Win95
12767
-
12768
- [Mozilla/4.76*(Win98; ?)*]
12769
- Parent=Netscape 4.7
12770
- MinorVer=76
12771
- Platform=Win98
12772
-
12773
- [Mozilla/4.76*(Windows NT 4.0; ?)*]
12774
- Parent=Netscape 4.7
12775
- MinorVer=76
12776
- Platform=WinNT
12777
- Win32=true
12778
-
12779
- [Mozilla/4.76*(Windows NT 5.0; ?)*]
12780
- Parent=Netscape 4.7
12781
- MinorVer=76
12782
- Platform=Win2000
12783
- Win32=true
12784
-
12785
- [Mozilla/4.76*(Windows NT 5.1; ?)*]
12786
- Parent=Netscape 4.7
12787
- MinorVer=76
12788
- Platform=WinXP
12789
- Win32=true
12790
-
12791
- [Mozilla/4.76*(WinNT; ?)*]
12792
- Parent=Netscape 4.7
12793
- MinorVer=76
12794
- Platform=WinNT
12795
-
12796
- [Mozilla/4.76*(X11*)*]
12797
- Parent=Netscape 4.7
12798
- MinorVer=76
12799
- Platform=Linux
12800
-
12801
- [Mozilla/4.76*(X11; ?; SunOS*)*]
12802
- Parent=Netscape 4.7
12803
- MinorVer=76
12804
- Platform=SunOS
12805
-
12806
- [Mozilla/4.77*(Macintosh; ?; PPC)*]
12807
- Parent=Netscape 4.7
12808
- MinorVer=77
12809
- Platform=MacPPC
12810
-
12811
- [Mozilla/4.77*(Win95; ?)*]
12812
- Parent=Netscape 4.7
12813
- MinorVer=77
12814
- Platform=Win95
12815
-
12816
- [Mozilla/4.77*(Win98; ?)*]
12817
- Parent=Netscape 4.7
12818
- MinorVer=77
12819
- Platform=Win98
12820
-
12821
- [Mozilla/4.77*(Windows NT 4.0; ?)*]
12822
- Parent=Netscape 4.7
12823
- MinorVer=77
12824
- Platform=WinNT
12825
- Win32=true
12826
-
12827
- [Mozilla/4.77*(Windows NT 5.0; ?)*]
12828
- Parent=Netscape 4.7
12829
- MinorVer=77
12830
- Platform=Win2000
12831
- Win32=true
12832
-
12833
- [Mozilla/4.77*(Windows NT 5.1; ?)*]
12834
- Parent=Netscape 4.7
12835
- MinorVer=77
12836
- Platform=WinXP
12837
- Win32=true
12838
-
12839
- [Mozilla/4.77*(WinNT; ?)*]
12840
- Parent=Netscape 4.7
12841
- MinorVer=77
12842
- Platform=WinNT
12843
-
12844
- [Mozilla/4.77*(X11*)*]
12845
- Parent=Netscape 4.7
12846
- MinorVer=77
12847
- Platform=Linux
12848
-
12849
- [Mozilla/4.77*(X11; ?; SunOS*)*]
12850
- Parent=Netscape 4.7
12851
- MinorVer=77
12852
- Platform=SunOS
12853
-
12854
- [Mozilla/4.78*(Macintosh; ?; PPC)*]
12855
- Parent=Netscape 4.7
12856
- MinorVer=78
12857
- Platform=MacPPC
12858
-
12859
- [Mozilla/4.78*(Win95; ?)*]
12860
- Parent=Netscape 4.7
12861
- MinorVer=78
12862
- Platform=Win95
12863
-
12864
- [Mozilla/4.78*(Win98; ?)*]
12865
- Parent=Netscape 4.7
12866
- MinorVer=78
12867
- Platform=Win98
12868
-
12869
- [Mozilla/4.78*(Windows NT 4.0; ?)*]
12870
- Parent=Netscape 4.7
12871
- MinorVer=78
12872
- Platform=WinNT
12873
- Win32=true
12874
-
12875
- [Mozilla/4.78*(Windows NT 5.0; ?)*]
12876
- Parent=Netscape 4.7
12877
- MinorVer=78
12878
- Platform=Win2000
12879
- Win32=true
12880
-
12881
- [Mozilla/4.78*(Windows NT 5.1; ?)*]
12882
- Parent=Netscape 4.7
12883
- MinorVer=78
12884
- Platform=WinXP
12885
- Win32=true
12886
-
12887
- [Mozilla/4.78*(WinNT; ?)*]
12888
- Parent=Netscape 4.7
12889
- MinorVer=78
12890
- Platform=WinNT
12891
-
12892
- [Mozilla/4.78*(X11*)*]
12893
- Parent=Netscape 4.7
12894
- MinorVer=78
12895
- Platform=Linux
12896
-
12897
- [Mozilla/4.78*(X11; ?; SunOS*)*]
12898
- Parent=Netscape 4.7
12899
- MinorVer=78
12900
- Platform=SunOS
12901
-
12902
- [Mozilla/4.79*(Macintosh; ?; PPC)*]
12903
- Parent=Netscape 4.7
12904
- Version=4.79
12905
- MinorVer=79
12906
- Platform=MacPPC
12907
-
12908
- [Mozilla/4.79*(Win95; ?)*]
12909
- Parent=Netscape 4.7
12910
- Version=4.79
12911
- MinorVer=79
12912
- Platform=Win95
12913
-
12914
- [Mozilla/4.79*(Win98; ?)*]
12915
- Parent=Netscape 4.7
12916
- Version=4.79
12917
- MinorVer=79
12918
- Platform=Win98
12919
-
12920
- [Mozilla/4.79*(Windows NT 4.0; ?)*]
12921
- Parent=Netscape 4.7
12922
- Version=4.79
12923
- MinorVer=79
12924
- Platform=WinNT
12925
- Win32=true
12926
-
12927
- [Mozilla/4.79*(Windows NT 5.0; ?)*]
12928
- Parent=Netscape 4.7
12929
- Version=4.79
12930
- MinorVer=79
12931
- Platform=Win2000
12932
- Win32=true
12933
-
12934
- [Mozilla/4.79*(Windows NT 5.1; ?)*]
12935
- Parent=Netscape 4.7
12936
- Version=4.79
12937
- MinorVer=79
12938
- Platform=WinXP
12939
- Win32=true
12940
-
12941
- [Mozilla/4.79*(WinNT; ?)*]
12942
- Parent=Netscape 4.7
12943
- Version=4.79
12944
- MinorVer=79
12945
- Platform=WinNT
12946
-
12947
- [Mozilla/4.79*(X11*)*]
12948
- Parent=Netscape 4.7
12949
- Version=4.79
12950
- MinorVer=79
12951
- Platform=Linux
12952
-
12953
- [Mozilla/4.79*(X11; ?; SunOS*)*]
12954
- Parent=Netscape 4.7
12955
- Version=4.79
12956
- MinorVer=79
12957
- Platform=SunOS
12958
-
12959
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.8
12960
-
12961
- [Netscape 4.8]
12962
- Parent=DefaultProperties
12963
- Browser="Netscape"
12964
- Version=4.8
12965
- MajorVer=4
12966
- MinorVer=8
12967
- Frames=true
12968
- Tables=true
12969
- Cookies=true
12970
- JavaApplets=true
12971
- JavaScript=true
12972
- CssVersion=1
12973
- supportsCSS=true
12974
-
12975
- [Mozilla/4.8*(Macintosh; ?; MacPPC)*]
12976
- Parent=Netscape 4.8
12977
- Platform=MacPPC
12978
-
12979
- [Mozilla/4.8*(Macintosh; ?; PPC Mac OS X*]
12980
- Parent=Netscape 4.8
12981
- Platform=MacOSX
12982
-
12983
- [Mozilla/4.8*(Macintosh; ?; PPC)*]
12984
- Parent=Netscape 4.8
12985
- Platform=MacPPC
12986
-
12987
- [Mozilla/4.8*(Win95; *)*]
12988
- Parent=Netscape 4.8
12989
-
12990
- [Mozilla/4.8*(Win98; *)*]
12991
- Parent=Netscape 4.8
12992
- Platform=Win98
12993
-
12994
- [Mozilla/4.8*(Windows NT 4.0; *)*]
12995
- Parent=Netscape 4.8
12996
- Platform=WinNT
12997
- Win32=true
12998
-
12999
- [Mozilla/4.8*(Windows NT 5.0; *)*]
13000
- Parent=Netscape 4.8
13001
- Platform=Win2000
13002
- Win32=true
13003
-
13004
- [Mozilla/4.8*(Windows NT 5.1; *)*]
13005
- Parent=Netscape 4.8
13006
- Platform=WinXP
13007
- Win32=true
13008
-
13009
- [Mozilla/4.8*(WinNT; *)*]
13010
- Parent=Netscape 4.8
13011
- Platform=WinNT
13012
-
13013
- [Mozilla/4.8*(X11; *)*]
13014
- Parent=Netscape 4.8
13015
- Platform=Linux
13016
-
13017
- [Mozilla/4.8*(X11; *SunOS*)*]
13018
- Parent=Netscape 4.8
13019
- Platform=SunOS
13020
-
13021
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.0
13022
-
13023
- [Netscape 6.0]
13024
- Parent=DefaultProperties
13025
- Browser="Netscape"
13026
- Version=6.0
13027
- MajorVer=6
13028
- Frames=true
13029
- IFrames=true
13030
- Tables=true
13031
- Cookies=true
13032
- JavaApplets=true
13033
- JavaScript=true
13034
- CssVersion=2
13035
- supportsCSS=true
13036
-
13037
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.0*]
13038
- Parent=Netscape 6.0
13039
- Platform=MacPPC
13040
-
13041
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.0*]
13042
- Parent=Netscape 6.0
13043
- Platform=Win95
13044
- Win32=true
13045
-
13046
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.0*]
13047
- Parent=Netscape 6.0
13048
- Platform=Win98
13049
- Win32=true
13050
-
13051
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.0*]
13052
- Parent=Netscape 6.0
13053
- Platform=WinME
13054
- Win32=true
13055
-
13056
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.0*]
13057
- Parent=Netscape 6.0
13058
- Platform=WinNT
13059
- Win32=true
13060
-
13061
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.0*]
13062
- Parent=Netscape 6.0
13063
- Platform=Win2000
13064
- Win32=true
13065
-
13066
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.0*]
13067
- Parent=Netscape 6.0
13068
- Platform=WinXP
13069
- Win32=true
13070
-
13071
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.0*]
13072
- Parent=Netscape 6.0
13073
- Platform=WinXP
13074
-
13075
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.0*]
13076
- Parent=Netscape 6.0
13077
- Platform=WinVista
13078
-
13079
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.0*]
13080
- Parent=Netscape 6.0
13081
- Platform=Win7
13082
-
13083
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.0*]
13084
- Parent=Netscape 6.0
13085
- Platform=WinNT
13086
- Win32=true
13087
-
13088
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.0*]
13089
- Parent=Netscape 6.0
13090
- Platform=Win2000
13091
- Win32=true
13092
-
13093
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.0*]
13094
- Parent=Netscape 6.0
13095
- Platform=WinXP
13096
- Win32=true
13097
-
13098
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.0*]
13099
- Parent=Netscape 6.0
13100
- Platform=WinXP
13101
-
13102
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.0*]
13103
- Parent=Netscape 6.0
13104
- Platform=WinVista
13105
-
13106
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.0*]
13107
- Parent=Netscape 6.0
13108
- Platform=Win7
13109
-
13110
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.0*]
13111
- Parent=Netscape 6.0
13112
- Platform=Linux
13113
-
13114
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.1
13115
-
13116
- [Netscape 6.1]
13117
- Parent=DefaultProperties
13118
- Browser="Netscape"
13119
- Version=6.1
13120
- MajorVer=6
13121
- MinorVer=1
13122
- Frames=true
13123
- IFrames=true
13124
- Tables=true
13125
- Cookies=true
13126
- JavaApplets=true
13127
- JavaScript=true
13128
- CssVersion=2
13129
- supportsCSS=true
13130
-
13131
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.1*]
13132
- Parent=Netscape 6.1
13133
- Platform=MacPPC
13134
-
13135
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.1*]
13136
- Parent=Netscape 6.1
13137
- Platform=Win95
13138
- Win32=true
13139
-
13140
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.1*]
13141
- Parent=Netscape 6.1
13142
- Platform=Win98
13143
- Win32=true
13144
-
13145
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.1*]
13146
- Parent=Netscape 6.1
13147
- Platform=WinME
13148
- Win32=true
13149
-
13150
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.1*]
13151
- Parent=Netscape 6.1
13152
- Platform=WinNT
13153
- Win32=true
13154
-
13155
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.1*]
13156
- Parent=Netscape 6.1
13157
- Platform=Win2000
13158
- Win32=true
13159
-
13160
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.1*]
13161
- Parent=Netscape 6.1
13162
- Platform=WinXP
13163
- Win32=true
13164
-
13165
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.1*]
13166
- Parent=Netscape 6.1
13167
- Platform=WinXP
13168
-
13169
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.1*]
13170
- Parent=Netscape 6.1
13171
- Platform=WinVista
13172
-
13173
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.1*]
13174
- Parent=Netscape 6.1
13175
- Platform=Win7
13176
-
13177
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.1*]
13178
- Parent=Netscape 6.1
13179
- Platform=WinNT
13180
- Win32=true
13181
-
13182
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.1*]
13183
- Parent=Netscape 6.1
13184
- Platform=Win2000
13185
- Win32=true
13186
-
13187
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.1*]
13188
- Parent=Netscape 6.1
13189
- Platform=WinXP
13190
- Win32=true
13191
-
13192
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.1*]
13193
- Parent=Netscape 6.1
13194
- Platform=WinXP
13195
-
13196
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.1*]
13197
- Parent=Netscape 6.1
13198
- Platform=WinVista
13199
-
13200
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.1*]
13201
- Parent=Netscape 6.1
13202
- Platform=Win7
13203
-
13204
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.1*]
13205
- Parent=Netscape 6.1
13206
- Platform=Linux
13207
-
13208
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.2
13209
-
13210
- [Netscape 6.2]
13211
- Parent=DefaultProperties
13212
- Browser="Netscape"
13213
- Version=6.2
13214
- MajorVer=6
13215
- MinorVer=2
13216
- Frames=true
13217
- IFrames=true
13218
- Tables=true
13219
- Cookies=true
13220
- JavaApplets=true
13221
- JavaScript=true
13222
- CssVersion=2
13223
- supportsCSS=true
13224
-
13225
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X*) Gecko/* Netscape6/6.2*]
13226
- Parent=Netscape 6.2
13227
- Platform=MacOSX
13228
-
13229
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.2*]
13230
- Parent=Netscape 6.2
13231
- Platform=MacPPC
13232
-
13233
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape6/6.2*]
13234
- Parent=Netscape 6.2
13235
- Win32=true
13236
-
13237
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.2*]
13238
- Parent=Netscape 6.2
13239
- Platform=Win95
13240
- Win32=true
13241
-
13242
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.2*]
13243
- Parent=Netscape 6.2
13244
- Platform=Win98
13245
- Win32=true
13246
-
13247
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.2*]
13248
- Parent=Netscape 6.2
13249
- Platform=WinME
13250
- Win32=true
13251
-
13252
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.2*]
13253
- Parent=Netscape 6.2
13254
- Platform=WinNT
13255
- Win32=true
13256
-
13257
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.2*]
13258
- Parent=Netscape 6.2
13259
- Platform=Win2000
13260
- Win32=true
13261
-
13262
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.2*]
13263
- Parent=Netscape 6.2
13264
- Platform=WinXP
13265
- Win32=true
13266
-
13267
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.2*]
13268
- Parent=Netscape 6.2
13269
- Platform=Win2003
13270
- Win32=true
13271
-
13272
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.2*]
13273
- Parent=Netscape 6.2
13274
- Platform=WinVista
13275
-
13276
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.2*]
13277
- Parent=Netscape 6.2
13278
- Platform=Win7
13279
-
13280
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.2*]
13281
- Parent=Netscape 6.2
13282
- Platform=WinNT
13283
- Win32=true
13284
-
13285
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.2*]
13286
- Parent=Netscape 6.2
13287
- Platform=Win2000
13288
- Win32=true
13289
-
13290
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.2*]
13291
- Parent=Netscape 6.2
13292
- Platform=WinXP
13293
- Win32=true
13294
-
13295
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.2*]
13296
- Parent=Netscape 6.2
13297
- Platform=Win2003
13298
- Win32=true
13299
-
13300
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.2*]
13301
- Parent=Netscape 6.2
13302
- Platform=WinVista
13303
-
13304
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.2*]
13305
- Parent=Netscape 6.2
13306
- Platform=Win7
13307
-
13308
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.2*]
13309
- Parent=Netscape 6.2
13310
- Platform=Linux
13311
-
13312
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.0
13313
-
13314
- [Netscape 7.0]
13315
- Parent=DefaultProperties
13316
- Browser="Netscape"
13317
- Version=7.0
13318
- MajorVer=7
13319
- Frames=true
13320
- IFrames=true
13321
- Tables=true
13322
- Cookies=true
13323
- JavaApplets=true
13324
- JavaScript=true
13325
- CssVersion=2
13326
- supportsCSS=true
13327
-
13328
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.0*]
13329
- Parent=Netscape 7.0
13330
- Platform=MacOSX
13331
-
13332
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.0*]
13333
- Parent=Netscape 7.0
13334
- Platform=MacPPC
13335
-
13336
- [Mozilla/5.0 (Windows; ?; Win*9x 4.90; *) Gecko/* Netscape*/7.0*]
13337
- Parent=Netscape 7.0
13338
- Platform=WinME
13339
- Win32=true
13340
-
13341
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.0*]
13342
- Parent=Netscape 7.0
13343
- Platform=Win95
13344
- Win32=true
13345
-
13346
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.0*]
13347
- Parent=Netscape 7.0
13348
- Platform=Win98
13349
- Win32=true
13350
-
13351
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.0*]
13352
- Parent=Netscape 7.0
13353
- Platform=WinNT
13354
- Win32=true
13355
-
13356
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.0*]
13357
- Parent=Netscape 7.0
13358
- Platform=Win2000
13359
- Win32=true
13360
-
13361
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.0*]
13362
- Parent=Netscape 7.0
13363
- Platform=WinXP
13364
- Win32=true
13365
-
13366
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.0*]
13367
- Parent=Netscape 7.0
13368
- Platform=Win2003
13369
- Win32=true
13370
-
13371
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.0*]
13372
- Parent=Netscape 7.0
13373
- Platform=WinVista
13374
-
13375
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.0*]
13376
- Parent=Netscape 7.0
13377
- Platform=Win7
13378
-
13379
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.0*]
13380
- Parent=Netscape 7.0
13381
- Platform=WinNT
13382
- Win32=true
13383
-
13384
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.0*]
13385
- Parent=Netscape 7.0
13386
- Platform=Win2000
13387
- Win32=true
13388
-
13389
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.0*]
13390
- Parent=Netscape 7.0
13391
- Platform=WinXP
13392
- Win32=true
13393
-
13394
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.0*]
13395
- Parent=Netscape 7.0
13396
- Platform=Win2003
13397
- Win32=true
13398
-
13399
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.0*]
13400
- Parent=Netscape 7.0
13401
- Platform=WinVista
13402
-
13403
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.0*]
13404
- Parent=Netscape 7.0
13405
- Platform=Win7
13406
-
13407
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.0*]
13408
- Parent=Netscape 7.0
13409
- Platform=Linux
13410
-
13411
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.0*]
13412
- Parent=Netscape 7.0
13413
- Platform=SunOS
13414
-
13415
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.1
13416
-
13417
- [Netscape 7.1]
13418
- Parent=DefaultProperties
13419
- Browser="Netscape"
13420
- Version=7.1
13421
- MajorVer=7
13422
- MinorVer=1
13423
- Frames=true
13424
- IFrames=true
13425
- Tables=true
13426
- Cookies=true
13427
- JavaApplets=true
13428
- JavaScript=true
13429
- CssVersion=2
13430
- supportsCSS=true
13431
-
13432
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.1]
13433
- Parent=Netscape 7.1
13434
- Platform=MacOSX
13435
-
13436
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.1*]
13437
- Parent=Netscape 7.1
13438
- Platform=MacOSX
13439
-
13440
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.1*]
13441
- Parent=Netscape 7.1
13442
- Platform=MacPPC
13443
-
13444
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.1*]
13445
- Parent=Netscape 7.1
13446
- Platform=WinME
13447
- Win32=true
13448
-
13449
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.1*]
13450
- Parent=Netscape 7.1
13451
- Platform=Win95
13452
- Win32=true
13453
-
13454
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.1*]
13455
- Parent=Netscape 7.1
13456
- Platform=Win98
13457
- Win32=true
13458
-
13459
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.1*]
13460
- Parent=Netscape 7.1
13461
- Platform=WinME
13462
- Win32=true
13463
-
13464
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.1*]
13465
- Parent=Netscape 7.1
13466
- Platform=WinNT
13467
- Win32=true
13468
-
13469
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.1*]
13470
- Parent=Netscape 7.1
13471
- Platform=Win2000
13472
- Win32=true
13473
-
13474
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.1*]
13475
- Parent=Netscape 7.1
13476
- Platform=WinXP
13477
- Win32=true
13478
-
13479
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.1*]
13480
- Parent=Netscape 7.1
13481
- Platform=Win2003
13482
- Win32=true
13483
-
13484
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.1*]
13485
- Parent=Netscape 7.1
13486
- Platform=WinVista
13487
-
13488
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.1*]
13489
- Parent=Netscape 7.1
13490
- Platform=Win7
13491
-
13492
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.1*]
13493
- Parent=Netscape 7.1
13494
- Platform=WinNT
13495
- Win32=true
13496
-
13497
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.1*]
13498
- Parent=Netscape 7.1
13499
- Platform=Win2000
13500
- Win32=true
13501
-
13502
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.1*]
13503
- Parent=Netscape 7.1
13504
- Platform=WinXP
13505
- Win32=true
13506
-
13507
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.1*]
13508
- Parent=Netscape 7.1
13509
- Platform=Win2003
13510
- Win32=true
13511
-
13512
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.1*]
13513
- Parent=Netscape 7.1
13514
- Platform=WinVista
13515
-
13516
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.1*]
13517
- Parent=Netscape 7.1
13518
- Platform=Win7
13519
-
13520
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.1*]
13521
- Parent=Netscape 7.1
13522
- Platform=Linux
13523
-
13524
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.1*]
13525
- Parent=Netscape 7.1
13526
- Platform=SunOS
13527
-
13528
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.2
13529
-
13530
- [Netscape 7.2]
13531
- Parent=DefaultProperties
13532
- Browser="Netscape"
13533
- Version=7.2
13534
- MajorVer=7
13535
- MinorVer=2
13536
- Frames=true
13537
- IFrames=true
13538
- Tables=true
13539
- Cookies=true
13540
- JavaApplets=true
13541
- JavaScript=true
13542
- CssVersion=2
13543
- supportsCSS=true
13544
-
13545
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.2*]
13546
- Parent=Netscape 7.2
13547
- Platform=MacOSX
13548
-
13549
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.2*]
13550
- Parent=Netscape 7.2
13551
- Platform=MacOSX
13552
-
13553
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.2*]
13554
- Parent=Netscape 7.2
13555
- Platform=MacPPC
13556
-
13557
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.2*]
13558
- Parent=Netscape 7.2
13559
- Platform=WinME
13560
- Win32=true
13561
-
13562
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.2*]
13563
- Parent=Netscape 7.2
13564
- Platform=Win95
13565
- Win32=true
13566
-
13567
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.2*]
13568
- Parent=Netscape 7.2
13569
- Platform=Win98
13570
- Win32=true
13571
-
13572
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.2*]
13573
- Parent=Netscape 7.2
13574
- Platform=WinME
13575
- Win32=true
13576
-
13577
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.2*]
13578
- Parent=Netscape 7.2
13579
- Platform=WinNT
13580
- Win32=true
13581
-
13582
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.2*]
13583
- Parent=Netscape 7.2
13584
- Platform=Win2000
13585
- Win32=true
13586
-
13587
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.2*]
13588
- Parent=Netscape 7.2
13589
- Platform=WinXP
13590
- Win32=true
13591
-
13592
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.2*]
13593
- Parent=Netscape 7.2
13594
- Platform=Win2003
13595
- Win32=true
13596
-
13597
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.2*]
13598
- Parent=Netscape 7.2
13599
- Platform=WinVista
13600
-
13601
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.2*]
13602
- Parent=Netscape 7.2
13603
- Platform=Win7
13604
-
13605
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.2*]
13606
- Parent=Netscape 7.2
13607
- Platform=WinNT
13608
- Win32=true
13609
-
13610
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.2*]
13611
- Parent=Netscape 7.2
13612
- Platform=Win2000
13613
- Win32=true
13614
-
13615
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.2*]
13616
- Parent=Netscape 7.2
13617
- Platform=WinXP
13618
- Win32=true
13619
-
13620
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.2*]
13621
- Parent=Netscape 7.2
13622
- Platform=Win2003
13623
- Win32=true
13624
-
13625
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.2*]
13626
- Parent=Netscape 7.2
13627
- Platform=WinVista
13628
-
13629
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.2*]
13630
- Parent=Netscape 7.2
13631
- Platform=Win7
13632
-
13633
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.2*]
13634
- Parent=Netscape 7.2
13635
- Platform=Linux
13636
-
13637
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.2*]
13638
- Parent=Netscape 7.2
13639
- Platform=SunOS
13640
-
13641
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.0
13642
-
13643
- [Netscape 8.0]
13644
- Parent=DefaultProperties
13645
- Browser="Netscape"
13646
- Version=8.0
13647
- MajorVer=8
13648
- Frames=true
13649
- IFrames=true
13650
- Tables=true
13651
- Cookies=true
13652
- JavaApplets=true
13653
- JavaScript=true
13654
- CssVersion=2
13655
- supportsCSS=true
13656
-
13657
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/8.0*]
13658
- Parent=Netscape 8.0
13659
- Platform=MacOSX
13660
-
13661
- [Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/8.0*]
13662
- Parent=Netscape 8.0
13663
- Platform=MacOSX
13664
-
13665
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.0*]
13666
- Parent=Netscape 8.0
13667
- Platform=MacPPC
13668
-
13669
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.0*]
13670
- Parent=Netscape 8.0
13671
- Platform=WinME
13672
- Win32=true
13673
-
13674
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.0*]
13675
- Parent=Netscape 8.0
13676
- Platform=Win95
13677
- Win32=true
13678
-
13679
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.0*]
13680
- Parent=Netscape 8.0
13681
- Platform=Win98
13682
- Win32=true
13683
-
13684
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.0*]
13685
- Parent=Netscape 8.0
13686
- Platform=WinME
13687
- Win32=true
13688
-
13689
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.0*]
13690
- Parent=Netscape 8.0
13691
- Platform=WinNT
13692
- Win32=true
13693
-
13694
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.0*]
13695
- Parent=Netscape 8.0
13696
- Platform=Win2000
13697
- Win32=true
13698
-
13699
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.0*]
13700
- Parent=Netscape 8.0
13701
- Platform=WinXP
13702
- Win32=true
13703
-
13704
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.0*]
13705
- Parent=Netscape 8.0
13706
- Platform=Win2003
13707
- Win32=true
13708
-
13709
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.0*]
13710
- Parent=Netscape 8.0
13711
- Platform=WinVista
13712
-
13713
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.0*]
13714
- Parent=Netscape 8.0
13715
- Platform=Win7
13716
-
13717
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.0*]
13718
- Parent=Netscape 8.0
13719
- Platform=WinNT
13720
- Win32=true
13721
-
13722
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.0*]
13723
- Parent=Netscape 8.0
13724
- Platform=Win2000
13725
- Win32=true
13726
-
13727
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.0*]
13728
- Parent=Netscape 8.0
13729
- Platform=WinXP
13730
- Win32=true
13731
-
13732
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.0*]
13733
- Parent=Netscape 8.0
13734
- Platform=Win2003
13735
- Win32=true
13736
-
13737
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.0*]
13738
- Parent=Netscape 8.0
13739
- Platform=WinVista
13740
-
13741
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.0*]
13742
- Parent=Netscape 8.0
13743
- Platform=Win7
13744
-
13745
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.0*]
13746
- Parent=Netscape 8.0
13747
- Platform=Linux
13748
-
13749
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.0*]
13750
- Parent=Netscape 8.0
13751
- Platform=SunOS
13752
-
13753
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.1
13754
-
13755
- [Netscape 8.1]
13756
- Parent=DefaultProperties
13757
- Browser="Netscape"
13758
- Version=8.1
13759
- MajorVer=8
13760
- MinorVer=1
13761
- Frames=true
13762
- IFrames=true
13763
- Tables=true
13764
- Cookies=true
13765
- JavaApplets=true
13766
- JavaScript=true
13767
- CssVersion=2
13768
- supportsCSS=true
13769
-
13770
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*) Gecko/* Netscape*/8.1*]
13771
- Parent=Netscape 8.1
13772
- Platform=MacOSX
13773
-
13774
- [Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.1*]
13775
- Parent=Netscape 8.1
13776
- Platform=MacPPC
13777
-
13778
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.1*]
13779
- Parent=Netscape 8.1
13780
- Platform=WinME
13781
- Win32=true
13782
-
13783
- [Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.1*]
13784
- Parent=Netscape 8.1
13785
- Platform=Win95
13786
- Win32=true
13787
-
13788
- [Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.1*]
13789
- Parent=Netscape 8.1
13790
- Platform=Win98
13791
- Win32=true
13792
-
13793
- [Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.1*]
13794
- Parent=Netscape 8.1
13795
- Platform=WinME
13796
- Win32=true
13797
-
13798
- [Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.1*]
13799
- Parent=Netscape 8.1
13800
- Platform=WinNT
13801
- Win32=true
13802
-
13803
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.1*]
13804
- Parent=Netscape 8.1
13805
- Platform=Win2000
13806
- Win32=true
13807
-
13808
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.1*]
13809
- Parent=Netscape 8.1
13810
- Platform=WinXP
13811
- Win32=true
13812
-
13813
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.1*]
13814
- Parent=Netscape 8.1
13815
- Platform=Win2003
13816
- Win32=true
13817
-
13818
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.1*]
13819
- Parent=Netscape 8.1
13820
- Platform=WinVista
13821
- Win32=true
13822
-
13823
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.1*]
13824
- Parent=Netscape 8.1
13825
- Platform=Win7
13826
-
13827
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.1*]
13828
- Parent=Netscape 8.1
13829
- Platform=WinNT
13830
- Win32=true
13831
-
13832
- [Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.1*]
13833
- Parent=Netscape 8.1
13834
- Platform=Win2000
13835
- Win32=true
13836
-
13837
- [Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.1*]
13838
- Parent=Netscape 8.1
13839
- Platform=WinXP
13840
- Win32=true
13841
-
13842
- [Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.1*]
13843
- Parent=Netscape 8.1
13844
- Platform=Win2003
13845
- Win32=true
13846
-
13847
- [Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.1*]
13848
- Parent=Netscape 8.1
13849
- Platform=WinVista
13850
- Win32=true
13851
-
13852
- [Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.1*]
13853
- Parent=Netscape 8.1
13854
- Platform=Win7
13855
-
13856
- [Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.1*]
13857
- Parent=Netscape 8.1
13858
- Platform=Linux
13859
-
13860
- [Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.1*]
13861
- Parent=Netscape 8.1
13862
- Platform=SunOS
13863
-
13864
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.0
13865
-
13866
- [SeaMonkey 1.0]
13867
- Parent=DefaultProperties
13868
- Browser="SeaMonkey"
13869
- Version=1.0
13870
- MajorVer=1
13871
- Frames=true
13872
- IFrames=true
13873
- Tables=true
13874
- Cookies=true
13875
- BackgroundSounds=true
13876
- JavaApplets=true
13877
- JavaScript=true
13878
- CssVersion=2
13879
- supportsCSS=true
13880
-
13881
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13882
- Parent=SeaMonkey 1.0
13883
- Platform=MacOSX
13884
-
13885
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13886
- Parent=SeaMonkey 1.0
13887
- Platform=WinME
13888
-
13889
- [Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13890
- Parent=SeaMonkey 1.0
13891
- Platform=Win98
13892
-
13893
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13894
- Parent=SeaMonkey 1.0
13895
- Platform=Win2000
13896
-
13897
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13898
- Parent=SeaMonkey 1.0
13899
- Platform=WinXP
13900
-
13901
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13902
- Parent=SeaMonkey 1.0
13903
- Platform=Win2003
13904
-
13905
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13906
- Parent=SeaMonkey 1.0
13907
- Platform=WinVista
13908
-
13909
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13910
- Parent=SeaMonkey 1.0
13911
- Platform=Win7
13912
-
13913
- [Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13914
- Parent=SeaMonkey 1.0
13915
- Platform=FreeBSD
13916
-
13917
- [Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.0*]
13918
- Parent=SeaMonkey 1.0
13919
- Platform=Linux
13920
-
13921
- [Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
13922
- Parent=SeaMonkey 1.0
13923
- Platform=SunOS
13924
-
13925
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.1
13926
-
13927
- [SeaMonkey 1.1]
13928
- Parent=DefaultProperties
13929
- Browser="SeaMonkey"
13930
- Version=1.1
13931
- MajorVer=1
13932
- MinorVer=1
13933
- Frames=true
13934
- IFrames=true
13935
- Tables=true
13936
- Cookies=true
13937
- BackgroundSounds=true
13938
- JavaApplets=true
13939
- JavaScript=true
13940
- CssVersion=2
13941
- supportsCSS=true
13942
-
13943
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13944
- Parent=SeaMonkey 1.1
13945
- Platform=MacOSX
13946
-
13947
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13948
- Parent=SeaMonkey 1.1
13949
- Platform=WinME
13950
-
13951
- [Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13952
- Parent=SeaMonkey 1.1
13953
- Platform=Win98
13954
-
13955
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13956
- Parent=SeaMonkey 1.1
13957
- Platform=Win2000
13958
-
13959
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13960
- Parent=SeaMonkey 1.1
13961
- Platform=WinXP
13962
-
13963
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13964
- Parent=SeaMonkey 1.1
13965
- Platform=Win2003
13966
-
13967
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13968
- Parent=SeaMonkey 1.1
13969
- Platform=WinVista
13970
-
13971
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13972
- Parent=SeaMonkey 1.1
13973
- Platform=Win7
13974
-
13975
- [Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13976
- Parent=SeaMonkey 1.1
13977
- Platform=FreeBSD
13978
-
13979
- [Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.1*]
13980
- Parent=SeaMonkey 1.1
13981
- Platform=Linux
13982
-
13983
- [Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
13984
- Parent=SeaMonkey 1.1
13985
- Platform=SunOS
13986
-
13987
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 2.0
13988
-
13989
- [SeaMonkey 2.0]
13990
- Parent=DefaultProperties
13991
- Browser="SeaMonkey"
13992
- Version=2.0
13993
- MajorVer=2
13994
- Alpha=true
13995
- Frames=true
13996
- IFrames=true
13997
- Tables=true
13998
- Cookies=true
13999
- BackgroundSounds=true
14000
- JavaApplets=true
14001
- JavaScript=true
14002
- CssVersion=2
14003
- supportsCSS=true
14004
-
14005
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14006
- Parent=SeaMonkey 2.0
14007
- Platform=MacOSX
14008
-
14009
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14010
- Parent=SeaMonkey 2.0
14011
- Platform=WinME
14012
-
14013
- [Mozilla/5.0 (Windows; ?; Win98; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14014
- Parent=SeaMonkey 2.0
14015
- Platform=Win98
14016
-
14017
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14018
- Parent=SeaMonkey 2.0
14019
- Platform=Win2000
14020
-
14021
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14022
- Parent=SeaMonkey 2.0
14023
- Platform=WinXP
14024
-
14025
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14026
- Parent=SeaMonkey 2.0
14027
- Platform=Win2003
14028
-
14029
- [Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14030
- Parent=SeaMonkey 2.0
14031
- Platform=WinVista
14032
-
14033
- [Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14034
- Parent=SeaMonkey 2.0
14035
- Platform=Win7
14036
-
14037
- [Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14038
- Parent=SeaMonkey 2.0
14039
- Platform=FreeBSD
14040
-
14041
- [Mozilla/5.0 (X11; ?; Linux*; *; rv:1.9*) Gecko/20060221 SeaMonkey/2.0*]
14042
- Parent=SeaMonkey 2.0
14043
- Platform=Linux
14044
-
14045
- [Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
14046
- Parent=SeaMonkey 2.0
14047
- Platform=SunOS
14048
-
14049
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 1.0
14050
-
14051
- [Flock 1.0]
14052
- Parent=DefaultProperties
14053
- Browser="Flock"
14054
- Version=1.0
14055
- MajorVer=1
14056
- Frames=true
14057
- IFrames=true
14058
- Tables=true
14059
- Cookies=true
14060
- JavaApplets=true
14061
- JavaScript=true
14062
- CssVersion=2
14063
- supportsCSS=true
14064
-
14065
- [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14066
- Parent=Flock 1.0
14067
- Platform=MacOSX
14068
-
14069
- [Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14070
- Parent=Flock 1.0
14071
- Platform=WinME
14072
-
14073
- [Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14074
- Parent=Flock 1.0
14075
- Platform=Win2000
14076
-
14077
- [Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14078
- Parent=Flock 1.0
14079
- Platform=WinXP
14080
-
14081
- [Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14082
- Parent=Flock 1.0
14083
- Platform=Win2003
14084
-
14085
- [Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14086
- Parent=Flock 1.0
14087
- Platform=WinVista
14088
-
14089
- [Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
14090
- Parent=Flock 1.0
14091
- Platform=Win7
14092
-
14093
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 2.0
14094
-
14095
- [Flock 2.0]
14096
- Parent=DefaultProperties
14097
- Browser="Flock"
14098
- Version=2.0
14099
- MajorVer=2
14100
- Frames=true
14101
- IFrames=true
14102
- Tables=true
14103
- Cookies=true
14104
- JavaApplets=true
14105
- JavaScript=true
14106
- CssVersion=2
14107
- supportsCSS=true
14108
-
14109
- [Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14110
- Parent=Flock 2.0
14111
- Platform=MacOSX
14112
-
14113
- [Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14114
- Parent=Flock 2.0
14115
- Platform=WinME
14116
-
14117
- [Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14118
- Parent=Flock 2.0
14119
- Platform=Win2000
14120
-
14121
- [Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14122
- Parent=Flock 2.0
14123
- Platform=WinXP
14124
-
14125
- [Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14126
- Parent=Flock 2.0
14127
- Platform=Win2003
14128
-
14129
- [Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14130
- Parent=Flock 2.0
14131
- Platform=WinVista
14132
-
14133
- [Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
14134
- Parent=Flock 2.0
14135
- Platform=Win7
14136
-
14137
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sleipnir 2.0
14138
-
14139
- [Sleipnir]
14140
- Parent=DefaultProperties
14141
- Browser="Sleipnir"
14142
- Version=2.0
14143
- MajorVer=2
14144
- Frames=true
14145
- IFrames=true
14146
- Tables=true
14147
- Cookies=true
14148
- JavaApplets=true
14149
- JavaScript=true
14150
- CssVersion=2
14151
- supportsCSS=true
14152
-
14153
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0*) Sleipnir/2.*]
14154
- Parent=Sleipnir
14155
- Platform=Win2000
14156
-
14157
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1*) Sleipnir/2.*]
14158
- Parent=Sleipnir
14159
- Platform=WinXP
14160
-
14161
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2*) Sleipnir/2.*]
14162
- Parent=Sleipnir
14163
- Platform=Win2003
14164
-
14165
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0*) Sleipnir/2.*]
14166
- Parent=Sleipnir
14167
- Platform=WinVista
14168
-
14169
- [Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1*) Sleipnir/2.*]
14170
- Parent=Sleipnir
14171
- Platform=Win7
14172
-
14173
- [Sleipnir*]
14174
- Parent=Sleipnir
14175
-
14176
- [Sleipnir/2.*]
14177
- Parent=Sleipnir
14178
-
14179
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 1.0
14180
-
14181
- [Fennec 1.0]
14182
- Parent=DefaultProperties
14183
- Browser="Firefox Mobile"
14184
- Version=1.0
14185
- MajorVer=1
14186
- Alpha=true
14187
- Frames=true
14188
- IFrames=true
14189
- Tables=true
14190
- Cookies=true
14191
- JavaApplets=true
14192
- JavaScript=true
14193
- CssVersion=3
14194
- supportsCSS=true
14195
-
14196
- [Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9*) Gecko/* Fennec/1.0*]
14197
- Parent=Fennec 1.0
14198
- Platform=WinXP
14199
-
14200
- [Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9*) Gecko/* Fennec/1.0*]
14201
- Parent=Fennec 1.0
14202
- Platform=WinVista
14203
-
14204
- [Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9*) Gecko/* Fennec/1.0*]
14205
- Parent=Fennec 1.0
14206
- Platform=Win7
14207
-
14208
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firebird
14209
-
14210
- [Firebird]
14211
- Parent=DefaultProperties
14212
- Browser="Firebird"
14213
- Frames=true
14214
- IFrames=true
14215
- Tables=true
14216
- Cookies=true
14217
- JavaApplets=true
14218
- JavaScript=true
14219
- CssVersion=2
14220
- supportsCSS=true
14221
-
14222
- [Mozilla/5.0 (Linux; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14223
- Parent=Firebird
14224
-
14225
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firebird/0.*]
14226
- Parent=Firebird
14227
-
14228
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14229
- Parent=Firebird
14230
-
14231
- [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firebird/0.*]
14232
- Parent=Firebird
14233
-
14234
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firebird/0.*]
14235
- Parent=Firebird
14236
- Win32=true
14237
-
14238
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14239
- Parent=Firebird
14240
- Win32=true
14241
-
14242
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firebird/0.*]
14243
- Parent=Firebird
14244
- Win32=true
14245
-
14246
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firebird/0.*]
14247
- Parent=Firebird
14248
- Win32=true
14249
-
14250
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14251
- Parent=Firebird
14252
- Win32=true
14253
-
14254
- [Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firebird Browser/0.*]
14255
- Parent=Firebird
14256
- Win32=true
14257
-
14258
- [Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firebird/0.*]
14259
- Parent=Firebird
14260
- Win32=true
14261
-
14262
- [Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14263
- Parent=Firebird
14264
- Win32=true
14265
-
14266
- [Mozilla/5.0 (Windows; *; Windows NT 5.?; rv:1.*) Gecko/* Firebird/0.*]
14267
- Parent=Firebird
14268
- Win32=true
14269
-
14270
- [Mozilla/5.0 (Windows; *; Windows NT 6.*; *; rv:1.*) Gecko/* Firebird/0.*]
14271
- Parent=Firebird
14272
- Win32=true
14273
-
14274
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firebird/0.*]
14275
- Parent=Firebird
14276
- Win32=true
14277
-
14278
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14279
- Parent=Firebird
14280
- Win32=true
14281
-
14282
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firebird/0.*]
14283
- Parent=Firebird
14284
-
14285
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14286
- Parent=Firebird
14287
-
14288
- [Mozilla/5.0 (X11; *; IRIX*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14289
- Parent=Firebird
14290
-
14291
- [Mozilla/5.0 (X11; *; Linux*; *; rv:1.*) Gecko/* Firebird/0.*]
14292
- Parent=Firebird
14293
-
14294
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14295
- Parent=Firebird
14296
-
14297
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firebird/0.*]
14298
- Parent=Firebird
14299
-
14300
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
14301
- Parent=Firebird
14302
-
14303
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox
14304
-
14305
- [Firefox]
14306
- Parent=DefaultProperties
14307
- Browser="Firefox"
14308
- Frames=true
14309
- IFrames=true
14310
- Tables=true
14311
- Cookies=true
14312
- JavaApplets=true
14313
- JavaScript=true
14314
- CssVersion=2
14315
- supportsCSS=true
14316
-
14317
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/0.*]
14318
- Parent=Firefox
14319
- Platform=MacOSX
14320
-
14321
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; rv:1.*) Gecko/* Firefox/0.*]
14322
- Parent=Firefox
14323
-
14324
- [Mozilla/5.0 (OS/2; *; Warp*; rv:1.*) Gecko/* Firefox/0.*]
14325
- Parent=Firefox
14326
-
14327
- [Mozilla/5.0 (Windows NT 5.?; ?; rv:1.*) Gecko/* Firefox]
14328
- Parent=Firefox
14329
- Win32=true
14330
-
14331
- [Mozilla/5.0 (Windows; *; *; rv:1.*) Gecko/* Firefox/0.*]
14332
- Parent=Firefox
14333
- Win32=true
14334
-
14335
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/0.*]
14336
- Parent=Firefox
14337
- Platform=WinME
14338
- Win32=true
14339
-
14340
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; rv:1.*) Gecko/* Firefox/0.*]
14341
- Parent=Firefox
14342
- Win32=true
14343
-
14344
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/0.*]
14345
- Parent=Firefox
14346
- Platform=Win95
14347
- Win32=true
14348
-
14349
- [Mozilla/5.0 (Windows; *; Win95; rv:1.*) Gecko/* Firefox/0.*]
14350
- Parent=Firefox
14351
- Win32=true
14352
-
14353
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/0.*]
14354
- Parent=Firefox
14355
- Platform=Win98
14356
- Win32=true
14357
-
14358
- [Mozilla/5.0 (Windows; *; Win98; rv:1.*) Gecko/* Firefox/0.*]
14359
- Parent=Firefox
14360
- Win32=true
14361
-
14362
- [Mozilla/5.0 (Windows; *; Windows NT 5.*; *; rv:1.*) Gecko/* Deer Park/Alpha*]
14363
- Parent=Firefox
14364
- Win32=true
14365
-
14366
- [Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firefox/10.5]
14367
- Parent=Firefox
14368
- Win32=true
14369
-
14370
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/0.*]
14371
- Parent=Firefox
14372
- Platform=Win2000
14373
- Win32=true
14374
-
14375
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; rv:1.*) Gecko/* Firefox/0.*]
14376
- Parent=Firefox
14377
- Win32=true
14378
-
14379
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/0.*]
14380
- Parent=Firefox
14381
- Win32=true
14382
-
14383
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/0.*]
14384
- Parent=Firefox
14385
- Win32=true
14386
-
14387
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/0.*]
14388
- Parent=Firefox
14389
- Win32=true
14390
-
14391
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; rv:1.*) Gecko/* Firefox/0.*]
14392
- Parent=Firefox
14393
- Win32=true
14394
-
14395
- [Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/0.*]
14396
- Parent=Firefox
14397
- Platform=WinVista
14398
- Win32=true
14399
-
14400
- [Mozilla/5.0 (Windows; *; Windows NT 6.0*; rv:1.*) Gecko/* Firefox/0.*]
14401
- Parent=Firefox
14402
- Win32=true
14403
-
14404
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/0.*]
14405
- Parent=Firefox
14406
- Platform=WinNT
14407
- Win32=true
14408
-
14409
- [Mozilla/5.0 (Windows; *; WinNT4.0; rv:1.*) Gecko/* Firefox/0.*]
14410
- Parent=Firefox
14411
- Win32=true
14412
-
14413
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/0.*]
14414
- Parent=Firefox
14415
- Platform=FreeBSD
14416
-
14417
- [Mozilla/5.0 (X11; *; FreeBSD*; rv:1.*) Gecko/* Firefox/0.*]
14418
- Parent=Firefox
14419
-
14420
- [Mozilla/5.0 (X11; *; HP-UX*; rv:1.*) Gecko/* Firefox/0.*]
14421
- Parent=Firefox
14422
- Platform=HP-UX
14423
-
14424
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/0.*]
14425
- Parent=Firefox
14426
- Platform=IRIX64
14427
-
14428
- [Mozilla/5.0 (X11; *; Linux*; *; rv:1.*) Gecko/* Firefox/0.*]
14429
- Parent=Firefox
14430
-
14431
- [Mozilla/5.0 (X11; *; Linux*; rv:1.*) Gecko/* Firefox/0.*]
14432
- Parent=Firefox
14433
-
14434
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/0.*]
14435
- Parent=Firefox
14436
- Platform=OpenBSD
14437
-
14438
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/0.*]
14439
- Parent=Firefox
14440
- Platform=SunOS
14441
-
14442
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.0
14443
-
14444
- [Firefox 1.0]
14445
- Parent=DefaultProperties
14446
- Browser="Firefox"
14447
- Version=1.0
14448
- MajorVer=1
14449
- Frames=true
14450
- IFrames=true
14451
- Tables=true
14452
- Cookies=true
14453
- JavaApplets=true
14454
- JavaScript=true
14455
- CssVersion=2
14456
- supportsCSS=true
14457
-
14458
- [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.0*]
14459
- Parent=Firefox 1.0
14460
- Platform=MacPPC
14461
-
14462
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.0*]
14463
- Parent=Firefox 1.0
14464
- Platform=MacOSX
14465
-
14466
- [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.0*]
14467
- Parent=Firefox 1.0
14468
- Platform=OS/2
14469
-
14470
- [Mozilla/5.0 (Windows; *; Win 9x 4.90*; *; rv:1.*) Gecko/* Firefox/1.0*]
14471
- Parent=Firefox 1.0
14472
- Platform=WinME
14473
- Win32=true
14474
-
14475
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.0*]
14476
- Parent=Firefox 1.0
14477
- Platform=Win95
14478
- Win32=true
14479
-
14480
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.0*]
14481
- Parent=Firefox 1.0
14482
- Platform=Win98
14483
- Win32=true
14484
-
14485
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.0*]
14486
- Parent=Firefox 1.0
14487
- Platform=Win2000
14488
- Win32=true
14489
-
14490
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.0*]
14491
- Parent=Firefox 1.0
14492
- Platform=WinXP
14493
- Win32=true
14494
-
14495
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/1.0*]
14496
- Parent=Firefox 1.0
14497
- Platform=WinXP
14498
- Win32=true
14499
-
14500
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.0*]
14501
- Parent=Firefox 1.0
14502
- Platform=Win2003
14503
- Win32=true
14504
-
14505
- [Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/1.0*]
14506
- Parent=Firefox 1.0
14507
- Platform=WinVista
14508
- Win32=true
14509
-
14510
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.0*]
14511
- Parent=Firefox 1.0
14512
- Platform=WinNT
14513
- Win32=true
14514
-
14515
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.0*]
14516
- Parent=Firefox 1.0
14517
- Platform=Linux
14518
-
14519
- [Mozilla/5.0 (X11; *; *Linux*; rv:1.*) Gecko/* Firefox/1.0*]
14520
- Parent=Firefox 1.0
14521
- Platform=Linux
14522
-
14523
- [Mozilla/5.0 (X11; *; DragonFly*; *; rv:1.*) Gecko/* Firefox/1.0*]
14524
- Parent=Firefox 1.0
14525
-
14526
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.0*]
14527
- Parent=Firefox 1.0
14528
- Platform=FreeBSD
14529
-
14530
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.0*]
14531
- Parent=Firefox 1.0
14532
- Platform=HP-UX
14533
-
14534
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.0*]
14535
- Parent=Firefox 1.0
14536
- Platform=IRIX64
14537
-
14538
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.0*]
14539
- Parent=Firefox 1.0
14540
- Platform=OpenBSD
14541
-
14542
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.0*]
14543
- Parent=Firefox 1.0
14544
- Platform=SunOS
14545
-
14546
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.4
14547
-
14548
- [Firefox 1.4]
14549
- Parent=DefaultProperties
14550
- Browser="Firefox"
14551
- Version=1.4
14552
- MajorVer=1
14553
- MinorVer=4
14554
- Frames=true
14555
- IFrames=true
14556
- Tables=true
14557
- Cookies=true
14558
- JavaApplets=true
14559
- JavaScript=true
14560
- CssVersion=2
14561
- supportsCSS=true
14562
-
14563
- [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.4*]
14564
- Parent=Firefox 1.4
14565
- Platform=Linux
14566
-
14567
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.4*]
14568
- Parent=Firefox 1.4
14569
- Platform=MacOSX
14570
-
14571
- [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.4*]
14572
- Parent=Firefox 1.4
14573
- Platform=OS/2
14574
-
14575
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.4*]
14576
- Parent=Firefox 1.4
14577
- Platform=WinME
14578
- Win32=true
14579
-
14580
- [Mozilla/5.0 (Windows; *; Win95*; *; rv:1.*) Gecko/* Firefox/1.4*]
14581
- Parent=Firefox 1.4
14582
- Platform=Win95
14583
- Win32=true
14584
-
14585
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.4*]
14586
- Parent=Firefox 1.4
14587
- Platform=Win98
14588
- Win32=true
14589
-
14590
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.4*]
14591
- Parent=Firefox 1.4
14592
- Platform=Win2000
14593
- Win32=true
14594
-
14595
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.4*]
14596
- Parent=Firefox 1.4
14597
- Platform=WinXP
14598
- Win32=true
14599
-
14600
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.4*]
14601
- Parent=Firefox 1.4
14602
- Platform=Win2003
14603
- Win32=true
14604
-
14605
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.4*]
14606
- Parent=Firefox 1.4
14607
- Platform=WinVista
14608
- Win32=true
14609
-
14610
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.4*]
14611
- Parent=Firefox 1.4
14612
- Platform=WinNT
14613
- Win32=true
14614
-
14615
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.4*]
14616
- Parent=Firefox 1.4
14617
- Platform=Linux
14618
-
14619
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.4*]
14620
- Parent=Firefox 1.4
14621
- Platform=FreeBSD
14622
-
14623
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.4*]
14624
- Parent=Firefox 1.4
14625
- Platform=HP-UX
14626
-
14627
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.4*]
14628
- Parent=Firefox 1.4
14629
- Platform=IRIX64
14630
-
14631
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.4*]
14632
- Parent=Firefox 1.4
14633
- Platform=OpenBSD
14634
-
14635
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.4*]
14636
- Parent=Firefox 1.4
14637
- Platform=SunOS
14638
-
14639
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.5
14640
-
14641
- [Firefox 1.5]
14642
- Parent=DefaultProperties
14643
- Browser="Firefox"
14644
- Version=1.5
14645
- MajorVer=1
14646
- MinorVer=5
14647
- Frames=true
14648
- IFrames=true
14649
- Tables=true
14650
- Cookies=true
14651
- JavaApplets=true
14652
- JavaScript=true
14653
- CssVersion=2
14654
- supportsCSS=true
14655
-
14656
- [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.5*]
14657
- Parent=Firefox 1.5
14658
- Platform=Linux
14659
-
14660
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.5*]
14661
- Parent=Firefox 1.5
14662
- Platform=MacOSX
14663
-
14664
- [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.5*]
14665
- Parent=Firefox 1.5
14666
- Platform=OS/2
14667
-
14668
- [Mozilla/5.0 (rv:1.*) Gecko/* Firefox/1.5*]
14669
- Parent=Firefox 1.5
14670
-
14671
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.5*]
14672
- Parent=Firefox 1.5
14673
- Platform=WinME
14674
- Win32=true
14675
-
14676
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.5*]
14677
- Parent=Firefox 1.5
14678
- Platform=Win95
14679
- Win32=true
14680
-
14681
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.5*]
14682
- Parent=Firefox 1.5
14683
- Platform=Win98
14684
- Win32=true
14685
-
14686
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.5*]
14687
- Parent=Firefox 1.5
14688
- Platform=Win2000
14689
- Win32=true
14690
-
14691
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.5*]
14692
- Parent=Firefox 1.5
14693
- Platform=WinXP
14694
- Win32=true
14695
-
14696
- [Mozilla/5.0 (Windows; *; Windows NT 5.2 x64; *; rv:1.*) Gecko/* Firefox/1.5*]
14697
- Parent=Firefox 1.5
14698
- Platform=WinXP
14699
- Win32=true
14700
-
14701
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.5*]
14702
- Parent=Firefox 1.5
14703
- Platform=Win2003
14704
- Win32=true
14705
-
14706
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.5*]
14707
- Parent=Firefox 1.5
14708
- Platform=WinVista
14709
- Win32=true
14710
-
14711
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.5*]
14712
- Parent=Firefox 1.5
14713
- Platform=WinNT
14714
- Win32=true
14715
-
14716
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.5*]
14717
- Parent=Firefox 1.5
14718
- Platform=Linux
14719
-
14720
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.5*]
14721
- Parent=Firefox 1.5
14722
- Platform=FreeBSD
14723
-
14724
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.5*]
14725
- Parent=Firefox 1.5
14726
- Platform=HP-UX
14727
-
14728
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.5*]
14729
- Parent=Firefox 1.5
14730
- Platform=IRIX64
14731
-
14732
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.5*]
14733
- Parent=Firefox 1.5
14734
- Platform=OpenBSD
14735
-
14736
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.5*]
14737
- Parent=Firefox 1.5
14738
- Platform=SunOS
14739
-
14740
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.0
14741
-
14742
- [Firefox 2.0]
14743
- Parent=DefaultProperties
14744
- Browser="Firefox"
14745
- Version=2.0
14746
- MajorVer=2
14747
- Frames=true
14748
- IFrames=true
14749
- Tables=true
14750
- Cookies=true
14751
- JavaApplets=true
14752
- JavaScript=true
14753
- CssVersion=2
14754
- supportsCSS=true
14755
-
14756
- [Mozilla/5.0 (Linux; *; PPC*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14757
- Parent=Firefox 2.0
14758
- Platform=Linux
14759
-
14760
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14761
- Parent=Firefox 2.0
14762
- Platform=MacOSX
14763
-
14764
- [Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14765
- Parent=Firefox 2.0
14766
- Platform=OS/2
14767
-
14768
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.8*) Gecko/* Firefox/2.0*]
14769
- Parent=Firefox 2.0
14770
- Platform=WinME
14771
- Win32=true
14772
-
14773
- [Mozilla/5.0 (Windows; *; Win95; *; rv:1.8*) Gecko/* Firefox/2.0*]
14774
- Parent=Firefox 2.0
14775
- Platform=Win95
14776
- Win32=true
14777
-
14778
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.8*) Gecko/* Firefox/2.0*]
14779
- Parent=Firefox 2.0
14780
- Platform=Win98
14781
- Win32=true
14782
-
14783
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/2.0*]
14784
- Parent=Firefox 2.0
14785
- Platform=Win2000
14786
- Win32=true
14787
-
14788
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.8*) Gecko/* Firefox/2.0*]
14789
- Parent=Firefox 2.0
14790
- Platform=WinXP
14791
- Win32=true
14792
-
14793
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.8*) Gecko/* Firefox/2.0*]
14794
- Parent=Firefox 2.0
14795
- Platform=Win2003
14796
- Win32=true
14797
-
14798
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.8*) Gecko/* Firefox/2.0*]
14799
- Parent=Firefox 2.0
14800
- Platform=WinVista
14801
- Win32=true
14802
-
14803
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.8*) Gecko/* Firefox/2.0*]
14804
- Parent=Firefox 2.0
14805
- Platform=Win7
14806
-
14807
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.8*) Gecko/* Firefox/2.0*]
14808
- Parent=Firefox 2.0
14809
- Platform=WinNT
14810
- Win32=true
14811
-
14812
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14813
- Parent=Firefox 2.0
14814
- Platform=Linux
14815
-
14816
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14817
- Parent=Firefox 2.0
14818
- Platform=FreeBSD
14819
-
14820
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14821
- Parent=Firefox 2.0
14822
- Platform=HP-UX
14823
-
14824
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14825
- Parent=Firefox 2.0
14826
- Platform=IRIX64
14827
-
14828
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14829
- Parent=Firefox 2.0
14830
- Platform=OpenBSD
14831
-
14832
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.8*) Gecko/* Firefox/2.0*]
14833
- Parent=Firefox 2.0
14834
- Platform=SunOS
14835
-
14836
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.0
14837
-
14838
- [Firefox 3.0]
14839
- Parent=DefaultProperties
14840
- Browser="Firefox"
14841
- Version=3.0
14842
- MajorVer=3
14843
- Frames=true
14844
- IFrames=true
14845
- Tables=true
14846
- Cookies=true
14847
- JavaApplets=true
14848
- JavaScript=true
14849
- CssVersion=3
14850
- supportsCSS=true
14851
-
14852
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.0*]
14853
- Parent=Firefox 3.0
14854
- Platform=MacOSX
14855
-
14856
- [Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/3.0*]
14857
- Parent=Firefox 3.0
14858
- Platform=Win2000
14859
-
14860
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.0*]
14861
- Parent=Firefox 3.0
14862
- Platform=WinXP
14863
- Win32=true
14864
-
14865
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.0*]
14866
- Parent=Firefox 3.0
14867
- Platform=Win2003
14868
- Win32=true
14869
-
14870
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.0*]
14871
- Parent=Firefox 3.0
14872
- Platform=WinVista
14873
- Win32=true
14874
-
14875
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* Firefox/3.0*]
14876
- Parent=Firefox 3.0
14877
- Platform=Win7
14878
-
14879
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.0*]
14880
- Parent=Firefox 3.0
14881
- Platform=WinNT
14882
- Win32=true
14883
-
14884
- [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
14885
- Parent=Firefox 3.0
14886
- Platform=WinXP
14887
- Win32=false
14888
- Win64=true
14889
-
14890
- [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
14891
- Parent=Firefox 3.0
14892
- Platform=Win2003
14893
- Win32=false
14894
- Win64=true
14895
-
14896
- [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
14897
- Parent=Firefox 3.0
14898
- Platform=WinVista
14899
-
14900
- [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
14901
- Parent=Firefox 3.0
14902
- Platform=Win7
14903
-
14904
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.0*]
14905
- Parent=Firefox 3.0
14906
- Platform=Linux
14907
-
14908
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
14909
- Parent=Firefox 3.0
14910
- Platform=FreeBSD
14911
-
14912
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.0*]
14913
- Parent=Firefox 3.0
14914
- Platform=HP-UX
14915
-
14916
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.0*]
14917
- Parent=Firefox 3.0
14918
- Platform=IRIX64
14919
-
14920
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
14921
- Parent=Firefox 3.0
14922
- Platform=OpenBSD
14923
-
14924
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.0*]
14925
- Parent=Firefox 3.0
14926
- Platform=SunOS
14927
-
14928
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.1
14929
-
14930
- [Firefox 3.1]
14931
- Parent=DefaultProperties
14932
- Browser="Firefox"
14933
- Version=3.1
14934
- MajorVer=3
14935
- MinorVer=1
14936
- Beta=true
14937
- Frames=true
14938
- IFrames=true
14939
- Tables=true
14940
- Cookies=true
14941
- JavaApplets=true
14942
- JavaScript=true
14943
- CssVersion=3
14944
- supportsCSS=true
14945
-
14946
- [Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.1*]
14947
- Parent=Firefox 3.1
14948
- Platform=MacOSX
14949
-
14950
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
14951
- Parent=Firefox 3.1
14952
- Platform=WinXP
14953
- Win32=true
14954
-
14955
- [Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.1*]
14956
- Parent=Firefox 3.1
14957
- Platform=Win2003
14958
- Win32=true
14959
-
14960
- [Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
14961
- Parent=Firefox 3.1
14962
- Platform=WinVista
14963
- Win32=true
14964
-
14965
- [Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
14966
- Parent=Firefox 3.1
14967
- Platform=Win7
14968
-
14969
- [Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
14970
- Parent=Firefox 3.1
14971
- Platform=WinNT
14972
- Win32=true
14973
-
14974
- [Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
14975
- Parent=Firefox 3.1
14976
- Platform=WinXP
14977
- Win32=false
14978
- Win64=true
14979
-
14980
- [Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
14981
- Parent=Firefox 3.1
14982
- Platform=Win2003
14983
- Win32=false
14984
- Win64=true
14985
-
14986
- [Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
14987
- Parent=Firefox 3.1
14988
- Platform=WinVista
14989
-
14990
- [Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
14991
- Parent=Firefox 3.1
14992
- Platform=Win7
14993
-
14994
- [Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.1*]
14995
- Parent=Firefox 3.1
14996
- Platform=Linux
14997
-
14998
- [Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
14999
- Parent=Firefox 3.1
15000
- Platform=FreeBSD
15001
-
15002
- [Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15003
- Parent=Firefox 3.1
15004
- Platform=HP-UX
15005
-
15006
- [Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15007
- Parent=Firefox 3.1
15008
- Platform=IRIX64
15009
-
15010
- [Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15011
- Parent=Firefox 3.1
15012
- Platform=OpenBSD
15013
-
15014
- [Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.1*]
15015
- Parent=Firefox 3.1
15016
- Platform=SunOS
15017
-
15018
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firesomething Add-On
15019
-
15020
- [Firesomething Add-On]
15021
- Parent=DefaultProperties
15022
- Browser="Firefox"
15023
- Version=2.0
15024
- MajorVer=2
15025
- Frames=true
15026
- IFrames=true
15027
- Tables=true
15028
- Cookies=true
15029
- JavaApplets=true
15030
- JavaScript=true
15031
-
15032
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Fire*]
15033
- Parent=Firesomething Add-On
15034
-
15035
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Hyper*]
15036
- Parent=Firesomething Add-On
15037
-
15038
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Hypno*]
15039
- Parent=Firesomething Add-On
15040
-
15041
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Jungle*]
15042
- Parent=Firesomething Add-On
15043
-
15044
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Lightning*]
15045
- Parent=Firesomething Add-On
15046
-
15047
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Moon*]
15048
- Parent=Firesomething Add-On
15049
-
15050
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Power*]
15051
- Parent=Firesomething Add-On
15052
-
15053
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Sea*]
15054
- Parent=Firesomething Add-On
15055
-
15056
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Space*]
15057
- Parent=Firesomething Add-On
15058
-
15059
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Sun*]
15060
- Parent=Firesomething Add-On
15061
-
15062
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Super*]
15063
- Parent=Firesomething Add-On
15064
-
15065
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Thunder*]
15066
- Parent=Firesomething Add-On
15067
-
15068
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Turbo*]
15069
- Parent=Firesomething Add-On
15070
-
15071
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Water*]
15072
- Parent=Firesomething Add-On
15073
-
15074
- [Mozilla/5.0 (Windows; *; *; *; rv:1.*) Gecko/* Web*]
15075
- Parent=Firesomething Add-On
15076
-
15077
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Phoenix
15078
-
15079
- [Phoenix]
15080
- Parent=DefaultProperties
15081
- Browser="Phoenix"
15082
- Version=0.5
15083
- MinorVer=5
15084
- Frames=true
15085
- IFrames=true
15086
- Tables=true
15087
- Cookies=true
15088
- JavaApplets=true
15089
- JavaScript=true
15090
- CssVersion=2
15091
- supportsCSS=true
15092
-
15093
- [Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.4*) Gecko/* Phoenix/0.5*]
15094
- Parent=Phoenix
15095
- Platform=WinME
15096
- Win32=true
15097
-
15098
- [Mozilla/5.0 (Windows; *; Win98; *; rv:1.4*) Gecko/* Phoenix/0.5*]
15099
- Parent=Phoenix
15100
- Platform=Win98
15101
- Win32=true
15102
-
15103
- [Mozilla/5.0 (Windows; *; Windows NT 5.0*; *; rv:1.4*) Gecko/* Phoenix/0.5*]
15104
- Parent=Phoenix
15105
- Platform=Win2000
15106
- Win32=true
15107
-
15108
- [Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.4*) Gecko/* Phoenix/0.5*]
15109
- Parent=Phoenix
15110
- Platform=WinXP
15111
- Win32=true
15112
-
15113
- [Mozilla/5.0 (Windows; *; Windows NT 5.2*; *; rv:1.4*) Gecko/* Phoenix/0.5*]
15114
- Parent=Phoenix
15115
- Platform=Win2003
15116
- Win32=true
15117
-
15118
- [Mozilla/5.0 (X11; *; Linux*; *; rv:1.4*) Gecko/* Phoenix/0.5*]
15119
- Parent=Phoenix
15120
- Platform=Linux
15121
-
15122
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iceweasel
15123
-
15124
- [Iceweasel]
15125
- Parent=DefaultProperties
15126
- Browser="Iceweasel"
15127
- Platform=Linux
15128
- Beta=true
15129
- Frames=true
15130
- IFrames=true
15131
- Tables=true
15132
- Cookies=true
15133
- JavaApplets=true
15134
- JavaScript=true
15135
- CssVersion=2
15136
- supportsCSS=true
15137
-
15138
- [Mozilla/5.0 (X11; U; Linux*; *; rv:1.8*) Gecko/* Iceweasel/2.0* (Debian-*)]
15139
- Parent=Iceweasel
15140
- Version=2.0
15141
- MajorVer=2
15142
- MinorVer=0
15143
-
15144
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.0
15145
-
15146
- [Mozilla 1.0]
15147
- Parent=DefaultProperties
15148
- Browser="Mozilla"
15149
- Version=1.0
15150
- MajorVer=1
15151
- Beta=true
15152
- Frames=true
15153
- IFrames=true
15154
- Tables=true
15155
- Cookies=true
15156
- JavaApplets=true
15157
- JavaScript=true
15158
- CssVersion=2
15159
- supportsCSS=true
15160
-
15161
- [Mozilla/5.0 (*rv:1.0.*) Gecko/*]
15162
- Parent=Mozilla 1.0
15163
-
15164
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.1
15165
-
15166
- [Mozilla 1.1]
15167
- Parent=DefaultProperties
15168
- Browser="Mozilla"
15169
- Version=1.1
15170
- MajorVer=1
15171
- MinorVer=1
15172
- Beta=true
15173
- Frames=true
15174
- IFrames=true
15175
- Tables=true
15176
- Cookies=true
15177
- JavaApplets=true
15178
- JavaScript=true
15179
- CssVersion=2
15180
- supportsCSS=true
15181
-
15182
- [Mozilla/5.0 (*rv:1.1.*) Gecko/*]
15183
- Parent=Mozilla 1.1
15184
-
15185
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.2
15186
-
15187
- [Mozilla 1.2]
15188
- Parent=DefaultProperties
15189
- Browser="Mozilla"
15190
- Version=1.2
15191
- MajorVer=1
15192
- MinorVer=2
15193
- Beta=true
15194
- Frames=true
15195
- IFrames=true
15196
- Tables=true
15197
- Cookies=true
15198
- JavaApplets=true
15199
- JavaScript=true
15200
- CssVersion=2
15201
- supportsCSS=true
15202
-
15203
- [Mozilla/5.0 (*rv:1.2.*) Gecko/*]
15204
- Parent=Mozilla 1.2
15205
-
15206
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.3
15207
-
15208
- [Mozilla 1.3]
15209
- Parent=DefaultProperties
15210
- Browser="Mozilla"
15211
- Version=1.3
15212
- MajorVer=1
15213
- MinorVer=3
15214
- Beta=true
15215
- Frames=true
15216
- IFrames=true
15217
- Tables=true
15218
- Cookies=true
15219
- JavaApplets=true
15220
- JavaScript=true
15221
- CssVersion=2
15222
- supportsCSS=true
15223
-
15224
- [Mozilla/5.0 (*rv:1.3.*) Gecko/*]
15225
- Parent=Mozilla 1.3
15226
-
15227
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.4
15228
-
15229
- [Mozilla 1.4]
15230
- Parent=DefaultProperties
15231
- Browser="Mozilla"
15232
- Version=1.4
15233
- MajorVer=1
15234
- MinorVer=4
15235
- Beta=true
15236
- Frames=true
15237
- IFrames=true
15238
- Tables=true
15239
- Cookies=true
15240
- JavaApplets=true
15241
- JavaScript=true
15242
- CssVersion=2
15243
- supportsCSS=true
15244
-
15245
- [Mozilla/5.0 (*rv:1.4*) Gecko/*]
15246
- Parent=Mozilla 1.4
15247
-
15248
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.4*) Gecko/*]
15249
- Parent=Mozilla 1.4
15250
- Platform=MacOSX
15251
-
15252
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.4*) Gecko/*]
15253
- Parent=Mozilla 1.4
15254
- Platform=WinME
15255
- Win32=true
15256
-
15257
- [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.4*) Gecko/*]
15258
- Parent=Mozilla 1.4
15259
- Platform=Win31
15260
- Win32=true
15261
-
15262
- [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.4*) Gecko/*]
15263
- Parent=Mozilla 1.4
15264
- Platform=Win31
15265
- Win16=true
15266
- Win32=true
15267
-
15268
- [Mozilla/5.0 (Windows; ?; Win95; *rv:1.4*) Gecko/*]
15269
- Parent=Mozilla 1.4
15270
- Platform=Win95
15271
- Win32=true
15272
-
15273
- [Mozilla/5.0 (Windows; ?; Win98; *rv:1.4*) Gecko/*]
15274
- Parent=Mozilla 1.4
15275
- Platform=Win98
15276
- Win32=true
15277
-
15278
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.4*) Gecko/*]
15279
- Parent=Mozilla 1.4
15280
- Platform=Win2000
15281
- Win32=true
15282
-
15283
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.4*) Gecko/*]
15284
- Parent=Mozilla 1.4
15285
- Platform=WinXP
15286
- Win32=true
15287
-
15288
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.4*) Gecko/*]
15289
- Parent=Mozilla 1.4
15290
- Platform=WinNT
15291
- Win32=true
15292
-
15293
- [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.4*) Gecko/*]
15294
- Parent=Mozilla 1.4
15295
- Platform=FreeBSD
15296
-
15297
- [Mozilla/5.0 (X11; *Linux*; *rv:1.4*) Gecko/*]
15298
- Parent=Mozilla 1.4
15299
- Platform=Linux
15300
-
15301
- [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.4*) Gecko/*]
15302
- Parent=Mozilla 1.4
15303
- Platform=OpenBSD
15304
-
15305
- [Mozilla/5.0 (X11; *SunOS*; *rv:1.4*) Gecko/*]
15306
- Parent=Mozilla 1.4
15307
- Platform=SunOS
15308
-
15309
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.5
15310
-
15311
- [Mozilla 1.5]
15312
- Parent=DefaultProperties
15313
- Browser="Mozilla"
15314
- Version=1.5
15315
- MajorVer=1
15316
- MinorVer=5
15317
- Beta=true
15318
- Frames=true
15319
- IFrames=true
15320
- Tables=true
15321
- Cookies=true
15322
- JavaApplets=true
15323
- JavaScript=true
15324
- CssVersion=2
15325
- supportsCSS=true
15326
-
15327
- [Mozilla/5.0 (*rv:1.5*) Gecko/*]
15328
- Parent=Mozilla 1.5
15329
-
15330
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.5*) Gecko/*]
15331
- Parent=Mozilla 1.5
15332
- Platform=MacOSX
15333
-
15334
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.5*) Gecko/*]
15335
- Parent=Mozilla 1.5
15336
- Platform=WinME
15337
- Win32=true
15338
-
15339
- [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.5*) Gecko/*]
15340
- Parent=Mozilla 1.5
15341
- Platform=Win31
15342
- Win32=true
15343
-
15344
- [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.5*) Gecko/*]
15345
- Parent=Mozilla 1.5
15346
- Platform=Win31
15347
- Win16=true
15348
- Win32=true
15349
-
15350
- [Mozilla/5.0 (Windows; ?; Win95; *rv:1.5*) Gecko/*]
15351
- Parent=Mozilla 1.5
15352
- Platform=Win95
15353
- Win32=true
15354
-
15355
- [Mozilla/5.0 (Windows; ?; Win98; *rv:1.5*) Gecko/*]
15356
- Parent=Mozilla 1.5
15357
- Platform=Win98
15358
- Win32=true
15359
-
15360
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.5*) Gecko/*]
15361
- Parent=Mozilla 1.5
15362
- Platform=Win2000
15363
- Win32=true
15364
-
15365
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.5*) Gecko/*]
15366
- Parent=Mozilla 1.5
15367
- Platform=WinXP
15368
- Win32=true
15369
-
15370
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.5*) Gecko/*]
15371
- Parent=Mozilla 1.5
15372
- Platform=WinNT
15373
- Win32=true
15374
-
15375
- [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.5*) Gecko/*]
15376
- Parent=Mozilla 1.5
15377
- Platform=FreeBSD
15378
-
15379
- [Mozilla/5.0 (X11; *Linux*; *rv:1.5*) Gecko/*]
15380
- Parent=Mozilla 1.5
15381
- Platform=Linux
15382
-
15383
- [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.5*) Gecko/*]
15384
- Parent=Mozilla 1.5
15385
- Platform=OpenBSD
15386
-
15387
- [Mozilla/5.0 (X11; *SunOS*; *rv:1.5*) Gecko/*]
15388
- Parent=Mozilla 1.5
15389
- Platform=SunOS
15390
-
15391
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.6
15392
-
15393
- [Mozilla 1.6]
15394
- Parent=DefaultProperties
15395
- Browser="Mozilla"
15396
- Version=1.6
15397
- MajorVer=1
15398
- MinorVer=6
15399
- Beta=true
15400
- Frames=true
15401
- IFrames=true
15402
- Tables=true
15403
- Cookies=true
15404
- JavaApplets=true
15405
- JavaScript=true
15406
- CssVersion=2
15407
- supportsCSS=true
15408
-
15409
- [Mozilla/5.0 (*rv:1.6*) Gecko/*]
15410
- Parent=Mozilla 1.6
15411
-
15412
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.6*) Gecko/*]
15413
- Parent=Mozilla 1.6
15414
- Platform=MacOSX
15415
-
15416
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.6*) Gecko/*]
15417
- Parent=Mozilla 1.6
15418
- Platform=WinME
15419
- Win32=true
15420
-
15421
- [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.6*) Gecko/*]
15422
- Parent=Mozilla 1.6
15423
- Platform=Win31
15424
- Win32=true
15425
-
15426
- [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.6*) Gecko/*]
15427
- Parent=Mozilla 1.6
15428
- Platform=Win31
15429
- Win16=true
15430
- Win32=true
15431
-
15432
- [Mozilla/5.0 (Windows; ?; Win95; *rv:1.6*) Gecko/*]
15433
- Parent=Mozilla 1.6
15434
- Platform=Win95
15435
- Win32=true
15436
-
15437
- [Mozilla/5.0 (Windows; ?; Win98; *rv:1.6*) Gecko/*]
15438
- Parent=Mozilla 1.6
15439
- Platform=Win98
15440
- Win32=true
15441
-
15442
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.6*) Gecko/*]
15443
- Parent=Mozilla 1.6
15444
- Platform=Win2000
15445
- Win32=true
15446
-
15447
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.6*) Gecko/*]
15448
- Parent=Mozilla 1.6
15449
- Platform=WinXP
15450
- Win32=true
15451
-
15452
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.6*) Gecko/*]
15453
- Parent=Mozilla 1.6
15454
- Platform=WinNT
15455
- Win32=true
15456
-
15457
- [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.6*) Gecko/*]
15458
- Parent=Mozilla 1.6
15459
- Platform=FreeBSD
15460
-
15461
- [Mozilla/5.0 (X11; *Linux*; *rv:1.6*) Gecko/*]
15462
- Parent=Mozilla 1.6
15463
- Platform=Linux
15464
-
15465
- [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.6*) Gecko/*]
15466
- Parent=Mozilla 1.6
15467
- Platform=OpenBSD
15468
-
15469
- [Mozilla/5.0 (X11; *SunOS*; *rv:1.6*) Gecko/*]
15470
- Parent=Mozilla 1.6
15471
- Platform=SunOS
15472
-
15473
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.7
15474
-
15475
- [Mozilla 1.7]
15476
- Parent=DefaultProperties
15477
- Browser="Mozilla"
15478
- Version=1.7
15479
- MajorVer=1
15480
- MinorVer=7
15481
- Beta=true
15482
- Frames=true
15483
- IFrames=true
15484
- Tables=true
15485
- Cookies=true
15486
- JavaApplets=true
15487
- JavaScript=true
15488
- CssVersion=2
15489
- supportsCSS=true
15490
-
15491
- [Mozilla/5.0 (*rv:1.7*) Gecko/*]
15492
- Parent=Mozilla 1.7
15493
-
15494
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.7*) Gecko/*]
15495
- Parent=Mozilla 1.7
15496
- Platform=MacOSX
15497
-
15498
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.7*) Gecko/*]
15499
- Parent=Mozilla 1.7
15500
- Platform=WinME
15501
- Win32=true
15502
-
15503
- [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.7*) Gecko/*]
15504
- Parent=Mozilla 1.7
15505
- Platform=Win31
15506
- Win32=true
15507
-
15508
- [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.7*) Gecko/*]
15509
- Parent=Mozilla 1.7
15510
- Platform=Win31
15511
- Win16=true
15512
- Win32=true
15513
-
15514
- [Mozilla/5.0 (Windows; ?; Win95; *rv:1.7*) Gecko/*]
15515
- Parent=Mozilla 1.7
15516
- Platform=Win95
15517
- Win32=true
15518
-
15519
- [Mozilla/5.0 (Windows; ?; Win98; *rv:1.7*) Gecko/*]
15520
- Parent=Mozilla 1.7
15521
- Platform=Win98
15522
- Win32=true
15523
-
15524
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.7*) Gecko/*]
15525
- Parent=Mozilla 1.7
15526
- Platform=Win2000
15527
- Win32=true
15528
-
15529
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.7*) Gecko/*]
15530
- Parent=Mozilla 1.7
15531
- Platform=WinXP
15532
- Win32=true
15533
-
15534
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.7*) Gecko/*]
15535
- Parent=Mozilla 1.7
15536
- Platform=Win2003
15537
- Win32=true
15538
-
15539
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.7*) Gecko/*]
15540
- Parent=Mozilla 1.7
15541
- Platform=WinNT
15542
- Win32=true
15543
-
15544
- [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.7*) Gecko/*]
15545
- Parent=Mozilla 1.7
15546
- Platform=FreeBSD
15547
-
15548
- [Mozilla/5.0 (X11; *Linux*; *rv:1.7*) Gecko/*]
15549
- Parent=Mozilla 1.7
15550
- Platform=Linux
15551
-
15552
- [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.7*) Gecko/*]
15553
- Parent=Mozilla 1.7
15554
- Platform=OpenBSD
15555
-
15556
- [Mozilla/5.0 (X11; *SunOS*; *rv:1.7*) Gecko/*]
15557
- Parent=Mozilla 1.7
15558
- Platform=SunOS
15559
-
15560
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.8
15561
-
15562
- [Mozilla 1.8]
15563
- Parent=DefaultProperties
15564
- Browser="Mozilla"
15565
- Version=1.8
15566
- MajorVer=1
15567
- MinorVer=8
15568
- Frames=true
15569
- IFrames=true
15570
- Tables=true
15571
- Cookies=true
15572
- JavaApplets=true
15573
- JavaScript=true
15574
- CssVersion=2
15575
- supportsCSS=true
15576
-
15577
- [Mozilla/5.0 (*rv:1.8*) Gecko/*]
15578
- Parent=Mozilla 1.8
15579
-
15580
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.8*) Gecko/*]
15581
- Parent=Mozilla 1.8
15582
- Platform=MacOSX
15583
-
15584
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.8*) Gecko/*]
15585
- Parent=Mozilla 1.8
15586
- Platform=WinME
15587
- Win32=true
15588
-
15589
- [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.8*) Gecko/*]
15590
- Parent=Mozilla 1.8
15591
- Win32=true
15592
-
15593
- [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.8*) Gecko/*]
15594
- Parent=Mozilla 1.8
15595
- Platform=Win31
15596
- Win16=true
15597
- Win32=true
15598
-
15599
- [Mozilla/5.0 (Windows; ?; Win95; *rv:1.8*) Gecko/*]
15600
- Parent=Mozilla 1.8
15601
- Platform=Win95
15602
- Win32=true
15603
-
15604
- [Mozilla/5.0 (Windows; ?; Win98; *rv:1.8*) Gecko/*]
15605
- Parent=Mozilla 1.8
15606
- Platform=Win98
15607
- Win32=true
15608
-
15609
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.8*) Gecko/*]
15610
- Parent=Mozilla 1.8
15611
- Platform=Win2000
15612
- Win32=true
15613
-
15614
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.8*) Gecko/*]
15615
- Parent=Mozilla 1.8
15616
- Platform=WinXP
15617
- Win32=true
15618
-
15619
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.8*) Gecko/*]
15620
- Parent=Mozilla 1.8
15621
- Platform=Win2003
15622
- Win32=true
15623
-
15624
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.8*) Gecko/*]
15625
- Parent=Mozilla 1.8
15626
- Platform=WinNT
15627
- Win32=true
15628
-
15629
- [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.8*) Gecko/*]
15630
- Parent=Mozilla 1.8
15631
- Platform=FreeBSD
15632
-
15633
- [Mozilla/5.0 (X11; *Linux*; *rv:1.8*) Gecko/*]
15634
- Parent=Mozilla 1.8
15635
- Platform=Linux
15636
-
15637
- [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.8*) Gecko/*]
15638
- Parent=Mozilla 1.8
15639
- Platform=OpenBSD
15640
-
15641
- [Mozilla/5.0 (X11; *SunOS*; *rv:1.8*) Gecko/*]
15642
- Parent=Mozilla 1.8
15643
- Platform=SunOS
15644
-
15645
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.9
15646
-
15647
- [Mozilla 1.9]
15648
- Parent=DefaultProperties
15649
- Browser="Mozilla"
15650
- Version=1.9
15651
- MajorVer=1
15652
- MinorVer=9
15653
- Alpha=true
15654
- Frames=true
15655
- IFrames=true
15656
- Tables=true
15657
- Cookies=true
15658
- JavaApplets=true
15659
- JavaScript=true
15660
- CssVersion=2
15661
- supportsCSS=true
15662
-
15663
- [Mozilla/5.0 (*rv:1.9*) Gecko/*]
15664
- Parent=Mozilla 1.9
15665
-
15666
- [Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.9*) Gecko/*]
15667
- Parent=Mozilla 1.9
15668
- Platform=MacOSX
15669
-
15670
- [Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.9*) Gecko/*]
15671
- Parent=Mozilla 1.9
15672
- Platform=WinME
15673
- Win32=true
15674
-
15675
- [Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.9*) Gecko/*]
15676
- Parent=Mozilla 1.9
15677
- Win32=true
15678
-
15679
- [Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.9*) Gecko/*]
15680
- Parent=Mozilla 1.9
15681
- Platform=Win31
15682
- Win16=true
15683
- Win32=true
15684
-
15685
- [Mozilla/5.0 (Windows; ?; Win95; *rv:1.9*) Gecko/*]
15686
- Parent=Mozilla 1.9
15687
- Platform=Win95
15688
- Win32=true
15689
-
15690
- [Mozilla/5.0 (Windows; ?; Win98; *rv:1.9*) Gecko/*]
15691
- Parent=Mozilla 1.9
15692
- Platform=Win98
15693
- Win32=true
15694
-
15695
- [Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.9*) Gecko/*]
15696
- Parent=Mozilla 1.9
15697
- Platform=Win2000
15698
- Win32=true
15699
-
15700
- [Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.9*) Gecko/*]
15701
- Parent=Mozilla 1.9
15702
- Platform=WinXP
15703
- Win32=true
15704
-
15705
- [Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.9*) Gecko/*]
15706
- Parent=Mozilla 1.9
15707
- Platform=Win2003
15708
- Win32=true
15709
-
15710
- [Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.9*) Gecko/*]
15711
- Parent=Mozilla 1.9
15712
- Platform=WinNT
15713
- Win32=true
15714
-
15715
- [Mozilla/5.0 (X11; *FreeBSD*; *rv:1.9*) Gecko/*]
15716
- Parent=Mozilla 1.9
15717
- Platform=FreeBSD
15718
-
15719
- [Mozilla/5.0 (X11; *Linux*; *rv:1.9*) Gecko/*]
15720
- Parent=Mozilla 1.9
15721
- Platform=Linux
15722
-
15723
- [Mozilla/5.0 (X11; *OpenBSD*; *rv:1.9*) Gecko/*]
15724
- Parent=Mozilla 1.9
15725
- Platform=OpenBSD
15726
-
15727
- [Mozilla/5.0 (X11; *SunOS*; *rv:1.9*) Gecko/*]
15728
- Parent=Mozilla 1.9
15729
- Platform=SunOS
15730
-
15731
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE Mac
15732
-
15733
- [IE Mac]
15734
- Parent=DefaultProperties
15735
- Browser="IE"
15736
- Platform=MacPPC
15737
- Frames=true
15738
- IFrames=true
15739
- Tables=true
15740
- Cookies=true
15741
- BackgroundSounds=true
15742
- CDF=true
15743
- JavaApplets=true
15744
- JavaScript=true
15745
- CssVersion=1
15746
- supportsCSS=true
15747
-
15748
- [Mozilla/?.? (compatible; MSIE 4.0*; *Mac_PowerPC*]
15749
- Parent=IE Mac
15750
- Version=4.0
15751
- MajorVer=4
15752
- MinorVer=0
15753
-
15754
- [Mozilla/?.? (compatible; MSIE 4.5*; *Mac_PowerPC*]
15755
- Parent=IE Mac
15756
- Version=4.5
15757
- MajorVer=4
15758
- MinorVer=5
15759
-
15760
- [Mozilla/?.? (compatible; MSIE 5.0*; *Mac_PowerPC*]
15761
- Parent=IE Mac
15762
- Version=5.0
15763
- MajorVer=5
15764
- MinorVer=0
15765
-
15766
- [Mozilla/?.? (compatible; MSIE 5.1*; *Mac_PowerPC*]
15767
- Parent=IE Mac
15768
- Version=5.1
15769
- MajorVer=5
15770
- MinorVer=1
15771
-
15772
- [Mozilla/?.? (compatible; MSIE 5.2*; *Mac_PowerPC*]
15773
- Parent=IE Mac
15774
- Version=5.2
15775
- MajorVer=5
15776
- MinorVer=2
15777
-
15778
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 5.5
15779
-
15780
- [AOL 9.0/IE 5.5]
15781
- Parent=DefaultProperties
15782
- Browser="AOL"
15783
- Version=5.5
15784
- MajorVer=5
15785
- MinorVer=5
15786
- Win32=true
15787
- Frames=true
15788
- IFrames=true
15789
- Tables=true
15790
- Cookies=true
15791
- BackgroundSounds=true
15792
- CDF=true
15793
- VBScript=true
15794
- JavaApplets=true
15795
- JavaScript=true
15796
- ActiveXControls=true
15797
- CssVersion=2
15798
- supportsCSS=true
15799
- AOL=true
15800
- aolVersion=9.0
15801
-
15802
- [Mozilla/?.* (?compatible; *MSIE 5.5; *AOL 9.0*)*]
15803
- Parent=AOL 9.0/IE 5.5
15804
-
15805
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Win 9x 4.90*)*]
15806
- Parent=AOL 9.0/IE 5.5
15807
- Platform=WinME
15808
-
15809
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 95*)*]
15810
- Parent=AOL 9.0/IE 5.5
15811
- Platform=Win95
15812
-
15813
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*)*]
15814
- Parent=AOL 9.0/IE 5.5
15815
- Platform=Win98
15816
-
15817
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
15818
- Parent=AOL 9.0/IE 5.5
15819
-
15820
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
15821
- Parent=AOL 9.0/IE 5.5
15822
-
15823
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
15824
- Parent=AOL 9.0/IE 5.5
15825
- CssVersion=2
15826
- supportsCSS=true
15827
-
15828
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
15829
- Parent=AOL 9.0/IE 5.5
15830
-
15831
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
15832
- Parent=AOL 9.0/IE 5.5
15833
- Platform=WinME
15834
-
15835
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
15836
- Parent=AOL 9.0/IE 5.5
15837
- Platform=WinME
15838
-
15839
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
15840
- Parent=AOL 9.0/IE 5.5
15841
- Platform=WinME
15842
-
15843
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
15844
- Parent=AOL 9.0/IE 5.5
15845
- Platform=WinME
15846
-
15847
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
15848
- Parent=AOL 9.0/IE 5.5
15849
- Platform=WinME
15850
-
15851
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 4.0*)*]
15852
- Parent=AOL 9.0/IE 5.5
15853
- Platform=WinNT
15854
-
15855
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*)*]
15856
- Parent=AOL 9.0/IE 5.5
15857
- Platform=Win2000
15858
-
15859
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
15860
- Parent=AOL 9.0/IE 5.5
15861
- Platform=Win2000
15862
-
15863
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
15864
- Parent=AOL 9.0/IE 5.5
15865
- Platform=Win2000
15866
-
15867
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
15868
- Parent=AOL 9.0/IE 5.5
15869
- Platform=Win2000
15870
-
15871
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
15872
- Parent=AOL 9.0/IE 5.5
15873
- Platform=Win2000
15874
-
15875
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*)*]
15876
- Parent=AOL 9.0/IE 5.5
15877
- Platform=Win2000
15878
-
15879
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
15880
- Parent=AOL 9.0/IE 5.5
15881
- Platform=Win2000
15882
-
15883
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
15884
- Parent=AOL 9.0/IE 5.5
15885
- Platform=Win2000
15886
-
15887
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
15888
- Parent=AOL 9.0/IE 5.5
15889
- Platform=Win2000
15890
-
15891
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
15892
- Parent=AOL 9.0/IE 5.5
15893
- Platform=Win2000
15894
-
15895
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*)*]
15896
- Parent=AOL 9.0/IE 5.5
15897
- Platform=WinXP
15898
-
15899
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
15900
- Parent=AOL 9.0/IE 5.5
15901
- Platform=WinXP
15902
-
15903
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
15904
- Parent=AOL 9.0/IE 5.5
15905
- Platform=WinXP
15906
-
15907
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
15908
- Parent=AOL 9.0/IE 5.5
15909
- Platform=WinXP
15910
-
15911
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
15912
- Parent=AOL 9.0/IE 5.5
15913
- Platform=WinXP
15914
-
15915
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*)*]
15916
- Parent=AOL 9.0/IE 5.5
15917
- Platform=Win2003
15918
-
15919
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
15920
- Parent=AOL 9.0/IE 5.5
15921
- Platform=Win2003
15922
-
15923
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
15924
- Parent=AOL 9.0/IE 5.5
15925
- Platform=Win2003
15926
-
15927
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
15928
- Parent=AOL 9.0/IE 5.5
15929
- Platform=Win2003
15930
-
15931
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
15932
- Parent=AOL 9.0/IE 5.5
15933
- Platform=Win2003
15934
-
15935
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*)*]
15936
- Parent=AOL 9.0/IE 5.5
15937
- Platform=WinVista
15938
-
15939
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
15940
- Parent=AOL 9.0/IE 5.5
15941
- Platform=WinVista
15942
-
15943
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
15944
- Parent=AOL 9.0/IE 5.5
15945
- Platform=WinVista
15946
-
15947
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
15948
- Parent=AOL 9.0/IE 5.5
15949
- Platform=WinVista
15950
-
15951
- [Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
15952
- Parent=AOL 9.0/IE 5.5
15953
- Platform=WinVista
15954
-
15955
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 6.0
15956
-
15957
- [AOL 9.0/IE 6.0]
15958
- Parent=DefaultProperties
15959
- Browser="AOL"
15960
- Version=6.0
15961
- MajorVer=6
15962
- Win32=true
15963
- Frames=true
15964
- IFrames=true
15965
- Tables=true
15966
- Cookies=true
15967
- BackgroundSounds=true
15968
- CDF=true
15969
- VBScript=true
15970
- JavaApplets=true
15971
- JavaScript=true
15972
- ActiveXControls=true
15973
- CssVersion=2
15974
- supportsCSS=true
15975
- AOL=true
15976
- aolVersion=9.0
15977
-
15978
- [Mozilla/?.* (?compatible; *MSIE 6.0; *AOL 9.0*)*]
15979
- Parent=AOL 9.0/IE 6.0
15980
-
15981
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Win 9x 4.90*)*]
15982
- Parent=AOL 9.0/IE 6.0
15983
- Platform=WinME
15984
-
15985
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 95*)*]
15986
- Parent=AOL 9.0/IE 6.0
15987
- Platform=Win95
15988
-
15989
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*)*]
15990
- Parent=AOL 9.0/IE 6.0
15991
- Platform=Win98
15992
-
15993
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
15994
- Parent=AOL 9.0/IE 6.0
15995
-
15996
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
15997
- Parent=AOL 9.0/IE 6.0
15998
-
15999
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
16000
- Parent=AOL 9.0/IE 6.0
16001
- CssVersion=2
16002
- supportsCSS=true
16003
-
16004
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
16005
- Parent=AOL 9.0/IE 6.0
16006
-
16007
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
16008
- Parent=AOL 9.0/IE 6.0
16009
- Platform=WinME
16010
-
16011
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
16012
- Parent=AOL 9.0/IE 6.0
16013
- Platform=WinME
16014
-
16015
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
16016
- Parent=AOL 9.0/IE 6.0
16017
- Platform=WinME
16018
-
16019
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
16020
- Parent=AOL 9.0/IE 6.0
16021
- Platform=WinME
16022
-
16023
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
16024
- Parent=AOL 9.0/IE 6.0
16025
- Platform=WinME
16026
-
16027
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 4.0*)*]
16028
- Parent=AOL 9.0/IE 6.0
16029
- Platform=WinNT
16030
-
16031
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*)*]
16032
- Parent=AOL 9.0/IE 6.0
16033
- Platform=Win2000
16034
-
16035
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
16036
- Parent=AOL 9.0/IE 6.0
16037
- Platform=Win2000
16038
-
16039
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
16040
- Parent=AOL 9.0/IE 6.0
16041
- Platform=Win2000
16042
-
16043
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
16044
- Parent=AOL 9.0/IE 6.0
16045
- Platform=Win2000
16046
-
16047
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
16048
- Parent=AOL 9.0/IE 6.0
16049
- Platform=Win2000
16050
-
16051
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*)*]
16052
- Parent=AOL 9.0/IE 6.0
16053
- Platform=Win2000
16054
-
16055
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
16056
- Parent=AOL 9.0/IE 6.0
16057
- Platform=Win2000
16058
-
16059
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
16060
- Parent=AOL 9.0/IE 6.0
16061
- Platform=Win2000
16062
-
16063
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
16064
- Parent=AOL 9.0/IE 6.0
16065
- Platform=Win2000
16066
-
16067
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
16068
- Parent=AOL 9.0/IE 6.0
16069
- Platform=Win2000
16070
-
16071
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*)*]
16072
- Parent=AOL 9.0/IE 6.0
16073
- Platform=WinXP
16074
-
16075
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
16076
- Parent=AOL 9.0/IE 6.0
16077
- Platform=WinXP
16078
-
16079
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
16080
- Parent=AOL 9.0/IE 6.0
16081
- Platform=WinXP
16082
-
16083
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
16084
- Parent=AOL 9.0/IE 6.0
16085
- Platform=WinXP
16086
-
16087
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
16088
- Parent=AOL 9.0/IE 6.0
16089
- Platform=WinXP
16090
-
16091
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*)*]
16092
- Parent=AOL 9.0/IE 6.0
16093
- Platform=Win2003
16094
-
16095
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
16096
- Parent=AOL 9.0/IE 6.0
16097
- Platform=Win2003
16098
-
16099
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
16100
- Parent=AOL 9.0/IE 6.0
16101
- Platform=Win2003
16102
-
16103
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
16104
- Parent=AOL 9.0/IE 6.0
16105
- Platform=Win2003
16106
-
16107
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
16108
- Parent=AOL 9.0/IE 6.0
16109
- Platform=Win2003
16110
-
16111
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*)*]
16112
- Parent=AOL 9.0/IE 6.0
16113
- Platform=WinVista
16114
-
16115
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
16116
- Parent=AOL 9.0/IE 6.0
16117
- Platform=WinVista
16118
-
16119
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
16120
- Parent=AOL 9.0/IE 6.0
16121
- Platform=WinVista
16122
-
16123
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
16124
- Parent=AOL 9.0/IE 6.0
16125
- Platform=WinVista
16126
-
16127
- [Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
16128
- Parent=AOL 9.0/IE 6.0
16129
- Platform=WinVista
16130
-
16131
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 7.0
16132
-
16133
- [AOL 9.0/IE 7.0]
16134
- Parent=DefaultProperties
16135
- Browser="AOL"
16136
- Version=7.0
16137
- MajorVer=7
16138
- Win32=true
16139
- Frames=true
16140
- IFrames=true
16141
- Tables=true
16142
- Cookies=true
16143
- BackgroundSounds=true
16144
- CDF=true
16145
- VBScript=true
16146
- JavaApplets=true
16147
- JavaScript=true
16148
- ActiveXControls=true
16149
- CssVersion=2
16150
- supportsCSS=true
16151
- AOL=true
16152
- aolVersion=9.0
16153
-
16154
- [Mozilla/?.* (?compatible; *MSIE 7.0; *AOL 9.0*)*]
16155
- Parent=AOL 9.0/IE 7.0
16156
-
16157
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Win 9x 4.90*)*]
16158
- Parent=AOL 9.0/IE 7.0
16159
- Platform=WinME
16160
-
16161
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 95*)*]
16162
- Parent=AOL 9.0/IE 7.0
16163
- Platform=Win95
16164
-
16165
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*)*]
16166
- Parent=AOL 9.0/IE 7.0
16167
- Platform=Win98
16168
-
16169
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
16170
- Parent=AOL 9.0/IE 7.0
16171
-
16172
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
16173
- Parent=AOL 9.0/IE 7.0
16174
-
16175
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
16176
- Parent=AOL 9.0/IE 7.0
16177
- CssVersion=2
16178
- supportsCSS=true
16179
-
16180
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
16181
- Parent=AOL 9.0/IE 7.0
16182
-
16183
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
16184
- Parent=AOL 9.0/IE 7.0
16185
- Platform=WinME
16186
-
16187
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
16188
- Parent=AOL 9.0/IE 7.0
16189
- Platform=WinME
16190
-
16191
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
16192
- Parent=AOL 9.0/IE 7.0
16193
- Platform=WinME
16194
-
16195
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
16196
- Parent=AOL 9.0/IE 7.0
16197
- Platform=WinME
16198
-
16199
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
16200
- Parent=AOL 9.0/IE 7.0
16201
- Platform=WinME
16202
-
16203
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 4.0*)*]
16204
- Parent=AOL 9.0/IE 7.0
16205
- Platform=WinNT
16206
-
16207
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*)*]
16208
- Parent=AOL 9.0/IE 7.0
16209
- Platform=Win2000
16210
-
16211
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
16212
- Parent=AOL 9.0/IE 7.0
16213
- Platform=Win2000
16214
-
16215
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
16216
- Parent=AOL 9.0/IE 7.0
16217
- Platform=Win2000
16218
-
16219
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
16220
- Parent=AOL 9.0/IE 7.0
16221
- Platform=Win2000
16222
-
16223
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
16224
- Parent=AOL 9.0/IE 7.0
16225
- Platform=Win2000
16226
-
16227
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*)*]
16228
- Parent=AOL 9.0/IE 7.0
16229
- Platform=Win2000
16230
-
16231
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
16232
- Parent=AOL 9.0/IE 7.0
16233
- Platform=Win2000
16234
-
16235
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
16236
- Parent=AOL 9.0/IE 7.0
16237
- Platform=Win2000
16238
-
16239
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
16240
- Parent=AOL 9.0/IE 7.0
16241
- Platform=Win2000
16242
-
16243
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
16244
- Parent=AOL 9.0/IE 7.0
16245
- Platform=Win2000
16246
-
16247
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*)*]
16248
- Parent=AOL 9.0/IE 7.0
16249
- Platform=WinXP
16250
-
16251
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
16252
- Parent=AOL 9.0/IE 7.0
16253
- Platform=WinXP
16254
-
16255
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
16256
- Parent=AOL 9.0/IE 7.0
16257
- Platform=WinXP
16258
-
16259
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
16260
- Parent=AOL 9.0/IE 7.0
16261
- Platform=WinXP
16262
-
16263
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
16264
- Parent=AOL 9.0/IE 7.0
16265
- Platform=WinXP
16266
-
16267
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*)*]
16268
- Parent=AOL 9.0/IE 7.0
16269
- Platform=Win2003
16270
-
16271
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
16272
- Parent=AOL 9.0/IE 7.0
16273
- Platform=Win2003
16274
-
16275
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
16276
- Parent=AOL 9.0/IE 7.0
16277
- Platform=Win2003
16278
-
16279
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
16280
- Parent=AOL 9.0/IE 7.0
16281
- Platform=Win2003
16282
-
16283
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
16284
- Parent=AOL 9.0/IE 7.0
16285
- Platform=Win2003
16286
-
16287
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*)*]
16288
- Parent=AOL 9.0/IE 7.0
16289
- Platform=WinVista
16290
-
16291
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
16292
- Parent=AOL 9.0/IE 7.0
16293
- Platform=WinVista
16294
-
16295
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
16296
- Parent=AOL 9.0/IE 7.0
16297
- Platform=WinVista
16298
-
16299
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
16300
- Parent=AOL 9.0/IE 7.0
16301
- Platform=WinVista
16302
-
16303
- [Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
16304
- Parent=AOL 9.0/IE 7.0
16305
- Platform=WinVista
16306
-
16307
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant Browser
16308
-
16309
- [Avant Browser]
16310
- Parent=DefaultProperties
16311
- Browser="Avant Browser"
16312
- Frames=true
16313
- IFrames=true
16314
- Tables=true
16315
- Cookies=true
16316
- BackgroundSounds=true
16317
- CDF=true
16318
- VBScript=true
16319
- JavaApplets=true
16320
- JavaScript=true
16321
- ActiveXControls=true
16322
- CssVersion=2
16323
- supportsCSS=true
16324
-
16325
- [Advanced Browser (http://www.avantbrowser.com)]
16326
- Parent=Avant Browser
16327
-
16328
- [Avant Browser*]
16329
- Parent=Avant Browser
16330
-
16331
- [Avant Browser/*]
16332
- Parent=Avant Browser
16333
-
16334
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 4.01
16335
-
16336
- [IE 4.01]
16337
- Parent=DefaultProperties
16338
- Browser="IE"
16339
- Version=4.01
16340
- MajorVer=4
16341
- MinorVer=01
16342
- Win32=true
16343
- Frames=true
16344
- IFrames=true
16345
- Tables=true
16346
- Cookies=true
16347
- BackgroundSounds=true
16348
- CDF=true
16349
- VBScript=true
16350
- JavaApplets=true
16351
- JavaScript=true
16352
- ActiveXControls=true
16353
- CssVersion=2
16354
- supportsCSS=true
16355
-
16356
- [Mozilla/?.* (?compatible; *MSIE 4.01*)*]
16357
- Parent=IE 4.01
16358
-
16359
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows 95*)*]
16360
- Parent=IE 4.01
16361
- Platform=Win95
16362
-
16363
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98*)*]
16364
- Parent=IE 4.01
16365
- Platform=Win98
16366
-
16367
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98; Win 9x 4.90;*)*]
16368
- Parent=IE 4.01
16369
- Platform=WinME
16370
-
16371
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 4.0*)*]
16372
- Parent=IE 4.01
16373
- Platform=WinNT
16374
-
16375
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.0*)*]
16376
- Parent=IE 4.01
16377
- Platform=Win2000
16378
-
16379
- [Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.01*)*]
16380
- Parent=IE 4.01
16381
- Platform=Win2000
16382
-
16383
- [Mozilla/4.0 (compatible; MSIE 4.01; Windows NT)]
16384
- Parent=IE 4.01
16385
- Platform=WinNT
16386
-
16387
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.0
16388
-
16389
- [IE 5.0]
16390
- Parent=DefaultProperties
16391
- Browser="IE"
16392
- Version=5.0
16393
- MajorVer=5
16394
- Win32=true
16395
- Frames=true
16396
- IFrames=true
16397
- Tables=true
16398
- Cookies=true
16399
- BackgroundSounds=true
16400
- CDF=true
16401
- VBScript=true
16402
- JavaApplets=true
16403
- JavaScript=true
16404
- ActiveXControls=true
16405
- CssVersion=2
16406
- supportsCSS=true
16407
-
16408
- [Mozilla/?.* (?compatible; *MSIE 5.0*)*]
16409
- Parent=IE 5.0
16410
-
16411
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows 95*)*]
16412
- Parent=IE 5.0
16413
- Platform=Win95
16414
-
16415
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98*)*]
16416
- Parent=IE 5.0
16417
- Platform=Win98
16418
-
16419
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98; Win 9x 4.90;*)*]
16420
- Parent=IE 5.0
16421
- Platform=WinME
16422
-
16423
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 4.0*)*]
16424
- Parent=IE 5.0
16425
- Platform=WinNT
16426
-
16427
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.0*)*]
16428
- Parent=IE 5.0
16429
- Platform=Win2000
16430
-
16431
- [Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.01*)*]
16432
- Parent=IE 5.0
16433
- Platform=Win2000
16434
-
16435
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.01
16436
-
16437
- [IE 5.01]
16438
- Parent=DefaultProperties
16439
- Browser="IE"
16440
- Version=5.01
16441
- MajorVer=5
16442
- MinorVer=01
16443
- Win32=true
16444
- Frames=true
16445
- IFrames=true
16446
- Tables=true
16447
- Cookies=true
16448
- BackgroundSounds=true
16449
- CDF=true
16450
- VBScript=true
16451
- JavaApplets=true
16452
- JavaScript=true
16453
- ActiveXControls=true
16454
- CssVersion=2
16455
- supportsCSS=true
16456
-
16457
- [Mozilla/?.* (?compatible; *MSIE 5.01*)*]
16458
- Parent=IE 5.01
16459
-
16460
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows 95*)*]
16461
- Parent=IE 5.01
16462
- Platform=Win95
16463
-
16464
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98*)*]
16465
- Parent=IE 5.01
16466
- Platform=Win98
16467
-
16468
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98; Win 9x 4.90;*)*]
16469
- Parent=IE 5.01
16470
- Platform=WinME
16471
-
16472
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 4.0*)*]
16473
- Parent=IE 5.01
16474
- Platform=WinNT
16475
-
16476
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.0*)*]
16477
- Parent=IE 5.01
16478
- Platform=Win2000
16479
-
16480
- [Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.01*)*]
16481
- Parent=IE 5.01
16482
- Platform=Win2000
16483
-
16484
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.5
16485
-
16486
- [IE 5.5]
16487
- Parent=DefaultProperties
16488
- Browser="IE"
16489
- Version=5.5
16490
- MajorVer=5
16491
- MinorVer=5
16492
- Win32=true
16493
- Frames=true
16494
- IFrames=true
16495
- Tables=true
16496
- Cookies=true
16497
- BackgroundSounds=true
16498
- CDF=true
16499
- VBScript=true
16500
- JavaApplets=true
16501
- JavaScript=true
16502
- ActiveXControls=true
16503
- CssVersion=2
16504
- supportsCSS=true
16505
-
16506
- [Mozilla/?.* (?compatible; *MSIE 5.5*)*]
16507
- Parent=IE 5.5
16508
-
16509
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows 95*)*]
16510
- Parent=IE 5.5
16511
- Platform=Win95
16512
-
16513
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98*)*]
16514
- Parent=IE 5.5
16515
- Platform=Win98
16516
-
16517
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98; Win 9x 4.90*)*]
16518
- Parent=IE 5.5
16519
- Platform=WinME
16520
-
16521
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 4.0*)*]
16522
- Parent=IE 5.5
16523
- Platform=WinNT
16524
-
16525
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.0*)*]
16526
- Parent=IE 5.5
16527
- Platform=Win2000
16528
-
16529
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.01*)*]
16530
- Parent=IE 5.5
16531
- Platform=Win2000
16532
-
16533
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.1*)*]
16534
- Parent=IE 5.5
16535
- Platform=WinXP
16536
-
16537
- [Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.2*)*]
16538
- Parent=IE 5.5
16539
- Platform=Win2003
16540
-
16541
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 6.0
16542
-
16543
- [IE 6.0]
16544
- Parent=DefaultProperties
16545
- Browser="IE"
16546
- Version=6.0
16547
- MajorVer=6
16548
- Win32=true
16549
- Frames=true
16550
- IFrames=true
16551
- Tables=true
16552
- Cookies=true
16553
- BackgroundSounds=true
16554
- CDF=true
16555
- VBScript=true
16556
- JavaApplets=true
16557
- JavaScript=true
16558
- ActiveXControls=true
16559
- CssVersion=2
16560
- supportsCSS=true
16561
-
16562
- [Mozilla/?.* (?compatible; *MSIE 6.0*)*]
16563
- Parent=IE 6.0
16564
-
16565
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows 95*)*]
16566
- Parent=IE 6.0
16567
- Platform=Win95
16568
-
16569
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98*)*]
16570
- Parent=IE 6.0
16571
- Platform=Win98
16572
-
16573
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98; Win 9x 4.90*)*]
16574
- Parent=IE 6.0
16575
- Platform=WinME
16576
-
16577
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 4.0*)*]
16578
- Parent=IE 6.0
16579
- Platform=WinNT
16580
-
16581
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.0*)*]
16582
- Parent=IE 6.0
16583
- Platform=Win2000
16584
-
16585
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.01*)*]
16586
- Parent=IE 6.0
16587
- Platform=Win2000
16588
-
16589
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.1*)*]
16590
- Parent=IE 6.0
16591
- Platform=WinXP
16592
-
16593
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2*)*]
16594
- Parent=IE 6.0
16595
- Platform=Win2003
16596
-
16597
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*Win64;*)*]
16598
- Parent=IE 6.0
16599
- Platform=WinXP
16600
- Win32=false
16601
- Win64=true
16602
-
16603
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*WOW64;*)*]
16604
- Parent=IE 6.0
16605
- Platform=WinXP
16606
-
16607
- [Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.0*)*]
16608
- Parent=IE 6.0
16609
- Platform=WinVista
16610
-
16611
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0
16612
-
16613
- [IE 7.0]
16614
- Parent=DefaultProperties
16615
- Browser="IE"
16616
- Version=7.0
16617
- MajorVer=7
16618
- Win32=true
16619
- Frames=true
16620
- IFrames=true
16621
- Tables=true
16622
- Cookies=true
16623
- BackgroundSounds=true
16624
- CDF=true
16625
- VBScript=true
16626
- JavaApplets=true
16627
- JavaScript=true
16628
- ActiveXControls=true
16629
- CssVersion=2
16630
- supportsCSS=true
16631
-
16632
- [Mozilla/?.* (?compatible; *MSIE 7.0*)*]
16633
- Parent=IE 7.0
16634
-
16635
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98*)*]
16636
- Parent=IE 7.0
16637
- Platform=Win98
16638
-
16639
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98; Win 9x 4.90;*)*]
16640
- Parent=IE 7.0
16641
- Platform=WinME
16642
-
16643
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 4.0*)*]
16644
- Parent=IE 7.0
16645
- Platform=WinNT
16646
-
16647
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*)*]
16648
- Parent=IE 7.0
16649
- Platform=Win2000
16650
-
16651
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.01*)*]
16652
- Parent=IE 7.0
16653
- Platform=Win2000
16654
-
16655
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*)*]
16656
- Parent=IE 7.0
16657
- Platform=WinXP
16658
-
16659
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*)*]
16660
- Parent=IE 7.0
16661
- Platform=Win2003
16662
-
16663
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64;*)*]
16664
- Parent=IE 7.0
16665
- Platform=WinXP
16666
- Win32=false
16667
- Win64=true
16668
-
16669
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*WOW64;*)*]
16670
- Parent=IE 7.0
16671
- Platform=WinXP
16672
-
16673
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*)*]
16674
- Parent=IE 7.0
16675
- Platform=WinVista
16676
-
16677
- [Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*)*]
16678
- Parent=IE 7.0
16679
- Platform=Win7
16680
-
16681
- [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; *)*]
16682
- Parent=IE 7.0
16683
- Platform=Win7
16684
-
16685
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 8.0
16686
-
16687
- [IE 8.0]
16688
- Parent=DefaultProperties
16689
- Browser="IE"
16690
- Version=8.0
16691
- MajorVer=8
16692
- Win32=true
16693
- Frames=true
16694
- IFrames=true
16695
- Tables=true
16696
- Cookies=true
16697
- BackgroundSounds=true
16698
- CDF=true
16699
- VBScript=true
16700
- JavaApplets=true
16701
- JavaScript=true
16702
- ActiveXControls=true
16703
- CssVersion=3
16704
- supportsCSS=true
16705
-
16706
- [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0*)*]
16707
- Parent=IE 8.0
16708
- Platform=WinVista
16709
-
16710
- [Mozilla/4.0 (compatible; MSIE 8.0; Win32*)*]
16711
- Parent=IE 8.0
16712
- Platform=Win32
16713
-
16714
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.0*)*]
16715
- Parent=IE 8.0
16716
- Platform=Win2000
16717
-
16718
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1*)*]
16719
- Parent=IE 8.0
16720
- Platform=WinXP
16721
-
16722
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2*)*]
16723
- Parent=IE 8.0
16724
- Platform=Win2003
16725
-
16726
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0*)*]
16727
- Parent=IE 8.0
16728
- Platform=WinVista
16729
-
16730
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0*)*]
16731
- Parent=IE 8.0
16732
- Platform=WinVista
16733
-
16734
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0*)*]
16735
- Parent=IE 8.0
16736
- Platform=WinVista
16737
- Win32=false
16738
- Win64=true
16739
-
16740
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0*)*]
16741
- Parent=IE 8.0
16742
- Platform=WinVista
16743
- Win64=false
16744
-
16745
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1*)*]
16746
- Parent=IE 8.0
16747
- Platform=Win7
16748
-
16749
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0*)*]
16750
- Parent=IE 8.0
16751
- Platform=Win7
16752
-
16753
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0*)*]
16754
- Parent=IE 8.0
16755
- Platform=Win7
16756
- Win32=false
16757
- Win64=true
16758
-
16759
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0*)*]
16760
- Parent=IE 8.0
16761
- Platform=Win7
16762
- Win64=false
16763
-
16764
- [Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 7.0; Trident/4.0*)*]
16765
- Parent=IE 8.0
16766
- Platform=Win7
16767
-
16768
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Default Browser
16769
-
16770
- [*]
16771
- Browser="Default Browser"
16772
- Version=0
16773
- MajorVer=0
16774
- MinorVer=0
16775
- Platform=unknown
16776
- Alpha=false
16777
- Beta=false
16778
- Win16=false
16779
- Win32=false
16780
- Win64=false
16781
- Frames=true
16782
- IFrames=false
16783
- Tables=true
16784
- Cookies=false
16785
- BackgroundSounds=false
16786
- CDF=false
16787
- VBScript=false
16788
- JavaApplets=false
16789
- JavaScript=false
16790
- ActiveXControls=false
16791
- isBanned=false
16792
- isMobileDevice=false
16793
- isSyndicationReader=false
16794
- Crawler=false
16795
- CssVersion=0
16796
- supportsCSS=false
16797
- AOL=false
16798
- aolVersion=0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/regist_ajax_libs.php ADDED
@@ -0,0 +1,288 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Regist Google Ajax libs
4
+
5
+ License:
6
+ Released under the GPL license
7
+ http://www.gnu.org/copyleft/gpl.html
8
+
9
+ Copyright 2009 wokamoto (email : wokamoto1973@gmail.com)
10
+
11
+ This program is free software; you can redistribute it and/or modify
12
+ it under the terms of the GNU General Public License as published by
13
+ the Free Software Foundation; either version 2 of the License, or
14
+ (at your option) any later version.
15
+
16
+ This program is distributed in the hope that it will be useful,
17
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ GNU General Public License for more details.
20
+
21
+ You should have received a copy of the GNU General Public License
22
+ along with this program; if not, write to the Free Software
23
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
+ */
25
+ if (!defined('AJAX_LIBS_GOOGLE')) define('AJAX_LIBS_GOOGLE', true);
26
+ if (!defined('AJAX_LIBS_YUI')) define('AJAX_LIBS_YUI', true);
27
+
28
+ if (AJAX_LIBS_GOOGLE) {
29
+ define('GOOGLE_JS_API_URL', 'http://www.google.com/jsapi');
30
+ define('AJAX_LIBS_GOOGLE_URL', 'http://ajax.googleapis.com/ajax/libs/');
31
+ define('AJAX_LIBS_PROTOTYPE_JS_VER', '1.6.0.3');
32
+ define('AJAX_LIBS_SCRIPTACULOUS_VER', '1.8.2');
33
+ define('AJAX_LIBS_JQUERY_VER', '1.3.2');
34
+ define('AJAX_LIBS_JQUERY_UI_VER', '1.7');
35
+ define('AJAX_LIBS_MOOTOOLS_VER', '1.11');
36
+ define('AJAX_LIBS_DOJO_VER', '1.1.1');
37
+ define('AJAX_LIBS_PROTOTYPE_JS', AJAX_LIBS_GOOGLE_URL.'prototype/'.AJAX_LIBS_PROTOTYPE_JS_VER.'/prototype.js');
38
+ define('AJAX_LIBS_SCRIPTACULOUS', AJAX_LIBS_GOOGLE_URL.'scriptaculous/'.AJAX_LIBS_SCRIPTACULOUS_VER.'/');
39
+ define('AJAX_LIBS_JQUERY', AJAX_LIBS_GOOGLE_URL.'jquery/'.AJAX_LIBS_JQUERY_VER.'/jquery.min.js');
40
+ define('AJAX_LIBS_JQUERY_UI', AJAX_LIBS_GOOGLE_URL.'jqueryui/'.AJAX_LIBS_JQUERY_UI_VER.'/jquery-ui.min.js');
41
+ define('AJAX_LIBS_MOOTOOLS', AJAX_LIBS_GOOGLE_URL.'mootools/'.AJAX_LIBS_MOOTOOLS_VER.'/mootools-yui-compressed.min.js');
42
+ define('AJAX_LIBS_DOJO', AJAX_LIBS_GOOGLE_URL.'dojo/'.AJAX_LIBS_DOJO_VER.'/dojo.xd.min.js');
43
+ }
44
+
45
+ if (AJAX_LIBS_YUI) {
46
+ define('AJAX_LIBS_YUI_VER', '2.7.0');
47
+ define('AJAX_LIBS_YUI', 'http://yui.yahooapis.com/'.AJAX_LIBS_YUI_VER.'/build/');
48
+ }
49
+
50
+ //**************************************************************************************
51
+ // register_script
52
+ //**************************************************************************************
53
+ function register_script( $handle, $src = '', $deps = false, $ver = false ) {
54
+ if (!class_exists('WP_Scripts'))
55
+ return false;
56
+
57
+ global $wp_scripts, $wp_version;
58
+
59
+ if (!is_a($wp_scripts, 'WP_Scripts'))
60
+ $wp_scripts = new WP_Scripts();
61
+
62
+ if (version_compare($wp_version, "2.6", ">=")) {
63
+ if (isset($wp_scripts->registered[$handle])) {
64
+ if (version_compare($wp_scripts->registered[$handle]->ver, $ver, '<=')) {
65
+ if ($src != '') $wp_scripts->registered[$handle]->src = $src;
66
+ if (is_array($deps)) $wp_scripts->registered[$handle]->deps = $deps;
67
+ if ($ver != false) $wp_scripts->registered[$handle]->ver = $ver;
68
+ }
69
+ } else {
70
+ wp_register_script($handle, $src, $deps, $ver);
71
+ }
72
+ } else {
73
+ if (isset($wp_scripts->scripts[$handle])) {
74
+ if (version_compare($wp_scripts->scripts[$handle]->ver, $ver, '<=')) {
75
+ if ($src != '') $wp_scripts->scripts[$handle]->src = $src;
76
+ if (is_array($deps)) $wp_scripts->scripts[$handle]->deps = $deps;
77
+ if ($ver != false) $wp_scripts->scripts[$handle]->ver = $ver;
78
+ }
79
+ } else {
80
+ wp_register_script($handle, $src, $deps, $ver);
81
+ }
82
+ }
83
+ }
84
+
85
+ //**************************************************************************************
86
+ // dequeue_script
87
+ //**************************************************************************************
88
+ function dequeue_script( $handle ) {
89
+ if (!class_exists('WP_Scripts'))
90
+ return false;
91
+
92
+ global $wp_scripts;
93
+
94
+ if (!is_a($wp_scripts, 'WP_Scripts'))
95
+ $wp_scripts = new WP_Scripts();
96
+ $wp_scripts->dequeue( $handle );
97
+ }
98
+
99
+ //**************************************************************************************
100
+ // enqueue_ajax_lib_stylesheets
101
+ //**************************************************************************************
102
+ if (function_exists('wp_enqueue_style')) :
103
+
104
+ function enqueue_ajax_lib_stylesheets() {
105
+ if ( !is_a($wp_scripts, 'WP_Scripts') ) return;
106
+
107
+ global $wp_scripts;
108
+ $stylesheets = array('yui', 'yui-reset', 'yui-base', 'yui-fonts', 'yui-grids', 'yui-container', 'yui-menu', 'yui-autocomplete', 'yui-button', 'yui-calendar', 'yui-colorpicker', 'yui-datatable', 'yui-editor', 'yui-imagecropper', 'yui-layout', 'yui-resize', 'yui-tabview', 'yui-treeview', 'yui-logger', 'yui-profilerviewer');
109
+ foreach ( $stylesheets as $value ) {
110
+ if ( array_search( $value, $wp_scripts->queue ) != false )
111
+ wp_enqueue_style($value);
112
+ }
113
+ }
114
+ add_action('wp_print_scripts', 'enqueue_ajax_lib_stylesheets', 1);
115
+
116
+ endif;
117
+
118
+ //**************************************************************************************
119
+ // script src cleanup
120
+ //**************************************************************************************
121
+ function script_src_cleanup($src) {
122
+ if (strstr($src, GOOGLE_JS_API_URL) != false || strstr($src, AJAX_LIBS_GOOGLE_URL) != false || strstr($src, AJAX_LIBS_YUI) != false)
123
+ $src = preg_replace("/(\?|\&|\&(amp|#038);)ver=.*$/i", "", $src);
124
+ return $src;
125
+ }
126
+ add_filter('script_loader_src', 'script_src_cleanup');
127
+
128
+ //**************************************************************************************
129
+ // jQuery noConflict
130
+ //**************************************************************************************
131
+ function cs_handlejqueryconflict($args) {
132
+ $jquerypos = array_search('jquery', $args);
133
+ if(false !== $jquerypos && in_array('prototype', $args)) {
134
+ $url = trailingslashit(str_replace(ABSPATH, trailingslashit(get_bloginfo('wpurl')), dirname(__FILE__)));
135
+ wp_register_script('jquery.noconflict', $url . 'js/jquery.noconflict.js' ,array('jquery'));
136
+ array_splice( $args, $jquerypos+1, 0, 'jquery.noconflict' );
137
+ }
138
+ return $args;
139
+ }
140
+ add_filter('print_scripts_array', 'cs_handlejqueryconflict');
141
+
142
+ //**************************************************************************************
143
+ // Google AJAX Libraries
144
+ //**************************************************************************************
145
+ if (AJAX_LIBS_GOOGLE && class_exists('WP_Scripts')) :
146
+ register_script('jsapi', GOOGLE_JS_API_URL);
147
+
148
+ // prototype
149
+ // name: prototype
150
+ // versions: 1.6.0.3
151
+ // load request: google.load("prototype", "1.6.0.3");
152
+ // path: http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.3/prototype.js
153
+ // site: http://www.prototypejs.org/
154
+ register_script('prototype', AJAX_LIBS_PROTOTYPE_JS, false, AJAX_LIBS_PROTOTYPE_JS_VER);
155
+
156
+ // script.aculo.us
157
+ // name: scriptaculous
158
+ // versions: 1.8.2
159
+ // load request: google.load("scriptaculous", "1.8.2");
160
+ // path: http://ajax.googleapis.com/ajax/libs/scriptaculous/1.8.2/scriptaculous.js
161
+ // site: http://script.aculo.us/
162
+ // note: this library depends on prototype. before loading this module, you must load prototype e.g.:
163
+ register_script('scriptaculous-root', AJAX_LIBS_SCRIPTACULOUS.'scriptaculous.js', array('prototype'), AJAX_LIBS_SCRIPTACULOUS_VER);
164
+ register_script('scriptaculous-builder', AJAX_LIBS_SCRIPTACULOUS.'builder.js', array('scriptaculous-root'), AJAX_LIBS_SCRIPTACULOUS_VER);
165
+ register_script('scriptaculous-dragdrop', AJAX_LIBS_SCRIPTACULOUS.'dragdrop.js', array('scriptaculous-builder', 'scriptaculous-effects'), AJAX_LIBS_SCRIPTACULOUS_VER);
166
+ register_script('scriptaculous-effects', AJAX_LIBS_SCRIPTACULOUS.'effects.js', array('scriptaculous-root'), AJAX_LIBS_SCRIPTACULOUS_VER);
167
+ register_script('scriptaculous-slider', AJAX_LIBS_SCRIPTACULOUS.'slider.js', array('scriptaculous-effects'), AJAX_LIBS_SCRIPTACULOUS_VER);
168
+ register_script('scriptaculous-sound', AJAX_LIBS_SCRIPTACULOUS.'sound.js', array( 'scriptaculous-root' ), AJAX_LIBS_SCRIPTACULOUS_VER);
169
+ register_script('scriptaculous-controls', AJAX_LIBS_SCRIPTACULOUS.'controls.js', array('scriptaculous-root'), AJAX_LIBS_SCRIPTACULOUS_VER);
170
+ register_script('scriptaculous', '', array('scriptaculous-dragdrop', 'scriptaculous-slider', 'scriptaculous-controls'), AJAX_LIBS_SCRIPTACULOUS_VER);
171
+
172
+ // jQuery
173
+ // name: jquery
174
+ // versions: 1.2.3, 1.2.6
175
+ // load request: google.load("jquery", "1.2.6");
176
+ // extras: uncompressed:true, e.g., google.load("jquery", "1.2", {uncompressed:true});
177
+ // path: http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js
178
+ // path(u): http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
179
+ // site: http://jquery.com/
180
+ // note: 1.2.5 and 1.2.4 are not hosted due to their short and unstable lives in the wild...
181
+ register_script('jquery', AJAX_LIBS_JQUERY, false, AJAX_LIBS_JQUERY_VER);
182
+ register_script('jquery.ui', AJAX_LIBS_JQUERY_UI, array('jquery'), AJAX_LIBS_JQUERY_UI_VER);
183
+
184
+ // mootools
185
+ // name: mootools
186
+ // versions: 1.11
187
+ // load request: google.load("mootools", "1.11");
188
+ // extras: uncompressed:true, e.g., google.load("mootools", "1.11", {uncompressed:true});
189
+ // path: http://ajax.googleapis.com/ajax/libs/mootools/1.11/mootools-yui-compressed.js
190
+ // path(u): http://ajax.googleapis.com/ajax/libs/mootools/1.11/mootools.js
191
+ // site: http://mootools.net/
192
+ register_script('mootools', AJAX_LIBS_MOOTOOLS, false, AJAX_LIBS_MOOTOOLS_VER);
193
+
194
+
195
+ // dojo
196
+ // name: dojo
197
+ // versions: 1.1.1
198
+ // load request: google.load("dojo", "1.1.1");
199
+ // extras: uncompressed:true, e.g., google.load("dojo", "1.1.1", {uncompressed:true});
200
+ // path: http://ajax.googleapis.com/ajax/libs/dojo/1.1.1/dojo/dojo.xd.js
201
+ // path(u): http://ajax.googleapis.com/ajax/libs/dojo/1.1.1/dojo/dojo.xd.js.uncompressed.js
202
+ // site: http://dojotoolkit.org/
203
+ register_script('dojo', AJAX_LIBS_DOJO, false, AJAX_LIBS_DOJO_VER);
204
+
205
+ endif;
206
+
207
+ //**************************************************************************************
208
+ // YUI Libraries
209
+ //**************************************************************************************
210
+ if (AJAX_LIBS_YUI && class_exists('WP_Scripts')) :
211
+ // YUI
212
+ // name: yui
213
+ // versions: 2.7.0
214
+ // path: http://yui.yahooapis.com/2.7.0/build/yahoo/yahoo-min.js
215
+ // site: http://developer.yahoo.com/yui/
216
+
217
+ // YUI Core
218
+ register_script('yui-core', AJAX_LIBS_YUI.'yahoo/yahoo-min.js', false, AJAX_LIBS_YUI_VER);
219
+ register_script('yui-dom', AJAX_LIBS_YUI.'dom/dom-min.js', false, AJAX_LIBS_YUI_VER);
220
+ register_script('yui-event', AJAX_LIBS_YUI.'event/event-min.js', false, AJAX_LIBS_YUI_VER);
221
+ register_script('yui', '', array('yui-core', 'yui-dom', 'yui-event'), AJAX_LIBS_YUI_VER);
222
+ if (function_exists('wp_register_style')) {
223
+ wp_register_style('yui-reset', AJAX_LIBS_YUI.'reset/reset-min.css', false, AJAX_LIBS_YUI_VER);
224
+ wp_register_style('yui-base', AJAX_LIBS_YUI.'base/base-min.css', false, AJAX_LIBS_YUI_VER);
225
+ wp_register_style('yui-fonts', AJAX_LIBS_YUI.'fonts/fonts-min.css', false, AJAX_LIBS_YUI_VER);
226
+ wp_register_style('yui-grids', AJAX_LIBS_YUI.'grids/grids-min.css', false, AJAX_LIBS_YUI_VER);
227
+ wp_register_style('yui', '', array('yui-reset', 'yui-base', 'yui-fonts', 'yui-grids'), AJAX_LIBS_YUI_VER);
228
+ }
229
+
230
+ // YUI Utilities
231
+ register_script('yui-element', AJAX_LIBS_YUI.'element/element-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
232
+ register_script('yui-animation', AJAX_LIBS_YUI.'animation/animation-min.js', array('yui'), AJAX_LIBS_YUI_VER);
233
+ register_script('yui-connection', AJAX_LIBS_YUI.'connection/connection-min.js', array('yui'), AJAX_LIBS_YUI_VER);
234
+ register_script('yui-cookie', AJAX_LIBS_YUI.'cookie/cookie-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
235
+ register_script('yui-datasource', AJAX_LIBS_YUI.'datasource/datasource-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
236
+ register_script('yui-dragdrop', AJAX_LIBS_YUI.'dragdrop/dragdrop-min.js', array('yui'), AJAX_LIBS_YUI_VER);
237
+ register_script('yui-get', AJAX_LIBS_YUI.'get/get-min.js', array('yui-core'), AJAX_LIBS_YUI_VER);
238
+ register_script('yui-history', AJAX_LIBS_YUI.'history/history-min.js', array('yui'), AJAX_LIBS_YUI_VER);
239
+ register_script('yui-imageloader', AJAX_LIBS_YUI.'imageloader/imageloader-min.js', array('yui'), AJAX_LIBS_YUI_VER);
240
+ register_script('yui-json', AJAX_LIBS_YUI.'json/json-min.js', array('yui'), AJAX_LIBS_YUI_VER);
241
+ register_script('yui-resize', AJAX_LIBS_YUI.'resize/resize-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
242
+ register_script('yui-selector', AJAX_LIBS_YUI.'selector/selector-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
243
+ register_script('yui-yuiloader', AJAX_LIBS_YUI.'yuiloader/yuiloader-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
244
+
245
+ // YUI's UI Controls
246
+ register_script('yui-container', AJAX_LIBS_YUI.'container/container-min.js', array('yui'), AJAX_LIBS_YUI_VER);
247
+ register_script('yui-menu', AJAX_LIBS_YUI.'menu/menu-min.js', array('yui'), AJAX_LIBS_YUI_VER);
248
+ register_script('yui-autocomplete', AJAX_LIBS_YUI.'autocomplete/autocomplete-min.js', array('yui'), AJAX_LIBS_YUI_VER);
249
+ register_script('yui-button', AJAX_LIBS_YUI.'button/button-min.js', array('yui'), AJAX_LIBS_YUI_VER);
250
+ register_script('yui-calendar', AJAX_LIBS_YUI.'calendar/calendar-min.js', array('yui'), AJAX_LIBS_YUI_VER);
251
+ register_script('yui-charts', AJAX_LIBS_YUI.'charts/charts-experimental-min.js', array('yui'), AJAX_LIBS_YUI_VER);
252
+ register_script('yui-colorpicker', AJAX_LIBS_YUI.'colorpicker/colorpicker-min.js', array('yui'), AJAX_LIBS_YUI_VER);
253
+ register_script('yui-datatable', AJAX_LIBS_YUI.'datatable/datatable-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
254
+ register_script('yui-editor', AJAX_LIBS_YUI.'editor/editor-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
255
+ register_script('yui-imagecropper', AJAX_LIBS_YUI.'imagecropper/imagecropper-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
256
+ register_script('yui-layout', AJAX_LIBS_YUI.'layout/layout-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
257
+ register_script('yui-slider', AJAX_LIBS_YUI.'slider/slider-min.js', array('yui'), AJAX_LIBS_YUI_VER);
258
+ register_script('yui-tabview', AJAX_LIBS_YUI.'tabview/tabview-min.js', array('yui'), AJAX_LIBS_YUI_VER);
259
+ register_script('yui-treeview', AJAX_LIBS_YUI.'treeview/treeview-min.js', array('yui'), AJAX_LIBS_YUI_VER);
260
+ register_script('yui-uploader', AJAX_LIBS_YUI.'uploader/uploader-experimental-min.js', array('yui'), AJAX_LIBS_YUI_VER);
261
+ if (function_exists('wp_register_style')) {
262
+ wp_register_style('yui-container', AJAX_LIBS_YUI.'container/assets/skins/sam/container.css', array('yui'), AJAX_LIBS_YUI_VER);
263
+ wp_register_style('yui-menu', AJAX_LIBS_YUI.'menu/assets/skins/sam/menu.css', array('yui'), AJAX_LIBS_YUI_VER);
264
+ wp_register_style('yui-autocomplete', AJAX_LIBS_YUI.'autocomplete/assets/skins/sam/autocomplete.css', array('yui'), AJAX_LIBS_YUI_VER);
265
+ wp_register_style('yui-button', AJAX_LIBS_YUI.'button/assets/skins/sam/button.css', array('yui'), AJAX_LIBS_YUI_VER);
266
+ wp_register_style('yui-calendar', AJAX_LIBS_YUI.'calendar/assets/skins/sam/calendar.css', array('yui'), AJAX_LIBS_YUI_VER);
267
+ wp_register_style('yui-colorpicker', AJAX_LIBS_YUI.'colorpicker/assets/skins/sam/colorpicker.css', array('yui'), AJAX_LIBS_YUI_VER);
268
+ wp_register_style('yui-datatable', AJAX_LIBS_YUI.'datatable/assets/skins/sam/datatable.css', array('yui'), AJAX_LIBS_YUI_VER);
269
+ wp_register_style('yui-editor', AJAX_LIBS_YUI.'editor/assets/skins/sam/editor.css', array('yui'), AJAX_LIBS_YUI_VER);
270
+ wp_register_style('yui-imagecropper', AJAX_LIBS_YUI.'imagecropper/assets/skins/sam/imagecropper.css', array('yui'), AJAX_LIBS_YUI_VER);
271
+ wp_register_style('yui-layout', AJAX_LIBS_YUI.'layout/assets/skins/sam/layout.css', array('yui'), AJAX_LIBS_YUI_VER);
272
+ wp_register_style('yui-resize', AJAX_LIBS_YUI.'resize/assets/skins/sam/resize.css', array('yui'), AJAX_LIBS_YUI_VER);
273
+ wp_register_style('yui-tabview', AJAX_LIBS_YUI.'tabview/assets/skins/sam/tabview.css', array('yui'), AJAX_LIBS_YUI_VER);
274
+ wp_register_style('yui-treeview', AJAX_LIBS_YUI.'treeview/assets/skins/sam/treeview.css', array('yui'), AJAX_LIBS_YUI_VER);
275
+ }
276
+
277
+ // YUI Developer Tools: Logging, Testing and Profiling
278
+ register_script('yui-logger', AJAX_LIBS_YUI.'logger/logger-min.js', array('yui'), AJAX_LIBS_YUI_VER);
279
+ register_script('yui-profiler', AJAX_LIBS_YUI.'profiler/profiler-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
280
+ register_script('yui-profilerviewer', AJAX_LIBS_YUI.'profilerviewer/profilerviewer-beta-min.js', array('yui'), AJAX_LIBS_YUI_VER);
281
+ register_script('yui-yuitest', AJAX_LIBS_YUI.'yuitest/yuitest-min.js', array('yui'), AJAX_LIBS_YUI_VER);
282
+ if (function_exists('wp_register_style')) {
283
+ wp_register_style('yui-logger', AJAX_LIBS_YUI.'logger/assets/skins/sam/logger.css', array('yui'), AJAX_LIBS_YUI_VER);
284
+ wp_register_style('yui-profilerviewer', AJAX_LIBS_YUI.'profilerviewer/assets/skins/sam/profilerviewer.css', array('yui'), AJAX_LIBS_YUI_VER);
285
+ }
286
+
287
+ endif;
288
+ ?>
languages/head-cleaner-by.po CHANGED
@@ -16,6 +16,10 @@ msgstr ""
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
 
 
 
 
19
  #: ../head-cleaner.php:1504
20
  msgid "Head Cleaner"
21
  msgstr "Чыстка загалоўка"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ # description
20
+ msgid "Cleaning tags from your WordPress header and footer."
21
+ msgstr ""
22
+
23
  #: ../head-cleaner.php:1504
24
  msgid "Head Cleaner"
25
  msgstr "Чыстка загалоўка"
languages/head-cleaner-es.po CHANGED
@@ -16,6 +16,10 @@ msgstr ""
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
 
 
 
 
19
  #: ../head-cleaner.php:1405
20
  msgid "Head Cleaner"
21
  msgstr "Head Cleaner"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ # description
20
+ msgid "Cleaning tags from your WordPress header and footer."
21
+ msgstr ""
22
+
23
  #: ../head-cleaner.php:1405
24
  msgid "Head Cleaner"
25
  msgstr "Head Cleaner"
languages/head-cleaner-ja.mo CHANGED
Binary file
languages/head-cleaner-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Head Cleaner\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 14:45+0900\n"
6
- "PO-Revision-Date: 2009-07-14 14:46+0900\n"
7
  "Last-Translator: wokamoto <wokamoto1973@gmail.com>\n"
8
  "Language-Team: JAPANESE <http://wppluginsj.sourceforge.jp/>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,209 +16,217 @@ msgstr ""
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../head-cleaner.php:1504
 
 
 
 
20
  msgid "Head Cleaner"
21
  msgstr "Head Cleaner"
22
 
23
- #: ../head-cleaner.php:1513
24
  #: ../includes/common-controller.php:175
25
  msgid "Settings"
26
  msgstr "設定"
27
 
28
- #: ../head-cleaner.php:1609
29
- #: ../head-cleaner.php:1619
30
- #: ../head-cleaner.php:1629
31
  msgid "Done!"
32
  msgstr "完了!"
33
 
34
- #: ../head-cleaner.php:1641
35
  msgid "Head Cleaner Options"
36
  msgstr "Head Cleaner 設定"
37
 
38
- #: ../head-cleaner.php:1649
39
  msgid "CSS and JavaScript are cached on the server."
40
  msgstr "CSS と JavaScript を、サーバ上にキャッシュする"
41
 
42
- #: ../head-cleaner.php:1653
43
  msgid "Put JavaScripts at the Bottom."
44
  msgstr "&lt;head&gt; 内の JavaScript を、フッタ領域に移動"
45
 
46
- #: ../head-cleaner.php:1657
47
  msgid "CSS and JS are dynamically generated."
48
  msgstr "CSS, JS を動的生成する。"
49
 
50
- #: ../head-cleaner.php:1665
51
  msgid "Two or more CSS is combined."
52
  msgstr "複数の CSS を結合する"
53
 
54
- #: ../head-cleaner.php:1669
55
  msgid "CSS is optimized."
56
  msgstr "CSS を最適化する"
57
 
58
- #: ../head-cleaner.php:1672
59
  msgid "Default media attribute applied to CSS."
60
  msgstr "CSS に適用するデフォルト media 属性"
61
 
62
- #: ../head-cleaner.php:1681
63
  msgid "Two or more JavaScript is combined."
64
  msgstr "複数の JavaScript を結合する"
65
 
66
- #: ../head-cleaner.php:1685
67
  msgid "JavaScript is minified."
68
  msgstr "JavaScript を小さくする"
69
 
70
- #: ../head-cleaner.php:1689
71
  msgid "Bottom JavaScript is combined, too."
72
  msgstr "フッタ領域の JavaScript も対象にする"
73
 
74
- #: ../head-cleaner.php:1696
75
  msgid "gzip compress to CSS and JS."
76
  msgstr "CSS と JS を gzip 圧縮転送"
77
 
78
- #: ../head-cleaner.php:1708
 
 
 
 
79
  msgid "Add XML Declaration."
80
  msgstr "XML宣言を付与"
81
 
82
- #: ../head-cleaner.php:1712
83
  msgid "Add canonical tag."
84
  msgstr "メタタグ &quot;canonical&quot; を追加"
85
 
86
- #: ../head-cleaner.php:1716
87
  msgid "Remove IE Conditional Tag."
88
  msgstr "IEコンディショナルタグを削除"
89
 
90
- #: ../head-cleaner.php:1723
91
  msgid "Remove generator tag."
92
  msgstr "メタタグ &quot;generator&quot; を削除"
93
 
94
- #: ../head-cleaner.php:1727
95
  msgid "Remove RSD link tag."
96
  msgstr "リンクタグ &quot;RSD&quot; を削除"
97
 
98
- #: ../head-cleaner.php:1731
99
  msgid "Remove wlwmanifest link tag."
100
  msgstr "リンクタグ &quot;wlwmanifest&quot; を削除."
101
 
102
- #: ../head-cleaner.php:1738
103
  msgid "Debug mode"
104
  msgstr "デバッグモード"
105
 
106
- #: ../head-cleaner.php:1751
107
  msgid "The CSS optimization settings"
108
  msgstr "CSS最適化 オプション"
109
 
110
- #: ../head-cleaner.php:1753
111
  msgid "Compression (code layout):"
112
  msgstr "圧縮率(コードレイアウト):"
113
 
114
- #: ../head-cleaner.php:1755
115
  msgid "Highest (no readability, smallest size)"
116
  msgstr "最高 (改行なし)"
117
 
118
- #: ../head-cleaner.php:1756
119
  msgid "High (moderate readability, smaller size)"
120
  msgstr "高 (セレクタ1行表記)"
121
 
122
- #: ../head-cleaner.php:1757
123
  msgid "Standard (balance between readability and size)"
124
  msgstr "標準 (プロパティごと改行)"
125
 
126
- #: ../head-cleaner.php:1758
127
  msgid "Low (higher readability)"
128
  msgstr "低 (プロパティをインデント)"
129
 
130
- #: ../head-cleaner.php:1761
131
  msgid "Optimise shorthands"
132
  msgstr "ショートハンドCSSの最適化"
133
 
134
- #: ../head-cleaner.php:1763
135
  msgid "All optimisations"
136
  msgstr "margin,padding,border,backgroundを最適化"
137
 
138
- #: ../head-cleaner.php:1764
139
  msgid "Safe optimisations"
140
  msgstr "margin,padding,borderのみ"
141
 
142
- #: ../head-cleaner.php:1765
143
  msgid "Don't optimise"
144
  msgstr "最適化しない"
145
 
146
- #: ../head-cleaner.php:1770
147
  msgid "Compress colors"
148
  msgstr "colorの値を簡略化する"
149
 
150
- #: ../head-cleaner.php:1773
151
  msgid "Compress font-weight"
152
  msgstr "font-weightを数値にする"
153
 
154
- #: ../head-cleaner.php:1776
155
  msgid "Remove unnecessary backslashes"
156
  msgstr "不要なバックスラッシュを削除"
157
 
158
- #: ../head-cleaner.php:1784
159
  msgid "Active Filters"
160
  msgstr "有効なフィルタ"
161
 
162
- #: ../head-cleaner.php:1787
163
- #: ../head-cleaner.php:1824
164
  msgid "Off the subject"
165
  msgstr "対象外"
166
 
167
- #: ../head-cleaner.php:1788
168
- #: ../head-cleaner.php:1825
169
  msgid "Remove"
170
  msgstr "削除"
171
 
172
- #: ../head-cleaner.php:1789
173
  msgid "Head filters"
174
  msgstr "&lt;head&gt; 内の有効なフィルタ"
175
 
176
- #: ../head-cleaner.php:1791
177
- #: ../head-cleaner.php:1828
178
  msgid "Priority"
179
  msgstr "フィルタの優先順位"
180
 
181
- #: ../head-cleaner.php:1826
182
  msgid "Bottom filters"
183
  msgstr "フッタ領域の有効なフィルタ"
184
 
185
- #: ../head-cleaner.php:1863
186
  msgid "Active JavaScripts"
187
  msgstr "&lt;head&gt; 部で有効な JavaScript"
188
 
189
- #: ../head-cleaner.php:1866
190
  msgid "Move to footer"
191
  msgstr "フッタに移動"
192
 
193
- #: ../head-cleaner.php:1867
194
  msgid "JavaScripts"
195
  msgstr "JavaScript"
196
 
197
- #: ../head-cleaner.php:1878
198
  msgid "Update Options"
199
  msgstr "更新"
200
 
201
- #: ../head-cleaner.php:1883
202
  msgid "Remove all cache files"
203
  msgstr "キャッシュファイル削除"
204
 
205
- #: ../head-cleaner.php:1886
206
  msgid "All cache files are removed."
207
  msgstr "キャッシュフォルダ内のファイルをすべて削除する。"
208
 
209
- #: ../head-cleaner.php:1887
210
  msgid "Remove All Cache Files"
211
  msgstr "削除"
212
 
213
- #: ../head-cleaner.php:1892
214
  msgid "Uninstall"
215
  msgstr "アンインストール"
216
 
217
- #: ../head-cleaner.php:1895
218
  msgid "All the settings of &quot;Head Cleaner&quot; are deleted."
219
  msgstr "&quot;Head Cleaner&quot; の設定をすべて消去する。"
220
 
221
- #: ../head-cleaner.php:1896
222
  msgid "Delete Options"
223
  msgstr "削除"
224
 
2
  msgstr ""
3
  "Project-Id-Version: Head Cleaner\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-26 15:40+0900\n"
6
+ "PO-Revision-Date: 2009-08-26 15:45+0900\n"
7
  "Last-Translator: wokamoto <wokamoto1973@gmail.com>\n"
8
  "Language-Team: JAPANESE <http://wppluginsj.sourceforge.jp/>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ # description
20
+ msgid "Cleaning tags from your WordPress header and footer."
21
+ msgstr "WordPress サイトの &lt;head&gt; の中身と、フッタ領域を整形しなおします。"
22
+
23
+ #: ../head-cleaner.php:1420
24
  msgid "Head Cleaner"
25
  msgstr "Head Cleaner"
26
 
27
+ #: ../head-cleaner.php:1429
28
  #: ../includes/common-controller.php:175
29
  msgid "Settings"
30
  msgstr "設定"
31
 
32
+ #: ../head-cleaner.php:1526
33
+ #: ../head-cleaner.php:1536
34
+ #: ../head-cleaner.php:1546
35
  msgid "Done!"
36
  msgstr "完了!"
37
 
38
+ #: ../head-cleaner.php:1558
39
  msgid "Head Cleaner Options"
40
  msgstr "Head Cleaner 設定"
41
 
42
+ #: ../head-cleaner.php:1566
43
  msgid "CSS and JavaScript are cached on the server."
44
  msgstr "CSS と JavaScript を、サーバ上にキャッシュする"
45
 
46
+ #: ../head-cleaner.php:1570
47
  msgid "Put JavaScripts at the Bottom."
48
  msgstr "&lt;head&gt; 内の JavaScript を、フッタ領域に移動"
49
 
50
+ #: ../head-cleaner.php:1574
51
  msgid "CSS and JS are dynamically generated."
52
  msgstr "CSS, JS を動的生成する。"
53
 
54
+ #: ../head-cleaner.php:1582
55
  msgid "Two or more CSS is combined."
56
  msgstr "複数の CSS を結合する"
57
 
58
+ #: ../head-cleaner.php:1586
59
  msgid "CSS is optimized."
60
  msgstr "CSS を最適化する"
61
 
62
+ #: ../head-cleaner.php:1589
63
  msgid "Default media attribute applied to CSS."
64
  msgstr "CSS に適用するデフォルト media 属性"
65
 
66
+ #: ../head-cleaner.php:1598
67
  msgid "Two or more JavaScript is combined."
68
  msgstr "複数の JavaScript を結合する"
69
 
70
+ #: ../head-cleaner.php:1602
71
  msgid "JavaScript is minified."
72
  msgstr "JavaScript を小さくする"
73
 
74
+ #: ../head-cleaner.php:1606
75
  msgid "Bottom JavaScript is combined, too."
76
  msgstr "フッタ領域の JavaScript も対象にする"
77
 
78
+ #: ../head-cleaner.php:1613
79
  msgid "gzip compress to CSS and JS."
80
  msgstr "CSS と JS を gzip 圧縮転送"
81
 
82
+ #: ../head-cleaner.php:1617
83
+ msgid "Use Google Ajax Libraries."
84
+ msgstr "Google Ajax Libraries を利用する"
85
+
86
+ #: ../head-cleaner.php:1626
87
  msgid "Add XML Declaration."
88
  msgstr "XML宣言を付与"
89
 
90
+ #: ../head-cleaner.php:1630
91
  msgid "Add canonical tag."
92
  msgstr "メタタグ &quot;canonical&quot; を追加"
93
 
94
+ #: ../head-cleaner.php:1634
95
  msgid "Remove IE Conditional Tag."
96
  msgstr "IEコンディショナルタグを削除"
97
 
98
+ #: ../head-cleaner.php:1641
99
  msgid "Remove generator tag."
100
  msgstr "メタタグ &quot;generator&quot; を削除"
101
 
102
+ #: ../head-cleaner.php:1645
103
  msgid "Remove RSD link tag."
104
  msgstr "リンクタグ &quot;RSD&quot; を削除"
105
 
106
+ #: ../head-cleaner.php:1649
107
  msgid "Remove wlwmanifest link tag."
108
  msgstr "リンクタグ &quot;wlwmanifest&quot; を削除."
109
 
110
+ #: ../head-cleaner.php:1656
111
  msgid "Debug mode"
112
  msgstr "デバッグモード"
113
 
114
+ #: ../head-cleaner.php:1669
115
  msgid "The CSS optimization settings"
116
  msgstr "CSS最適化 オプション"
117
 
118
+ #: ../head-cleaner.php:1671
119
  msgid "Compression (code layout):"
120
  msgstr "圧縮率(コードレイアウト):"
121
 
122
+ #: ../head-cleaner.php:1673
123
  msgid "Highest (no readability, smallest size)"
124
  msgstr "最高 (改行なし)"
125
 
126
+ #: ../head-cleaner.php:1674
127
  msgid "High (moderate readability, smaller size)"
128
  msgstr "高 (セレクタ1行表記)"
129
 
130
+ #: ../head-cleaner.php:1675
131
  msgid "Standard (balance between readability and size)"
132
  msgstr "標準 (プロパティごと改行)"
133
 
134
+ #: ../head-cleaner.php:1676
135
  msgid "Low (higher readability)"
136
  msgstr "低 (プロパティをインデント)"
137
 
138
+ #: ../head-cleaner.php:1679
139
  msgid "Optimise shorthands"
140
  msgstr "ショートハンドCSSの最適化"
141
 
142
+ #: ../head-cleaner.php:1681
143
  msgid "All optimisations"
144
  msgstr "margin,padding,border,backgroundを最適化"
145
 
146
+ #: ../head-cleaner.php:1682
147
  msgid "Safe optimisations"
148
  msgstr "margin,padding,borderのみ"
149
 
150
+ #: ../head-cleaner.php:1683
151
  msgid "Don't optimise"
152
  msgstr "最適化しない"
153
 
154
+ #: ../head-cleaner.php:1688
155
  msgid "Compress colors"
156
  msgstr "colorの値を簡略化する"
157
 
158
+ #: ../head-cleaner.php:1691
159
  msgid "Compress font-weight"
160
  msgstr "font-weightを数値にする"
161
 
162
+ #: ../head-cleaner.php:1694
163
  msgid "Remove unnecessary backslashes"
164
  msgstr "不要なバックスラッシュを削除"
165
 
166
+ #: ../head-cleaner.php:1702
167
  msgid "Active Filters"
168
  msgstr "有効なフィルタ"
169
 
170
+ #: ../head-cleaner.php:1705
171
+ #: ../head-cleaner.php:1742
172
  msgid "Off the subject"
173
  msgstr "対象外"
174
 
175
+ #: ../head-cleaner.php:1706
176
+ #: ../head-cleaner.php:1743
177
  msgid "Remove"
178
  msgstr "削除"
179
 
180
+ #: ../head-cleaner.php:1707
181
  msgid "Head filters"
182
  msgstr "&lt;head&gt; 内の有効なフィルタ"
183
 
184
+ #: ../head-cleaner.php:1709
185
+ #: ../head-cleaner.php:1746
186
  msgid "Priority"
187
  msgstr "フィルタの優先順位"
188
 
189
+ #: ../head-cleaner.php:1744
190
  msgid "Bottom filters"
191
  msgstr "フッタ領域の有効なフィルタ"
192
 
193
+ #: ../head-cleaner.php:1781
194
  msgid "Active JavaScripts"
195
  msgstr "&lt;head&gt; 部で有効な JavaScript"
196
 
197
+ #: ../head-cleaner.php:1784
198
  msgid "Move to footer"
199
  msgstr "フッタに移動"
200
 
201
+ #: ../head-cleaner.php:1785
202
  msgid "JavaScripts"
203
  msgstr "JavaScript"
204
 
205
+ #: ../head-cleaner.php:1796
206
  msgid "Update Options"
207
  msgstr "更新"
208
 
209
+ #: ../head-cleaner.php:1801
210
  msgid "Remove all cache files"
211
  msgstr "キャッシュファイル削除"
212
 
213
+ #: ../head-cleaner.php:1804
214
  msgid "All cache files are removed."
215
  msgstr "キャッシュフォルダ内のファイルをすべて削除する。"
216
 
217
+ #: ../head-cleaner.php:1805
218
  msgid "Remove All Cache Files"
219
  msgstr "削除"
220
 
221
+ #: ../head-cleaner.php:1810
222
  msgid "Uninstall"
223
  msgstr "アンインストール"
224
 
225
+ #: ../head-cleaner.php:1813
226
  msgid "All the settings of &quot;Head Cleaner&quot; are deleted."
227
  msgstr "&quot;Head Cleaner&quot; の設定をすべて消去する。"
228
 
229
+ #: ../head-cleaner.php:1814
230
  msgid "Delete Options"
231
  msgstr "削除"
232
 
languages/head-cleaner-ru.mo ADDED
Binary file
languages/head-cleaner-ru.po ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Head Cleaner\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-26 15:40+0900\n"
6
+ "PO-Revision-Date: 2009-08-31 22:26+0200\n"
7
+ "Last-Translator: Fat Cow <zhr@tut.by>\n"
8
+ "Language-Team: iliamrv <iliamrv@ya.ru>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=utf-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Russian\n"
13
+ "X-Poedit-Country: RUSSIAN FEDERATION\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ # description
20
+ msgid "Cleaning tags from your WordPress header and footer."
21
+ msgstr "Cleaning tags from your WordPress header and footer."
22
+
23
+ #: ../head-cleaner.php:1420
24
+ msgid "Head Cleaner"
25
+ msgstr "Чистка заголовка"
26
+
27
+ #: ../head-cleaner.php:1429
28
+ #: ../includes/common-controller.php:175
29
+ msgid "Settings"
30
+ msgstr "Настройки"
31
+
32
+ #: ../head-cleaner.php:1526
33
+ #: ../head-cleaner.php:1536
34
+ #: ../head-cleaner.php:1546
35
+ msgid "Done!"
36
+ msgstr "Готово!"
37
+
38
+ #: ../head-cleaner.php:1558
39
+ msgid "Head Cleaner Options"
40
+ msgstr "Настройки чистки заголовка"
41
+
42
+ #: ../head-cleaner.php:1566
43
+ msgid "CSS and JavaScript are cached on the server."
44
+ msgstr "CSS и JavaScript кэшируются на этом сервере"
45
+
46
+ #: ../head-cleaner.php:1570
47
+ msgid "Put JavaScripts at the Bottom."
48
+ msgstr "Вставить JavaScripts в бакавічцы."
49
+
50
+ #: ../head-cleaner.php:1574
51
+ msgid "CSS and JS are dynamically generated."
52
+ msgstr "CSS и JS динамично создаются. "
53
+
54
+ #: ../head-cleaner.php:1582
55
+ msgid "Two or more CSS is combined."
56
+ msgstr "Два или более CSS комбинируются"
57
+
58
+ #: ../head-cleaner.php:1586
59
+ msgid "CSS is optimized."
60
+ msgstr "CSS оптимизированный"
61
+
62
+ #: ../head-cleaner.php:1589
63
+ msgid "Default media attribute applied to CSS."
64
+ msgstr "Обычный media атрибут прикрепленный к CSS"
65
+
66
+ #: ../head-cleaner.php:1598
67
+ msgid "Two or more JavaScript is combined."
68
+ msgstr "Два или более JavaScript комбинируются"
69
+
70
+ #: ../head-cleaner.php:1602
71
+ msgid "JavaScript is minified."
72
+ msgstr "JavaScript минимизированный. "
73
+
74
+ #: ../head-cleaner.php:1606
75
+ msgid "Bottom JavaScript is combined, too."
76
+ msgstr "Боковой JavaScript таксам комбинируется."
77
+
78
+ #: ../head-cleaner.php:1613
79
+ msgid "gzip compress to CSS and JS."
80
+ msgstr "gzip compress to CSS and JS."
81
+
82
+ #: ../head-cleaner.php:1617
83
+ msgid "Use Google Ajax Libraries."
84
+ msgstr "Use Google Ajax Libraries."
85
+
86
+ #: ../head-cleaner.php:1626
87
+ msgid "Add XML Declaration."
88
+ msgstr "Add XML Declaration."
89
+
90
+ #: ../head-cleaner.php:1630
91
+ msgid "Add canonical tag."
92
+ msgstr "Add canonical tag."
93
+
94
+ #: ../head-cleaner.php:1634
95
+ msgid "Remove IE Conditional Tag."
96
+ msgstr "Удалить тэг RSD линка "
97
+
98
+ #: ../head-cleaner.php:1641
99
+ msgid "Remove generator tag."
100
+ msgstr "Удалить генератор тэгов"
101
+
102
+ #: ../head-cleaner.php:1645
103
+ msgid "Remove RSD link tag."
104
+ msgstr "Удалить тэг RSD линка"
105
+
106
+ #: ../head-cleaner.php:1649
107
+ msgid "Remove wlwmanifest link tag."
108
+ msgstr "Удалить тэг wlwmanifest."
109
+
110
+ #: ../head-cleaner.php:1656
111
+ msgid "Debug mode"
112
+ msgstr "Режим настройки"
113
+
114
+ #: ../head-cleaner.php:1669
115
+ msgid "The CSS optimization settings"
116
+ msgstr "Настройки оптимизации CSS"
117
+
118
+ #: ../head-cleaner.php:1671
119
+ msgid "Compression (code layout):"
120
+ msgstr "Компрессия (код):"
121
+
122
+ #: ../head-cleaner.php:1673
123
+ msgid "Highest (no readability, smallest size)"
124
+ msgstr "Высший (не читабельно, меньшие размеры)"
125
+
126
+ #: ../head-cleaner.php:1674
127
+ msgid "High (moderate readability, smaller size)"
128
+ msgstr "Высокий (умеренно читабельно, малые размеры)"
129
+
130
+ #: ../head-cleaner.php:1675
131
+ msgid "Standard (balance between readability and size)"
132
+ msgstr "Стандартный (баланс между читабельностью и размерами)"
133
+
134
+ #: ../head-cleaner.php:1676
135
+ msgid "Low (higher readability)"
136
+ msgstr "Низкая (высшая читабельность)"
137
+
138
+ #: ../head-cleaner.php:1679
139
+ msgid "Optimise shorthands"
140
+ msgstr "Оптимизировать скарочанні"
141
+
142
+ #: ../head-cleaner.php:1681
143
+ msgid "All optimisations"
144
+ msgstr "Все виды оптимизации"
145
+
146
+ #: ../head-cleaner.php:1682
147
+ msgid "Safe optimisations"
148
+ msgstr "Бережливая оптимизация"
149
+
150
+ #: ../head-cleaner.php:1683
151
+ msgid "Don't optimise"
152
+ msgstr "Не оптимизировать"
153
+
154
+ #: ../head-cleaner.php:1688
155
+ msgid "Compress colors"
156
+ msgstr "Сжать цвета"
157
+
158
+ #: ../head-cleaner.php:1691
159
+ msgid "Compress font-weight"
160
+ msgstr "Сжать жырнасць шрифтов"
161
+
162
+ #: ../head-cleaner.php:1694
163
+ msgid "Remove unnecessary backslashes"
164
+ msgstr "Удалить несуществующие скобки"
165
+
166
+ #: ../head-cleaner.php:1702
167
+ msgid "Active Filters"
168
+ msgstr "Активные фильтры"
169
+
170
+ #: ../head-cleaner.php:1705
171
+ #: ../head-cleaner.php:1742
172
+ msgid "Off the subject"
173
+ msgstr "Выключить тему"
174
+
175
+ #: ../head-cleaner.php:1706
176
+ #: ../head-cleaner.php:1743
177
+ msgid "Remove"
178
+ msgstr "Удалить"
179
+
180
+ #: ../head-cleaner.php:1707
181
+ msgid "Head filters"
182
+ msgstr "Главные фильтры"
183
+
184
+ #: ../head-cleaner.php:1709
185
+ #: ../head-cleaner.php:1746
186
+ msgid "Priority"
187
+ msgstr "Приоритет"
188
+
189
+ #: ../head-cleaner.php:1744
190
+ msgid "Bottom filters"
191
+ msgstr "Боковые фильтры"
192
+
193
+ #: ../head-cleaner.php:1781
194
+ msgid "Active JavaScripts"
195
+ msgstr "Активировать avaScripts"
196
+
197
+ #: ../head-cleaner.php:1784
198
+ msgid "Move to footer"
199
+ msgstr "Переместить в подвал"
200
+
201
+ #: ../head-cleaner.php:1785
202
+ msgid "JavaScripts"
203
+ msgstr "JavaScript"
204
+
205
+ #: ../head-cleaner.php:1796
206
+ msgid "Update Options"
207
+ msgstr "Обновить настройки"
208
+
209
+ #: ../head-cleaner.php:1801
210
+ msgid "Remove all cache files"
211
+ msgstr "Удалить все кэшированные файлы"
212
+
213
+ #: ../head-cleaner.php:1804
214
+ msgid "All cache files are removed."
215
+ msgstr "Все кэшированные файлы удаленный"
216
+
217
+ #: ../head-cleaner.php:1805
218
+ msgid "Remove All Cache Files"
219
+ msgstr "Удалить все кэшированные файлы"
220
+
221
+ #: ../head-cleaner.php:1810
222
+ msgid "Uninstall"
223
+ msgstr "Дэінстэляваць"
224
+
225
+ #: ../head-cleaner.php:1813
226
+ msgid "All the settings of &quot;Head Cleaner&quot; are deleted."
227
+ msgstr "Все настройки &quot;Head Cleaner&quot; удаленный"
228
+
229
+ #: ../head-cleaner.php:1814
230
+ msgid "Delete Options"
231
+ msgstr "Удалить настройки"
232
+
languages/head-cleaner.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Head Cleaner\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-03-04 18:04+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -10,209 +10,217 @@ msgstr ""
10
  "Content-Type: text/plain; charset=iso-8859-1\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
 
13
- #: ../head-cleaner.php:1504
 
 
 
 
14
  msgid "Head Cleaner"
15
  msgstr ""
16
 
17
- #: ../head-cleaner.php:1513
18
  #: ../includes/common-controller.php:175
19
  msgid "Settings"
20
  msgstr ""
21
 
22
- #: ../head-cleaner.php:1609
23
- #: ../head-cleaner.php:1619
24
- #: ../head-cleaner.php:1629
25
  msgid "Done!"
26
  msgstr ""
27
 
28
- #: ../head-cleaner.php:1641
29
  msgid "Head Cleaner Options"
30
  msgstr ""
31
 
32
- #: ../head-cleaner.php:1649
33
  msgid "CSS and JavaScript are cached on the server."
34
  msgstr ""
35
 
36
- #: ../head-cleaner.php:1653
37
  msgid "Put JavaScripts at the Bottom."
38
  msgstr ""
39
 
40
- #: ../head-cleaner.php:1657
41
  msgid "CSS and JS are dynamically generated."
42
  msgstr ""
43
 
44
- #: ../head-cleaner.php:1665
45
  msgid "Two or more CSS is combined."
46
  msgstr ""
47
 
48
- #: ../head-cleaner.php:1669
49
  msgid "CSS is optimized."
50
  msgstr ""
51
 
52
- #: ../head-cleaner.php:1672
53
  msgid "Default media attribute applied to CSS."
54
  msgstr ""
55
 
56
- #: ../head-cleaner.php:1681
57
  msgid "Two or more JavaScript is combined."
58
  msgstr ""
59
 
60
- #: ../head-cleaner.php:1685
61
  msgid "JavaScript is minified."
62
  msgstr ""
63
 
64
- #: ../head-cleaner.php:1689
65
  msgid "Bottom JavaScript is combined, too."
66
  msgstr ""
67
 
68
- #: ../head-cleaner.php:1696
69
  msgid "gzip compress to CSS and JS."
70
  msgstr ""
71
 
72
- #: ../head-cleaner.php:1708
 
 
 
 
73
  msgid "Add XML Declaration."
74
  msgstr ""
75
 
76
- #: ../head-cleaner.php:1712
77
  msgid "Add canonical tag."
78
  msgstr ""
79
 
80
- #: ../head-cleaner.php:1716
81
  msgid "Remove IE Conditional Tag."
82
  msgstr ""
83
 
84
- #: ../head-cleaner.php:1723
85
  msgid "Remove generator tag."
86
  msgstr ""
87
 
88
- #: ../head-cleaner.php:1727
89
  msgid "Remove RSD link tag."
90
  msgstr ""
91
 
92
- #: ../head-cleaner.php:1731
93
  msgid "Remove wlwmanifest link tag."
94
  msgstr ""
95
 
96
- #: ../head-cleaner.php:1738
97
  msgid "Debug mode"
98
  msgstr ""
99
 
100
- #: ../head-cleaner.php:1751
101
  msgid "The CSS optimization settings"
102
  msgstr ""
103
 
104
- #: ../head-cleaner.php:1753
105
  msgid "Compression (code layout):"
106
  msgstr ""
107
 
108
- #: ../head-cleaner.php:1755
109
  msgid "Highest (no readability, smallest size)"
110
  msgstr ""
111
 
112
- #: ../head-cleaner.php:1756
113
  msgid "High (moderate readability, smaller size)"
114
  msgstr ""
115
 
116
- #: ../head-cleaner.php:1757
117
  msgid "Standard (balance between readability and size)"
118
  msgstr ""
119
 
120
- #: ../head-cleaner.php:1758
121
  msgid "Low (higher readability)"
122
  msgstr ""
123
 
124
- #: ../head-cleaner.php:1761
125
  msgid "Optimise shorthands"
126
  msgstr ""
127
 
128
- #: ../head-cleaner.php:1763
129
  msgid "All optimisations"
130
  msgstr ""
131
 
132
- #: ../head-cleaner.php:1764
133
  msgid "Safe optimisations"
134
  msgstr ""
135
 
136
- #: ../head-cleaner.php:1765
137
  msgid "Don't optimise"
138
  msgstr ""
139
 
140
- #: ../head-cleaner.php:1770
141
  msgid "Compress colors"
142
  msgstr ""
143
 
144
- #: ../head-cleaner.php:1773
145
  msgid "Compress font-weight"
146
  msgstr ""
147
 
148
- #: ../head-cleaner.php:1776
149
  msgid "Remove unnecessary backslashes"
150
  msgstr ""
151
 
152
- #: ../head-cleaner.php:1784
153
  msgid "Active Filters"
154
  msgstr ""
155
 
156
- #: ../head-cleaner.php:1787
157
- #: ../head-cleaner.php:1824
158
  msgid "Off the subject"
159
  msgstr ""
160
 
161
- #: ../head-cleaner.php:1788
162
- #: ../head-cleaner.php:1825
163
  msgid "Remove"
164
  msgstr ""
165
 
166
- #: ../head-cleaner.php:1789
167
  msgid "Head filters"
168
  msgstr ""
169
 
170
- #: ../head-cleaner.php:1791
171
- #: ../head-cleaner.php:1828
172
  msgid "Priority"
173
  msgstr ""
174
 
175
- #: ../head-cleaner.php:1826
176
  msgid "Bottom filters"
177
  msgstr ""
178
 
179
- #: ../head-cleaner.php:1863
180
  msgid "Active JavaScripts"
181
  msgstr ""
182
 
183
- #: ../head-cleaner.php:1866
184
  msgid "Move to footer"
185
  msgstr ""
186
 
187
- #: ../head-cleaner.php:1867
188
  msgid "JavaScripts"
189
  msgstr ""
190
 
191
- #: ../head-cleaner.php:1878
192
  msgid "Update Options"
193
  msgstr ""
194
 
195
- #: ../head-cleaner.php:1883
196
  msgid "Remove all cache files"
197
  msgstr ""
198
 
199
- #: ../head-cleaner.php:1886
200
  msgid "All cache files are removed."
201
  msgstr ""
202
 
203
- #: ../head-cleaner.php:1887
204
  msgid "Remove All Cache Files"
205
  msgstr ""
206
 
207
- #: ../head-cleaner.php:1892
208
  msgid "Uninstall"
209
  msgstr ""
210
 
211
- #: ../head-cleaner.php:1895
212
  msgid "All the settings of &quot;Head Cleaner&quot; are deleted."
213
  msgstr ""
214
 
215
- #: ../head-cleaner.php:1896
216
  msgid "Delete Options"
217
  msgstr ""
218
 
2
  msgstr ""
3
  "Project-Id-Version: Head Cleaner\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-08-26 15:40+0900\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
10
  "Content-Type: text/plain; charset=iso-8859-1\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
 
13
+ # description
14
+ msgid "Cleaning tags from your WordPress header and footer."
15
+ msgstr ""
16
+
17
+ #: ../head-cleaner.php:1420
18
  msgid "Head Cleaner"
19
  msgstr ""
20
 
21
+ #: ../head-cleaner.php:1429
22
  #: ../includes/common-controller.php:175
23
  msgid "Settings"
24
  msgstr ""
25
 
26
+ #: ../head-cleaner.php:1526
27
+ #: ../head-cleaner.php:1536
28
+ #: ../head-cleaner.php:1546
29
  msgid "Done!"
30
  msgstr ""
31
 
32
+ #: ../head-cleaner.php:1558
33
  msgid "Head Cleaner Options"
34
  msgstr ""
35
 
36
+ #: ../head-cleaner.php:1566
37
  msgid "CSS and JavaScript are cached on the server."
38
  msgstr ""
39
 
40
+ #: ../head-cleaner.php:1570
41
  msgid "Put JavaScripts at the Bottom."
42
  msgstr ""
43
 
44
+ #: ../head-cleaner.php:1574
45
  msgid "CSS and JS are dynamically generated."
46
  msgstr ""
47
 
48
+ #: ../head-cleaner.php:1582
49
  msgid "Two or more CSS is combined."
50
  msgstr ""
51
 
52
+ #: ../head-cleaner.php:1586
53
  msgid "CSS is optimized."
54
  msgstr ""
55
 
56
+ #: ../head-cleaner.php:1589
57
  msgid "Default media attribute applied to CSS."
58
  msgstr ""
59
 
60
+ #: ../head-cleaner.php:1598
61
  msgid "Two or more JavaScript is combined."
62
  msgstr ""
63
 
64
+ #: ../head-cleaner.php:1602
65
  msgid "JavaScript is minified."
66
  msgstr ""
67
 
68
+ #: ../head-cleaner.php:1606
69
  msgid "Bottom JavaScript is combined, too."
70
  msgstr ""
71
 
72
+ #: ../head-cleaner.php:1613
73
  msgid "gzip compress to CSS and JS."
74
  msgstr ""
75
 
76
+ #: ../head-cleaner.php:1617
77
+ msgid "Use Google Ajax Libraries."
78
+ msgstr ""
79
+
80
+ #: ../head-cleaner.php:1626
81
  msgid "Add XML Declaration."
82
  msgstr ""
83
 
84
+ #: ../head-cleaner.php:1630
85
  msgid "Add canonical tag."
86
  msgstr ""
87
 
88
+ #: ../head-cleaner.php:1634
89
  msgid "Remove IE Conditional Tag."
90
  msgstr ""
91
 
92
+ #: ../head-cleaner.php:1641
93
  msgid "Remove generator tag."
94
  msgstr ""
95
 
96
+ #: ../head-cleaner.php:1645
97
  msgid "Remove RSD link tag."
98
  msgstr ""
99
 
100
+ #: ../head-cleaner.php:1649
101
  msgid "Remove wlwmanifest link tag."
102
  msgstr ""
103
 
104
+ #: ../head-cleaner.php:1656
105
  msgid "Debug mode"
106
  msgstr ""
107
 
108
+ #: ../head-cleaner.php:1669
109
  msgid "The CSS optimization settings"
110
  msgstr ""
111
 
112
+ #: ../head-cleaner.php:1671
113
  msgid "Compression (code layout):"
114
  msgstr ""
115
 
116
+ #: ../head-cleaner.php:1673
117
  msgid "Highest (no readability, smallest size)"
118
  msgstr ""
119
 
120
+ #: ../head-cleaner.php:1674
121
  msgid "High (moderate readability, smaller size)"
122
  msgstr ""
123
 
124
+ #: ../head-cleaner.php:1675
125
  msgid "Standard (balance between readability and size)"
126
  msgstr ""
127
 
128
+ #: ../head-cleaner.php:1676
129
  msgid "Low (higher readability)"
130
  msgstr ""
131
 
132
+ #: ../head-cleaner.php:1679
133
  msgid "Optimise shorthands"
134
  msgstr ""
135
 
136
+ #: ../head-cleaner.php:1681
137
  msgid "All optimisations"
138
  msgstr ""
139
 
140
+ #: ../head-cleaner.php:1682
141
  msgid "Safe optimisations"
142
  msgstr ""
143
 
144
+ #: ../head-cleaner.php:1683
145
  msgid "Don't optimise"
146
  msgstr ""
147
 
148
+ #: ../head-cleaner.php:1688
149
  msgid "Compress colors"
150
  msgstr ""
151
 
152
+ #: ../head-cleaner.php:1691
153
  msgid "Compress font-weight"
154
  msgstr ""
155
 
156
+ #: ../head-cleaner.php:1694
157
  msgid "Remove unnecessary backslashes"
158
  msgstr ""
159
 
160
+ #: ../head-cleaner.php:1702
161
  msgid "Active Filters"
162
  msgstr ""
163
 
164
+ #: ../head-cleaner.php:1705
165
+ #: ../head-cleaner.php:1742
166
  msgid "Off the subject"
167
  msgstr ""
168
 
169
+ #: ../head-cleaner.php:1706
170
+ #: ../head-cleaner.php:1743
171
  msgid "Remove"
172
  msgstr ""
173
 
174
+ #: ../head-cleaner.php:1707
175
  msgid "Head filters"
176
  msgstr ""
177
 
178
+ #: ../head-cleaner.php:1709
179
+ #: ../head-cleaner.php:1746
180
  msgid "Priority"
181
  msgstr ""
182
 
183
+ #: ../head-cleaner.php:1744
184
  msgid "Bottom filters"
185
  msgstr ""
186
 
187
+ #: ../head-cleaner.php:1781
188
  msgid "Active JavaScripts"
189
  msgstr ""
190
 
191
+ #: ../head-cleaner.php:1784
192
  msgid "Move to footer"
193
  msgstr ""
194
 
195
+ #: ../head-cleaner.php:1785
196
  msgid "JavaScripts"
197
  msgstr ""
198
 
199
+ #: ../head-cleaner.php:1796
200
  msgid "Update Options"
201
  msgstr ""
202
 
203
+ #: ../head-cleaner.php:1801
204
  msgid "Remove all cache files"
205
  msgstr ""
206
 
207
+ #: ../head-cleaner.php:1804
208
  msgid "All cache files are removed."
209
  msgstr ""
210
 
211
+ #: ../head-cleaner.php:1805
212
  msgid "Remove All Cache Files"
213
  msgstr ""
214
 
215
+ #: ../head-cleaner.php:1810
216
  msgid "Uninstall"
217
  msgstr ""
218
 
219
+ #: ../head-cleaner.php:1813
220
  msgid "All the settings of &quot;Head Cleaner&quot; are deleted."
221
  msgstr ""
222
 
223
+ #: ../head-cleaner.php:1814
224
  msgid "Delete Options"
225
  msgstr ""
226
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: wokamoto
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9S8AJCY7XB8F4&lc=JP&item_name=WordPress%20Plugins&item_number=wp%2dplugins&currency_code=JPY&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
4
  Tags: head, header, footer, javascript, css, optimization, minified, performance
5
  Requires at least: 2.5
6
- Tested up to: 2.7.1
7
- Stable tag: 1.2.0
8
 
9
  Cleaning tags from your WordPress header and footer.
10
 
@@ -41,7 +41,8 @@ To speed up the loading of JavaScript and CSS.
41
 
42
  * Belorussian (by) - <a href="http://www.comfi.com/" title="Marcis Gasuns">Marcis Gasuns</a>
43
  * Japanese (ja) - <a href="http://dogmap.jp/" title="Wataru OKAMOTO">Wataru OKAMOTO</a> (plugin author)
44
- * Spanish (es_ES) - <a href="http://tolingo.com/" title="tolingo.com - Franz Hartmann">Franz Hartmann</a>
 
45
 
46
  If you have translated into your language, please let me know.
47
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9S8AJCY7XB8F4&lc=JP&item_name=WordPress%20Plugins&item_number=wp%2dplugins&currency_code=JPY&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
4
  Tags: head, header, footer, javascript, css, optimization, minified, performance
5
  Requires at least: 2.5
6
+ Tested up to: 2.8.4
7
+ Stable tag: 1.3.0
8
 
9
  Cleaning tags from your WordPress header and footer.
10
 
41
 
42
  * Belorussian (by) - <a href="http://www.comfi.com/" title="Marcis Gasuns">Marcis Gasuns</a>
43
  * Japanese (ja) - <a href="http://dogmap.jp/" title="Wataru OKAMOTO">Wataru OKAMOTO</a> (plugin author)
44
+ * Spanish (es) - <a href="http://tolingo.com/" title="tolingo.com - Franz Hartmann">Franz Hartmann</a>
45
+ * Russian (ru) - <a href="http://antsar.info/" title="ilyuha">ilyuha</a>
46
 
47
  If you have translated into your language, please let me know.
48
 
readme_ja.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: wokamoto
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9S8AJCY7XB8F4&lc=JP&item_name=WordPress%20Plugins&item_number=wp%2dplugins&currency_code=JPY&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
4
  Tags: head optimization, javascript, css, optimization, minified, performance
5
  Requires at least: 2.5
6
- Tested up to: 2.7.1
7
- Stable tag: 1.2.0
8
 
9
  Head �� footer �����|�����܂��B
10
 
@@ -39,7 +39,9 @@ WordPress
39
 
40
  * Belorussian (by) - <a href="http://www.comfi.com/" title="Marcis Gasuns" rel="nofollow">Marcis Gasuns</a>
41
  * Japanese (ja) - <a href="http://dogmap.jp/" title="Wataru OKAMOTO">Wataru OKAMOTO</a> (plugin author)
42
- * Spanish (es_ES) - <a href="http://tolingo.com/" title="tolingo.com - Franz Hartmann">Franz Hartmann</a>
 
 
43
 
44
  == Installation ==
45
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9S8AJCY7XB8F4&lc=JP&item_name=WordPress%20Plugins&item_number=wp%2dplugins&currency_code=JPY&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
4
  Tags: head optimization, javascript, css, optimization, minified, performance
5
  Requires at least: 2.5
6
+ Tested up to: 2.8.4
7
+ Stable tag: 1.3.0
8
 
9
  Head �� footer �����|�����܂��B
10
 
39
 
40
  * Belorussian (by) - <a href="http://www.comfi.com/" title="Marcis Gasuns" rel="nofollow">Marcis Gasuns</a>
41
  * Japanese (ja) - <a href="http://dogmap.jp/" title="Wataru OKAMOTO">Wataru OKAMOTO</a> (plugin author)
42
+ * Spanish (es) - <a href="http://tolingo.com/" title="tolingo.com - Franz Hartmann">Franz Hartmann</a>
43
+ * Russian (ru) - <a href="http://antsar.info/" title="ilyuha">ilyuha</a>
44
+
45
 
46
  == Installation ==
47