Version Description
- Security Fixes
- Fixed some issues with Pretty Link running in WordPress Multisite
- Altered the way Keyword Replacements can be disabled on individual pages in Pro
- Fixed an issue with import feature in Pro
- Fixed an issue causing "ghost" update messages in Pro
- Updated browscap file for more accurate click tracking
- Fixed an issue that interfered with Pretty Link's option saving for some users
Download this release
Release Info
Developer | supercleanse |
Plugin | ![]() |
Version | 1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6.0 to 1.6.1
- classes/models/PrliUpdate.php +24 -32
- classes/views/prli-clicks/list.php +1 -1
- classes/views/prli-groups/list.php +1 -1
- classes/views/prli-links/list.php +1 -1
- i18n/pretty-link.pot +91 -70
- includes/php/php_browsecap.ini +17081 -9489
- pretty-link.php +1 -1
- readme.txt +13 -1
classes/models/PrliUpdate.php
CHANGED
@@ -251,6 +251,20 @@ class PrliUpdate
|
|
251 |
|
252 |
return $client->getResponse();
|
253 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
|
255 |
public function get_current_version()
|
256 |
{
|
@@ -264,39 +278,17 @@ class PrliUpdate
|
|
264 |
return $client->getResponse();
|
265 |
}
|
266 |
|
267 |
-
public function queue_update($transient, $force=false)
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
if(!$this->pro_is_installed())
|
273 |
-
$force=true;
|
274 |
|
275 |
-
$
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
{
|
280 |
-
$download_url = $this->get_download_url($curr_version);
|
281 |
-
|
282 |
-
if(!empty($download_url) and $download_url and $this->user_allowed_to_download())
|
283 |
-
{
|
284 |
-
if(isset($transient->response[$this->plugin_name]))
|
285 |
-
unset($transient->response[$this->plugin_name]);
|
286 |
-
|
287 |
-
$transient->response[$this->plugin_name] = new stdClass();
|
288 |
-
$transient->response[$this->plugin_name]->id = '0';
|
289 |
-
$transient->response[$this->plugin_name]->slug = $this->plugin_slug;
|
290 |
-
$transient->response[$this->plugin_name]->new_version = $curr_version;
|
291 |
-
$transient->response[$this->plugin_name]->url = $this->plugin_url;
|
292 |
-
$transient->response[$this->plugin_name]->package = $download_url;
|
293 |
-
}
|
294 |
-
}
|
295 |
-
else
|
296 |
-
{
|
297 |
-
if(isset($transient->response[$this->plugin_name]))
|
298 |
-
unset($transient->response[$this->plugin_name]);
|
299 |
-
}
|
300 |
}
|
301 |
|
302 |
return $transient;
|
251 |
|
252 |
return $client->getResponse();
|
253 |
}
|
254 |
+
|
255 |
+
public function get_current_info($version, $force=false)
|
256 |
+
{
|
257 |
+
include_once( ABSPATH . 'wp-includes/class-IXR.php' );
|
258 |
+
|
259 |
+
$client = new IXR_Client( $this->pro_mothership_xmlrpc_url );
|
260 |
+
|
261 |
+
$force = ($force ? 'true' : 'false');
|
262 |
+
|
263 |
+
if( !$client->query( 'proplug.get_current_info', $this->pro_username, $this->pro_password, $version, $force ) )
|
264 |
+
return false;
|
265 |
+
|
266 |
+
return $client->getResponse();
|
267 |
+
}
|
268 |
|
269 |
public function get_current_version()
|
270 |
{
|
278 |
return $client->getResponse();
|
279 |
}
|
280 |
|
281 |
+
public function queue_update($transient, $force=false) {
|
282 |
+
if( empty( $transient->checked ) )
|
283 |
+
return $transient;
|
284 |
+
|
285 |
+
if( $this->pro_is_authorized() ) {
|
286 |
+
if( !$this->pro_is_installed() ) { $force = true; }
|
|
|
287 |
|
288 |
+
$update = $this->get_current_info( $transient->checked[ $this->plugin_name ], $force );
|
289 |
+
|
290 |
+
if( $update and !empty( $update ) )
|
291 |
+
$transient->response[ $this->plugin_name ] = (object) $update;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
}
|
293 |
|
294 |
return $transient;
|
classes/views/prli-clicks/list.php
CHANGED
@@ -59,7 +59,7 @@
|
|
59 |
|
60 |
<input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
|
61 |
<input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
|
62 |
-
<input type="text" name="search" id="search" value="<?php echo $search_str; ?>" style="display:inline;"/>
|
63 |
<div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search Hits"/>
|
64 |
<?php
|
65 |
if(!empty($search_str))
|
59 |
|
60 |
<input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
|
61 |
<input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
|
62 |
+
<input type="text" name="search" id="search" value="<?php echo esc_attr($search_str); ?>" style="display:inline;"/>
|
63 |
<div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search Hits"/>
|
64 |
<?php
|
65 |
if(!empty($search_str))
|
classes/views/prli-groups/list.php
CHANGED
@@ -13,7 +13,7 @@ if(!defined('ABSPATH'))
|
|
13 |
<?php wp_nonce_field('prli-groups'); ?>
|
14 |
<input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
|
15 |
<input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
|
16 |
-
<input type="text" name="search" id="search" value="<?php echo $search_str; ?>" style="display:inline;"/>
|
17 |
<div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search"/>
|
18 |
<?php
|
19 |
if(!empty($search_str))
|
13 |
<?php wp_nonce_field('prli-groups'); ?>
|
14 |
<input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
|
15 |
<input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
|
16 |
+
<input type="text" name="search" id="search" value="<?php echo esc_attr($search_str); ?>" style="display:inline;"/>
|
17 |
<div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search"/>
|
18 |
<?php
|
19 |
if(!empty($search_str))
|
classes/views/prli-links/list.php
CHANGED
@@ -26,7 +26,7 @@ if(!defined('ABSPATH'))
|
|
26 |
<?php wp_nonce_field('prli-links'); ?>
|
27 |
<input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
|
28 |
<input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
|
29 |
-
<input type="text" name="search" id="search" value="<?php echo $search_str; ?>" style="display:inline;"/>
|
30 |
<div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search"/>
|
31 |
<?php
|
32 |
if(!empty($search_str))
|
26 |
<?php wp_nonce_field('prli-links'); ?>
|
27 |
<input type="hidden" name="sort" id="sort" value="<?php echo $sort_str; ?>" />
|
28 |
<input type="hidden" name="sdir" id="sort" value="<?php echo $sdir_str; ?>" />
|
29 |
+
<input type="text" name="search" id="search" value="<?php echo esc_attr($search_str); ?>" style="display:inline;"/>
|
30 |
<div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Search"/>
|
31 |
<?php
|
32 |
if(!empty($search_str))
|
i18n/pretty-link.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Pretty Link Lite package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Pretty Link Lite 1.6.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/pretty-link\n"
|
7 |
-
"POT-Creation-Date: 2012-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -639,178 +639,178 @@ msgstr ""
|
|
639 |
msgid "Unauthorized"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: pro/pretty-link-pro.php:
|
643 |
msgid "Delay Redirect must be a number"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: pro/pretty-link-pro.php:
|
647 |
msgid "This Link Has additional Target URL rotations"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: pro/pretty-link-pro.php:
|
651 |
msgid "Alternate Pretty Bar Attribution URL:"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: pro/pretty-link-pro.php:
|
655 |
msgid "End-Point URL:"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: pro/pretty-link-pro.php:
|
659 |
msgid "This can be used to integrate with your twitter client."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: pro/pretty-link-pro.php:
|
663 |
msgid "Show TweetDeck Integration Instructions"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: pro/pretty-link-pro.php:
|
667 |
msgid "Follow the"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: pro/pretty-link-pro.php:
|
671 |
msgid "TweetDeck Custom URL Instructions"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: pro/pretty-link-pro.php:
|
675 |
msgid " and add the following URL to TweetDeck"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: pro/pretty-link-pro.php:
|
679 |
msgid "Show Twitter for iPhone Integration Instructions"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: pro/pretty-link-pro.php:
|
683 |
msgid "Twitter for iPhone Custom URL Instructions"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: pro/pretty-link-pro.php:
|
687 |
msgid " and add the following URL to Twitter for iPhone"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: pro/pretty-link-pro.php:
|
691 |
msgid "Label:"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: pro/pretty-link-pro.php:
|
695 |
msgid "Redirection:"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: pro/pretty-link-pro.php:
|
699 |
msgid "Tracking Enabled:"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: pro/pretty-link-pro.php:
|
703 |
msgid "Group:"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: pro/pretty-link-pro.php:
|
707 |
msgid "There was an error saving your Twitter account."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: pro/pretty-link-pro.php:
|
711 |
msgid "Your Twitter Account was successfully saved."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: pro/pretty-link-pro.php:
|
715 |
msgid "Pretty Bar"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: pro/pretty-link-pro.php:
|
719 |
msgid "Cloaked"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: pro/pretty-link-pro.php:
|
723 |
msgid "Pixel"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: pro/pretty-link-pro.php:
|
727 |
msgid "Meta Refresh"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: pro/pretty-link-pro.php:
|
731 |
msgid "Javascript"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: pro/pretty-link-pro.php:
|
735 |
msgid "Cloak"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: pro/pretty-link-pro.php:
|
739 |
msgid "Image URL:"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: pro/pretty-link-pro.php:
|
743 |
msgid ""
|
744 |
"If set, this will replace the logo image on the PrettyBar. The image that "
|
745 |
"this URL references should be 48x48 Pixels to fit."
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: pro/pretty-link-pro.php:
|
749 |
msgid "Background Image URL:"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: pro/pretty-link-pro.php:
|
753 |
msgid ""
|
754 |
"If set, this will replace the background image on PrettyBar. The image that "
|
755 |
"this URL references should be 65px tall - this image will be repeated "
|
756 |
"horizontally across the bar."
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: pro/pretty-link-pro.php:
|
760 |
msgid "Background Color:"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: pro/pretty-link-pro.php:
|
764 |
msgid ""
|
765 |
"This will alter the background color of the PrettyBar if you haven't "
|
766 |
"specified a PrettyBar background image."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: pro/pretty-link-pro.php:
|
770 |
msgid "Text Color:"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: pro/pretty-link-pro.php:
|
774 |
msgid ""
|
775 |
"If not set, this defaults to black (RGB value <code>#000000</code>) but you "
|
776 |
"can change it to whatever color you like."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: pro/pretty-link-pro.php:
|
780 |
msgid "Link Color:"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: pro/pretty-link-pro.php:
|
784 |
msgid ""
|
785 |
"If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
|
786 |
"can change it to whatever color you like."
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: pro/pretty-link-pro.php:
|
790 |
msgid "Link Hover Color:"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: pro/pretty-link-pro.php:
|
794 |
msgid ""
|
795 |
"If not set, this defaults to RGB value <code>#ababab</code> but you can "
|
796 |
"change it to whatever color you like."
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: pro/pretty-link-pro.php:
|
800 |
msgid "Visited Link Color:"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: pro/pretty-link-pro.php:
|
804 |
msgid ""
|
805 |
"If not set, this defaults to RGB value <code>#551a8b</code> but you can "
|
806 |
"change it to whatever color you like."
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: pro/pretty-link-pro.php:
|
810 |
msgid "Title Char Limit*:"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: pro/pretty-link-pro.php:
|
814 |
msgid ""
|
815 |
"If your Website has a long title then you may need to adjust this value so "
|
816 |
"that it will all fit on the PrettyBar. It is recommended that you keep this "
|
@@ -818,11 +818,11 @@ msgid ""
|
|
818 |
"good across different browsers and screen resolutions."
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: pro/pretty-link-pro.php:
|
822 |
msgid "Description Char Limit*:"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: pro/pretty-link-pro.php:
|
826 |
msgid ""
|
827 |
"If your Website has a long Description (tagline) then you may need to adjust "
|
828 |
"this value so that it will all fit on the PrettyBar. It is recommended that "
|
@@ -830,118 +830,118 @@ msgid ""
|
|
830 |
"format looks good across different browsers and screen resolutions."
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: pro/pretty-link-pro.php:
|
834 |
msgid "Target URL Char Limit*:"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: pro/pretty-link-pro.php:
|
838 |
msgid ""
|
839 |
"If you link to a lot of large Target URLs you may want to adjust this value. "
|
840 |
"It is recommended that you keep this value to <code>40</code> or below so "
|
841 |
"the PrettyBar's format looks good across different browsers and URL sizes"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: pro/pretty-link-pro.php:
|
845 |
msgid "Show Pretty Bar Title"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: pro/pretty-link-pro.php:
|
849 |
msgid ""
|
850 |
"Make sure this is checked if you want the title of your blog (and link) to "
|
851 |
"show up on the PrettyBar."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: pro/pretty-link-pro.php:
|
855 |
msgid "Show Pretty Bar Description"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: pro/pretty-link-pro.php:
|
859 |
msgid ""
|
860 |
"Make sure this is checked if you want your site description to show up on "
|
861 |
"the PrettyBar."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: pro/pretty-link-pro.php:
|
865 |
msgid "Show Pretty Bar Share Links"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: pro/pretty-link-pro.php:
|
869 |
msgid ""
|
870 |
"Make sure this is checked if you want \"share links\" to show up on the "
|
871 |
"PrettyBar."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: pro/pretty-link-pro.php:
|
875 |
msgid "Show Pretty Bar Target URL"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: pro/pretty-link-pro.php:
|
879 |
msgid ""
|
880 |
"Make sure this is checked if you want a link displaying the Target URL to "
|
881 |
"show up on the PrettyBar."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: pro/pretty-link-pro.php:
|
885 |
msgid "Logo Image URL must be a correctly formatted URL"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: pro/pretty-link-pro.php:
|
889 |
msgid "Background Image URL must be a correctly formatted URL"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: pro/pretty-link-pro.php:
|
893 |
msgid "PrettyBar Background Color must be an actual RGB Value"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: pro/pretty-link-pro.php:
|
897 |
msgid "PrettyBar Text Color must be an actual RGB Value"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: pro/pretty-link-pro.php:
|
901 |
msgid "PrettyBar Link Color must be an actual RGB Value"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: pro/pretty-link-pro.php:
|
905 |
msgid "PrettyBar Hover Color must be an actual RGB Value"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: pro/pretty-link-pro.php:
|
909 |
msgid "PrettyBar Title Character Limit must not be blank"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: pro/pretty-link-pro.php:
|
913 |
msgid "PrettyBar Description Character Limit must not be blank"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: pro/pretty-link-pro.php:
|
917 |
msgid "PrettyBar Link Character Limit must not be blank"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: pro/pretty-link-pro.php:
|
921 |
msgid "PrettyBar Title Character Limit must be a number"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: pro/pretty-link-pro.php:
|
925 |
msgid "PrettyBar Description Character Limit must be a number"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: pro/pretty-link-pro.php:
|
929 |
msgid "PrettyBar Link Character Limit must be a number"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: pro/pretty-link-pro.php:
|
933 |
msgid "You are unauthorized to view this resource"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: pro/pretty-link-pro.php:
|
937 |
msgid "View QR Code for this link: %s"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: pro/pretty-link-pro.php:
|
941 |
msgid "Download QR Code for this link: %s"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: pro/pretty-link-pro.php:
|
945 |
msgid "Double Redirection Enabled"
|
946 |
msgstr ""
|
947 |
|
@@ -1117,6 +1117,27 @@ msgstr ""
|
|
1117 |
msgid "Add Link Report"
|
1118 |
msgstr ""
|
1119 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1120 |
#: pro/classes/views/prli-reports/list.php:7
|
1121 |
msgid "Link Reports"
|
1122 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Pretty Link Lite package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Pretty Link Lite 1.6.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/pretty-link\n"
|
7 |
+
"POT-Creation-Date: 2012-11-07 05:44:16+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
639 |
msgid "Unauthorized"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: pro/pretty-link-pro.php:907
|
643 |
msgid "Delay Redirect must be a number"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: pro/pretty-link-pro.php:970
|
647 |
msgid "This Link Has additional Target URL rotations"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: pro/pretty-link-pro.php:1368
|
651 |
msgid "Alternate Pretty Bar Attribution URL:"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: pro/pretty-link-pro.php:1460
|
655 |
msgid "End-Point URL:"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: pro/pretty-link-pro.php:1461
|
659 |
msgid "This can be used to integrate with your twitter client."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: pro/pretty-link-pro.php:1464
|
663 |
msgid "Show TweetDeck Integration Instructions"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: pro/pretty-link-pro.php:1466 pro/pretty-link-pro.php:1472
|
667 |
msgid "Follow the"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: pro/pretty-link-pro.php:1466
|
671 |
msgid "TweetDeck Custom URL Instructions"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: pro/pretty-link-pro.php:1466
|
675 |
msgid " and add the following URL to TweetDeck"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: pro/pretty-link-pro.php:1470
|
679 |
msgid "Show Twitter for iPhone Integration Instructions"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: pro/pretty-link-pro.php:1472
|
683 |
msgid "Twitter for iPhone Custom URL Instructions"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: pro/pretty-link-pro.php:1472
|
687 |
msgid " and add the following URL to Twitter for iPhone"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: pro/pretty-link-pro.php:1482
|
691 |
msgid "Label:"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: pro/pretty-link-pro.php:1487 pro/prlipro-create-public-link-widget.php:46
|
695 |
msgid "Redirection:"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: pro/pretty-link-pro.php:1498 pro/prlipro-create-public-link-widget.php:57
|
699 |
msgid "Tracking Enabled:"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: pro/pretty-link-pro.php:1507 pro/prlipro-create-public-link-widget.php:66
|
703 |
msgid "Group:"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: pro/pretty-link-pro.php:1613 pro/pretty-link-pro.php:1653
|
707 |
msgid "There was an error saving your Twitter account."
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: pro/pretty-link-pro.php:1649
|
711 |
msgid "Your Twitter Account was successfully saved."
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: pro/pretty-link-pro.php:1667 pro/pretty-link-pro.php:1745
|
715 |
msgid "Pretty Bar"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: pro/pretty-link-pro.php:1668
|
719 |
msgid "Cloaked"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: pro/pretty-link-pro.php:1669 pro/pretty-link-pro.php:1747
|
723 |
msgid "Pixel"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: pro/pretty-link-pro.php:1670 pro/pretty-link-pro.php:1748
|
727 |
msgid "Meta Refresh"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: pro/pretty-link-pro.php:1671 pro/pretty-link-pro.php:1749
|
731 |
msgid "Javascript"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: pro/pretty-link-pro.php:1746
|
735 |
msgid "Cloak"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: pro/pretty-link-pro.php:1777
|
739 |
msgid "Image URL:"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: pro/pretty-link-pro.php:1780
|
743 |
msgid ""
|
744 |
"If set, this will replace the logo image on the PrettyBar. The image that "
|
745 |
"this URL references should be 48x48 Pixels to fit."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: pro/pretty-link-pro.php:1784
|
749 |
msgid "Background Image URL:"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: pro/pretty-link-pro.php:1787
|
753 |
msgid ""
|
754 |
"If set, this will replace the background image on PrettyBar. The image that "
|
755 |
"this URL references should be 65px tall - this image will be repeated "
|
756 |
"horizontally across the bar."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: pro/pretty-link-pro.php:1791
|
760 |
msgid "Background Color:"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: pro/pretty-link-pro.php:1794
|
764 |
msgid ""
|
765 |
"This will alter the background color of the PrettyBar if you haven't "
|
766 |
"specified a PrettyBar background image."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: pro/pretty-link-pro.php:1798
|
770 |
msgid "Text Color:"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: pro/pretty-link-pro.php:1801
|
774 |
msgid ""
|
775 |
"If not set, this defaults to black (RGB value <code>#000000</code>) but you "
|
776 |
"can change it to whatever color you like."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: pro/pretty-link-pro.php:1805
|
780 |
msgid "Link Color:"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: pro/pretty-link-pro.php:1808
|
784 |
msgid ""
|
785 |
"If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
|
786 |
"can change it to whatever color you like."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: pro/pretty-link-pro.php:1812
|
790 |
msgid "Link Hover Color:"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: pro/pretty-link-pro.php:1815
|
794 |
msgid ""
|
795 |
"If not set, this defaults to RGB value <code>#ababab</code> but you can "
|
796 |
"change it to whatever color you like."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: pro/pretty-link-pro.php:1819
|
800 |
msgid "Visited Link Color:"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: pro/pretty-link-pro.php:1822
|
804 |
msgid ""
|
805 |
"If not set, this defaults to RGB value <code>#551a8b</code> but you can "
|
806 |
"change it to whatever color you like."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: pro/pretty-link-pro.php:1826
|
810 |
msgid "Title Char Limit*:"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: pro/pretty-link-pro.php:1829
|
814 |
msgid ""
|
815 |
"If your Website has a long title then you may need to adjust this value so "
|
816 |
"that it will all fit on the PrettyBar. It is recommended that you keep this "
|
818 |
"good across different browsers and screen resolutions."
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: pro/pretty-link-pro.php:1833
|
822 |
msgid "Description Char Limit*:"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: pro/pretty-link-pro.php:1836
|
826 |
msgid ""
|
827 |
"If your Website has a long Description (tagline) then you may need to adjust "
|
828 |
"this value so that it will all fit on the PrettyBar. It is recommended that "
|
830 |
"format looks good across different browsers and screen resolutions."
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: pro/pretty-link-pro.php:1840
|
834 |
msgid "Target URL Char Limit*:"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: pro/pretty-link-pro.php:1843
|
838 |
msgid ""
|
839 |
"If you link to a lot of large Target URLs you may want to adjust this value. "
|
840 |
"It is recommended that you keep this value to <code>40</code> or below so "
|
841 |
"the PrettyBar's format looks good across different browsers and URL sizes"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: pro/pretty-link-pro.php:1848
|
845 |
msgid "Show Pretty Bar Title"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: pro/pretty-link-pro.php:1849
|
849 |
msgid ""
|
850 |
"Make sure this is checked if you want the title of your blog (and link) to "
|
851 |
"show up on the PrettyBar."
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: pro/pretty-link-pro.php:1854
|
855 |
msgid "Show Pretty Bar Description"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: pro/pretty-link-pro.php:1855
|
859 |
msgid ""
|
860 |
"Make sure this is checked if you want your site description to show up on "
|
861 |
"the PrettyBar."
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: pro/pretty-link-pro.php:1860
|
865 |
msgid "Show Pretty Bar Share Links"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: pro/pretty-link-pro.php:1861
|
869 |
msgid ""
|
870 |
"Make sure this is checked if you want \"share links\" to show up on the "
|
871 |
"PrettyBar."
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: pro/pretty-link-pro.php:1866
|
875 |
msgid "Show Pretty Bar Target URL"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: pro/pretty-link-pro.php:1867
|
879 |
msgid ""
|
880 |
"Make sure this is checked if you want a link displaying the Target URL to "
|
881 |
"show up on the PrettyBar."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: pro/pretty-link-pro.php:1897
|
885 |
msgid "Logo Image URL must be a correctly formatted URL"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: pro/pretty-link-pro.php:1900
|
889 |
msgid "Background Image URL must be a correctly formatted URL"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: pro/pretty-link-pro.php:1903
|
893 |
msgid "PrettyBar Background Color must be an actual RGB Value"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: pro/pretty-link-pro.php:1906
|
897 |
msgid "PrettyBar Text Color must be an actual RGB Value"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: pro/pretty-link-pro.php:1909
|
901 |
msgid "PrettyBar Link Color must be an actual RGB Value"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: pro/pretty-link-pro.php:1912 pro/pretty-link-pro.php:1915
|
905 |
msgid "PrettyBar Hover Color must be an actual RGB Value"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: pro/pretty-link-pro.php:1918
|
909 |
msgid "PrettyBar Title Character Limit must not be blank"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: pro/pretty-link-pro.php:1921
|
913 |
msgid "PrettyBar Description Character Limit must not be blank"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: pro/pretty-link-pro.php:1924
|
917 |
msgid "PrettyBar Link Character Limit must not be blank"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: pro/pretty-link-pro.php:1927
|
921 |
msgid "PrettyBar Title Character Limit must be a number"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: pro/pretty-link-pro.php:1930
|
925 |
msgid "PrettyBar Description Character Limit must be a number"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: pro/pretty-link-pro.php:1933
|
929 |
msgid "PrettyBar Link Character Limit must be a number"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: pro/pretty-link-pro.php:2056
|
933 |
msgid "You are unauthorized to view this resource"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: pro/pretty-link-pro.php:2086
|
937 |
msgid "View QR Code for this link: %s"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: pro/pretty-link-pro.php:2094
|
941 |
msgid "Download QR Code for this link: %s"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: pro/pretty-link-pro.php:2187
|
945 |
msgid "Double Redirection Enabled"
|
946 |
msgstr ""
|
947 |
|
1117 |
msgid "Add Link Report"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: pro/classes/views/prli-reports/new.php:20
|
1121 |
+
msgid "Name*:"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: pro/classes/views/prli-reports/new.php:22
|
1125 |
+
#: pro/classes/views/prli-reports/edit.php:22
|
1126 |
+
msgid "This is how you'll identify your Report."
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: pro/classes/views/prli-reports/new.php:86
|
1130 |
+
#: pro/classes/views/prli-reports/edit.php:86
|
1131 |
+
msgid "Select some links to be analyzed in this report."
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: pro/classes/views/prli-reports/new.php:111
|
1135 |
+
#: pro/classes/views/prli-reports/edit.php:111
|
1136 |
+
msgid ""
|
1137 |
+
"If you want to enable conversion tracking in this report then select a goal "
|
1138 |
+
"link."
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
#: pro/classes/views/prli-reports/list.php:7
|
1142 |
msgid "Link Reports"
|
1143 |
msgstr ""
|
includes/php/php_browsecap.ini
CHANGED
@@ -1,18 +1,28 @@
|
|
1 |
-
;;; Provided courtesy of
|
2 |
-
;;; Created on
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
[GJK_Browscap_Version]
|
5 |
-
Version=
|
6 |
-
Released=
|
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
|
@@ -23,26 +33,24 @@ IFrames=false
|
|
23 |
Tables=false
|
24 |
Cookies=false
|
25 |
BackgroundSounds=false
|
26 |
-
|
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 |
-
|
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 |
|
@@ -58,12 +66,46 @@ Browser="AskJeeves"
|
|
58 |
|
59 |
[Baidu]
|
60 |
Parent=DefaultProperties
|
|
|
61 |
Browser="Baidu"
|
62 |
Frames=true
|
|
|
63 |
Tables=true
|
64 |
Crawler=true
|
65 |
|
66 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
Parent=Baidu
|
68 |
Browser="AC-BaiduBot"
|
69 |
|
@@ -71,66 +113,88 @@ Browser="AC-BaiduBot"
|
|
71 |
Parent=Baidu
|
72 |
Browser="BaiduImageSpider"
|
73 |
|
74 |
-
[Baiduspider
|
75 |
Parent=Baidu
|
76 |
-
Browser="
|
|
|
|
|
|
|
77 |
|
78 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google
|
79 |
|
80 |
[Google]
|
81 |
Parent=DefaultProperties
|
|
|
82 |
Browser="Google"
|
83 |
Frames=true
|
84 |
IFrames=true
|
85 |
Tables=true
|
86 |
-
JavaScript=true
|
87 |
Crawler=true
|
88 |
|
89 |
-
[*
|
|
|
|
|
|
|
|
|
90 |
Parent=Google
|
91 |
Browser="Googlebot-Mobile"
|
92 |
Frames=false
|
93 |
IFrames=false
|
94 |
Tables=false
|
95 |
|
96 |
-
[*
|
97 |
Parent=Google
|
98 |
-
Browser="
|
|
|
|
|
|
|
99 |
|
100 |
-
[AdsBot-Google
|
101 |
Parent=Google
|
102 |
Browser="AdsBot-Google"
|
103 |
|
104 |
-
[
|
105 |
Parent=Google
|
106 |
-
Browser="
|
107 |
-
|
108 |
-
|
|
|
|
|
109 |
|
110 |
-
[Feedfetcher-Google
|
111 |
Parent=Google
|
112 |
Browser="Feedfetcher-Google"
|
113 |
-
isBanned=true
|
114 |
isSyndicationReader=true
|
115 |
|
116 |
-
[Google
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
Parent=Google
|
118 |
Browser="Google OpenSocial"
|
119 |
|
120 |
-
[Google-Site-Verification
|
121 |
Parent=Google
|
122 |
-
Browser="Google-Site-Verification"
|
|
|
|
|
|
|
123 |
|
124 |
-
[Google-Sitemaps
|
125 |
Parent=Google
|
126 |
Browser="Google-Sitemaps"
|
127 |
|
128 |
-
[Googlebot-Image
|
129 |
Parent=Google
|
130 |
Browser="Googlebot-Image"
|
131 |
-
CDF=true
|
132 |
|
133 |
-
[Googlebot-News
|
134 |
Parent=Google
|
135 |
Browser="Googlebot-News"
|
136 |
|
@@ -138,276 +202,46 @@ Browser="Googlebot-News"
|
|
138 |
Parent=Google
|
139 |
Browser="googlebot-urlconsole"
|
140 |
|
141 |
-
[Googlebot-Video
|
142 |
Parent=Google
|
143 |
Browser="Google-Video"
|
144 |
|
145 |
-
[Googlebot/2.1 (?http://www.google.com/bot.html)]
|
146 |
-
Parent=Google
|
147 |
-
Browser="Googlebot"
|
148 |
-
|
149 |
-
[Googlebot/2.1 (?http://www.googlebot.com/bot.html)]
|
150 |
-
Parent=Google
|
151 |
-
Browser="Googlebot"
|
152 |
-
|
153 |
[Googlebot/Test*]
|
154 |
Parent=Google
|
155 |
Browser="Googlebot/Test"
|
156 |
|
157 |
-
[GoogleFriendConnect
|
158 |
Parent=Google
|
159 |
Browser="Google Friend Connect"
|
160 |
|
161 |
[gsa-crawler*]
|
162 |
Parent=Google
|
163 |
Browser="Google Search Appliance"
|
164 |
-
isBanned=true
|
165 |
|
166 |
[Mediapartners-Google*]
|
167 |
Parent=Google
|
168 |
Browser="Mediapartners-Google"
|
169 |
|
170 |
-
[Mozilla
|
171 |
Parent=Google
|
172 |
-
Browser="Google
|
173 |
|
174 |
-
[Mozilla/5.0 (
|
175 |
Parent=Google
|
176 |
-
Browser="Google
|
177 |
|
178 |
-
[Mozilla/5.0 (
|
179 |
Parent=Google
|
180 |
-
Browser="Google
|
181 |
-
|
182 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Inktomi
|
183 |
-
|
184 |
-
[Inktomi]
|
185 |
-
Parent=DefaultProperties
|
186 |
-
Browser="Inktomi"
|
187 |
-
Frames=true
|
188 |
-
Tables=true
|
189 |
-
Crawler=true
|
190 |
-
|
191 |
-
[* (compatible;YahooSeeker/M1A1-R2D2; *)]
|
192 |
-
Parent=Inktomi
|
193 |
-
Browser="YahooSeeker-Mobile"
|
194 |
-
Frames=false
|
195 |
-
Tables=false
|
196 |
-
|
197 |
-
[Mozilla/4.0]
|
198 |
-
Parent=Inktomi
|
199 |
-
|
200 |
-
[Mozilla/4.0 (compatible; MSIE 5.0; Windows NT)]
|
201 |
-
Parent=Inktomi
|
202 |
-
Win32=true
|
203 |
-
|
204 |
-
[Mozilla/4.0 (compatible; Yahoo Japan; for robot study; kasugiya)]
|
205 |
-
Parent=Inktomi
|
206 |
-
Browser="Yahoo! RobotStudy"
|
207 |
-
isBanned=true
|
208 |
-
|
209 |
-
[Mozilla/5.0 (compatible; BMC/1.0 (Y!J-AGENT))]
|
210 |
-
Parent=Inktomi
|
211 |
-
Browser="Y!J-AGENT/BMC"
|
212 |
-
|
213 |
-
[Mozilla/5.0 (compatible; BMF/1.0 (Y!J-AGENT))]
|
214 |
-
Parent=Inktomi
|
215 |
-
Browser="Y!J-AGENT/BMF"
|
216 |
-
|
217 |
-
[Mozilla/5.0 (compatible; BMI/1.0 (Y!J-AGENT; 1.0))]
|
218 |
-
Parent=Inktomi
|
219 |
-
Browser="Y!J-AGENT/BMI"
|
220 |
-
|
221 |
-
[Mozilla/5.0 (compatible; Yahoo! DE Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
|
222 |
-
Parent=Inktomi
|
223 |
-
Browser="Yahoo! Directory Engine"
|
224 |
-
|
225 |
-
[Mozilla/5.0 (compatible; Yahoo! SearchMonkey 1.0; *)]
|
226 |
-
Parent=Inktomi
|
227 |
-
Browser="Yahoo! Search Monkey"
|
228 |
-
|
229 |
-
[Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)]
|
230 |
-
Parent=Inktomi
|
231 |
-
Browser="Yahoo! Slurp China"
|
232 |
-
|
233 |
-
[Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)]
|
234 |
-
Parent=Inktomi
|
235 |
-
Browser="Yahoo! Slurp"
|
236 |
-
Version=3.0
|
237 |
-
MajorVer=3
|
238 |
-
MinorVer=0
|
239 |
-
|
240 |
-
[Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
|
241 |
-
Parent=Inktomi
|
242 |
-
Browser="Yahoo! Slurp"
|
243 |
-
|
244 |
-
[Mozilla/5.0 (compatible; Yahoo! Verifier/1.1)]
|
245 |
-
Parent=Inktomi
|
246 |
-
Browser="Yahoo! Verifier"
|
247 |
-
Version=1.1
|
248 |
-
MajorVer=1
|
249 |
-
MinorVer=1
|
250 |
-
|
251 |
-
[Mozilla/5.0 (Slurp/cat; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
|
252 |
-
Parent=Inktomi
|
253 |
-
Browser="Slurp/cat"
|
254 |
-
|
255 |
-
[Mozilla/5.0 (Slurp/si; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
|
256 |
-
Parent=Inktomi
|
257 |
-
|
258 |
-
[Mozilla/5.0 (Yahoo-MMCrawler/4.0; mailto:vertical-crawl-support@yahoo-inc.com)]
|
259 |
-
Parent=Inktomi
|
260 |
-
Browser="Yahoo-MMCrawler"
|
261 |
-
Version=4.0
|
262 |
-
MajorVer=4
|
263 |
-
MinorVer=0
|
264 |
-
|
265 |
-
[Scooter/*]
|
266 |
-
Parent=Inktomi
|
267 |
-
Browser="Scooter"
|
268 |
-
|
269 |
-
[Scooter/3.3Y!CrawlX]
|
270 |
-
Parent=Inktomi
|
271 |
-
Browser="Scooter/3.3Y!CrawlX"
|
272 |
-
Version=3.3
|
273 |
-
MajorVer=3
|
274 |
-
MinorVer=3
|
275 |
-
|
276 |
-
[slurp]
|
277 |
-
Parent=Inktomi
|
278 |
-
Browser="slurp"
|
279 |
-
|
280 |
-
[Y!J SearchMonkey/1.0*]
|
281 |
-
Parent=Inktomi
|
282 |
-
Browser="YahooFeedSeeker"
|
283 |
-
isSyndicationReader=true
|
284 |
-
|
285 |
-
[Y!J-BRE*]
|
286 |
-
Parent=Inktomi
|
287 |
-
Browser="YahooFeedSeeker"
|
288 |
-
isSyndicationReader=true
|
289 |
-
|
290 |
-
[Y!J-BRG/GSC*]
|
291 |
-
Parent=Inktomi
|
292 |
-
Browser="YahooFeedSeeker"
|
293 |
-
isSyndicationReader=true
|
294 |
-
|
295 |
-
[Y!J-BRI*]
|
296 |
-
Parent=Inktomi
|
297 |
-
Browser="YahooFeedSeeker"
|
298 |
-
isSyndicationReader=true
|
299 |
-
|
300 |
-
[Y!J-BRO/YFSJ*]
|
301 |
-
Parent=Inktomi
|
302 |
-
Browser="YahooFeedSeeker"
|
303 |
-
isSyndicationReader=true
|
304 |
-
|
305 |
-
[Y!J-BRP/YFSBJ*]
|
306 |
-
Parent=Inktomi
|
307 |
-
Browser="YahooFeedSeeker"
|
308 |
-
isSyndicationReader=true
|
309 |
-
|
310 |
-
[Y!J-BRQ/DLCK*]
|
311 |
-
Parent=Inktomi
|
312 |
-
Browser="YahooFeedSeeker"
|
313 |
-
isSyndicationReader=true
|
314 |
-
|
315 |
-
[Y!J-BSC/1.0*]
|
316 |
-
Parent=Inktomi
|
317 |
-
Browser="YahooFeedSeeker"
|
318 |
-
Version=1.0
|
319 |
-
MajorVer=1
|
320 |
-
MinorVer=0
|
321 |
-
isSyndicationReader=true
|
322 |
-
|
323 |
-
[Y!J-DSC*]
|
324 |
-
Parent=Inktomi
|
325 |
-
Browser="YahooFeedSeeker"
|
326 |
-
isSyndicationReader=true
|
327 |
-
|
328 |
-
[Y!J-NSC/1.0*]
|
329 |
-
Parent=Inktomi
|
330 |
-
Browser="YahooFeedSeeker"
|
331 |
-
isSyndicationReader=true
|
332 |
-
|
333 |
-
[Y!J-PSC*]
|
334 |
-
Parent=Inktomi
|
335 |
-
Browser="YahooFeedSeeker"
|
336 |
-
isSyndicationReader=true
|
337 |
-
|
338 |
-
[Y!J-SRD/1.0]
|
339 |
-
Parent=Inktomi
|
340 |
-
Browser="YahooFeedSeeker"
|
341 |
-
Version=1.0
|
342 |
-
MajorVer=1
|
343 |
-
MinorVer=0
|
344 |
-
|
345 |
-
[Y!J-VSC/ViSe*]
|
346 |
-
Parent=Inktomi
|
347 |
-
Browser="YahooFeedSeeker"
|
348 |
-
isSyndicationReader=true
|
349 |
-
|
350 |
-
[Yahoo Mindset]
|
351 |
-
Parent=Inktomi
|
352 |
-
Browser="Yahoo Mindset"
|
353 |
-
|
354 |
-
[Yahoo Pipes*]
|
355 |
-
Parent=Inktomi
|
356 |
-
Browser="Yahoo Pipes"
|
357 |
-
|
358 |
-
[Yahoo! Mindset]
|
359 |
-
Parent=Inktomi
|
360 |
-
Browser="Yahoo! Mindset"
|
361 |
-
|
362 |
-
[Yahoo! Slurp/Site Explorer]
|
363 |
-
Parent=Inktomi
|
364 |
-
Browser="Yahoo! Site Explorer"
|
365 |
-
|
366 |
-
[Yahoo-Blogs/*]
|
367 |
-
Parent=Inktomi
|
368 |
-
Browser="Yahoo-Blogs"
|
369 |
-
|
370 |
-
[Yahoo-MMAudVid*]
|
371 |
-
Parent=Inktomi
|
372 |
-
Browser="Yahoo-MMAudVid"
|
373 |
-
|
374 |
-
[Yahoo-MMCrawler*]
|
375 |
-
Parent=Inktomi
|
376 |
-
Browser="Yahoo-MMCrawler"
|
377 |
-
isBanned=true
|
378 |
-
|
379 |
-
[YahooFeedSeeker*]
|
380 |
-
Parent=Inktomi
|
381 |
-
Browser="YahooFeedSeeker"
|
382 |
-
isSyndicationReader=true
|
383 |
-
Crawler=false
|
384 |
-
|
385 |
-
[YahooSeeker/*]
|
386 |
-
Parent=Inktomi
|
387 |
-
Browser="YahooSeeker"
|
388 |
-
isMobileDevice=true
|
389 |
-
|
390 |
-
[YahooSeeker/CafeKelsa (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
|
391 |
-
Parent=Inktomi
|
392 |
-
Browser="YahooSeeker/CafeKelsa"
|
393 |
-
|
394 |
-
[YahooSeeker/CafeKelsa-dev (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
|
395 |
-
Parent=Inktomi
|
396 |
-
|
397 |
-
[YahooVideoSearch*]
|
398 |
-
Parent=Inktomi
|
399 |
-
Browser="YahooVideoSearch"
|
400 |
-
|
401 |
-
[YahooYSMcm*]
|
402 |
-
Parent=Inktomi
|
403 |
-
Browser="YahooYSMcm"
|
404 |
|
405 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN
|
406 |
|
407 |
[MSN]
|
408 |
Parent=DefaultProperties
|
|
|
409 |
Browser="MSN"
|
410 |
Frames=true
|
|
|
411 |
Tables=true
|
412 |
Crawler=true
|
413 |
|
@@ -426,6 +260,14 @@ Version=1.0
|
|
426 |
MajorVer=1
|
427 |
MinorVer=0
|
428 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
429 |
[Mozilla/5.0 (Danger hiptop 3.*; U; rv:1.7.*) Gecko/*]
|
430 |
Parent=MSN
|
431 |
Browser="Danger"
|
@@ -470,6 +312,12 @@ Parent=MSN
|
|
470 |
Browser="MSNBot-NewsBlogs"
|
471 |
Version=1
|
472 |
MajorVer=1
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
MinorVer=0
|
474 |
|
475 |
[msnbot-products]
|
@@ -496,6 +344,7 @@ MinorVer=1
|
|
496 |
|
497 |
[msnbot/2.0b*]
|
498 |
Parent=MSN
|
|
|
499 |
Version=2.0
|
500 |
MajorVer=2
|
501 |
MinorVer=0
|
@@ -517,12 +366,18 @@ Browser="renlifangbot"
|
|
517 |
Parent=MSN
|
518 |
Browser="msnbot-mobile"
|
519 |
|
|
|
|
|
|
|
|
|
520 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo
|
521 |
|
522 |
[Yahoo]
|
523 |
Parent=DefaultProperties
|
|
|
524 |
Browser="Yahoo"
|
525 |
Frames=true
|
|
|
526 |
Tables=true
|
527 |
Crawler=true
|
528 |
|
@@ -530,99 +385,321 @@ Crawler=true
|
|
530 |
Parent=Yahoo
|
531 |
Browser="Y!J"
|
532 |
|
533 |
-
[Mozilla/5.0 (
|
534 |
Parent=Yahoo
|
535 |
-
Browser="
|
536 |
-
Version=4.0
|
537 |
-
MajorVer=4
|
538 |
-
MinorVer=0
|
539 |
|
540 |
-
[
|
541 |
Parent=Yahoo
|
542 |
-
Browser="
|
543 |
-
isBanned=true
|
544 |
|
545 |
-
[
|
546 |
Parent=Yahoo
|
547 |
-
Browser="
|
548 |
|
549 |
-
[
|
550 |
Parent=Yahoo
|
551 |
-
Browser="
|
552 |
-
isBanned=true
|
553 |
|
554 |
-
[
|
555 |
Parent=Yahoo
|
556 |
-
Browser="
|
557 |
-
|
558 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
MinorVer=0
|
560 |
-
isBanned=true
|
561 |
|
562 |
-
[
|
563 |
Parent=Yahoo
|
564 |
-
Browser="
|
565 |
-
|
|
|
|
|
566 |
|
567 |
-
|
|
|
|
|
568 |
|
569 |
-
[
|
570 |
-
Parent=
|
571 |
-
Browser="
|
572 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
IFrames=true
|
574 |
Tables=true
|
575 |
-
Cookies=true
|
576 |
Crawler=true
|
577 |
|
578 |
-
[Mozilla/
|
579 |
Parent=Yandex
|
|
|
580 |
|
581 |
-
[Mozilla/5.0 (
|
582 |
Parent=Yandex
|
583 |
-
Browser="
|
584 |
-
isBanned=true
|
585 |
|
586 |
-
[
|
587 |
Parent=Yandex
|
588 |
-
Browser="
|
589 |
|
590 |
-
[
|
591 |
Parent=Yandex
|
|
|
592 |
|
593 |
-
[
|
594 |
Parent=Yandex
|
595 |
-
Browser="
|
596 |
-
isSyndicationReader=true
|
597 |
|
598 |
-
[
|
599 |
Parent=Yandex
|
600 |
-
Browser="
|
601 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
602 |
|
603 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Best of the Web
|
604 |
|
605 |
[Best of the Web]
|
606 |
Parent=DefaultProperties
|
|
|
607 |
Browser="Best of the Web"
|
608 |
Frames=true
|
609 |
Tables=true
|
|
|
610 |
|
611 |
[Mozilla/4.0 (compatible; BOTW Feed Grabber; *http://botw.org)]
|
612 |
Parent=Best of the Web
|
613 |
Browser="BOTW Feed Grabber"
|
614 |
isSyndicationReader=true
|
615 |
-
Crawler=false
|
616 |
|
617 |
[Mozilla/4.0 (compatible; BOTW Spider; *http://botw.org)]
|
618 |
Parent=Best of the Web
|
619 |
Browser="BOTW Spider"
|
620 |
-
isBanned=true
|
621 |
|
622 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boitho
|
623 |
|
624 |
[Boitho]
|
625 |
Parent=DefaultProperties
|
|
|
626 |
Browser="Boitho"
|
627 |
Frames=true
|
628 |
Tables=true
|
@@ -640,6 +717,7 @@ Browser="boitho.com-robot"
|
|
640 |
|
641 |
[Convera]
|
642 |
Parent=DefaultProperties
|
|
|
643 |
Browser="Convera"
|
644 |
Frames=true
|
645 |
Tables=true
|
@@ -664,10 +742,10 @@ Browser="CrawlConvera"
|
|
664 |
|
665 |
[DotBot]
|
666 |
Parent=DefaultProperties
|
|
|
667 |
Browser="DotBot"
|
668 |
Frames=true
|
669 |
Tables=true
|
670 |
-
isBanned=true
|
671 |
Crawler=true
|
672 |
|
673 |
[DotBot/* (http://www.dotnetdotcom.org/*)]
|
@@ -680,31 +758,30 @@ Parent=DotBot
|
|
680 |
|
681 |
[Entireweb]
|
682 |
Parent=DefaultProperties
|
|
|
683 |
Browser="Entireweb"
|
684 |
Frames=true
|
685 |
-
IFrames=true
|
686 |
Tables=true
|
687 |
-
isBanned=true
|
688 |
Crawler=true
|
689 |
|
690 |
-
[Mozilla/
|
691 |
Parent=Entireweb
|
692 |
|
693 |
-
[Speedy Spider (
|
694 |
Parent=Entireweb
|
|
|
695 |
|
696 |
-
[Speedy
|
697 |
Parent=Entireweb
|
698 |
|
699 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Envolk
|
700 |
|
701 |
[Envolk]
|
702 |
Parent=DefaultProperties
|
|
|
703 |
Browser="Envolk"
|
704 |
Frames=true
|
705 |
-
IFrames=true
|
706 |
Tables=true
|
707 |
-
isBanned=true
|
708 |
Crawler=true
|
709 |
|
710 |
[envolk/* (?http://www.envolk.com/envolk*)]
|
@@ -717,10 +794,10 @@ Parent=Envolk
|
|
717 |
|
718 |
[Exalead]
|
719 |
Parent=DefaultProperties
|
|
|
720 |
Browser="Exalead"
|
721 |
Frames=true
|
722 |
Tables=true
|
723 |
-
isBanned=true
|
724 |
Crawler=true
|
725 |
|
726 |
[Exabot-Images/1.0]
|
@@ -737,6 +814,9 @@ Browser="Exabot-Test"
|
|
737 |
[Exabot/2.0]
|
738 |
Parent=Exalead
|
739 |
Browser="Exabot"
|
|
|
|
|
|
|
740 |
|
741 |
[Exabot/3.0]
|
742 |
Parent=Exalead
|
@@ -744,60 +824,69 @@ Browser="Exabot"
|
|
744 |
Version=3.0
|
745 |
MajorVer=3
|
746 |
MinorVer=0
|
747 |
-
Platform=Liberate
|
748 |
|
749 |
[Exalead NG/*]
|
750 |
Parent=Exalead
|
751 |
Browser="Exalead NG"
|
752 |
-
isBanned=true
|
753 |
|
754 |
-
[Mozilla/5.0 (compatible; Exabot-Images/3.0
|
755 |
Parent=Exalead
|
756 |
Browser="Exabot-Images"
|
|
|
|
|
|
|
757 |
|
758 |
-
[Mozilla/5.0 (compatible; Exabot/3.0
|
759 |
Parent=Exalead
|
760 |
Browser="Exabot/BiggerBetter"
|
|
|
|
|
|
|
761 |
|
762 |
-
[Mozilla/5.0 (compatible;
|
763 |
Parent=Exalead
|
764 |
-
Browser="
|
765 |
-
isBanned=false
|
766 |
|
767 |
-
[
|
768 |
Parent=Exalead
|
|
|
769 |
|
770 |
[ng/*]
|
771 |
Parent=Exalead
|
772 |
Browser="Exalead Previewer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
773 |
Version=1.0
|
774 |
MajorVer=1
|
775 |
MinorVer=0
|
776 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
777 |
|
778 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fast/AllTheWeb
|
779 |
|
780 |
[Fast/AllTheWeb]
|
781 |
Parent=DefaultProperties
|
|
|
782 |
Browser="Fast/AllTheWeb"
|
783 |
-
Alpha=true
|
784 |
-
Beta=true
|
785 |
-
Win16=true
|
786 |
-
Win32=true
|
787 |
-
Win64=true
|
788 |
Frames=true
|
789 |
-
IFrames=true
|
790 |
Tables=true
|
791 |
-
Cookies=true
|
792 |
-
BackgroundSounds=true
|
793 |
-
CDF=true
|
794 |
-
VBScript=true
|
795 |
-
JavaApplets=true
|
796 |
-
JavaScript=true
|
797 |
-
ActiveXControls=true
|
798 |
-
isBanned=true
|
799 |
-
isMobileDevice=true
|
800 |
-
isSyndicationReader=true
|
801 |
Crawler=true
|
802 |
|
803 |
[*FAST Enterprise Crawler*]
|
@@ -844,9 +933,9 @@ Browser="FastSearch Web Crawler"
|
|
844 |
|
845 |
[Gigabot]
|
846 |
Parent=DefaultProperties
|
|
|
847 |
Browser="Gigabot"
|
848 |
Frames=true
|
849 |
-
IFrames=true
|
850 |
Tables=true
|
851 |
Crawler=true
|
852 |
|
@@ -861,6 +950,7 @@ Browser="GigabotSiteSearch"
|
|
861 |
|
862 |
[Ilse]
|
863 |
Parent=DefaultProperties
|
|
|
864 |
Browser="Ilse"
|
865 |
Frames=true
|
866 |
Tables=true
|
@@ -871,26 +961,23 @@ Parent=Ilse
|
|
871 |
|
872 |
[INGRID/?.0*]
|
873 |
Parent=Ilse
|
874 |
-
Browser="Ilse"
|
875 |
|
876 |
[Mozilla/3.0 (INGRID/*]
|
877 |
Parent=Ilse
|
878 |
-
Browser="Ilse"
|
879 |
|
880 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iVia Project
|
881 |
|
882 |
[iVia Project]
|
883 |
Parent=DefaultProperties
|
|
|
884 |
Browser="iVia Project"
|
885 |
Frames=true
|
886 |
-
IFrames=true
|
887 |
Tables=true
|
888 |
Crawler=true
|
889 |
|
890 |
[DataFountains/DMOZ Downloader*]
|
891 |
Parent=iVia Project
|
892 |
Browser="DataFountains/DMOZ Downloader"
|
893 |
-
isBanned=true
|
894 |
|
895 |
[DataFountains/DMOZ Feature Vector Corpus Creator*]
|
896 |
Parent=iVia Project
|
@@ -900,6 +987,7 @@ Browser="DataFountains/DMOZ Feature Vector Corpus"
|
|
900 |
|
901 |
[Jayde Online]
|
902 |
Parent=DefaultProperties
|
|
|
903 |
Browser="Jayde Online"
|
904 |
Frames=true
|
905 |
Tables=true
|
@@ -912,7 +1000,6 @@ Browser="ExactSeek Crawler"
|
|
912 |
[exactseek-pagereaper-* (crawler@exactseek.com)]
|
913 |
Parent=Jayde Online
|
914 |
Browser="exactseek-pagereaper"
|
915 |
-
isBanned=true
|
916 |
|
917 |
[exactseek.com]
|
918 |
Parent=Jayde Online
|
@@ -926,6 +1013,7 @@ Browser="Jayde Crawler"
|
|
926 |
|
927 |
[Lycos]
|
928 |
Parent=DefaultProperties
|
|
|
929 |
Browser="Lycos"
|
930 |
Frames=true
|
931 |
Tables=true
|
@@ -947,55 +1035,32 @@ Browser="Lycos-Spider_(modspider)"
|
|
947 |
Parent=Lycos
|
948 |
Browser="Lycos-Spider_(T-Rex)"
|
949 |
|
950 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Naver
|
951 |
-
|
952 |
-
[Naver]
|
953 |
-
Parent=DefaultProperties
|
954 |
-
Browser="Naver"
|
955 |
-
isBanned=true
|
956 |
-
Crawler=true
|
957 |
-
|
958 |
-
[Cowbot-* (NHN Corp*naver.com)]
|
959 |
-
Parent=Naver
|
960 |
-
Browser="Naver Cowbot"
|
961 |
-
|
962 |
-
[Mozilla/4.0 (compatible; NaverBot/*; *)]
|
963 |
-
Parent=Naver
|
964 |
-
|
965 |
-
[Mozilla/4.0 (compatible; NaverBot/*; nhnbot@naver.com)]
|
966 |
-
Parent=Naver
|
967 |
-
Browser="Naver NaverBot"
|
968 |
-
|
969 |
-
[NaverBot-* (NHN Corp*naver.com)]
|
970 |
-
Parent=Naver
|
971 |
-
Browser="Naver NHN Corp"
|
972 |
-
|
973 |
-
[Yeti/*]
|
974 |
-
Parent=Naver
|
975 |
-
Browser="Yeti"
|
976 |
-
|
977 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Snap
|
978 |
|
979 |
[Snap]
|
980 |
Parent=DefaultProperties
|
|
|
981 |
Browser="Snap"
|
982 |
-
|
|
|
983 |
Crawler=true
|
984 |
|
985 |
[Mozilla/5.0 (SnapPreviewBot) Gecko/* Firefox/*]
|
986 |
Parent=Snap
|
|
|
987 |
|
988 |
[Snapbot/*]
|
989 |
Parent=Snap
|
|
|
990 |
|
991 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou
|
992 |
|
993 |
[Sogou]
|
994 |
Parent=DefaultProperties
|
|
|
995 |
Browser="Sogou"
|
996 |
Frames=true
|
997 |
Tables=true
|
998 |
-
isBanned=true
|
999 |
Crawler=true
|
1000 |
|
1001 |
[shaboyi spider]
|
@@ -1008,7 +1073,7 @@ Browser="Sogou Develop Spider"
|
|
1008 |
|
1009 |
[Sogou head spider*]
|
1010 |
Parent=Sogou
|
1011 |
-
Browser="Sogou
|
1012 |
|
1013 |
[sogou js robot(*)]
|
1014 |
Parent=Sogou
|
@@ -1021,7 +1086,7 @@ Browser="Sogou Orion spider"
|
|
1021 |
Parent=Sogou
|
1022 |
Browser="Sogou/Image Crawler"
|
1023 |
|
1024 |
-
[Sogou Pic Spider]
|
1025 |
Parent=Sogou
|
1026 |
Browser="Sogou Pic Spider"
|
1027 |
|
@@ -1045,11 +1110,10 @@ Browser="Sogou-Test-Spider"
|
|
1045 |
|
1046 |
[YodaoBot]
|
1047 |
Parent=DefaultProperties
|
|
|
1048 |
Browser="YodaoBot"
|
1049 |
Frames=true
|
1050 |
-
IFrames=true
|
1051 |
Tables=true
|
1052 |
-
isBanned=true
|
1053 |
Crawler=true
|
1054 |
|
1055 |
[Mozilla/5.0 (compatible; YodaoBot/1.*)]
|
@@ -1073,10 +1137,6 @@ Browser="Best Whois"
|
|
1073 |
Parent=DNS Tools
|
1074 |
Browser="DNS Group Crawler"
|
1075 |
|
1076 |
-
[NG-Search/*]
|
1077 |
-
Parent=Exalead
|
1078 |
-
Browser="NG-SearchBot"
|
1079 |
-
|
1080 |
[TouchStone]
|
1081 |
Parent=Feeds Syndicators
|
1082 |
Browser="TouchStone"
|
@@ -1086,31 +1146,57 @@ isSyndicationReader=true
|
|
1086 |
|
1087 |
[General Crawlers]
|
1088 |
Parent=DefaultProperties
|
|
|
1089 |
Browser="General Crawlers"
|
1090 |
Crawler=true
|
1091 |
|
1092 |
-
[
|
1093 |
Parent=General Crawlers
|
1094 |
-
|
1095 |
|
1096 |
-
[
|
1097 |
Parent=General Crawlers
|
1098 |
-
Browser="
|
1099 |
|
1100 |
-
[
|
1101 |
Parent=General Crawlers
|
1102 |
-
Browser="
|
1103 |
-
isBanned=true
|
1104 |
|
1105 |
-
[
|
1106 |
Parent=General Crawlers
|
1107 |
-
Browser="
|
1108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1109 |
|
1110 |
[CyberPatrol*]
|
1111 |
Parent=General Crawlers
|
1112 |
Browser="CyberPatrol"
|
1113 |
-
isBanned=true
|
1114 |
|
1115 |
[Cynthia 1.0]
|
1116 |
Parent=General Crawlers
|
@@ -1122,7 +1208,6 @@ MinorVer=0
|
|
1122 |
[cz32ts]
|
1123 |
Parent=General Crawlers
|
1124 |
Browser="cz32ts"
|
1125 |
-
isBanned=true
|
1126 |
|
1127 |
[ddetailsbot (http://www.displaydetails.com)]
|
1128 |
Parent=General Crawlers
|
@@ -1135,12 +1220,15 @@ Browser="DomainCrawler"
|
|
1135 |
[DomainsBotBot/1.*]
|
1136 |
Parent=General Crawlers
|
1137 |
Browser="DomainsBotBot"
|
1138 |
-
isBanned=true
|
1139 |
|
1140 |
[DomainsDB.net MetaCrawler*]
|
1141 |
Parent=General Crawlers
|
1142 |
Browser="DomainsDB"
|
1143 |
|
|
|
|
|
|
|
|
|
1144 |
[Drupal (*)]
|
1145 |
Parent=General Crawlers
|
1146 |
Browser="Drupal"
|
@@ -1160,31 +1248,30 @@ Browser="eventax"
|
|
1160 |
[FANGCrawl/*]
|
1161 |
Parent=General Crawlers
|
1162 |
Browser="Safe-t.net Web Filtering Service"
|
1163 |
-
isBanned=true
|
1164 |
|
1165 |
[favorstarbot/*]
|
1166 |
Parent=General Crawlers
|
1167 |
Browser="favorstarbot"
|
1168 |
-
isBanned=true
|
1169 |
|
1170 |
[FollowSite.com (*)]
|
1171 |
Parent=General Crawlers
|
1172 |
Browser="FollowSite"
|
1173 |
-
isBanned=true
|
1174 |
|
1175 |
[Gaisbot*]
|
1176 |
Parent=General Crawlers
|
1177 |
Browser="Gaisbot"
|
1178 |
|
|
|
|
|
|
|
|
|
1179 |
[Healthbot/Health_and_Longevity_Project_(HealthHaven.com) ]
|
1180 |
Parent=General Crawlers
|
1181 |
Browser="Healthbot"
|
1182 |
-
isBanned=true
|
1183 |
|
1184 |
[hitcrawler_0.*]
|
1185 |
Parent=General Crawlers
|
1186 |
Browser="hitcrawler"
|
1187 |
-
isBanned=true
|
1188 |
|
1189 |
[htdig/*]
|
1190 |
Parent=General Crawlers
|
@@ -1193,12 +1280,23 @@ Browser="ht://Dig"
|
|
1193 |
[http://hilfe.acont.de/bot.html ACONTBOT]
|
1194 |
Parent=General Crawlers
|
1195 |
Browser="ACONTBOT"
|
1196 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1197 |
|
1198 |
[JetBrains*]
|
1199 |
Parent=General Crawlers
|
1200 |
Browser="Omea Pro"
|
1201 |
|
|
|
|
|
|
|
|
|
1202 |
[KakleBot - www.kakle.com/0.1]
|
1203 |
Parent=General Crawlers
|
1204 |
Browser="KakleBot"
|
@@ -1206,7 +1304,6 @@ Browser="KakleBot"
|
|
1206 |
[KBeeBot/0.*]
|
1207 |
Parent=General Crawlers
|
1208 |
Browser="KBeeBot"
|
1209 |
-
isBanned=true
|
1210 |
|
1211 |
[Keyword Density/*]
|
1212 |
Parent=General Crawlers
|
@@ -1215,37 +1312,38 @@ Browser="Keyword Density"
|
|
1215 |
[LetsCrawl.com/1.0*]
|
1216 |
Parent=General Crawlers
|
1217 |
Browser="LetsCrawl.com"
|
1218 |
-
isBanned=true
|
1219 |
|
1220 |
[Lincoln State Web Browser]
|
1221 |
Parent=General Crawlers
|
1222 |
Browser="Lincoln State Web Browser"
|
1223 |
-
|
|
|
|
|
|
|
1224 |
|
1225 |
[Links4US-Crawler,*]
|
1226 |
Parent=General Crawlers
|
1227 |
Browser="Links4US-Crawler"
|
1228 |
-
isBanned=true
|
1229 |
|
1230 |
[Lorkyll *.* -- lorkyll@444.net]
|
1231 |
Parent=General Crawlers
|
1232 |
Browser="Lorkyll"
|
1233 |
-
isBanned=true
|
1234 |
|
1235 |
[Lsearch/sondeur]
|
1236 |
Parent=General Crawlers
|
1237 |
Browser="Lsearch/sondeur"
|
1238 |
-
isBanned=true
|
1239 |
|
1240 |
[LucidMedia ClickSense/4.?]
|
1241 |
Parent=General Crawlers
|
1242 |
Browser="LucidMedia-ClickSense"
|
1243 |
-
isBanned=true
|
1244 |
|
1245 |
[Made by ZmEu @ WhiteHat v0.* (www.WhiteHat.ro)]
|
1246 |
Parent=General Crawlers
|
1247 |
Browser="ZmEu"
|
1248 |
-
|
|
|
|
|
|
|
1249 |
|
1250 |
[Mahalobot/1.0 (?http://www.mahalo.com/)]
|
1251 |
Parent=General Crawlers
|
@@ -1254,7 +1352,6 @@ Browser="Mahalobot"
|
|
1254 |
[MapoftheInternet.com?(?http://MapoftheInternet.com)]
|
1255 |
Parent=General Crawlers
|
1256 |
Browser="MapoftheInternet"
|
1257 |
-
isBanned=true
|
1258 |
|
1259 |
[Marvin v0.3]
|
1260 |
Parent=General Crawlers
|
@@ -1277,12 +1374,10 @@ MinorVer=01
|
|
1277 |
[metatagsdir/*]
|
1278 |
Parent=General Crawlers
|
1279 |
Browser="metatagsdir"
|
1280 |
-
isBanned=true
|
1281 |
|
1282 |
[Microsoft Windows Network Diagnostics]
|
1283 |
Parent=General Crawlers
|
1284 |
Browser="Microsoft Windows Network Diagnostics"
|
1285 |
-
isBanned=true
|
1286 |
|
1287 |
[Miva (AlgoFeedback@miva.com)]
|
1288 |
Parent=General Crawlers
|
@@ -1292,18 +1387,18 @@ Browser="Miva"
|
|
1292 |
Parent=General Crawlers
|
1293 |
Browser="Goo"
|
1294 |
|
1295 |
-
[Mozdex/0.7
|
1296 |
Parent=General Crawlers
|
1297 |
Browser="Mozdex"
|
1298 |
|
1299 |
-
[Mozilla Compatible (MS IE 3.01 WinNT)]
|
1300 |
-
Parent=General Crawlers
|
1301 |
-
isBanned=true
|
1302 |
-
|
1303 |
[Mozilla/* (compatible; WebCapture*)]
|
1304 |
Parent=General Crawlers
|
1305 |
Browser="WebCapture"
|
1306 |
|
|
|
|
|
|
|
|
|
1307 |
[Mozilla/4.0 (compatible; DepSpid/*)]
|
1308 |
Parent=General Crawlers
|
1309 |
Browser="DepSpid"
|
@@ -1311,14 +1406,10 @@ Browser="DepSpid"
|
|
1311 |
[Mozilla/4.0 (compatible; MSIE 4.01; Vonna.com b o t)]
|
1312 |
Parent=General Crawlers
|
1313 |
Browser="Vonna.com"
|
1314 |
-
isBanned=true
|
1315 |
|
1316 |
[Mozilla/4.0 (compatible; MSIE 4.01; Windows95)]
|
1317 |
Parent=General Crawlers
|
1318 |
-
|
1319 |
-
|
1320 |
-
[Mozilla/4.0 (compatible; MSIE 4.5; Windows 98; )]
|
1321 |
-
Parent=General Crawlers
|
1322 |
Win32=true
|
1323 |
|
1324 |
[Mozilla/4.0 (compatible; MyFamilyBot/*)]
|
@@ -1331,29 +1422,24 @@ Browser="N-Stealth"
|
|
1331 |
|
1332 |
[Mozilla/4.0 (compatible; Scumbot/*; Linux/*)]
|
1333 |
Parent=General Crawlers
|
1334 |
-
|
1335 |
|
1336 |
[Mozilla/4.0 (compatible; Spider; Linux)]
|
1337 |
Parent=General Crawlers
|
1338 |
-
|
1339 |
|
1340 |
[Mozilla/4.0 (compatible; Win32)]
|
1341 |
Parent=General Crawlers
|
1342 |
Browser="Unknown Crawler"
|
1343 |
-
isBanned=true
|
1344 |
-
|
1345 |
-
[Mozilla/4.1]
|
1346 |
-
Parent=General Crawlers
|
1347 |
-
isBanned=true
|
1348 |
-
|
1349 |
-
[Mozilla/4.5]
|
1350 |
-
Parent=General Crawlers
|
1351 |
-
isBanned=true
|
1352 |
|
1353 |
[Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/1.0]
|
1354 |
Parent=General Crawlers
|
1355 |
Browser="Gnomit"
|
1356 |
-
|
|
|
|
|
|
|
|
|
1357 |
|
1358 |
[Mozilla/5.0 (compatible; *; http://www.80legs.com/spider.html;) Gecko/*]
|
1359 |
Parent=General Crawlers
|
@@ -1362,57 +1448,106 @@ Browser="80Legs"
|
|
1362 |
[Mozilla/5.0 (compatible; AboutUsBot/*)]
|
1363 |
Parent=General Crawlers
|
1364 |
Browser="AboutUsBot"
|
1365 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1366 |
|
1367 |
[Mozilla/5.0 (compatible; BuzzRankingBot/*)]
|
1368 |
Parent=General Crawlers
|
1369 |
Browser="BuzzRankingBot"
|
1370 |
-
isBanned=true
|
1371 |
|
1372 |
-
[Mozilla/5.0 (compatible;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1373 |
Parent=General Crawlers
|
1374 |
Browser="Diffbot"
|
1375 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1376 |
[Mozilla/5.0 (compatible; FirstSearchBot/1.0; *)]
|
1377 |
Parent=General Crawlers
|
1378 |
Browser="FirstSearchBot"
|
1379 |
|
1380 |
-
[mozilla/5.0 (compatible; genevabot
|
1381 |
Parent=General Crawlers
|
1382 |
Browser="Healthdash"
|
1383 |
|
1384 |
[Mozilla/5.0 (compatible; JadynAveBot; *http://www.jadynave.com/robot*]
|
1385 |
Parent=General Crawlers
|
1386 |
Browser="JadynAveBot"
|
1387 |
-
isBanned=true
|
1388 |
|
1389 |
[Mozilla/5.0 (compatible; Kyluka crawl; http://www.kyluka.com/crawl.html; crawl@kyluka.com)]
|
1390 |
Parent=General Crawlers
|
1391 |
Browser="Kyluka"
|
1392 |
|
|
|
|
|
|
|
|
|
1393 |
[Mozilla/5.0 (compatible; MJ12bot/v1.*)]
|
1394 |
Parent=General Crawlers
|
1395 |
Browser="MJ12bot"
|
1396 |
-
isBanned=true
|
1397 |
|
1398 |
[Mozilla/5.0 (compatible; MSIE 7.0 ?http://www.europarchive.org)]
|
1399 |
Parent=General Crawlers
|
1400 |
Browser="Europe Web Archive"
|
1401 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1402 |
[Mozilla/5.0 (compatible; Plukkie/1.?; http://www.botje.com/plukkie.htm)]
|
1403 |
Parent=General Crawlers
|
1404 |
Browser="Plukkie"
|
1405 |
|
|
|
|
|
|
|
|
|
1406 |
[Mozilla/5.0 (compatible; Seznam screenshot-generator 2.0;*)]
|
1407 |
Parent=General Crawlers
|
1408 |
Browser="Seznam screenshot-generator"
|
1409 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1410 |
|
1411 |
[Mozilla/5.0 (compatible; Twingly Recon; http://www.twingly.com/)]
|
1412 |
Parent=General Crawlers
|
1413 |
Browser="Twingly Recon"
|
1414 |
|
1415 |
-
[Mozilla/5.0 (compatible; unwrapbot/2.*;
|
1416 |
Parent=General Crawlers
|
1417 |
Browser="UnWrap"
|
1418 |
|
@@ -1423,12 +1558,10 @@ Browser="Vermut"
|
|
1423 |
[Mozilla/5.0 (compatible; Viralheat Bot/*) ]
|
1424 |
Parent=General Crawlers
|
1425 |
Browser="Viralheat"
|
1426 |
-
isBanned=true
|
1427 |
|
1428 |
[Mozilla/5.0 (compatible; Webbot/*)]
|
1429 |
Parent=General Crawlers
|
1430 |
Browser="Webbot.ru"
|
1431 |
-
isBanned=true
|
1432 |
|
1433 |
[n4p_bot*]
|
1434 |
Parent=General Crawlers
|
@@ -1441,17 +1574,14 @@ Browser="Nabot"
|
|
1441 |
[NetCarta_WebMapper/*]
|
1442 |
Parent=General Crawlers
|
1443 |
Browser="NetCarta_WebMapper"
|
1444 |
-
isBanned=true
|
1445 |
|
1446 |
[Netchart Adv Crawler*]
|
1447 |
Parent=General Crawlers
|
1448 |
Browser="Netchart Adv Crawler"
|
1449 |
-
isBanned=true
|
1450 |
|
1451 |
[NetID.com Bot*]
|
1452 |
Parent=General Crawlers
|
1453 |
Browser="NetID.com Bot"
|
1454 |
-
isBanned=true
|
1455 |
|
1456 |
[neTVision AG andreas.heidoetting@thomson-webcast.net]
|
1457 |
Parent=General Crawlers
|
@@ -1464,7 +1594,6 @@ Browser="NextopiaBOT"
|
|
1464 |
[nicebot]
|
1465 |
Parent=General Crawlers
|
1466 |
Browser="nicebot"
|
1467 |
-
isBanned=true
|
1468 |
|
1469 |
[niXXieBot?Foster*]
|
1470 |
Parent=General Crawlers
|
@@ -1473,17 +1602,18 @@ Browser="niXXiebot-Foster"
|
|
1473 |
[Nozilla/P.N (Just for IDS woring)]
|
1474 |
Parent=General Crawlers
|
1475 |
Browser="Nozilla/P.N"
|
1476 |
-
|
|
|
|
|
|
|
1477 |
|
1478 |
[Nudelsalat/*]
|
1479 |
Parent=General Crawlers
|
1480 |
Browser="Nudelsalat"
|
1481 |
-
isBanned=true
|
1482 |
|
1483 |
[NV32ts]
|
1484 |
Parent=General Crawlers
|
1485 |
Browser="NV32ts"
|
1486 |
-
isBanned=true
|
1487 |
|
1488 |
[Ocelli/*]
|
1489 |
Parent=General Crawlers
|
@@ -1496,7 +1626,6 @@ Browser="OpenTaggerBot"
|
|
1496 |
[Oracle Enterprise Search]
|
1497 |
Parent=General Crawlers
|
1498 |
Browser="Oracle Enterprise Search"
|
1499 |
-
isBanned=true
|
1500 |
|
1501 |
[Oracle Ultra Search]
|
1502 |
Parent=General Crawlers
|
@@ -1505,12 +1634,10 @@ Browser="Oracle Ultra Search"
|
|
1505 |
[Pajaczek/*]
|
1506 |
Parent=General Crawlers
|
1507 |
Browser="Pajaczek"
|
1508 |
-
isBanned=true
|
1509 |
|
1510 |
[panscient.com]
|
1511 |
Parent=General Crawlers
|
1512 |
Browser="panscient.com"
|
1513 |
-
isBanned=true
|
1514 |
|
1515 |
[Patwebbot (http://www.herz-power.de/technik.html)]
|
1516 |
Parent=General Crawlers
|
@@ -1523,7 +1650,6 @@ Browser="PDFBot"
|
|
1523 |
[Pete-Spider/1.*]
|
1524 |
Parent=General Crawlers
|
1525 |
Browser="Pete-Spider"
|
1526 |
-
isBanned=true
|
1527 |
|
1528 |
[PhpDig/*]
|
1529 |
Parent=General Crawlers
|
@@ -1532,18 +1658,15 @@ Browser="PhpDig"
|
|
1532 |
[PlantyNet_WebRobot*]
|
1533 |
Parent=General Crawlers
|
1534 |
Browser="PlantyNet"
|
1535 |
-
isBanned=true
|
1536 |
-
|
1537 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PluckIt
|
1538 |
|
1539 |
-
[PluckItCrawler
|
1540 |
Parent=General Crawlers
|
|
|
1541 |
isMobileDevice=true
|
1542 |
|
1543 |
[PMAFind]
|
1544 |
Parent=General Crawlers
|
1545 |
Browser="PMAFind"
|
1546 |
-
isBanned=true
|
1547 |
|
1548 |
[Poodle_predictor_1.0]
|
1549 |
Parent=General Crawlers
|
@@ -1552,22 +1675,27 @@ Browser="Poodle Predictor"
|
|
1552 |
[QuickFinder Crawler]
|
1553 |
Parent=General Crawlers
|
1554 |
Browser="QuickFinder"
|
1555 |
-
isBanned=true
|
1556 |
|
1557 |
[Radiation Retriever*]
|
1558 |
Parent=General Crawlers
|
1559 |
Browser="Radiation Retriever"
|
1560 |
-
isBanned=true
|
1561 |
|
1562 |
[RedCarpet/*]
|
1563 |
Parent=General Crawlers
|
1564 |
Browser="RedCarpet"
|
1565 |
-
isBanned=true
|
1566 |
|
1567 |
[RixBot (http://babelserver.org/rix)]
|
1568 |
Parent=General Crawlers
|
1569 |
Browser="RixBot"
|
1570 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1571 |
[Rome Client (http://tinyurl.com/64t5n) Ver: 0.*]
|
1572 |
Parent=General Crawlers
|
1573 |
Browser="TinyURL"
|
@@ -1579,7 +1707,6 @@ Browser="SiteSell"
|
|
1579 |
[ScollSpider/2.*]
|
1580 |
Parent=General Crawlers
|
1581 |
Browser="ScollSpider"
|
1582 |
-
isBanned=true
|
1583 |
|
1584 |
[Search Fst]
|
1585 |
Parent=General Crawlers
|
@@ -1588,12 +1715,10 @@ Browser="Search Fst"
|
|
1588 |
[searchbot admin@google.com]
|
1589 |
Parent=General Crawlers
|
1590 |
Browser="searchbot"
|
1591 |
-
isBanned=true
|
1592 |
|
1593 |
[Seeker.lookseek.com]
|
1594 |
Parent=General Crawlers
|
1595 |
Browser="LookSeek"
|
1596 |
-
isBanned=true
|
1597 |
|
1598 |
[semanticdiscovery/*]
|
1599 |
Parent=General Crawlers
|
@@ -1602,17 +1727,14 @@ Browser="Semantic Discovery"
|
|
1602 |
[SeznamBot/*]
|
1603 |
Parent=General Crawlers
|
1604 |
Browser="SeznamBot"
|
1605 |
-
isBanned=true
|
1606 |
|
1607 |
[Shelob (shelob@gmx.net)]
|
1608 |
Parent=General Crawlers
|
1609 |
Browser="Shelob"
|
1610 |
-
isBanned=true
|
1611 |
|
1612 |
[shelob v1.*]
|
1613 |
Parent=General Crawlers
|
1614 |
Browser="shelob"
|
1615 |
-
isBanned=true
|
1616 |
|
1617 |
[ShopWiki/1.0*]
|
1618 |
Parent=General Crawlers
|
@@ -1624,7 +1746,6 @@ MinorVer=0
|
|
1624 |
[ShowXML/1.0 libwww/5.4.0]
|
1625 |
Parent=General Crawlers
|
1626 |
Browser="ShowXML"
|
1627 |
-
isBanned=true
|
1628 |
|
1629 |
[sitecheck.internetseer.com*]
|
1630 |
Parent=General Crawlers
|
@@ -1637,22 +1758,18 @@ Browser="SMBot"
|
|
1637 |
[sohu*]
|
1638 |
Parent=General Crawlers
|
1639 |
Browser="sohu-search"
|
1640 |
-
isBanned=true
|
1641 |
|
1642 |
[SpankBot*]
|
1643 |
Parent=General Crawlers
|
1644 |
Browser="SpankBot"
|
1645 |
-
isBanned=true
|
1646 |
|
1647 |
[spider (tspyyp@tom.com)]
|
1648 |
Parent=General Crawlers
|
1649 |
Browser="spider (tspyyp@tom.com)"
|
1650 |
-
isBanned=true
|
1651 |
|
1652 |
[Sunrise/0.*]
|
1653 |
Parent=General Crawlers
|
1654 |
Browser="Sunrise"
|
1655 |
-
isBanned=true
|
1656 |
|
1657 |
[Superpages URL Verification Engine]
|
1658 |
Parent=General Crawlers
|
@@ -1661,17 +1778,14 @@ Browser="Superpages"
|
|
1661 |
[Surf Knight]
|
1662 |
Parent=General Crawlers
|
1663 |
Browser="Surf Knight"
|
1664 |
-
isBanned=true
|
1665 |
|
1666 |
[SurveyBot/*]
|
1667 |
Parent=General Crawlers
|
1668 |
Browser="SurveyBot"
|
1669 |
-
isBanned=true
|
1670 |
|
1671 |
[SynapticSearch/AI Crawler 1.?]
|
1672 |
Parent=General Crawlers
|
1673 |
Browser="SynapticSearch"
|
1674 |
-
isBanned=true
|
1675 |
|
1676 |
[SyncMgr]
|
1677 |
Parent=General Crawlers
|
@@ -1684,12 +1798,10 @@ Browser="Tagyu"
|
|
1684 |
[Talkro Web-Shot/*]
|
1685 |
Parent=General Crawlers
|
1686 |
Browser="Talkro Web-Shot"
|
1687 |
-
isBanned=true
|
1688 |
|
1689 |
[Tasap-image-robot/0.* (http://www.tasap.com)]
|
1690 |
Parent=General Crawlers
|
1691 |
Browser="Tasap-image-robot"
|
1692 |
-
isBanned=true
|
1693 |
|
1694 |
[Tecomi Bot (http://www.tecomi.com/bot.htm)]
|
1695 |
Parent=General Crawlers
|
@@ -1702,16 +1814,18 @@ Browser="TencentTraveler"
|
|
1702 |
[TheInformant*]
|
1703 |
Parent=General Crawlers
|
1704 |
Browser="TheInformant"
|
1705 |
-
isBanned=true
|
1706 |
|
1707 |
[Toata dragostea*]
|
1708 |
Parent=General Crawlers
|
1709 |
Browser="Toata dragostea"
|
1710 |
-
isBanned=true
|
1711 |
|
1712 |
[Tutorial Crawler*]
|
1713 |
Parent=General Crawlers
|
1714 |
-
|
|
|
|
|
|
|
|
|
1715 |
|
1716 |
[UbiCrawler/*]
|
1717 |
Parent=General Crawlers
|
@@ -1723,12 +1837,11 @@ Browser="UCmore"
|
|
1723 |
|
1724 |
[User*Agent:*]
|
1725 |
Parent=General Crawlers
|
1726 |
-
|
1727 |
|
1728 |
[USER_AGENT]
|
1729 |
Parent=General Crawlers
|
1730 |
-
Browser="
|
1731 |
-
isBanned=true
|
1732 |
|
1733 |
[VadixBot]
|
1734 |
Parent=General Crawlers
|
@@ -1737,7 +1850,6 @@ Browser="VadixBot"
|
|
1737 |
[VengaBot/*]
|
1738 |
Parent=General Crawlers
|
1739 |
Browser="VengaBot"
|
1740 |
-
isBanned=true
|
1741 |
|
1742 |
[Visicom Toolbar]
|
1743 |
Parent=General Crawlers
|
@@ -1747,19 +1859,13 @@ Browser="Visicom Toolbar"
|
|
1747 |
Parent=General Crawlers
|
1748 |
Browser="geek-tools.org"
|
1749 |
|
1750 |
-
[W3C-WebCon/*]
|
1751 |
-
Parent=General Crawlers
|
1752 |
-
Browser="W3C-WebCon"
|
1753 |
-
|
1754 |
[Webclipping.com]
|
1755 |
Parent=General Crawlers
|
1756 |
Browser="Webclipping.com"
|
1757 |
-
isBanned=true
|
1758 |
|
1759 |
-
[webcollage
|
1760 |
Parent=General Crawlers
|
1761 |
Browser="WebCollage"
|
1762 |
-
isBanned=true
|
1763 |
|
1764 |
[WebCrawler_1.*]
|
1765 |
Parent=General Crawlers
|
@@ -1780,7 +1886,6 @@ Browser="WebTrends"
|
|
1780 |
[West Wind Internet Protocols*]
|
1781 |
Parent=General Crawlers
|
1782 |
Browser="Versatel"
|
1783 |
-
isBanned=true
|
1784 |
|
1785 |
[WhizBang]
|
1786 |
Parent=General Crawlers
|
@@ -1790,10 +1895,9 @@ Browser="WhizBang"
|
|
1790 |
Parent=General Crawlers
|
1791 |
Browser="Willow Internet Crawler"
|
1792 |
|
1793 |
-
[WIRE/* (Linux
|
1794 |
Parent=General Crawlers
|
1795 |
Browser="WIRE"
|
1796 |
-
isBanned=true
|
1797 |
|
1798 |
[www.fi crawler, contact crawler@www.fi]
|
1799 |
Parent=General Crawlers
|
@@ -1802,7 +1906,6 @@ Browser="www.fi crawler"
|
|
1802 |
[Xerka WebBot v1.*]
|
1803 |
Parent=General Crawlers
|
1804 |
Browser="Xerka"
|
1805 |
-
isBanned=true
|
1806 |
|
1807 |
[XML Sitemaps Generator*]
|
1808 |
Parent=General Crawlers
|
@@ -1811,27 +1914,28 @@ Browser="XML Sitemaps Generator"
|
|
1811 |
[XSpider*]
|
1812 |
Parent=General Crawlers
|
1813 |
Browser="XSpider"
|
1814 |
-
isBanned=true
|
1815 |
|
1816 |
[YooW!/* (?http://www.yoow.eu)]
|
1817 |
Parent=General Crawlers
|
1818 |
Browser="YooW!"
|
1819 |
-
|
|
|
|
|
|
|
1820 |
|
1821 |
[HiddenMarket-*]
|
1822 |
Parent=General RSS
|
1823 |
Browser="HiddenMarket"
|
1824 |
-
isBanned=true
|
1825 |
|
1826 |
[FOTOCHECKER]
|
1827 |
Parent=Image Crawlers
|
1828 |
Browser="FOTOCHECKER"
|
1829 |
-
isBanned=true
|
1830 |
|
1831 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Search Engines
|
1832 |
|
1833 |
[Search Engines]
|
1834 |
Parent=DefaultProperties
|
|
|
1835 |
Browser="Search Engines"
|
1836 |
Crawler=true
|
1837 |
|
@@ -1865,6 +1969,7 @@ Browser="Amfibi"
|
|
1865 |
|
1866 |
[AnswerBus (http://www.answerbus.com/)]
|
1867 |
Parent=Search Engines
|
|
|
1868 |
|
1869 |
[antibot-V*]
|
1870 |
Parent=Search Engines
|
@@ -1878,6 +1983,10 @@ Browser="Walhello"
|
|
1878 |
Parent=Search Engines
|
1879 |
Browser="ASPSeek"
|
1880 |
|
|
|
|
|
|
|
|
|
1881 |
[BigCliqueBOT/*]
|
1882 |
Parent=Search Engines
|
1883 |
Browser="BigClique.com/BigClic.com"
|
@@ -1893,9 +2002,8 @@ Browser="Bit Torrent Search Engine"
|
|
1893 |
[Busiversebot/v1.0 (http://www.busiverse.com/bot.php)]
|
1894 |
Parent=Search Engines
|
1895 |
Browser="Busiversebot"
|
1896 |
-
isBanned=true
|
1897 |
|
1898 |
-
[CatchBot/*;
|
1899 |
Parent=Search Engines
|
1900 |
Browser="CatchBot"
|
1901 |
Version=1.0
|
@@ -1957,12 +2065,10 @@ Browser="Flatland"
|
|
1957 |
[Fooky.com/ScorpionBot/ScoutOut;*]
|
1958 |
Parent=Search Engines
|
1959 |
Browser="ScorpionBot"
|
1960 |
-
isBanned=true
|
1961 |
|
1962 |
[FyberSpider*]
|
1963 |
Parent=Search Engines
|
1964 |
Browser="FyberSpider"
|
1965 |
-
isBanned=true
|
1966 |
|
1967 |
[Gaisbot/*]
|
1968 |
Parent=Search Engines
|
@@ -1991,7 +2097,6 @@ Browser="GroschoBot"
|
|
1991 |
[GurujiBot/1.*]
|
1992 |
Parent=Search Engines
|
1993 |
Browser="GurujiBot"
|
1994 |
-
isBanned=true
|
1995 |
|
1996 |
[HenryTheMiragoRobot*]
|
1997 |
Parent=Search Engines
|
@@ -2008,7 +2113,6 @@ Browser="Hotzonu"
|
|
2008 |
[HyperEstraier/*]
|
2009 |
Parent=Search Engines
|
2010 |
Browser="HyperEstraier"
|
2011 |
-
isBanned=true
|
2012 |
|
2013 |
[i1searchbot/*]
|
2014 |
Parent=Search Engines
|
@@ -2025,7 +2129,6 @@ Browser="Iltrovatore-Setaccio"
|
|
2025 |
[InfociousBot (?http://corp.infocious.com/tech_crawler.php)]
|
2026 |
Parent=Search Engines
|
2027 |
Browser="InfociousBot"
|
2028 |
-
isBanned=true
|
2029 |
|
2030 |
[Infoseek SideWinder/*]
|
2031 |
Parent=Search Engines
|
@@ -2042,17 +2145,19 @@ Browser="Knight"
|
|
2042 |
[Kolinka Forum Search (www.kolinka.com)]
|
2043 |
Parent=Search Engines
|
2044 |
Browser="Kolinka Forum Search"
|
2045 |
-
isBanned=true
|
2046 |
|
2047 |
[KRetrieve/]
|
2048 |
Parent=Search Engines
|
2049 |
Browser="KRetrieve"
|
2050 |
-
isBanned=true
|
2051 |
|
2052 |
[LapozzBot/*]
|
2053 |
Parent=Search Engines
|
2054 |
Browser="LapozzBot"
|
2055 |
|
|
|
|
|
|
|
|
|
2056 |
[Linknzbot*]
|
2057 |
Parent=Search Engines
|
2058 |
Browser="Linknzbot"
|
@@ -2083,7 +2188,6 @@ Browser="Mnogosearch"
|
|
2083 |
[Mozilla/0.9* no dos :) (Linux*)]
|
2084 |
Parent=Search Engines
|
2085 |
Browser="goliat"
|
2086 |
-
isBanned=true
|
2087 |
|
2088 |
[Mozilla/4.0 (compatible; *Vagabondo/*; webcrawler at wise-guys dot nl; *)]
|
2089 |
Parent=Search Engines
|
@@ -2096,7 +2200,6 @@ Browser="Arachmo"
|
|
2096 |
[Mozilla/4.0 (compatible; http://search.thunderstone.com/texis/websearch/about.html)]
|
2097 |
Parent=Search Engines
|
2098 |
Browser="ThunderStone"
|
2099 |
-
isBanned=true
|
2100 |
|
2101 |
[Mozilla/4.0 (compatible; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)]
|
2102 |
Parent=Search Engines
|
@@ -2114,13 +2217,16 @@ Browser="Inxight Software"
|
|
2114 |
[Mozilla/5.0 (*) VoilaBot*]
|
2115 |
Parent=Search Engines
|
2116 |
Browser="VoilaBot"
|
2117 |
-
isBanned=true
|
2118 |
|
2119 |
[Mozilla/5.0 (compatible; ActiveTouristBot*; http://www.activetourist.com)]
|
2120 |
Parent=Search Engines
|
2121 |
Browser="ActiveTouristBot"
|
2122 |
|
2123 |
-
[Mozilla/5.0 (compatible;
|
|
|
|
|
|
|
|
|
2124 |
Parent=Search Engines
|
2125 |
Browser="ayna-crawler"
|
2126 |
|
@@ -2132,7 +2238,6 @@ Browser="Butterfly"
|
|
2132 |
Parent=Search Engines
|
2133 |
Browser="Charlotte"
|
2134 |
Beta=true
|
2135 |
-
isBanned=true
|
2136 |
|
2137 |
[Mozilla/5.0 (compatible; CXL-FatAssANT*)]
|
2138 |
Parent=Search Engines
|
@@ -2153,6 +2258,10 @@ Browser="EARTHCOM"
|
|
2153 |
Parent=Search Engines
|
2154 |
Browser="Lipperhey Spider"
|
2155 |
|
|
|
|
|
|
|
|
|
2156 |
[Mozilla/5.0 (compatible; MojeekBot/*; http://www.mojeek.com/bot.html)]
|
2157 |
Parent=Search Engines
|
2158 |
Browser="MojeekBot"
|
@@ -2164,7 +2273,6 @@ Browser="Northern Light Web Search"
|
|
2164 |
[Mozilla/5.0 (compatible; OsO;*]
|
2165 |
Parent=Search Engines
|
2166 |
Browser="Octopodus"
|
2167 |
-
isBanned=true
|
2168 |
|
2169 |
[Mozilla/5.0 (compatible; ParchBot/1.0;*)]
|
2170 |
Parent=Search Engines
|
@@ -2178,15 +2286,13 @@ Browser="Pogodak"
|
|
2178 |
Parent=Search Engines
|
2179 |
Browser="Quantcastbot"
|
2180 |
|
2181 |
-
[Mozilla/5.0 (compatible; ScoutJet;
|
2182 |
Parent=Search Engines
|
2183 |
Browser="ScoutJet"
|
2184 |
-
isBanned=true
|
2185 |
|
2186 |
-
[Mozilla/5.0 (compatible; Scrubby/*;
|
2187 |
Parent=Search Engines
|
2188 |
Browser="Scrubby"
|
2189 |
-
isBanned=true
|
2190 |
|
2191 |
[Mozilla/5.0 (compatible; YoudaoBot/1.*; http://www.youdao.com/help/webmaster/spider/*)]
|
2192 |
Parent=Search Engines
|
@@ -2198,7 +2304,6 @@ MinorVer=0
|
|
2198 |
[Mozilla/5.0 (Twiceler*)]
|
2199 |
Parent=Search Engines
|
2200 |
Browser="Twiceler"
|
2201 |
-
isBanned=true
|
2202 |
|
2203 |
[Mozilla/5.0 CostaCider Search*]
|
2204 |
Parent=Search Engines
|
@@ -2215,7 +2320,6 @@ Browser="NavissoBot"
|
|
2215 |
[NextGenSearchBot*(for information visit *)]
|
2216 |
Parent=Search Engines
|
2217 |
Browser="ZoomInfo"
|
2218 |
-
isBanned=true
|
2219 |
|
2220 |
[Norbert the Spider(Burf.com)]
|
2221 |
Parent=Search Engines
|
@@ -2229,6 +2333,10 @@ Browser="nuSearch"
|
|
2229 |
Parent=Search Engines
|
2230 |
Browser="ObjectsSearch"
|
2231 |
|
|
|
|
|
|
|
|
|
2232 |
[OpenISearch/1.*]
|
2233 |
Parent=Search Engines
|
2234 |
Browser="OpenISearch (Amazon)"
|
@@ -2281,10 +2389,14 @@ Browser="Searchmee!"
|
|
2281 |
Parent=Search Engines
|
2282 |
Browser="Seekbot"
|
2283 |
|
2284 |
-
[SiteSpider
|
2285 |
Parent=Search Engines
|
2286 |
Browser="SiteSpider"
|
2287 |
|
|
|
|
|
|
|
|
|
2288 |
[Spinne/*]
|
2289 |
Parent=Search Engines
|
2290 |
Browser="Spinne"
|
@@ -2296,12 +2408,10 @@ Browser="Sproose"
|
|
2296 |
[Sqeobot/0.*]
|
2297 |
Parent=Search Engines
|
2298 |
Browser="Branzel"
|
2299 |
-
isBanned=true
|
2300 |
|
2301 |
[SquigglebotBot/*]
|
2302 |
Parent=Search Engines
|
2303 |
Browser="SquigglebotBot"
|
2304 |
-
isBanned=true
|
2305 |
|
2306 |
[StackRambler/*]
|
2307 |
Parent=Search Engines
|
@@ -2322,12 +2432,10 @@ Browser="Szukacz"
|
|
2322 |
[Tarantula/*]
|
2323 |
Parent=Search Engines
|
2324 |
Browser="Tarantula"
|
2325 |
-
isBanned=true
|
2326 |
|
2327 |
[TerrawizBot/*]
|
2328 |
Parent=Search Engines
|
2329 |
Browser="TerrawizBot"
|
2330 |
-
isBanned=true
|
2331 |
|
2332 |
[Tkensaku/*]
|
2333 |
Parent=Search Engines
|
@@ -2336,12 +2444,14 @@ Browser="Tkensaku"
|
|
2336 |
[TMCrawler]
|
2337 |
Parent=Search Engines
|
2338 |
Browser="TMCrawler"
|
2339 |
-
|
|
|
|
|
|
|
2340 |
|
2341 |
[Twingly Recon]
|
2342 |
Parent=Search Engines
|
2343 |
Browser="Twingly Recon"
|
2344 |
-
isBanned=true
|
2345 |
|
2346 |
[updated/*]
|
2347 |
Parent=Search Engines
|
@@ -2366,17 +2476,14 @@ Browser="Voyager"
|
|
2366 |
[wadaino.jp-crawler*]
|
2367 |
Parent=Search Engines
|
2368 |
Browser="wadaino.jp"
|
2369 |
-
isBanned=true
|
2370 |
|
2371 |
[WebAlta Crawler/*]
|
2372 |
Parent=Search Engines
|
2373 |
Browser="WebAlta Crawler"
|
2374 |
-
isBanned=true
|
2375 |
|
2376 |
[WebCorp/*]
|
2377 |
Parent=Search Engines
|
2378 |
Browser="WebCorp"
|
2379 |
-
isBanned=true
|
2380 |
|
2381 |
[webcrawl.net]
|
2382 |
Parent=Search Engines
|
@@ -2385,7 +2492,6 @@ Browser="webcrawl.net"
|
|
2385 |
[WISEbot/*]
|
2386 |
Parent=Search Engines
|
2387 |
Browser="WISEbot"
|
2388 |
-
isBanned=true
|
2389 |
|
2390 |
[Wotbox/*]
|
2391 |
Parent=Search Engines
|
@@ -2406,7 +2512,6 @@ Browser="YadowsCrawler"
|
|
2406 |
[YodaoBot/*]
|
2407 |
Parent=Search Engines
|
2408 |
Browser="YodaoBot"
|
2409 |
-
isBanned=true
|
2410 |
|
2411 |
[ZeBot_www.ze.bz*]
|
2412 |
Parent=Search Engines
|
@@ -2424,16 +2529,80 @@ Browser="ZipppBot"
|
|
2424 |
Parent=Translators
|
2425 |
Browser="ATA-Translation-Service"
|
2426 |
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2430 |
|
2431 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hatena
|
2432 |
|
2433 |
[Hatena]
|
2434 |
Parent=DefaultProperties
|
|
|
2435 |
Browser="Hatena"
|
2436 |
-
isBanned=true
|
2437 |
Crawler=true
|
2438 |
|
2439 |
[Feed::Find/*]
|
@@ -2470,17 +2639,16 @@ Browser="URI::Fetch"
|
|
2470 |
|
2471 |
[Internet Archive]
|
2472 |
Parent=DefaultProperties
|
|
|
2473 |
Browser="Internet Archive"
|
2474 |
Frames=true
|
2475 |
IFrames=true
|
2476 |
Tables=true
|
2477 |
-
isBanned=true
|
2478 |
Crawler=true
|
2479 |
|
2480 |
[*heritrix*]
|
2481 |
Parent=Internet Archive
|
2482 |
Browser="Heritrix"
|
2483 |
-
isBanned=true
|
2484 |
|
2485 |
[ia_archiver*]
|
2486 |
Parent=Internet Archive
|
@@ -2490,20 +2658,21 @@ Browser="Internet Archive"
|
|
2490 |
Parent=Internet Archive
|
2491 |
Browser="InternetArchive"
|
2492 |
|
2493 |
-
[Mozilla/5.0 (compatible; archive.org_bot
|
2494 |
Parent=Internet Archive
|
2495 |
|
2496 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch
|
2497 |
|
2498 |
[Nutch]
|
2499 |
Parent=DefaultProperties
|
|
|
2500 |
Browser="Nutch"
|
2501 |
-
|
|
|
2502 |
Crawler=true
|
2503 |
|
2504 |
[*Nutch*]
|
2505 |
Parent=Nutch
|
2506 |
-
isBanned=true
|
2507 |
|
2508 |
[CazoodleBot/*]
|
2509 |
Parent=Nutch
|
@@ -2520,11 +2689,16 @@ Parent=Nutch
|
|
2520 |
|
2521 |
[Webaroo]
|
2522 |
Parent=DefaultProperties
|
|
|
2523 |
Browser="Webaroo"
|
|
|
|
|
|
|
2524 |
|
2525 |
[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Webaroo/*)]
|
2526 |
Parent=Webaroo
|
2527 |
Browser="Webaroo"
|
|
|
2528 |
|
2529 |
[Mozilla/5.0 (Windows; U; Windows *; *; rv:*) Gecko/* Firefox/* webaroo/*]
|
2530 |
Parent=Webaroo
|
@@ -2534,25 +2708,10 @@ Browser="Webaroo"
|
|
2534 |
|
2535 |
[Word Press]
|
2536 |
Parent=DefaultProperties
|
|
|
2537 |
Browser="Word Press"
|
2538 |
-
Alpha=true
|
2539 |
-
Beta=true
|
2540 |
-
Win16=true
|
2541 |
-
Win32=true
|
2542 |
-
Win64=true
|
2543 |
Frames=true
|
2544 |
-
IFrames=true
|
2545 |
Tables=true
|
2546 |
-
Cookies=true
|
2547 |
-
BackgroundSounds=true
|
2548 |
-
CDF=true
|
2549 |
-
VBScript=true
|
2550 |
-
JavaApplets=true
|
2551 |
-
JavaScript=true
|
2552 |
-
ActiveXControls=true
|
2553 |
-
isBanned=true
|
2554 |
-
isMobileDevice=true
|
2555 |
-
isSyndicationReader=true
|
2556 |
Crawler=true
|
2557 |
|
2558 |
[WordPress-B-/2.*]
|
@@ -2587,8 +2746,8 @@ Browser="Bluecoat"
|
|
2587 |
|
2588 |
[Copyright/Plagiarism]
|
2589 |
Parent=DefaultProperties
|
|
|
2590 |
Browser="Copyright/Plagiarism"
|
2591 |
-
isBanned=true
|
2592 |
Crawler=true
|
2593 |
|
2594 |
[BDFetch]
|
@@ -2643,6 +2802,7 @@ Browser="TutorGig"
|
|
2643 |
|
2644 |
[DNS Tools]
|
2645 |
Parent=DefaultProperties
|
|
|
2646 |
Browser="DNS Tools"
|
2647 |
Crawler=true
|
2648 |
|
@@ -2662,11 +2822,8 @@ Browser="OpenDNS Domain Crawler"
|
|
2662 |
|
2663 |
[Download Managers]
|
2664 |
Parent=DefaultProperties
|
|
|
2665 |
Browser="Download Managers"
|
2666 |
-
Frames=true
|
2667 |
-
IFrames=true
|
2668 |
-
Tables=true
|
2669 |
-
isBanned=true
|
2670 |
Crawler=true
|
2671 |
|
2672 |
[A1 Website Download/1.* (*) miggibot]
|
@@ -2689,10 +2846,6 @@ Browser="Beamer"
|
|
2689 |
Parent=Download Managers
|
2690 |
Browser="BitBeamer"
|
2691 |
|
2692 |
-
[BitTorrent/*]
|
2693 |
-
Parent=Download Managers
|
2694 |
-
Browser="BitTorrent"
|
2695 |
-
|
2696 |
[DA *]
|
2697 |
Parent=Download Managers
|
2698 |
Browser="Download Accelerator"
|
@@ -2893,11 +3046,8 @@ Browser="Xaldon WebSpider"
|
|
2893 |
|
2894 |
[E-Mail Harvesters]
|
2895 |
Parent=DefaultProperties
|
|
|
2896 |
Browser="E-Mail Harvesters"
|
2897 |
-
Frames=true
|
2898 |
-
IFrames=true
|
2899 |
-
Tables=true
|
2900 |
-
isBanned=true
|
2901 |
Crawler=true
|
2902 |
|
2903 |
[*E-Mail Address Extractor*]
|
@@ -3004,6 +3154,7 @@ Browser="ZIBB Crawler"
|
|
3004 |
|
3005 |
[Feeds Blogs]
|
3006 |
Parent=DefaultProperties
|
|
|
3007 |
Browser="Feeds Blogs"
|
3008 |
isSyndicationReader=true
|
3009 |
Crawler=true
|
@@ -3056,8 +3207,10 @@ Browser="WordPress"
|
|
3056 |
|
3057 |
[Feeds Syndicators]
|
3058 |
Parent=DefaultProperties
|
|
|
3059 |
Browser="Feeds Syndicators"
|
3060 |
isSyndicationReader=true
|
|
|
3061 |
|
3062 |
[*LinkLint*]
|
3063 |
Parent=Feeds Syndicators
|
@@ -3065,6 +3218,7 @@ Browser="LinkLint"
|
|
3065 |
|
3066 |
[*NetNewsWire/*]
|
3067 |
Parent=Feeds Syndicators
|
|
|
3068 |
|
3069 |
[*NetVisualize*]
|
3070 |
Parent=Feeds Syndicators
|
@@ -3077,21 +3231,23 @@ Browser="AideRSS"
|
|
3077 |
[AideRSS/2.0 (aiderss.com)]
|
3078 |
Parent=Feeds Syndicators
|
3079 |
Browser="AideRSS"
|
3080 |
-
isBanned=true
|
3081 |
|
3082 |
[Akregator/*]
|
3083 |
Parent=Feeds Syndicators
|
3084 |
Browser="Akregator"
|
3085 |
|
|
|
|
|
|
|
|
|
3086 |
[AppleSyndication/*]
|
3087 |
Parent=Feeds Syndicators
|
3088 |
Browser="Safari RSS"
|
3089 |
-
Platform=MacOSX
|
3090 |
|
3091 |
[Cocoal.icio.us/* (*)*]
|
3092 |
Parent=Feeds Syndicators
|
3093 |
Browser="Cocoal.icio.us"
|
3094 |
-
isBanned=true
|
3095 |
|
3096 |
[Feed43 Proxy/* (*)]
|
3097 |
Parent=Feeds Syndicators
|
@@ -3104,7 +3260,7 @@ Browser="FeedBurner"
|
|
3104 |
[FeedDemon/* (*)]
|
3105 |
Parent=Feeds Syndicators
|
3106 |
Browser="FeedDemon"
|
3107 |
-
Platform=Win32
|
3108 |
|
3109 |
[FeedDigest/* (*)]
|
3110 |
Parent=Feeds Syndicators
|
@@ -3154,12 +3310,10 @@ Browser="intraVnews"
|
|
3154 |
[JetBrains Omea Reader*]
|
3155 |
Parent=Feeds Syndicators
|
3156 |
Browser="Omea Reader"
|
3157 |
-
isBanned=true
|
3158 |
|
3159 |
-
[Liferea/1
|
3160 |
Parent=Feeds Syndicators
|
3161 |
Browser="Liferea"
|
3162 |
-
isBanned=true
|
3163 |
|
3164 |
[livedoor FeedFetcher/0.0* (http://reader.livedoor.com/;*)]
|
3165 |
Parent=Feeds Syndicators
|
@@ -3175,7 +3329,7 @@ Browser="MagpieRSS"
|
|
3175 |
[Mobitype * (compatible; Mozilla/*; MSIE *.*; Windows *)]
|
3176 |
Parent=Feeds Syndicators
|
3177 |
Browser="Mobitype"
|
3178 |
-
Platform=Win32
|
3179 |
|
3180 |
[Mozilla/5.0 (*; Rojo *; http://www.rojo.com/corporate/help/agg; *)*]
|
3181 |
Parent=Feeds Syndicators
|
@@ -3271,7 +3425,6 @@ Browser="SimplePie"
|
|
3271 |
[Strategic Board Bot (?http://www.strategicboard.com)]
|
3272 |
Parent=Feeds Syndicators
|
3273 |
Browser="Strategic Board Bot"
|
3274 |
-
isBanned=true
|
3275 |
|
3276 |
[TargetYourNews.com bot]
|
3277 |
Parent=Feeds Syndicators
|
@@ -3301,8 +3454,10 @@ Browser="Wizz"
|
|
3301 |
|
3302 |
[General RSS]
|
3303 |
Parent=DefaultProperties
|
|
|
3304 |
Browser="General RSS"
|
3305 |
isSyndicationReader=true
|
|
|
3306 |
|
3307 |
[AideRSS/1.0 (aiderss.com); * subscribers]
|
3308 |
Parent=General RSS
|
@@ -3311,6 +3466,10 @@ Version=1.0
|
|
3311 |
MajorVer=1
|
3312 |
MinorVer=0
|
3313 |
|
|
|
|
|
|
|
|
|
3314 |
[CC Metadata Scaper http://wiki.creativecommons.org/Metadata_Scraper]
|
3315 |
Parent=General RSS
|
3316 |
Browser="CC Metadata Scaper"
|
@@ -3327,64 +3486,41 @@ Browser="Inclue"
|
|
3327 |
Parent=General RSS
|
3328 |
Browser="Ruunk"
|
3329 |
|
3330 |
-
[
|
3331 |
Parent=General RSS
|
3332 |
-
Browser="
|
3333 |
-
Platform=WinVista
|
3334 |
|
3335 |
-
[
|
3336 |
-
Parent=
|
3337 |
-
Browser="
|
3338 |
-
Version=0
|
3339 |
-
MajorVer=
|
3340 |
-
MinorVer=
|
3341 |
-
Platform=
|
3342 |
-
CssVersion=2
|
3343 |
-
supportsCSS=true
|
3344 |
|
3345 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Validation Checkers
|
3346 |
|
3347 |
[HTML Validators]
|
3348 |
Parent=DefaultProperties
|
|
|
3349 |
Browser="HTML Validators"
|
3350 |
-
Frames=true
|
3351 |
-
IFrames=true
|
3352 |
-
Tables=true
|
3353 |
Crawler=true
|
3354 |
|
3355 |
[(HTML Validator http://www.searchengineworld.com/validator/)]
|
3356 |
Parent=HTML Validators
|
3357 |
Browser="Search Engine World HTML Validator"
|
3358 |
|
3359 |
-
[FeedValidator
|
3360 |
Parent=HTML Validators
|
3361 |
Browser="FeedValidator"
|
3362 |
-
Version=1.3
|
3363 |
-
MajorVer=1
|
3364 |
-
MinorVer=3
|
3365 |
-
|
3366 |
-
[Jigsaw/* W3C_CSS_Validator_JFouffa/*]
|
3367 |
-
Parent=HTML Validators
|
3368 |
-
Browser="Jigsaw CSS Validator"
|
3369 |
|
3370 |
[Search Engine World Robots.txt Validator*]
|
3371 |
Parent=HTML Validators
|
3372 |
Browser="Search Engine World Robots.txt Validator"
|
3373 |
|
3374 |
-
[
|
3375 |
-
Parent=HTML Validators
|
3376 |
-
Browser="W3C Validator"
|
3377 |
-
|
3378 |
-
[W3CLineMode/*]
|
3379 |
-
Parent=HTML Validators
|
3380 |
-
Browser="W3C Line Mode"
|
3381 |
-
|
3382 |
-
[Weblide/2.? beta*]
|
3383 |
Parent=HTML Validators
|
3384 |
Browser="Weblide"
|
3385 |
-
Version=2.0
|
3386 |
-
MajorVer=2
|
3387 |
-
MinorVer=0
|
3388 |
Beta=true
|
3389 |
|
3390 |
[WebmasterWorld StickyMail Server Header Checker*]
|
@@ -3393,16 +3529,14 @@ Browser="WebmasterWorld Server Header Checker"
|
|
3393 |
|
3394 |
[WWWC/*]
|
3395 |
Parent=HTML Validators
|
|
|
3396 |
|
3397 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Image Crawlers
|
3398 |
|
3399 |
[Image Crawlers]
|
3400 |
Parent=DefaultProperties
|
|
|
3401 |
Browser="Image Crawlers"
|
3402 |
-
Frames=true
|
3403 |
-
IFrames=true
|
3404 |
-
Tables=true
|
3405 |
-
isBanned=true
|
3406 |
Crawler=true
|
3407 |
|
3408 |
[*CFNetwork*]
|
@@ -3420,7 +3554,6 @@ Browser="Camcrawler"
|
|
3420 |
[CydralSpider/*]
|
3421 |
Parent=Image Crawlers
|
3422 |
Browser="Cydral Web Image Search"
|
3423 |
-
isBanned=true
|
3424 |
|
3425 |
[Der gro\xdfe BilderSauger*]
|
3426 |
Parent=Image Crawlers
|
@@ -3442,14 +3575,14 @@ Browser="HTML2JPG"
|
|
3442 |
Parent=Image Crawlers
|
3443 |
Browser="IconSurf"
|
3444 |
|
3445 |
-
[kalooga/KaloogaBot*]
|
3446 |
-
Parent=Image Crawlers
|
3447 |
-
Browser="KaloogaBot"
|
3448 |
-
|
3449 |
[Mister PIX*]
|
3450 |
Parent=Image Crawlers
|
3451 |
Browser="Mister PIX"
|
3452 |
|
|
|
|
|
|
|
|
|
3453 |
[Mozilla/5.0 (Macintosh; U; *Mac OS X; *) AppleWebKit/* (*) Pandora/2.*]
|
3454 |
Parent=Image Crawlers
|
3455 |
Browser="Pandora"
|
@@ -3462,6 +3595,10 @@ Browser="naoFavicon4IE"
|
|
3462 |
Parent=Image Crawlers
|
3463 |
Browser="pixfinder"
|
3464 |
|
|
|
|
|
|
|
|
|
3465 |
[rssImagesBot/0.1 (*http://herbert.groot.jebbink.nl/?app=rssImages)]
|
3466 |
Parent=Image Crawlers
|
3467 |
Browser="rssImagesBot"
|
@@ -3482,10 +3619,8 @@ Browser="Custo"
|
|
3482 |
|
3483 |
[Link Checkers]
|
3484 |
Parent=DefaultProperties
|
|
|
3485 |
Browser="Link Checkers"
|
3486 |
-
Frames=true
|
3487 |
-
IFrames=true
|
3488 |
-
Tables=true
|
3489 |
Crawler=true
|
3490 |
|
3491 |
[!Susie (http://www.sync2it.com/susie)]
|
@@ -3508,10 +3643,6 @@ Browser="LinksManager"
|
|
3508 |
Parent=Link Checkers
|
3509 |
Browser="Powermarks"
|
3510 |
|
3511 |
-
[*W3C-checklink/*]
|
3512 |
-
Parent=Link Checkers
|
3513 |
-
Browser="W3C Link Checker"
|
3514 |
-
|
3515 |
[*Web Link Validator*]
|
3516 |
Parent=Link Checkers
|
3517 |
Browser="Web Link Validator"
|
@@ -3519,7 +3650,6 @@ Browser="Web Link Validator"
|
|
3519 |
[*Zeus*]
|
3520 |
Parent=Link Checkers
|
3521 |
Browser="Zeus"
|
3522 |
-
isBanned=true
|
3523 |
|
3524 |
[ActiveBookmark *]
|
3525 |
Parent=Link Checkers
|
@@ -3600,7 +3730,6 @@ Browser="JRTwine"
|
|
3600 |
[Link Valet Online*]
|
3601 |
Parent=Link Checkers
|
3602 |
Browser="Link Valet"
|
3603 |
-
isBanned=true
|
3604 |
|
3605 |
[LinkAlarm/*]
|
3606 |
Parent=Link Checkers
|
@@ -3617,7 +3746,6 @@ Browser="LinkChecker"
|
|
3617 |
[LinkextractorPro*]
|
3618 |
Parent=Link Checkers
|
3619 |
Browser="LinkextractorPro"
|
3620 |
-
isBanned=true
|
3621 |
|
3622 |
[LinkLint-checkonly/*]
|
3623 |
Parent=Link Checkers
|
@@ -3642,7 +3770,6 @@ Browser="MetaGer-LinkChecker"
|
|
3642 |
[Mozilla/* (compatible; linktiger/*; *http://www.linktiger.com*)]
|
3643 |
Parent=Link Checkers
|
3644 |
Browser="LinkTiger"
|
3645 |
-
isBanned=true
|
3646 |
|
3647 |
[Mozilla/4.0 (Compatible); URLBase*]
|
3648 |
Parent=Link Checkers
|
@@ -3655,6 +3782,7 @@ Browser="NetPromoter Link Utility"
|
|
3655 |
[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Web Link Validator*]
|
3656 |
Parent=Link Checkers
|
3657 |
Browser="Web Link Validator"
|
|
|
3658 |
Win32=true
|
3659 |
|
3660 |
[Mozilla/4.0 (compatible; MSIE 7.0; Win32) Link Commander 3.0]
|
@@ -3663,7 +3791,7 @@ Browser="Link Commander"
|
|
3663 |
Version=3.0
|
3664 |
MajorVer=3
|
3665 |
MinorVer=0
|
3666 |
-
Platform=Win32
|
3667 |
|
3668 |
[Mozilla/4.0 (compatible; smartBot/1.*; checking links; *)]
|
3669 |
Parent=Link Checkers
|
@@ -3676,7 +3804,6 @@ Browser="SuperCleaner"
|
|
3676 |
[Mozilla/5.0 gURLChecker/*]
|
3677 |
Parent=Link Checkers
|
3678 |
Browser="gURLChecker"
|
3679 |
-
isBanned=true
|
3680 |
|
3681 |
[Newsgroupreporter LinkCheck]
|
3682 |
Parent=Link Checkers
|
@@ -3689,7 +3816,6 @@ Browser="onCHECK Linkchecker"
|
|
3689 |
[online link validator (http://www.dead-links.com/)]
|
3690 |
Parent=Link Checkers
|
3691 |
Browser="Dead-Links.com"
|
3692 |
-
isBanned=true
|
3693 |
|
3694 |
[REL Link Checker*]
|
3695 |
Parent=Link Checkers
|
@@ -3706,14 +3832,12 @@ Browser="Robozilla"
|
|
3706 |
[RPT-HTTPClient/*]
|
3707 |
Parent=Link Checkers
|
3708 |
Browser="RPT-HTTPClient"
|
3709 |
-
isBanned=true
|
3710 |
|
3711 |
[SafariBookmarkChecker*(?http://www.coriolis.ch/)]
|
3712 |
Parent=Link Checkers
|
3713 |
Browser="SafariBookmarkChecker"
|
3714 |
-
Platform=MacOSX
|
3715 |
CssVersion=2
|
3716 |
-
supportsCSS=true
|
3717 |
|
3718 |
[Simpy/* (Simpy; http://www.simpy.com/?ref=bot; feedback at simpy dot com)]
|
3719 |
Parent=Link Checkers
|
@@ -3727,8 +3851,9 @@ Browser="SiteBar"
|
|
3727 |
Parent=Link Checkers
|
3728 |
Browser="Susie"
|
3729 |
|
3730 |
-
[URLBase
|
3731 |
Parent=Link Checkers
|
|
|
3732 |
|
3733 |
[VSE/*]
|
3734 |
Parent=Link Checkers
|
@@ -3745,7 +3870,6 @@ Browser="WorQmada"
|
|
3745 |
[Xenu* Link Sleuth*]
|
3746 |
Parent=Link Checkers
|
3747 |
Browser="Xenu's Link Sleuth"
|
3748 |
-
isBanned=true
|
3749 |
|
3750 |
[Z-Add Link Checker*]
|
3751 |
Parent=Link Checkers
|
@@ -3755,13 +3879,13 @@ Browser="Z-Add Link Checker"
|
|
3755 |
|
3756 |
[Microsoft]
|
3757 |
Parent=DefaultProperties
|
|
|
3758 |
Browser="Microsoft"
|
3759 |
-
|
3760 |
|
3761 |
[Live (http://www.live.com/)]
|
3762 |
Parent=Microsoft
|
3763 |
Browser="Microsoft Live"
|
3764 |
-
isBanned=false
|
3765 |
isSyndicationReader=true
|
3766 |
|
3767 |
[MFC Foundation Class Library*]
|
@@ -3822,12 +3946,11 @@ Browser="Microsoft Excel"
|
|
3822 |
Version=12.0
|
3823 |
MajorVer=12
|
3824 |
MinorVer=0
|
3825 |
-
Platform=MacOSX
|
3826 |
|
3827 |
[MSN Feed Manager]
|
3828 |
Parent=Microsoft
|
3829 |
Browser="MSN Feed Manager"
|
3830 |
-
isBanned=false
|
3831 |
isSyndicationReader=true
|
3832 |
|
3833 |
[MSProxy/*]
|
@@ -3838,15 +3961,14 @@ Browser="MS Proxy"
|
|
3838 |
|
3839 |
[Miscellaneous Browsers]
|
3840 |
Parent=DefaultProperties
|
|
|
3841 |
Browser="Miscellaneous Browsers"
|
3842 |
-
|
3843 |
-
Tables=true
|
3844 |
-
Cookies=true
|
3845 |
|
3846 |
[*Amiga*]
|
3847 |
Parent=Miscellaneous Browsers
|
3848 |
Browser="Amiga"
|
3849 |
-
Platform=Amiga
|
3850 |
|
3851 |
[*avantbrowser*]
|
3852 |
Parent=Miscellaneous Browsers
|
@@ -3855,7 +3977,6 @@ Browser="Avant Browser"
|
|
3855 |
[12345]
|
3856 |
Parent=Miscellaneous Browsers
|
3857 |
Browser="12345"
|
3858 |
-
isBanned=true
|
3859 |
|
3860 |
[1st ZipCommander (Net) - http://www.zipcommander.com/]
|
3861 |
Parent=Miscellaneous Browsers
|
@@ -3875,11 +3996,10 @@ Browser="EVE-minibrowser"
|
|
3875 |
IFrames=false
|
3876 |
Tables=false
|
3877 |
BackgroundSounds=false
|
|
|
3878 |
VBScript=false
|
3879 |
JavaApplets=false
|
3880 |
-
JavaScript=false
|
3881 |
ActiveXControls=false
|
3882 |
-
isBanned=false
|
3883 |
Crawler=false
|
3884 |
|
3885 |
[Godzilla/* (Basic*; *; Commodore C=64; *; rv:1.*)*]
|
@@ -3894,22 +4014,20 @@ IFrames=true
|
|
3894 |
Tables=true
|
3895 |
Cookies=true
|
3896 |
BackgroundSounds=true
|
|
|
3897 |
VBScript=true
|
3898 |
JavaApplets=true
|
3899 |
-
JavaScript=true
|
3900 |
ActiveXControls=true
|
3901 |
CssVersion=2
|
3902 |
-
supportsCSS=true
|
3903 |
|
3904 |
[Kopiczek/* (WyderOS*; *)]
|
3905 |
Parent=Miscellaneous Browsers
|
3906 |
Browser="Kopiczek"
|
3907 |
-
Platform=WyderOS
|
3908 |
IFrames=true
|
|
|
3909 |
JavaApplets=true
|
3910 |
-
JavaScript=true
|
3911 |
CssVersion=2
|
3912 |
-
supportsCSS=true
|
3913 |
|
3914 |
[Mozilla/* (*) - BrowseX (*)]
|
3915 |
Parent=Miscellaneous Browsers
|
@@ -3918,7 +4036,7 @@ Browser="BrowseX"
|
|
3918 |
[Mozilla/* (Win32;*Escape?*; ?)]
|
3919 |
Parent=Miscellaneous Browsers
|
3920 |
Browser="Escape"
|
3921 |
-
Platform=Win32
|
3922 |
|
3923 |
[Mozilla/4.0 (compatible; ibisBrowser)]
|
3924 |
Parent=Miscellaneous Browsers
|
@@ -3928,6 +4046,21 @@ Browser="ibisBrowser"
|
|
3928 |
Parent=Miscellaneous Browsers
|
3929 |
Browser="HistoryHound"
|
3930 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3931 |
[NetRecorder*]
|
3932 |
Parent=Miscellaneous Browsers
|
3933 |
Browser="NetRecorder"
|
@@ -3957,24 +4090,19 @@ Browser="WWW Browser"
|
|
3957 |
Version=1.69
|
3958 |
MajorVer=1
|
3959 |
MinorVer=69
|
3960 |
-
Platform=Win16
|
3961 |
CssVersion=3
|
3962 |
-
supportsCSS=true
|
3963 |
|
3964 |
[*Netcraft Webserver Survey*]
|
3965 |
Parent=Netcraft
|
3966 |
Browser="Netcraft Webserver Survey"
|
3967 |
-
isBanned=true
|
3968 |
|
3969 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Offline Browsers
|
3970 |
|
3971 |
[Offline Browsers]
|
3972 |
Parent=DefaultProperties
|
|
|
3973 |
Browser="Offline Browsers"
|
3974 |
-
Frames=true
|
3975 |
-
Tables=true
|
3976 |
-
Cookies=true
|
3977 |
-
isBanned=true
|
3978 |
Crawler=true
|
3979 |
|
3980 |
[*Check&Get*]
|
@@ -4013,13 +4141,12 @@ Browser="Teleport"
|
|
4013 |
|
4014 |
[Online Scanners]
|
4015 |
Parent=DefaultProperties
|
|
|
4016 |
Browser="Online Scanners"
|
4017 |
-
isBanned=true
|
4018 |
|
4019 |
[JoeDog/* (X11; I; Siege *)]
|
4020 |
Parent=Online Scanners
|
4021 |
Browser="JoeDog"
|
4022 |
-
isBanned=false
|
4023 |
|
4024 |
[Morfeus Fucking Scanner]
|
4025 |
Parent=Online Scanners
|
@@ -4041,8 +4168,8 @@ Browser="Secure Computing Corporation"
|
|
4041 |
|
4042 |
[Proxy Servers]
|
4043 |
Parent=DefaultProperties
|
|
|
4044 |
Browser="Proxy Servers"
|
4045 |
-
isBanned=true
|
4046 |
|
4047 |
[*squid*]
|
4048 |
Parent=Proxy Servers
|
@@ -4091,7 +4218,6 @@ Browser="SaferSurf"
|
|
4091 |
[Mozilla/5.0 (compatible; del.icio.us-thumbnails/*; *) KHTML/* (like Gecko)]
|
4092 |
Parent=Proxy Servers
|
4093 |
Browser="Yahoo!"
|
4094 |
-
isBanned=true
|
4095 |
Crawler=true
|
4096 |
|
4097 |
[Nutscrape]
|
@@ -4109,7 +4235,6 @@ Browser="Privoxy"
|
|
4109 |
[ProxyTester*]
|
4110 |
Parent=Proxy Servers
|
4111 |
Browser="ProxyTester"
|
4112 |
-
isBanned=true
|
4113 |
Crawler=true
|
4114 |
|
4115 |
[SilentSurf*]
|
@@ -4136,12 +4261,13 @@ Browser="SurfControl"
|
|
4136 |
|
4137 |
[Research Projects]
|
4138 |
Parent=DefaultProperties
|
|
|
4139 |
Browser="Research Projects"
|
4140 |
-
isBanned=true
|
4141 |
Crawler=true
|
4142 |
|
4143 |
[*research*]
|
4144 |
Parent=Research Projects
|
|
|
4145 |
|
4146 |
[AcadiaUniversityWebCensusClient]
|
4147 |
Parent=Research Projects
|
@@ -4174,16 +4300,28 @@ Browser="Gulper Web Bot"
|
|
4174 |
Parent=Research Projects
|
4175 |
Browser="HooWWWer"
|
4176 |
|
4177 |
-
[http://buytaert.net/crawler]
|
4178 |
-
Parent=Research Projects
|
4179 |
-
|
4180 |
[inetbot/* (?http://www.inetbot.com/bot.html)]
|
4181 |
Parent=Research Projects
|
4182 |
Browser="inetbot"
|
4183 |
|
4184 |
-
[IRLbot
|
4185 |
Parent=Research Projects
|
4186 |
Browser="IRLbot"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4187 |
|
4188 |
[JUST-CRAWLER(*)]
|
4189 |
Parent=Research Projects
|
@@ -4204,7 +4342,7 @@ MinorVer=0
|
|
4204 |
Parent=Research Projects
|
4205 |
Browser="Theophrastus"
|
4206 |
|
4207 |
-
[Mozilla/5.0 (compatible; Webscan v0.*;
|
4208 |
Parent=Research Projects
|
4209 |
Browser="Webscan"
|
4210 |
|
@@ -4265,11 +4403,8 @@ Browser="Zao"
|
|
4265 |
|
4266 |
[Rippers]
|
4267 |
Parent=DefaultProperties
|
4268 |
-
|
4269 |
-
|
4270 |
-
IFrames=true
|
4271 |
-
Tables=true
|
4272 |
-
isBanned=true
|
4273 |
Crawler=true
|
4274 |
|
4275 |
[*grub*]
|
@@ -4282,13 +4417,15 @@ Browser="IP*Works"
|
|
4282 |
|
4283 |
[*java*]
|
4284 |
Parent=Rippers
|
|
|
4285 |
|
4286 |
-
[*libwww
|
4287 |
Parent=Rippers
|
4288 |
-
Browser="libwww
|
4289 |
|
4290 |
[*WebGrabber*]
|
4291 |
Parent=Rippers
|
|
|
4292 |
|
4293 |
[*WinHttpRequest*]
|
4294 |
Parent=Rippers
|
@@ -4381,6 +4518,7 @@ Browser="DISCo Pump"
|
|
4381 |
[eStyleSearch * (compatible; MSIE 6.0; Windows NT 5.0)]
|
4382 |
Parent=Rippers
|
4383 |
Browser="eStyleSearch"
|
|
|
4384 |
Win32=true
|
4385 |
|
4386 |
[ezic.com http agent *]
|
@@ -4389,11 +4527,16 @@ Browser="Ezic.com"
|
|
4389 |
|
4390 |
[fetch libfetch/*]
|
4391 |
Parent=Rippers
|
|
|
4392 |
|
4393 |
[FGet*]
|
4394 |
Parent=Rippers
|
4395 |
Browser="FGet"
|
4396 |
|
|
|
|
|
|
|
|
|
4397 |
[Flaming AttackBot*]
|
4398 |
Parent=Rippers
|
4399 |
Browser="Flaming AttackBot"
|
@@ -4440,6 +4583,7 @@ Browser="arachnode"
|
|
4440 |
|
4441 |
[httpclient*]
|
4442 |
Parent=Rippers
|
|
|
4443 |
|
4444 |
[httperf/*]
|
4445 |
Parent=Rippers
|
@@ -4467,6 +4611,7 @@ Browser="ICE_GetFile"
|
|
4467 |
|
4468 |
[iexplore.exe]
|
4469 |
Parent=Rippers
|
|
|
4470 |
|
4471 |
[Inet - Eureka App]
|
4472 |
Parent=Rippers
|
@@ -4482,6 +4627,7 @@ Browser="InetURL"
|
|
4482 |
|
4483 |
[Internet Exploiter/*]
|
4484 |
Parent=Rippers
|
|
|
4485 |
|
4486 |
[Internet Explore *]
|
4487 |
Parent=Rippers
|
@@ -4525,6 +4671,7 @@ Browser="libWeb/clsHTTP"
|
|
4525 |
|
4526 |
[lwp*]
|
4527 |
Parent=Rippers
|
|
|
4528 |
|
4529 |
[MFC_Tear_Sample]
|
4530 |
Parent=Rippers
|
@@ -4538,28 +4685,26 @@ Browser="Moozilla"
|
|
4538 |
Parent=Rippers
|
4539 |
Browser="MovableType Web Log"
|
4540 |
|
4541 |
-
[Mozilla
|
4542 |
Parent=Rippers
|
4543 |
-
Browser="
|
4544 |
-
|
|
|
|
|
4545 |
|
4546 |
-
[Mozilla/
|
4547 |
Parent=Rippers
|
|
|
|
|
4548 |
|
4549 |
[Mozilla/3.0 (compatible; Indy Library)]
|
4550 |
Parent=Rippers
|
4551 |
Cookies=true
|
4552 |
|
4553 |
-
[Mozilla/3.01 (compatible;)]
|
4554 |
-
Parent=Rippers
|
4555 |
-
|
4556 |
[Mozilla/4.0 (compatible; BorderManager*)]
|
4557 |
Parent=Rippers
|
4558 |
Browser="Novell BorderManager"
|
4559 |
|
4560 |
-
[Mozilla/4.0 (compatible;)]
|
4561 |
-
Parent=Rippers
|
4562 |
-
|
4563 |
[Mozilla/5.0 (compatible; IPCheck Server Monitor*)]
|
4564 |
Parent=Rippers
|
4565 |
Browser="IPCheck Server Monitor"
|
@@ -4603,6 +4748,7 @@ Browser="PHP"
|
|
4603 |
[PigBlock (Windows NT 5.1; U)*]
|
4604 |
Parent=Rippers
|
4605 |
Browser="PigBlock"
|
|
|
4606 |
Win32=true
|
4607 |
|
4608 |
[Pockey*]
|
@@ -4685,10 +4831,6 @@ Browser="UtilMind HTTPGet"
|
|
4685 |
Parent=Rippers
|
4686 |
Browser="VCI WebViewer"
|
4687 |
|
4688 |
-
[W3CRobot/*]
|
4689 |
-
Parent=Rippers
|
4690 |
-
Browser="W3CRobot"
|
4691 |
-
|
4692 |
[Web Downloader*]
|
4693 |
Parent=Rippers
|
4694 |
Browser="Web Downloader"
|
@@ -4703,6 +4845,7 @@ Browser="Web Magnet"
|
|
4703 |
|
4704 |
[WebAuto/*]
|
4705 |
Parent=Rippers
|
|
|
4706 |
|
4707 |
[webbandit/*]
|
4708 |
Parent=Rippers
|
@@ -4778,6 +4921,7 @@ Browser="WebWhacker"
|
|
4778 |
|
4779 |
[WinHttp*]
|
4780 |
Parent=Rippers
|
|
|
4781 |
|
4782 |
[WinScripter iNet Tools]
|
4783 |
Parent=Rippers
|
@@ -4795,9 +4939,8 @@ Browser="Zend_Http_Client"
|
|
4795 |
|
4796 |
[Site Monitors]
|
4797 |
Parent=DefaultProperties
|
|
|
4798 |
Browser="Site Monitors"
|
4799 |
-
Cookies=true
|
4800 |
-
isBanned=true
|
4801 |
Crawler=true
|
4802 |
|
4803 |
[*EasyRider*]
|
@@ -4807,7 +4950,10 @@ Browser="EasyRider"
|
|
4807 |
[*maxamine.com--robot*]
|
4808 |
Parent=Site Monitors
|
4809 |
Browser="maxamine.com--robot"
|
4810 |
-
|
|
|
|
|
|
|
4811 |
|
4812 |
[*WebMon ?.*]
|
4813 |
Parent=Site Monitors
|
@@ -4820,12 +4966,29 @@ Browser="Kenjin Spider"
|
|
4820 |
[Kevin http://*]
|
4821 |
Parent=Site Monitors
|
4822 |
Browser="Kevin"
|
4823 |
-
isBanned=true
|
4824 |
|
4825 |
[Mozilla/4.0 (compatible; ChangeDetection/*]
|
4826 |
Parent=Site Monitors
|
4827 |
Browser="ChangeDetection"
|
4828 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4829 |
[Myst Monitor Service v*]
|
4830 |
Parent=Site Monitors
|
4831 |
Browser="Myst Monitor Service"
|
@@ -4842,14 +5005,13 @@ Browser="NetMechanic"
|
|
4842 |
Parent=Site Monitors
|
4843 |
Browser="NetReality"
|
4844 |
|
4845 |
-
[Pingdom
|
4846 |
Parent=Site Monitors
|
4847 |
Browser="Pingdom"
|
4848 |
|
4849 |
[Site Valet Online*]
|
4850 |
Parent=Site Monitors
|
4851 |
Browser="Site Valet"
|
4852 |
-
isBanned=true
|
4853 |
|
4854 |
[SITECHECKER]
|
4855 |
Parent=Site Monitors
|
@@ -4858,7 +5020,6 @@ Browser="SITECHECKER"
|
|
4858 |
[sitemonitor@dnsvr.com/*]
|
4859 |
Parent=Site Monitors
|
4860 |
Browser="ZoneEdit Failover Monitor"
|
4861 |
-
isBanned=false
|
4862 |
|
4863 |
[UpTime Checker*]
|
4864 |
Parent=Site Monitors
|
@@ -4870,6 +5031,7 @@ Browser="URL Control"
|
|
4870 |
|
4871 |
[URL_Access/*]
|
4872 |
Parent=Site Monitors
|
|
|
4873 |
|
4874 |
[URLCHECK]
|
4875 |
Parent=Site Monitors
|
@@ -4898,11 +5060,9 @@ Browser="websitepulse checker"
|
|
4898 |
|
4899 |
[Social Networking]
|
4900 |
Parent=DefaultProperties
|
|
|
4901 |
Browser="Social Bookmarkers"
|
4902 |
-
|
4903 |
-
Tables=true
|
4904 |
-
Cookies=true
|
4905 |
-
JavaScript=true
|
4906 |
|
4907 |
[BookmarkBase(2/;http://bookmarkbase.com)]
|
4908 |
Parent=Social Networking
|
@@ -4915,16 +5075,14 @@ Browser="Cocoalicious"
|
|
4915 |
[Mozilla/5.0 (*) Gecko/* Firefox/2.0 OneRiot/1.0 (http://www.oneriot.com) ]
|
4916 |
Parent=Social Networking
|
4917 |
Browser="OneRiot"
|
4918 |
-
isBanned=true
|
4919 |
|
4920 |
-
[Mozilla/5.0 (compatible; FriendFeedBot/0.*;
|
4921 |
Parent=Social Networking
|
4922 |
Browser="FriendFeedBot"
|
4923 |
|
4924 |
-
[Mozilla/5.0 (compatible; Twitturls;
|
4925 |
Parent=Social Networking
|
4926 |
Browser="Twitturls"
|
4927 |
-
isBanned=true
|
4928 |
|
4929 |
[SocialSpider-Finder/0.*]
|
4930 |
Parent=Social Networking
|
@@ -4933,7 +5091,6 @@ Browser="SocialSpider-Finder"
|
|
4933 |
[Twitturly*]
|
4934 |
Parent=Social Networking
|
4935 |
Browser="Twitturly"
|
4936 |
-
isBanned=true
|
4937 |
|
4938 |
[WinkBot/*]
|
4939 |
Parent=Social Networking
|
@@ -4943,10 +5100,11 @@ Browser="WinkBot"
|
|
4943 |
|
4944 |
[Translators]
|
4945 |
Parent=DefaultProperties
|
|
|
4946 |
Browser="Translators"
|
4947 |
Frames=true
|
4948 |
Tables=true
|
4949 |
-
|
4950 |
|
4951 |
[Seram Server]
|
4952 |
Parent=Translators
|
@@ -4971,23 +5129,21 @@ Browser="WebTrans"
|
|
4971 |
|
4972 |
[Version Checkers]
|
4973 |
Parent=DefaultProperties
|
|
|
4974 |
Browser="Version Checkers"
|
4975 |
Crawler=true
|
4976 |
|
4977 |
-
[Automated Browscap.ini Updater.
|
4978 |
Parent=Version Checkers
|
4979 |
-
Browser="Automated Browscap
|
4980 |
|
4981 |
-
[
|
4982 |
Parent=Version Checkers
|
4983 |
-
Browser="
|
4984 |
-
MajorVer=1
|
4985 |
-
MinorVer=0
|
4986 |
-
Platform=Win2000
|
4987 |
|
4988 |
[Browscap Mirror System/1.* (browscap.giantrealm.com)]
|
4989 |
Parent=Version Checkers
|
4990 |
-
Browser="Browscap Mirror"
|
4991 |
|
4992 |
[Browscap Mirror v1.30]
|
4993 |
Parent=Version Checkers
|
@@ -4997,101 +5153,121 @@ Browser="Browscap Mirror"
|
|
4997 |
Parent=Version Checkers
|
4998 |
Browser="Browscap updater"
|
4999 |
|
|
|
|
|
|
|
|
|
5000 |
[BrowscapUpdater1.0]
|
5001 |
Parent=Version Checkers
|
|
|
5002 |
|
5003 |
-
[Browser Capabilities Project
|
5004 |
Parent=Version Checkers
|
5005 |
-
Browser="
|
|
|
|
|
|
|
5006 |
|
5007 |
[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]
|
5008 |
Parent=Version Checkers
|
5009 |
Browser="TKC AutoDownloader"
|
5010 |
|
5011 |
-
[
|
5012 |
Parent=Version Checkers
|
5013 |
-
|
5014 |
-
[Code Sample Web Client]
|
5015 |
-
Parent=Version Checkers
|
5016 |
-
Browser="Code Sample Web Client"
|
5017 |
|
5018 |
[Desktop Sidebar*]
|
5019 |
Parent=Version Checkers
|
5020 |
Browser="Desktop Sidebar"
|
5021 |
-
isBanned=true
|
5022 |
|
5023 |
[Mono Browser Capabilities Updater*]
|
5024 |
Parent=Version Checkers
|
5025 |
Browser="Mono Browser Capabilities Updater"
|
5026 |
-
isBanned=true
|
5027 |
|
5028 |
-
[PHP Browser Capabilities Project
|
5029 |
Parent=Version Checkers
|
5030 |
Browser="PHP Browser Capabilities Project"
|
5031 |
|
5032 |
-
[Rewmi/*]
|
5033 |
-
Parent=Version Checkers
|
5034 |
-
isBanned=true
|
5035 |
-
|
5036 |
-
[Subtext Version 1.9* - http://subtextproject.com/ (Microsoft Windows NT 5.2.*)]
|
5037 |
-
Parent=Version Checkers
|
5038 |
-
Browser="Subtext"
|
5039 |
-
|
5040 |
-
[TherapeuticResearch]
|
5041 |
-
Parent=Version Checkers
|
5042 |
-
Browser="TherapeuticResearch"
|
5043 |
-
|
5044 |
[UpdateBrowscap*]
|
5045 |
Parent=Version Checkers
|
5046 |
Browser="UpdateBrowscap"
|
5047 |
|
5048 |
-
[
|
5049 |
Parent=Version Checkers
|
5050 |
-
Browser="
|
5051 |
-
|
5052 |
-
[www.substancia.com AutoHTTPAgent (ver *)]
|
5053 |
-
Parent=Version Checkers
|
5054 |
-
Browser="Subst�ncia"
|
5055 |
|
5056 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; W3C
|
5057 |
|
5058 |
[W3C]
|
5059 |
Parent=DefaultProperties
|
|
|
5060 |
Browser="W3C"
|
5061 |
Crawler=true
|
5062 |
|
|
|
|
|
|
|
|
|
5063 |
[Jigsaw/* W3C_CSS_Validator*/*]
|
5064 |
Parent=W3C
|
5065 |
-
Browser="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5066 |
|
5067 |
-
[W3C-
|
5068 |
Parent=W3C
|
5069 |
-
Browser="W3C
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5070 |
|
5071 |
[W3C-mobileOK/DDC-*]
|
5072 |
Parent=W3C
|
5073 |
-
Browser="W3C
|
5074 |
isMobileDevice=true
|
5075 |
|
5076 |
[W3C-WebCon/*]
|
5077 |
Parent=W3C
|
5078 |
-
Browser="W3C
|
5079 |
|
5080 |
[W3C_Validator/*]
|
5081 |
Parent=W3C
|
5082 |
-
Browser="
|
5083 |
|
5084 |
[W3CLineMode/*]
|
5085 |
Parent=W3C
|
5086 |
-
Browser="
|
|
|
|
|
|
|
|
|
5087 |
|
5088 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Become
|
5089 |
|
5090 |
[Become]
|
5091 |
Parent=DefaultProperties
|
|
|
5092 |
Browser="Become"
|
5093 |
-
Frames=true
|
5094 |
-
Tables=true
|
5095 |
isSyndicationReader=true
|
5096 |
Crawler=true
|
5097 |
|
@@ -5119,27 +5295,18 @@ Browser="BecomeJPBot"
|
|
5119 |
|
5120 |
[Blue Coat Systems]
|
5121 |
Parent=DefaultProperties
|
|
|
5122 |
Browser="Blue Coat Systems"
|
5123 |
-
isBanned=true
|
5124 |
Crawler=true
|
5125 |
|
5126 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Abusers
|
5127 |
-
|
5128 |
-
[Browscap Abusers]
|
5129 |
-
Parent=DefaultProperties
|
5130 |
-
Browser="Browscap Abusers"
|
5131 |
-
isBanned=true
|
5132 |
-
|
5133 |
-
[Apple-PubSub/*]
|
5134 |
-
Parent=Browscap Abusers
|
5135 |
-
Browser="Apple-PubSub"
|
5136 |
-
|
5137 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FeedHub
|
5138 |
|
5139 |
[FeedHub]
|
5140 |
Parent=DefaultProperties
|
|
|
5141 |
Browser="FeedHub"
|
5142 |
isSyndicationReader=true
|
|
|
5143 |
|
5144 |
[FeedHub FeedDiscovery/1.0 (http://www.feedhub.com)]
|
5145 |
Parent=FeedHub
|
@@ -5162,13 +5329,14 @@ Version=1.0
|
|
5162 |
MajorVer=1
|
5163 |
MinorVer=0
|
5164 |
|
|
|
|
|
5165 |
[Internet Content Rating Association]
|
5166 |
Parent=DefaultProperties
|
|
|
5167 |
Browser=""
|
5168 |
Frames=true
|
5169 |
-
IFrames=true
|
5170 |
Tables=true
|
5171 |
-
Cookies=true
|
5172 |
Crawler=true
|
5173 |
|
5174 |
[ICRA_label_generator/1.?]
|
@@ -5179,12 +5347,50 @@ Browser="ICRA_label_generator"
|
|
5179 |
Parent=Internet Content Rating Association
|
5180 |
Browser="ICRA_Semantic_spider"
|
5181 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5182 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NameProtect
|
5183 |
|
5184 |
[NameProtect]
|
5185 |
Parent=DefaultProperties
|
|
|
5186 |
Browser="NameProtect"
|
5187 |
-
isBanned=true
|
5188 |
Crawler=true
|
5189 |
|
5190 |
[abot/*]
|
@@ -5203,14 +5409,13 @@ Browser="NameProtect"
|
|
5203 |
|
5204 |
[Netcraft]
|
5205 |
Parent=DefaultProperties
|
|
|
5206 |
Browser="Netcraft"
|
5207 |
-
isBanned=true
|
5208 |
Crawler=true
|
5209 |
|
5210 |
[*Netcraft Web Server Survey*]
|
5211 |
Parent=Netcraft
|
5212 |
Browser="Netcraft Webserver Survey"
|
5213 |
-
isBanned=true
|
5214 |
|
5215 |
[Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; *info@netcraft.com)]
|
5216 |
Parent=Netcraft
|
@@ -5220,8 +5425,10 @@ Browser="NetcraftSurveyAgent"
|
|
5220 |
|
5221 |
[NewsGator]
|
5222 |
Parent=DefaultProperties
|
|
|
5223 |
Browser="NewsGator"
|
5224 |
isSyndicationReader=true
|
|
|
5225 |
|
5226 |
[MarsEdit*]
|
5227 |
Parent=NewsGator
|
@@ -5230,7 +5437,7 @@ Browser="MarsEdit"
|
|
5230 |
[NetNewsWire*/*]
|
5231 |
Parent=NewsGator
|
5232 |
Browser="NetNewsWire"
|
5233 |
-
Platform=MacOSX
|
5234 |
|
5235 |
[NewsFire/*]
|
5236 |
Parent=NewsGator
|
@@ -5243,10468 +5450,17573 @@ Browser="NewsGator FetchLinks"
|
|
5243 |
[NewsGator/*]
|
5244 |
Parent=NewsGator
|
5245 |
Browser="NewsGator"
|
5246 |
-
isBanned=true
|
5247 |
|
5248 |
[NewsGatorOnline/*]
|
5249 |
Parent=NewsGator
|
5250 |
Browser="NewsGatorOnline"
|
5251 |
|
5252 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5253 |
|
5254 |
-
[
|
5255 |
Parent=DefaultProperties
|
5256 |
-
|
5257 |
-
|
5258 |
-
|
5259 |
-
|
5260 |
-
|
|
|
5261 |
Frames=true
|
5262 |
IFrames=true
|
5263 |
Tables=true
|
5264 |
Cookies=true
|
5265 |
-
JavaApplets=true
|
5266 |
JavaScript=true
|
|
|
5267 |
CssVersion=3
|
5268 |
-
supportsCSS=true
|
5269 |
|
5270 |
-
[Mozilla/5.0 (
|
5271 |
-
Parent=
|
5272 |
-
Platform=WinXP
|
5273 |
|
5274 |
-
[Mozilla/5.0 (
|
5275 |
-
Parent=
|
5276 |
-
Platform=Win2003
|
5277 |
|
5278 |
-
|
5279 |
-
Parent=Chrome 0.2
|
5280 |
-
Platform=WinVista
|
5281 |
|
5282 |
-
|
5283 |
-
|
5284 |
-
[Chrome 0.3]
|
5285 |
Parent=DefaultProperties
|
5286 |
-
|
5287 |
-
|
5288 |
-
|
5289 |
-
|
5290 |
-
|
|
|
5291 |
Frames=true
|
5292 |
IFrames=true
|
5293 |
Tables=true
|
5294 |
Cookies=true
|
5295 |
-
JavaApplets=true
|
5296 |
JavaScript=true
|
|
|
5297 |
CssVersion=3
|
5298 |
-
supportsCSS=true
|
5299 |
-
|
5300 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
|
5301 |
-
Parent=Chrome 0.3
|
5302 |
-
Platform=WinXP
|
5303 |
|
5304 |
-
[Mozilla/5.0 (
|
5305 |
-
Parent=
|
5306 |
-
Platform=Win2003
|
5307 |
|
5308 |
-
[Mozilla/5.0 (
|
5309 |
-
Parent=
|
5310 |
-
Platform=WinVista
|
5311 |
|
5312 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5313 |
|
5314 |
-
[
|
5315 |
Parent=DefaultProperties
|
5316 |
-
|
5317 |
-
|
5318 |
-
|
5319 |
-
|
|
|
|
|
5320 |
Frames=true
|
5321 |
IFrames=true
|
5322 |
Tables=true
|
5323 |
Cookies=true
|
5324 |
-
JavaApplets=true
|
5325 |
JavaScript=true
|
|
|
5326 |
CssVersion=3
|
5327 |
-
supportsCSS=true
|
5328 |
-
|
5329 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
|
5330 |
-
Parent=Chrome 0.4
|
5331 |
-
Platform=WinXP
|
5332 |
|
5333 |
-
[Mozilla/5.0 (
|
5334 |
-
Parent=
|
5335 |
-
Platform=Win2003
|
5336 |
|
5337 |
-
[Mozilla/5.0 (
|
5338 |
-
Parent=
|
5339 |
-
Platform=WinVista
|
5340 |
|
5341 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5342 |
|
5343 |
-
[
|
5344 |
Parent=DefaultProperties
|
5345 |
-
|
5346 |
-
|
5347 |
-
|
5348 |
-
|
5349 |
-
|
|
|
5350 |
Frames=true
|
5351 |
IFrames=true
|
5352 |
Tables=true
|
5353 |
Cookies=true
|
5354 |
-
JavaApplets=true
|
5355 |
JavaScript=true
|
|
|
5356 |
CssVersion=3
|
5357 |
-
supportsCSS=true
|
5358 |
|
5359 |
-
[Mozilla/5.0 (
|
5360 |
-
Parent=
|
5361 |
-
Platform=WinXP
|
5362 |
|
5363 |
-
[Mozilla/5.0 (
|
5364 |
-
Parent=
|
5365 |
-
Platform=Win2003
|
5366 |
|
5367 |
-
|
5368 |
-
Parent=Chrome 0.5
|
5369 |
-
Platform=WinVista
|
5370 |
|
5371 |
-
|
5372 |
-
|
5373 |
-
[Chrome 1.0]
|
5374 |
Parent=DefaultProperties
|
5375 |
-
|
5376 |
-
|
5377 |
-
|
5378 |
-
|
|
|
|
|
5379 |
Frames=true
|
5380 |
IFrames=true
|
5381 |
Tables=true
|
5382 |
Cookies=true
|
5383 |
-
JavaApplets=true
|
5384 |
JavaScript=true
|
|
|
5385 |
CssVersion=3
|
5386 |
-
supportsCSS=true
|
5387 |
|
5388 |
-
[Mozilla/5.0 (
|
5389 |
-
Parent=
|
5390 |
-
Platform=WinXP
|
5391 |
|
5392 |
-
[Mozilla/5.0 (
|
5393 |
-
Parent=
|
5394 |
-
Platform=Win2003
|
5395 |
|
5396 |
-
|
5397 |
-
Parent=Chrome 1.0
|
5398 |
-
Platform=WinVista
|
5399 |
|
5400 |
-
[
|
5401 |
-
Parent=Chrome 1.0
|
5402 |
-
Platform=Win7
|
5403 |
-
|
5404 |
-
[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
|
5405 |
-
Parent=Chrome 1.0
|
5406 |
-
Platform=Win7
|
5407 |
-
|
5408 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 2.0
|
5409 |
-
|
5410 |
-
[Chrome 2.0]
|
5411 |
Parent=DefaultProperties
|
5412 |
-
|
5413 |
-
|
5414 |
-
|
5415 |
-
|
|
|
|
|
5416 |
Frames=true
|
5417 |
IFrames=true
|
5418 |
Tables=true
|
5419 |
Cookies=true
|
5420 |
-
JavaApplets=true
|
5421 |
JavaScript=true
|
|
|
5422 |
CssVersion=3
|
5423 |
-
supportsCSS=true
|
5424 |
-
|
5425 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
|
5426 |
-
Parent=Chrome 2.0
|
5427 |
-
Platform=WinXP
|
5428 |
-
|
5429 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
|
5430 |
-
Parent=Chrome 2.0
|
5431 |
-
Platform=Win2003
|
5432 |
|
5433 |
-
[Mozilla/5.0 (
|
5434 |
-
Parent=
|
5435 |
-
Platform=WinVista
|
5436 |
|
5437 |
-
[Mozilla/5.0 (
|
5438 |
-
Parent=
|
5439 |
-
Platform=Win7
|
5440 |
|
5441 |
-
|
5442 |
-
Parent=Chrome 2.0
|
5443 |
-
Platform=Win7
|
5444 |
|
5445 |
-
[
|
5446 |
-
Parent=Chrome 2.0
|
5447 |
-
Platform=Linux
|
5448 |
-
|
5449 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 3.0
|
5450 |
-
|
5451 |
-
[Chrome 3.0]
|
5452 |
Parent=DefaultProperties
|
5453 |
-
|
5454 |
-
|
5455 |
-
|
5456 |
-
|
|
|
|
|
5457 |
Frames=true
|
5458 |
IFrames=true
|
5459 |
Tables=true
|
5460 |
Cookies=true
|
5461 |
-
JavaApplets=true
|
5462 |
JavaScript=true
|
|
|
5463 |
CssVersion=3
|
5464 |
-
supportsCSS=true
|
5465 |
-
|
5466 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
|
5467 |
-
Parent=Chrome 3.0
|
5468 |
-
Platform=WinXP
|
5469 |
-
|
5470 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
|
5471 |
-
Parent=Chrome 3.0
|
5472 |
-
Platform=Win2003
|
5473 |
-
|
5474 |
-
[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
|
5475 |
-
Parent=Chrome 3.0
|
5476 |
-
Platform=WinVista
|
5477 |
|
5478 |
-
[Mozilla/5.0 (
|
5479 |
-
Parent=
|
5480 |
-
Platform=Win7
|
5481 |
|
5482 |
-
[Mozilla/5.0 (
|
5483 |
-
Parent=
|
5484 |
-
Platform=Win7
|
5485 |
|
5486 |
-
|
5487 |
-
Parent=Chrome 3.0
|
5488 |
-
Platform=Linux
|
5489 |
|
5490 |
-
|
5491 |
-
|
5492 |
-
[Chrome 4.0]
|
5493 |
Parent=DefaultProperties
|
5494 |
-
|
5495 |
-
|
5496 |
-
|
5497 |
-
|
5498 |
-
|
|
|
5499 |
Frames=true
|
5500 |
IFrames=true
|
5501 |
Tables=true
|
5502 |
Cookies=true
|
5503 |
-
JavaApplets=true
|
5504 |
JavaScript=true
|
|
|
5505 |
CssVersion=3
|
5506 |
-
supportsCSS=true
|
5507 |
-
|
5508 |
-
[Mozilla/5.0 (Macintosh; U; Intel Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
|
5509 |
-
Parent=Chrome 4.0
|
5510 |
-
Platform=MacOSX
|
5511 |
-
|
5512 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
|
5513 |
-
Parent=Chrome 4.0
|
5514 |
-
Platform=WinXP
|
5515 |
-
|
5516 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
|
5517 |
-
Parent=Chrome 4.0
|
5518 |
-
Platform=Win2003
|
5519 |
|
5520 |
-
[Mozilla/5.0 (
|
5521 |
-
Parent=
|
5522 |
-
Platform=WinVista
|
5523 |
|
5524 |
-
[Mozilla/5.0 (
|
5525 |
-
Parent=
|
5526 |
-
Platform=Win7
|
5527 |
-
|
5528 |
-
[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
|
5529 |
-
Parent=Chrome 4.0
|
5530 |
-
Platform=Win7
|
5531 |
-
|
5532 |
-
[Mozilla/5.0 (X11; U; Linux i686*; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
|
5533 |
-
Parent=Chrome 4.0
|
5534 |
-
Platform=Linux
|
5535 |
-
|
5536 |
-
[Mozilla/5.0 (X11; U; Linux x86_64; *) AppleWebKit/* (KHTML, like Gecko) Chrome/4.0.* Safari/*]
|
5537 |
-
Parent=Chrome 4.0
|
5538 |
-
Win32=false
|
5539 |
-
Win64=true
|
5540 |
|
5541 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5542 |
|
5543 |
-
[
|
5544 |
Parent=DefaultProperties
|
5545 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5546 |
Tables=true
|
5547 |
Cookies=true
|
|
|
5548 |
JavaApplets=true
|
|
|
|
|
|
|
|
|
5549 |
|
5550 |
-
|
|
|
5551 |
|
5552 |
-
|
|
|
|
|
5553 |
Parent=DefaultProperties
|
5554 |
-
|
5555 |
-
|
5556 |
-
|
5557 |
-
|
|
|
|
|
5558 |
Frames=true
|
5559 |
IFrames=true
|
5560 |
Tables=true
|
5561 |
Cookies=true
|
5562 |
-
JavaApplets=true
|
5563 |
JavaScript=true
|
|
|
5564 |
CssVersion=3
|
5565 |
-
supportsCSS=true
|
5566 |
-
|
5567 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
|
5568 |
-
Parent=Iron 0.2
|
5569 |
-
Platform=WinXP
|
5570 |
-
|
5571 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
|
5572 |
-
Parent=Iron 0.2
|
5573 |
-
Platform=Win2003
|
5574 |
|
5575 |
-
[Mozilla/5.0 (
|
5576 |
-
Parent=
|
5577 |
-
Platform=WinVista
|
5578 |
|
5579 |
-
[Mozilla/5.0 (
|
5580 |
-
Parent=
|
5581 |
-
Platform=Win7
|
5582 |
|
5583 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5584 |
|
5585 |
-
[
|
5586 |
Parent=DefaultProperties
|
5587 |
-
|
5588 |
-
|
5589 |
-
|
5590 |
-
|
|
|
|
|
5591 |
Frames=true
|
5592 |
IFrames=true
|
5593 |
Tables=true
|
5594 |
Cookies=true
|
5595 |
-
JavaApplets=true
|
5596 |
JavaScript=true
|
|
|
5597 |
CssVersion=3
|
5598 |
-
supportsCSS=true
|
5599 |
-
|
5600 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
|
5601 |
-
Parent=Iron 0.3
|
5602 |
-
Platform=WinXP
|
5603 |
|
5604 |
-
[Mozilla/5.0 (
|
5605 |
-
Parent=
|
5606 |
-
Platform=Win2003
|
5607 |
|
5608 |
-
[Mozilla/5.0 (
|
5609 |
-
Parent=
|
5610 |
-
Platform=WinVista
|
5611 |
|
5612 |
-
|
5613 |
-
Parent=Iron 0.3
|
5614 |
-
Platform=Win7
|
5615 |
|
5616 |
-
|
5617 |
-
|
5618 |
-
[Iron 0.4]
|
5619 |
Parent=DefaultProperties
|
5620 |
-
|
5621 |
-
|
5622 |
-
|
5623 |
-
|
|
|
|
|
5624 |
Frames=true
|
5625 |
IFrames=true
|
5626 |
Tables=true
|
5627 |
Cookies=true
|
5628 |
-
JavaApplets=true
|
5629 |
JavaScript=true
|
|
|
5630 |
CssVersion=3
|
5631 |
-
supportsCSS=true
|
5632 |
|
5633 |
-
[Mozilla/5.0 (
|
5634 |
-
Parent=
|
5635 |
-
Platform=WinXP
|
5636 |
|
5637 |
-
[Mozilla/5.0 (
|
5638 |
-
Parent=
|
5639 |
-
Platform=Win2003
|
5640 |
|
5641 |
-
|
5642 |
-
Parent=Iron 0.4
|
5643 |
-
Platform=WinVista
|
5644 |
|
5645 |
-
[
|
5646 |
-
Parent=Iron 0.4
|
5647 |
-
Platform=Win7
|
5648 |
-
|
5649 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 1.0
|
5650 |
-
|
5651 |
-
[Iron 1.0]
|
5652 |
Parent=DefaultProperties
|
5653 |
-
|
5654 |
-
|
5655 |
-
|
5656 |
-
|
|
|
|
|
5657 |
Frames=true
|
5658 |
IFrames=true
|
5659 |
Tables=true
|
5660 |
Cookies=true
|
5661 |
-
JavaApplets=true
|
5662 |
JavaScript=true
|
|
|
5663 |
CssVersion=3
|
5664 |
-
supportsCSS=true
|
5665 |
-
|
5666 |
-
[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/1.0.* Safari/*]
|
5667 |
-
Parent=Iron 1.0
|
5668 |
-
Platform=WinXP
|
5669 |
|
5670 |
-
[Mozilla/5.0 (
|
5671 |
-
Parent=
|
5672 |
-
Platform=Win2003
|
5673 |
|
5674 |
-
[Mozilla/5.0 (
|
5675 |
-
Parent=
|
5676 |
-
Platform=WinVista
|
5677 |
|
5678 |
-
|
5679 |
-
Parent=Iron 1.0
|
5680 |
-
Platform=Win7
|
5681 |
|
5682 |
-
|
5683 |
-
|
5684 |
-
[Iron 2.0]
|
5685 |
Parent=DefaultProperties
|
5686 |
-
|
5687 |
-
|
5688 |
-
|
5689 |
-
|
|
|
|
|
5690 |
Frames=true
|
5691 |
IFrames=true
|
5692 |
Tables=true
|
5693 |
Cookies=true
|
5694 |
-
JavaApplets=true
|
5695 |
JavaScript=true
|
|
|
5696 |
CssVersion=3
|
5697 |
-
supportsCSS=true
|
5698 |
|
5699 |
-
[Mozilla/5.0 (
|
5700 |
-
Parent=
|
5701 |
-
Platform=WinXP
|
5702 |
|
5703 |
-
[Mozilla/5.0 (
|
5704 |
-
Parent=
|
5705 |
-
Platform=
|
5706 |
|
5707 |
-
|
5708 |
-
Parent=Iron 2.0
|
5709 |
-
Platform=WinVista
|
5710 |
|
5711 |
-
[
|
5712 |
-
Parent=Iron 2.0
|
5713 |
-
Platform=Win7
|
5714 |
-
|
5715 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Media Players
|
5716 |
-
|
5717 |
-
[Media Players]
|
5718 |
Parent=DefaultProperties
|
5719 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5720 |
Cookies=true
|
|
|
|
|
|
|
5721 |
|
5722 |
-
[
|
5723 |
-
Parent=
|
5724 |
-
Browser="Microsoft NetShow"
|
5725 |
|
5726 |
-
[Mozilla/5.0 (
|
5727 |
-
Parent=
|
5728 |
-
Browser="RealPlayer"
|
5729 |
-
Platform=MacOSX
|
5730 |
|
5731 |
-
|
5732 |
-
Parent=Media Players
|
5733 |
-
Browser="MPlayer"
|
5734 |
-
Version=0.9
|
5735 |
-
MajorVer=0
|
5736 |
-
MinorVer=9
|
5737 |
|
5738 |
-
[
|
5739 |
-
Parent=
|
5740 |
-
|
5741 |
-
|
5742 |
-
|
|
|
5743 |
MinorVer=0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5744 |
|
5745 |
-
[
|
5746 |
-
Parent=
|
5747 |
-
Browser="MPlayer"
|
5748 |
-
|
5749 |
-
[RealPlayer*]
|
5750 |
-
Parent=Media Players
|
5751 |
-
Browser="RealPlayer"
|
5752 |
-
|
5753 |
-
[RMA/*]
|
5754 |
-
Parent=Media Players
|
5755 |
-
Browser="RMA"
|
5756 |
-
|
5757 |
-
[VLC media player*]
|
5758 |
-
Parent=Media Players
|
5759 |
-
Browser="VLC"
|
5760 |
-
|
5761 |
-
[vobsub]
|
5762 |
-
Parent=Media Players
|
5763 |
-
Browser="vobsub"
|
5764 |
-
isBanned=true
|
5765 |
|
5766 |
-
[
|
5767 |
-
Parent=
|
5768 |
-
Browser="WinAmp"
|
5769 |
|
5770 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5771 |
|
5772 |
-
[
|
5773 |
Parent=DefaultProperties
|
5774 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5775 |
Cookies=true
|
|
|
|
|
|
|
5776 |
|
5777 |
-
[Mozilla/
|
5778 |
-
Parent=
|
5779 |
-
Version=4.0
|
5780 |
-
MajorVer=4
|
5781 |
-
MinorVer=0
|
5782 |
|
5783 |
-
[Mozilla/
|
5784 |
-
Parent=
|
5785 |
-
Browser="ZuneHD"
|
5786 |
-
Version=4
|
5787 |
-
MajorVer=4
|
5788 |
|
5789 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5790 |
|
5791 |
-
[
|
5792 |
Parent=DefaultProperties
|
5793 |
-
|
5794 |
-
|
|
|
|
|
5795 |
|
5796 |
-
[
|
5797 |
-
Parent=
|
5798 |
-
Browser="DSi"
|
5799 |
|
5800 |
-
[
|
5801 |
-
Parent=
|
5802 |
-
Browser="Wii"
|
5803 |
|
5804 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5805 |
|
5806 |
-
[
|
5807 |
Parent=DefaultProperties
|
5808 |
-
|
5809 |
-
|
5810 |
-
|
5811 |
-
[NSPlayer/10.*]
|
5812 |
-
Parent=Windows Media Player
|
5813 |
Version=10.0
|
5814 |
MajorVer=10
|
5815 |
MinorVer=0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5816 |
|
5817 |
-
[
|
5818 |
-
Parent=
|
5819 |
-
|
5820 |
-
|
5821 |
-
MajorVer=11
|
5822 |
-
MinorVer=0
|
5823 |
|
5824 |
-
[
|
5825 |
-
Parent=
|
5826 |
-
|
5827 |
-
|
5828 |
-
MajorVer=4
|
5829 |
-
MinorVer=0
|
5830 |
|
5831 |
-
[
|
5832 |
-
Parent=
|
5833 |
-
|
5834 |
-
|
5835 |
-
MajorVer=7
|
5836 |
-
MinorVer=0
|
5837 |
|
5838 |
-
[
|
5839 |
-
Parent=
|
5840 |
-
|
5841 |
-
|
5842 |
-
|
5843 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5844 |
|
5845 |
-
[
|
5846 |
-
Parent=
|
5847 |
-
|
5848 |
-
|
5849 |
-
MajorVer=9
|
5850 |
-
MinorVer=0
|
5851 |
|
5852 |
-
[Windows
|
5853 |
-
Parent=
|
5854 |
-
|
5855 |
-
|
5856 |
-
|
5857 |
-
|
5858 |
-
Win32=true
|
5859 |
|
5860 |
-
[Windows
|
5861 |
-
Parent=
|
5862 |
-
|
5863 |
-
|
5864 |
-
MinorVer=0
|
5865 |
-
Win32=true
|
5866 |
|
5867 |
-
[Windows
|
5868 |
-
Parent=
|
5869 |
-
|
5870 |
-
|
5871 |
-
|
5872 |
-
|
5873 |
-
Win32=true
|
5874 |
|
5875 |
-
[Windows
|
5876 |
-
Parent=
|
5877 |
-
|
5878 |
-
|
5879 |
-
MajorVer=8
|
5880 |
-
MinorVer=0
|
5881 |
-
Win32=true
|
5882 |
|
5883 |
-
[Windows
|
5884 |
-
Parent=
|
5885 |
-
|
5886 |
-
|
5887 |
-
|
5888 |
-
|
5889 |
|
5890 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5891 |
|
5892 |
-
[
|
5893 |
Parent=DefaultProperties
|
5894 |
-
|
5895 |
-
|
5896 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
5897 |
Cookies=true
|
|
|
|
|
|
|
5898 |
|
5899 |
-
[
|
5900 |
-
Parent=
|
5901 |
-
Platform=MacOSX
|
|
|
5902 |
|
5903 |
-
[
|
5904 |
-
Parent=
|
5905 |
-
Platform=
|
|
|
5906 |
|
5907 |
-
[
|
5908 |
-
Parent=
|
5909 |
-
Platform=
|
5910 |
-
Win32=
|
5911 |
|
5912 |
-
[
|
5913 |
-
Parent=
|
5914 |
-
Platform=
|
5915 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5916 |
|
5917 |
-
[
|
5918 |
-
Parent=
|
5919 |
-
Platform=
|
5920 |
-
|
5921 |
|
5922 |
-
[
|
5923 |
-
Parent=
|
5924 |
-
Platform=
|
5925 |
-
|
|
|
|
|
5926 |
|
5927 |
-
[
|
5928 |
-
Parent=
|
5929 |
-
Platform=
|
5930 |
-
|
5931 |
|
5932 |
-
[
|
5933 |
-
Parent=
|
5934 |
-
Platform=
|
5935 |
-
|
|
|
|
|
5936 |
|
5937 |
-
[
|
5938 |
-
Parent=
|
5939 |
-
Platform=
|
5940 |
-
|
5941 |
|
5942 |
-
[
|
5943 |
-
Parent=
|
5944 |
-
Platform=
|
|
|
|
|
|
|
5945 |
|
5946 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
5947 |
|
5948 |
-
[
|
5949 |
Parent=DefaultProperties
|
5950 |
-
|
5951 |
-
|
5952 |
-
|
5953 |
-
|
5954 |
-
|
5955 |
-
|
5956 |
-
[QuickTime (qtver=7.1*;cpu=PPC;os=Mac 10.*)]
|
5957 |
-
Parent=QuickTime 7.1
|
5958 |
-
Platform=MacOSX
|
5959 |
-
|
5960 |
-
[QuickTime (qtver=7.1*;cpu=PPC;os=Mac 9.*)]
|
5961 |
-
Parent=QuickTime 7.1
|
5962 |
-
Platform=MacPPC
|
5963 |
-
|
5964 |
-
[QuickTime (qtver=7.1*;os=Windows 98*)]
|
5965 |
-
Parent=QuickTime 7.1
|
5966 |
-
Platform=Win98
|
5967 |
Win32=true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5968 |
|
5969 |
-
[
|
5970 |
-
Parent=
|
5971 |
-
Platform=
|
5972 |
-
Win32=
|
5973 |
|
5974 |
-
[
|
5975 |
-
Parent=
|
5976 |
-
Platform=
|
5977 |
-
Win32=
|
5978 |
|
5979 |
-
[
|
5980 |
-
Parent=
|
5981 |
-
Platform=
|
5982 |
-
Win32=
|
5983 |
|
5984 |
-
[
|
5985 |
-
Parent=
|
5986 |
-
Platform=
|
5987 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5988 |
|
5989 |
-
[
|
5990 |
-
Parent=
|
5991 |
-
Platform=
|
|
|
5992 |
|
5993 |
-
|
|
|
|
|
|
|
|
|
|
|
5994 |
|
5995 |
-
[
|
5996 |
-
Parent=
|
5997 |
-
|
5998 |
-
|
5999 |
-
MajorVer=7
|
6000 |
-
MinorVer=2
|
6001 |
-
Platform=MacOSX
|
6002 |
-
Cookies=true
|
6003 |
|
6004 |
-
[
|
6005 |
-
Parent=
|
6006 |
-
Platform=
|
|
|
|
|
|
|
6007 |
|
6008 |
-
[
|
6009 |
-
Parent=
|
6010 |
-
Platform=
|
|
|
6011 |
|
6012 |
-
[
|
6013 |
-
Parent=
|
6014 |
-
Platform=
|
6015 |
-
|
|
|
|
|
6016 |
|
6017 |
-
|
6018 |
-
Parent=QuickTime 7.2
|
6019 |
-
Platform=WinNT
|
6020 |
-
Win32=true
|
6021 |
|
6022 |
-
[
|
6023 |
-
Parent=
|
6024 |
-
|
|
|
|
|
|
|
|
|
6025 |
Win32=true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6026 |
|
6027 |
-
[
|
6028 |
-
Parent=
|
6029 |
-
Platform=
|
6030 |
-
Win32=
|
6031 |
|
6032 |
-
[
|
6033 |
-
Parent=
|
6034 |
-
Platform=
|
6035 |
-
Win32=
|
6036 |
|
6037 |
-
[
|
6038 |
-
Parent=
|
6039 |
-
Platform=
|
|
|
6040 |
|
6041 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6042 |
|
6043 |
-
[
|
6044 |
-
Parent=
|
6045 |
-
|
6046 |
-
|
6047 |
-
MajorVer=7
|
6048 |
-
MinorVer=3
|
6049 |
-
Platform=MacOSX
|
6050 |
-
Cookies=true
|
6051 |
|
6052 |
-
[
|
6053 |
-
Parent=
|
6054 |
-
Platform=
|
|
|
|
|
|
|
6055 |
|
6056 |
-
[
|
6057 |
-
Parent=
|
6058 |
-
Platform=
|
|
|
6059 |
|
6060 |
-
[
|
6061 |
-
Parent=
|
6062 |
-
Platform=
|
6063 |
-
|
|
|
|
|
6064 |
|
6065 |
-
[
|
6066 |
-
Parent=
|
6067 |
-
Platform=
|
6068 |
-
|
6069 |
|
6070 |
-
[
|
6071 |
-
Parent=
|
6072 |
-
Platform=
|
6073 |
-
|
|
|
|
|
6074 |
|
6075 |
-
|
6076 |
-
Parent=QuickTime 7.3
|
6077 |
-
Platform=WinXP
|
6078 |
-
Win32=true
|
6079 |
|
6080 |
-
[
|
6081 |
-
Parent=
|
6082 |
-
|
|
|
|
|
|
|
|
|
6083 |
Win32=true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6084 |
|
6085 |
-
[
|
6086 |
-
Parent=
|
6087 |
-
Platform=MacOSX
|
|
|
6088 |
|
6089 |
-
|
|
|
|
|
|
|
6090 |
|
6091 |
-
[
|
6092 |
-
Parent=
|
6093 |
-
|
6094 |
-
|
6095 |
-
MajorVer=7
|
6096 |
-
MinorVer=4
|
6097 |
-
Platform=MacOSX
|
6098 |
-
Cookies=true
|
6099 |
|
6100 |
-
[
|
6101 |
-
Parent=
|
6102 |
-
Platform=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6103 |
|
6104 |
-
[
|
6105 |
-
Parent=
|
6106 |
-
Platform=
|
|
|
6107 |
|
6108 |
-
[
|
6109 |
-
Parent=
|
6110 |
-
Platform=
|
6111 |
-
|
|
|
|
|
6112 |
|
6113 |
-
[
|
6114 |
-
Parent=
|
6115 |
-
Platform=
|
6116 |
-
|
6117 |
|
6118 |
-
[
|
6119 |
-
Parent=
|
6120 |
-
Platform=
|
6121 |
-
|
|
|
|
|
6122 |
|
6123 |
-
[
|
6124 |
-
Parent=
|
6125 |
-
Platform=
|
6126 |
-
|
6127 |
|
6128 |
-
[
|
6129 |
-
Parent=
|
6130 |
-
Platform=
|
6131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6132 |
|
6133 |
-
[
|
6134 |
-
Parent=
|
6135 |
-
Platform=
|
|
|
|
|
|
|
6136 |
|
6137 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
6138 |
|
6139 |
-
[
|
6140 |
Parent=DefaultProperties
|
6141 |
-
|
6142 |
-
|
|
|
|
|
|
|
|
|
6143 |
Frames=true
|
6144 |
IFrames=true
|
6145 |
Tables=true
|
6146 |
Cookies=true
|
6147 |
-
JavaApplets=true
|
6148 |
JavaScript=true
|
6149 |
-
|
|
|
6150 |
|
6151 |
-
[Mozilla/5.0 (
|
6152 |
-
Parent=
|
6153 |
-
|
6154 |
-
|
6155 |
|
6156 |
-
[Mozilla/5.0 (Linux
|
6157 |
-
Parent=
|
6158 |
-
|
6159 |
-
|
6160 |
-
MajorVer=3
|
6161 |
-
MinorVer=0
|
6162 |
-
isMobileDevice=true
|
6163 |
|
6164 |
-
[Mozilla/5.0 (Linux
|
6165 |
-
Parent=
|
6166 |
-
|
6167 |
-
|
6168 |
-
MinorVer=0
|
6169 |
|
6170 |
-
[Mozilla/5.0 (
|
6171 |
-
Parent=
|
6172 |
-
|
6173 |
-
|
6174 |
-
|
6175 |
-
|
6176 |
-
|
6177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6178 |
|
6179 |
-
|
|
|
|
|
|
|
6180 |
|
6181 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6182 |
Parent=DefaultProperties
|
6183 |
-
|
|
|
|
|
|
|
|
|
|
|
6184 |
Frames=true
|
|
|
6185 |
Tables=true
|
6186 |
Cookies=true
|
6187 |
JavaScript=true
|
6188 |
-
|
|
|
6189 |
|
6190 |
-
[*
|
6191 |
-
Parent=
|
|
|
|
|
6192 |
|
6193 |
-
[*
|
6194 |
-
Parent=
|
|
|
|
|
6195 |
|
6196 |
-
|
|
|
|
|
|
|
6197 |
|
6198 |
-
[
|
6199 |
-
Parent=
|
6200 |
-
|
6201 |
-
|
6202 |
-
|
6203 |
-
|
6204 |
-
|
6205 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6206 |
|
6207 |
-
[Mozilla/
|
6208 |
-
Parent=
|
6209 |
-
|
6210 |
-
|
6211 |
-
MinorVer=0
|
6212 |
|
6213 |
-
[Mozilla/
|
6214 |
-
Parent=
|
6215 |
-
|
6216 |
-
|
6217 |
-
|
|
|
6218 |
|
6219 |
-
[Mozilla/
|
6220 |
-
Parent=
|
6221 |
-
|
6222 |
-
|
6223 |
-
MinorVer=1
|
6224 |
|
6225 |
-
[Mozilla/
|
6226 |
-
Parent=
|
6227 |
-
|
6228 |
-
|
6229 |
-
|
|
|
6230 |
|
6231 |
-
[Mozilla/
|
6232 |
-
Parent=
|
6233 |
-
|
6234 |
-
|
6235 |
-
MinorVer=4
|
6236 |
|
6237 |
-
[Mozilla/
|
6238 |
-
Parent=
|
6239 |
-
|
6240 |
-
|
6241 |
-
|
|
|
6242 |
|
6243 |
-
|
|
|
|
|
|
|
6244 |
|
6245 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6246 |
Parent=DefaultProperties
|
6247 |
-
|
|
|
|
|
|
|
|
|
|
|
6248 |
Frames=true
|
|
|
6249 |
Tables=true
|
6250 |
Cookies=true
|
6251 |
JavaScript=true
|
6252 |
-
|
|
|
6253 |
|
6254 |
-
[
|
6255 |
-
Parent=
|
6256 |
-
|
6257 |
-
|
6258 |
-
MinorVer=0
|
6259 |
-
Platform=WAP
|
6260 |
|
6261 |
-
[
|
6262 |
-
Parent=
|
6263 |
-
|
6264 |
-
|
6265 |
-
MinorVer=0
|
6266 |
-
Platform=WAP
|
6267 |
|
6268 |
-
|
|
|
|
|
|
|
6269 |
|
6270 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6271 |
Parent=DefaultProperties
|
6272 |
-
|
6273 |
-
|
|
|
|
|
|
|
6274 |
Win32=true
|
6275 |
Frames=true
|
6276 |
IFrames=true
|
6277 |
Tables=true
|
6278 |
Cookies=true
|
6279 |
-
VBScript=true
|
6280 |
JavaScript=true
|
6281 |
-
|
6282 |
-
|
6283 |
-
CssVersion=2
|
6284 |
-
supportsCSS=true
|
6285 |
|
6286 |
-
[Mozilla/
|
6287 |
-
Parent=
|
6288 |
-
|
6289 |
-
|
6290 |
-
MinorVer=0
|
6291 |
|
6292 |
-
[Mozilla/
|
6293 |
-
Parent=
|
6294 |
-
|
6295 |
-
|
6296 |
-
MinorVer=0
|
6297 |
|
6298 |
-
|
|
|
|
|
|
|
6299 |
|
6300 |
-
[
|
6301 |
-
Parent=
|
6302 |
-
|
6303 |
-
|
6304 |
-
|
6305 |
-
|
6306 |
-
|
6307 |
-
|
6308 |
-
|
6309 |
-
|
6310 |
-
|
6311 |
-
|
6312 |
-
|
6313 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6314 |
|
6315 |
-
[Mozilla/5.0 (
|
6316 |
-
Parent=
|
6317 |
-
|
6318 |
-
|
6319 |
-
MajorVer=2
|
6320 |
-
MinorVer=0
|
6321 |
|
6322 |
-
[Mozilla/5.0 (
|
6323 |
-
Parent=
|
6324 |
-
|
6325 |
-
|
6326 |
-
|
|
|
6327 |
|
6328 |
-
[Mozilla/5.0 (
|
6329 |
-
Parent=
|
6330 |
-
|
6331 |
-
|
6332 |
-
MinorVer=1
|
6333 |
|
6334 |
-
[Mozilla/5.0 (
|
6335 |
-
Parent=
|
6336 |
-
|
6337 |
-
|
6338 |
-
|
|
|
6339 |
|
6340 |
-
[Mozilla/5.0 (
|
6341 |
-
Parent=
|
6342 |
-
|
6343 |
-
|
6344 |
-
MinorVer=0
|
6345 |
|
6346 |
-
[Mozilla/5.0 (
|
6347 |
-
Parent=
|
6348 |
-
|
6349 |
-
|
6350 |
-
|
|
|
6351 |
|
6352 |
-
[Mozilla/5.0 (
|
6353 |
-
Parent=
|
6354 |
-
|
6355 |
-
|
6356 |
-
MinorVer=0
|
6357 |
|
6358 |
-
[Mozilla/5.0 (
|
6359 |
-
Parent=
|
6360 |
-
|
6361 |
-
|
6362 |
-
|
|
|
6363 |
|
6364 |
-
[Mozilla/5.0 (
|
6365 |
-
Parent=
|
6366 |
-
|
6367 |
-
|
6368 |
-
|
|
|
6369 |
|
6370 |
-
[Mozilla/5.0 (
|
6371 |
-
Parent=
|
6372 |
-
|
6373 |
-
|
6374 |
-
|
6375 |
-
|
6376 |
|
6377 |
-
[Mozilla/5.0 (
|
6378 |
-
Parent=
|
6379 |
-
|
6380 |
-
|
6381 |
-
|
6382 |
-
|
6383 |
|
6384 |
-
[Mozilla/5.0 (
|
6385 |
-
Parent=
|
6386 |
-
|
6387 |
-
|
6388 |
-
|
|
|
6389 |
|
6390 |
-
|
|
|
|
|
|
|
|
|
|
|
6391 |
|
6392 |
-
[
|
6393 |
-
Parent=
|
6394 |
-
|
6395 |
-
|
6396 |
-
|
6397 |
-
Cookies=true
|
6398 |
-
BackgroundSounds=true
|
6399 |
-
VBScript=true
|
6400 |
-
JavaScript=true
|
6401 |
-
ActiveXControls=true
|
6402 |
isMobileDevice=true
|
6403 |
-
CssVersion=1
|
6404 |
-
supportsCSS=true
|
6405 |
|
6406 |
-
[
|
6407 |
-
Parent=
|
|
|
|
|
|
|
|
|
6408 |
|
6409 |
-
|
|
|
|
|
|
|
|
|
|
|
6410 |
|
6411 |
-
[
|
6412 |
-
Parent=
|
6413 |
-
|
6414 |
-
|
6415 |
-
|
6416 |
-
Cookies=true
|
6417 |
-
JavaScript=true
|
6418 |
isMobileDevice=true
|
6419 |
-
CssVersion=2
|
6420 |
-
supportsCSS=true
|
6421 |
|
6422 |
-
[Mozilla/5.0 (
|
6423 |
-
Parent=
|
6424 |
-
|
|
|
|
|
6425 |
|
6426 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
6427 |
|
6428 |
-
[
|
6429 |
Parent=DefaultProperties
|
6430 |
-
|
|
|
|
|
|
|
|
|
|
|
6431 |
Frames=true
|
|
|
6432 |
Tables=true
|
6433 |
Cookies=true
|
6434 |
-
|
|
|
|
|
6435 |
|
6436 |
-
[
|
6437 |
-
Parent=
|
|
|
|
|
6438 |
|
6439 |
-
[
|
6440 |
-
Parent=
|
|
|
|
|
6441 |
|
6442 |
-
[
|
6443 |
-
Parent=
|
|
|
|
|
6444 |
|
6445 |
-
[
|
6446 |
-
Parent=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6447 |
|
6448 |
-
[
|
6449 |
-
Parent=
|
|
|
|
|
6450 |
|
6451 |
-
[
|
6452 |
-
Parent=
|
|
|
|
|
|
|
|
|
6453 |
|
6454 |
-
[
|
6455 |
-
Parent=
|
|
|
|
|
6456 |
|
6457 |
-
[
|
6458 |
-
Parent=
|
|
|
|
|
|
|
|
|
6459 |
|
6460 |
-
[
|
6461 |
-
Parent=
|
|
|
|
|
6462 |
|
6463 |
-
[
|
6464 |
-
Parent=
|
|
|
|
|
|
|
|
|
6465 |
|
6466 |
-
[
|
6467 |
-
Parent=
|
|
|
|
|
6468 |
|
6469 |
-
[
|
6470 |
-
Parent=
|
6471 |
-
|
|
|
|
|
|
|
6472 |
|
6473 |
-
[
|
6474 |
-
Parent=
|
6475 |
-
|
|
|
|
|
|
|
6476 |
|
6477 |
-
[
|
6478 |
-
Parent=
|
|
|
|
|
|
|
|
|
6479 |
|
6480 |
-
[
|
6481 |
-
Parent=
|
|
|
|
|
|
|
|
|
6482 |
|
6483 |
-
[
|
6484 |
-
Parent=
|
|
|
|
|
|
|
|
|
6485 |
|
6486 |
-
[
|
6487 |
-
Parent=
|
|
|
|
|
|
|
|
|
6488 |
|
6489 |
-
[
|
6490 |
-
Parent=
|
|
|
|
|
|
|
|
|
6491 |
|
6492 |
-
[
|
6493 |
-
Parent=
|
|
|
|
|
|
|
|
|
6494 |
|
6495 |
-
[
|
6496 |
-
Parent=
|
|
|
|
|
|
|
|
|
6497 |
|
6498 |
-
[
|
6499 |
-
Parent=
|
|
|
|
|
|
|
|
|
6500 |
|
6501 |
-
[
|
6502 |
-
Parent=
|
|
|
|
|
|
|
|
|
6503 |
|
6504 |
-
[
|
6505 |
-
Parent=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6506 |
|
6507 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
6508 |
|
6509 |
-
[
|
6510 |
Parent=DefaultProperties
|
6511 |
-
|
|
|
|
|
|
|
|
|
|
|
6512 |
Win32=true
|
6513 |
Frames=true
|
|
|
6514 |
Tables=true
|
6515 |
Cookies=true
|
6516 |
JavaScript=true
|
6517 |
-
|
6518 |
-
|
6519 |
|
6520 |
-
[Mozilla
|
6521 |
-
Parent=
|
|
|
|
|
6522 |
|
6523 |
-
|
|
|
|
|
|
|
6524 |
|
6525 |
-
[
|
6526 |
-
Parent=
|
6527 |
-
|
6528 |
-
|
6529 |
-
Tables=true
|
6530 |
-
Cookies=true
|
6531 |
-
JavaScript=true
|
6532 |
-
isMobileDevice=true
|
6533 |
|
6534 |
-
[*
|
6535 |
-
Parent=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6536 |
|
6537 |
-
|
|
|
|
|
|
|
6538 |
|
6539 |
-
[
|
6540 |
-
Parent=
|
6541 |
-
|
6542 |
-
|
6543 |
-
|
6544 |
-
|
6545 |
|
6546 |
-
[*
|
6547 |
-
Parent=
|
|
|
|
|
6548 |
|
6549 |
-
[Mozilla
|
6550 |
-
Parent=
|
6551 |
-
Platform=
|
|
|
|
|
|
|
6552 |
|
6553 |
-
|
|
|
|
|
|
|
6554 |
|
6555 |
-
[
|
6556 |
-
Parent=
|
6557 |
-
|
6558 |
-
|
6559 |
-
Win32=
|
6560 |
Win64=true
|
6561 |
-
Frames=true
|
6562 |
-
Tables=true
|
6563 |
-
Cookies=true
|
6564 |
-
isMobileDevice=true
|
6565 |
|
6566 |
-
[*
|
6567 |
-
Parent=
|
|
|
|
|
6568 |
|
6569 |
-
[*
|
6570 |
-
Parent=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6571 |
|
6572 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
6573 |
|
6574 |
-
[
|
6575 |
Parent=DefaultProperties
|
6576 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
6577 |
Frames=true
|
6578 |
IFrames=true
|
6579 |
Tables=true
|
6580 |
Cookies=true
|
6581 |
JavaScript=true
|
6582 |
-
|
|
|
6583 |
|
6584 |
-
[
|
6585 |
-
Parent=
|
6586 |
-
|
6587 |
-
|
6588 |
-
MinorVer=0
|
6589 |
|
6590 |
-
[
|
6591 |
-
Parent=
|
6592 |
-
|
6593 |
-
|
6594 |
-
MinorVer=1
|
6595 |
|
6596 |
-
[
|
6597 |
-
Parent=
|
6598 |
-
|
6599 |
-
|
6600 |
-
MinorVer=2
|
6601 |
|
6602 |
-
[
|
6603 |
-
Parent=
|
6604 |
-
|
6605 |
-
|
6606 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6607 |
|
6608 |
-
[
|
6609 |
-
Parent=
|
6610 |
-
|
6611 |
-
|
6612 |
-
MinorVer=0
|
6613 |
|
6614 |
-
[
|
6615 |
-
Parent=
|
6616 |
-
|
6617 |
-
|
6618 |
-
|
|
|
6619 |
|
6620 |
-
[
|
6621 |
-
Parent=
|
6622 |
-
|
6623 |
-
|
6624 |
-
MinorVer=0
|
6625 |
|
6626 |
-
[
|
6627 |
-
Parent=
|
6628 |
-
|
6629 |
-
|
6630 |
-
|
|
|
6631 |
|
6632 |
-
[
|
6633 |
-
Parent=
|
6634 |
-
|
6635 |
-
|
6636 |
-
MinorVer=2
|
6637 |
|
6638 |
-
[
|
6639 |
-
Parent=
|
6640 |
-
|
6641 |
-
|
6642 |
-
|
|
|
6643 |
|
6644 |
-
|
|
|
|
|
|
|
6645 |
|
6646 |
-
[
|
6647 |
-
Parent=
|
6648 |
-
|
6649 |
-
|
6650 |
-
|
6651 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
6652 |
isMobileDevice=true
|
6653 |
|
6654 |
-
[
|
6655 |
-
Parent=
|
6656 |
-
|
6657 |
-
|
6658 |
-
|
6659 |
-
|
6660 |
|
6661 |
-
[
|
6662 |
-
Parent=
|
6663 |
-
|
6664 |
-
|
6665 |
-
|
6666 |
-
|
6667 |
|
6668 |
-
[
|
6669 |
-
Parent=
|
6670 |
-
|
6671 |
-
|
6672 |
-
|
6673 |
-
|
6674 |
|
6675 |
-
[
|
6676 |
-
Parent=
|
6677 |
-
|
6678 |
-
|
6679 |
-
|
|
|
6680 |
|
6681 |
-
[
|
6682 |
-
Parent=
|
6683 |
-
|
6684 |
-
|
6685 |
-
|
|
|
6686 |
|
6687 |
-
[
|
6688 |
-
Parent=
|
6689 |
-
|
6690 |
-
|
6691 |
-
|
6692 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6693 |
|
6694 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6695 |
|
6696 |
-
|
|
|
|
|
6697 |
Parent=DefaultProperties
|
6698 |
-
|
6699 |
-
|
|
|
|
|
|
|
|
|
6700 |
Win32=true
|
6701 |
Frames=true
|
|
|
6702 |
Tables=true
|
6703 |
Cookies=true
|
6704 |
JavaScript=true
|
6705 |
-
|
6706 |
-
|
6707 |
|
6708 |
-
[Mozilla/5.0 (
|
6709 |
-
Parent=
|
6710 |
-
|
6711 |
-
|
6712 |
-
MajorVer=1
|
6713 |
-
MinorVer=0
|
6714 |
-
CssVersion=2
|
6715 |
-
supportsCSS=true
|
6716 |
|
6717 |
-
[Mozilla/5.0 (
|
6718 |
-
Parent=
|
6719 |
-
|
6720 |
-
|
6721 |
-
MajorVer=1
|
6722 |
-
MinorVer=1
|
6723 |
-
CssVersion=2
|
6724 |
-
supportsCSS=true
|
6725 |
|
6726 |
-
[Mozilla/5.0 (
|
6727 |
-
Parent=
|
6728 |
-
|
6729 |
-
|
6730 |
-
MajorVer=1
|
6731 |
-
MinorVer=2
|
6732 |
|
6733 |
-
[Mozilla/5.0 (
|
6734 |
-
Parent=
|
6735 |
-
|
6736 |
-
|
6737 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6738 |
|
6739 |
-
|
|
|
|
|
|
|
6740 |
|
6741 |
-
[
|
6742 |
-
Parent=
|
6743 |
-
|
6744 |
-
|
6745 |
-
|
6746 |
-
|
6747 |
-
Cookies=true
|
6748 |
-
isMobileDevice=true
|
6749 |
|
6750 |
-
[Mozilla/* (
|
6751 |
-
Parent=
|
6752 |
-
|
6753 |
-
|
6754 |
|
6755 |
-
[Mozilla
|
6756 |
-
Parent=
|
|
|
|
|
|
|
|
|
6757 |
|
6758 |
-
[
|
6759 |
-
Parent=
|
6760 |
-
|
6761 |
-
|
6762 |
|
6763 |
-
|
|
|
|
|
|
|
|
|
|
|
6764 |
|
6765 |
-
[
|
6766 |
-
Parent=
|
6767 |
-
|
6768 |
-
|
6769 |
-
|
6770 |
-
|
6771 |
-
|
6772 |
-
|
6773 |
-
|
6774 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6775 |
isMobileDevice=true
|
6776 |
-
CssVersion=1
|
6777 |
-
supportsCSS=true
|
6778 |
|
6779 |
-
[*(
|
6780 |
-
Parent=
|
|
|
|
|
|
|
|
|
6781 |
|
6782 |
-
[
|
6783 |
-
Parent=
|
6784 |
-
|
|
|
|
|
|
|
6785 |
|
6786 |
-
[Mozilla
|
6787 |
-
Parent=
|
6788 |
-
|
|
|
|
|
|
|
6789 |
|
6790 |
-
[
|
6791 |
-
Parent=
|
|
|
|
|
|
|
|
|
6792 |
|
6793 |
-
[
|
6794 |
-
Parent=
|
|
|
|
|
|
|
|
|
6795 |
|
6796 |
-
[
|
6797 |
-
Parent=
|
6798 |
-
|
|
|
|
|
|
|
6799 |
|
6800 |
-
|
|
|
|
|
|
|
|
|
|
|
6801 |
|
6802 |
-
[
|
6803 |
-
Parent=
|
6804 |
-
|
6805 |
-
|
6806 |
-
|
6807 |
isMobileDevice=true
|
6808 |
-
CssVersion=1
|
6809 |
-
supportsCSS=true
|
6810 |
|
6811 |
-
[*
|
6812 |
-
Parent=
|
|
|
|
|
|
|
6813 |
|
6814 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
6815 |
|
6816 |
-
[
|
6817 |
Parent=DefaultProperties
|
6818 |
-
|
|
|
|
|
|
|
|
|
|
|
6819 |
Frames=true
|
|
|
6820 |
Tables=true
|
6821 |
Cookies=true
|
6822 |
JavaScript=true
|
6823 |
-
|
6824 |
-
CssVersion=
|
6825 |
-
supportsCSS=true
|
6826 |
|
6827 |
-
[*
|
6828 |
-
Parent=
|
|
|
|
|
6829 |
|
6830 |
-
[*
|
6831 |
-
Parent=
|
|
|
|
|
6832 |
|
6833 |
-
|
|
|
|
|
|
|
6834 |
|
6835 |
-
[
|
6836 |
-
Parent=
|
6837 |
-
|
6838 |
-
|
6839 |
-
|
6840 |
-
|
6841 |
-
|
6842 |
-
|
6843 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6844 |
|
6845 |
-
[Mozilla/
|
6846 |
-
Parent=
|
6847 |
-
|
6848 |
-
|
6849 |
|
6850 |
-
|
|
|
|
|
|
|
|
|
|
|
6851 |
|
6852 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6853 |
Parent=DefaultProperties
|
6854 |
-
|
6855 |
-
|
|
|
|
|
|
|
|
|
6856 |
Frames=true
|
|
|
6857 |
Tables=true
|
6858 |
Cookies=true
|
6859 |
JavaScript=true
|
|
|
|
|
6860 |
|
6861 |
-
[Mozilla/
|
6862 |
-
Parent=
|
6863 |
-
|
6864 |
-
|
6865 |
-
MinorVer=5
|
6866 |
|
6867 |
-
|
|
|
|
|
|
|
6868 |
|
6869 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6870 |
Parent=DefaultProperties
|
6871 |
-
|
6872 |
-
|
|
|
|
|
|
|
|
|
6873 |
Frames=true
|
|
|
6874 |
Tables=true
|
6875 |
Cookies=true
|
6876 |
JavaScript=true
|
|
|
|
|
6877 |
|
6878 |
-
[Mozilla/
|
6879 |
-
Parent=
|
6880 |
-
|
6881 |
-
|
6882 |
-
MinorVer=0
|
6883 |
-
|
6884 |
-
[Mozilla/4.0 WebTV/2.0*(compatible; MSIE 3.0)]
|
6885 |
-
Parent=WebTV
|
6886 |
-
Version=2.0
|
6887 |
-
MajorVer=2
|
6888 |
-
MinorVer=0
|
6889 |
|
6890 |
-
[Mozilla/
|
6891 |
-
Parent=
|
6892 |
-
|
6893 |
-
|
6894 |
-
MinorVer=1
|
6895 |
|
6896 |
-
[Mozilla/
|
6897 |
-
Parent=
|
6898 |
-
|
6899 |
-
|
6900 |
-
MinorVer=2
|
6901 |
|
6902 |
-
[Mozilla/
|
6903 |
-
Parent=
|
6904 |
-
|
6905 |
-
|
6906 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6907 |
|
6908 |
-
[Mozilla/
|
6909 |
-
Parent=
|
6910 |
-
|
6911 |
-
|
6912 |
-
MinorVer=4
|
6913 |
|
6914 |
-
[Mozilla/
|
6915 |
-
Parent=
|
6916 |
-
|
6917 |
-
|
6918 |
-
|
6919 |
-
|
6920 |
-
supportsCSS=true
|
6921 |
|
6922 |
-
[Mozilla/
|
6923 |
-
Parent=
|
6924 |
-
|
6925 |
-
|
6926 |
-
MinorVer=6
|
6927 |
-
CssVersion=1
|
6928 |
-
supportsCSS=true
|
6929 |
|
6930 |
-
[Mozilla/
|
6931 |
-
Parent=
|
6932 |
-
|
6933 |
-
|
6934 |
-
|
6935 |
-
|
6936 |
-
supportsCSS=true
|
6937 |
|
6938 |
-
[Mozilla/
|
6939 |
-
Parent=
|
6940 |
-
|
6941 |
-
|
6942 |
-
MinorVer=8
|
6943 |
-
JavaApplets=true
|
6944 |
-
CssVersion=1
|
6945 |
-
supportsCSS=true
|
6946 |
|
6947 |
-
[Mozilla/
|
6948 |
-
Parent=
|
6949 |
-
|
6950 |
-
|
6951 |
-
|
6952 |
-
|
6953 |
-
CssVersion=1
|
6954 |
-
supportsCSS=true
|
6955 |
|
6956 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
6957 |
|
6958 |
-
[
|
6959 |
Parent=DefaultProperties
|
6960 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6961 |
Tables=true
|
6962 |
Cookies=true
|
|
|
|
|
|
|
6963 |
|
6964 |
-
[
|
6965 |
-
Parent=
|
6966 |
-
|
6967 |
-
|
6968 |
-
MinorVer=0
|
6969 |
|
6970 |
-
[
|
6971 |
-
Parent=
|
6972 |
-
|
6973 |
-
|
6974 |
-
MinorVer=0
|
6975 |
|
6976 |
-
[
|
6977 |
-
Parent=
|
6978 |
-
|
6979 |
-
|
6980 |
-
MinorVer=0
|
6981 |
|
6982 |
-
[
|
6983 |
-
Parent=
|
6984 |
-
|
6985 |
-
|
6986 |
-
|
6987 |
-
|
6988 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6989 |
|
6990 |
-
[
|
6991 |
-
Parent=
|
6992 |
-
|
6993 |
-
|
6994 |
-
MinorVer=0
|
6995 |
|
6996 |
-
[
|
6997 |
-
Parent=
|
|
|
|
|
|
|
|
|
6998 |
|
6999 |
-
|
|
|
|
|
|
|
7000 |
|
7001 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7002 |
Parent=DefaultProperties
|
7003 |
-
|
7004 |
-
|
7005 |
-
|
7006 |
|
7007 |
-
[
|
7008 |
-
Parent=
|
7009 |
-
|
7010 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7011 |
MajorVer=0
|
7012 |
-
MinorVer=
|
7013 |
-
Platform=
|
7014 |
|
7015 |
-
[
|
7016 |
-
Parent=
|
7017 |
-
|
|
|
7018 |
MajorVer=0
|
7019 |
-
MinorVer=
|
7020 |
-
Platform=
|
7021 |
|
7022 |
-
[
|
7023 |
-
Parent=
|
7024 |
-
Browser="
|
7025 |
-
Version=0.
|
7026 |
MajorVer=0
|
7027 |
-
MinorVer=
|
7028 |
-
Platform=
|
7029 |
|
7030 |
-
[
|
7031 |
-
Parent=
|
7032 |
-
Browser="
|
7033 |
-
Version=0.
|
7034 |
MajorVer=0
|
7035 |
-
MinorVer=
|
7036 |
-
Platform=Linux
|
7037 |
|
7038 |
-
|
7039 |
-
Parent=Links
|
7040 |
-
Browser="Links"
|
7041 |
-
Version=0.9
|
7042 |
-
MajorVer=0
|
7043 |
-
MinorVer=9
|
7044 |
-
Platform=OS/2
|
7045 |
-
|
7046 |
-
[Links (0.9*; Unix*)]
|
7047 |
-
Parent=Links
|
7048 |
-
Browser="Links"
|
7049 |
-
Version=0.9
|
7050 |
-
MajorVer=0
|
7051 |
-
MinorVer=9
|
7052 |
-
Platform=Unix
|
7053 |
|
7054 |
-
[
|
7055 |
-
Parent=
|
7056 |
-
|
7057 |
-
|
7058 |
-
|
7059 |
-
|
7060 |
-
|
7061 |
Win32=true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7062 |
|
7063 |
-
[
|
7064 |
-
Parent=
|
7065 |
-
|
7066 |
-
|
7067 |
-
MajorVer=1
|
7068 |
-
MinorVer=0
|
7069 |
-
Platform=WinXP
|
7070 |
|
7071 |
-
[
|
7072 |
-
Parent=
|
7073 |
-
|
7074 |
-
|
7075 |
-
MajorVer=1
|
7076 |
-
MinorVer=0
|
7077 |
-
Platform=FreeBSD
|
7078 |
|
7079 |
-
[
|
7080 |
-
Parent=
|
7081 |
-
|
7082 |
-
|
7083 |
-
MajorVer=1
|
7084 |
-
MinorVer=0
|
7085 |
-
Platform=Linux
|
7086 |
|
7087 |
-
[
|
7088 |
-
Parent=
|
7089 |
-
|
7090 |
-
|
7091 |
-
MajorVer=1
|
7092 |
-
MinorVer=0
|
7093 |
-
Platform=OS/2
|
7094 |
|
7095 |
-
[
|
7096 |
-
Parent=
|
7097 |
-
|
7098 |
-
|
7099 |
-
MajorVer=1
|
7100 |
-
MinorVer=0
|
7101 |
-
Platform=Unix
|
7102 |
|
7103 |
-
[
|
7104 |
-
Parent=
|
7105 |
-
|
7106 |
-
|
7107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7108 |
MinorVer=0
|
7109 |
-
Platform=Win32
|
7110 |
Win32=true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7111 |
|
7112 |
-
[
|
7113 |
-
Parent=
|
7114 |
-
|
7115 |
-
|
7116 |
-
MajorVer=2
|
7117 |
-
MinorVer=0
|
7118 |
-
Platform=Linux
|
7119 |
|
7120 |
-
[
|
7121 |
-
Parent=
|
7122 |
-
|
7123 |
-
|
7124 |
-
MajorVer=2
|
7125 |
-
MinorVer=1
|
7126 |
-
Platform=FreeBSD
|
7127 |
|
7128 |
-
[
|
7129 |
-
Parent=
|
7130 |
-
|
7131 |
-
|
7132 |
-
MajorVer=2
|
7133 |
-
MinorVer=1
|
7134 |
-
Platform=Linux
|
7135 |
|
7136 |
-
[
|
7137 |
-
Parent=
|
7138 |
-
|
7139 |
-
|
7140 |
-
MajorVer=2
|
7141 |
-
MinorVer=1
|
7142 |
-
Platform=OpenBSD
|
7143 |
|
7144 |
-
[
|
7145 |
-
Parent=
|
7146 |
-
|
7147 |
-
|
7148 |
-
MinorVer=2
|
7149 |
-
Platform=FreeBSD
|
7150 |
|
7151 |
-
[
|
7152 |
-
Parent=
|
7153 |
-
|
7154 |
-
|
7155 |
-
MinorVer=2
|
7156 |
-
Platform=Linux
|
7157 |
|
7158 |
-
[
|
7159 |
-
Parent=
|
7160 |
-
|
7161 |
-
|
7162 |
-
MinorVer=2
|
7163 |
-
Platform=OpenBSD
|
7164 |
|
7165 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
7166 |
|
7167 |
-
[
|
7168 |
Parent=DefaultProperties
|
7169 |
-
|
|
|
|
|
|
|
|
|
|
|
7170 |
Frames=true
|
|
|
7171 |
Tables=true
|
|
|
|
|
|
|
|
|
7172 |
|
7173 |
-
[
|
7174 |
-
Parent=
|
7175 |
-
|
7176 |
-
|
7177 |
-
[Lynx/2.3*]
|
7178 |
-
Parent=Lynx
|
7179 |
-
Browser="Lynx"
|
7180 |
-
Version=2.3
|
7181 |
-
MajorVer=2
|
7182 |
-
MinorVer=3
|
7183 |
-
|
7184 |
-
[Lynx/2.4*]
|
7185 |
-
Parent=Lynx
|
7186 |
-
Browser="Lynx"
|
7187 |
-
Version=2.4
|
7188 |
-
MajorVer=2
|
7189 |
-
MinorVer=4
|
7190 |
|
7191 |
-
[
|
7192 |
-
Parent=
|
7193 |
-
|
7194 |
-
|
7195 |
-
MajorVer=2
|
7196 |
-
MinorVer=5
|
7197 |
|
7198 |
-
[
|
7199 |
-
Parent=
|
7200 |
-
|
7201 |
-
|
7202 |
-
MajorVer=2
|
7203 |
-
MinorVer=6
|
7204 |
|
7205 |
-
[
|
7206 |
-
Parent=
|
7207 |
-
|
7208 |
-
|
7209 |
-
MajorVer=2
|
7210 |
-
MinorVer=7
|
7211 |
|
7212 |
-
[
|
7213 |
-
Parent=
|
7214 |
-
|
7215 |
-
|
7216 |
-
MajorVer=2
|
7217 |
-
MinorVer=8
|
7218 |
|
7219 |
-
|
|
|
|
|
|
|
7220 |
|
7221 |
-
[
|
7222 |
-
Parent=
|
7223 |
-
|
|
|
7224 |
|
7225 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
7226 |
|
7227 |
-
[
|
7228 |
Parent=DefaultProperties
|
7229 |
-
|
|
|
|
|
|
|
|
|
|
|
7230 |
Frames=true
|
|
|
7231 |
Tables=true
|
|
|
|
|
|
|
|
|
7232 |
|
7233 |
-
[
|
7234 |
-
Parent=
|
7235 |
-
|
7236 |
-
|
7237 |
-
MajorVer=0
|
7238 |
-
MinorVer=1
|
7239 |
|
7240 |
-
[
|
7241 |
-
Parent=
|
7242 |
-
|
7243 |
-
|
7244 |
-
MajorVer=0
|
7245 |
-
MinorVer=2
|
7246 |
|
7247 |
-
[
|
7248 |
-
Parent=
|
7249 |
-
|
7250 |
-
|
7251 |
-
MajorVer=0
|
7252 |
-
MinorVer=3
|
7253 |
|
7254 |
-
[
|
7255 |
-
Parent=
|
7256 |
-
|
7257 |
-
|
7258 |
-
MajorVer=0
|
7259 |
-
MinorVer=4
|
7260 |
-
Cookies=true
|
7261 |
|
7262 |
-
[
|
7263 |
-
Parent=
|
7264 |
-
|
7265 |
-
|
7266 |
-
MajorVer=0
|
7267 |
-
MinorVer=5
|
7268 |
-
Cookies=true
|
7269 |
|
7270 |
-
|
|
|
|
|
|
|
7271 |
|
7272 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7273 |
Parent=DefaultProperties
|
7274 |
-
|
7275 |
-
|
7276 |
-
|
|
|
|
|
|
|
7277 |
Frames=true
|
|
|
7278 |
Tables=true
|
|
|
|
|
|
|
|
|
7279 |
|
7280 |
-
[
|
7281 |
-
Parent=
|
7282 |
-
Platform=
|
|
|
7283 |
|
7284 |
-
[
|
7285 |
-
Parent=
|
7286 |
-
Platform=
|
|
|
7287 |
|
7288 |
-
[
|
7289 |
-
Parent=
|
7290 |
-
Platform=
|
|
|
7291 |
|
7292 |
-
[
|
7293 |
-
Parent=
|
7294 |
-
Platform=
|
|
|
7295 |
|
7296 |
-
[
|
7297 |
-
Parent=
|
7298 |
-
Platform=
|
|
|
7299 |
|
7300 |
-
[
|
7301 |
-
Parent=
|
7302 |
-
Platform=
|
|
|
7303 |
|
7304 |
-
[
|
7305 |
-
Parent=
|
7306 |
-
Platform=
|
|
|
7307 |
|
7308 |
-
|
7309 |
-
Parent=ELinks 0.10
|
7310 |
-
Platform=IRIX
|
7311 |
|
7312 |
-
[
|
7313 |
-
Parent=
|
7314 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7315 |
|
7316 |
-
[
|
7317 |
-
Parent=
|
7318 |
-
Platform=
|
|
|
7319 |
|
7320 |
-
[
|
7321 |
-
Parent=
|
7322 |
-
Platform=
|
|
|
7323 |
|
7324 |
-
[
|
7325 |
-
Parent=
|
7326 |
-
Platform=
|
|
|
7327 |
|
7328 |
-
[
|
7329 |
-
Parent=
|
7330 |
-
Platform=
|
|
|
7331 |
|
7332 |
-
[
|
7333 |
-
Parent=
|
7334 |
-
Platform=
|
|
|
7335 |
|
7336 |
-
[
|
7337 |
-
Parent=
|
7338 |
-
Platform=
|
|
|
7339 |
|
7340 |
-
[
|
7341 |
-
Parent=
|
7342 |
-
Platform=
|
|
|
7343 |
|
7344 |
-
|
7345 |
-
Parent=ELinks 0.10
|
7346 |
-
Platform=BeOS
|
7347 |
|
7348 |
-
[
|
7349 |
-
Parent=
|
7350 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7351 |
|
7352 |
-
[
|
7353 |
-
Parent=
|
7354 |
-
Platform=
|
|
|
7355 |
|
7356 |
-
[
|
7357 |
-
Parent=
|
7358 |
-
Platform=
|
|
|
7359 |
|
7360 |
-
[
|
7361 |
-
Parent=
|
7362 |
-
Platform=
|
|
|
7363 |
|
7364 |
-
[
|
7365 |
-
Parent=
|
7366 |
-
Platform=
|
|
|
7367 |
|
7368 |
-
[
|
7369 |
-
Parent=
|
7370 |
-
Platform=
|
|
|
7371 |
|
7372 |
-
[
|
7373 |
-
Parent=
|
7374 |
-
Platform=
|
|
|
7375 |
|
7376 |
-
[
|
7377 |
-
Parent=
|
7378 |
-
Platform=
|
|
|
7379 |
|
7380 |
-
|
7381 |
-
Parent=ELinks 0.10
|
7382 |
-
Platform=OpenBSD
|
7383 |
|
7384 |
-
[
|
7385 |
-
Parent=
|
7386 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7387 |
|
7388 |
-
[
|
7389 |
-
Parent=
|
7390 |
-
Platform=
|
|
|
7391 |
|
7392 |
-
[
|
7393 |
-
Parent=
|
7394 |
-
Platform=
|
|
|
7395 |
|
7396 |
-
[
|
7397 |
-
Parent=
|
7398 |
-
Platform=
|
|
|
7399 |
|
7400 |
-
|
|
|
|
|
|
|
7401 |
|
7402 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7403 |
Parent=DefaultProperties
|
7404 |
-
|
7405 |
-
|
7406 |
-
|
|
|
|
|
|
|
7407 |
Frames=true
|
|
|
7408 |
Tables=true
|
|
|
|
|
|
|
|
|
7409 |
|
7410 |
-
[
|
7411 |
-
Parent=
|
7412 |
-
Platform=
|
|
|
7413 |
|
7414 |
-
[
|
7415 |
-
Parent=
|
7416 |
-
Platform=
|
|
|
7417 |
|
7418 |
-
[
|
7419 |
-
Parent=
|
7420 |
-
Platform=
|
|
|
7421 |
|
7422 |
-
[
|
7423 |
-
Parent=
|
7424 |
-
Platform=
|
|
|
7425 |
|
7426 |
-
[
|
7427 |
-
Parent=
|
7428 |
-
Platform=
|
|
|
7429 |
|
7430 |
-
[
|
7431 |
-
Parent=
|
7432 |
-
Platform=
|
|
|
7433 |
|
7434 |
-
[
|
7435 |
-
Parent=
|
7436 |
-
Platform=
|
|
|
7437 |
|
7438 |
-
|
7439 |
-
Parent=ELinks 0.11
|
7440 |
-
Platform=IRIX
|
7441 |
|
7442 |
-
[
|
7443 |
-
Parent=
|
7444 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7445 |
|
7446 |
-
[
|
7447 |
-
Parent=
|
7448 |
-
Platform=
|
|
|
7449 |
|
7450 |
-
[
|
7451 |
-
Parent=
|
7452 |
-
Platform=
|
|
|
7453 |
|
7454 |
-
[
|
7455 |
-
Parent=
|
7456 |
-
Platform=
|
|
|
7457 |
|
7458 |
-
[
|
7459 |
-
Parent=
|
7460 |
-
Platform=
|
|
|
7461 |
|
7462 |
-
[
|
7463 |
-
Parent=
|
7464 |
-
Platform=
|
|
|
7465 |
|
7466 |
-
[
|
7467 |
-
Parent=
|
7468 |
-
Platform=
|
|
|
7469 |
|
7470 |
-
[
|
7471 |
-
Parent=
|
7472 |
-
Platform=
|
|
|
7473 |
|
7474 |
-
|
7475 |
-
Parent=ELinks 0.11
|
7476 |
-
Platform=BeOS
|
7477 |
|
7478 |
-
[
|
7479 |
-
Parent=
|
7480 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7481 |
|
7482 |
-
[
|
7483 |
-
Parent=
|
7484 |
-
Platform=
|
|
|
7485 |
|
7486 |
-
[
|
7487 |
-
Parent=
|
7488 |
-
Platform=
|
|
|
7489 |
|
7490 |
-
[
|
7491 |
-
Parent=
|
7492 |
-
Platform=
|
|
|
7493 |
|
7494 |
-
[
|
7495 |
-
Parent=
|
7496 |
-
Platform=
|
|
|
7497 |
|
7498 |
-
[
|
7499 |
-
Parent=
|
7500 |
-
Platform=
|
|
|
7501 |
|
7502 |
-
[
|
7503 |
-
Parent=
|
7504 |
-
Platform=
|
|
|
7505 |
|
7506 |
-
[
|
7507 |
-
Parent=
|
7508 |
-
Platform=
|
|
|
7509 |
|
7510 |
-
|
7511 |
-
Parent=ELinks 0.11
|
7512 |
-
Platform=OpenBSD
|
7513 |
|
7514 |
-
[
|
7515 |
-
Parent=
|
7516 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7517 |
|
7518 |
-
[
|
7519 |
-
Parent=
|
7520 |
-
Platform=
|
|
|
7521 |
|
7522 |
-
[
|
7523 |
-
Parent=
|
7524 |
-
Platform=
|
|
|
7525 |
|
7526 |
-
[
|
7527 |
-
Parent=
|
7528 |
-
Platform=
|
|
|
7529 |
|
7530 |
-
|
|
|
|
|
|
|
7531 |
|
7532 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7533 |
Parent=DefaultProperties
|
7534 |
-
|
7535 |
-
|
7536 |
-
|
|
|
|
|
|
|
7537 |
Frames=true
|
|
|
7538 |
Tables=true
|
|
|
|
|
|
|
|
|
7539 |
|
7540 |
-
[
|
7541 |
-
Parent=
|
7542 |
-
Platform=
|
|
|
7543 |
|
7544 |
-
[
|
7545 |
-
Parent=
|
7546 |
-
Platform=
|
|
|
7547 |
|
7548 |
-
[
|
7549 |
-
Parent=
|
7550 |
-
Platform=
|
|
|
7551 |
|
7552 |
-
[
|
7553 |
-
Parent=
|
7554 |
-
Platform=
|
|
|
7555 |
|
7556 |
-
[
|
7557 |
-
Parent=
|
7558 |
-
Platform=
|
|
|
7559 |
|
7560 |
-
[
|
7561 |
-
Parent=
|
7562 |
-
Platform=
|
|
|
7563 |
|
7564 |
-
[
|
7565 |
-
Parent=
|
7566 |
-
Platform=
|
|
|
7567 |
|
7568 |
-
|
7569 |
-
Parent=ELinks 0.12
|
7570 |
-
Platform=IRIX
|
7571 |
|
7572 |
-
[
|
7573 |
-
Parent=
|
7574 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7575 |
|
7576 |
-
[
|
7577 |
-
Parent=
|
7578 |
-
Platform=
|
|
|
7579 |
|
7580 |
-
[
|
7581 |
-
Parent=
|
7582 |
-
Platform=
|
|
|
7583 |
|
7584 |
-
[
|
7585 |
-
Parent=
|
7586 |
-
Platform=
|
|
|
7587 |
|
7588 |
-
[
|
7589 |
-
Parent=
|
7590 |
-
Platform=
|
|
|
7591 |
|
7592 |
-
[
|
7593 |
-
Parent=
|
7594 |
-
Platform=
|
|
|
7595 |
|
7596 |
-
[
|
7597 |
-
Parent=
|
7598 |
-
Platform=
|
|
|
7599 |
|
7600 |
-
[
|
7601 |
-
Parent=
|
7602 |
-
Platform=
|
|
|
7603 |
|
7604 |
-
|
7605 |
-
Parent=ELinks 0.12
|
7606 |
-
Platform=BeOS
|
7607 |
|
7608 |
-
[
|
7609 |
-
Parent=
|
7610 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7611 |
|
7612 |
-
[
|
7613 |
-
Parent=
|
7614 |
-
Platform=
|
|
|
7615 |
|
7616 |
-
[
|
7617 |
-
Parent=
|
7618 |
-
Platform=
|
|
|
7619 |
|
7620 |
-
[
|
7621 |
-
Parent=
|
7622 |
-
Platform=
|
|
|
7623 |
|
7624 |
-
[
|
7625 |
-
Parent=
|
7626 |
-
Platform=
|
|
|
7627 |
|
7628 |
-
[
|
7629 |
-
Parent=
|
7630 |
-
Platform=
|
|
|
7631 |
|
7632 |
-
[
|
7633 |
-
Parent=
|
7634 |
-
Platform=
|
|
|
7635 |
|
7636 |
-
[
|
7637 |
-
Parent=
|
7638 |
-
Platform=
|
|
|
7639 |
|
7640 |
-
|
7641 |
-
Parent=ELinks 0.12
|
7642 |
-
Platform=OpenBSD
|
7643 |
|
7644 |
-
[
|
7645 |
-
Parent=
|
7646 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7647 |
|
7648 |
-
[
|
7649 |
-
Parent=
|
7650 |
-
Platform=
|
|
|
7651 |
|
7652 |
-
[
|
7653 |
-
Parent=
|
7654 |
-
Platform=
|
|
|
7655 |
|
7656 |
-
[
|
7657 |
-
Parent=
|
7658 |
-
Platform=
|
|
|
7659 |
|
7660 |
-
|
|
|
|
|
|
|
7661 |
|
7662 |
-
|
|
|
|
|
7663 |
Parent=DefaultProperties
|
7664 |
-
|
7665 |
-
|
7666 |
-
|
|
|
|
|
|
|
7667 |
Frames=true
|
|
|
7668 |
Tables=true
|
|
|
|
|
|
|
|
|
7669 |
|
7670 |
-
[
|
7671 |
-
Parent=
|
7672 |
-
Platform=
|
7673 |
-
|
7674 |
-
[ELinks (0.13*; *BeOS*)]
|
7675 |
-
Parent=ELinks 0.13
|
7676 |
-
Platform=BeOS
|
7677 |
-
|
7678 |
-
[ELinks (0.13*; *CygWin*)]
|
7679 |
-
Parent=ELinks 0.13
|
7680 |
-
Platform=CygWin
|
7681 |
|
7682 |
-
[
|
7683 |
-
Parent=
|
7684 |
-
Platform=
|
|
|
7685 |
|
7686 |
-
[
|
7687 |
-
Parent=
|
7688 |
-
Platform=
|
|
|
7689 |
|
7690 |
-
[
|
7691 |
-
Parent=
|
7692 |
-
Platform=
|
|
|
7693 |
|
7694 |
-
[
|
7695 |
-
Parent=
|
7696 |
-
Platform=
|
|
|
7697 |
|
7698 |
-
[
|
7699 |
-
Parent=
|
7700 |
-
Platform=
|
|
|
7701 |
|
7702 |
-
[
|
7703 |
-
Parent=
|
7704 |
-
Platform=
|
|
|
7705 |
|
7706 |
-
[
|
7707 |
-
Parent=
|
7708 |
-
Platform=
|
|
|
7709 |
|
7710 |
-
|
7711 |
-
Parent=ELinks 0.13
|
7712 |
-
Platform=OpenBSD
|
7713 |
|
7714 |
-
[
|
7715 |
-
Parent=
|
7716 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7717 |
|
7718 |
-
[
|
7719 |
-
Parent=
|
7720 |
-
Platform=
|
|
|
7721 |
|
7722 |
-
[
|
7723 |
-
Parent=
|
7724 |
-
Platform=
|
|
|
7725 |
|
7726 |
-
[
|
7727 |
-
Parent=
|
7728 |
-
Platform=
|
|
|
7729 |
|
7730 |
-
[
|
7731 |
-
Parent=
|
7732 |
-
Platform=
|
|
|
7733 |
|
7734 |
-
[
|
7735 |
-
Parent=
|
7736 |
-
Platform=
|
|
|
7737 |
|
7738 |
-
[
|
7739 |
-
Parent=
|
7740 |
-
Platform=
|
|
|
7741 |
|
7742 |
-
[
|
7743 |
-
Parent=
|
7744 |
-
Platform=
|
|
|
7745 |
|
7746 |
-
[
|
7747 |
-
Parent=
|
7748 |
-
Platform=
|
|
|
7749 |
|
7750 |
-
|
7751 |
-
Parent=ELinks 0.13
|
7752 |
-
Platform=FreeBSD
|
7753 |
|
7754 |
-
[
|
7755 |
-
Parent=
|
7756 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7757 |
|
7758 |
-
[
|
7759 |
-
Parent=
|
7760 |
-
Platform=
|
|
|
7761 |
|
7762 |
-
[
|
7763 |
-
Parent=
|
7764 |
-
Platform=Linux
|
|
|
7765 |
|
7766 |
-
[
|
7767 |
-
Parent=
|
7768 |
-
Platform=
|
|
|
7769 |
|
7770 |
-
[
|
7771 |
-
Parent=
|
7772 |
-
Platform=
|
|
|
7773 |
|
7774 |
-
[
|
7775 |
-
Parent=
|
7776 |
-
Platform=
|
|
|
7777 |
|
7778 |
-
[
|
7779 |
-
Parent=
|
7780 |
-
Platform=
|
|
|
7781 |
|
7782 |
-
[
|
7783 |
-
Parent=
|
7784 |
-
Platform=
|
|
|
7785 |
|
7786 |
-
[
|
7787 |
-
Parent=
|
7788 |
-
Platform=
|
|
|
7789 |
|
7790 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
7791 |
|
7792 |
-
[
|
7793 |
Parent=DefaultProperties
|
7794 |
-
|
|
|
7795 |
Version=0.9
|
|
|
7796 |
MinorVer=9
|
|
|
7797 |
Frames=true
|
|
|
7798 |
Tables=true
|
|
|
|
|
|
|
|
|
7799 |
|
7800 |
-
[
|
7801 |
-
Parent=
|
7802 |
-
Platform=
|
|
|
7803 |
|
7804 |
-
[
|
7805 |
-
Parent=
|
7806 |
-
Platform=
|
|
|
7807 |
|
7808 |
-
[
|
7809 |
-
Parent=
|
7810 |
-
Platform=
|
|
|
7811 |
|
7812 |
-
[
|
7813 |
-
Parent=
|
7814 |
-
Platform=
|
|
|
7815 |
|
7816 |
-
[
|
7817 |
-
Parent=
|
7818 |
-
Platform=
|
|
|
7819 |
|
7820 |
-
[
|
7821 |
-
Parent=
|
7822 |
-
Platform=
|
|
|
7823 |
|
7824 |
-
[
|
7825 |
-
Parent=
|
7826 |
-
Platform=
|
|
|
7827 |
|
7828 |
-
[
|
7829 |
-
Parent=
|
7830 |
-
Platform=
|
|
|
7831 |
|
7832 |
-
|
7833 |
-
Parent=ELinks 0.9
|
7834 |
-
Platform=Linux
|
7835 |
|
7836 |
-
[
|
7837 |
-
Parent=
|
7838 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7839 |
|
7840 |
-
[
|
7841 |
-
Parent=
|
7842 |
-
Platform=
|
|
|
7843 |
|
7844 |
-
[
|
7845 |
-
Parent=
|
7846 |
-
Platform=
|
|
|
7847 |
|
7848 |
-
[
|
7849 |
-
Parent=
|
7850 |
-
Platform=
|
|
|
7851 |
|
7852 |
-
[
|
7853 |
-
Parent=
|
7854 |
-
Platform=
|
|
|
7855 |
|
7856 |
-
[
|
7857 |
-
Parent=
|
7858 |
-
Platform=
|
|
|
7859 |
|
7860 |
-
[
|
7861 |
-
Parent=
|
7862 |
-
Platform=
|
|
|
7863 |
|
7864 |
-
[
|
7865 |
-
Parent=
|
7866 |
-
Platform=
|
|
|
7867 |
|
7868 |
-
[
|
7869 |
-
Parent=
|
7870 |
-
Platform=
|
|
|
7871 |
|
7872 |
-
|
7873 |
-
Parent=ELinks 0.9
|
7874 |
-
Platform=Darwin
|
7875 |
|
7876 |
-
[
|
7877 |
-
Parent=
|
7878 |
-
|
|
|
|
|
7879 |
|
7880 |
-
[
|
7881 |
-
Parent=
|
7882 |
-
|
7883 |
|
7884 |
-
[
|
7885 |
-
Parent=
|
7886 |
-
|
|
|
7887 |
|
7888 |
-
[
|
7889 |
-
Parent=
|
7890 |
-
|
|
|
|
|
|
|
7891 |
|
7892 |
-
[
|
7893 |
-
Parent=
|
7894 |
-
|
|
|
|
|
|
|
7895 |
|
7896 |
-
[
|
7897 |
-
Parent=
|
7898 |
-
|
7899 |
|
7900 |
-
[
|
7901 |
-
Parent=
|
7902 |
-
|
7903 |
|
7904 |
-
[
|
7905 |
-
Parent=
|
7906 |
-
|
7907 |
|
7908 |
-
[
|
7909 |
-
Parent=
|
7910 |
-
|
7911 |
|
7912 |
-
[
|
7913 |
-
Parent=
|
7914 |
-
|
7915 |
|
7916 |
-
[
|
7917 |
-
Parent=
|
7918 |
-
|
7919 |
|
7920 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
7921 |
|
7922 |
-
[
|
7923 |
Parent=DefaultProperties
|
7924 |
-
|
7925 |
-
|
7926 |
-
|
7927 |
-
|
7928 |
-
Cookies=true
|
7929 |
-
BackgroundSounds=true
|
7930 |
-
JavaApplets=true
|
7931 |
-
JavaScript=true
|
7932 |
-
CssVersion=2
|
7933 |
-
supportsCSS=true
|
7934 |
|
7935 |
-
[Mozilla/
|
7936 |
-
Parent=
|
|
|
|
|
|
|
7937 |
|
7938 |
-
|
|
|
|
|
|
|
|
|
7939 |
|
7940 |
-
|
|
|
|
|
7941 |
Parent=DefaultProperties
|
7942 |
-
|
7943 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7944 |
Frames=true
|
7945 |
IFrames=true
|
7946 |
Tables=true
|
7947 |
Cookies=true
|
7948 |
-
JavaApplets=true
|
7949 |
-
JavaScript=true
|
7950 |
-
CssVersion=2
|
7951 |
-
supportsCSS=true
|
7952 |
|
7953 |
-
[
|
7954 |
-
Parent=
|
7955 |
-
Version=0
|
7956 |
-
MajorVer=
|
7957 |
-
MinorVer=
|
7958 |
-
Beta=true
|
7959 |
|
7960 |
-
[
|
7961 |
-
Parent=
|
7962 |
-
Version=0
|
7963 |
-
MajorVer=
|
7964 |
-
MinorVer=
|
7965 |
-
Beta=true
|
7966 |
|
7967 |
-
[
|
7968 |
-
Parent=
|
7969 |
-
Version=0
|
7970 |
-
MajorVer=
|
7971 |
-
MinorVer=
|
7972 |
-
Beta=true
|
7973 |
|
7974 |
-
[
|
7975 |
-
Parent=
|
7976 |
-
Version=
|
7977 |
-
MajorVer=
|
7978 |
MinorVer=0
|
7979 |
|
7980 |
-
[
|
7981 |
-
Parent=
|
7982 |
-
Version=
|
7983 |
-
MajorVer=
|
7984 |
-
MinorVer=
|
7985 |
|
7986 |
-
[
|
7987 |
-
Parent=
|
7988 |
-
Version=
|
7989 |
-
MajorVer=
|
7990 |
-
MinorVer=
|
7991 |
-
Platform=MacOSX
|
7992 |
|
7993 |
-
[
|
7994 |
-
Parent=
|
7995 |
-
Version=
|
7996 |
-
MajorVer=
|
7997 |
-
MinorVer=
|
7998 |
-
Platform=MacOSX
|
7999 |
|
8000 |
-
[
|
8001 |
-
Parent=
|
8002 |
-
Version=
|
8003 |
-
MajorVer=
|
8004 |
-
MinorVer=
|
8005 |
-
Platform=MacOSX
|
8006 |
|
8007 |
-
[
|
8008 |
-
Parent=
|
8009 |
-
Version=
|
8010 |
-
MajorVer=
|
8011 |
-
MinorVer=
|
8012 |
-
Platform=MacOSX
|
8013 |
|
8014 |
-
|
|
|
|
|
|
|
|
|
8015 |
|
8016 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8017 |
Parent=DefaultProperties
|
8018 |
-
|
|
|
|
|
|
|
|
|
|
|
8019 |
Frames=true
|
8020 |
IFrames=true
|
8021 |
Tables=true
|
8022 |
Cookies=true
|
8023 |
-
JavaApplets=true
|
8024 |
-
JavaScript=true
|
8025 |
-
|
8026 |
-
[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Chimera/*]
|
8027 |
-
Parent=Chimera
|
8028 |
-
Platform=MacOSX
|
8029 |
|
8030 |
-
[
|
8031 |
-
Parent=
|
|
|
|
|
8032 |
|
8033 |
-
|
|
|
|
|
|
|
8034 |
|
8035 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8036 |
Parent=DefaultProperties
|
8037 |
-
|
8038 |
-
|
|
|
|
|
|
|
|
|
8039 |
Frames=true
|
8040 |
IFrames=true
|
8041 |
Tables=true
|
8042 |
Cookies=true
|
8043 |
-
CssVersion=2
|
8044 |
-
supportsCSS=true
|
8045 |
|
8046 |
-
[
|
8047 |
-
Parent=
|
8048 |
-
|
8049 |
-
|
8050 |
-
MinorVer=6
|
8051 |
|
8052 |
-
[
|
8053 |
-
Parent=
|
8054 |
-
|
8055 |
-
|
8056 |
-
MinorVer=7
|
8057 |
-
|
8058 |
-
[Dillo/0.8*]
|
8059 |
-
Parent=Dillo
|
8060 |
-
Version=0.8
|
8061 |
-
MajorVer=0
|
8062 |
-
MinorVer=8
|
8063 |
|
8064 |
-
[
|
8065 |
-
Parent=
|
8066 |
-
|
8067 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8068 |
MinorVer=0
|
|
|
|
|
|
|
|
|
|
|
8069 |
|
8070 |
-
|
|
|
|
|
|
|
8071 |
|
8072 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8073 |
Parent=DefaultProperties
|
8074 |
-
|
|
|
|
|
|
|
|
|
|
|
8075 |
Frames=true
|
|
|
8076 |
Tables=true
|
8077 |
Cookies=true
|
8078 |
|
8079 |
-
[
|
8080 |
-
Parent=
|
8081 |
-
|
8082 |
-
|
8083 |
-
MinorVer=0
|
8084 |
-
Platform=Unix
|
8085 |
|
8086 |
-
[
|
8087 |
-
Parent=
|
8088 |
-
|
8089 |
-
MajorVer=2
|
8090 |
-
MinorVer=0
|
8091 |
-
Platform=Linux
|
8092 |
|
8093 |
-
[
|
8094 |
-
Parent=
|
8095 |
-
|
8096 |
-
|
8097 |
-
MinorVer=0
|
8098 |
-
Platform=Unix
|
8099 |
|
8100 |
-
[
|
8101 |
-
Parent=
|
8102 |
-
|
8103 |
-
|
8104 |
-
MinorVer=0
|
8105 |
-
Platform=Linux
|
8106 |
|
8107 |
-
[
|
8108 |
-
Parent=
|
8109 |
-
|
8110 |
-
|
8111 |
-
MinorVer=0
|
8112 |
-
Platform=Unix
|
8113 |
|
8114 |
-
[
|
8115 |
-
Parent=
|
8116 |
-
|
8117 |
-
|
8118 |
-
MinorVer=0
|
8119 |
-
Platform=Linux
|
8120 |
|
8121 |
-
|
|
|
|
|
|
|
8122 |
|
8123 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8124 |
Parent=DefaultProperties
|
8125 |
-
|
|
|
|
|
|
|
|
|
|
|
8126 |
Frames=true
|
8127 |
IFrames=true
|
8128 |
Tables=true
|
8129 |
Cookies=true
|
8130 |
-
JavaScript=true
|
8131 |
|
8132 |
-
[
|
8133 |
-
Parent=
|
8134 |
-
|
|
|
8135 |
|
8136 |
-
[
|
8137 |
-
Parent=
|
8138 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8139 |
|
8140 |
-
|
8141 |
-
Parent=fantomas
|
8142 |
-
Browser="fantomas fantomBrowser"
|
8143 |
|
8144 |
-
[
|
8145 |
-
Parent=
|
8146 |
-
|
|
|
|
|
|
|
|
|
8147 |
|
8148 |
-
[Mozilla/4.0 (
|
8149 |
-
Parent=
|
8150 |
-
|
8151 |
|
8152 |
-
[
|
8153 |
-
Parent=
|
8154 |
-
|
|
|
8155 |
|
8156 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
8157 |
|
8158 |
-
[
|
8159 |
Parent=DefaultProperties
|
8160 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8161 |
Frames=true
|
8162 |
-
IFrames=true
|
8163 |
Tables=true
|
8164 |
-
|
8165 |
-
JavaScript=true
|
8166 |
|
8167 |
-
[Mozilla
|
8168 |
-
Parent=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8169 |
|
8170 |
-
[
|
8171 |
-
Parent=
|
|
|
|
|
8172 |
|
8173 |
-
|
|
|
|
|
|
|
8174 |
|
8175 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8176 |
Parent=DefaultProperties
|
8177 |
-
|
8178 |
-
|
|
|
|
|
8179 |
Frames=true
|
8180 |
IFrames=true
|
8181 |
Tables=true
|
8182 |
Cookies=true
|
8183 |
-
|
8184 |
JavaScript=true
|
|
|
8185 |
CssVersion=2
|
8186 |
-
supportsCSS=true
|
8187 |
|
8188 |
-
[
|
8189 |
-
Parent=
|
8190 |
-
|
8191 |
-
|
8192 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8193 |
|
8194 |
-
|
8195 |
-
Parent=Galeon
|
8196 |
-
Version=2.0
|
8197 |
-
MajorVer=2
|
8198 |
-
MinorVer=0
|
8199 |
|
8200 |
-
[
|
8201 |
-
Parent=
|
8202 |
-
|
8203 |
-
|
|
|
|
|
8204 |
MinorVer=0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8205 |
|
8206 |
-
[
|
8207 |
-
Parent=
|
8208 |
-
|
8209 |
-
|
8210 |
-
MinorVer=0
|
8211 |
|
8212 |
-
|
|
|
|
|
|
|
8213 |
|
8214 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8215 |
Parent=DefaultProperties
|
8216 |
-
|
8217 |
-
|
|
|
|
|
8218 |
Frames=true
|
8219 |
IFrames=true
|
8220 |
Tables=true
|
8221 |
Cookies=true
|
8222 |
-
JavaApplets=true
|
8223 |
JavaScript=true
|
8224 |
-
|
8225 |
-
supportsCSS=true
|
8226 |
|
8227 |
-
[Mozilla/
|
8228 |
-
Parent=
|
8229 |
-
Version=
|
8230 |
-
MajorVer=
|
8231 |
MinorVer=0
|
|
|
8232 |
|
8233 |
-
[Mozilla/
|
8234 |
-
Parent=
|
8235 |
-
Version=
|
8236 |
-
MajorVer=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8237 |
MinorVer=1
|
|
|
8238 |
|
8239 |
-
[Mozilla/
|
8240 |
-
Parent=
|
8241 |
-
Version=
|
8242 |
-
MajorVer=
|
8243 |
MinorVer=2
|
|
|
8244 |
|
8245 |
-
[Mozilla/
|
8246 |
-
Parent=
|
8247 |
-
Version=
|
8248 |
-
MajorVer=
|
8249 |
-
MinorVer=3
|
8250 |
-
|
8251 |
-
[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.4*) Gecko/*]
|
8252 |
-
Parent=HP Secure Web Browser
|
8253 |
-
Version=1.4
|
8254 |
-
MajorVer=1
|
8255 |
MinorVer=4
|
|
|
8256 |
|
8257 |
-
[Mozilla/
|
8258 |
-
Parent=
|
8259 |
-
Version=
|
8260 |
-
MajorVer=
|
8261 |
MinorVer=5
|
|
|
8262 |
|
8263 |
-
|
8264 |
-
Parent=HP Secure Web Browser
|
8265 |
-
Version=1.6
|
8266 |
-
MajorVer=1
|
8267 |
-
MinorVer=6
|
8268 |
|
8269 |
-
[
|
8270 |
-
Parent=HP Secure Web Browser
|
8271 |
-
Version=1.7
|
8272 |
-
MajorVer=1
|
8273 |
-
MinorVer=7
|
8274 |
-
|
8275 |
-
[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.8*) Gecko/*]
|
8276 |
-
Parent=HP Secure Web Browser
|
8277 |
-
Version=1.8
|
8278 |
-
MajorVer=1
|
8279 |
-
MinorVer=8
|
8280 |
-
|
8281 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IBrowse
|
8282 |
-
|
8283 |
-
[IBrowse]
|
8284 |
Parent=DefaultProperties
|
8285 |
-
|
8286 |
-
|
8287 |
Frames=true
|
|
|
8288 |
Tables=true
|
8289 |
Cookies=true
|
8290 |
JavaScript=true
|
|
|
8291 |
|
8292 |
-
[
|
8293 |
-
Parent=
|
8294 |
-
Version=
|
8295 |
-
MajorVer=
|
8296 |
MinorVer=0
|
|
|
8297 |
|
8298 |
-
[
|
8299 |
-
Parent=
|
8300 |
-
Version=1.22
|
8301 |
-
MajorVer=1
|
8302 |
-
MinorVer=22
|
8303 |
-
|
8304 |
-
[IBrowse/2.1 (AmigaOS *)]
|
8305 |
-
Parent=IBrowse
|
8306 |
Version=2.1
|
8307 |
MajorVer=2
|
8308 |
MinorVer=1
|
|
|
8309 |
|
8310 |
-
[
|
8311 |
-
Parent=
|
8312 |
-
Version=
|
8313 |
-
MajorVer=
|
8314 |
-
MinorVer=
|
8315 |
-
|
8316 |
-
[IBrowse/2.3 (AmigaOS *)]
|
8317 |
-
Parent=IBrowse
|
8318 |
-
Version=2.2
|
8319 |
-
MajorVer=2
|
8320 |
-
MinorVer=3
|
8321 |
|
8322 |
-
[
|
8323 |
-
Parent=
|
8324 |
-
Version=
|
8325 |
-
MajorVer=
|
8326 |
MinorVer=1
|
|
|
8327 |
|
8328 |
-
|
8329 |
-
Parent=IBrowse
|
8330 |
-
Version=2.2
|
8331 |
-
MajorVer=2
|
8332 |
-
MinorVer=2
|
8333 |
-
|
8334 |
-
[Mozilla/* (Win98; I) IBrowse/2.3 (AmigaOS 3.1)]
|
8335 |
-
Parent=IBrowse
|
8336 |
-
Version=2.3
|
8337 |
-
MajorVer=2
|
8338 |
-
MinorVer=3
|
8339 |
-
|
8340 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iCab
|
8341 |
|
8342 |
-
[
|
8343 |
Parent=DefaultProperties
|
8344 |
-
|
|
|
|
|
8345 |
Frames=true
|
|
|
8346 |
Tables=true
|
8347 |
Cookies=true
|
8348 |
JavaScript=true
|
|
|
|
|
8349 |
CssVersion=1
|
8350 |
-
supportsCSS=true
|
8351 |
-
|
8352 |
-
[iCab/2.7* (Macintosh; ?; 68K*)]
|
8353 |
-
Parent=iCab
|
8354 |
-
Version=2.7
|
8355 |
-
MajorVer=2
|
8356 |
-
MinorVer=7
|
8357 |
-
Platform=Mac68K
|
8358 |
-
|
8359 |
-
[iCab/2.7* (Macintosh; ?; PPC*)]
|
8360 |
-
Parent=iCab
|
8361 |
-
Version=2.7
|
8362 |
-
MajorVer=2
|
8363 |
-
MinorVer=7
|
8364 |
-
Platform=MacPPC
|
8365 |
-
|
8366 |
-
[iCab/2.8* (Macintosh; ?; *Mac OS X*)]
|
8367 |
-
Parent=iCab
|
8368 |
-
Version=2.8
|
8369 |
-
MajorVer=2
|
8370 |
-
MinorVer=8
|
8371 |
-
Platform=MacOSX
|
8372 |
-
|
8373 |
-
[iCab/2.8* (Macintosh; ?; 68K*)]
|
8374 |
-
Parent=iCab
|
8375 |
-
Version=2.8
|
8376 |
-
MajorVer=2
|
8377 |
-
MinorVer=8
|
8378 |
-
Platform=Mac68K
|
8379 |
|
8380 |
-
[
|
8381 |
-
Parent=
|
8382 |
-
Version=
|
8383 |
-
MajorVer=
|
8384 |
-
MinorVer=
|
8385 |
-
Platform=MacPPC
|
8386 |
|
8387 |
-
[
|
8388 |
-
Parent=
|
8389 |
-
Version=2.
|
8390 |
MajorVer=2
|
8391 |
-
MinorVer=
|
8392 |
-
Platform=MacOSX
|
8393 |
|
8394 |
-
|
8395 |
-
Parent=iCab
|
8396 |
-
Version=2.9
|
8397 |
-
MajorVer=2
|
8398 |
-
MinorVer=9
|
8399 |
-
Platform=Mac68K
|
8400 |
|
8401 |
-
[
|
8402 |
-
Parent=
|
8403 |
-
|
8404 |
-
|
8405 |
-
|
8406 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
8407 |
|
8408 |
-
[
|
8409 |
-
Parent=
|
8410 |
-
Version=
|
8411 |
-
MajorVer=
|
8412 |
MinorVer=0
|
8413 |
-
Platform=MacOSX
|
8414 |
-
CssVersion=2
|
8415 |
-
supportsCSS=true
|
8416 |
|
8417 |
-
[
|
8418 |
-
Parent=
|
8419 |
-
Version=
|
8420 |
-
MajorVer=
|
8421 |
MinorVer=0
|
8422 |
-
Platform=MacPPC
|
8423 |
-
CssVersion=2
|
8424 |
-
supportsCSS=true
|
8425 |
|
8426 |
-
[
|
8427 |
-
Parent=
|
8428 |
-
Version=
|
8429 |
-
MajorVer=
|
8430 |
MinorVer=0
|
8431 |
-
Platform=MacOSX
|
8432 |
|
8433 |
-
[Mozilla
|
8434 |
-
Parent=
|
8435 |
-
Version=
|
8436 |
-
MajorVer=
|
8437 |
MinorVer=0
|
8438 |
-
Platform=
|
8439 |
-
|
8440 |
-
supportsCSS=true
|
8441 |
|
8442 |
-
[Mozilla
|
8443 |
-
Parent=
|
8444 |
-
Version=
|
8445 |
-
MajorVer=
|
8446 |
MinorVer=0
|
8447 |
-
Platform=
|
8448 |
-
CssVersion=2
|
8449 |
-
supportsCSS=true
|
8450 |
|
8451 |
-
[Mozilla/
|
8452 |
-
Parent=
|
8453 |
-
Version=
|
8454 |
-
MajorVer=
|
8455 |
-
MinorVer=
|
8456 |
-
Platform=
|
8457 |
|
8458 |
-
|
8459 |
-
Parent=iCab
|
8460 |
-
Version=2.7
|
8461 |
-
MajorVer=2
|
8462 |
-
MinorVer=7
|
8463 |
-
Platform=MacPPC
|
8464 |
|
8465 |
-
[
|
8466 |
-
Parent=
|
8467 |
-
|
8468 |
-
|
8469 |
-
|
8470 |
-
|
|
|
|
|
|
|
|
|
|
|
8471 |
|
8472 |
-
[
|
8473 |
-
Parent=
|
8474 |
-
Version=2.8
|
8475 |
-
MajorVer=2
|
8476 |
-
MinorVer=8
|
8477 |
-
Platform=MacPPC
|
8478 |
|
8479 |
-
|
8480 |
-
Parent=iCab
|
8481 |
-
Version=2.9
|
8482 |
-
MajorVer=2
|
8483 |
-
MinorVer=9
|
8484 |
-
Platform=MacOSX
|
8485 |
|
8486 |
-
[
|
8487 |
-
Parent=
|
8488 |
-
|
8489 |
-
|
8490 |
-
|
8491 |
-
|
|
|
|
|
|
|
|
|
|
|
8492 |
|
8493 |
-
|
8494 |
-
Parent=iCab
|
8495 |
-
Version=4.2
|
8496 |
-
MajorVer=4
|
8497 |
-
MinorVer=2
|
8498 |
-
Platform=MacOSX
|
8499 |
|
8500 |
-
[Mozilla/5.0 (
|
8501 |
-
Parent=
|
8502 |
-
|
|
|
|
|
8503 |
MajorVer=4
|
8504 |
-
MinorVer=
|
|
|
8505 |
|
8506 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
8507 |
|
8508 |
-
[
|
8509 |
Parent=DefaultProperties
|
8510 |
-
|
|
|
8511 |
Frames=true
|
8512 |
IFrames=true
|
8513 |
Tables=true
|
8514 |
Cookies=true
|
8515 |
JavaScript=true
|
8516 |
-
|
8517 |
CssVersion=2
|
8518 |
-
supportsCSS=true
|
8519 |
|
8520 |
-
[
|
8521 |
-
Parent=
|
8522 |
-
Version=
|
8523 |
-
MajorVer=
|
8524 |
-
MinorVer=
|
8525 |
-
Platform=
|
8526 |
|
8527 |
-
|
8528 |
-
Parent=iSiloX
|
8529 |
-
Version=4.0
|
8530 |
-
MajorVer=4
|
8531 |
-
MinorVer=0
|
8532 |
-
Platform=Win32
|
8533 |
-
Win32=true
|
8534 |
|
8535 |
-
[
|
8536 |
-
Parent=iSiloX
|
8537 |
-
Version=4.1
|
8538 |
-
MajorVer=4
|
8539 |
-
MinorVer=1
|
8540 |
-
Platform=MacPPC
|
8541 |
-
|
8542 |
-
[iSiloX/4.1* Windows/32]
|
8543 |
-
Parent=iSiloX
|
8544 |
-
Version=4.1
|
8545 |
-
MajorVer=4
|
8546 |
-
MinorVer=1
|
8547 |
-
Platform=Win32
|
8548 |
-
Win32=true
|
8549 |
-
|
8550 |
-
[iSiloX/4.2* MacOS]
|
8551 |
-
Parent=iSiloX
|
8552 |
-
Version=4.2
|
8553 |
-
MajorVer=4
|
8554 |
-
MinorVer=2
|
8555 |
-
Platform=MacPPC
|
8556 |
-
|
8557 |
-
[iSiloX/4.2* Windows/32]
|
8558 |
-
Parent=iSiloX
|
8559 |
-
Version=4.2
|
8560 |
-
MajorVer=4
|
8561 |
-
MinorVer=2
|
8562 |
-
Platform=Win32
|
8563 |
-
Win32=true
|
8564 |
-
|
8565 |
-
[iSiloX/4.3* MacOS]
|
8566 |
-
Parent=iSiloX
|
8567 |
-
Version=4.3
|
8568 |
-
MajorVer=4
|
8569 |
-
MinorVer=4
|
8570 |
-
Platform=MacOSX
|
8571 |
-
|
8572 |
-
[iSiloX/4.3* Windows/32]
|
8573 |
-
Parent=iSiloX
|
8574 |
-
Version=4.3
|
8575 |
-
MajorVer=4
|
8576 |
-
MinorVer=3
|
8577 |
-
Platform=Win32
|
8578 |
-
Win32=true
|
8579 |
-
|
8580 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycoris Desktop/LX
|
8581 |
-
|
8582 |
-
[Lycoris Desktop/LX]
|
8583 |
Parent=DefaultProperties
|
8584 |
-
|
|
|
8585 |
Frames=true
|
8586 |
IFrames=true
|
8587 |
Tables=true
|
8588 |
Cookies=true
|
8589 |
-
|
8590 |
-
JavaScript=true
|
8591 |
-
Crawler=true
|
8592 |
|
8593 |
-
[
|
8594 |
-
Parent=
|
8595 |
-
Version=1.1
|
8596 |
-
MajorVer=1
|
8597 |
-
MinorVer=1
|
8598 |
-
Platform=Linux
|
8599 |
|
8600 |
-
[
|
8601 |
-
Parent=
|
8602 |
-
Version=1.0
|
8603 |
-
MajorVer=1
|
8604 |
-
MinorVer=0
|
8605 |
-
Platform=Linux
|
8606 |
|
8607 |
-
[
|
8608 |
-
Parent=
|
8609 |
-
Platform=OpenVMS
|
8610 |
|
8611 |
-
[
|
8612 |
-
Parent=
|
8613 |
-
Version=3.7
|
8614 |
-
MajorVer=3
|
8615 |
-
MinorVer=7
|
8616 |
-
Platform=OpenVMS
|
8617 |
|
8618 |
-
[
|
8619 |
-
Parent=
|
8620 |
-
Version=3.8
|
8621 |
-
MajorVer=3
|
8622 |
-
MinorVer=8
|
8623 |
-
Platform=OpenVMS
|
8624 |
|
8625 |
-
|
|
|
8626 |
|
8627 |
-
[
|
8628 |
-
Parent=
|
8629 |
-
Browser="NetPositive"
|
8630 |
-
Platform=BeOS
|
8631 |
-
Frames=true
|
8632 |
-
IFrames=true
|
8633 |
-
Tables=true
|
8634 |
-
Cookies=true
|
8635 |
-
JavaApplets=true
|
8636 |
-
JavaScript=true
|
8637 |
|
8638 |
-
[
|
8639 |
-
Parent=
|
8640 |
-
Version=2.2
|
8641 |
-
MajorVer=2
|
8642 |
-
MinorVer=2
|
8643 |
|
8644 |
-
[
|
8645 |
-
Parent=
|
8646 |
-
Version=2.2
|
8647 |
-
MajorVer=2
|
8648 |
-
MinorVer=2
|
8649 |
|
8650 |
-
|
|
|
8651 |
|
8652 |
-
[
|
8653 |
-
Parent=
|
8654 |
-
Browser="OmniWeb"
|
8655 |
-
Platform=MacOSX
|
8656 |
-
Frames=true
|
8657 |
-
Tables=true
|
8658 |
-
Cookies=true
|
8659 |
-
JavaApplets=true
|
8660 |
-
JavaScript=true
|
8661 |
-
isMobileDevice=true
|
8662 |
-
CssVersion=2
|
8663 |
-
supportsCSS=true
|
8664 |
|
8665 |
-
[Mozilla/* (
|
8666 |
-
Parent=
|
8667 |
-
|
8668 |
-
MajorVer=4
|
8669 |
-
MinorVer=5
|
8670 |
-
Platform=MacOSX
|
8671 |
|
8672 |
-
[Mozilla
|
8673 |
-
Parent=
|
8674 |
-
|
8675 |
-
MajorVer=5
|
8676 |
-
MinorVer=0
|
8677 |
-
Platform=MacOSX
|
8678 |
|
8679 |
-
[
|
8680 |
-
Parent=
|
8681 |
-
Version=6.0
|
8682 |
-
MajorVer=6
|
8683 |
-
MinorVer=0
|
8684 |
-
Platform=MacOSX
|
8685 |
|
8686 |
-
[
|
8687 |
-
Parent=
|
8688 |
-
Version=4.0
|
8689 |
-
MajorVer=4
|
8690 |
-
MinorVer=0
|
8691 |
-
Platform=MacPPC
|
8692 |
|
8693 |
-
[
|
8694 |
-
Parent=
|
8695 |
-
Version=5.0
|
8696 |
-
MajorVer=5
|
8697 |
-
MinorVer=0
|
8698 |
-
Platform=MacOSX
|
8699 |
|
8700 |
-
[
|
8701 |
-
Parent=
|
8702 |
-
Version=6.0
|
8703 |
-
MajorVer=6
|
8704 |
-
MinorVer=0
|
8705 |
-
Platform=MacPPC
|
8706 |
|
8707 |
-
[
|
8708 |
-
Parent=
|
8709 |
-
Version=5.1
|
8710 |
-
MajorVer=5
|
8711 |
-
MinorVer=1
|
8712 |
|
8713 |
-
[
|
8714 |
-
Parent=
|
8715 |
-
Version=5.5
|
8716 |
-
MajorVer=5
|
8717 |
-
MinorVer=5
|
8718 |
|
8719 |
-
[
|
8720 |
-
Parent=
|
8721 |
-
Version=5.6
|
8722 |
-
MajorVer=5
|
8723 |
-
MinorVer=6
|
8724 |
|
8725 |
-
[
|
8726 |
-
Parent=
|
8727 |
-
Version=4.5
|
8728 |
-
MajorVer=4
|
8729 |
-
MinorVer=5
|
8730 |
|
8731 |
-
[
|
8732 |
-
Parent=
|
8733 |
-
Version=5.0
|
8734 |
-
MajorVer=5
|
8735 |
-
MinorVer=0
|
8736 |
|
8737 |
-
|
|
|
8738 |
|
8739 |
-
|
|
|
|
|
8740 |
Parent=DefaultProperties
|
8741 |
-
|
8742 |
-
|
8743 |
Frames=true
|
8744 |
IFrames=true
|
8745 |
Tables=true
|
8746 |
Cookies=true
|
8747 |
-
BackgroundSounds=true
|
8748 |
-
JavaApplets=true
|
8749 |
JavaScript=true
|
8750 |
-
|
8751 |
-
supportsCSS=true
|
8752 |
-
|
8753 |
-
[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/0.9*]
|
8754 |
-
Parent=Shiira
|
8755 |
-
Version=0.9
|
8756 |
-
MajorVer=0
|
8757 |
-
MinorVer=9
|
8758 |
|
8759 |
-
[
|
8760 |
-
Parent=
|
8761 |
-
Version=1.0
|
8762 |
-
MajorVer=1
|
8763 |
-
MinorVer=0
|
8764 |
|
8765 |
-
[Mozilla
|
8766 |
-
Parent=
|
8767 |
-
|
8768 |
-
MajorVer=1
|
8769 |
-
MinorVer=1
|
8770 |
|
8771 |
-
[Mozilla/5.0 (
|
8772 |
-
Parent=
|
8773 |
-
|
8774 |
-
|
|
|
8775 |
MinorVer=2
|
|
|
|
|
8776 |
|
8777 |
-
|
8778 |
-
Parent=Shiira
|
8779 |
-
Version=2.1
|
8780 |
-
MajorVer=2
|
8781 |
-
MinorVer=1
|
8782 |
-
|
8783 |
-
[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.2*]
|
8784 |
-
Parent=Shiira
|
8785 |
-
Version=2.2
|
8786 |
-
MajorVer=2
|
8787 |
-
MinorVer=2
|
8788 |
|
8789 |
-
[
|
8790 |
Parent=DefaultProperties
|
8791 |
-
|
8792 |
-
|
8793 |
Frames=true
|
8794 |
IFrames=true
|
8795 |
Tables=true
|
8796 |
Cookies=true
|
8797 |
-
VBScript=true
|
8798 |
-
JavaApplets=true
|
8799 |
JavaScript=true
|
8800 |
-
|
8801 |
-
supportsCSS=true
|
8802 |
|
8803 |
-
[
|
8804 |
-
Parent=
|
8805 |
|
8806 |
-
|
|
|
8807 |
|
8808 |
-
|
|
|
|
|
8809 |
Parent=DefaultProperties
|
8810 |
-
|
8811 |
-
|
8812 |
-
|
8813 |
-
Win32=true
|
8814 |
Frames=true
|
8815 |
IFrames=true
|
8816 |
Tables=true
|
8817 |
Cookies=true
|
8818 |
-
JavaApplets=true
|
8819 |
JavaScript=true
|
8820 |
-
|
8821 |
-
supportsCSS=true
|
8822 |
|
8823 |
-
[Mozilla/5.0 (
|
8824 |
-
Parent=
|
8825 |
Version=1.0
|
8826 |
MajorVer=1
|
8827 |
MinorVer=0
|
8828 |
-
|
8829 |
-
Win32=true
|
8830 |
|
8831 |
-
[Mozilla/5.0 (
|
8832 |
-
Parent=
|
8833 |
-
Version=
|
8834 |
-
MajorVer=
|
8835 |
MinorVer=0
|
8836 |
-
|
8837 |
-
Win32=true
|
8838 |
|
8839 |
-
[Mozilla/5.0 (
|
8840 |
-
Parent=
|
8841 |
-
Version=
|
8842 |
-
MajorVer=
|
8843 |
MinorVer=0
|
8844 |
-
|
8845 |
-
Win32=true
|
8846 |
|
8847 |
-
[Mozilla/5.0 (
|
8848 |
-
Parent=
|
8849 |
Version=1.0
|
8850 |
MajorVer=1
|
8851 |
MinorVer=0
|
8852 |
-
|
8853 |
-
Win32=true
|
8854 |
|
8855 |
-
|
8856 |
-
Parent=K-Meleon 1.0
|
8857 |
-
Version=1.0
|
8858 |
-
MajorVer=1
|
8859 |
-
MinorVer=0
|
8860 |
-
Platform=Win2003
|
8861 |
-
Win32=true
|
8862 |
|
8863 |
-
[
|
8864 |
-
Parent=
|
8865 |
-
|
8866 |
-
|
8867 |
-
|
8868 |
-
|
8869 |
-
|
|
|
|
|
|
|
|
|
8870 |
|
8871 |
-
|
|
|
|
|
|
|
8872 |
|
8873 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8874 |
Parent=DefaultProperties
|
8875 |
-
|
8876 |
-
|
8877 |
-
|
8878 |
-
|
8879 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8880 |
Frames=true
|
8881 |
IFrames=true
|
8882 |
Tables=true
|
8883 |
Cookies=true
|
8884 |
-
JavaApplets=true
|
8885 |
JavaScript=true
|
|
|
8886 |
CssVersion=2
|
8887 |
-
supportsCSS=true
|
8888 |
|
8889 |
-
[
|
8890 |
-
Parent=
|
8891 |
-
|
8892 |
-
|
|
|
8893 |
MinorVer=0
|
8894 |
-
Platform=Win95
|
8895 |
-
Win32=true
|
8896 |
|
8897 |
-
[
|
8898 |
-
Parent=
|
8899 |
-
|
8900 |
-
|
|
|
8901 |
MinorVer=0
|
8902 |
-
Platform=Win98
|
8903 |
-
Win32=true
|
8904 |
|
8905 |
-
[
|
8906 |
-
Parent=
|
8907 |
-
|
8908 |
-
|
|
|
8909 |
MinorVer=0
|
8910 |
-
Platform=Win2000
|
8911 |
-
Win32=true
|
8912 |
|
8913 |
-
[
|
8914 |
-
Parent=
|
8915 |
-
|
8916 |
-
|
|
|
8917 |
MinorVer=0
|
8918 |
-
Platform=WinXP
|
8919 |
-
Win32=true
|
8920 |
|
8921 |
-
[
|
8922 |
-
Parent=
|
8923 |
-
|
8924 |
-
|
|
|
8925 |
MinorVer=0
|
8926 |
-
Platform=Win2003
|
8927 |
-
Win32=true
|
8928 |
|
8929 |
-
[
|
8930 |
-
Parent=
|
8931 |
-
|
8932 |
-
|
|
|
8933 |
MinorVer=0
|
8934 |
-
Platform=WinNT
|
8935 |
-
Win32=true
|
8936 |
|
8937 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
8938 |
|
8939 |
-
[
|
8940 |
Parent=DefaultProperties
|
8941 |
-
|
8942 |
-
|
8943 |
-
|
8944 |
-
MinorVer=5
|
8945 |
-
Win32=true
|
8946 |
Frames=true
|
8947 |
IFrames=true
|
8948 |
Tables=true
|
8949 |
Cookies=true
|
8950 |
-
JavaApplets=true
|
8951 |
JavaScript=true
|
8952 |
-
|
8953 |
-
|
8954 |
|
8955 |
-
[
|
8956 |
-
Parent=
|
8957 |
-
Version=1.0
|
8958 |
-
MajorVer=1
|
8959 |
-
MinorVer=0
|
8960 |
-
Platform=Win95
|
8961 |
-
Win32=true
|
8962 |
|
8963 |
-
|
8964 |
-
Parent=K-Meleon 1.5
|
8965 |
-
Version=1.0
|
8966 |
-
MajorVer=1
|
8967 |
-
MinorVer=0
|
8968 |
-
Platform=Win98
|
8969 |
-
Win32=true
|
8970 |
|
8971 |
-
[
|
8972 |
-
Parent=
|
8973 |
-
|
8974 |
-
|
8975 |
-
|
8976 |
-
|
8977 |
-
|
|
|
|
|
|
|
|
|
8978 |
|
8979 |
-
[Mozilla/5.0 (
|
8980 |
-
Parent=
|
8981 |
Version=1.0
|
8982 |
MajorVer=1
|
8983 |
MinorVer=0
|
8984 |
-
Platform=WinXP
|
8985 |
-
Win32=true
|
8986 |
|
8987 |
-
[Mozilla/5.0 (
|
8988 |
-
Parent=
|
8989 |
Version=1.0
|
8990 |
MajorVer=1
|
8991 |
MinorVer=0
|
8992 |
-
Platform=Win2003
|
8993 |
-
Win32=true
|
8994 |
|
8995 |
-
|
8996 |
-
Parent=K-Meleon 1.5
|
8997 |
-
Platform=WinVista
|
8998 |
|
8999 |
-
[
|
9000 |
-
Parent=
|
9001 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9002 |
|
9003 |
-
[Mozilla/5.0 (
|
9004 |
-
Parent=
|
9005 |
-
Version=
|
9006 |
-
MajorVer=
|
9007 |
MinorVer=0
|
9008 |
-
Platform=
|
9009 |
-
|
|
|
9010 |
|
9011 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9012 |
|
9013 |
-
[
|
9014 |
Parent=DefaultProperties
|
9015 |
-
|
9016 |
-
|
9017 |
Frames=true
|
9018 |
IFrames=true
|
9019 |
Tables=true
|
9020 |
Cookies=true
|
9021 |
JavaScript=true
|
9022 |
-
|
9023 |
-
|
9024 |
|
9025 |
-
[
|
9026 |
-
Parent=
|
9027 |
Version=3.0
|
9028 |
MajorVer=3
|
9029 |
MinorVer=0
|
9030 |
-
IFrames=false
|
9031 |
|
9032 |
-
[
|
9033 |
-
Parent=
|
9034 |
-
Version=3.
|
9035 |
MajorVer=3
|
9036 |
-
MinorVer=
|
9037 |
-
Platform=FreeBSD
|
9038 |
-
IFrames=false
|
9039 |
|
9040 |
-
|
9041 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9042 |
Version=3.0
|
9043 |
MajorVer=3
|
9044 |
MinorVer=0
|
9045 |
-
Platform=
|
9046 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
9047 |
|
9048 |
-
[*
|
9049 |
-
Parent=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9050 |
Version=3.1
|
9051 |
MajorVer=3
|
9052 |
MinorVer=1
|
|
|
9053 |
|
9054 |
-
[*
|
9055 |
-
Parent=
|
9056 |
Version=3.1
|
9057 |
MajorVer=3
|
9058 |
MinorVer=1
|
9059 |
-
|
9060 |
|
9061 |
-
[*
|
9062 |
-
Parent=
|
9063 |
Version=3.1
|
9064 |
MajorVer=3
|
9065 |
MinorVer=1
|
|
|
9066 |
|
9067 |
-
[*
|
9068 |
-
Parent=
|
9069 |
-
Version=3.
|
9070 |
MajorVer=3
|
9071 |
-
MinorVer=
|
|
|
9072 |
|
9073 |
-
[*
|
9074 |
-
Parent=
|
9075 |
-
Version=3.
|
9076 |
MajorVer=3
|
9077 |
-
MinorVer=
|
9078 |
-
|
9079 |
|
9080 |
-
[*
|
9081 |
-
Parent=
|
9082 |
-
Version=3.
|
9083 |
MajorVer=3
|
9084 |
-
MinorVer=
|
9085 |
-
|
9086 |
|
9087 |
-
[*
|
9088 |
-
Parent=
|
9089 |
-
Version=3.
|
9090 |
MajorVer=3
|
9091 |
-
MinorVer=
|
|
|
9092 |
|
9093 |
-
|
9094 |
-
Parent=Konqueror 3.0
|
9095 |
-
Version=3.3
|
9096 |
-
MajorVer=3
|
9097 |
-
MinorVer=3
|
9098 |
-
Platform=FreeBSD
|
9099 |
|
9100 |
-
[
|
9101 |
-
Parent=
|
9102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9103 |
MajorVer=3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9104 |
MinorVer=3
|
9105 |
-
Platform=Linux
|
9106 |
|
9107 |
-
[
|
9108 |
-
Parent=
|
9109 |
-
Version=
|
9110 |
-
MajorVer=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9111 |
MinorVer=3
|
9112 |
-
|
9113 |
|
9114 |
-
|
9115 |
-
Parent=Konqueror 3.0
|
9116 |
-
Version=3.4
|
9117 |
-
MajorVer=3
|
9118 |
-
MinorVer=4
|
9119 |
|
9120 |
-
[
|
9121 |
-
Parent=
|
9122 |
-
|
9123 |
-
|
9124 |
-
|
9125 |
-
|
|
|
|
|
|
|
9126 |
|
9127 |
-
[
|
9128 |
-
Parent=
|
9129 |
-
Version=
|
9130 |
-
MajorVer=
|
9131 |
-
MinorVer=
|
9132 |
-
Platform=
|
|
|
9133 |
|
9134 |
-
[
|
9135 |
-
Parent=
|
9136 |
-
Version=
|
9137 |
-
MajorVer=
|
9138 |
-
MinorVer=
|
9139 |
-
Platform=
|
|
|
9140 |
|
9141 |
-
[
|
9142 |
-
Parent=
|
9143 |
-
Version=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9144 |
MajorVer=3
|
9145 |
-
MinorVer=
|
|
|
|
|
9146 |
|
9147 |
-
[
|
9148 |
-
Parent=
|
9149 |
-
Version=3.
|
9150 |
MajorVer=3
|
9151 |
-
MinorVer=
|
9152 |
-
Platform=
|
|
|
9153 |
|
9154 |
-
[
|
9155 |
-
Parent=
|
9156 |
-
Version=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9157 |
MajorVer=3
|
9158 |
-
MinorVer=
|
9159 |
-
Platform=
|
|
|
9160 |
|
9161 |
-
[
|
9162 |
-
Parent=
|
9163 |
-
Version=3.
|
9164 |
MajorVer=3
|
9165 |
-
MinorVer=
|
9166 |
-
Platform=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9167 |
|
9168 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
9169 |
|
9170 |
-
|
|
|
|
|
9171 |
Parent=DefaultProperties
|
9172 |
-
|
9173 |
-
|
9174 |
-
MajorVer=4
|
9175 |
Frames=true
|
9176 |
IFrames=true
|
9177 |
Tables=true
|
9178 |
Cookies=true
|
9179 |
JavaScript=true
|
9180 |
-
CssVersion=2
|
9181 |
-
supportsCSS=true
|
9182 |
-
|
9183 |
-
[Mozilla/5.0 (compatible; Konqueror/4.0*) KHTML/4.0* (like Gecko)]
|
9184 |
-
Parent=Konqueror 4.0
|
9185 |
|
9186 |
-
[Mozilla/5.0 (
|
9187 |
-
Parent=
|
9188 |
-
|
|
|
|
|
|
|
9189 |
|
9190 |
-
[Mozilla/
|
9191 |
-
Parent=
|
9192 |
-
Platform=
|
9193 |
|
9194 |
-
[
|
9195 |
-
Parent=
|
9196 |
-
|
|
|
|
|
|
|
9197 |
|
9198 |
-
[
|
9199 |
-
Parent=
|
9200 |
-
|
|
|
|
|
|
|
9201 |
|
9202 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9203 |
|
9204 |
-
[
|
9205 |
Parent=DefaultProperties
|
9206 |
-
|
9207 |
-
|
9208 |
-
|
9209 |
-
MinorVer=1
|
9210 |
Frames=true
|
9211 |
IFrames=true
|
9212 |
Tables=true
|
9213 |
Cookies=true
|
9214 |
JavaScript=true
|
9215 |
-
CssVersion=2
|
9216 |
-
supportsCSS=true
|
9217 |
-
|
9218 |
-
[Mozilla/5.0 (compatible; Konqueror/4.1*) KHTML/4.1* (like Gecko)*]
|
9219 |
-
Parent=Konqueror 4.1
|
9220 |
|
9221 |
-
[
|
9222 |
-
Parent=
|
9223 |
-
|
9224 |
-
|
9225 |
-
|
9226 |
-
Parent=Konqueror 4.1
|
9227 |
-
Platform=Debian
|
9228 |
-
|
9229 |
-
[Mozilla/5.0 (compatible; Konqueror/4.1*; FreeBSD) KHTML/4.1* (like Gecko)*]
|
9230 |
-
Parent=Konqueror 4.1
|
9231 |
-
Platform=FreeBSD
|
9232 |
-
|
9233 |
-
[Mozilla/5.0 (compatible; Konqueror/4.1*; NetBSD) KHTML/4.1* (like Gecko)*]
|
9234 |
-
Parent=Konqueror 4.1
|
9235 |
-
Platform=NetBSD
|
9236 |
|
9237 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9238 |
|
9239 |
-
[
|
9240 |
Parent=DefaultProperties
|
9241 |
-
|
9242 |
-
|
9243 |
-
|
9244 |
-
MinorVer=2
|
9245 |
Frames=true
|
9246 |
IFrames=true
|
9247 |
Tables=true
|
9248 |
Cookies=true
|
9249 |
JavaScript=true
|
9250 |
CssVersion=2
|
9251 |
-
supportsCSS=true
|
9252 |
|
9253 |
-
[Mozilla/5.0 (
|
9254 |
-
Parent=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9255 |
|
9256 |
-
[Mozilla/5.0 (
|
9257 |
-
Parent=
|
9258 |
-
|
|
|
|
|
9259 |
|
9260 |
-
[Mozilla/5.0 (
|
9261 |
-
Parent=
|
9262 |
-
|
|
|
|
|
9263 |
|
9264 |
-
[Mozilla/5.0 (
|
9265 |
-
Parent=
|
9266 |
-
|
|
|
|
|
9267 |
|
9268 |
-
[Mozilla/5.0 (
|
9269 |
-
Parent=
|
9270 |
-
|
|
|
|
|
9271 |
|
9272 |
-
[Mozilla/5.0 (
|
9273 |
-
Parent=
|
9274 |
-
|
|
|
|
|
9275 |
|
9276 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9277 |
|
9278 |
-
[
|
9279 |
Parent=DefaultProperties
|
9280 |
-
|
9281 |
-
|
9282 |
-
|
9283 |
-
|
|
|
|
|
9284 |
Frames=true
|
9285 |
IFrames=true
|
9286 |
Tables=true
|
9287 |
Cookies=true
|
9288 |
JavaScript=true
|
9289 |
CssVersion=2
|
9290 |
-
supportsCSS=true
|
9291 |
|
9292 |
-
[Mozilla/5.0 (
|
9293 |
-
Parent=
|
|
|
|
|
|
|
|
|
|
|
9294 |
|
9295 |
-
[Mozilla/5.0 (
|
9296 |
-
Parent=
|
9297 |
-
|
|
|
|
|
|
|
|
|
9298 |
|
9299 |
-
[Mozilla/5.0 (
|
9300 |
-
Parent=
|
9301 |
-
|
|
|
|
|
|
|
|
|
9302 |
|
9303 |
-
[Mozilla/5.0 (
|
9304 |
-
Parent=
|
9305 |
-
|
|
|
|
|
|
|
|
|
9306 |
|
9307 |
-
[Mozilla/5.0 (
|
9308 |
-
Parent=
|
9309 |
-
|
|
|
|
|
|
|
|
|
9310 |
|
9311 |
-
[Mozilla/5.0 (
|
9312 |
-
Parent=
|
9313 |
-
|
|
|
|
|
|
|
|
|
9314 |
|
9315 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9316 |
|
9317 |
-
[
|
9318 |
Parent=DefaultProperties
|
9319 |
-
|
9320 |
-
|
|
|
|
|
|
|
|
|
9321 |
Frames=true
|
9322 |
IFrames=true
|
9323 |
Tables=true
|
9324 |
Cookies=true
|
9325 |
-
BackgroundSounds=true
|
9326 |
-
JavaApplets=true
|
9327 |
JavaScript=true
|
9328 |
CssVersion=2
|
9329 |
-
supportsCSS=true
|
9330 |
-
|
9331 |
-
[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/100*]
|
9332 |
-
Parent=Safari
|
9333 |
-
Version=1.1
|
9334 |
-
MajorVer=1
|
9335 |
-
MinorVer=1
|
9336 |
-
|
9337 |
-
[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/125*]
|
9338 |
-
Parent=Safari
|
9339 |
-
Version=1.2
|
9340 |
-
MajorVer=1
|
9341 |
-
MinorVer=2
|
9342 |
|
9343 |
-
[Mozilla/5.0 (
|
9344 |
-
Parent=
|
9345 |
-
Version=1.
|
9346 |
MajorVer=1
|
9347 |
-
MinorVer=3
|
9348 |
-
|
9349 |
-
[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/412*]
|
9350 |
-
Parent=Safari
|
9351 |
-
Version=2.0
|
9352 |
-
MajorVer=2
|
9353 |
MinorVer=0
|
|
|
|
|
9354 |
|
9355 |
-
[Mozilla/5.0 (
|
9356 |
-
Parent=
|
9357 |
-
Version=
|
9358 |
-
MajorVer=
|
9359 |
MinorVer=0
|
|
|
|
|
9360 |
|
9361 |
-
[Mozilla/5.0 (
|
9362 |
-
Parent=
|
9363 |
-
Version=
|
9364 |
-
MajorVer=
|
9365 |
MinorVer=0
|
|
|
|
|
9366 |
|
9367 |
-
[Mozilla/5.0 (
|
9368 |
-
Parent=
|
9369 |
-
Version=
|
9370 |
-
MajorVer=
|
9371 |
MinorVer=0
|
|
|
|
|
9372 |
|
9373 |
-
[Mozilla/5.0 (
|
9374 |
-
Parent=
|
9375 |
-
Version=
|
9376 |
-
MajorVer=
|
9377 |
MinorVer=0
|
|
|
|
|
9378 |
|
9379 |
-
[Mozilla/5.0 (
|
9380 |
-
Parent=
|
9381 |
-
Beta=true
|
9382 |
-
|
9383 |
-
[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/85*]
|
9384 |
-
Parent=Safari
|
9385 |
Version=1.0
|
9386 |
MajorVer=1
|
9387 |
MinorVer=0
|
|
|
|
|
9388 |
|
9389 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9390 |
|
9391 |
-
[
|
9392 |
Parent=DefaultProperties
|
9393 |
-
|
9394 |
-
|
9395 |
-
|
9396 |
-
|
|
|
|
|
9397 |
Frames=true
|
9398 |
IFrames=true
|
9399 |
Tables=true
|
9400 |
Cookies=true
|
9401 |
-
BackgroundSounds=true
|
9402 |
-
JavaApplets=true
|
9403 |
JavaScript=true
|
9404 |
CssVersion=2
|
9405 |
-
supportsCSS=true
|
9406 |
|
9407 |
-
[Mozilla/5.0 (
|
9408 |
-
Parent=
|
9409 |
-
|
|
|
|
|
|
|
|
|
9410 |
|
9411 |
-
[Mozilla/5.0 (Windows;
|
9412 |
-
Parent=
|
9413 |
-
|
|
|
|
|
|
|
|
|
9414 |
|
9415 |
-
[Mozilla/5.0 (Windows;
|
9416 |
-
Parent=
|
9417 |
-
|
|
|
|
|
|
|
|
|
9418 |
|
9419 |
-
[Mozilla/5.0 (Windows;
|
9420 |
-
Parent=
|
9421 |
-
|
|
|
|
|
|
|
|
|
9422 |
|
9423 |
-
[Mozilla/5.0 (Windows;
|
9424 |
-
Parent=
|
9425 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9426 |
|
9427 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9428 |
|
9429 |
-
[
|
9430 |
Parent=DefaultProperties
|
9431 |
-
|
9432 |
-
|
9433 |
-
|
9434 |
-
|
9435 |
-
|
|
|
9436 |
Frames=true
|
9437 |
IFrames=true
|
9438 |
Tables=true
|
9439 |
Cookies=true
|
9440 |
-
BackgroundSounds=true
|
9441 |
-
JavaApplets=true
|
9442 |
JavaScript=true
|
9443 |
CssVersion=2
|
9444 |
-
supportsCSS=true
|
9445 |
|
9446 |
-
[Mozilla/5.0 (
|
9447 |
-
Parent=
|
9448 |
-
|
|
|
|
|
|
|
|
|
9449 |
|
9450 |
-
[Mozilla/5.0 (Windows;
|
9451 |
-
Parent=
|
9452 |
-
|
|
|
|
|
|
|
|
|
9453 |
|
9454 |
-
[Mozilla/5.0 (Windows;
|
9455 |
-
Parent=
|
9456 |
-
|
|
|
|
|
|
|
|
|
9457 |
|
9458 |
-
[Mozilla/5.0 (Windows;
|
9459 |
-
Parent=
|
9460 |
-
Platform=WinVista
|
|
|
9461 |
|
9462 |
-
[Mozilla/5.0 (Windows;
|
9463 |
-
Parent=
|
9464 |
-
Platform=Win7
|
|
|
9465 |
|
9466 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9467 |
|
9468 |
-
[
|
9469 |
Parent=DefaultProperties
|
9470 |
-
|
9471 |
-
|
|
|
9472 |
MajorVer=3
|
9473 |
-
MinorVer=
|
9474 |
Frames=true
|
9475 |
IFrames=true
|
9476 |
Tables=true
|
9477 |
Cookies=true
|
9478 |
-
BackgroundSounds=true
|
9479 |
-
JavaApplets=true
|
9480 |
JavaScript=true
|
9481 |
-
CssVersion=
|
9482 |
-
supportsCSS=true
|
9483 |
-
|
9484 |
-
[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.2* Safari/*]
|
9485 |
-
Parent=Safari 3.2
|
9486 |
-
Platform=MacOSX
|
9487 |
|
9488 |
-
[
|
9489 |
-
Parent=
|
9490 |
-
|
|
|
|
|
|
|
9491 |
|
9492 |
-
[
|
9493 |
-
Parent=
|
9494 |
-
|
|
|
|
|
|
|
|
|
9495 |
|
9496 |
-
[
|
9497 |
-
Parent=
|
9498 |
-
|
|
|
|
|
|
|
9499 |
|
9500 |
-
[
|
9501 |
-
Parent=
|
9502 |
-
|
|
|
|
|
|
|
9503 |
|
9504 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9505 |
|
9506 |
-
[
|
9507 |
Parent=DefaultProperties
|
9508 |
-
|
|
|
9509 |
Version=4.0
|
9510 |
MajorVer=4
|
|
|
9511 |
Frames=true
|
9512 |
IFrames=true
|
9513 |
Tables=true
|
9514 |
Cookies=true
|
9515 |
-
BackgroundSounds=true
|
9516 |
-
JavaApplets=true
|
9517 |
JavaScript=true
|
9518 |
-
CssVersion=
|
9519 |
-
supportsCSS=true
|
9520 |
-
|
9521 |
-
[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4.0* Safari/*]
|
9522 |
-
Parent=Safari 4.0
|
9523 |
-
Platform=MacOSX
|
9524 |
-
|
9525 |
-
[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4 Public Beta Safari/*]
|
9526 |
-
Parent=Safari 4.0
|
9527 |
-
|
9528 |
-
[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
|
9529 |
-
Parent=Safari 4.0
|
9530 |
-
Platform=WinXP
|
9531 |
-
|
9532 |
-
[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4.0* Safari/*]
|
9533 |
-
Parent=Safari 4.0
|
9534 |
-
Platform=WinXP
|
9535 |
-
|
9536 |
-
[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
|
9537 |
-
Parent=Safari 4.0
|
9538 |
-
Platform=Win2003
|
9539 |
-
|
9540 |
-
[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4.0* Safari/*]
|
9541 |
-
Parent=Safari 4.0
|
9542 |
-
Platform=Win2003
|
9543 |
-
|
9544 |
-
[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
|
9545 |
-
Parent=Safari 4.0
|
9546 |
-
Platform=WinVista
|
9547 |
|
9548 |
-
[Mozilla/5.0 (
|
9549 |
-
Parent=
|
9550 |
-
Platform=
|
9551 |
|
9552 |
-
[Mozilla/5.0 (
|
9553 |
-
Parent=
|
9554 |
-
Platform=
|
9555 |
|
9556 |
-
[Mozilla/5.0 (
|
9557 |
-
Parent=
|
9558 |
-
Platform=
|
9559 |
|
9560 |
-
[Mozilla/5.0 (
|
9561 |
-
Parent=
|
9562 |
-
Platform=Win7
|
9563 |
|
9564 |
-
[Mozilla/5.0 (
|
9565 |
-
Parent=
|
9566 |
-
Platform=
|
9567 |
|
9568 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9569 |
|
9570 |
-
[
|
9571 |
Parent=DefaultProperties
|
9572 |
-
|
9573 |
-
|
9574 |
-
|
|
|
|
|
9575 |
Frames=true
|
9576 |
IFrames=true
|
9577 |
Tables=true
|
9578 |
Cookies=true
|
9579 |
-
BackgroundSounds=true
|
9580 |
-
JavaApplets=true
|
9581 |
JavaScript=true
|
9582 |
CssVersion=2
|
9583 |
-
supportsCSS=true
|
9584 |
-
|
9585 |
-
[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0; *) Opera 10.*]
|
9586 |
-
Parent=Opera 10
|
9587 |
-
Platform=Win2000
|
9588 |
-
|
9589 |
-
[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1; *) Opera 10.*]
|
9590 |
-
Parent=Opera 10
|
9591 |
-
Platform=WinXP
|
9592 |
-
|
9593 |
-
[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2; *) Opera 10.*]
|
9594 |
-
Parent=Opera 10
|
9595 |
-
Platform=Win2003
|
9596 |
-
|
9597 |
-
[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0; *) Opera 10.*]
|
9598 |
-
Parent=Opera 10
|
9599 |
-
Platform=WinVista
|
9600 |
-
|
9601 |
-
[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1; *) Opera 10.*]
|
9602 |
-
Parent=Opera 10
|
9603 |
-
Platform=Win7
|
9604 |
-
|
9605 |
-
[Mozilla/4.0 (compatible; MSIE ?.0; X11; FreeBSD*) Opera 10.*]
|
9606 |
-
Parent=Opera 10
|
9607 |
-
Platform=FreeBSD
|
9608 |
-
|
9609 |
-
[Mozilla/4.0 (compatible; MSIE ?.0; X11; Linux*; *) Opera 10.*]
|
9610 |
-
Parent=Opera 10
|
9611 |
-
Platform=Linux
|
9612 |
-
|
9613 |
-
[Mozilla/4.0 (compatible; MSIE ?.0; X11; SunOS*) Opera 10.*]
|
9614 |
-
Parent=Opera 10
|
9615 |
-
Platform=SunOS
|
9616 |
-
|
9617 |
-
[Opera/10.* (Macintosh; *Mac OS X; U; *) Presto/2.2.*]
|
9618 |
-
Parent=Opera 10
|
9619 |
-
Platform=MacOSX
|
9620 |
-
|
9621 |
-
[Opera/10.* (Windows NT 5.0; U; *) Presto/2.2.*]
|
9622 |
-
Parent=Opera 10
|
9623 |
-
Platform=Win2000
|
9624 |
-
|
9625 |
-
[Opera/10.* (Windows NT 5.1; U; *) Presto/2.2.*]
|
9626 |
-
Parent=Opera 10
|
9627 |
-
Platform=WinXP
|
9628 |
-
|
9629 |
-
[Opera/10.* (Windows NT 5.2; U; *) Presto/2.2.*]
|
9630 |
-
Parent=Opera 10
|
9631 |
-
Platform=Win2003
|
9632 |
-
|
9633 |
-
[Opera/10.* (Windows NT 6.0; U; *) Presto/2.2.*]
|
9634 |
-
Parent=Opera 10
|
9635 |
-
Platform=WinVista
|
9636 |
-
|
9637 |
-
[Opera/10.* (Windows NT 6.1; U; *) Presto/2.2.*]
|
9638 |
-
Parent=Opera 10
|
9639 |
-
Platform=Win7
|
9640 |
-
|
9641 |
-
[Opera/10.* (X11; FreeBSD; U; *) Presto/2.2.*]
|
9642 |
-
Parent=Opera 10
|
9643 |
-
Platform=FreeBSD
|
9644 |
|
9645 |
-
[
|
9646 |
-
Parent=
|
9647 |
-
Platform=Linux
|
9648 |
|
9649 |
-
[
|
9650 |
-
Parent=
|
9651 |
-
Platform=
|
9652 |
|
9653 |
-
[
|
9654 |
-
Parent=
|
9655 |
-
Platform=
|
9656 |
|
9657 |
-
[
|
9658 |
-
Parent=
|
9659 |
-
Platform=
|
9660 |
|
9661 |
-
[
|
9662 |
-
Parent=
|
9663 |
-
Platform=
|
9664 |
|
9665 |
-
[
|
9666 |
-
Parent=
|
9667 |
-
Platform=
|
9668 |
|
9669 |
-
|
9670 |
-
Parent=Opera 10
|
9671 |
-
Platform=WinVista
|
9672 |
|
9673 |
-
[
|
9674 |
-
Parent=Opera 10
|
9675 |
-
Platform=Win7
|
9676 |
-
|
9677 |
-
[Opera/9.80 (X11; FreeBSD; U; *) Presto/2.2.* Version/10.*]
|
9678 |
-
Parent=Opera 10
|
9679 |
-
Platform=FreeBSD
|
9680 |
-
|
9681 |
-
[Opera/9.80 (X11; Linux*; U; *) Presto/2.2.* Version/10.*]
|
9682 |
-
Parent=Opera 10
|
9683 |
-
Platform=Linux
|
9684 |
-
|
9685 |
-
[Opera/9.80 (X11; SunOS; U; *) Presto/2.2.* Version/10.*]
|
9686 |
-
Parent=Opera 10
|
9687 |
-
Platform=SunOS
|
9688 |
-
|
9689 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.0
|
9690 |
-
|
9691 |
-
[Opera 7.0]
|
9692 |
Parent=DefaultProperties
|
9693 |
-
|
9694 |
-
|
9695 |
-
|
|
|
|
|
9696 |
Frames=true
|
9697 |
IFrames=true
|
9698 |
Tables=true
|
9699 |
Cookies=true
|
9700 |
-
BackgroundSounds=true
|
9701 |
-
JavaApplets=true
|
9702 |
JavaScript=true
|
9703 |
CssVersion=2
|
9704 |
-
supportsCSS=true
|
9705 |
-
|
9706 |
-
[Mozilla/3.0 (Windows 2000; ?) Opera 7.0*]
|
9707 |
-
Parent=Opera 7.0
|
9708 |
-
Platform=Win2000
|
9709 |
-
Win32=true
|
9710 |
-
|
9711 |
-
[Mozilla/3.0 (Windows 95; ?) Opera 7.0*]
|
9712 |
-
Parent=Opera 7.0
|
9713 |
-
Platform=Win95
|
9714 |
-
Win32=true
|
9715 |
-
|
9716 |
-
[Mozilla/3.0 (Windows 98; ?) Opera 7.0*]
|
9717 |
-
Parent=Opera 7.0
|
9718 |
-
Platform=Win98
|
9719 |
-
Win32=true
|
9720 |
-
|
9721 |
-
[Mozilla/3.0 (Windows ME; ?) Opera 7.0*]
|
9722 |
-
Parent=Opera 7.0
|
9723 |
-
Platform=WinME
|
9724 |
-
Win32=true
|
9725 |
-
|
9726 |
-
[Mozilla/3.0 (Windows NT 4.0; ?) Opera 7.0*]
|
9727 |
-
Parent=Opera 7.0
|
9728 |
-
Platform=WinNT
|
9729 |
-
Win32=true
|
9730 |
-
|
9731 |
-
[Mozilla/3.0 (Windows XP; ?) Opera 7.0*]
|
9732 |
-
Parent=Opera 7.0
|
9733 |
-
Platform=WinXP
|
9734 |
-
Win32=true
|
9735 |
-
|
9736 |
-
[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 2000) Opera 7.0*]
|
9737 |
-
Parent=Opera 7.0
|
9738 |
-
Platform=Win2000
|
9739 |
-
Win32=true
|
9740 |
-
|
9741 |
-
[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 95) Opera 7.0*]
|
9742 |
-
Parent=Opera 7.0
|
9743 |
-
Platform=Win95
|
9744 |
-
Win32=true
|
9745 |
-
|
9746 |
-
[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 98) Opera 7.0*]
|
9747 |
-
Parent=Opera 7.0
|
9748 |
-
Platform=Win98
|
9749 |
-
Win32=true
|
9750 |
|
9751 |
-
[Mozilla/
|
9752 |
-
Parent=
|
9753 |
-
Platform=WinME
|
9754 |
-
Win32=true
|
9755 |
-
|
9756 |
-
[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0*]
|
9757 |
-
Parent=Opera 7.0
|
9758 |
-
Platform=WinNT
|
9759 |
-
Win32=true
|
9760 |
-
|
9761 |
-
[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.0) Opera 7.0*]
|
9762 |
-
Parent=Opera 7.0
|
9763 |
-
Platform=Win2000
|
9764 |
-
Win32=true
|
9765 |
-
|
9766 |
-
[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.1) Opera 7.0*]
|
9767 |
-
Parent=Opera 7.0
|
9768 |
-
Platform=WinXP
|
9769 |
-
Win32=true
|
9770 |
-
|
9771 |
-
[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows XP) Opera 7.0*]
|
9772 |
-
Parent=Opera 7.0
|
9773 |
-
Platform=WinXP
|
9774 |
-
Win32=true
|
9775 |
-
|
9776 |
-
[Mozilla/4.78 (Windows 2000; ?) Opera 7.0*]
|
9777 |
-
Parent=Opera 7.0
|
9778 |
-
Platform=Win2000
|
9779 |
-
Win32=true
|
9780 |
-
|
9781 |
-
[Mozilla/4.78 (Windows 95; ?) Opera 7.0*]
|
9782 |
-
Parent=Opera 7.0
|
9783 |
-
Platform=Win95
|
9784 |
-
Win32=true
|
9785 |
|
9786 |
-
[Mozilla/
|
9787 |
-
Parent=
|
9788 |
-
Platform=
|
9789 |
-
Win32=true
|
9790 |
|
9791 |
-
[Mozilla/
|
9792 |
-
Parent=
|
9793 |
-
Platform=
|
9794 |
-
Win32=true
|
9795 |
|
9796 |
-
[Mozilla/
|
9797 |
-
Parent=
|
9798 |
-
Platform=
|
9799 |
-
Win32=true
|
9800 |
|
9801 |
-
[Mozilla/
|
9802 |
-
Parent=
|
9803 |
-
Platform=
|
9804 |
-
Win32=true
|
9805 |
|
9806 |
-
[Mozilla/
|
9807 |
-
Parent=
|
9808 |
-
Platform=
|
9809 |
Win32=true
|
9810 |
|
9811 |
-
|
9812 |
-
Parent=Opera 7.0
|
9813 |
-
Platform=WinXP
|
9814 |
-
Win32=true
|
9815 |
|
9816 |
-
[
|
9817 |
-
Parent=
|
9818 |
-
|
9819 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9820 |
|
9821 |
-
[Mozilla/5.0 (
|
9822 |
-
Parent=
|
9823 |
-
Platform=Win95
|
9824 |
-
Win32=true
|
9825 |
|
9826 |
-
[Mozilla/5.0 (
|
9827 |
-
Parent=
|
9828 |
-
Platform=
|
9829 |
-
Win32=true
|
9830 |
|
9831 |
-
[Mozilla/5.0 (
|
9832 |
-
Parent=
|
9833 |
-
Platform=
|
9834 |
-
Win32=true
|
9835 |
|
9836 |
-
[Mozilla/5.0 (
|
9837 |
-
Parent=
|
9838 |
-
Platform=
|
9839 |
-
Win32=true
|
9840 |
|
9841 |
-
[Mozilla/5.0 (
|
9842 |
-
Parent=
|
9843 |
-
Platform=
|
9844 |
-
Win32=true
|
9845 |
|
9846 |
-
[Mozilla/5.0 (
|
9847 |
-
Parent=
|
9848 |
-
Platform=
|
9849 |
Win32=true
|
9850 |
|
9851 |
-
|
9852 |
-
Parent=Opera 7.0
|
9853 |
-
Platform=Win2000
|
9854 |
-
Win32=true
|
9855 |
|
9856 |
-
[
|
9857 |
-
Parent=
|
9858 |
-
|
9859 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9860 |
|
9861 |
-
[
|
9862 |
-
Parent=
|
9863 |
-
Platform=Win98
|
9864 |
-
Win32=true
|
9865 |
|
9866 |
-
[
|
9867 |
-
Parent=
|
9868 |
-
Platform=
|
9869 |
-
Win32=true
|
9870 |
|
9871 |
-
[
|
9872 |
-
Parent=
|
9873 |
-
Platform=
|
9874 |
-
Win32=true
|
9875 |
|
9876 |
-
[
|
9877 |
-
Parent=
|
9878 |
-
Platform=
|
9879 |
-
Win32=true
|
9880 |
|
9881 |
-
[
|
9882 |
-
Parent=
|
9883 |
-
Platform=
|
9884 |
-
Win32=true
|
9885 |
|
9886 |
-
[
|
9887 |
-
Parent=
|
9888 |
-
Platform=
|
9889 |
Win32=true
|
9890 |
|
9891 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
9892 |
|
9893 |
-
[
|
9894 |
Parent=DefaultProperties
|
9895 |
-
|
9896 |
-
|
9897 |
-
|
9898 |
-
|
|
|
9899 |
Frames=true
|
9900 |
IFrames=true
|
9901 |
Tables=true
|
9902 |
Cookies=true
|
9903 |
-
BackgroundSounds=true
|
9904 |
-
JavaApplets=true
|
9905 |
JavaScript=true
|
|
|
9906 |
CssVersion=2
|
9907 |
-
supportsCSS=true
|
9908 |
-
|
9909 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.1*]
|
9910 |
-
Parent=Opera 7.1
|
9911 |
-
Platform=Win2000
|
9912 |
-
Win32=true
|
9913 |
|
9914 |
-
[Mozilla
|
9915 |
-
Parent=
|
9916 |
-
Platform=
|
9917 |
-
Win32=true
|
9918 |
|
9919 |
-
[Mozilla
|
9920 |
-
Parent=
|
9921 |
-
Platform=Win98
|
9922 |
-
Win32=true
|
9923 |
|
9924 |
-
[Mozilla
|
9925 |
-
Parent=
|
9926 |
-
Platform=
|
9927 |
-
Win32=true
|
9928 |
|
9929 |
-
[Mozilla
|
9930 |
-
Parent=
|
9931 |
-
Platform=
|
9932 |
-
Win32=true
|
9933 |
|
9934 |
-
[Mozilla
|
9935 |
-
Parent=
|
9936 |
-
Platform=
|
9937 |
-
|
9938 |
|
9939 |
-
[Mozilla
|
9940 |
-
Parent=
|
9941 |
-
Platform=
|
|
|
9942 |
Win32=true
|
9943 |
|
9944 |
-
[Mozilla
|
9945 |
-
Parent=
|
9946 |
-
Platform=WinXP
|
|
|
9947 |
Win32=true
|
9948 |
|
9949 |
-
[Mozilla
|
9950 |
-
Parent=
|
9951 |
-
Platform=
|
|
|
9952 |
Win32=true
|
9953 |
|
9954 |
-
[Mozilla
|
9955 |
-
Parent=
|
9956 |
-
Platform=
|
|
|
9957 |
Win32=true
|
9958 |
|
9959 |
-
[Mozilla
|
9960 |
-
Parent=
|
9961 |
-
Platform=
|
|
|
9962 |
Win32=true
|
9963 |
|
9964 |
-
|
9965 |
-
Parent=Opera 7.1
|
9966 |
-
Platform=WinME
|
9967 |
-
Win32=true
|
9968 |
|
9969 |
-
[
|
9970 |
-
Parent=
|
9971 |
-
|
9972 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9973 |
|
9974 |
-
[Mozilla
|
9975 |
-
Parent=
|
9976 |
-
Platform=
|
9977 |
-
Win32=true
|
9978 |
|
9979 |
-
[Mozilla
|
9980 |
-
Parent=
|
9981 |
-
Platform=WinXP
|
9982 |
-
Win32=true
|
9983 |
|
9984 |
-
[
|
9985 |
-
Parent=
|
9986 |
-
Platform=Linux
|
9987 |
|
9988 |
-
[
|
9989 |
-
Parent=
|
9990 |
-
Platform=
|
9991 |
-
Win32=true
|
9992 |
|
9993 |
-
[
|
9994 |
-
Parent=
|
9995 |
-
Platform=
|
9996 |
-
|
9997 |
|
9998 |
-
[
|
9999 |
-
Parent=
|
10000 |
-
Platform=
|
|
|
10001 |
Win32=true
|
10002 |
|
10003 |
-
[
|
10004 |
-
Parent=
|
10005 |
-
Platform=
|
|
|
10006 |
Win32=true
|
10007 |
|
10008 |
-
[
|
10009 |
-
Parent=
|
10010 |
-
Platform=
|
|
|
10011 |
Win32=true
|
10012 |
|
10013 |
-
[
|
10014 |
-
Parent=
|
10015 |
-
Platform=
|
|
|
10016 |
Win32=true
|
10017 |
|
10018 |
-
[
|
10019 |
-
Parent=
|
10020 |
-
Platform=
|
|
|
10021 |
Win32=true
|
10022 |
|
10023 |
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
10024 |
|
10025 |
-
[
|
10026 |
Parent=DefaultProperties
|
10027 |
-
|
10028 |
-
|
10029 |
-
|
10030 |
-
|
|
|
10031 |
Frames=true
|
10032 |
IFrames=true
|
10033 |
Tables=true
|
10034 |
Cookies=true
|
10035 |
-
BackgroundSounds=true
|
10036 |
-
JavaApplets=true
|
10037 |
JavaScript=true
|
10038 |
-
|
10039 |
-
|
10040 |
-
|
10041 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.2*]
|
10042 |
-
Parent=Opera 7.2
|
10043 |
-
Platform=Linux
|
10044 |
-
|
10045 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.2*]
|
10046 |
-
Parent=Opera 7.2
|
10047 |
-
Platform=Win2000
|
10048 |
-
Win32=true
|
10049 |
-
|
10050 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.2*]
|
10051 |
-
Parent=Opera 7.2
|
10052 |
-
Platform=Win95
|
10053 |
-
Win32=true
|
10054 |
-
|
10055 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.2*]
|
10056 |
-
Parent=Opera 7.2
|
10057 |
-
Platform=Win98
|
10058 |
-
Win32=true
|
10059 |
-
|
10060 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.2*]
|
10061 |
-
Parent=Opera 7.2
|
10062 |
-
Platform=WinME
|
10063 |
-
Win32=true
|
10064 |
|
10065 |
-
[Mozilla
|
10066 |
-
Parent=
|
10067 |
-
Platform=
|
10068 |
-
Win32=true
|
10069 |
|
10070 |
-
[Mozilla
|
10071 |
-
Parent=
|
10072 |
-
Platform=Win2000
|
10073 |
-
Win32=true
|
10074 |
|
10075 |
-
[Mozilla
|
10076 |
-
Parent=
|
10077 |
-
Platform=
|
10078 |
-
Win32=true
|
10079 |
|
10080 |
-
[Mozilla
|
10081 |
-
Parent=
|
10082 |
-
Platform=
|
10083 |
-
Win32=true
|
10084 |
|
10085 |
-
[Mozilla
|
10086 |
-
Parent=
|
10087 |
-
Platform=
|
10088 |
-
|
10089 |
|
10090 |
-
[Mozilla
|
10091 |
-
Parent=
|
10092 |
-
Platform=Win2000
|
|
|
10093 |
Win32=true
|
10094 |
|
10095 |
-
[Mozilla
|
10096 |
-
Parent=
|
10097 |
-
Platform=
|
|
|
10098 |
Win32=true
|
10099 |
|
10100 |
-
[Mozilla
|
10101 |
-
Parent=
|
10102 |
-
Platform=
|
|
|
10103 |
Win32=true
|
10104 |
|
10105 |
-
[Mozilla
|
10106 |
-
Parent=
|
10107 |
-
Platform=
|
|
|
10108 |
Win32=true
|
10109 |
|
10110 |
-
[Mozilla
|
10111 |
-
Parent=
|
10112 |
-
Platform=
|
|
|
10113 |
Win32=true
|
10114 |
|
10115 |
-
|
10116 |
-
Parent=Opera 7.2
|
10117 |
-
Platform=Win2000
|
10118 |
-
Win32=true
|
10119 |
|
10120 |
-
[
|
10121 |
-
Parent=
|
10122 |
-
|
10123 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10124 |
|
10125 |
-
[Mozilla
|
10126 |
-
Parent=
|
10127 |
-
Platform=
|
10128 |
-
Win32=true
|
10129 |
|
10130 |
-
[
|
10131 |
-
Parent=
|
10132 |
-
Platform=Linux
|
10133 |
|
10134 |
-
[
|
10135 |
-
Parent=
|
10136 |
-
Platform=
|
10137 |
-
Win32=true
|
10138 |
|
10139 |
-
[
|
10140 |
-
Parent=
|
10141 |
-
Platform=
|
10142 |
-
Win32=true
|
10143 |
|
10144 |
-
[
|
10145 |
-
Parent=
|
10146 |
-
Platform=
|
10147 |
-
|
10148 |
|
10149 |
-
[
|
10150 |
-
Parent=
|
10151 |
-
Platform=
|
|
|
10152 |
Win32=true
|
10153 |
|
10154 |
-
[
|
10155 |
-
Parent=
|
10156 |
-
Platform=
|
|
|
10157 |
Win32=true
|
10158 |
|
10159 |
-
[
|
10160 |
-
Parent=
|
10161 |
-
Platform=WinXP
|
|
|
10162 |
Win32=true
|
10163 |
|
10164 |
-
[
|
10165 |
-
Parent=
|
10166 |
-
Platform=
|
|
|
10167 |
Win32=true
|
10168 |
|
10169 |
-
[
|
10170 |
-
Parent=
|
10171 |
-
Platform=
|
|
|
10172 |
Win32=true
|
10173 |
|
10174 |
-
[
|
10175 |
-
Parent=
|
10176 |
-
Platform=
|
10177 |
-
|
10178 |
-
[Opera/7.2* (X11; Linux*; ?)*]
|
10179 |
-
Parent=Opera 7.2
|
10180 |
-
Platform=Linux
|
10181 |
|
10182 |
-
|
10183 |
-
Parent=Opera 7.2
|
10184 |
-
Platform=SunOS
|
10185 |
|
10186 |
-
|
10187 |
-
|
10188 |
-
[Opera 7.5]
|
10189 |
Parent=DefaultProperties
|
10190 |
-
|
10191 |
-
|
10192 |
-
|
10193 |
-
|
|
|
10194 |
Frames=true
|
10195 |
IFrames=true
|
10196 |
Tables=true
|
10197 |
Cookies=true
|
10198 |
-
BackgroundSounds=true
|
10199 |
-
JavaApplets=true
|
10200 |
JavaScript=true
|
10201 |
-
|
10202 |
-
|
10203 |
-
|
10204 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.5*]
|
10205 |
-
Parent=Opera 7.5
|
10206 |
-
Platform=Linux
|
10207 |
-
|
10208 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.5*]
|
10209 |
-
Parent=Opera 7.5
|
10210 |
-
Platform=MacPPC
|
10211 |
-
|
10212 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.5*]
|
10213 |
-
Parent=Opera 7.5
|
10214 |
-
Platform=Win2000
|
10215 |
-
Win32=true
|
10216 |
-
|
10217 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.5*]
|
10218 |
-
Parent=Opera 7.5
|
10219 |
-
Platform=Win95
|
10220 |
-
Win32=true
|
10221 |
-
|
10222 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.5*]
|
10223 |
-
Parent=Opera 7.5
|
10224 |
-
Platform=Win98
|
10225 |
-
Win32=true
|
10226 |
-
|
10227 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.5*]
|
10228 |
-
Parent=Opera 7.5
|
10229 |
-
Platform=WinME
|
10230 |
-
Win32=true
|
10231 |
-
|
10232 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.5*]
|
10233 |
-
Parent=Opera 7.5
|
10234 |
-
Platform=WinNT
|
10235 |
-
Win32=true
|
10236 |
-
|
10237 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.5*]
|
10238 |
-
Parent=Opera 7.5
|
10239 |
-
Platform=Win2000
|
10240 |
-
Win32=true
|
10241 |
-
|
10242 |
-
[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.5*]
|
10243 |
-
Parent=Opera 7.5
|
10244 |
-
Platform=WinXP
|
10245 |
-
Win32=true
|
10246 |
|
10247 |
-
[Mozilla
|
10248 |
-
Parent=
|
10249 |
-
Platform=
|
10250 |
-
Win32=true
|
10251 |
|
10252 |
-
[Mozilla
|
10253 |
-
Parent=
|
10254 |
-
Platform=
|
10255 |
-
Win32=true
|
10256 |
|
10257 |
-
[Mozilla
|
10258 |
-
Parent=
|
10259 |
-
Platform=Linux
|
10260 |
|
10261 |
-
[Mozilla
|
10262 |
-
Parent=
|
10263 |
-
Platform=MacOSX
|
10264 |
|
10265 |
-
[Mozilla
|
10266 |
-
Parent=
|
10267 |
-
Platform=
|
10268 |
-
|
10269 |
|
10270 |
-
[Mozilla
|
10271 |
-
Parent=
|
10272 |
-
Platform=
|
|
|
10273 |
Win32=true
|
10274 |
|
10275 |
-
[Mozilla
|
10276 |
-
Parent=
|
10277 |
-
Platform=
|
|
|
10278 |
Win32=true
|
10279 |
|
10280 |
-
[Mozilla
|
10281 |
-
Parent=
|
10282 |
-
Platform=
|
|
|
10283 |
Win32=true
|
10284 |
|
10285 |
-
[Mozilla
|
10286 |
-
Parent=
|
10287 |
-
Platform=
|
|
|
10288 |
Win32=true
|
10289 |
|
10290 |
-
[Mozilla
|
10291 |
-
Parent=
|
10292 |
-
Platform=
|
|
|
10293 |
Win32=true
|
10294 |
|
10295 |
-
[Mozilla
|
10296 |
-
Parent=
|
10297 |
-
Platform=
|
10298 |
-
|
10299 |
|
10300 |
-
|
10301 |
-
Parent=Opera 7.5
|
10302 |
-
Platform=Win2003
|
10303 |
-
Win32=true
|
10304 |
|
10305 |
-
[
|
10306 |
-
Parent=
|
10307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10308 |
|
10309 |
-
[
|
10310 |
-
Parent=
|
10311 |
-
Platform=
|
10312 |
|
10313 |
-
[
|
10314 |
-
Parent=
|
10315 |
-
Platform=
|
10316 |
|
10317 |
-
[
|
10318 |
-
Parent=
|
10319 |
-
Platform=
|
10320 |
-
Win32=true
|
10321 |
|
10322 |
-
[
|
10323 |
-
Parent=
|
10324 |
-
Platform=
|
10325 |
-
Win32=true
|
10326 |
|
10327 |
-
[
|
10328 |
-
Parent=
|
10329 |
-
Platform=
|
10330 |
-
|